FunctionFileEntry

The `FunctionFileEntry` entity.

Definition

TypeScript
interface FunctionFileEntry {
  id: string;
  name: string;
  source: string;
  createdAt: string;
}

Fields

FieldTypeNotes
idstringreadonly required
namestringrequired — Logical file name within the function's source tree (e.g. index.ts, package.json, lib/util.ts).
sourcestringrequired — Raw file contents. TS/JS sources are compiled in-isolate by the runtime bundler.
createdAtstringreadonly required — ISO-8601 timestamp of creation.