devflare 1.0.0-next.42 → 1.0.0-next.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_chunks/{account-BtWcv3X9.js → account-BJmkb7cc.js} +1 -1
- package/dist/_chunks/{build-D1l6a5Il.js → build-BkgjOmfq.js} +1 -1
- package/dist/_chunks/{build-artifacts-BUaq16e4.js → build-artifacts-HPThCdGT.js} +4 -4
- package/dist/_chunks/{cli-CgFqrDZd.js → cli-5ME5-Ibv.js} +12 -12
- package/dist/_chunks/{command-utils-BsfkmTqh.js → command-utils-CY3-veEo.js} +1 -1
- package/dist/_chunks/{compiler-uoyAQ8zW.js → compiler-By9RWzea.js} +40 -15
- package/dist/_chunks/{config-D5u-bEkn.js → config-bUY5vBYw.js} +3 -3
- package/dist/_chunks/{config-path-DCPto4XB.js → config-path-HP5NIFbF.js} +1 -1
- package/dist/_chunks/{deploy-DIDoW5u1.js → deploy-BrVu07KN.js} +6 -6
- package/dist/_chunks/{dev-BTSSETUX.js → dev-BbvjuXRA.js} +10 -8
- package/dist/_chunks/{doctor-C0g8X36G.js → doctor-7upvzze6.js} +2 -2
- package/dist/_chunks/{family-DXC5SdFK.js → family-C9iQ6WtW.js} +1 -1
- package/dist/_chunks/{loader-DLXO60RO.js → loader-CQyvmFM2.js} +4 -4
- package/dist/_chunks/{local-secrets-DMmEOygL.js → local-secrets-Bmm87slY.js} +1 -1
- package/dist/_chunks/{local-workflow-entrypoints-Wip3o1u8.js → local-workflow-entrypoints-ZFHiVbnX.js} +1 -1
- package/dist/_chunks/{login-BmnDzDlH.js → login-2V8AfKeG.js} +1 -1
- package/dist/_chunks/{preview-BhqDmq8I.js → preview-C3Cdr8an.js} +9 -3
- package/dist/_chunks/{preview-resources-DdXj8LMM.js → preview-resources-DMieqto4.js} +5 -4
- package/dist/_chunks/{previews-Dlr13x5M.js → previews-BXPrXEU9.js} +7 -7
- package/dist/_chunks/{productions-D3AnOHac.js → productions-fLG19eus.js} +3 -3
- package/dist/_chunks/{routes-BWi7h2xb.js → routes-DKc39Vlu.js} +4 -4
- package/dist/_chunks/{schema-normalization-DWVleVxo.js → schema-normalization-CCPigJ7K.js} +104 -12
- package/dist/_chunks/{secrets-70eN0Q6C.js → secrets-D1RcG79F.js} +1 -1
- package/dist/_chunks/{types-BgA5Hb4B.js → types-BJjtDDzl.js} +3 -3
- package/dist/_chunks/{vite-BszZvrKL.js → vite-CrBFLqH3.js} +5 -5
- package/dist/_chunks/{worker-CS1jgNFE.js → worker-DO4hIcJA.js} +4 -4
- package/dist/bridge/miniflare.d.ts.map +1 -1
- package/dist/browser.d.ts +466 -36
- package/dist/browser.d.ts.map +1 -1
- package/dist/cli/commands/type-generation/generator.d.ts +3 -3
- package/dist/cli/commands/type-generation/generator.d.ts.map +1 -1
- package/dist/cli/index.js +1 -1
- package/dist/config/compiler/bindings.d.ts.map +1 -1
- package/dist/config/compiler/do-workers.d.ts.map +1 -1
- package/dist/config/compiler/types.d.ts +5 -0
- package/dist/config/compiler/types.d.ts.map +1 -1
- package/dist/config/deploy-resources.d.ts.map +1 -1
- package/dist/config/index.d.ts +1 -1
- package/dist/config/index.d.ts.map +1 -1
- package/dist/config/preview-resources.d.ts +1 -1
- package/dist/config/preview-resources.d.ts.map +1 -1
- package/dist/config/preview.d.ts.map +1 -1
- package/dist/config/schema-bindings.d.ts +326 -14
- package/dist/config/schema-bindings.d.ts.map +1 -1
- package/dist/config/schema-env.d.ts +328 -24
- package/dist/config/schema-env.d.ts.map +1 -1
- package/dist/config/schema-normalization.d.ts +39 -1
- package/dist/config/schema-normalization.d.ts.map +1 -1
- package/dist/config/schema-types-bindings-resources.d.ts +220 -3
- package/dist/config/schema-types-bindings-resources.d.ts.map +1 -1
- package/dist/config/schema-types-bindings.d.ts +2 -2
- package/dist/config/schema-types-bindings.d.ts.map +1 -1
- package/dist/config/schema.d.ts +587 -47
- package/dist/config/schema.d.ts.map +1 -1
- package/dist/config-entry.js +1 -1
- package/dist/dev-server/miniflare-bindings.d.ts.map +1 -1
- package/dist/dev-server/miniflare-worker-config.d.ts.map +1 -1
- package/dist/index.js +4 -4
- package/dist/sveltekit/index.js +3 -3
- package/dist/test/index.js +7 -7
- package/dist/test/resolve-service-bindings.d.ts.map +1 -1
- package/dist/test/simple-context-mfconfig.d.ts.map +1 -1
- package/dist/vite/index.js +1 -1
- package/package.json +1 -1
|
@@ -94,35 +94,95 @@ export declare const envConfigSchema: z.ZodLazy<z.ZodObject<{
|
|
|
94
94
|
}>>>;
|
|
95
95
|
readonly bindings: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
96
96
|
kv: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
97
|
+
previewId: z.ZodOptional<z.ZodString>;
|
|
98
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
97
99
|
id: z.ZodString;
|
|
98
100
|
}, "strict", z.ZodTypeAny, {
|
|
101
|
+
previewId?: string | undefined;
|
|
102
|
+
remote?: boolean | undefined;
|
|
99
103
|
id: string;
|
|
100
104
|
}, {
|
|
105
|
+
previewId?: string | undefined;
|
|
106
|
+
remote?: boolean | undefined;
|
|
101
107
|
id: string;
|
|
102
108
|
}>, z.ZodObject<{
|
|
109
|
+
previewId: z.ZodOptional<z.ZodString>;
|
|
110
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
103
111
|
name: z.ZodString;
|
|
104
112
|
}, "strict", z.ZodTypeAny, {
|
|
113
|
+
previewId?: string | undefined;
|
|
114
|
+
remote?: boolean | undefined;
|
|
105
115
|
name: string;
|
|
106
116
|
}, {
|
|
117
|
+
previewId?: string | undefined;
|
|
118
|
+
remote?: boolean | undefined;
|
|
107
119
|
name: string;
|
|
108
120
|
}>]>>>;
|
|
109
121
|
d1: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
122
|
+
previewDatabaseId: z.ZodOptional<z.ZodString>;
|
|
123
|
+
migrationsTable: z.ZodOptional<z.ZodString>;
|
|
124
|
+
migrationsDir: z.ZodOptional<z.ZodString>;
|
|
125
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
110
126
|
id: z.ZodString;
|
|
111
127
|
}, "strict", z.ZodTypeAny, {
|
|
128
|
+
previewDatabaseId?: string | undefined;
|
|
129
|
+
migrationsTable?: string | undefined;
|
|
130
|
+
migrationsDir?: string | undefined;
|
|
131
|
+
remote?: boolean | undefined;
|
|
112
132
|
id: string;
|
|
113
133
|
}, {
|
|
134
|
+
previewDatabaseId?: string | undefined;
|
|
135
|
+
migrationsTable?: string | undefined;
|
|
136
|
+
migrationsDir?: string | undefined;
|
|
137
|
+
remote?: boolean | undefined;
|
|
114
138
|
id: string;
|
|
115
139
|
}>, z.ZodObject<{
|
|
140
|
+
previewDatabaseId: z.ZodOptional<z.ZodString>;
|
|
141
|
+
migrationsTable: z.ZodOptional<z.ZodString>;
|
|
142
|
+
migrationsDir: z.ZodOptional<z.ZodString>;
|
|
143
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
116
144
|
name: z.ZodString;
|
|
117
145
|
}, "strict", z.ZodTypeAny, {
|
|
146
|
+
previewDatabaseId?: string | undefined;
|
|
147
|
+
migrationsTable?: string | undefined;
|
|
148
|
+
migrationsDir?: string | undefined;
|
|
149
|
+
remote?: boolean | undefined;
|
|
118
150
|
name: string;
|
|
119
151
|
}, {
|
|
152
|
+
previewDatabaseId?: string | undefined;
|
|
153
|
+
migrationsTable?: string | undefined;
|
|
154
|
+
migrationsDir?: string | undefined;
|
|
155
|
+
remote?: boolean | undefined;
|
|
120
156
|
name: string;
|
|
121
157
|
}>]>>>;
|
|
122
|
-
r2: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString
|
|
158
|
+
r2: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
159
|
+
bucketName: z.ZodString;
|
|
160
|
+
previewBucketName: z.ZodOptional<z.ZodString>;
|
|
161
|
+
jurisdiction: z.ZodOptional<z.ZodString>;
|
|
162
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
163
|
+
}, "strict", z.ZodTypeAny, {
|
|
164
|
+
bucketName: string;
|
|
165
|
+
previewBucketName?: string | undefined;
|
|
166
|
+
jurisdiction?: string | undefined;
|
|
167
|
+
remote?: boolean | undefined;
|
|
168
|
+
}, {
|
|
169
|
+
bucketName: string;
|
|
170
|
+
previewBucketName?: string | undefined;
|
|
171
|
+
jurisdiction?: string | undefined;
|
|
172
|
+
remote?: boolean | undefined;
|
|
173
|
+
}>]>>>;
|
|
123
174
|
durableObjects: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("./schema-bindings.js").DurableObjectBindingInput, z.ZodTypeDef, import("./schema-bindings.js").DurableObjectBindingInput>>>;
|
|
124
175
|
queues: z.ZodOptional<z.ZodObject<{
|
|
125
|
-
producers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString
|
|
176
|
+
producers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
177
|
+
queue: z.ZodString;
|
|
178
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
179
|
+
}, "strict", z.ZodTypeAny, {
|
|
180
|
+
queue: string;
|
|
181
|
+
remote?: boolean | undefined;
|
|
182
|
+
}, {
|
|
183
|
+
queue: string;
|
|
184
|
+
remote?: boolean | undefined;
|
|
185
|
+
}>]>>>;
|
|
126
186
|
consumers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
127
187
|
queue: z.ZodString;
|
|
128
188
|
maxBatchSize: z.ZodOptional<z.ZodNumber>;
|
|
@@ -149,7 +209,10 @@ export declare const envConfigSchema: z.ZodLazy<z.ZodObject<{
|
|
|
149
209
|
retryDelay?: number | undefined;
|
|
150
210
|
}>, "many">>;
|
|
151
211
|
}, "strip", z.ZodTypeAny, {
|
|
152
|
-
producers?: Record<string, string
|
|
212
|
+
producers?: Record<string, string | {
|
|
213
|
+
queue: string;
|
|
214
|
+
remote?: boolean | undefined;
|
|
215
|
+
}> | undefined;
|
|
153
216
|
consumers?: {
|
|
154
217
|
queue: string;
|
|
155
218
|
maxBatchSize?: number | undefined;
|
|
@@ -160,7 +223,10 @@ export declare const envConfigSchema: z.ZodLazy<z.ZodObject<{
|
|
|
160
223
|
retryDelay?: number | undefined;
|
|
161
224
|
}[] | undefined;
|
|
162
225
|
}, {
|
|
163
|
-
producers?: Record<string, string
|
|
226
|
+
producers?: Record<string, string | {
|
|
227
|
+
queue: string;
|
|
228
|
+
remote?: boolean | undefined;
|
|
229
|
+
}> | undefined;
|
|
164
230
|
consumers?: {
|
|
165
231
|
queue: string;
|
|
166
232
|
maxBatchSize?: number | undefined;
|
|
@@ -218,11 +284,13 @@ export declare const envConfigSchema: z.ZodLazy<z.ZodObject<{
|
|
|
218
284
|
service: string;
|
|
219
285
|
environment?: string;
|
|
220
286
|
entrypoint?: string;
|
|
287
|
+
remote?: boolean;
|
|
221
288
|
__ref?: unknown;
|
|
222
289
|
}, z.ZodTypeDef, {
|
|
223
290
|
service: string;
|
|
224
291
|
environment?: string;
|
|
225
292
|
entrypoint?: string;
|
|
293
|
+
remote?: boolean;
|
|
226
294
|
__ref?: unknown;
|
|
227
295
|
}>>>;
|
|
228
296
|
ai: z.ZodOptional<z.ZodObject<{
|
|
@@ -460,19 +528,39 @@ export declare const envConfigSchema: z.ZodLazy<z.ZodObject<{
|
|
|
460
528
|
}>]>>>;
|
|
461
529
|
}, "strip", z.ZodTypeAny, {
|
|
462
530
|
kv?: Record<string, string | {
|
|
531
|
+
previewId?: string | undefined;
|
|
532
|
+
remote?: boolean | undefined;
|
|
463
533
|
id: string;
|
|
464
534
|
} | {
|
|
535
|
+
previewId?: string | undefined;
|
|
536
|
+
remote?: boolean | undefined;
|
|
465
537
|
name: string;
|
|
466
538
|
}> | undefined;
|
|
467
539
|
d1?: Record<string, string | {
|
|
540
|
+
previewDatabaseId?: string | undefined;
|
|
541
|
+
migrationsTable?: string | undefined;
|
|
542
|
+
migrationsDir?: string | undefined;
|
|
543
|
+
remote?: boolean | undefined;
|
|
468
544
|
id: string;
|
|
469
545
|
} | {
|
|
546
|
+
previewDatabaseId?: string | undefined;
|
|
547
|
+
migrationsTable?: string | undefined;
|
|
548
|
+
migrationsDir?: string | undefined;
|
|
549
|
+
remote?: boolean | undefined;
|
|
470
550
|
name: string;
|
|
471
551
|
}> | undefined;
|
|
472
|
-
r2?: Record<string, string
|
|
552
|
+
r2?: Record<string, string | {
|
|
553
|
+
bucketName: string;
|
|
554
|
+
previewBucketName?: string | undefined;
|
|
555
|
+
jurisdiction?: string | undefined;
|
|
556
|
+
remote?: boolean | undefined;
|
|
557
|
+
}> | undefined;
|
|
473
558
|
durableObjects?: Record<string, import("./schema-bindings.js").DurableObjectBindingInput> | undefined;
|
|
474
559
|
queues?: {
|
|
475
|
-
producers?: Record<string, string
|
|
560
|
+
producers?: Record<string, string | {
|
|
561
|
+
queue: string;
|
|
562
|
+
remote?: boolean | undefined;
|
|
563
|
+
}> | undefined;
|
|
476
564
|
consumers?: {
|
|
477
565
|
queue: string;
|
|
478
566
|
maxBatchSize?: number | undefined;
|
|
@@ -502,6 +590,7 @@ export declare const envConfigSchema: z.ZodLazy<z.ZodObject<{
|
|
|
502
590
|
service: string;
|
|
503
591
|
environment?: string;
|
|
504
592
|
entrypoint?: string;
|
|
593
|
+
remote?: boolean;
|
|
505
594
|
__ref?: unknown;
|
|
506
595
|
}> | undefined;
|
|
507
596
|
ai?: {
|
|
@@ -583,19 +672,39 @@ export declare const envConfigSchema: z.ZodLazy<z.ZodObject<{
|
|
|
583
672
|
}> | undefined;
|
|
584
673
|
}, {
|
|
585
674
|
kv?: Record<string, string | {
|
|
675
|
+
previewId?: string | undefined;
|
|
676
|
+
remote?: boolean | undefined;
|
|
586
677
|
id: string;
|
|
587
678
|
} | {
|
|
679
|
+
previewId?: string | undefined;
|
|
680
|
+
remote?: boolean | undefined;
|
|
588
681
|
name: string;
|
|
589
682
|
}> | undefined;
|
|
590
683
|
d1?: Record<string, string | {
|
|
684
|
+
previewDatabaseId?: string | undefined;
|
|
685
|
+
migrationsTable?: string | undefined;
|
|
686
|
+
migrationsDir?: string | undefined;
|
|
687
|
+
remote?: boolean | undefined;
|
|
591
688
|
id: string;
|
|
592
689
|
} | {
|
|
690
|
+
previewDatabaseId?: string | undefined;
|
|
691
|
+
migrationsTable?: string | undefined;
|
|
692
|
+
migrationsDir?: string | undefined;
|
|
693
|
+
remote?: boolean | undefined;
|
|
593
694
|
name: string;
|
|
594
695
|
}> | undefined;
|
|
595
|
-
r2?: Record<string, string
|
|
696
|
+
r2?: Record<string, string | {
|
|
697
|
+
bucketName: string;
|
|
698
|
+
previewBucketName?: string | undefined;
|
|
699
|
+
jurisdiction?: string | undefined;
|
|
700
|
+
remote?: boolean | undefined;
|
|
701
|
+
}> | undefined;
|
|
596
702
|
durableObjects?: Record<string, import("./schema-bindings.js").DurableObjectBindingInput> | undefined;
|
|
597
703
|
queues?: {
|
|
598
|
-
producers?: Record<string, string
|
|
704
|
+
producers?: Record<string, string | {
|
|
705
|
+
queue: string;
|
|
706
|
+
remote?: boolean | undefined;
|
|
707
|
+
}> | undefined;
|
|
599
708
|
consumers?: {
|
|
600
709
|
queue: string;
|
|
601
710
|
maxBatchSize?: number | undefined;
|
|
@@ -625,6 +734,7 @@ export declare const envConfigSchema: z.ZodLazy<z.ZodObject<{
|
|
|
625
734
|
service: string;
|
|
626
735
|
environment?: string;
|
|
627
736
|
entrypoint?: string;
|
|
737
|
+
remote?: boolean;
|
|
628
738
|
__ref?: unknown;
|
|
629
739
|
}> | undefined;
|
|
630
740
|
ai?: {
|
|
@@ -1042,19 +1152,39 @@ export declare const envConfigSchema: z.ZodLazy<z.ZodObject<{
|
|
|
1042
1152
|
} | undefined;
|
|
1043
1153
|
bindings?: {
|
|
1044
1154
|
kv?: Record<string, string | {
|
|
1155
|
+
previewId?: string | undefined;
|
|
1156
|
+
remote?: boolean | undefined;
|
|
1045
1157
|
id: string;
|
|
1046
1158
|
} | {
|
|
1159
|
+
previewId?: string | undefined;
|
|
1160
|
+
remote?: boolean | undefined;
|
|
1047
1161
|
name: string;
|
|
1048
1162
|
}> | undefined;
|
|
1049
1163
|
d1?: Record<string, string | {
|
|
1164
|
+
previewDatabaseId?: string | undefined;
|
|
1165
|
+
migrationsTable?: string | undefined;
|
|
1166
|
+
migrationsDir?: string | undefined;
|
|
1167
|
+
remote?: boolean | undefined;
|
|
1050
1168
|
id: string;
|
|
1051
1169
|
} | {
|
|
1170
|
+
previewDatabaseId?: string | undefined;
|
|
1171
|
+
migrationsTable?: string | undefined;
|
|
1172
|
+
migrationsDir?: string | undefined;
|
|
1173
|
+
remote?: boolean | undefined;
|
|
1052
1174
|
name: string;
|
|
1053
1175
|
}> | undefined;
|
|
1054
|
-
r2?: Record<string, string
|
|
1176
|
+
r2?: Record<string, string | {
|
|
1177
|
+
bucketName: string;
|
|
1178
|
+
previewBucketName?: string | undefined;
|
|
1179
|
+
jurisdiction?: string | undefined;
|
|
1180
|
+
remote?: boolean | undefined;
|
|
1181
|
+
}> | undefined;
|
|
1055
1182
|
durableObjects?: Record<string, import("./schema-bindings.js").DurableObjectBindingInput> | undefined;
|
|
1056
1183
|
queues?: {
|
|
1057
|
-
producers?: Record<string, string
|
|
1184
|
+
producers?: Record<string, string | {
|
|
1185
|
+
queue: string;
|
|
1186
|
+
remote?: boolean | undefined;
|
|
1187
|
+
}> | undefined;
|
|
1058
1188
|
consumers?: {
|
|
1059
1189
|
queue: string;
|
|
1060
1190
|
maxBatchSize?: number | undefined;
|
|
@@ -1084,6 +1214,7 @@ export declare const envConfigSchema: z.ZodLazy<z.ZodObject<{
|
|
|
1084
1214
|
service: string;
|
|
1085
1215
|
environment?: string;
|
|
1086
1216
|
entrypoint?: string;
|
|
1217
|
+
remote?: boolean;
|
|
1087
1218
|
__ref?: unknown;
|
|
1088
1219
|
}> | undefined;
|
|
1089
1220
|
ai?: {
|
|
@@ -1295,19 +1426,39 @@ export declare const envConfigSchema: z.ZodLazy<z.ZodObject<{
|
|
|
1295
1426
|
} | undefined;
|
|
1296
1427
|
bindings?: {
|
|
1297
1428
|
kv?: Record<string, string | {
|
|
1429
|
+
previewId?: string | undefined;
|
|
1430
|
+
remote?: boolean | undefined;
|
|
1298
1431
|
id: string;
|
|
1299
1432
|
} | {
|
|
1433
|
+
previewId?: string | undefined;
|
|
1434
|
+
remote?: boolean | undefined;
|
|
1300
1435
|
name: string;
|
|
1301
1436
|
}> | undefined;
|
|
1302
1437
|
d1?: Record<string, string | {
|
|
1438
|
+
previewDatabaseId?: string | undefined;
|
|
1439
|
+
migrationsTable?: string | undefined;
|
|
1440
|
+
migrationsDir?: string | undefined;
|
|
1441
|
+
remote?: boolean | undefined;
|
|
1303
1442
|
id: string;
|
|
1304
1443
|
} | {
|
|
1444
|
+
previewDatabaseId?: string | undefined;
|
|
1445
|
+
migrationsTable?: string | undefined;
|
|
1446
|
+
migrationsDir?: string | undefined;
|
|
1447
|
+
remote?: boolean | undefined;
|
|
1305
1448
|
name: string;
|
|
1306
1449
|
}> | undefined;
|
|
1307
|
-
r2?: Record<string, string
|
|
1450
|
+
r2?: Record<string, string | {
|
|
1451
|
+
bucketName: string;
|
|
1452
|
+
previewBucketName?: string | undefined;
|
|
1453
|
+
jurisdiction?: string | undefined;
|
|
1454
|
+
remote?: boolean | undefined;
|
|
1455
|
+
}> | undefined;
|
|
1308
1456
|
durableObjects?: Record<string, import("./schema-bindings.js").DurableObjectBindingInput> | undefined;
|
|
1309
1457
|
queues?: {
|
|
1310
|
-
producers?: Record<string, string
|
|
1458
|
+
producers?: Record<string, string | {
|
|
1459
|
+
queue: string;
|
|
1460
|
+
remote?: boolean | undefined;
|
|
1461
|
+
}> | undefined;
|
|
1311
1462
|
consumers?: {
|
|
1312
1463
|
queue: string;
|
|
1313
1464
|
maxBatchSize?: number | undefined;
|
|
@@ -1337,6 +1488,7 @@ export declare const envConfigSchema: z.ZodLazy<z.ZodObject<{
|
|
|
1337
1488
|
service: string;
|
|
1338
1489
|
environment?: string;
|
|
1339
1490
|
entrypoint?: string;
|
|
1491
|
+
remote?: boolean;
|
|
1340
1492
|
__ref?: unknown;
|
|
1341
1493
|
}> | undefined;
|
|
1342
1494
|
ai?: {
|
|
@@ -1593,35 +1745,95 @@ export declare const envConfigSchemaInner: z.ZodLazy<z.ZodObject<{
|
|
|
1593
1745
|
}>>>;
|
|
1594
1746
|
readonly bindings: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1595
1747
|
kv: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1748
|
+
previewId: z.ZodOptional<z.ZodString>;
|
|
1749
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
1596
1750
|
id: z.ZodString;
|
|
1597
1751
|
}, "strict", z.ZodTypeAny, {
|
|
1752
|
+
previewId?: string | undefined;
|
|
1753
|
+
remote?: boolean | undefined;
|
|
1598
1754
|
id: string;
|
|
1599
1755
|
}, {
|
|
1756
|
+
previewId?: string | undefined;
|
|
1757
|
+
remote?: boolean | undefined;
|
|
1600
1758
|
id: string;
|
|
1601
1759
|
}>, z.ZodObject<{
|
|
1760
|
+
previewId: z.ZodOptional<z.ZodString>;
|
|
1761
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
1602
1762
|
name: z.ZodString;
|
|
1603
1763
|
}, "strict", z.ZodTypeAny, {
|
|
1764
|
+
previewId?: string | undefined;
|
|
1765
|
+
remote?: boolean | undefined;
|
|
1604
1766
|
name: string;
|
|
1605
1767
|
}, {
|
|
1768
|
+
previewId?: string | undefined;
|
|
1769
|
+
remote?: boolean | undefined;
|
|
1606
1770
|
name: string;
|
|
1607
1771
|
}>]>>>;
|
|
1608
1772
|
d1: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1773
|
+
previewDatabaseId: z.ZodOptional<z.ZodString>;
|
|
1774
|
+
migrationsTable: z.ZodOptional<z.ZodString>;
|
|
1775
|
+
migrationsDir: z.ZodOptional<z.ZodString>;
|
|
1776
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
1609
1777
|
id: z.ZodString;
|
|
1610
1778
|
}, "strict", z.ZodTypeAny, {
|
|
1779
|
+
previewDatabaseId?: string | undefined;
|
|
1780
|
+
migrationsTable?: string | undefined;
|
|
1781
|
+
migrationsDir?: string | undefined;
|
|
1782
|
+
remote?: boolean | undefined;
|
|
1611
1783
|
id: string;
|
|
1612
1784
|
}, {
|
|
1785
|
+
previewDatabaseId?: string | undefined;
|
|
1786
|
+
migrationsTable?: string | undefined;
|
|
1787
|
+
migrationsDir?: string | undefined;
|
|
1788
|
+
remote?: boolean | undefined;
|
|
1613
1789
|
id: string;
|
|
1614
1790
|
}>, z.ZodObject<{
|
|
1791
|
+
previewDatabaseId: z.ZodOptional<z.ZodString>;
|
|
1792
|
+
migrationsTable: z.ZodOptional<z.ZodString>;
|
|
1793
|
+
migrationsDir: z.ZodOptional<z.ZodString>;
|
|
1794
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
1615
1795
|
name: z.ZodString;
|
|
1616
1796
|
}, "strict", z.ZodTypeAny, {
|
|
1797
|
+
previewDatabaseId?: string | undefined;
|
|
1798
|
+
migrationsTable?: string | undefined;
|
|
1799
|
+
migrationsDir?: string | undefined;
|
|
1800
|
+
remote?: boolean | undefined;
|
|
1617
1801
|
name: string;
|
|
1618
1802
|
}, {
|
|
1803
|
+
previewDatabaseId?: string | undefined;
|
|
1804
|
+
migrationsTable?: string | undefined;
|
|
1805
|
+
migrationsDir?: string | undefined;
|
|
1806
|
+
remote?: boolean | undefined;
|
|
1619
1807
|
name: string;
|
|
1620
1808
|
}>]>>>;
|
|
1621
|
-
r2: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString
|
|
1809
|
+
r2: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1810
|
+
bucketName: z.ZodString;
|
|
1811
|
+
previewBucketName: z.ZodOptional<z.ZodString>;
|
|
1812
|
+
jurisdiction: z.ZodOptional<z.ZodString>;
|
|
1813
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
1814
|
+
}, "strict", z.ZodTypeAny, {
|
|
1815
|
+
bucketName: string;
|
|
1816
|
+
previewBucketName?: string | undefined;
|
|
1817
|
+
jurisdiction?: string | undefined;
|
|
1818
|
+
remote?: boolean | undefined;
|
|
1819
|
+
}, {
|
|
1820
|
+
bucketName: string;
|
|
1821
|
+
previewBucketName?: string | undefined;
|
|
1822
|
+
jurisdiction?: string | undefined;
|
|
1823
|
+
remote?: boolean | undefined;
|
|
1824
|
+
}>]>>>;
|
|
1622
1825
|
durableObjects: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("./schema-bindings.js").DurableObjectBindingInput, z.ZodTypeDef, import("./schema-bindings.js").DurableObjectBindingInput>>>;
|
|
1623
1826
|
queues: z.ZodOptional<z.ZodObject<{
|
|
1624
|
-
producers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString
|
|
1827
|
+
producers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1828
|
+
queue: z.ZodString;
|
|
1829
|
+
remote: z.ZodOptional<z.ZodBoolean>;
|
|
1830
|
+
}, "strict", z.ZodTypeAny, {
|
|
1831
|
+
queue: string;
|
|
1832
|
+
remote?: boolean | undefined;
|
|
1833
|
+
}, {
|
|
1834
|
+
queue: string;
|
|
1835
|
+
remote?: boolean | undefined;
|
|
1836
|
+
}>]>>>;
|
|
1625
1837
|
consumers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1626
1838
|
queue: z.ZodString;
|
|
1627
1839
|
maxBatchSize: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1648,7 +1860,10 @@ export declare const envConfigSchemaInner: z.ZodLazy<z.ZodObject<{
|
|
|
1648
1860
|
retryDelay?: number | undefined;
|
|
1649
1861
|
}>, "many">>;
|
|
1650
1862
|
}, "strip", z.ZodTypeAny, {
|
|
1651
|
-
producers?: Record<string, string
|
|
1863
|
+
producers?: Record<string, string | {
|
|
1864
|
+
queue: string;
|
|
1865
|
+
remote?: boolean | undefined;
|
|
1866
|
+
}> | undefined;
|
|
1652
1867
|
consumers?: {
|
|
1653
1868
|
queue: string;
|
|
1654
1869
|
maxBatchSize?: number | undefined;
|
|
@@ -1659,7 +1874,10 @@ export declare const envConfigSchemaInner: z.ZodLazy<z.ZodObject<{
|
|
|
1659
1874
|
retryDelay?: number | undefined;
|
|
1660
1875
|
}[] | undefined;
|
|
1661
1876
|
}, {
|
|
1662
|
-
producers?: Record<string, string
|
|
1877
|
+
producers?: Record<string, string | {
|
|
1878
|
+
queue: string;
|
|
1879
|
+
remote?: boolean | undefined;
|
|
1880
|
+
}> | undefined;
|
|
1663
1881
|
consumers?: {
|
|
1664
1882
|
queue: string;
|
|
1665
1883
|
maxBatchSize?: number | undefined;
|
|
@@ -1717,11 +1935,13 @@ export declare const envConfigSchemaInner: z.ZodLazy<z.ZodObject<{
|
|
|
1717
1935
|
service: string;
|
|
1718
1936
|
environment?: string;
|
|
1719
1937
|
entrypoint?: string;
|
|
1938
|
+
remote?: boolean;
|
|
1720
1939
|
__ref?: unknown;
|
|
1721
1940
|
}, z.ZodTypeDef, {
|
|
1722
1941
|
service: string;
|
|
1723
1942
|
environment?: string;
|
|
1724
1943
|
entrypoint?: string;
|
|
1944
|
+
remote?: boolean;
|
|
1725
1945
|
__ref?: unknown;
|
|
1726
1946
|
}>>>;
|
|
1727
1947
|
ai: z.ZodOptional<z.ZodObject<{
|
|
@@ -1959,19 +2179,39 @@ export declare const envConfigSchemaInner: z.ZodLazy<z.ZodObject<{
|
|
|
1959
2179
|
}>]>>>;
|
|
1960
2180
|
}, "strip", z.ZodTypeAny, {
|
|
1961
2181
|
kv?: Record<string, string | {
|
|
2182
|
+
previewId?: string | undefined;
|
|
2183
|
+
remote?: boolean | undefined;
|
|
1962
2184
|
id: string;
|
|
1963
2185
|
} | {
|
|
2186
|
+
previewId?: string | undefined;
|
|
2187
|
+
remote?: boolean | undefined;
|
|
1964
2188
|
name: string;
|
|
1965
2189
|
}> | undefined;
|
|
1966
2190
|
d1?: Record<string, string | {
|
|
2191
|
+
previewDatabaseId?: string | undefined;
|
|
2192
|
+
migrationsTable?: string | undefined;
|
|
2193
|
+
migrationsDir?: string | undefined;
|
|
2194
|
+
remote?: boolean | undefined;
|
|
1967
2195
|
id: string;
|
|
1968
2196
|
} | {
|
|
2197
|
+
previewDatabaseId?: string | undefined;
|
|
2198
|
+
migrationsTable?: string | undefined;
|
|
2199
|
+
migrationsDir?: string | undefined;
|
|
2200
|
+
remote?: boolean | undefined;
|
|
1969
2201
|
name: string;
|
|
1970
2202
|
}> | undefined;
|
|
1971
|
-
r2?: Record<string, string
|
|
2203
|
+
r2?: Record<string, string | {
|
|
2204
|
+
bucketName: string;
|
|
2205
|
+
previewBucketName?: string | undefined;
|
|
2206
|
+
jurisdiction?: string | undefined;
|
|
2207
|
+
remote?: boolean | undefined;
|
|
2208
|
+
}> | undefined;
|
|
1972
2209
|
durableObjects?: Record<string, import("./schema-bindings.js").DurableObjectBindingInput> | undefined;
|
|
1973
2210
|
queues?: {
|
|
1974
|
-
producers?: Record<string, string
|
|
2211
|
+
producers?: Record<string, string | {
|
|
2212
|
+
queue: string;
|
|
2213
|
+
remote?: boolean | undefined;
|
|
2214
|
+
}> | undefined;
|
|
1975
2215
|
consumers?: {
|
|
1976
2216
|
queue: string;
|
|
1977
2217
|
maxBatchSize?: number | undefined;
|
|
@@ -2001,6 +2241,7 @@ export declare const envConfigSchemaInner: z.ZodLazy<z.ZodObject<{
|
|
|
2001
2241
|
service: string;
|
|
2002
2242
|
environment?: string;
|
|
2003
2243
|
entrypoint?: string;
|
|
2244
|
+
remote?: boolean;
|
|
2004
2245
|
__ref?: unknown;
|
|
2005
2246
|
}> | undefined;
|
|
2006
2247
|
ai?: {
|
|
@@ -2082,19 +2323,39 @@ export declare const envConfigSchemaInner: z.ZodLazy<z.ZodObject<{
|
|
|
2082
2323
|
}> | undefined;
|
|
2083
2324
|
}, {
|
|
2084
2325
|
kv?: Record<string, string | {
|
|
2326
|
+
previewId?: string | undefined;
|
|
2327
|
+
remote?: boolean | undefined;
|
|
2085
2328
|
id: string;
|
|
2086
2329
|
} | {
|
|
2330
|
+
previewId?: string | undefined;
|
|
2331
|
+
remote?: boolean | undefined;
|
|
2087
2332
|
name: string;
|
|
2088
2333
|
}> | undefined;
|
|
2089
2334
|
d1?: Record<string, string | {
|
|
2335
|
+
previewDatabaseId?: string | undefined;
|
|
2336
|
+
migrationsTable?: string | undefined;
|
|
2337
|
+
migrationsDir?: string | undefined;
|
|
2338
|
+
remote?: boolean | undefined;
|
|
2090
2339
|
id: string;
|
|
2091
2340
|
} | {
|
|
2341
|
+
previewDatabaseId?: string | undefined;
|
|
2342
|
+
migrationsTable?: string | undefined;
|
|
2343
|
+
migrationsDir?: string | undefined;
|
|
2344
|
+
remote?: boolean | undefined;
|
|
2092
2345
|
name: string;
|
|
2093
2346
|
}> | undefined;
|
|
2094
|
-
r2?: Record<string, string
|
|
2347
|
+
r2?: Record<string, string | {
|
|
2348
|
+
bucketName: string;
|
|
2349
|
+
previewBucketName?: string | undefined;
|
|
2350
|
+
jurisdiction?: string | undefined;
|
|
2351
|
+
remote?: boolean | undefined;
|
|
2352
|
+
}> | undefined;
|
|
2095
2353
|
durableObjects?: Record<string, import("./schema-bindings.js").DurableObjectBindingInput> | undefined;
|
|
2096
2354
|
queues?: {
|
|
2097
|
-
producers?: Record<string, string
|
|
2355
|
+
producers?: Record<string, string | {
|
|
2356
|
+
queue: string;
|
|
2357
|
+
remote?: boolean | undefined;
|
|
2358
|
+
}> | undefined;
|
|
2098
2359
|
consumers?: {
|
|
2099
2360
|
queue: string;
|
|
2100
2361
|
maxBatchSize?: number | undefined;
|
|
@@ -2124,6 +2385,7 @@ export declare const envConfigSchemaInner: z.ZodLazy<z.ZodObject<{
|
|
|
2124
2385
|
service: string;
|
|
2125
2386
|
environment?: string;
|
|
2126
2387
|
entrypoint?: string;
|
|
2388
|
+
remote?: boolean;
|
|
2127
2389
|
__ref?: unknown;
|
|
2128
2390
|
}> | undefined;
|
|
2129
2391
|
ai?: {
|
|
@@ -2541,19 +2803,39 @@ export declare const envConfigSchemaInner: z.ZodLazy<z.ZodObject<{
|
|
|
2541
2803
|
} | undefined;
|
|
2542
2804
|
bindings?: {
|
|
2543
2805
|
kv?: Record<string, string | {
|
|
2806
|
+
previewId?: string | undefined;
|
|
2807
|
+
remote?: boolean | undefined;
|
|
2544
2808
|
id: string;
|
|
2545
2809
|
} | {
|
|
2810
|
+
previewId?: string | undefined;
|
|
2811
|
+
remote?: boolean | undefined;
|
|
2546
2812
|
name: string;
|
|
2547
2813
|
}> | undefined;
|
|
2548
2814
|
d1?: Record<string, string | {
|
|
2815
|
+
previewDatabaseId?: string | undefined;
|
|
2816
|
+
migrationsTable?: string | undefined;
|
|
2817
|
+
migrationsDir?: string | undefined;
|
|
2818
|
+
remote?: boolean | undefined;
|
|
2549
2819
|
id: string;
|
|
2550
2820
|
} | {
|
|
2821
|
+
previewDatabaseId?: string | undefined;
|
|
2822
|
+
migrationsTable?: string | undefined;
|
|
2823
|
+
migrationsDir?: string | undefined;
|
|
2824
|
+
remote?: boolean | undefined;
|
|
2551
2825
|
name: string;
|
|
2552
2826
|
}> | undefined;
|
|
2553
|
-
r2?: Record<string, string
|
|
2827
|
+
r2?: Record<string, string | {
|
|
2828
|
+
bucketName: string;
|
|
2829
|
+
previewBucketName?: string | undefined;
|
|
2830
|
+
jurisdiction?: string | undefined;
|
|
2831
|
+
remote?: boolean | undefined;
|
|
2832
|
+
}> | undefined;
|
|
2554
2833
|
durableObjects?: Record<string, import("./schema-bindings.js").DurableObjectBindingInput> | undefined;
|
|
2555
2834
|
queues?: {
|
|
2556
|
-
producers?: Record<string, string
|
|
2835
|
+
producers?: Record<string, string | {
|
|
2836
|
+
queue: string;
|
|
2837
|
+
remote?: boolean | undefined;
|
|
2838
|
+
}> | undefined;
|
|
2557
2839
|
consumers?: {
|
|
2558
2840
|
queue: string;
|
|
2559
2841
|
maxBatchSize?: number | undefined;
|
|
@@ -2583,6 +2865,7 @@ export declare const envConfigSchemaInner: z.ZodLazy<z.ZodObject<{
|
|
|
2583
2865
|
service: string;
|
|
2584
2866
|
environment?: string;
|
|
2585
2867
|
entrypoint?: string;
|
|
2868
|
+
remote?: boolean;
|
|
2586
2869
|
__ref?: unknown;
|
|
2587
2870
|
}> | undefined;
|
|
2588
2871
|
ai?: {
|
|
@@ -2794,19 +3077,39 @@ export declare const envConfigSchemaInner: z.ZodLazy<z.ZodObject<{
|
|
|
2794
3077
|
} | undefined;
|
|
2795
3078
|
bindings?: {
|
|
2796
3079
|
kv?: Record<string, string | {
|
|
3080
|
+
previewId?: string | undefined;
|
|
3081
|
+
remote?: boolean | undefined;
|
|
2797
3082
|
id: string;
|
|
2798
3083
|
} | {
|
|
3084
|
+
previewId?: string | undefined;
|
|
3085
|
+
remote?: boolean | undefined;
|
|
2799
3086
|
name: string;
|
|
2800
3087
|
}> | undefined;
|
|
2801
3088
|
d1?: Record<string, string | {
|
|
3089
|
+
previewDatabaseId?: string | undefined;
|
|
3090
|
+
migrationsTable?: string | undefined;
|
|
3091
|
+
migrationsDir?: string | undefined;
|
|
3092
|
+
remote?: boolean | undefined;
|
|
2802
3093
|
id: string;
|
|
2803
3094
|
} | {
|
|
3095
|
+
previewDatabaseId?: string | undefined;
|
|
3096
|
+
migrationsTable?: string | undefined;
|
|
3097
|
+
migrationsDir?: string | undefined;
|
|
3098
|
+
remote?: boolean | undefined;
|
|
2804
3099
|
name: string;
|
|
2805
3100
|
}> | undefined;
|
|
2806
|
-
r2?: Record<string, string
|
|
3101
|
+
r2?: Record<string, string | {
|
|
3102
|
+
bucketName: string;
|
|
3103
|
+
previewBucketName?: string | undefined;
|
|
3104
|
+
jurisdiction?: string | undefined;
|
|
3105
|
+
remote?: boolean | undefined;
|
|
3106
|
+
}> | undefined;
|
|
2807
3107
|
durableObjects?: Record<string, import("./schema-bindings.js").DurableObjectBindingInput> | undefined;
|
|
2808
3108
|
queues?: {
|
|
2809
|
-
producers?: Record<string, string
|
|
3109
|
+
producers?: Record<string, string | {
|
|
3110
|
+
queue: string;
|
|
3111
|
+
remote?: boolean | undefined;
|
|
3112
|
+
}> | undefined;
|
|
2810
3113
|
consumers?: {
|
|
2811
3114
|
queue: string;
|
|
2812
3115
|
maxBatchSize?: number | undefined;
|
|
@@ -2836,6 +3139,7 @@ export declare const envConfigSchemaInner: z.ZodLazy<z.ZodObject<{
|
|
|
2836
3139
|
service: string;
|
|
2837
3140
|
environment?: string;
|
|
2838
3141
|
entrypoint?: string;
|
|
3142
|
+
remote?: boolean;
|
|
2839
3143
|
__ref?: unknown;
|
|
2840
3144
|
}> | undefined;
|
|
2841
3145
|
ai?: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema-env.d.ts","sourceRoot":"","sources":["../../src/config/schema-env.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAGvB;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"schema-env.d.ts","sourceRoot":"","sources":["../../src/config/schema-env.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAGvB;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAE3B,CAAA;AAED,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAkB,CAAA;AAEnD,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,oBAAoB,CAAC,CAAA"}
|