@remotion/serverless-client 4.0.409 → 4.0.411
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/constants.d.ts +3 -2
- package/dist/esm/index.mjs +1 -1
- package/package.json +5 -5
package/dist/constants.d.ts
CHANGED
|
@@ -112,9 +112,9 @@ export type ServerlessStartPayload<Provider extends CloudProvider> = {
|
|
|
112
112
|
preferLossless: boolean;
|
|
113
113
|
forcePathStyle: boolean;
|
|
114
114
|
metadata: Record<string, string> | null;
|
|
115
|
-
apiKey: string | null;
|
|
116
115
|
licenseKey: string | null;
|
|
117
116
|
storageClass: Provider['storageClass'] | null;
|
|
117
|
+
isProduction: boolean | null;
|
|
118
118
|
};
|
|
119
119
|
export type ServerlessPayloads<Provider extends CloudProvider> = {
|
|
120
120
|
info: {
|
|
@@ -172,6 +172,7 @@ export type ServerlessPayloads<Provider extends CloudProvider> = {
|
|
|
172
172
|
metadata: Record<string, string> | null;
|
|
173
173
|
licenseKey: string | null;
|
|
174
174
|
storageClass: Provider['storageClass'] | null;
|
|
175
|
+
isProduction: boolean;
|
|
175
176
|
};
|
|
176
177
|
status: ServerlessStatusPayload<Provider>;
|
|
177
178
|
renderer: {
|
|
@@ -253,9 +254,9 @@ export type ServerlessPayloads<Provider extends CloudProvider> = {
|
|
|
253
254
|
deleteAfter: DeleteAfter | null;
|
|
254
255
|
streamed: boolean;
|
|
255
256
|
forcePathStyle: boolean;
|
|
256
|
-
apiKey: string | null;
|
|
257
257
|
licenseKey: string | null;
|
|
258
258
|
storageClass: Provider['storageClass'] | null;
|
|
259
|
+
isProduction: boolean | null;
|
|
259
260
|
};
|
|
260
261
|
compositions: {
|
|
261
262
|
type: ServerlessRoutines.compositions;
|
package/dist/esm/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/serverless-client"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/serverless-client",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.411",
|
|
7
7
|
"main": "dist",
|
|
8
8
|
"sideEffects": false,
|
|
9
9
|
"scripts": {
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"remotion": "4.0.
|
|
27
|
-
"@remotion/streaming": "4.0.
|
|
28
|
-
"@remotion/renderer": "4.0.
|
|
29
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
26
|
+
"remotion": "4.0.411",
|
|
27
|
+
"@remotion/streaming": "4.0.411",
|
|
28
|
+
"@remotion/renderer": "4.0.411",
|
|
29
|
+
"@remotion/eslint-config-internal": "4.0.411",
|
|
30
30
|
"eslint": "9.19.0"
|
|
31
31
|
},
|
|
32
32
|
"exports": {
|