@playcademy/sdk 0.4.0 → 0.4.1-beta.2
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/internal.d.ts +2 -0
- package/dist/internal.js +1 -0
- package/dist/server/edge.d.ts +2 -0
- package/dist/server.d.ts +2 -0
- package/package.json +1 -1
package/dist/internal.d.ts
CHANGED
|
@@ -6734,6 +6734,8 @@ interface BackendDeploymentBundle {
|
|
|
6734
6734
|
bindings?: BackendResourceBindings;
|
|
6735
6735
|
/** Optional schema information for database setup */
|
|
6736
6736
|
schema?: SchemaInfo;
|
|
6737
|
+
/** Cloudflare Worker compatibility date (YYYY-MM-DD) */
|
|
6738
|
+
compatibilityDate?: string;
|
|
6737
6739
|
/** Optional Cloudflare Worker compatibility flags */
|
|
6738
6740
|
compatibilityFlags?: string[];
|
|
6739
6741
|
}
|
package/dist/internal.js
CHANGED
|
@@ -1753,6 +1753,7 @@ class DeployPipeline {
|
|
|
1753
1753
|
config: args.backend.config,
|
|
1754
1754
|
...args.backend.bindings ? { bindings: args.backend.bindings } : {},
|
|
1755
1755
|
...args.backend.schema ? { schema: args.backend.schema } : {},
|
|
1756
|
+
...args.backend.compatibilityDate ? { compatibilityDate: args.backend.compatibilityDate } : {},
|
|
1756
1757
|
...args.backend.compatibilityFlags?.length ? { compatibilityFlags: args.backend.compatibilityFlags } : {}
|
|
1757
1758
|
};
|
|
1758
1759
|
const inlineBody = {
|
package/dist/server/edge.d.ts
CHANGED
|
@@ -545,6 +545,8 @@ interface BackendDeploymentBundle {
|
|
|
545
545
|
bindings?: BackendResourceBindings;
|
|
546
546
|
/** Optional schema information for database setup */
|
|
547
547
|
schema?: SchemaInfo;
|
|
548
|
+
/** Cloudflare Worker compatibility date (YYYY-MM-DD) */
|
|
549
|
+
compatibilityDate?: string;
|
|
548
550
|
/** Optional Cloudflare Worker compatibility flags */
|
|
549
551
|
compatibilityFlags?: string[];
|
|
550
552
|
}
|
package/dist/server.d.ts
CHANGED
|
@@ -545,6 +545,8 @@ interface BackendDeploymentBundle {
|
|
|
545
545
|
bindings?: BackendResourceBindings;
|
|
546
546
|
/** Optional schema information for database setup */
|
|
547
547
|
schema?: SchemaInfo;
|
|
548
|
+
/** Cloudflare Worker compatibility date (YYYY-MM-DD) */
|
|
549
|
+
compatibilityDate?: string;
|
|
548
550
|
/** Optional Cloudflare Worker compatibility flags */
|
|
549
551
|
compatibilityFlags?: string[];
|
|
550
552
|
}
|