@lambdacurry/arbor 0.17.1 → 0.17.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/arbor.js +2 -0
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -1930,6 +1930,7 @@ var appBundles = sqliteTable("app_bundles", {
|
|
|
1930
1930
|
artifactVersionId: text("artifact_version_id").notNull().references(() => artifactVersions.id),
|
|
1931
1931
|
spaceId: text("space_id").notNull().references(() => spaces.id),
|
|
1932
1932
|
compatibilityDate: text("compatibility_date").notNull(),
|
|
1933
|
+
compatibilityFlags: text("compatibility_flags", { mode: "json" }).$type().notNull().default([]),
|
|
1933
1934
|
mainModule: text("main_module").notNull(),
|
|
1934
1935
|
modules: text("modules", { mode: "json" }).$type().notNull(),
|
|
1935
1936
|
staticAssets: text("static_assets", { mode: "json" }).$type().notNull(),
|
|
@@ -18308,6 +18309,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18308
18309
|
assetsPath: exports_external.string().optional().describe("optional absolute static-asset directory under /workspace"),
|
|
18309
18310
|
runtimeEntrypoint: exports_external.enum(["fetch", "durable-object"]).describe("fetch for stateless Apps; durable-object must export class App"),
|
|
18310
18311
|
compatibilityDate: exports_external.string().describe("Cloudflare compatibility date, YYYY-MM-DD"),
|
|
18312
|
+
compatibilityFlags: exports_external.array(exports_external.enum(["nodejs_compat"])).max(1).optional().describe("allowlisted Cloudflare compatibility flags required by this Worker"),
|
|
18311
18313
|
stateSchemaVersion: exports_external.number().int().min(0).optional().describe("durable schema this release writes; default 0"),
|
|
18312
18314
|
stateCompatibleFrom: exports_external.number().int().min(0).optional().describe("oldest durable schema this code can open"),
|
|
18313
18315
|
stateCompatibleThrough: exports_external.number().int().min(0).optional().describe("newest durable schema this code can open"),
|
package/package.json
CHANGED