@junobuild/functions 0.0.13 → 0.0.14
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 +217 -26
- package/{chunk-6G6FWQ45.js → chunk-367GY4VX.js} +1 -1
- package/chunk-367GY4VX.js.map +7 -0
- package/global.d.ts +12 -0
- package/hooks/assertions.d.ts +40 -40
- package/hooks/schemas/db/context.d.ts +1 -1
- package/hooks/schemas/storage/context.d.ts +12 -12
- package/hooks/schemas/storage/payload.d.ts +4 -4
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/schemas/satellite.d.ts +1 -1
- package/schemas/storage.d.ts +2 -2
- package/sdk/controllers.sdk.d.ts +39 -0
- package/sdk/schemas/controllers.d.ts +174 -0
- package/sdk/schemas/db.d.ts +1 -1
- package/sdk/utils/caller.utils.d.ts +10 -0
- package/sdk.d.ts +2 -0
- package/sdk.js +1 -1
- package/sdk.js.map +4 -4
- package/src/global.d.ts +12 -0
- package/tests/mocks/controllers.mocks.d.ts +4 -0
- package/chunk-6G6FWQ45.js.map +0 -7
package/hooks/assertions.d.ts
CHANGED
|
@@ -2104,6 +2104,7 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2104
2104
|
expires_at: z.ZodBigInt;
|
|
2105
2105
|
encoding_type: z.ZodOptional<z.ZodString>;
|
|
2106
2106
|
}, "strict", z.ZodTypeAny, {
|
|
2107
|
+
expires_at: bigint;
|
|
2107
2108
|
key: {
|
|
2108
2109
|
owner: Uint8Array<ArrayBufferLike>;
|
|
2109
2110
|
collection: string;
|
|
@@ -2112,10 +2113,10 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2112
2113
|
description?: string | undefined;
|
|
2113
2114
|
token?: string | undefined;
|
|
2114
2115
|
};
|
|
2115
|
-
expires_at: bigint;
|
|
2116
2116
|
reference_id?: bigint | undefined;
|
|
2117
2117
|
encoding_type?: string | undefined;
|
|
2118
2118
|
}, {
|
|
2119
|
+
expires_at: bigint;
|
|
2119
2120
|
key: {
|
|
2120
2121
|
owner: Uint8Array<ArrayBufferLike>;
|
|
2121
2122
|
collection: string;
|
|
@@ -2124,7 +2125,6 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2124
2125
|
description?: string | undefined;
|
|
2125
2126
|
token?: string | undefined;
|
|
2126
2127
|
};
|
|
2127
|
-
expires_at: bigint;
|
|
2128
2128
|
reference_id?: bigint | undefined;
|
|
2129
2129
|
encoding_type?: string | undefined;
|
|
2130
2130
|
}>;
|
|
@@ -2143,6 +2143,7 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2143
2143
|
}>;
|
|
2144
2144
|
}, "strict", z.ZodTypeAny, {
|
|
2145
2145
|
batch: {
|
|
2146
|
+
expires_at: bigint;
|
|
2146
2147
|
key: {
|
|
2147
2148
|
owner: Uint8Array<ArrayBufferLike>;
|
|
2148
2149
|
collection: string;
|
|
@@ -2151,7 +2152,6 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2151
2152
|
description?: string | undefined;
|
|
2152
2153
|
token?: string | undefined;
|
|
2153
2154
|
};
|
|
2154
|
-
expires_at: bigint;
|
|
2155
2155
|
reference_id?: bigint | undefined;
|
|
2156
2156
|
encoding_type?: string | undefined;
|
|
2157
2157
|
};
|
|
@@ -2182,6 +2182,7 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2182
2182
|
} | undefined;
|
|
2183
2183
|
}, {
|
|
2184
2184
|
batch: {
|
|
2185
|
+
expires_at: bigint;
|
|
2185
2186
|
key: {
|
|
2186
2187
|
owner: Uint8Array<ArrayBufferLike>;
|
|
2187
2188
|
collection: string;
|
|
@@ -2190,7 +2191,6 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2190
2191
|
description?: string | undefined;
|
|
2191
2192
|
token?: string | undefined;
|
|
2192
2193
|
};
|
|
2193
|
-
expires_at: bigint;
|
|
2194
2194
|
reference_id?: bigint | undefined;
|
|
2195
2195
|
encoding_type?: string | undefined;
|
|
2196
2196
|
};
|
|
@@ -2332,6 +2332,7 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2332
2332
|
expires_at: z.ZodBigInt;
|
|
2333
2333
|
encoding_type: z.ZodOptional<z.ZodString>;
|
|
2334
2334
|
}, "strict", z.ZodTypeAny, {
|
|
2335
|
+
expires_at: bigint;
|
|
2335
2336
|
key: {
|
|
2336
2337
|
owner: Uint8Array<ArrayBufferLike>;
|
|
2337
2338
|
collection: string;
|
|
@@ -2340,10 +2341,10 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2340
2341
|
description?: string | undefined;
|
|
2341
2342
|
token?: string | undefined;
|
|
2342
2343
|
};
|
|
2343
|
-
expires_at: bigint;
|
|
2344
2344
|
reference_id?: bigint | undefined;
|
|
2345
2345
|
encoding_type?: string | undefined;
|
|
2346
2346
|
}, {
|
|
2347
|
+
expires_at: bigint;
|
|
2347
2348
|
key: {
|
|
2348
2349
|
owner: Uint8Array<ArrayBufferLike>;
|
|
2349
2350
|
collection: string;
|
|
@@ -2352,7 +2353,6 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2352
2353
|
description?: string | undefined;
|
|
2353
2354
|
token?: string | undefined;
|
|
2354
2355
|
};
|
|
2355
|
-
expires_at: bigint;
|
|
2356
2356
|
reference_id?: bigint | undefined;
|
|
2357
2357
|
encoding_type?: string | undefined;
|
|
2358
2358
|
}>;
|
|
@@ -2371,6 +2371,7 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2371
2371
|
}>;
|
|
2372
2372
|
}, "strict", z.ZodTypeAny, {
|
|
2373
2373
|
batch: {
|
|
2374
|
+
expires_at: bigint;
|
|
2374
2375
|
key: {
|
|
2375
2376
|
owner: Uint8Array<ArrayBufferLike>;
|
|
2376
2377
|
collection: string;
|
|
@@ -2379,7 +2380,6 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2379
2380
|
description?: string | undefined;
|
|
2380
2381
|
token?: string | undefined;
|
|
2381
2382
|
};
|
|
2382
|
-
expires_at: bigint;
|
|
2383
2383
|
reference_id?: bigint | undefined;
|
|
2384
2384
|
encoding_type?: string | undefined;
|
|
2385
2385
|
};
|
|
@@ -2410,6 +2410,7 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2410
2410
|
} | undefined;
|
|
2411
2411
|
}, {
|
|
2412
2412
|
batch: {
|
|
2413
|
+
expires_at: bigint;
|
|
2413
2414
|
key: {
|
|
2414
2415
|
owner: Uint8Array<ArrayBufferLike>;
|
|
2415
2416
|
collection: string;
|
|
@@ -2418,7 +2419,6 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2418
2419
|
description?: string | undefined;
|
|
2419
2420
|
token?: string | undefined;
|
|
2420
2421
|
};
|
|
2421
|
-
expires_at: bigint;
|
|
2422
2422
|
reference_id?: bigint | undefined;
|
|
2423
2423
|
encoding_type?: string | undefined;
|
|
2424
2424
|
};
|
|
@@ -2560,6 +2560,7 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2560
2560
|
expires_at: z.ZodBigInt;
|
|
2561
2561
|
encoding_type: z.ZodOptional<z.ZodString>;
|
|
2562
2562
|
}, "strict", z.ZodTypeAny, {
|
|
2563
|
+
expires_at: bigint;
|
|
2563
2564
|
key: {
|
|
2564
2565
|
owner: Uint8Array<ArrayBufferLike>;
|
|
2565
2566
|
collection: string;
|
|
@@ -2568,10 +2569,10 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2568
2569
|
description?: string | undefined;
|
|
2569
2570
|
token?: string | undefined;
|
|
2570
2571
|
};
|
|
2571
|
-
expires_at: bigint;
|
|
2572
2572
|
reference_id?: bigint | undefined;
|
|
2573
2573
|
encoding_type?: string | undefined;
|
|
2574
2574
|
}, {
|
|
2575
|
+
expires_at: bigint;
|
|
2575
2576
|
key: {
|
|
2576
2577
|
owner: Uint8Array<ArrayBufferLike>;
|
|
2577
2578
|
collection: string;
|
|
@@ -2580,7 +2581,6 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2580
2581
|
description?: string | undefined;
|
|
2581
2582
|
token?: string | undefined;
|
|
2582
2583
|
};
|
|
2583
|
-
expires_at: bigint;
|
|
2584
2584
|
reference_id?: bigint | undefined;
|
|
2585
2585
|
encoding_type?: string | undefined;
|
|
2586
2586
|
}>;
|
|
@@ -2599,6 +2599,7 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2599
2599
|
}>;
|
|
2600
2600
|
}, "strict", z.ZodTypeAny, {
|
|
2601
2601
|
batch: {
|
|
2602
|
+
expires_at: bigint;
|
|
2602
2603
|
key: {
|
|
2603
2604
|
owner: Uint8Array<ArrayBufferLike>;
|
|
2604
2605
|
collection: string;
|
|
@@ -2607,7 +2608,6 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2607
2608
|
description?: string | undefined;
|
|
2608
2609
|
token?: string | undefined;
|
|
2609
2610
|
};
|
|
2610
|
-
expires_at: bigint;
|
|
2611
2611
|
reference_id?: bigint | undefined;
|
|
2612
2612
|
encoding_type?: string | undefined;
|
|
2613
2613
|
};
|
|
@@ -2638,6 +2638,7 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2638
2638
|
} | undefined;
|
|
2639
2639
|
}, {
|
|
2640
2640
|
batch: {
|
|
2641
|
+
expires_at: bigint;
|
|
2641
2642
|
key: {
|
|
2642
2643
|
owner: Uint8Array<ArrayBufferLike>;
|
|
2643
2644
|
collection: string;
|
|
@@ -2646,7 +2647,6 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2646
2647
|
description?: string | undefined;
|
|
2647
2648
|
token?: string | undefined;
|
|
2648
2649
|
};
|
|
2649
|
-
expires_at: bigint;
|
|
2650
2650
|
reference_id?: bigint | undefined;
|
|
2651
2651
|
encoding_type?: string | undefined;
|
|
2652
2652
|
};
|
|
@@ -2791,6 +2791,7 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2791
2791
|
expires_at: z.ZodBigInt;
|
|
2792
2792
|
encoding_type: z.ZodOptional<z.ZodString>;
|
|
2793
2793
|
}, "strict", z.ZodTypeAny, {
|
|
2794
|
+
expires_at: bigint;
|
|
2794
2795
|
key: {
|
|
2795
2796
|
owner: Uint8Array<ArrayBufferLike>;
|
|
2796
2797
|
collection: string;
|
|
@@ -2799,10 +2800,10 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2799
2800
|
description?: string | undefined;
|
|
2800
2801
|
token?: string | undefined;
|
|
2801
2802
|
};
|
|
2802
|
-
expires_at: bigint;
|
|
2803
2803
|
reference_id?: bigint | undefined;
|
|
2804
2804
|
encoding_type?: string | undefined;
|
|
2805
2805
|
}, {
|
|
2806
|
+
expires_at: bigint;
|
|
2806
2807
|
key: {
|
|
2807
2808
|
owner: Uint8Array<ArrayBufferLike>;
|
|
2808
2809
|
collection: string;
|
|
@@ -2811,7 +2812,6 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2811
2812
|
description?: string | undefined;
|
|
2812
2813
|
token?: string | undefined;
|
|
2813
2814
|
};
|
|
2814
|
-
expires_at: bigint;
|
|
2815
2815
|
reference_id?: bigint | undefined;
|
|
2816
2816
|
encoding_type?: string | undefined;
|
|
2817
2817
|
}>;
|
|
@@ -2830,6 +2830,7 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2830
2830
|
}>;
|
|
2831
2831
|
}, "strict", z.ZodTypeAny, {
|
|
2832
2832
|
batch: {
|
|
2833
|
+
expires_at: bigint;
|
|
2833
2834
|
key: {
|
|
2834
2835
|
owner: Uint8Array<ArrayBufferLike>;
|
|
2835
2836
|
collection: string;
|
|
@@ -2838,7 +2839,6 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2838
2839
|
description?: string | undefined;
|
|
2839
2840
|
token?: string | undefined;
|
|
2840
2841
|
};
|
|
2841
|
-
expires_at: bigint;
|
|
2842
2842
|
reference_id?: bigint | undefined;
|
|
2843
2843
|
encoding_type?: string | undefined;
|
|
2844
2844
|
};
|
|
@@ -2869,6 +2869,7 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2869
2869
|
} | undefined;
|
|
2870
2870
|
}, {
|
|
2871
2871
|
batch: {
|
|
2872
|
+
expires_at: bigint;
|
|
2872
2873
|
key: {
|
|
2873
2874
|
owner: Uint8Array<ArrayBufferLike>;
|
|
2874
2875
|
collection: string;
|
|
@@ -2877,7 +2878,6 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2877
2878
|
description?: string | undefined;
|
|
2878
2879
|
token?: string | undefined;
|
|
2879
2880
|
};
|
|
2880
|
-
expires_at: bigint;
|
|
2881
2881
|
reference_id?: bigint | undefined;
|
|
2882
2882
|
encoding_type?: string | undefined;
|
|
2883
2883
|
};
|
|
@@ -3022,6 +3022,7 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3022
3022
|
expires_at: z.ZodBigInt;
|
|
3023
3023
|
encoding_type: z.ZodOptional<z.ZodString>;
|
|
3024
3024
|
}, "strict", z.ZodTypeAny, {
|
|
3025
|
+
expires_at: bigint;
|
|
3025
3026
|
key: {
|
|
3026
3027
|
owner: Uint8Array<ArrayBufferLike>;
|
|
3027
3028
|
collection: string;
|
|
@@ -3030,10 +3031,10 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3030
3031
|
description?: string | undefined;
|
|
3031
3032
|
token?: string | undefined;
|
|
3032
3033
|
};
|
|
3033
|
-
expires_at: bigint;
|
|
3034
3034
|
reference_id?: bigint | undefined;
|
|
3035
3035
|
encoding_type?: string | undefined;
|
|
3036
3036
|
}, {
|
|
3037
|
+
expires_at: bigint;
|
|
3037
3038
|
key: {
|
|
3038
3039
|
owner: Uint8Array<ArrayBufferLike>;
|
|
3039
3040
|
collection: string;
|
|
@@ -3042,7 +3043,6 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3042
3043
|
description?: string | undefined;
|
|
3043
3044
|
token?: string | undefined;
|
|
3044
3045
|
};
|
|
3045
|
-
expires_at: bigint;
|
|
3046
3046
|
reference_id?: bigint | undefined;
|
|
3047
3047
|
encoding_type?: string | undefined;
|
|
3048
3048
|
}>;
|
|
@@ -3061,6 +3061,7 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3061
3061
|
}>;
|
|
3062
3062
|
}, "strict", z.ZodTypeAny, {
|
|
3063
3063
|
batch: {
|
|
3064
|
+
expires_at: bigint;
|
|
3064
3065
|
key: {
|
|
3065
3066
|
owner: Uint8Array<ArrayBufferLike>;
|
|
3066
3067
|
collection: string;
|
|
@@ -3069,7 +3070,6 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3069
3070
|
description?: string | undefined;
|
|
3070
3071
|
token?: string | undefined;
|
|
3071
3072
|
};
|
|
3072
|
-
expires_at: bigint;
|
|
3073
3073
|
reference_id?: bigint | undefined;
|
|
3074
3074
|
encoding_type?: string | undefined;
|
|
3075
3075
|
};
|
|
@@ -3100,6 +3100,7 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3100
3100
|
} | undefined;
|
|
3101
3101
|
}, {
|
|
3102
3102
|
batch: {
|
|
3103
|
+
expires_at: bigint;
|
|
3103
3104
|
key: {
|
|
3104
3105
|
owner: Uint8Array<ArrayBufferLike>;
|
|
3105
3106
|
collection: string;
|
|
@@ -3108,7 +3109,6 @@ export declare const AssertUploadAssetSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3108
3109
|
description?: string | undefined;
|
|
3109
3110
|
token?: string | undefined;
|
|
3110
3111
|
};
|
|
3111
|
-
expires_at: bigint;
|
|
3112
3112
|
reference_id?: bigint | undefined;
|
|
3113
3113
|
encoding_type?: string | undefined;
|
|
3114
3114
|
};
|
|
@@ -5664,6 +5664,7 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
5664
5664
|
expires_at: z.ZodBigInt;
|
|
5665
5665
|
encoding_type: z.ZodOptional<z.ZodString>;
|
|
5666
5666
|
}, "strict", z.ZodTypeAny, {
|
|
5667
|
+
expires_at: bigint;
|
|
5667
5668
|
key: {
|
|
5668
5669
|
owner: Uint8Array<ArrayBufferLike>;
|
|
5669
5670
|
collection: string;
|
|
@@ -5672,10 +5673,10 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
5672
5673
|
description?: string | undefined;
|
|
5673
5674
|
token?: string | undefined;
|
|
5674
5675
|
};
|
|
5675
|
-
expires_at: bigint;
|
|
5676
5676
|
reference_id?: bigint | undefined;
|
|
5677
5677
|
encoding_type?: string | undefined;
|
|
5678
5678
|
}, {
|
|
5679
|
+
expires_at: bigint;
|
|
5679
5680
|
key: {
|
|
5680
5681
|
owner: Uint8Array<ArrayBufferLike>;
|
|
5681
5682
|
collection: string;
|
|
@@ -5684,7 +5685,6 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
5684
5685
|
description?: string | undefined;
|
|
5685
5686
|
token?: string | undefined;
|
|
5686
5687
|
};
|
|
5687
|
-
expires_at: bigint;
|
|
5688
5688
|
reference_id?: bigint | undefined;
|
|
5689
5689
|
encoding_type?: string | undefined;
|
|
5690
5690
|
}>;
|
|
@@ -5703,6 +5703,7 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
5703
5703
|
}>;
|
|
5704
5704
|
}, "strict", z.ZodTypeAny, {
|
|
5705
5705
|
batch: {
|
|
5706
|
+
expires_at: bigint;
|
|
5706
5707
|
key: {
|
|
5707
5708
|
owner: Uint8Array<ArrayBufferLike>;
|
|
5708
5709
|
collection: string;
|
|
@@ -5711,7 +5712,6 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
5711
5712
|
description?: string | undefined;
|
|
5712
5713
|
token?: string | undefined;
|
|
5713
5714
|
};
|
|
5714
|
-
expires_at: bigint;
|
|
5715
5715
|
reference_id?: bigint | undefined;
|
|
5716
5716
|
encoding_type?: string | undefined;
|
|
5717
5717
|
};
|
|
@@ -5742,6 +5742,7 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
5742
5742
|
} | undefined;
|
|
5743
5743
|
}, {
|
|
5744
5744
|
batch: {
|
|
5745
|
+
expires_at: bigint;
|
|
5745
5746
|
key: {
|
|
5746
5747
|
owner: Uint8Array<ArrayBufferLike>;
|
|
5747
5748
|
collection: string;
|
|
@@ -5750,7 +5751,6 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
5750
5751
|
description?: string | undefined;
|
|
5751
5752
|
token?: string | undefined;
|
|
5752
5753
|
};
|
|
5753
|
-
expires_at: bigint;
|
|
5754
5754
|
reference_id?: bigint | undefined;
|
|
5755
5755
|
encoding_type?: string | undefined;
|
|
5756
5756
|
};
|
|
@@ -5892,6 +5892,7 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
5892
5892
|
expires_at: z.ZodBigInt;
|
|
5893
5893
|
encoding_type: z.ZodOptional<z.ZodString>;
|
|
5894
5894
|
}, "strict", z.ZodTypeAny, {
|
|
5895
|
+
expires_at: bigint;
|
|
5895
5896
|
key: {
|
|
5896
5897
|
owner: Uint8Array<ArrayBufferLike>;
|
|
5897
5898
|
collection: string;
|
|
@@ -5900,10 +5901,10 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
5900
5901
|
description?: string | undefined;
|
|
5901
5902
|
token?: string | undefined;
|
|
5902
5903
|
};
|
|
5903
|
-
expires_at: bigint;
|
|
5904
5904
|
reference_id?: bigint | undefined;
|
|
5905
5905
|
encoding_type?: string | undefined;
|
|
5906
5906
|
}, {
|
|
5907
|
+
expires_at: bigint;
|
|
5907
5908
|
key: {
|
|
5908
5909
|
owner: Uint8Array<ArrayBufferLike>;
|
|
5909
5910
|
collection: string;
|
|
@@ -5912,7 +5913,6 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
5912
5913
|
description?: string | undefined;
|
|
5913
5914
|
token?: string | undefined;
|
|
5914
5915
|
};
|
|
5915
|
-
expires_at: bigint;
|
|
5916
5916
|
reference_id?: bigint | undefined;
|
|
5917
5917
|
encoding_type?: string | undefined;
|
|
5918
5918
|
}>;
|
|
@@ -5931,6 +5931,7 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
5931
5931
|
}>;
|
|
5932
5932
|
}, "strict", z.ZodTypeAny, {
|
|
5933
5933
|
batch: {
|
|
5934
|
+
expires_at: bigint;
|
|
5934
5935
|
key: {
|
|
5935
5936
|
owner: Uint8Array<ArrayBufferLike>;
|
|
5936
5937
|
collection: string;
|
|
@@ -5939,7 +5940,6 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
5939
5940
|
description?: string | undefined;
|
|
5940
5941
|
token?: string | undefined;
|
|
5941
5942
|
};
|
|
5942
|
-
expires_at: bigint;
|
|
5943
5943
|
reference_id?: bigint | undefined;
|
|
5944
5944
|
encoding_type?: string | undefined;
|
|
5945
5945
|
};
|
|
@@ -5970,6 +5970,7 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
5970
5970
|
} | undefined;
|
|
5971
5971
|
}, {
|
|
5972
5972
|
batch: {
|
|
5973
|
+
expires_at: bigint;
|
|
5973
5974
|
key: {
|
|
5974
5975
|
owner: Uint8Array<ArrayBufferLike>;
|
|
5975
5976
|
collection: string;
|
|
@@ -5978,7 +5979,6 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
5978
5979
|
description?: string | undefined;
|
|
5979
5980
|
token?: string | undefined;
|
|
5980
5981
|
};
|
|
5981
|
-
expires_at: bigint;
|
|
5982
5982
|
reference_id?: bigint | undefined;
|
|
5983
5983
|
encoding_type?: string | undefined;
|
|
5984
5984
|
};
|
|
@@ -6120,6 +6120,7 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
6120
6120
|
expires_at: z.ZodBigInt;
|
|
6121
6121
|
encoding_type: z.ZodOptional<z.ZodString>;
|
|
6122
6122
|
}, "strict", z.ZodTypeAny, {
|
|
6123
|
+
expires_at: bigint;
|
|
6123
6124
|
key: {
|
|
6124
6125
|
owner: Uint8Array<ArrayBufferLike>;
|
|
6125
6126
|
collection: string;
|
|
@@ -6128,10 +6129,10 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
6128
6129
|
description?: string | undefined;
|
|
6129
6130
|
token?: string | undefined;
|
|
6130
6131
|
};
|
|
6131
|
-
expires_at: bigint;
|
|
6132
6132
|
reference_id?: bigint | undefined;
|
|
6133
6133
|
encoding_type?: string | undefined;
|
|
6134
6134
|
}, {
|
|
6135
|
+
expires_at: bigint;
|
|
6135
6136
|
key: {
|
|
6136
6137
|
owner: Uint8Array<ArrayBufferLike>;
|
|
6137
6138
|
collection: string;
|
|
@@ -6140,7 +6141,6 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
6140
6141
|
description?: string | undefined;
|
|
6141
6142
|
token?: string | undefined;
|
|
6142
6143
|
};
|
|
6143
|
-
expires_at: bigint;
|
|
6144
6144
|
reference_id?: bigint | undefined;
|
|
6145
6145
|
encoding_type?: string | undefined;
|
|
6146
6146
|
}>;
|
|
@@ -6159,6 +6159,7 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
6159
6159
|
}>;
|
|
6160
6160
|
}, "strict", z.ZodTypeAny, {
|
|
6161
6161
|
batch: {
|
|
6162
|
+
expires_at: bigint;
|
|
6162
6163
|
key: {
|
|
6163
6164
|
owner: Uint8Array<ArrayBufferLike>;
|
|
6164
6165
|
collection: string;
|
|
@@ -6167,7 +6168,6 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
6167
6168
|
description?: string | undefined;
|
|
6168
6169
|
token?: string | undefined;
|
|
6169
6170
|
};
|
|
6170
|
-
expires_at: bigint;
|
|
6171
6171
|
reference_id?: bigint | undefined;
|
|
6172
6172
|
encoding_type?: string | undefined;
|
|
6173
6173
|
};
|
|
@@ -6198,6 +6198,7 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
6198
6198
|
} | undefined;
|
|
6199
6199
|
}, {
|
|
6200
6200
|
batch: {
|
|
6201
|
+
expires_at: bigint;
|
|
6201
6202
|
key: {
|
|
6202
6203
|
owner: Uint8Array<ArrayBufferLike>;
|
|
6203
6204
|
collection: string;
|
|
@@ -6206,7 +6207,6 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
6206
6207
|
description?: string | undefined;
|
|
6207
6208
|
token?: string | undefined;
|
|
6208
6209
|
};
|
|
6209
|
-
expires_at: bigint;
|
|
6210
6210
|
reference_id?: bigint | undefined;
|
|
6211
6211
|
encoding_type?: string | undefined;
|
|
6212
6212
|
};
|
|
@@ -6351,6 +6351,7 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
6351
6351
|
expires_at: z.ZodBigInt;
|
|
6352
6352
|
encoding_type: z.ZodOptional<z.ZodString>;
|
|
6353
6353
|
}, "strict", z.ZodTypeAny, {
|
|
6354
|
+
expires_at: bigint;
|
|
6354
6355
|
key: {
|
|
6355
6356
|
owner: Uint8Array<ArrayBufferLike>;
|
|
6356
6357
|
collection: string;
|
|
@@ -6359,10 +6360,10 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
6359
6360
|
description?: string | undefined;
|
|
6360
6361
|
token?: string | undefined;
|
|
6361
6362
|
};
|
|
6362
|
-
expires_at: bigint;
|
|
6363
6363
|
reference_id?: bigint | undefined;
|
|
6364
6364
|
encoding_type?: string | undefined;
|
|
6365
6365
|
}, {
|
|
6366
|
+
expires_at: bigint;
|
|
6366
6367
|
key: {
|
|
6367
6368
|
owner: Uint8Array<ArrayBufferLike>;
|
|
6368
6369
|
collection: string;
|
|
@@ -6371,7 +6372,6 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
6371
6372
|
description?: string | undefined;
|
|
6372
6373
|
token?: string | undefined;
|
|
6373
6374
|
};
|
|
6374
|
-
expires_at: bigint;
|
|
6375
6375
|
reference_id?: bigint | undefined;
|
|
6376
6376
|
encoding_type?: string | undefined;
|
|
6377
6377
|
}>;
|
|
@@ -6390,6 +6390,7 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
6390
6390
|
}>;
|
|
6391
6391
|
}, "strict", z.ZodTypeAny, {
|
|
6392
6392
|
batch: {
|
|
6393
|
+
expires_at: bigint;
|
|
6393
6394
|
key: {
|
|
6394
6395
|
owner: Uint8Array<ArrayBufferLike>;
|
|
6395
6396
|
collection: string;
|
|
@@ -6398,7 +6399,6 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
6398
6399
|
description?: string | undefined;
|
|
6399
6400
|
token?: string | undefined;
|
|
6400
6401
|
};
|
|
6401
|
-
expires_at: bigint;
|
|
6402
6402
|
reference_id?: bigint | undefined;
|
|
6403
6403
|
encoding_type?: string | undefined;
|
|
6404
6404
|
};
|
|
@@ -6429,6 +6429,7 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
6429
6429
|
} | undefined;
|
|
6430
6430
|
}, {
|
|
6431
6431
|
batch: {
|
|
6432
|
+
expires_at: bigint;
|
|
6432
6433
|
key: {
|
|
6433
6434
|
owner: Uint8Array<ArrayBufferLike>;
|
|
6434
6435
|
collection: string;
|
|
@@ -6437,7 +6438,6 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
6437
6438
|
description?: string | undefined;
|
|
6438
6439
|
token?: string | undefined;
|
|
6439
6440
|
};
|
|
6440
|
-
expires_at: bigint;
|
|
6441
6441
|
reference_id?: bigint | undefined;
|
|
6442
6442
|
encoding_type?: string | undefined;
|
|
6443
6443
|
};
|
|
@@ -6582,6 +6582,7 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
6582
6582
|
expires_at: z.ZodBigInt;
|
|
6583
6583
|
encoding_type: z.ZodOptional<z.ZodString>;
|
|
6584
6584
|
}, "strict", z.ZodTypeAny, {
|
|
6585
|
+
expires_at: bigint;
|
|
6585
6586
|
key: {
|
|
6586
6587
|
owner: Uint8Array<ArrayBufferLike>;
|
|
6587
6588
|
collection: string;
|
|
@@ -6590,10 +6591,10 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
6590
6591
|
description?: string | undefined;
|
|
6591
6592
|
token?: string | undefined;
|
|
6592
6593
|
};
|
|
6593
|
-
expires_at: bigint;
|
|
6594
6594
|
reference_id?: bigint | undefined;
|
|
6595
6595
|
encoding_type?: string | undefined;
|
|
6596
6596
|
}, {
|
|
6597
|
+
expires_at: bigint;
|
|
6597
6598
|
key: {
|
|
6598
6599
|
owner: Uint8Array<ArrayBufferLike>;
|
|
6599
6600
|
collection: string;
|
|
@@ -6602,7 +6603,6 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
6602
6603
|
description?: string | undefined;
|
|
6603
6604
|
token?: string | undefined;
|
|
6604
6605
|
};
|
|
6605
|
-
expires_at: bigint;
|
|
6606
6606
|
reference_id?: bigint | undefined;
|
|
6607
6607
|
encoding_type?: string | undefined;
|
|
6608
6608
|
}>;
|
|
@@ -6621,6 +6621,7 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
6621
6621
|
}>;
|
|
6622
6622
|
}, "strict", z.ZodTypeAny, {
|
|
6623
6623
|
batch: {
|
|
6624
|
+
expires_at: bigint;
|
|
6624
6625
|
key: {
|
|
6625
6626
|
owner: Uint8Array<ArrayBufferLike>;
|
|
6626
6627
|
collection: string;
|
|
@@ -6629,7 +6630,6 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
6629
6630
|
description?: string | undefined;
|
|
6630
6631
|
token?: string | undefined;
|
|
6631
6632
|
};
|
|
6632
|
-
expires_at: bigint;
|
|
6633
6633
|
reference_id?: bigint | undefined;
|
|
6634
6634
|
encoding_type?: string | undefined;
|
|
6635
6635
|
};
|
|
@@ -6660,6 +6660,7 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
6660
6660
|
} | undefined;
|
|
6661
6661
|
}, {
|
|
6662
6662
|
batch: {
|
|
6663
|
+
expires_at: bigint;
|
|
6663
6664
|
key: {
|
|
6664
6665
|
owner: Uint8Array<ArrayBufferLike>;
|
|
6665
6666
|
collection: string;
|
|
@@ -6668,7 +6669,6 @@ export declare const AssertSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSh
|
|
|
6668
6669
|
description?: string | undefined;
|
|
6669
6670
|
token?: string | undefined;
|
|
6670
6671
|
};
|
|
6671
|
-
expires_at: bigint;
|
|
6672
6672
|
reference_id?: bigint | undefined;
|
|
6673
6673
|
encoding_type?: string | undefined;
|
|
6674
6674
|
};
|