@junobuild/functions 0.0.15 → 0.1.0
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/README.md +921 -67
- package/chunk-SFZECPH3.js +2 -0
- package/chunk-SFZECPH3.js.map +7 -0
- package/global.d.ts +85 -12
- package/hooks/assertions.d.ts +280 -280
- package/hooks/hooks.d.ts +280 -280
- package/hooks/schemas/storage/context.d.ts +168 -168
- package/hooks/schemas/storage/payload.d.ts +21 -21
- package/ic-cdk/time.ic-cdk.d.ts +10 -0
- package/ic-cdk.d.ts +1 -0
- package/ic-cdk.js +1 -1
- package/ic-cdk.js.map +4 -4
- package/index.d.ts +2 -0
- package/index.js +1 -1
- package/index.js.map +4 -4
- package/package.json +1 -1
- package/polyfills/random.polyfill.d.ts +4 -0
- package/schemas/list.d.ts +428 -0
- package/schemas/storage.d.ts +280 -16
- package/sdk/db.sdk.d.ts +81 -7
- package/sdk/schemas/collections.d.ts +9 -0
- package/sdk/schemas/db.d.ts +872 -28
- package/sdk/schemas/params.d.ts +298 -0
- package/sdk/schemas/storage.d.ts +1011 -0
- package/sdk/storage.sdk.d.ts +100 -0
- package/sdk.d.ts +4 -0
- package/sdk.js +1 -1
- package/sdk.js.map +4 -4
- package/src/global.d.ts +85 -12
- package/chunk-ZUGCGTXG.js +0 -2
- package/chunk-ZUGCGTXG.js.map +0 -7
|
@@ -15,7 +15,7 @@ export declare const OnUploadAssetContextSchema: z.ZodObject<{
|
|
|
15
15
|
collection: z.ZodString;
|
|
16
16
|
owner: z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>;
|
|
17
17
|
description: z.ZodOptional<z.ZodString>;
|
|
18
|
-
}, "
|
|
18
|
+
}, "strict", z.ZodTypeAny, {
|
|
19
19
|
owner: Uint8Array<ArrayBufferLike>;
|
|
20
20
|
collection: string;
|
|
21
21
|
name: string;
|
|
@@ -31,7 +31,7 @@ export declare const OnUploadAssetContextSchema: z.ZodObject<{
|
|
|
31
31
|
token?: string | undefined;
|
|
32
32
|
}>;
|
|
33
33
|
headers: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
|
|
34
|
-
encodings: z.
|
|
34
|
+
encodings: z.ZodArray<z.ZodTuple<[z.ZodEnum<["identity", "gzip", "compress", "deflate", "br"]>, z.ZodObject<{
|
|
35
35
|
modified: z.ZodBigInt;
|
|
36
36
|
content_chunks: z.ZodArray<z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>, "many">;
|
|
37
37
|
total_length: z.ZodBigInt;
|
|
@@ -46,7 +46,7 @@ export declare const OnUploadAssetContextSchema: z.ZodObject<{
|
|
|
46
46
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
47
47
|
total_length: bigint;
|
|
48
48
|
sha256: Uint8Array<ArrayBuffer>;
|
|
49
|
-
}
|
|
49
|
+
}>], null>, "many">;
|
|
50
50
|
created_at: z.ZodBigInt;
|
|
51
51
|
updated_at: z.ZodBigInt;
|
|
52
52
|
version: z.ZodOptional<z.ZodBigInt>;
|
|
@@ -62,12 +62,12 @@ export declare const OnUploadAssetContextSchema: z.ZodObject<{
|
|
|
62
62
|
token?: string | undefined;
|
|
63
63
|
};
|
|
64
64
|
headers: [string, string][];
|
|
65
|
-
encodings:
|
|
65
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
66
66
|
modified: bigint;
|
|
67
67
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
68
68
|
total_length: bigint;
|
|
69
69
|
sha256: Uint8Array<ArrayBuffer>;
|
|
70
|
-
}
|
|
70
|
+
}][];
|
|
71
71
|
version?: bigint | undefined;
|
|
72
72
|
}, {
|
|
73
73
|
created_at: bigint;
|
|
@@ -81,12 +81,12 @@ export declare const OnUploadAssetContextSchema: z.ZodObject<{
|
|
|
81
81
|
token?: string | undefined;
|
|
82
82
|
};
|
|
83
83
|
headers: [string, string][];
|
|
84
|
-
encodings:
|
|
84
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
85
85
|
modified: bigint;
|
|
86
86
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
87
87
|
total_length: bigint;
|
|
88
88
|
sha256: Uint8Array<ArrayBuffer>;
|
|
89
|
-
}
|
|
89
|
+
}][];
|
|
90
90
|
version?: bigint | undefined;
|
|
91
91
|
}>;
|
|
92
92
|
}, "strict", z.ZodTypeAny, z.baseObjectOutputType<{
|
|
@@ -99,7 +99,7 @@ export declare const OnUploadAssetContextSchema: z.ZodObject<{
|
|
|
99
99
|
collection: z.ZodString;
|
|
100
100
|
owner: z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>;
|
|
101
101
|
description: z.ZodOptional<z.ZodString>;
|
|
102
|
-
}, "
|
|
102
|
+
}, "strict", z.ZodTypeAny, {
|
|
103
103
|
owner: Uint8Array<ArrayBufferLike>;
|
|
104
104
|
collection: string;
|
|
105
105
|
name: string;
|
|
@@ -115,7 +115,7 @@ export declare const OnUploadAssetContextSchema: z.ZodObject<{
|
|
|
115
115
|
token?: string | undefined;
|
|
116
116
|
}>;
|
|
117
117
|
headers: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
|
|
118
|
-
encodings: z.
|
|
118
|
+
encodings: z.ZodArray<z.ZodTuple<[z.ZodEnum<["identity", "gzip", "compress", "deflate", "br"]>, z.ZodObject<{
|
|
119
119
|
modified: z.ZodBigInt;
|
|
120
120
|
content_chunks: z.ZodArray<z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>, "many">;
|
|
121
121
|
total_length: z.ZodBigInt;
|
|
@@ -130,7 +130,7 @@ export declare const OnUploadAssetContextSchema: z.ZodObject<{
|
|
|
130
130
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
131
131
|
total_length: bigint;
|
|
132
132
|
sha256: Uint8Array<ArrayBuffer>;
|
|
133
|
-
}
|
|
133
|
+
}>], null>, "many">;
|
|
134
134
|
created_at: z.ZodBigInt;
|
|
135
135
|
updated_at: z.ZodBigInt;
|
|
136
136
|
version: z.ZodOptional<z.ZodBigInt>;
|
|
@@ -146,12 +146,12 @@ export declare const OnUploadAssetContextSchema: z.ZodObject<{
|
|
|
146
146
|
token?: string | undefined;
|
|
147
147
|
};
|
|
148
148
|
headers: [string, string][];
|
|
149
|
-
encodings:
|
|
149
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
150
150
|
modified: bigint;
|
|
151
151
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
152
152
|
total_length: bigint;
|
|
153
153
|
sha256: Uint8Array<ArrayBuffer>;
|
|
154
|
-
}
|
|
154
|
+
}][];
|
|
155
155
|
version?: bigint | undefined;
|
|
156
156
|
}, {
|
|
157
157
|
created_at: bigint;
|
|
@@ -165,12 +165,12 @@ export declare const OnUploadAssetContextSchema: z.ZodObject<{
|
|
|
165
165
|
token?: string | undefined;
|
|
166
166
|
};
|
|
167
167
|
headers: [string, string][];
|
|
168
|
-
encodings:
|
|
168
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
169
169
|
modified: bigint;
|
|
170
170
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
171
171
|
total_length: bigint;
|
|
172
172
|
sha256: Uint8Array<ArrayBuffer>;
|
|
173
|
-
}
|
|
173
|
+
}][];
|
|
174
174
|
version?: bigint | undefined;
|
|
175
175
|
}>;
|
|
176
176
|
}>, z.baseObjectInputType<{
|
|
@@ -183,7 +183,7 @@ export declare const OnUploadAssetContextSchema: z.ZodObject<{
|
|
|
183
183
|
collection: z.ZodString;
|
|
184
184
|
owner: z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>;
|
|
185
185
|
description: z.ZodOptional<z.ZodString>;
|
|
186
|
-
}, "
|
|
186
|
+
}, "strict", z.ZodTypeAny, {
|
|
187
187
|
owner: Uint8Array<ArrayBufferLike>;
|
|
188
188
|
collection: string;
|
|
189
189
|
name: string;
|
|
@@ -199,7 +199,7 @@ export declare const OnUploadAssetContextSchema: z.ZodObject<{
|
|
|
199
199
|
token?: string | undefined;
|
|
200
200
|
}>;
|
|
201
201
|
headers: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
|
|
202
|
-
encodings: z.
|
|
202
|
+
encodings: z.ZodArray<z.ZodTuple<[z.ZodEnum<["identity", "gzip", "compress", "deflate", "br"]>, z.ZodObject<{
|
|
203
203
|
modified: z.ZodBigInt;
|
|
204
204
|
content_chunks: z.ZodArray<z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>, "many">;
|
|
205
205
|
total_length: z.ZodBigInt;
|
|
@@ -214,7 +214,7 @@ export declare const OnUploadAssetContextSchema: z.ZodObject<{
|
|
|
214
214
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
215
215
|
total_length: bigint;
|
|
216
216
|
sha256: Uint8Array<ArrayBuffer>;
|
|
217
|
-
}
|
|
217
|
+
}>], null>, "many">;
|
|
218
218
|
created_at: z.ZodBigInt;
|
|
219
219
|
updated_at: z.ZodBigInt;
|
|
220
220
|
version: z.ZodOptional<z.ZodBigInt>;
|
|
@@ -230,12 +230,12 @@ export declare const OnUploadAssetContextSchema: z.ZodObject<{
|
|
|
230
230
|
token?: string | undefined;
|
|
231
231
|
};
|
|
232
232
|
headers: [string, string][];
|
|
233
|
-
encodings:
|
|
233
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
234
234
|
modified: bigint;
|
|
235
235
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
236
236
|
total_length: bigint;
|
|
237
237
|
sha256: Uint8Array<ArrayBuffer>;
|
|
238
|
-
}
|
|
238
|
+
}][];
|
|
239
239
|
version?: bigint | undefined;
|
|
240
240
|
}, {
|
|
241
241
|
created_at: bigint;
|
|
@@ -249,12 +249,12 @@ export declare const OnUploadAssetContextSchema: z.ZodObject<{
|
|
|
249
249
|
token?: string | undefined;
|
|
250
250
|
};
|
|
251
251
|
headers: [string, string][];
|
|
252
|
-
encodings:
|
|
252
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
253
253
|
modified: bigint;
|
|
254
254
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
255
255
|
total_length: bigint;
|
|
256
256
|
sha256: Uint8Array<ArrayBuffer>;
|
|
257
|
-
}
|
|
257
|
+
}][];
|
|
258
258
|
version?: bigint | undefined;
|
|
259
259
|
}>;
|
|
260
260
|
}>>;
|
|
@@ -277,7 +277,7 @@ export declare const OnDeleteAssetContextSchema: z.ZodObject<{
|
|
|
277
277
|
collection: z.ZodString;
|
|
278
278
|
owner: z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>;
|
|
279
279
|
description: z.ZodOptional<z.ZodString>;
|
|
280
|
-
}, "
|
|
280
|
+
}, "strict", z.ZodTypeAny, {
|
|
281
281
|
owner: Uint8Array<ArrayBufferLike>;
|
|
282
282
|
collection: string;
|
|
283
283
|
name: string;
|
|
@@ -293,7 +293,7 @@ export declare const OnDeleteAssetContextSchema: z.ZodObject<{
|
|
|
293
293
|
token?: string | undefined;
|
|
294
294
|
}>;
|
|
295
295
|
headers: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
|
|
296
|
-
encodings: z.
|
|
296
|
+
encodings: z.ZodArray<z.ZodTuple<[z.ZodEnum<["identity", "gzip", "compress", "deflate", "br"]>, z.ZodObject<{
|
|
297
297
|
modified: z.ZodBigInt;
|
|
298
298
|
content_chunks: z.ZodArray<z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>, "many">;
|
|
299
299
|
total_length: z.ZodBigInt;
|
|
@@ -308,7 +308,7 @@ export declare const OnDeleteAssetContextSchema: z.ZodObject<{
|
|
|
308
308
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
309
309
|
total_length: bigint;
|
|
310
310
|
sha256: Uint8Array<ArrayBuffer>;
|
|
311
|
-
}
|
|
311
|
+
}>], null>, "many">;
|
|
312
312
|
created_at: z.ZodBigInt;
|
|
313
313
|
updated_at: z.ZodBigInt;
|
|
314
314
|
version: z.ZodOptional<z.ZodBigInt>;
|
|
@@ -324,12 +324,12 @@ export declare const OnDeleteAssetContextSchema: z.ZodObject<{
|
|
|
324
324
|
token?: string | undefined;
|
|
325
325
|
};
|
|
326
326
|
headers: [string, string][];
|
|
327
|
-
encodings:
|
|
327
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
328
328
|
modified: bigint;
|
|
329
329
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
330
330
|
total_length: bigint;
|
|
331
331
|
sha256: Uint8Array<ArrayBuffer>;
|
|
332
|
-
}
|
|
332
|
+
}][];
|
|
333
333
|
version?: bigint | undefined;
|
|
334
334
|
}, {
|
|
335
335
|
created_at: bigint;
|
|
@@ -343,12 +343,12 @@ export declare const OnDeleteAssetContextSchema: z.ZodObject<{
|
|
|
343
343
|
token?: string | undefined;
|
|
344
344
|
};
|
|
345
345
|
headers: [string, string][];
|
|
346
|
-
encodings:
|
|
346
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
347
347
|
modified: bigint;
|
|
348
348
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
349
349
|
total_length: bigint;
|
|
350
350
|
sha256: Uint8Array<ArrayBuffer>;
|
|
351
|
-
}
|
|
351
|
+
}][];
|
|
352
352
|
version?: bigint | undefined;
|
|
353
353
|
}>>;
|
|
354
354
|
}, "strict", z.ZodTypeAny, z.baseObjectOutputType<{
|
|
@@ -361,7 +361,7 @@ export declare const OnDeleteAssetContextSchema: z.ZodObject<{
|
|
|
361
361
|
collection: z.ZodString;
|
|
362
362
|
owner: z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>;
|
|
363
363
|
description: z.ZodOptional<z.ZodString>;
|
|
364
|
-
}, "
|
|
364
|
+
}, "strict", z.ZodTypeAny, {
|
|
365
365
|
owner: Uint8Array<ArrayBufferLike>;
|
|
366
366
|
collection: string;
|
|
367
367
|
name: string;
|
|
@@ -377,7 +377,7 @@ export declare const OnDeleteAssetContextSchema: z.ZodObject<{
|
|
|
377
377
|
token?: string | undefined;
|
|
378
378
|
}>;
|
|
379
379
|
headers: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
|
|
380
|
-
encodings: z.
|
|
380
|
+
encodings: z.ZodArray<z.ZodTuple<[z.ZodEnum<["identity", "gzip", "compress", "deflate", "br"]>, z.ZodObject<{
|
|
381
381
|
modified: z.ZodBigInt;
|
|
382
382
|
content_chunks: z.ZodArray<z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>, "many">;
|
|
383
383
|
total_length: z.ZodBigInt;
|
|
@@ -392,7 +392,7 @@ export declare const OnDeleteAssetContextSchema: z.ZodObject<{
|
|
|
392
392
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
393
393
|
total_length: bigint;
|
|
394
394
|
sha256: Uint8Array<ArrayBuffer>;
|
|
395
|
-
}
|
|
395
|
+
}>], null>, "many">;
|
|
396
396
|
created_at: z.ZodBigInt;
|
|
397
397
|
updated_at: z.ZodBigInt;
|
|
398
398
|
version: z.ZodOptional<z.ZodBigInt>;
|
|
@@ -408,12 +408,12 @@ export declare const OnDeleteAssetContextSchema: z.ZodObject<{
|
|
|
408
408
|
token?: string | undefined;
|
|
409
409
|
};
|
|
410
410
|
headers: [string, string][];
|
|
411
|
-
encodings:
|
|
411
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
412
412
|
modified: bigint;
|
|
413
413
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
414
414
|
total_length: bigint;
|
|
415
415
|
sha256: Uint8Array<ArrayBuffer>;
|
|
416
|
-
}
|
|
416
|
+
}][];
|
|
417
417
|
version?: bigint | undefined;
|
|
418
418
|
}, {
|
|
419
419
|
created_at: bigint;
|
|
@@ -427,12 +427,12 @@ export declare const OnDeleteAssetContextSchema: z.ZodObject<{
|
|
|
427
427
|
token?: string | undefined;
|
|
428
428
|
};
|
|
429
429
|
headers: [string, string][];
|
|
430
|
-
encodings:
|
|
430
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
431
431
|
modified: bigint;
|
|
432
432
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
433
433
|
total_length: bigint;
|
|
434
434
|
sha256: Uint8Array<ArrayBuffer>;
|
|
435
|
-
}
|
|
435
|
+
}][];
|
|
436
436
|
version?: bigint | undefined;
|
|
437
437
|
}>>;
|
|
438
438
|
}>, z.baseObjectInputType<{
|
|
@@ -445,7 +445,7 @@ export declare const OnDeleteAssetContextSchema: z.ZodObject<{
|
|
|
445
445
|
collection: z.ZodString;
|
|
446
446
|
owner: z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>;
|
|
447
447
|
description: z.ZodOptional<z.ZodString>;
|
|
448
|
-
}, "
|
|
448
|
+
}, "strict", z.ZodTypeAny, {
|
|
449
449
|
owner: Uint8Array<ArrayBufferLike>;
|
|
450
450
|
collection: string;
|
|
451
451
|
name: string;
|
|
@@ -461,7 +461,7 @@ export declare const OnDeleteAssetContextSchema: z.ZodObject<{
|
|
|
461
461
|
token?: string | undefined;
|
|
462
462
|
}>;
|
|
463
463
|
headers: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
|
|
464
|
-
encodings: z.
|
|
464
|
+
encodings: z.ZodArray<z.ZodTuple<[z.ZodEnum<["identity", "gzip", "compress", "deflate", "br"]>, z.ZodObject<{
|
|
465
465
|
modified: z.ZodBigInt;
|
|
466
466
|
content_chunks: z.ZodArray<z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>, "many">;
|
|
467
467
|
total_length: z.ZodBigInt;
|
|
@@ -476,7 +476,7 @@ export declare const OnDeleteAssetContextSchema: z.ZodObject<{
|
|
|
476
476
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
477
477
|
total_length: bigint;
|
|
478
478
|
sha256: Uint8Array<ArrayBuffer>;
|
|
479
|
-
}
|
|
479
|
+
}>], null>, "many">;
|
|
480
480
|
created_at: z.ZodBigInt;
|
|
481
481
|
updated_at: z.ZodBigInt;
|
|
482
482
|
version: z.ZodOptional<z.ZodBigInt>;
|
|
@@ -492,12 +492,12 @@ export declare const OnDeleteAssetContextSchema: z.ZodObject<{
|
|
|
492
492
|
token?: string | undefined;
|
|
493
493
|
};
|
|
494
494
|
headers: [string, string][];
|
|
495
|
-
encodings:
|
|
495
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
496
496
|
modified: bigint;
|
|
497
497
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
498
498
|
total_length: bigint;
|
|
499
499
|
sha256: Uint8Array<ArrayBuffer>;
|
|
500
|
-
}
|
|
500
|
+
}][];
|
|
501
501
|
version?: bigint | undefined;
|
|
502
502
|
}, {
|
|
503
503
|
created_at: bigint;
|
|
@@ -511,12 +511,12 @@ export declare const OnDeleteAssetContextSchema: z.ZodObject<{
|
|
|
511
511
|
token?: string | undefined;
|
|
512
512
|
};
|
|
513
513
|
headers: [string, string][];
|
|
514
|
-
encodings:
|
|
514
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
515
515
|
modified: bigint;
|
|
516
516
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
517
517
|
total_length: bigint;
|
|
518
518
|
sha256: Uint8Array<ArrayBuffer>;
|
|
519
|
-
}
|
|
519
|
+
}][];
|
|
520
520
|
version?: bigint | undefined;
|
|
521
521
|
}>>;
|
|
522
522
|
}>>;
|
|
@@ -541,7 +541,7 @@ export declare const OnDeleteManyAssetsContextSchema: z.ZodObject<{
|
|
|
541
541
|
collection: z.ZodString;
|
|
542
542
|
owner: z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>;
|
|
543
543
|
description: z.ZodOptional<z.ZodString>;
|
|
544
|
-
}, "
|
|
544
|
+
}, "strict", z.ZodTypeAny, {
|
|
545
545
|
owner: Uint8Array<ArrayBufferLike>;
|
|
546
546
|
collection: string;
|
|
547
547
|
name: string;
|
|
@@ -557,7 +557,7 @@ export declare const OnDeleteManyAssetsContextSchema: z.ZodObject<{
|
|
|
557
557
|
token?: string | undefined;
|
|
558
558
|
}>;
|
|
559
559
|
headers: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
|
|
560
|
-
encodings: z.
|
|
560
|
+
encodings: z.ZodArray<z.ZodTuple<[z.ZodEnum<["identity", "gzip", "compress", "deflate", "br"]>, z.ZodObject<{
|
|
561
561
|
modified: z.ZodBigInt;
|
|
562
562
|
content_chunks: z.ZodArray<z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>, "many">;
|
|
563
563
|
total_length: z.ZodBigInt;
|
|
@@ -572,7 +572,7 @@ export declare const OnDeleteManyAssetsContextSchema: z.ZodObject<{
|
|
|
572
572
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
573
573
|
total_length: bigint;
|
|
574
574
|
sha256: Uint8Array<ArrayBuffer>;
|
|
575
|
-
}
|
|
575
|
+
}>], null>, "many">;
|
|
576
576
|
created_at: z.ZodBigInt;
|
|
577
577
|
updated_at: z.ZodBigInt;
|
|
578
578
|
version: z.ZodOptional<z.ZodBigInt>;
|
|
@@ -588,12 +588,12 @@ export declare const OnDeleteManyAssetsContextSchema: z.ZodObject<{
|
|
|
588
588
|
token?: string | undefined;
|
|
589
589
|
};
|
|
590
590
|
headers: [string, string][];
|
|
591
|
-
encodings:
|
|
591
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
592
592
|
modified: bigint;
|
|
593
593
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
594
594
|
total_length: bigint;
|
|
595
595
|
sha256: Uint8Array<ArrayBuffer>;
|
|
596
|
-
}
|
|
596
|
+
}][];
|
|
597
597
|
version?: bigint | undefined;
|
|
598
598
|
}, {
|
|
599
599
|
created_at: bigint;
|
|
@@ -607,12 +607,12 @@ export declare const OnDeleteManyAssetsContextSchema: z.ZodObject<{
|
|
|
607
607
|
token?: string | undefined;
|
|
608
608
|
};
|
|
609
609
|
headers: [string, string][];
|
|
610
|
-
encodings:
|
|
610
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
611
611
|
modified: bigint;
|
|
612
612
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
613
613
|
total_length: bigint;
|
|
614
614
|
sha256: Uint8Array<ArrayBuffer>;
|
|
615
|
-
}
|
|
615
|
+
}][];
|
|
616
616
|
version?: bigint | undefined;
|
|
617
617
|
}>>, "many">;
|
|
618
618
|
}, "strict", z.ZodTypeAny, z.baseObjectOutputType<{
|
|
@@ -625,7 +625,7 @@ export declare const OnDeleteManyAssetsContextSchema: z.ZodObject<{
|
|
|
625
625
|
collection: z.ZodString;
|
|
626
626
|
owner: z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>;
|
|
627
627
|
description: z.ZodOptional<z.ZodString>;
|
|
628
|
-
}, "
|
|
628
|
+
}, "strict", z.ZodTypeAny, {
|
|
629
629
|
owner: Uint8Array<ArrayBufferLike>;
|
|
630
630
|
collection: string;
|
|
631
631
|
name: string;
|
|
@@ -641,7 +641,7 @@ export declare const OnDeleteManyAssetsContextSchema: z.ZodObject<{
|
|
|
641
641
|
token?: string | undefined;
|
|
642
642
|
}>;
|
|
643
643
|
headers: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
|
|
644
|
-
encodings: z.
|
|
644
|
+
encodings: z.ZodArray<z.ZodTuple<[z.ZodEnum<["identity", "gzip", "compress", "deflate", "br"]>, z.ZodObject<{
|
|
645
645
|
modified: z.ZodBigInt;
|
|
646
646
|
content_chunks: z.ZodArray<z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>, "many">;
|
|
647
647
|
total_length: z.ZodBigInt;
|
|
@@ -656,7 +656,7 @@ export declare const OnDeleteManyAssetsContextSchema: z.ZodObject<{
|
|
|
656
656
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
657
657
|
total_length: bigint;
|
|
658
658
|
sha256: Uint8Array<ArrayBuffer>;
|
|
659
|
-
}
|
|
659
|
+
}>], null>, "many">;
|
|
660
660
|
created_at: z.ZodBigInt;
|
|
661
661
|
updated_at: z.ZodBigInt;
|
|
662
662
|
version: z.ZodOptional<z.ZodBigInt>;
|
|
@@ -672,12 +672,12 @@ export declare const OnDeleteManyAssetsContextSchema: z.ZodObject<{
|
|
|
672
672
|
token?: string | undefined;
|
|
673
673
|
};
|
|
674
674
|
headers: [string, string][];
|
|
675
|
-
encodings:
|
|
675
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
676
676
|
modified: bigint;
|
|
677
677
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
678
678
|
total_length: bigint;
|
|
679
679
|
sha256: Uint8Array<ArrayBuffer>;
|
|
680
|
-
}
|
|
680
|
+
}][];
|
|
681
681
|
version?: bigint | undefined;
|
|
682
682
|
}, {
|
|
683
683
|
created_at: bigint;
|
|
@@ -691,12 +691,12 @@ export declare const OnDeleteManyAssetsContextSchema: z.ZodObject<{
|
|
|
691
691
|
token?: string | undefined;
|
|
692
692
|
};
|
|
693
693
|
headers: [string, string][];
|
|
694
|
-
encodings:
|
|
694
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
695
695
|
modified: bigint;
|
|
696
696
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
697
697
|
total_length: bigint;
|
|
698
698
|
sha256: Uint8Array<ArrayBuffer>;
|
|
699
|
-
}
|
|
699
|
+
}][];
|
|
700
700
|
version?: bigint | undefined;
|
|
701
701
|
}>>, "many">;
|
|
702
702
|
}>, z.baseObjectInputType<{
|
|
@@ -709,7 +709,7 @@ export declare const OnDeleteManyAssetsContextSchema: z.ZodObject<{
|
|
|
709
709
|
collection: z.ZodString;
|
|
710
710
|
owner: z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>;
|
|
711
711
|
description: z.ZodOptional<z.ZodString>;
|
|
712
|
-
}, "
|
|
712
|
+
}, "strict", z.ZodTypeAny, {
|
|
713
713
|
owner: Uint8Array<ArrayBufferLike>;
|
|
714
714
|
collection: string;
|
|
715
715
|
name: string;
|
|
@@ -725,7 +725,7 @@ export declare const OnDeleteManyAssetsContextSchema: z.ZodObject<{
|
|
|
725
725
|
token?: string | undefined;
|
|
726
726
|
}>;
|
|
727
727
|
headers: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
|
|
728
|
-
encodings: z.
|
|
728
|
+
encodings: z.ZodArray<z.ZodTuple<[z.ZodEnum<["identity", "gzip", "compress", "deflate", "br"]>, z.ZodObject<{
|
|
729
729
|
modified: z.ZodBigInt;
|
|
730
730
|
content_chunks: z.ZodArray<z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>, "many">;
|
|
731
731
|
total_length: z.ZodBigInt;
|
|
@@ -740,7 +740,7 @@ export declare const OnDeleteManyAssetsContextSchema: z.ZodObject<{
|
|
|
740
740
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
741
741
|
total_length: bigint;
|
|
742
742
|
sha256: Uint8Array<ArrayBuffer>;
|
|
743
|
-
}
|
|
743
|
+
}>], null>, "many">;
|
|
744
744
|
created_at: z.ZodBigInt;
|
|
745
745
|
updated_at: z.ZodBigInt;
|
|
746
746
|
version: z.ZodOptional<z.ZodBigInt>;
|
|
@@ -756,12 +756,12 @@ export declare const OnDeleteManyAssetsContextSchema: z.ZodObject<{
|
|
|
756
756
|
token?: string | undefined;
|
|
757
757
|
};
|
|
758
758
|
headers: [string, string][];
|
|
759
|
-
encodings:
|
|
759
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
760
760
|
modified: bigint;
|
|
761
761
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
762
762
|
total_length: bigint;
|
|
763
763
|
sha256: Uint8Array<ArrayBuffer>;
|
|
764
|
-
}
|
|
764
|
+
}][];
|
|
765
765
|
version?: bigint | undefined;
|
|
766
766
|
}, {
|
|
767
767
|
created_at: bigint;
|
|
@@ -775,12 +775,12 @@ export declare const OnDeleteManyAssetsContextSchema: z.ZodObject<{
|
|
|
775
775
|
token?: string | undefined;
|
|
776
776
|
};
|
|
777
777
|
headers: [string, string][];
|
|
778
|
-
encodings:
|
|
778
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
779
779
|
modified: bigint;
|
|
780
780
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
781
781
|
total_length: bigint;
|
|
782
782
|
sha256: Uint8Array<ArrayBuffer>;
|
|
783
|
-
}
|
|
783
|
+
}][];
|
|
784
784
|
version?: bigint | undefined;
|
|
785
785
|
}>>, "many">;
|
|
786
786
|
}>>;
|
|
@@ -803,7 +803,7 @@ export declare const OnDeleteFilteredAssetsContextSchema: z.ZodObject<{
|
|
|
803
803
|
collection: z.ZodString;
|
|
804
804
|
owner: z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>;
|
|
805
805
|
description: z.ZodOptional<z.ZodString>;
|
|
806
|
-
}, "
|
|
806
|
+
}, "strict", z.ZodTypeAny, {
|
|
807
807
|
owner: Uint8Array<ArrayBufferLike>;
|
|
808
808
|
collection: string;
|
|
809
809
|
name: string;
|
|
@@ -819,7 +819,7 @@ export declare const OnDeleteFilteredAssetsContextSchema: z.ZodObject<{
|
|
|
819
819
|
token?: string | undefined;
|
|
820
820
|
}>;
|
|
821
821
|
headers: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
|
|
822
|
-
encodings: z.
|
|
822
|
+
encodings: z.ZodArray<z.ZodTuple<[z.ZodEnum<["identity", "gzip", "compress", "deflate", "br"]>, z.ZodObject<{
|
|
823
823
|
modified: z.ZodBigInt;
|
|
824
824
|
content_chunks: z.ZodArray<z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>, "many">;
|
|
825
825
|
total_length: z.ZodBigInt;
|
|
@@ -834,7 +834,7 @@ export declare const OnDeleteFilteredAssetsContextSchema: z.ZodObject<{
|
|
|
834
834
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
835
835
|
total_length: bigint;
|
|
836
836
|
sha256: Uint8Array<ArrayBuffer>;
|
|
837
|
-
}
|
|
837
|
+
}>], null>, "many">;
|
|
838
838
|
created_at: z.ZodBigInt;
|
|
839
839
|
updated_at: z.ZodBigInt;
|
|
840
840
|
version: z.ZodOptional<z.ZodBigInt>;
|
|
@@ -850,12 +850,12 @@ export declare const OnDeleteFilteredAssetsContextSchema: z.ZodObject<{
|
|
|
850
850
|
token?: string | undefined;
|
|
851
851
|
};
|
|
852
852
|
headers: [string, string][];
|
|
853
|
-
encodings:
|
|
853
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
854
854
|
modified: bigint;
|
|
855
855
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
856
856
|
total_length: bigint;
|
|
857
857
|
sha256: Uint8Array<ArrayBuffer>;
|
|
858
|
-
}
|
|
858
|
+
}][];
|
|
859
859
|
version?: bigint | undefined;
|
|
860
860
|
}, {
|
|
861
861
|
created_at: bigint;
|
|
@@ -869,12 +869,12 @@ export declare const OnDeleteFilteredAssetsContextSchema: z.ZodObject<{
|
|
|
869
869
|
token?: string | undefined;
|
|
870
870
|
};
|
|
871
871
|
headers: [string, string][];
|
|
872
|
-
encodings:
|
|
872
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
873
873
|
modified: bigint;
|
|
874
874
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
875
875
|
total_length: bigint;
|
|
876
876
|
sha256: Uint8Array<ArrayBuffer>;
|
|
877
|
-
}
|
|
877
|
+
}][];
|
|
878
878
|
version?: bigint | undefined;
|
|
879
879
|
}>>, "many">;
|
|
880
880
|
}, "strict", z.ZodTypeAny, z.baseObjectOutputType<{
|
|
@@ -887,7 +887,7 @@ export declare const OnDeleteFilteredAssetsContextSchema: z.ZodObject<{
|
|
|
887
887
|
collection: z.ZodString;
|
|
888
888
|
owner: z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>;
|
|
889
889
|
description: z.ZodOptional<z.ZodString>;
|
|
890
|
-
}, "
|
|
890
|
+
}, "strict", z.ZodTypeAny, {
|
|
891
891
|
owner: Uint8Array<ArrayBufferLike>;
|
|
892
892
|
collection: string;
|
|
893
893
|
name: string;
|
|
@@ -903,7 +903,7 @@ export declare const OnDeleteFilteredAssetsContextSchema: z.ZodObject<{
|
|
|
903
903
|
token?: string | undefined;
|
|
904
904
|
}>;
|
|
905
905
|
headers: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
|
|
906
|
-
encodings: z.
|
|
906
|
+
encodings: z.ZodArray<z.ZodTuple<[z.ZodEnum<["identity", "gzip", "compress", "deflate", "br"]>, z.ZodObject<{
|
|
907
907
|
modified: z.ZodBigInt;
|
|
908
908
|
content_chunks: z.ZodArray<z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>, "many">;
|
|
909
909
|
total_length: z.ZodBigInt;
|
|
@@ -918,7 +918,7 @@ export declare const OnDeleteFilteredAssetsContextSchema: z.ZodObject<{
|
|
|
918
918
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
919
919
|
total_length: bigint;
|
|
920
920
|
sha256: Uint8Array<ArrayBuffer>;
|
|
921
|
-
}
|
|
921
|
+
}>], null>, "many">;
|
|
922
922
|
created_at: z.ZodBigInt;
|
|
923
923
|
updated_at: z.ZodBigInt;
|
|
924
924
|
version: z.ZodOptional<z.ZodBigInt>;
|
|
@@ -934,12 +934,12 @@ export declare const OnDeleteFilteredAssetsContextSchema: z.ZodObject<{
|
|
|
934
934
|
token?: string | undefined;
|
|
935
935
|
};
|
|
936
936
|
headers: [string, string][];
|
|
937
|
-
encodings:
|
|
937
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
938
938
|
modified: bigint;
|
|
939
939
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
940
940
|
total_length: bigint;
|
|
941
941
|
sha256: Uint8Array<ArrayBuffer>;
|
|
942
|
-
}
|
|
942
|
+
}][];
|
|
943
943
|
version?: bigint | undefined;
|
|
944
944
|
}, {
|
|
945
945
|
created_at: bigint;
|
|
@@ -953,12 +953,12 @@ export declare const OnDeleteFilteredAssetsContextSchema: z.ZodObject<{
|
|
|
953
953
|
token?: string | undefined;
|
|
954
954
|
};
|
|
955
955
|
headers: [string, string][];
|
|
956
|
-
encodings:
|
|
956
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
957
957
|
modified: bigint;
|
|
958
958
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
959
959
|
total_length: bigint;
|
|
960
960
|
sha256: Uint8Array<ArrayBuffer>;
|
|
961
|
-
}
|
|
961
|
+
}][];
|
|
962
962
|
version?: bigint | undefined;
|
|
963
963
|
}>>, "many">;
|
|
964
964
|
}>, z.baseObjectInputType<{
|
|
@@ -971,7 +971,7 @@ export declare const OnDeleteFilteredAssetsContextSchema: z.ZodObject<{
|
|
|
971
971
|
collection: z.ZodString;
|
|
972
972
|
owner: z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>;
|
|
973
973
|
description: z.ZodOptional<z.ZodString>;
|
|
974
|
-
}, "
|
|
974
|
+
}, "strict", z.ZodTypeAny, {
|
|
975
975
|
owner: Uint8Array<ArrayBufferLike>;
|
|
976
976
|
collection: string;
|
|
977
977
|
name: string;
|
|
@@ -987,7 +987,7 @@ export declare const OnDeleteFilteredAssetsContextSchema: z.ZodObject<{
|
|
|
987
987
|
token?: string | undefined;
|
|
988
988
|
}>;
|
|
989
989
|
headers: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
|
|
990
|
-
encodings: z.
|
|
990
|
+
encodings: z.ZodArray<z.ZodTuple<[z.ZodEnum<["identity", "gzip", "compress", "deflate", "br"]>, z.ZodObject<{
|
|
991
991
|
modified: z.ZodBigInt;
|
|
992
992
|
content_chunks: z.ZodArray<z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>, "many">;
|
|
993
993
|
total_length: z.ZodBigInt;
|
|
@@ -1002,7 +1002,7 @@ export declare const OnDeleteFilteredAssetsContextSchema: z.ZodObject<{
|
|
|
1002
1002
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1003
1003
|
total_length: bigint;
|
|
1004
1004
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1005
|
-
}
|
|
1005
|
+
}>], null>, "many">;
|
|
1006
1006
|
created_at: z.ZodBigInt;
|
|
1007
1007
|
updated_at: z.ZodBigInt;
|
|
1008
1008
|
version: z.ZodOptional<z.ZodBigInt>;
|
|
@@ -1018,12 +1018,12 @@ export declare const OnDeleteFilteredAssetsContextSchema: z.ZodObject<{
|
|
|
1018
1018
|
token?: string | undefined;
|
|
1019
1019
|
};
|
|
1020
1020
|
headers: [string, string][];
|
|
1021
|
-
encodings:
|
|
1021
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
1022
1022
|
modified: bigint;
|
|
1023
1023
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1024
1024
|
total_length: bigint;
|
|
1025
1025
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1026
|
-
}
|
|
1026
|
+
}][];
|
|
1027
1027
|
version?: bigint | undefined;
|
|
1028
1028
|
}, {
|
|
1029
1029
|
created_at: bigint;
|
|
@@ -1037,12 +1037,12 @@ export declare const OnDeleteFilteredAssetsContextSchema: z.ZodObject<{
|
|
|
1037
1037
|
token?: string | undefined;
|
|
1038
1038
|
};
|
|
1039
1039
|
headers: [string, string][];
|
|
1040
|
-
encodings:
|
|
1040
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
1041
1041
|
modified: bigint;
|
|
1042
1042
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1043
1043
|
total_length: bigint;
|
|
1044
1044
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1045
|
-
}
|
|
1045
|
+
}][];
|
|
1046
1046
|
version?: bigint | undefined;
|
|
1047
1047
|
}>>, "many">;
|
|
1048
1048
|
}>>;
|
|
@@ -1066,7 +1066,7 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1066
1066
|
collection: z.ZodString;
|
|
1067
1067
|
owner: z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>;
|
|
1068
1068
|
description: z.ZodOptional<z.ZodString>;
|
|
1069
|
-
}, "
|
|
1069
|
+
}, "strict", z.ZodTypeAny, {
|
|
1070
1070
|
owner: Uint8Array<ArrayBufferLike>;
|
|
1071
1071
|
collection: string;
|
|
1072
1072
|
name: string;
|
|
@@ -1082,7 +1082,7 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1082
1082
|
token?: string | undefined;
|
|
1083
1083
|
}>;
|
|
1084
1084
|
headers: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
|
|
1085
|
-
encodings: z.
|
|
1085
|
+
encodings: z.ZodArray<z.ZodTuple<[z.ZodEnum<["identity", "gzip", "compress", "deflate", "br"]>, z.ZodObject<{
|
|
1086
1086
|
modified: z.ZodBigInt;
|
|
1087
1087
|
content_chunks: z.ZodArray<z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>, "many">;
|
|
1088
1088
|
total_length: z.ZodBigInt;
|
|
@@ -1097,7 +1097,7 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1097
1097
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1098
1098
|
total_length: bigint;
|
|
1099
1099
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1100
|
-
}
|
|
1100
|
+
}>], null>, "many">;
|
|
1101
1101
|
created_at: z.ZodBigInt;
|
|
1102
1102
|
updated_at: z.ZodBigInt;
|
|
1103
1103
|
version: z.ZodOptional<z.ZodBigInt>;
|
|
@@ -1113,12 +1113,12 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1113
1113
|
token?: string | undefined;
|
|
1114
1114
|
};
|
|
1115
1115
|
headers: [string, string][];
|
|
1116
|
-
encodings:
|
|
1116
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
1117
1117
|
modified: bigint;
|
|
1118
1118
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1119
1119
|
total_length: bigint;
|
|
1120
1120
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1121
|
-
}
|
|
1121
|
+
}][];
|
|
1122
1122
|
version?: bigint | undefined;
|
|
1123
1123
|
}, {
|
|
1124
1124
|
created_at: bigint;
|
|
@@ -1132,12 +1132,12 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1132
1132
|
token?: string | undefined;
|
|
1133
1133
|
};
|
|
1134
1134
|
headers: [string, string][];
|
|
1135
|
-
encodings:
|
|
1135
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
1136
1136
|
modified: bigint;
|
|
1137
1137
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1138
1138
|
total_length: bigint;
|
|
1139
1139
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1140
|
-
}
|
|
1140
|
+
}][];
|
|
1141
1141
|
version?: bigint | undefined;
|
|
1142
1142
|
}>>;
|
|
1143
1143
|
batch: z.ZodObject<{
|
|
@@ -1148,7 +1148,7 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1148
1148
|
collection: z.ZodString;
|
|
1149
1149
|
owner: z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>;
|
|
1150
1150
|
description: z.ZodOptional<z.ZodString>;
|
|
1151
|
-
}, "
|
|
1151
|
+
}, "strict", z.ZodTypeAny, {
|
|
1152
1152
|
owner: Uint8Array<ArrayBufferLike>;
|
|
1153
1153
|
collection: string;
|
|
1154
1154
|
name: string;
|
|
@@ -1165,9 +1165,8 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1165
1165
|
}>;
|
|
1166
1166
|
reference_id: z.ZodOptional<z.ZodBigInt>;
|
|
1167
1167
|
expires_at: z.ZodBigInt;
|
|
1168
|
-
encoding_type: z.ZodOptional<z.
|
|
1168
|
+
encoding_type: z.ZodOptional<z.ZodEnum<["identity", "gzip", "compress", "deflate", "br"]>>;
|
|
1169
1169
|
}, "strict", z.ZodTypeAny, {
|
|
1170
|
-
expires_at: bigint;
|
|
1171
1170
|
key: {
|
|
1172
1171
|
owner: Uint8Array<ArrayBufferLike>;
|
|
1173
1172
|
collection: string;
|
|
@@ -1176,10 +1175,10 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1176
1175
|
description?: string | undefined;
|
|
1177
1176
|
token?: string | undefined;
|
|
1178
1177
|
};
|
|
1178
|
+
expires_at: bigint;
|
|
1179
1179
|
reference_id?: bigint | undefined;
|
|
1180
|
-
encoding_type?:
|
|
1180
|
+
encoding_type?: "identity" | "gzip" | "compress" | "deflate" | "br" | undefined;
|
|
1181
1181
|
}, {
|
|
1182
|
-
expires_at: bigint;
|
|
1183
1182
|
key: {
|
|
1184
1183
|
owner: Uint8Array<ArrayBufferLike>;
|
|
1185
1184
|
collection: string;
|
|
@@ -1188,8 +1187,9 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1188
1187
|
description?: string | undefined;
|
|
1189
1188
|
token?: string | undefined;
|
|
1190
1189
|
};
|
|
1190
|
+
expires_at: bigint;
|
|
1191
1191
|
reference_id?: bigint | undefined;
|
|
1192
|
-
encoding_type?:
|
|
1192
|
+
encoding_type?: "identity" | "gzip" | "compress" | "deflate" | "br" | undefined;
|
|
1193
1193
|
}>;
|
|
1194
1194
|
commit_batch: z.ZodObject<{
|
|
1195
1195
|
batch_id: z.ZodBigInt;
|
|
@@ -1206,7 +1206,6 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1206
1206
|
}>;
|
|
1207
1207
|
}, "strict", z.ZodTypeAny, {
|
|
1208
1208
|
batch: {
|
|
1209
|
-
expires_at: bigint;
|
|
1210
1209
|
key: {
|
|
1211
1210
|
owner: Uint8Array<ArrayBufferLike>;
|
|
1212
1211
|
collection: string;
|
|
@@ -1215,8 +1214,9 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1215
1214
|
description?: string | undefined;
|
|
1216
1215
|
token?: string | undefined;
|
|
1217
1216
|
};
|
|
1217
|
+
expires_at: bigint;
|
|
1218
1218
|
reference_id?: bigint | undefined;
|
|
1219
|
-
encoding_type?:
|
|
1219
|
+
encoding_type?: "identity" | "gzip" | "compress" | "deflate" | "br" | undefined;
|
|
1220
1220
|
};
|
|
1221
1221
|
commit_batch: {
|
|
1222
1222
|
headers: [string, string][];
|
|
@@ -1235,17 +1235,16 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1235
1235
|
token?: string | undefined;
|
|
1236
1236
|
};
|
|
1237
1237
|
headers: [string, string][];
|
|
1238
|
-
encodings:
|
|
1238
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
1239
1239
|
modified: bigint;
|
|
1240
1240
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1241
1241
|
total_length: bigint;
|
|
1242
1242
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1243
|
-
}
|
|
1243
|
+
}][];
|
|
1244
1244
|
version?: bigint | undefined;
|
|
1245
1245
|
} | undefined;
|
|
1246
1246
|
}, {
|
|
1247
1247
|
batch: {
|
|
1248
|
-
expires_at: bigint;
|
|
1249
1248
|
key: {
|
|
1250
1249
|
owner: Uint8Array<ArrayBufferLike>;
|
|
1251
1250
|
collection: string;
|
|
@@ -1254,8 +1253,9 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1254
1253
|
description?: string | undefined;
|
|
1255
1254
|
token?: string | undefined;
|
|
1256
1255
|
};
|
|
1256
|
+
expires_at: bigint;
|
|
1257
1257
|
reference_id?: bigint | undefined;
|
|
1258
|
-
encoding_type?:
|
|
1258
|
+
encoding_type?: "identity" | "gzip" | "compress" | "deflate" | "br" | undefined;
|
|
1259
1259
|
};
|
|
1260
1260
|
commit_batch: {
|
|
1261
1261
|
headers: [string, string][];
|
|
@@ -1274,12 +1274,12 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1274
1274
|
token?: string | undefined;
|
|
1275
1275
|
};
|
|
1276
1276
|
headers: [string, string][];
|
|
1277
|
-
encodings:
|
|
1277
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
1278
1278
|
modified: bigint;
|
|
1279
1279
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1280
1280
|
total_length: bigint;
|
|
1281
1281
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1282
|
-
}
|
|
1282
|
+
}][];
|
|
1283
1283
|
version?: bigint | undefined;
|
|
1284
1284
|
} | undefined;
|
|
1285
1285
|
}>;
|
|
@@ -1294,7 +1294,7 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1294
1294
|
collection: z.ZodString;
|
|
1295
1295
|
owner: z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>;
|
|
1296
1296
|
description: z.ZodOptional<z.ZodString>;
|
|
1297
|
-
}, "
|
|
1297
|
+
}, "strict", z.ZodTypeAny, {
|
|
1298
1298
|
owner: Uint8Array<ArrayBufferLike>;
|
|
1299
1299
|
collection: string;
|
|
1300
1300
|
name: string;
|
|
@@ -1310,7 +1310,7 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1310
1310
|
token?: string | undefined;
|
|
1311
1311
|
}>;
|
|
1312
1312
|
headers: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
|
|
1313
|
-
encodings: z.
|
|
1313
|
+
encodings: z.ZodArray<z.ZodTuple<[z.ZodEnum<["identity", "gzip", "compress", "deflate", "br"]>, z.ZodObject<{
|
|
1314
1314
|
modified: z.ZodBigInt;
|
|
1315
1315
|
content_chunks: z.ZodArray<z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>, "many">;
|
|
1316
1316
|
total_length: z.ZodBigInt;
|
|
@@ -1325,7 +1325,7 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1325
1325
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1326
1326
|
total_length: bigint;
|
|
1327
1327
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1328
|
-
}
|
|
1328
|
+
}>], null>, "many">;
|
|
1329
1329
|
created_at: z.ZodBigInt;
|
|
1330
1330
|
updated_at: z.ZodBigInt;
|
|
1331
1331
|
version: z.ZodOptional<z.ZodBigInt>;
|
|
@@ -1341,12 +1341,12 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1341
1341
|
token?: string | undefined;
|
|
1342
1342
|
};
|
|
1343
1343
|
headers: [string, string][];
|
|
1344
|
-
encodings:
|
|
1344
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
1345
1345
|
modified: bigint;
|
|
1346
1346
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1347
1347
|
total_length: bigint;
|
|
1348
1348
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1349
|
-
}
|
|
1349
|
+
}][];
|
|
1350
1350
|
version?: bigint | undefined;
|
|
1351
1351
|
}, {
|
|
1352
1352
|
created_at: bigint;
|
|
@@ -1360,12 +1360,12 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1360
1360
|
token?: string | undefined;
|
|
1361
1361
|
};
|
|
1362
1362
|
headers: [string, string][];
|
|
1363
|
-
encodings:
|
|
1363
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
1364
1364
|
modified: bigint;
|
|
1365
1365
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1366
1366
|
total_length: bigint;
|
|
1367
1367
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1368
|
-
}
|
|
1368
|
+
}][];
|
|
1369
1369
|
version?: bigint | undefined;
|
|
1370
1370
|
}>>;
|
|
1371
1371
|
batch: z.ZodObject<{
|
|
@@ -1376,7 +1376,7 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1376
1376
|
collection: z.ZodString;
|
|
1377
1377
|
owner: z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>;
|
|
1378
1378
|
description: z.ZodOptional<z.ZodString>;
|
|
1379
|
-
}, "
|
|
1379
|
+
}, "strict", z.ZodTypeAny, {
|
|
1380
1380
|
owner: Uint8Array<ArrayBufferLike>;
|
|
1381
1381
|
collection: string;
|
|
1382
1382
|
name: string;
|
|
@@ -1393,9 +1393,8 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1393
1393
|
}>;
|
|
1394
1394
|
reference_id: z.ZodOptional<z.ZodBigInt>;
|
|
1395
1395
|
expires_at: z.ZodBigInt;
|
|
1396
|
-
encoding_type: z.ZodOptional<z.
|
|
1396
|
+
encoding_type: z.ZodOptional<z.ZodEnum<["identity", "gzip", "compress", "deflate", "br"]>>;
|
|
1397
1397
|
}, "strict", z.ZodTypeAny, {
|
|
1398
|
-
expires_at: bigint;
|
|
1399
1398
|
key: {
|
|
1400
1399
|
owner: Uint8Array<ArrayBufferLike>;
|
|
1401
1400
|
collection: string;
|
|
@@ -1404,10 +1403,10 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1404
1403
|
description?: string | undefined;
|
|
1405
1404
|
token?: string | undefined;
|
|
1406
1405
|
};
|
|
1406
|
+
expires_at: bigint;
|
|
1407
1407
|
reference_id?: bigint | undefined;
|
|
1408
|
-
encoding_type?:
|
|
1408
|
+
encoding_type?: "identity" | "gzip" | "compress" | "deflate" | "br" | undefined;
|
|
1409
1409
|
}, {
|
|
1410
|
-
expires_at: bigint;
|
|
1411
1410
|
key: {
|
|
1412
1411
|
owner: Uint8Array<ArrayBufferLike>;
|
|
1413
1412
|
collection: string;
|
|
@@ -1416,8 +1415,9 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1416
1415
|
description?: string | undefined;
|
|
1417
1416
|
token?: string | undefined;
|
|
1418
1417
|
};
|
|
1418
|
+
expires_at: bigint;
|
|
1419
1419
|
reference_id?: bigint | undefined;
|
|
1420
|
-
encoding_type?:
|
|
1420
|
+
encoding_type?: "identity" | "gzip" | "compress" | "deflate" | "br" | undefined;
|
|
1421
1421
|
}>;
|
|
1422
1422
|
commit_batch: z.ZodObject<{
|
|
1423
1423
|
batch_id: z.ZodBigInt;
|
|
@@ -1434,7 +1434,6 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1434
1434
|
}>;
|
|
1435
1435
|
}, "strict", z.ZodTypeAny, {
|
|
1436
1436
|
batch: {
|
|
1437
|
-
expires_at: bigint;
|
|
1438
1437
|
key: {
|
|
1439
1438
|
owner: Uint8Array<ArrayBufferLike>;
|
|
1440
1439
|
collection: string;
|
|
@@ -1443,8 +1442,9 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1443
1442
|
description?: string | undefined;
|
|
1444
1443
|
token?: string | undefined;
|
|
1445
1444
|
};
|
|
1445
|
+
expires_at: bigint;
|
|
1446
1446
|
reference_id?: bigint | undefined;
|
|
1447
|
-
encoding_type?:
|
|
1447
|
+
encoding_type?: "identity" | "gzip" | "compress" | "deflate" | "br" | undefined;
|
|
1448
1448
|
};
|
|
1449
1449
|
commit_batch: {
|
|
1450
1450
|
headers: [string, string][];
|
|
@@ -1463,17 +1463,16 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1463
1463
|
token?: string | undefined;
|
|
1464
1464
|
};
|
|
1465
1465
|
headers: [string, string][];
|
|
1466
|
-
encodings:
|
|
1466
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
1467
1467
|
modified: bigint;
|
|
1468
1468
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1469
1469
|
total_length: bigint;
|
|
1470
1470
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1471
|
-
}
|
|
1471
|
+
}][];
|
|
1472
1472
|
version?: bigint | undefined;
|
|
1473
1473
|
} | undefined;
|
|
1474
1474
|
}, {
|
|
1475
1475
|
batch: {
|
|
1476
|
-
expires_at: bigint;
|
|
1477
1476
|
key: {
|
|
1478
1477
|
owner: Uint8Array<ArrayBufferLike>;
|
|
1479
1478
|
collection: string;
|
|
@@ -1482,8 +1481,9 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1482
1481
|
description?: string | undefined;
|
|
1483
1482
|
token?: string | undefined;
|
|
1484
1483
|
};
|
|
1484
|
+
expires_at: bigint;
|
|
1485
1485
|
reference_id?: bigint | undefined;
|
|
1486
|
-
encoding_type?:
|
|
1486
|
+
encoding_type?: "identity" | "gzip" | "compress" | "deflate" | "br" | undefined;
|
|
1487
1487
|
};
|
|
1488
1488
|
commit_batch: {
|
|
1489
1489
|
headers: [string, string][];
|
|
@@ -1502,12 +1502,12 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1502
1502
|
token?: string | undefined;
|
|
1503
1503
|
};
|
|
1504
1504
|
headers: [string, string][];
|
|
1505
|
-
encodings:
|
|
1505
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
1506
1506
|
modified: bigint;
|
|
1507
1507
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1508
1508
|
total_length: bigint;
|
|
1509
1509
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1510
|
-
}
|
|
1510
|
+
}][];
|
|
1511
1511
|
version?: bigint | undefined;
|
|
1512
1512
|
} | undefined;
|
|
1513
1513
|
}>;
|
|
@@ -1522,7 +1522,7 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1522
1522
|
collection: z.ZodString;
|
|
1523
1523
|
owner: z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>;
|
|
1524
1524
|
description: z.ZodOptional<z.ZodString>;
|
|
1525
|
-
}, "
|
|
1525
|
+
}, "strict", z.ZodTypeAny, {
|
|
1526
1526
|
owner: Uint8Array<ArrayBufferLike>;
|
|
1527
1527
|
collection: string;
|
|
1528
1528
|
name: string;
|
|
@@ -1538,7 +1538,7 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1538
1538
|
token?: string | undefined;
|
|
1539
1539
|
}>;
|
|
1540
1540
|
headers: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
|
|
1541
|
-
encodings: z.
|
|
1541
|
+
encodings: z.ZodArray<z.ZodTuple<[z.ZodEnum<["identity", "gzip", "compress", "deflate", "br"]>, z.ZodObject<{
|
|
1542
1542
|
modified: z.ZodBigInt;
|
|
1543
1543
|
content_chunks: z.ZodArray<z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>, "many">;
|
|
1544
1544
|
total_length: z.ZodBigInt;
|
|
@@ -1553,7 +1553,7 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1553
1553
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1554
1554
|
total_length: bigint;
|
|
1555
1555
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1556
|
-
}
|
|
1556
|
+
}>], null>, "many">;
|
|
1557
1557
|
created_at: z.ZodBigInt;
|
|
1558
1558
|
updated_at: z.ZodBigInt;
|
|
1559
1559
|
version: z.ZodOptional<z.ZodBigInt>;
|
|
@@ -1569,12 +1569,12 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1569
1569
|
token?: string | undefined;
|
|
1570
1570
|
};
|
|
1571
1571
|
headers: [string, string][];
|
|
1572
|
-
encodings:
|
|
1572
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
1573
1573
|
modified: bigint;
|
|
1574
1574
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1575
1575
|
total_length: bigint;
|
|
1576
1576
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1577
|
-
}
|
|
1577
|
+
}][];
|
|
1578
1578
|
version?: bigint | undefined;
|
|
1579
1579
|
}, {
|
|
1580
1580
|
created_at: bigint;
|
|
@@ -1588,12 +1588,12 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1588
1588
|
token?: string | undefined;
|
|
1589
1589
|
};
|
|
1590
1590
|
headers: [string, string][];
|
|
1591
|
-
encodings:
|
|
1591
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
1592
1592
|
modified: bigint;
|
|
1593
1593
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1594
1594
|
total_length: bigint;
|
|
1595
1595
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1596
|
-
}
|
|
1596
|
+
}][];
|
|
1597
1597
|
version?: bigint | undefined;
|
|
1598
1598
|
}>>;
|
|
1599
1599
|
batch: z.ZodObject<{
|
|
@@ -1604,7 +1604,7 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1604
1604
|
collection: z.ZodString;
|
|
1605
1605
|
owner: z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>;
|
|
1606
1606
|
description: z.ZodOptional<z.ZodString>;
|
|
1607
|
-
}, "
|
|
1607
|
+
}, "strict", z.ZodTypeAny, {
|
|
1608
1608
|
owner: Uint8Array<ArrayBufferLike>;
|
|
1609
1609
|
collection: string;
|
|
1610
1610
|
name: string;
|
|
@@ -1621,9 +1621,8 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1621
1621
|
}>;
|
|
1622
1622
|
reference_id: z.ZodOptional<z.ZodBigInt>;
|
|
1623
1623
|
expires_at: z.ZodBigInt;
|
|
1624
|
-
encoding_type: z.ZodOptional<z.
|
|
1624
|
+
encoding_type: z.ZodOptional<z.ZodEnum<["identity", "gzip", "compress", "deflate", "br"]>>;
|
|
1625
1625
|
}, "strict", z.ZodTypeAny, {
|
|
1626
|
-
expires_at: bigint;
|
|
1627
1626
|
key: {
|
|
1628
1627
|
owner: Uint8Array<ArrayBufferLike>;
|
|
1629
1628
|
collection: string;
|
|
@@ -1632,10 +1631,10 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1632
1631
|
description?: string | undefined;
|
|
1633
1632
|
token?: string | undefined;
|
|
1634
1633
|
};
|
|
1634
|
+
expires_at: bigint;
|
|
1635
1635
|
reference_id?: bigint | undefined;
|
|
1636
|
-
encoding_type?:
|
|
1636
|
+
encoding_type?: "identity" | "gzip" | "compress" | "deflate" | "br" | undefined;
|
|
1637
1637
|
}, {
|
|
1638
|
-
expires_at: bigint;
|
|
1639
1638
|
key: {
|
|
1640
1639
|
owner: Uint8Array<ArrayBufferLike>;
|
|
1641
1640
|
collection: string;
|
|
@@ -1644,8 +1643,9 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1644
1643
|
description?: string | undefined;
|
|
1645
1644
|
token?: string | undefined;
|
|
1646
1645
|
};
|
|
1646
|
+
expires_at: bigint;
|
|
1647
1647
|
reference_id?: bigint | undefined;
|
|
1648
|
-
encoding_type?:
|
|
1648
|
+
encoding_type?: "identity" | "gzip" | "compress" | "deflate" | "br" | undefined;
|
|
1649
1649
|
}>;
|
|
1650
1650
|
commit_batch: z.ZodObject<{
|
|
1651
1651
|
batch_id: z.ZodBigInt;
|
|
@@ -1662,7 +1662,6 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1662
1662
|
}>;
|
|
1663
1663
|
}, "strict", z.ZodTypeAny, {
|
|
1664
1664
|
batch: {
|
|
1665
|
-
expires_at: bigint;
|
|
1666
1665
|
key: {
|
|
1667
1666
|
owner: Uint8Array<ArrayBufferLike>;
|
|
1668
1667
|
collection: string;
|
|
@@ -1671,8 +1670,9 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1671
1670
|
description?: string | undefined;
|
|
1672
1671
|
token?: string | undefined;
|
|
1673
1672
|
};
|
|
1673
|
+
expires_at: bigint;
|
|
1674
1674
|
reference_id?: bigint | undefined;
|
|
1675
|
-
encoding_type?:
|
|
1675
|
+
encoding_type?: "identity" | "gzip" | "compress" | "deflate" | "br" | undefined;
|
|
1676
1676
|
};
|
|
1677
1677
|
commit_batch: {
|
|
1678
1678
|
headers: [string, string][];
|
|
@@ -1691,17 +1691,16 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1691
1691
|
token?: string | undefined;
|
|
1692
1692
|
};
|
|
1693
1693
|
headers: [string, string][];
|
|
1694
|
-
encodings:
|
|
1694
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
1695
1695
|
modified: bigint;
|
|
1696
1696
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1697
1697
|
total_length: bigint;
|
|
1698
1698
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1699
|
-
}
|
|
1699
|
+
}][];
|
|
1700
1700
|
version?: bigint | undefined;
|
|
1701
1701
|
} | undefined;
|
|
1702
1702
|
}, {
|
|
1703
1703
|
batch: {
|
|
1704
|
-
expires_at: bigint;
|
|
1705
1704
|
key: {
|
|
1706
1705
|
owner: Uint8Array<ArrayBufferLike>;
|
|
1707
1706
|
collection: string;
|
|
@@ -1710,8 +1709,9 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1710
1709
|
description?: string | undefined;
|
|
1711
1710
|
token?: string | undefined;
|
|
1712
1711
|
};
|
|
1712
|
+
expires_at: bigint;
|
|
1713
1713
|
reference_id?: bigint | undefined;
|
|
1714
|
-
encoding_type?:
|
|
1714
|
+
encoding_type?: "identity" | "gzip" | "compress" | "deflate" | "br" | undefined;
|
|
1715
1715
|
};
|
|
1716
1716
|
commit_batch: {
|
|
1717
1717
|
headers: [string, string][];
|
|
@@ -1730,12 +1730,12 @@ export declare const AssertUploadAssetContextSchema: z.ZodObject<{
|
|
|
1730
1730
|
token?: string | undefined;
|
|
1731
1731
|
};
|
|
1732
1732
|
headers: [string, string][];
|
|
1733
|
-
encodings:
|
|
1733
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
1734
1734
|
modified: bigint;
|
|
1735
1735
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1736
1736
|
total_length: bigint;
|
|
1737
1737
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1738
|
-
}
|
|
1738
|
+
}][];
|
|
1739
1739
|
version?: bigint | undefined;
|
|
1740
1740
|
} | undefined;
|
|
1741
1741
|
}>;
|
|
@@ -1759,7 +1759,7 @@ export declare const AssertDeleteAssetContextSchema: z.ZodObject<{
|
|
|
1759
1759
|
collection: z.ZodString;
|
|
1760
1760
|
owner: z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>;
|
|
1761
1761
|
description: z.ZodOptional<z.ZodString>;
|
|
1762
|
-
}, "
|
|
1762
|
+
}, "strict", z.ZodTypeAny, {
|
|
1763
1763
|
owner: Uint8Array<ArrayBufferLike>;
|
|
1764
1764
|
collection: string;
|
|
1765
1765
|
name: string;
|
|
@@ -1775,7 +1775,7 @@ export declare const AssertDeleteAssetContextSchema: z.ZodObject<{
|
|
|
1775
1775
|
token?: string | undefined;
|
|
1776
1776
|
}>;
|
|
1777
1777
|
headers: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
|
|
1778
|
-
encodings: z.
|
|
1778
|
+
encodings: z.ZodArray<z.ZodTuple<[z.ZodEnum<["identity", "gzip", "compress", "deflate", "br"]>, z.ZodObject<{
|
|
1779
1779
|
modified: z.ZodBigInt;
|
|
1780
1780
|
content_chunks: z.ZodArray<z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>, "many">;
|
|
1781
1781
|
total_length: z.ZodBigInt;
|
|
@@ -1790,7 +1790,7 @@ export declare const AssertDeleteAssetContextSchema: z.ZodObject<{
|
|
|
1790
1790
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1791
1791
|
total_length: bigint;
|
|
1792
1792
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1793
|
-
}
|
|
1793
|
+
}>], null>, "many">;
|
|
1794
1794
|
created_at: z.ZodBigInt;
|
|
1795
1795
|
updated_at: z.ZodBigInt;
|
|
1796
1796
|
version: z.ZodOptional<z.ZodBigInt>;
|
|
@@ -1806,12 +1806,12 @@ export declare const AssertDeleteAssetContextSchema: z.ZodObject<{
|
|
|
1806
1806
|
token?: string | undefined;
|
|
1807
1807
|
};
|
|
1808
1808
|
headers: [string, string][];
|
|
1809
|
-
encodings:
|
|
1809
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
1810
1810
|
modified: bigint;
|
|
1811
1811
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1812
1812
|
total_length: bigint;
|
|
1813
1813
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1814
|
-
}
|
|
1814
|
+
}][];
|
|
1815
1815
|
version?: bigint | undefined;
|
|
1816
1816
|
}, {
|
|
1817
1817
|
created_at: bigint;
|
|
@@ -1825,12 +1825,12 @@ export declare const AssertDeleteAssetContextSchema: z.ZodObject<{
|
|
|
1825
1825
|
token?: string | undefined;
|
|
1826
1826
|
};
|
|
1827
1827
|
headers: [string, string][];
|
|
1828
|
-
encodings:
|
|
1828
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
1829
1829
|
modified: bigint;
|
|
1830
1830
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1831
1831
|
total_length: bigint;
|
|
1832
1832
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1833
|
-
}
|
|
1833
|
+
}][];
|
|
1834
1834
|
version?: bigint | undefined;
|
|
1835
1835
|
}>;
|
|
1836
1836
|
}, "strict", z.ZodTypeAny, z.baseObjectOutputType<{
|
|
@@ -1843,7 +1843,7 @@ export declare const AssertDeleteAssetContextSchema: z.ZodObject<{
|
|
|
1843
1843
|
collection: z.ZodString;
|
|
1844
1844
|
owner: z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>;
|
|
1845
1845
|
description: z.ZodOptional<z.ZodString>;
|
|
1846
|
-
}, "
|
|
1846
|
+
}, "strict", z.ZodTypeAny, {
|
|
1847
1847
|
owner: Uint8Array<ArrayBufferLike>;
|
|
1848
1848
|
collection: string;
|
|
1849
1849
|
name: string;
|
|
@@ -1859,7 +1859,7 @@ export declare const AssertDeleteAssetContextSchema: z.ZodObject<{
|
|
|
1859
1859
|
token?: string | undefined;
|
|
1860
1860
|
}>;
|
|
1861
1861
|
headers: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
|
|
1862
|
-
encodings: z.
|
|
1862
|
+
encodings: z.ZodArray<z.ZodTuple<[z.ZodEnum<["identity", "gzip", "compress", "deflate", "br"]>, z.ZodObject<{
|
|
1863
1863
|
modified: z.ZodBigInt;
|
|
1864
1864
|
content_chunks: z.ZodArray<z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>, "many">;
|
|
1865
1865
|
total_length: z.ZodBigInt;
|
|
@@ -1874,7 +1874,7 @@ export declare const AssertDeleteAssetContextSchema: z.ZodObject<{
|
|
|
1874
1874
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1875
1875
|
total_length: bigint;
|
|
1876
1876
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1877
|
-
}
|
|
1877
|
+
}>], null>, "many">;
|
|
1878
1878
|
created_at: z.ZodBigInt;
|
|
1879
1879
|
updated_at: z.ZodBigInt;
|
|
1880
1880
|
version: z.ZodOptional<z.ZodBigInt>;
|
|
@@ -1890,12 +1890,12 @@ export declare const AssertDeleteAssetContextSchema: z.ZodObject<{
|
|
|
1890
1890
|
token?: string | undefined;
|
|
1891
1891
|
};
|
|
1892
1892
|
headers: [string, string][];
|
|
1893
|
-
encodings:
|
|
1893
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
1894
1894
|
modified: bigint;
|
|
1895
1895
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1896
1896
|
total_length: bigint;
|
|
1897
1897
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1898
|
-
}
|
|
1898
|
+
}][];
|
|
1899
1899
|
version?: bigint | undefined;
|
|
1900
1900
|
}, {
|
|
1901
1901
|
created_at: bigint;
|
|
@@ -1909,12 +1909,12 @@ export declare const AssertDeleteAssetContextSchema: z.ZodObject<{
|
|
|
1909
1909
|
token?: string | undefined;
|
|
1910
1910
|
};
|
|
1911
1911
|
headers: [string, string][];
|
|
1912
|
-
encodings:
|
|
1912
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
1913
1913
|
modified: bigint;
|
|
1914
1914
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1915
1915
|
total_length: bigint;
|
|
1916
1916
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1917
|
-
}
|
|
1917
|
+
}][];
|
|
1918
1918
|
version?: bigint | undefined;
|
|
1919
1919
|
}>;
|
|
1920
1920
|
}>, z.baseObjectInputType<{
|
|
@@ -1927,7 +1927,7 @@ export declare const AssertDeleteAssetContextSchema: z.ZodObject<{
|
|
|
1927
1927
|
collection: z.ZodString;
|
|
1928
1928
|
owner: z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>;
|
|
1929
1929
|
description: z.ZodOptional<z.ZodString>;
|
|
1930
|
-
}, "
|
|
1930
|
+
}, "strict", z.ZodTypeAny, {
|
|
1931
1931
|
owner: Uint8Array<ArrayBufferLike>;
|
|
1932
1932
|
collection: string;
|
|
1933
1933
|
name: string;
|
|
@@ -1943,7 +1943,7 @@ export declare const AssertDeleteAssetContextSchema: z.ZodObject<{
|
|
|
1943
1943
|
token?: string | undefined;
|
|
1944
1944
|
}>;
|
|
1945
1945
|
headers: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
|
|
1946
|
-
encodings: z.
|
|
1946
|
+
encodings: z.ZodArray<z.ZodTuple<[z.ZodEnum<["identity", "gzip", "compress", "deflate", "br"]>, z.ZodObject<{
|
|
1947
1947
|
modified: z.ZodBigInt;
|
|
1948
1948
|
content_chunks: z.ZodArray<z.ZodType<Uint8Array<ArrayBufferLike>, z.ZodTypeDef, Uint8Array<ArrayBufferLike>>, "many">;
|
|
1949
1949
|
total_length: z.ZodBigInt;
|
|
@@ -1958,7 +1958,7 @@ export declare const AssertDeleteAssetContextSchema: z.ZodObject<{
|
|
|
1958
1958
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1959
1959
|
total_length: bigint;
|
|
1960
1960
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1961
|
-
}
|
|
1961
|
+
}>], null>, "many">;
|
|
1962
1962
|
created_at: z.ZodBigInt;
|
|
1963
1963
|
updated_at: z.ZodBigInt;
|
|
1964
1964
|
version: z.ZodOptional<z.ZodBigInt>;
|
|
@@ -1974,12 +1974,12 @@ export declare const AssertDeleteAssetContextSchema: z.ZodObject<{
|
|
|
1974
1974
|
token?: string | undefined;
|
|
1975
1975
|
};
|
|
1976
1976
|
headers: [string, string][];
|
|
1977
|
-
encodings:
|
|
1977
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
1978
1978
|
modified: bigint;
|
|
1979
1979
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1980
1980
|
total_length: bigint;
|
|
1981
1981
|
sha256: Uint8Array<ArrayBuffer>;
|
|
1982
|
-
}
|
|
1982
|
+
}][];
|
|
1983
1983
|
version?: bigint | undefined;
|
|
1984
1984
|
}, {
|
|
1985
1985
|
created_at: bigint;
|
|
@@ -1993,12 +1993,12 @@ export declare const AssertDeleteAssetContextSchema: z.ZodObject<{
|
|
|
1993
1993
|
token?: string | undefined;
|
|
1994
1994
|
};
|
|
1995
1995
|
headers: [string, string][];
|
|
1996
|
-
encodings:
|
|
1996
|
+
encodings: ["identity" | "gzip" | "compress" | "deflate" | "br", {
|
|
1997
1997
|
modified: bigint;
|
|
1998
1998
|
content_chunks: Uint8Array<ArrayBufferLike>[];
|
|
1999
1999
|
total_length: bigint;
|
|
2000
2000
|
sha256: Uint8Array<ArrayBuffer>;
|
|
2001
|
-
}
|
|
2001
|
+
}][];
|
|
2002
2002
|
version?: bigint | undefined;
|
|
2003
2003
|
}>;
|
|
2004
2004
|
}>>;
|