@zigrivers/scaffold 3.19.0 → 3.21.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 +3 -1
- package/dist/cli/commands/dashboard.d.ts.map +1 -1
- package/dist/cli/commands/dashboard.js +98 -25
- package/dist/cli/commands/dashboard.js.map +1 -1
- package/dist/cli/commands/dashboard.test.js +210 -0
- package/dist/cli/commands/dashboard.test.js.map +1 -1
- package/dist/config/loader.test.js +72 -0
- package/dist/config/loader.test.js.map +1 -1
- package/dist/config/schema.d.ts +432 -420
- package/dist/config/schema.d.ts.map +1 -1
- package/dist/config/schema.js +35 -4
- package/dist/config/schema.js.map +1 -1
- package/dist/config/schema.test.js +82 -1
- package/dist/config/schema.test.js.map +1 -1
- package/dist/core/assembly/overlay-state-resolver.d.ts.map +1 -1
- package/dist/core/assembly/overlay-state-resolver.js +47 -18
- package/dist/core/assembly/overlay-state-resolver.js.map +1 -1
- package/dist/core/assembly/overlay-state-resolver.test.js +291 -0
- package/dist/core/assembly/overlay-state-resolver.test.js.map +1 -1
- package/dist/dashboard/generator.d.ts +57 -0
- package/dist/dashboard/generator.d.ts.map +1 -1
- package/dist/dashboard/generator.js +125 -1
- package/dist/dashboard/generator.js.map +1 -1
- package/dist/dashboard/multi-service.test.d.ts +2 -0
- package/dist/dashboard/multi-service.test.d.ts.map +1 -0
- package/dist/dashboard/multi-service.test.js +535 -0
- package/dist/dashboard/multi-service.test.js.map +1 -0
- package/dist/dashboard/template.d.ts +2 -1
- package/dist/dashboard/template.d.ts.map +1 -1
- package/dist/dashboard/template.js +400 -0
- package/dist/dashboard/template.js.map +1 -1
- package/dist/e2e/service-execution.test.js +69 -0
- package/dist/e2e/service-execution.test.js.map +1 -1
- package/package.json +1 -1
package/dist/config/schema.d.ts
CHANGED
|
@@ -16,27 +16,39 @@ export declare const WebAppConfigSchema: z.ZodObject<{
|
|
|
16
16
|
realtime?: "none" | "websocket" | "sse" | undefined;
|
|
17
17
|
authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
|
|
18
18
|
}>;
|
|
19
|
+
/**
|
|
20
|
+
* Canonical lists of "real" domain values (excluding 'none') for each
|
|
21
|
+
* project-type family. These are the values a domain sub-overlay YAML file
|
|
22
|
+
* can be named for.
|
|
23
|
+
*
|
|
24
|
+
* EXPORTED so tests/packaging/domain-overlay-alignment.test.ts can enumerate
|
|
25
|
+
* them and assert that every value has a corresponding content/methodology/
|
|
26
|
+
* file shipped. Do not inline these into the schemas — the packaging test
|
|
27
|
+
* relies on the import.
|
|
28
|
+
*/
|
|
29
|
+
export declare const backendRealDomains: readonly ["fintech"];
|
|
30
|
+
export declare const researchRealDomains: readonly ["quant-finance", "ml-research", "simulation"];
|
|
19
31
|
export declare const BackendConfigSchema: z.ZodObject<{
|
|
20
32
|
apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
|
|
21
33
|
dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
|
|
22
34
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
23
35
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
24
36
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
25
|
-
domain: z.ZodDefault<z.
|
|
37
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
26
38
|
}, "strict", z.ZodTypeAny, {
|
|
27
39
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
28
40
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
29
41
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
30
42
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
31
43
|
deployTarget: "serverless" | "container" | "long-running";
|
|
32
|
-
domain: "none" | "fintech";
|
|
44
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
33
45
|
}, {
|
|
34
46
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
35
47
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
36
48
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
37
49
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
38
50
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
39
|
-
domain?: "none" | "fintech" | undefined;
|
|
51
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
40
52
|
}>;
|
|
41
53
|
export declare const CliConfigSchema: z.ZodObject<{
|
|
42
54
|
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
@@ -141,15 +153,15 @@ export declare const ResearchConfigSchema: z.ZodObject<{
|
|
|
141
153
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
142
154
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
143
155
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
144
|
-
domain: z.ZodDefault<z.
|
|
156
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
145
157
|
}, "strict", z.ZodTypeAny, {
|
|
146
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
158
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
147
159
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
148
160
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
149
161
|
hasExperimentTracking: boolean;
|
|
150
162
|
}, {
|
|
151
163
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
152
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
164
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
153
165
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
154
166
|
hasExperimentTracking?: boolean | undefined;
|
|
155
167
|
}>;
|
|
@@ -200,21 +212,21 @@ export declare const ServiceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
200
212
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
201
213
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
202
214
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
203
|
-
domain: z.ZodDefault<z.
|
|
215
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
204
216
|
}, "strict", z.ZodTypeAny, {
|
|
205
217
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
206
218
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
207
219
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
208
220
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
209
221
|
deployTarget: "serverless" | "container" | "long-running";
|
|
210
|
-
domain: "none" | "fintech";
|
|
222
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
211
223
|
}, {
|
|
212
224
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
213
225
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
214
226
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
215
227
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
216
228
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
217
|
-
domain?: "none" | "fintech" | undefined;
|
|
229
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
218
230
|
}>>;
|
|
219
231
|
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
220
232
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
@@ -236,15 +248,15 @@ export declare const ServiceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
236
248
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
237
249
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
238
250
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
239
|
-
domain: z.ZodDefault<z.
|
|
251
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
240
252
|
}, "strict", z.ZodTypeAny, {
|
|
241
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
253
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
242
254
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
243
255
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
244
256
|
hasExperimentTracking: boolean;
|
|
245
257
|
}, {
|
|
246
258
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
247
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
259
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
248
260
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
249
261
|
hasExperimentTracking?: boolean | undefined;
|
|
250
262
|
}>>;
|
|
@@ -402,7 +414,7 @@ export declare const ServiceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
402
414
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
403
415
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
404
416
|
deployTarget: "serverless" | "container" | "long-running";
|
|
405
|
-
domain: "none" | "fintech";
|
|
417
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
406
418
|
} | undefined;
|
|
407
419
|
webAppConfig?: {
|
|
408
420
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -411,7 +423,7 @@ export declare const ServiceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
411
423
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
412
424
|
} | undefined;
|
|
413
425
|
researchConfig?: {
|
|
414
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
426
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
415
427
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
416
428
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
417
429
|
hasExperimentTracking: boolean;
|
|
@@ -480,7 +492,7 @@ export declare const ServiceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
480
492
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
481
493
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
482
494
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
483
|
-
domain?: "none" | "fintech" | undefined;
|
|
495
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
484
496
|
} | undefined;
|
|
485
497
|
webAppConfig?: {
|
|
486
498
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -490,7 +502,7 @@ export declare const ServiceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
490
502
|
} | undefined;
|
|
491
503
|
researchConfig?: {
|
|
492
504
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
493
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
505
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
494
506
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
495
507
|
hasExperimentTracking?: boolean | undefined;
|
|
496
508
|
} | undefined;
|
|
@@ -558,7 +570,7 @@ export declare const ServiceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
558
570
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
559
571
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
560
572
|
deployTarget: "serverless" | "container" | "long-running";
|
|
561
|
-
domain: "none" | "fintech";
|
|
573
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
562
574
|
} | undefined;
|
|
563
575
|
webAppConfig?: {
|
|
564
576
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -567,7 +579,7 @@ export declare const ServiceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
567
579
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
568
580
|
} | undefined;
|
|
569
581
|
researchConfig?: {
|
|
570
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
582
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
571
583
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
572
584
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
573
585
|
hasExperimentTracking: boolean;
|
|
@@ -636,7 +648,7 @@ export declare const ServiceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
636
648
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
637
649
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
638
650
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
639
|
-
domain?: "none" | "fintech" | undefined;
|
|
651
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
640
652
|
} | undefined;
|
|
641
653
|
webAppConfig?: {
|
|
642
654
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -646,7 +658,7 @@ export declare const ServiceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
646
658
|
} | undefined;
|
|
647
659
|
researchConfig?: {
|
|
648
660
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
649
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
661
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
650
662
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
651
663
|
hasExperimentTracking?: boolean | undefined;
|
|
652
664
|
} | undefined;
|
|
@@ -768,21 +780,21 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
768
780
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
769
781
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
770
782
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
771
|
-
domain: z.ZodDefault<z.
|
|
783
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
772
784
|
}, "strict", z.ZodTypeAny, {
|
|
773
785
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
774
786
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
775
787
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
776
788
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
777
789
|
deployTarget: "serverless" | "container" | "long-running";
|
|
778
|
-
domain: "none" | "fintech";
|
|
790
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
779
791
|
}, {
|
|
780
792
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
781
793
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
782
794
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
783
795
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
784
796
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
785
|
-
domain?: "none" | "fintech" | undefined;
|
|
797
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
786
798
|
}>>;
|
|
787
799
|
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
788
800
|
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
@@ -887,15 +899,15 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
887
899
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
888
900
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
889
901
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
890
|
-
domain: z.ZodDefault<z.
|
|
902
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
891
903
|
}, "strict", z.ZodTypeAny, {
|
|
892
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
904
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
893
905
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
894
906
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
895
907
|
hasExperimentTracking: boolean;
|
|
896
908
|
}, {
|
|
897
909
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
898
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
910
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
899
911
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
900
912
|
hasExperimentTracking?: boolean | undefined;
|
|
901
913
|
}>>;
|
|
@@ -909,21 +921,21 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
909
921
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
910
922
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
911
923
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
912
|
-
domain: z.ZodDefault<z.
|
|
924
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
913
925
|
}, "strict", z.ZodTypeAny, {
|
|
914
926
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
915
927
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
916
928
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
917
929
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
918
930
|
deployTarget: "serverless" | "container" | "long-running";
|
|
919
|
-
domain: "none" | "fintech";
|
|
931
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
920
932
|
}, {
|
|
921
933
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
922
934
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
923
935
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
924
936
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
925
937
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
926
|
-
domain?: "none" | "fintech" | undefined;
|
|
938
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
927
939
|
}>>;
|
|
928
940
|
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
929
941
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
@@ -945,15 +957,15 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
945
957
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
946
958
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
947
959
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
948
|
-
domain: z.ZodDefault<z.
|
|
960
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
949
961
|
}, "strict", z.ZodTypeAny, {
|
|
950
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
962
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
951
963
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
952
964
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
953
965
|
hasExperimentTracking: boolean;
|
|
954
966
|
}, {
|
|
955
967
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
956
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
968
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
957
969
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
958
970
|
hasExperimentTracking?: boolean | undefined;
|
|
959
971
|
}>>;
|
|
@@ -1111,7 +1123,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1111
1123
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
1112
1124
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
1113
1125
|
deployTarget: "serverless" | "container" | "long-running";
|
|
1114
|
-
domain: "none" | "fintech";
|
|
1126
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
1115
1127
|
} | undefined;
|
|
1116
1128
|
webAppConfig?: {
|
|
1117
1129
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -1120,7 +1132,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1120
1132
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
1121
1133
|
} | undefined;
|
|
1122
1134
|
researchConfig?: {
|
|
1123
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
1135
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
1124
1136
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
1125
1137
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
1126
1138
|
hasExperimentTracking: boolean;
|
|
@@ -1189,7 +1201,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1189
1201
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
1190
1202
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
1191
1203
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
1192
|
-
domain?: "none" | "fintech" | undefined;
|
|
1204
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
1193
1205
|
} | undefined;
|
|
1194
1206
|
webAppConfig?: {
|
|
1195
1207
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -1199,7 +1211,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1199
1211
|
} | undefined;
|
|
1200
1212
|
researchConfig?: {
|
|
1201
1213
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
1202
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
1214
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
1203
1215
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
1204
1216
|
hasExperimentTracking?: boolean | undefined;
|
|
1205
1217
|
} | undefined;
|
|
@@ -1267,7 +1279,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1267
1279
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
1268
1280
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
1269
1281
|
deployTarget: "serverless" | "container" | "long-running";
|
|
1270
|
-
domain: "none" | "fintech";
|
|
1282
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
1271
1283
|
} | undefined;
|
|
1272
1284
|
webAppConfig?: {
|
|
1273
1285
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -1276,7 +1288,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1276
1288
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
1277
1289
|
} | undefined;
|
|
1278
1290
|
researchConfig?: {
|
|
1279
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
1291
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
1280
1292
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
1281
1293
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
1282
1294
|
hasExperimentTracking: boolean;
|
|
@@ -1345,7 +1357,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1345
1357
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
1346
1358
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
1347
1359
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
1348
|
-
domain?: "none" | "fintech" | undefined;
|
|
1360
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
1349
1361
|
} | undefined;
|
|
1350
1362
|
webAppConfig?: {
|
|
1351
1363
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -1355,7 +1367,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1355
1367
|
} | undefined;
|
|
1356
1368
|
researchConfig?: {
|
|
1357
1369
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
1358
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
1370
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
1359
1371
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
1360
1372
|
hasExperimentTracking?: boolean | undefined;
|
|
1361
1373
|
} | undefined;
|
|
@@ -1477,21 +1489,21 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1477
1489
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
1478
1490
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
1479
1491
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
1480
|
-
domain: z.ZodDefault<z.
|
|
1492
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
1481
1493
|
}, "strict", z.ZodTypeAny, {
|
|
1482
1494
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
1483
1495
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
1484
1496
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
1485
1497
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
1486
1498
|
deployTarget: "serverless" | "container" | "long-running";
|
|
1487
|
-
domain: "none" | "fintech";
|
|
1499
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
1488
1500
|
}, {
|
|
1489
1501
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
1490
1502
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
1491
1503
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
1492
1504
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
1493
1505
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
1494
|
-
domain?: "none" | "fintech" | undefined;
|
|
1506
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
1495
1507
|
}>>;
|
|
1496
1508
|
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
1497
1509
|
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
@@ -1596,15 +1608,15 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1596
1608
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
1597
1609
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
1598
1610
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
1599
|
-
domain: z.ZodDefault<z.
|
|
1611
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
1600
1612
|
}, "strict", z.ZodTypeAny, {
|
|
1601
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
1613
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
1602
1614
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
1603
1615
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
1604
1616
|
hasExperimentTracking: boolean;
|
|
1605
1617
|
}, {
|
|
1606
1618
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
1607
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
1619
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
1608
1620
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
1609
1621
|
hasExperimentTracking?: boolean | undefined;
|
|
1610
1622
|
}>>;
|
|
@@ -1618,21 +1630,21 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1618
1630
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
1619
1631
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
1620
1632
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
1621
|
-
domain: z.ZodDefault<z.
|
|
1633
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
1622
1634
|
}, "strict", z.ZodTypeAny, {
|
|
1623
1635
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
1624
1636
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
1625
1637
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
1626
1638
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
1627
1639
|
deployTarget: "serverless" | "container" | "long-running";
|
|
1628
|
-
domain: "none" | "fintech";
|
|
1640
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
1629
1641
|
}, {
|
|
1630
1642
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
1631
1643
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
1632
1644
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
1633
1645
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
1634
1646
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
1635
|
-
domain?: "none" | "fintech" | undefined;
|
|
1647
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
1636
1648
|
}>>;
|
|
1637
1649
|
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
1638
1650
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
@@ -1654,15 +1666,15 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1654
1666
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
1655
1667
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
1656
1668
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
1657
|
-
domain: z.ZodDefault<z.
|
|
1669
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
1658
1670
|
}, "strict", z.ZodTypeAny, {
|
|
1659
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
1671
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
1660
1672
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
1661
1673
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
1662
1674
|
hasExperimentTracking: boolean;
|
|
1663
1675
|
}, {
|
|
1664
1676
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
1665
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
1677
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
1666
1678
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
1667
1679
|
hasExperimentTracking?: boolean | undefined;
|
|
1668
1680
|
}>>;
|
|
@@ -1820,7 +1832,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1820
1832
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
1821
1833
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
1822
1834
|
deployTarget: "serverless" | "container" | "long-running";
|
|
1823
|
-
domain: "none" | "fintech";
|
|
1835
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
1824
1836
|
} | undefined;
|
|
1825
1837
|
webAppConfig?: {
|
|
1826
1838
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -1829,7 +1841,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1829
1841
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
1830
1842
|
} | undefined;
|
|
1831
1843
|
researchConfig?: {
|
|
1832
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
1844
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
1833
1845
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
1834
1846
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
1835
1847
|
hasExperimentTracking: boolean;
|
|
@@ -1898,7 +1910,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1898
1910
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
1899
1911
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
1900
1912
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
1901
|
-
domain?: "none" | "fintech" | undefined;
|
|
1913
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
1902
1914
|
} | undefined;
|
|
1903
1915
|
webAppConfig?: {
|
|
1904
1916
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -1908,7 +1920,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1908
1920
|
} | undefined;
|
|
1909
1921
|
researchConfig?: {
|
|
1910
1922
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
1911
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
1923
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
1912
1924
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
1913
1925
|
hasExperimentTracking?: boolean | undefined;
|
|
1914
1926
|
} | undefined;
|
|
@@ -1976,7 +1988,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1976
1988
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
1977
1989
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
1978
1990
|
deployTarget: "serverless" | "container" | "long-running";
|
|
1979
|
-
domain: "none" | "fintech";
|
|
1991
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
1980
1992
|
} | undefined;
|
|
1981
1993
|
webAppConfig?: {
|
|
1982
1994
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -1985,7 +1997,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1985
1997
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
1986
1998
|
} | undefined;
|
|
1987
1999
|
researchConfig?: {
|
|
1988
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
2000
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
1989
2001
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
1990
2002
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
1991
2003
|
hasExperimentTracking: boolean;
|
|
@@ -2054,7 +2066,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2054
2066
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
2055
2067
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
2056
2068
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
2057
|
-
domain?: "none" | "fintech" | undefined;
|
|
2069
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
2058
2070
|
} | undefined;
|
|
2059
2071
|
webAppConfig?: {
|
|
2060
2072
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -2064,7 +2076,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2064
2076
|
} | undefined;
|
|
2065
2077
|
researchConfig?: {
|
|
2066
2078
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
2067
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
2079
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
2068
2080
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
2069
2081
|
hasExperimentTracking?: boolean | undefined;
|
|
2070
2082
|
} | undefined;
|
|
@@ -2186,21 +2198,21 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2186
2198
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
2187
2199
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
2188
2200
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
2189
|
-
domain: z.ZodDefault<z.
|
|
2201
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
2190
2202
|
}, "strict", z.ZodTypeAny, {
|
|
2191
2203
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
2192
2204
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
2193
2205
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
2194
2206
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
2195
2207
|
deployTarget: "serverless" | "container" | "long-running";
|
|
2196
|
-
domain: "none" | "fintech";
|
|
2208
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
2197
2209
|
}, {
|
|
2198
2210
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
2199
2211
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
2200
2212
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
2201
2213
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
2202
2214
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
2203
|
-
domain?: "none" | "fintech" | undefined;
|
|
2215
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
2204
2216
|
}>>;
|
|
2205
2217
|
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
2206
2218
|
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
@@ -2305,15 +2317,15 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2305
2317
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
2306
2318
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
2307
2319
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
2308
|
-
domain: z.ZodDefault<z.
|
|
2320
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
2309
2321
|
}, "strict", z.ZodTypeAny, {
|
|
2310
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
2322
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
2311
2323
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
2312
2324
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
2313
2325
|
hasExperimentTracking: boolean;
|
|
2314
2326
|
}, {
|
|
2315
2327
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
2316
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
2328
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
2317
2329
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
2318
2330
|
hasExperimentTracking?: boolean | undefined;
|
|
2319
2331
|
}>>;
|
|
@@ -2327,21 +2339,21 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2327
2339
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
2328
2340
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
2329
2341
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
2330
|
-
domain: z.ZodDefault<z.
|
|
2342
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
2331
2343
|
}, "strict", z.ZodTypeAny, {
|
|
2332
2344
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
2333
2345
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
2334
2346
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
2335
2347
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
2336
2348
|
deployTarget: "serverless" | "container" | "long-running";
|
|
2337
|
-
domain: "none" | "fintech";
|
|
2349
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
2338
2350
|
}, {
|
|
2339
2351
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
2340
2352
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
2341
2353
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
2342
2354
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
2343
2355
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
2344
|
-
domain?: "none" | "fintech" | undefined;
|
|
2356
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
2345
2357
|
}>>;
|
|
2346
2358
|
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
2347
2359
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
@@ -2363,15 +2375,15 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2363
2375
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
2364
2376
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
2365
2377
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
2366
|
-
domain: z.ZodDefault<z.
|
|
2378
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
2367
2379
|
}, "strict", z.ZodTypeAny, {
|
|
2368
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
2380
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
2369
2381
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
2370
2382
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
2371
2383
|
hasExperimentTracking: boolean;
|
|
2372
2384
|
}, {
|
|
2373
2385
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
2374
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
2386
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
2375
2387
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
2376
2388
|
hasExperimentTracking?: boolean | undefined;
|
|
2377
2389
|
}>>;
|
|
@@ -2529,7 +2541,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2529
2541
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
2530
2542
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
2531
2543
|
deployTarget: "serverless" | "container" | "long-running";
|
|
2532
|
-
domain: "none" | "fintech";
|
|
2544
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
2533
2545
|
} | undefined;
|
|
2534
2546
|
webAppConfig?: {
|
|
2535
2547
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -2538,7 +2550,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2538
2550
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
2539
2551
|
} | undefined;
|
|
2540
2552
|
researchConfig?: {
|
|
2541
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
2553
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
2542
2554
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
2543
2555
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
2544
2556
|
hasExperimentTracking: boolean;
|
|
@@ -2607,7 +2619,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2607
2619
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
2608
2620
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
2609
2621
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
2610
|
-
domain?: "none" | "fintech" | undefined;
|
|
2622
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
2611
2623
|
} | undefined;
|
|
2612
2624
|
webAppConfig?: {
|
|
2613
2625
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -2617,7 +2629,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2617
2629
|
} | undefined;
|
|
2618
2630
|
researchConfig?: {
|
|
2619
2631
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
2620
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
2632
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
2621
2633
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
2622
2634
|
hasExperimentTracking?: boolean | undefined;
|
|
2623
2635
|
} | undefined;
|
|
@@ -2685,7 +2697,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2685
2697
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
2686
2698
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
2687
2699
|
deployTarget: "serverless" | "container" | "long-running";
|
|
2688
|
-
domain: "none" | "fintech";
|
|
2700
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
2689
2701
|
} | undefined;
|
|
2690
2702
|
webAppConfig?: {
|
|
2691
2703
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -2694,7 +2706,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2694
2706
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
2695
2707
|
} | undefined;
|
|
2696
2708
|
researchConfig?: {
|
|
2697
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
2709
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
2698
2710
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
2699
2711
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
2700
2712
|
hasExperimentTracking: boolean;
|
|
@@ -2763,7 +2775,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2763
2775
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
2764
2776
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
2765
2777
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
2766
|
-
domain?: "none" | "fintech" | undefined;
|
|
2778
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
2767
2779
|
} | undefined;
|
|
2768
2780
|
webAppConfig?: {
|
|
2769
2781
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -2773,7 +2785,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2773
2785
|
} | undefined;
|
|
2774
2786
|
researchConfig?: {
|
|
2775
2787
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
2776
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
2788
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
2777
2789
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
2778
2790
|
hasExperimentTracking?: boolean | undefined;
|
|
2779
2791
|
} | undefined;
|
|
@@ -2895,21 +2907,21 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2895
2907
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
2896
2908
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
2897
2909
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
2898
|
-
domain: z.ZodDefault<z.
|
|
2910
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
2899
2911
|
}, "strict", z.ZodTypeAny, {
|
|
2900
2912
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
2901
2913
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
2902
2914
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
2903
2915
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
2904
2916
|
deployTarget: "serverless" | "container" | "long-running";
|
|
2905
|
-
domain: "none" | "fintech";
|
|
2917
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
2906
2918
|
}, {
|
|
2907
2919
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
2908
2920
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
2909
2921
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
2910
2922
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
2911
2923
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
2912
|
-
domain?: "none" | "fintech" | undefined;
|
|
2924
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
2913
2925
|
}>>;
|
|
2914
2926
|
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
2915
2927
|
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
@@ -3014,15 +3026,15 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3014
3026
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
3015
3027
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
3016
3028
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
3017
|
-
domain: z.ZodDefault<z.
|
|
3029
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
3018
3030
|
}, "strict", z.ZodTypeAny, {
|
|
3019
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
3031
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
3020
3032
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
3021
3033
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
3022
3034
|
hasExperimentTracking: boolean;
|
|
3023
3035
|
}, {
|
|
3024
3036
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
3025
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
3037
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
3026
3038
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
3027
3039
|
hasExperimentTracking?: boolean | undefined;
|
|
3028
3040
|
}>>;
|
|
@@ -3036,21 +3048,21 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3036
3048
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
3037
3049
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
3038
3050
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
3039
|
-
domain: z.ZodDefault<z.
|
|
3051
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
3040
3052
|
}, "strict", z.ZodTypeAny, {
|
|
3041
3053
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
3042
3054
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
3043
3055
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
3044
3056
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
3045
3057
|
deployTarget: "serverless" | "container" | "long-running";
|
|
3046
|
-
domain: "none" | "fintech";
|
|
3058
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
3047
3059
|
}, {
|
|
3048
3060
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
3049
3061
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
3050
3062
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
3051
3063
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
3052
3064
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
3053
|
-
domain?: "none" | "fintech" | undefined;
|
|
3065
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
3054
3066
|
}>>;
|
|
3055
3067
|
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
3056
3068
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
@@ -3072,15 +3084,15 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3072
3084
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
3073
3085
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
3074
3086
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
3075
|
-
domain: z.ZodDefault<z.
|
|
3087
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
3076
3088
|
}, "strict", z.ZodTypeAny, {
|
|
3077
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
3089
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
3078
3090
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
3079
3091
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
3080
3092
|
hasExperimentTracking: boolean;
|
|
3081
3093
|
}, {
|
|
3082
3094
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
3083
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
3095
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
3084
3096
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
3085
3097
|
hasExperimentTracking?: boolean | undefined;
|
|
3086
3098
|
}>>;
|
|
@@ -3238,7 +3250,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3238
3250
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
3239
3251
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
3240
3252
|
deployTarget: "serverless" | "container" | "long-running";
|
|
3241
|
-
domain: "none" | "fintech";
|
|
3253
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
3242
3254
|
} | undefined;
|
|
3243
3255
|
webAppConfig?: {
|
|
3244
3256
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -3247,7 +3259,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3247
3259
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
3248
3260
|
} | undefined;
|
|
3249
3261
|
researchConfig?: {
|
|
3250
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
3262
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
3251
3263
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
3252
3264
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
3253
3265
|
hasExperimentTracking: boolean;
|
|
@@ -3316,7 +3328,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3316
3328
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
3317
3329
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
3318
3330
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
3319
|
-
domain?: "none" | "fintech" | undefined;
|
|
3331
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
3320
3332
|
} | undefined;
|
|
3321
3333
|
webAppConfig?: {
|
|
3322
3334
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -3326,7 +3338,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3326
3338
|
} | undefined;
|
|
3327
3339
|
researchConfig?: {
|
|
3328
3340
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
3329
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
3341
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
3330
3342
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
3331
3343
|
hasExperimentTracking?: boolean | undefined;
|
|
3332
3344
|
} | undefined;
|
|
@@ -3394,7 +3406,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3394
3406
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
3395
3407
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
3396
3408
|
deployTarget: "serverless" | "container" | "long-running";
|
|
3397
|
-
domain: "none" | "fintech";
|
|
3409
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
3398
3410
|
} | undefined;
|
|
3399
3411
|
webAppConfig?: {
|
|
3400
3412
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -3403,7 +3415,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3403
3415
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
3404
3416
|
} | undefined;
|
|
3405
3417
|
researchConfig?: {
|
|
3406
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
3418
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
3407
3419
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
3408
3420
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
3409
3421
|
hasExperimentTracking: boolean;
|
|
@@ -3472,7 +3484,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3472
3484
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
3473
3485
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
3474
3486
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
3475
|
-
domain?: "none" | "fintech" | undefined;
|
|
3487
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
3476
3488
|
} | undefined;
|
|
3477
3489
|
webAppConfig?: {
|
|
3478
3490
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -3482,7 +3494,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3482
3494
|
} | undefined;
|
|
3483
3495
|
researchConfig?: {
|
|
3484
3496
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
3485
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
3497
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
3486
3498
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
3487
3499
|
hasExperimentTracking?: boolean | undefined;
|
|
3488
3500
|
} | undefined;
|
|
@@ -3604,21 +3616,21 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3604
3616
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
3605
3617
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
3606
3618
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
3607
|
-
domain: z.ZodDefault<z.
|
|
3619
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
3608
3620
|
}, "strict", z.ZodTypeAny, {
|
|
3609
3621
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
3610
3622
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
3611
3623
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
3612
3624
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
3613
3625
|
deployTarget: "serverless" | "container" | "long-running";
|
|
3614
|
-
domain: "none" | "fintech";
|
|
3626
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
3615
3627
|
}, {
|
|
3616
3628
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
3617
3629
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
3618
3630
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
3619
3631
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
3620
3632
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
3621
|
-
domain?: "none" | "fintech" | undefined;
|
|
3633
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
3622
3634
|
}>>;
|
|
3623
3635
|
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
3624
3636
|
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
@@ -3723,15 +3735,15 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3723
3735
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
3724
3736
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
3725
3737
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
3726
|
-
domain: z.ZodDefault<z.
|
|
3738
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
3727
3739
|
}, "strict", z.ZodTypeAny, {
|
|
3728
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
3740
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
3729
3741
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
3730
3742
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
3731
3743
|
hasExperimentTracking: boolean;
|
|
3732
3744
|
}, {
|
|
3733
3745
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
3734
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
3746
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
3735
3747
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
3736
3748
|
hasExperimentTracking?: boolean | undefined;
|
|
3737
3749
|
}>>;
|
|
@@ -3745,21 +3757,21 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3745
3757
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
3746
3758
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
3747
3759
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
3748
|
-
domain: z.ZodDefault<z.
|
|
3760
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
3749
3761
|
}, "strict", z.ZodTypeAny, {
|
|
3750
3762
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
3751
3763
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
3752
3764
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
3753
3765
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
3754
3766
|
deployTarget: "serverless" | "container" | "long-running";
|
|
3755
|
-
domain: "none" | "fintech";
|
|
3767
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
3756
3768
|
}, {
|
|
3757
3769
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
3758
3770
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
3759
3771
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
3760
3772
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
3761
3773
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
3762
|
-
domain?: "none" | "fintech" | undefined;
|
|
3774
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
3763
3775
|
}>>;
|
|
3764
3776
|
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
3765
3777
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
@@ -3781,15 +3793,15 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3781
3793
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
3782
3794
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
3783
3795
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
3784
|
-
domain: z.ZodDefault<z.
|
|
3796
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
3785
3797
|
}, "strict", z.ZodTypeAny, {
|
|
3786
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
3798
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
3787
3799
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
3788
3800
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
3789
3801
|
hasExperimentTracking: boolean;
|
|
3790
3802
|
}, {
|
|
3791
3803
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
3792
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
3804
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
3793
3805
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
3794
3806
|
hasExperimentTracking?: boolean | undefined;
|
|
3795
3807
|
}>>;
|
|
@@ -3947,7 +3959,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3947
3959
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
3948
3960
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
3949
3961
|
deployTarget: "serverless" | "container" | "long-running";
|
|
3950
|
-
domain: "none" | "fintech";
|
|
3962
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
3951
3963
|
} | undefined;
|
|
3952
3964
|
webAppConfig?: {
|
|
3953
3965
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -3956,7 +3968,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3956
3968
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
3957
3969
|
} | undefined;
|
|
3958
3970
|
researchConfig?: {
|
|
3959
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
3971
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
3960
3972
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
3961
3973
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
3962
3974
|
hasExperimentTracking: boolean;
|
|
@@ -4025,7 +4037,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4025
4037
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
4026
4038
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
4027
4039
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
4028
|
-
domain?: "none" | "fintech" | undefined;
|
|
4040
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
4029
4041
|
} | undefined;
|
|
4030
4042
|
webAppConfig?: {
|
|
4031
4043
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -4035,7 +4047,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4035
4047
|
} | undefined;
|
|
4036
4048
|
researchConfig?: {
|
|
4037
4049
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
4038
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
4050
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
4039
4051
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
4040
4052
|
hasExperimentTracking?: boolean | undefined;
|
|
4041
4053
|
} | undefined;
|
|
@@ -4103,7 +4115,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4103
4115
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
4104
4116
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
4105
4117
|
deployTarget: "serverless" | "container" | "long-running";
|
|
4106
|
-
domain: "none" | "fintech";
|
|
4118
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
4107
4119
|
} | undefined;
|
|
4108
4120
|
webAppConfig?: {
|
|
4109
4121
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -4112,7 +4124,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4112
4124
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
4113
4125
|
} | undefined;
|
|
4114
4126
|
researchConfig?: {
|
|
4115
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
4127
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
4116
4128
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
4117
4129
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
4118
4130
|
hasExperimentTracking: boolean;
|
|
@@ -4181,7 +4193,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4181
4193
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
4182
4194
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
4183
4195
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
4184
|
-
domain?: "none" | "fintech" | undefined;
|
|
4196
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
4185
4197
|
} | undefined;
|
|
4186
4198
|
webAppConfig?: {
|
|
4187
4199
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -4191,7 +4203,7 @@ export declare const ProjectSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4191
4203
|
} | undefined;
|
|
4192
4204
|
researchConfig?: {
|
|
4193
4205
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
4194
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
4206
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
4195
4207
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
4196
4208
|
hasExperimentTracking?: boolean | undefined;
|
|
4197
4209
|
} | undefined;
|
|
@@ -4343,21 +4355,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
4343
4355
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
4344
4356
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
4345
4357
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
4346
|
-
domain: z.ZodDefault<z.
|
|
4358
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
4347
4359
|
}, "strict", z.ZodTypeAny, {
|
|
4348
4360
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
4349
4361
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
4350
4362
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
4351
4363
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
4352
4364
|
deployTarget: "serverless" | "container" | "long-running";
|
|
4353
|
-
domain: "none" | "fintech";
|
|
4365
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
4354
4366
|
}, {
|
|
4355
4367
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
4356
4368
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
4357
4369
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
4358
4370
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
4359
4371
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
4360
|
-
domain?: "none" | "fintech" | undefined;
|
|
4372
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
4361
4373
|
}>>;
|
|
4362
4374
|
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
4363
4375
|
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
@@ -4462,15 +4474,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
4462
4474
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
4463
4475
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
4464
4476
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
4465
|
-
domain: z.ZodDefault<z.
|
|
4477
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
4466
4478
|
}, "strict", z.ZodTypeAny, {
|
|
4467
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
4479
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
4468
4480
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
4469
4481
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
4470
4482
|
hasExperimentTracking: boolean;
|
|
4471
4483
|
}, {
|
|
4472
4484
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
4473
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
4485
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
4474
4486
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
4475
4487
|
hasExperimentTracking?: boolean | undefined;
|
|
4476
4488
|
}>>;
|
|
@@ -4484,21 +4496,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
4484
4496
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
4485
4497
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
4486
4498
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
4487
|
-
domain: z.ZodDefault<z.
|
|
4499
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
4488
4500
|
}, "strict", z.ZodTypeAny, {
|
|
4489
4501
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
4490
4502
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
4491
4503
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
4492
4504
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
4493
4505
|
deployTarget: "serverless" | "container" | "long-running";
|
|
4494
|
-
domain: "none" | "fintech";
|
|
4506
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
4495
4507
|
}, {
|
|
4496
4508
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
4497
4509
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
4498
4510
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
4499
4511
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
4500
4512
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
4501
|
-
domain?: "none" | "fintech" | undefined;
|
|
4513
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
4502
4514
|
}>>;
|
|
4503
4515
|
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
4504
4516
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
@@ -4520,15 +4532,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
4520
4532
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
4521
4533
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
4522
4534
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
4523
|
-
domain: z.ZodDefault<z.
|
|
4535
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
4524
4536
|
}, "strict", z.ZodTypeAny, {
|
|
4525
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
4537
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
4526
4538
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
4527
4539
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
4528
4540
|
hasExperimentTracking: boolean;
|
|
4529
4541
|
}, {
|
|
4530
4542
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
4531
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
4543
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
4532
4544
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
4533
4545
|
hasExperimentTracking?: boolean | undefined;
|
|
4534
4546
|
}>>;
|
|
@@ -4686,7 +4698,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
4686
4698
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
4687
4699
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
4688
4700
|
deployTarget: "serverless" | "container" | "long-running";
|
|
4689
|
-
domain: "none" | "fintech";
|
|
4701
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
4690
4702
|
} | undefined;
|
|
4691
4703
|
webAppConfig?: {
|
|
4692
4704
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -4695,7 +4707,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
4695
4707
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
4696
4708
|
} | undefined;
|
|
4697
4709
|
researchConfig?: {
|
|
4698
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
4710
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
4699
4711
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
4700
4712
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
4701
4713
|
hasExperimentTracking: boolean;
|
|
@@ -4764,7 +4776,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
4764
4776
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
4765
4777
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
4766
4778
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
4767
|
-
domain?: "none" | "fintech" | undefined;
|
|
4779
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
4768
4780
|
} | undefined;
|
|
4769
4781
|
webAppConfig?: {
|
|
4770
4782
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -4774,7 +4786,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
4774
4786
|
} | undefined;
|
|
4775
4787
|
researchConfig?: {
|
|
4776
4788
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
4777
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
4789
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
4778
4790
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
4779
4791
|
hasExperimentTracking?: boolean | undefined;
|
|
4780
4792
|
} | undefined;
|
|
@@ -4842,7 +4854,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
4842
4854
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
4843
4855
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
4844
4856
|
deployTarget: "serverless" | "container" | "long-running";
|
|
4845
|
-
domain: "none" | "fintech";
|
|
4857
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
4846
4858
|
} | undefined;
|
|
4847
4859
|
webAppConfig?: {
|
|
4848
4860
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -4851,7 +4863,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
4851
4863
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
4852
4864
|
} | undefined;
|
|
4853
4865
|
researchConfig?: {
|
|
4854
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
4866
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
4855
4867
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
4856
4868
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
4857
4869
|
hasExperimentTracking: boolean;
|
|
@@ -4920,7 +4932,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
4920
4932
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
4921
4933
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
4922
4934
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
4923
|
-
domain?: "none" | "fintech" | undefined;
|
|
4935
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
4924
4936
|
} | undefined;
|
|
4925
4937
|
webAppConfig?: {
|
|
4926
4938
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -4930,7 +4942,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
4930
4942
|
} | undefined;
|
|
4931
4943
|
researchConfig?: {
|
|
4932
4944
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
4933
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
4945
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
4934
4946
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
4935
4947
|
hasExperimentTracking?: boolean | undefined;
|
|
4936
4948
|
} | undefined;
|
|
@@ -5052,21 +5064,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
5052
5064
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
5053
5065
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
5054
5066
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
5055
|
-
domain: z.ZodDefault<z.
|
|
5067
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
5056
5068
|
}, "strict", z.ZodTypeAny, {
|
|
5057
5069
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
5058
5070
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
5059
5071
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
5060
5072
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
5061
5073
|
deployTarget: "serverless" | "container" | "long-running";
|
|
5062
|
-
domain: "none" | "fintech";
|
|
5074
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
5063
5075
|
}, {
|
|
5064
5076
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
5065
5077
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
5066
5078
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
5067
5079
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
5068
5080
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
5069
|
-
domain?: "none" | "fintech" | undefined;
|
|
5081
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
5070
5082
|
}>>;
|
|
5071
5083
|
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
5072
5084
|
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
@@ -5171,15 +5183,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
5171
5183
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
5172
5184
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
5173
5185
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
5174
|
-
domain: z.ZodDefault<z.
|
|
5186
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
5175
5187
|
}, "strict", z.ZodTypeAny, {
|
|
5176
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
5188
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
5177
5189
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
5178
5190
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
5179
5191
|
hasExperimentTracking: boolean;
|
|
5180
5192
|
}, {
|
|
5181
5193
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
5182
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
5194
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
5183
5195
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
5184
5196
|
hasExperimentTracking?: boolean | undefined;
|
|
5185
5197
|
}>>;
|
|
@@ -5193,21 +5205,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
5193
5205
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
5194
5206
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
5195
5207
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
5196
|
-
domain: z.ZodDefault<z.
|
|
5208
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
5197
5209
|
}, "strict", z.ZodTypeAny, {
|
|
5198
5210
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
5199
5211
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
5200
5212
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
5201
5213
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
5202
5214
|
deployTarget: "serverless" | "container" | "long-running";
|
|
5203
|
-
domain: "none" | "fintech";
|
|
5215
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
5204
5216
|
}, {
|
|
5205
5217
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
5206
5218
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
5207
5219
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
5208
5220
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
5209
5221
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
5210
|
-
domain?: "none" | "fintech" | undefined;
|
|
5222
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
5211
5223
|
}>>;
|
|
5212
5224
|
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
5213
5225
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
@@ -5229,15 +5241,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
5229
5241
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
5230
5242
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
5231
5243
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
5232
|
-
domain: z.ZodDefault<z.
|
|
5244
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
5233
5245
|
}, "strict", z.ZodTypeAny, {
|
|
5234
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
5246
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
5235
5247
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
5236
5248
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
5237
5249
|
hasExperimentTracking: boolean;
|
|
5238
5250
|
}, {
|
|
5239
5251
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
5240
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
5252
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
5241
5253
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
5242
5254
|
hasExperimentTracking?: boolean | undefined;
|
|
5243
5255
|
}>>;
|
|
@@ -5395,7 +5407,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
5395
5407
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
5396
5408
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
5397
5409
|
deployTarget: "serverless" | "container" | "long-running";
|
|
5398
|
-
domain: "none" | "fintech";
|
|
5410
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
5399
5411
|
} | undefined;
|
|
5400
5412
|
webAppConfig?: {
|
|
5401
5413
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -5404,7 +5416,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
5404
5416
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
5405
5417
|
} | undefined;
|
|
5406
5418
|
researchConfig?: {
|
|
5407
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
5419
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
5408
5420
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
5409
5421
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
5410
5422
|
hasExperimentTracking: boolean;
|
|
@@ -5473,7 +5485,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
5473
5485
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
5474
5486
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
5475
5487
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
5476
|
-
domain?: "none" | "fintech" | undefined;
|
|
5488
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
5477
5489
|
} | undefined;
|
|
5478
5490
|
webAppConfig?: {
|
|
5479
5491
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -5483,7 +5495,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
5483
5495
|
} | undefined;
|
|
5484
5496
|
researchConfig?: {
|
|
5485
5497
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
5486
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
5498
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
5487
5499
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
5488
5500
|
hasExperimentTracking?: boolean | undefined;
|
|
5489
5501
|
} | undefined;
|
|
@@ -5551,7 +5563,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
5551
5563
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
5552
5564
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
5553
5565
|
deployTarget: "serverless" | "container" | "long-running";
|
|
5554
|
-
domain: "none" | "fintech";
|
|
5566
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
5555
5567
|
} | undefined;
|
|
5556
5568
|
webAppConfig?: {
|
|
5557
5569
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -5560,7 +5572,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
5560
5572
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
5561
5573
|
} | undefined;
|
|
5562
5574
|
researchConfig?: {
|
|
5563
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
5575
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
5564
5576
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
5565
5577
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
5566
5578
|
hasExperimentTracking: boolean;
|
|
@@ -5629,7 +5641,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
5629
5641
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
5630
5642
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
5631
5643
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
5632
|
-
domain?: "none" | "fintech" | undefined;
|
|
5644
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
5633
5645
|
} | undefined;
|
|
5634
5646
|
webAppConfig?: {
|
|
5635
5647
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -5639,7 +5651,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
5639
5651
|
} | undefined;
|
|
5640
5652
|
researchConfig?: {
|
|
5641
5653
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
5642
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
5654
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
5643
5655
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
5644
5656
|
hasExperimentTracking?: boolean | undefined;
|
|
5645
5657
|
} | undefined;
|
|
@@ -5761,21 +5773,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
5761
5773
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
5762
5774
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
5763
5775
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
5764
|
-
domain: z.ZodDefault<z.
|
|
5776
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
5765
5777
|
}, "strict", z.ZodTypeAny, {
|
|
5766
5778
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
5767
5779
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
5768
5780
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
5769
5781
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
5770
5782
|
deployTarget: "serverless" | "container" | "long-running";
|
|
5771
|
-
domain: "none" | "fintech";
|
|
5783
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
5772
5784
|
}, {
|
|
5773
5785
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
5774
5786
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
5775
5787
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
5776
5788
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
5777
5789
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
5778
|
-
domain?: "none" | "fintech" | undefined;
|
|
5790
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
5779
5791
|
}>>;
|
|
5780
5792
|
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
5781
5793
|
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
@@ -5880,15 +5892,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
5880
5892
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
5881
5893
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
5882
5894
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
5883
|
-
domain: z.ZodDefault<z.
|
|
5895
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
5884
5896
|
}, "strict", z.ZodTypeAny, {
|
|
5885
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
5897
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
5886
5898
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
5887
5899
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
5888
5900
|
hasExperimentTracking: boolean;
|
|
5889
5901
|
}, {
|
|
5890
5902
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
5891
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
5903
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
5892
5904
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
5893
5905
|
hasExperimentTracking?: boolean | undefined;
|
|
5894
5906
|
}>>;
|
|
@@ -5902,21 +5914,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
5902
5914
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
5903
5915
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
5904
5916
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
5905
|
-
domain: z.ZodDefault<z.
|
|
5917
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
5906
5918
|
}, "strict", z.ZodTypeAny, {
|
|
5907
5919
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
5908
5920
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
5909
5921
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
5910
5922
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
5911
5923
|
deployTarget: "serverless" | "container" | "long-running";
|
|
5912
|
-
domain: "none" | "fintech";
|
|
5924
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
5913
5925
|
}, {
|
|
5914
5926
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
5915
5927
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
5916
5928
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
5917
5929
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
5918
5930
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
5919
|
-
domain?: "none" | "fintech" | undefined;
|
|
5931
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
5920
5932
|
}>>;
|
|
5921
5933
|
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
5922
5934
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
@@ -5938,15 +5950,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
5938
5950
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
5939
5951
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
5940
5952
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
5941
|
-
domain: z.ZodDefault<z.
|
|
5953
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
5942
5954
|
}, "strict", z.ZodTypeAny, {
|
|
5943
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
5955
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
5944
5956
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
5945
5957
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
5946
5958
|
hasExperimentTracking: boolean;
|
|
5947
5959
|
}, {
|
|
5948
5960
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
5949
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
5961
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
5950
5962
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
5951
5963
|
hasExperimentTracking?: boolean | undefined;
|
|
5952
5964
|
}>>;
|
|
@@ -6104,7 +6116,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
6104
6116
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
6105
6117
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
6106
6118
|
deployTarget: "serverless" | "container" | "long-running";
|
|
6107
|
-
domain: "none" | "fintech";
|
|
6119
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
6108
6120
|
} | undefined;
|
|
6109
6121
|
webAppConfig?: {
|
|
6110
6122
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -6113,7 +6125,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
6113
6125
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
6114
6126
|
} | undefined;
|
|
6115
6127
|
researchConfig?: {
|
|
6116
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
6128
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
6117
6129
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
6118
6130
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
6119
6131
|
hasExperimentTracking: boolean;
|
|
@@ -6182,7 +6194,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
6182
6194
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
6183
6195
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
6184
6196
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
6185
|
-
domain?: "none" | "fintech" | undefined;
|
|
6197
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
6186
6198
|
} | undefined;
|
|
6187
6199
|
webAppConfig?: {
|
|
6188
6200
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -6192,7 +6204,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
6192
6204
|
} | undefined;
|
|
6193
6205
|
researchConfig?: {
|
|
6194
6206
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
6195
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
6207
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
6196
6208
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
6197
6209
|
hasExperimentTracking?: boolean | undefined;
|
|
6198
6210
|
} | undefined;
|
|
@@ -6260,7 +6272,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
6260
6272
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
6261
6273
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
6262
6274
|
deployTarget: "serverless" | "container" | "long-running";
|
|
6263
|
-
domain: "none" | "fintech";
|
|
6275
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
6264
6276
|
} | undefined;
|
|
6265
6277
|
webAppConfig?: {
|
|
6266
6278
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -6269,7 +6281,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
6269
6281
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
6270
6282
|
} | undefined;
|
|
6271
6283
|
researchConfig?: {
|
|
6272
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
6284
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
6273
6285
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
6274
6286
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
6275
6287
|
hasExperimentTracking: boolean;
|
|
@@ -6338,7 +6350,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
6338
6350
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
6339
6351
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
6340
6352
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
6341
|
-
domain?: "none" | "fintech" | undefined;
|
|
6353
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
6342
6354
|
} | undefined;
|
|
6343
6355
|
webAppConfig?: {
|
|
6344
6356
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -6348,7 +6360,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
6348
6360
|
} | undefined;
|
|
6349
6361
|
researchConfig?: {
|
|
6350
6362
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
6351
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
6363
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
6352
6364
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
6353
6365
|
hasExperimentTracking?: boolean | undefined;
|
|
6354
6366
|
} | undefined;
|
|
@@ -6470,21 +6482,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
6470
6482
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
6471
6483
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
6472
6484
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
6473
|
-
domain: z.ZodDefault<z.
|
|
6485
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
6474
6486
|
}, "strict", z.ZodTypeAny, {
|
|
6475
6487
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
6476
6488
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
6477
6489
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
6478
6490
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
6479
6491
|
deployTarget: "serverless" | "container" | "long-running";
|
|
6480
|
-
domain: "none" | "fintech";
|
|
6492
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
6481
6493
|
}, {
|
|
6482
6494
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
6483
6495
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
6484
6496
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
6485
6497
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
6486
6498
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
6487
|
-
domain?: "none" | "fintech" | undefined;
|
|
6499
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
6488
6500
|
}>>;
|
|
6489
6501
|
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
6490
6502
|
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
@@ -6589,15 +6601,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
6589
6601
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
6590
6602
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
6591
6603
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
6592
|
-
domain: z.ZodDefault<z.
|
|
6604
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
6593
6605
|
}, "strict", z.ZodTypeAny, {
|
|
6594
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
6606
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
6595
6607
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
6596
6608
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
6597
6609
|
hasExperimentTracking: boolean;
|
|
6598
6610
|
}, {
|
|
6599
6611
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
6600
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
6612
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
6601
6613
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
6602
6614
|
hasExperimentTracking?: boolean | undefined;
|
|
6603
6615
|
}>>;
|
|
@@ -6611,21 +6623,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
6611
6623
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
6612
6624
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
6613
6625
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
6614
|
-
domain: z.ZodDefault<z.
|
|
6626
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
6615
6627
|
}, "strict", z.ZodTypeAny, {
|
|
6616
6628
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
6617
6629
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
6618
6630
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
6619
6631
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
6620
6632
|
deployTarget: "serverless" | "container" | "long-running";
|
|
6621
|
-
domain: "none" | "fintech";
|
|
6633
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
6622
6634
|
}, {
|
|
6623
6635
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
6624
6636
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
6625
6637
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
6626
6638
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
6627
6639
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
6628
|
-
domain?: "none" | "fintech" | undefined;
|
|
6640
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
6629
6641
|
}>>;
|
|
6630
6642
|
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
6631
6643
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
@@ -6647,15 +6659,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
6647
6659
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
6648
6660
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
6649
6661
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
6650
|
-
domain: z.ZodDefault<z.
|
|
6662
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
6651
6663
|
}, "strict", z.ZodTypeAny, {
|
|
6652
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
6664
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
6653
6665
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
6654
6666
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
6655
6667
|
hasExperimentTracking: boolean;
|
|
6656
6668
|
}, {
|
|
6657
6669
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
6658
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
6670
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
6659
6671
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
6660
6672
|
hasExperimentTracking?: boolean | undefined;
|
|
6661
6673
|
}>>;
|
|
@@ -6813,7 +6825,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
6813
6825
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
6814
6826
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
6815
6827
|
deployTarget: "serverless" | "container" | "long-running";
|
|
6816
|
-
domain: "none" | "fintech";
|
|
6828
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
6817
6829
|
} | undefined;
|
|
6818
6830
|
webAppConfig?: {
|
|
6819
6831
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -6822,7 +6834,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
6822
6834
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
6823
6835
|
} | undefined;
|
|
6824
6836
|
researchConfig?: {
|
|
6825
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
6837
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
6826
6838
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
6827
6839
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
6828
6840
|
hasExperimentTracking: boolean;
|
|
@@ -6891,7 +6903,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
6891
6903
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
6892
6904
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
6893
6905
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
6894
|
-
domain?: "none" | "fintech" | undefined;
|
|
6906
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
6895
6907
|
} | undefined;
|
|
6896
6908
|
webAppConfig?: {
|
|
6897
6909
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -6901,7 +6913,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
6901
6913
|
} | undefined;
|
|
6902
6914
|
researchConfig?: {
|
|
6903
6915
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
6904
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
6916
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
6905
6917
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
6906
6918
|
hasExperimentTracking?: boolean | undefined;
|
|
6907
6919
|
} | undefined;
|
|
@@ -6969,7 +6981,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
6969
6981
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
6970
6982
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
6971
6983
|
deployTarget: "serverless" | "container" | "long-running";
|
|
6972
|
-
domain: "none" | "fintech";
|
|
6984
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
6973
6985
|
} | undefined;
|
|
6974
6986
|
webAppConfig?: {
|
|
6975
6987
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -6978,7 +6990,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
6978
6990
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
6979
6991
|
} | undefined;
|
|
6980
6992
|
researchConfig?: {
|
|
6981
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
6993
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
6982
6994
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
6983
6995
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
6984
6996
|
hasExperimentTracking: boolean;
|
|
@@ -7047,7 +7059,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
7047
7059
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
7048
7060
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
7049
7061
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
7050
|
-
domain?: "none" | "fintech" | undefined;
|
|
7062
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
7051
7063
|
} | undefined;
|
|
7052
7064
|
webAppConfig?: {
|
|
7053
7065
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -7057,7 +7069,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
7057
7069
|
} | undefined;
|
|
7058
7070
|
researchConfig?: {
|
|
7059
7071
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
7060
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
7072
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
7061
7073
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
7062
7074
|
hasExperimentTracking?: boolean | undefined;
|
|
7063
7075
|
} | undefined;
|
|
@@ -7179,21 +7191,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
7179
7191
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
7180
7192
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
7181
7193
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
7182
|
-
domain: z.ZodDefault<z.
|
|
7194
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
7183
7195
|
}, "strict", z.ZodTypeAny, {
|
|
7184
7196
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
7185
7197
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
7186
7198
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
7187
7199
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
7188
7200
|
deployTarget: "serverless" | "container" | "long-running";
|
|
7189
|
-
domain: "none" | "fintech";
|
|
7201
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
7190
7202
|
}, {
|
|
7191
7203
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
7192
7204
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
7193
7205
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
7194
7206
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
7195
7207
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
7196
|
-
domain?: "none" | "fintech" | undefined;
|
|
7208
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
7197
7209
|
}>>;
|
|
7198
7210
|
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
7199
7211
|
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
@@ -7298,15 +7310,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
7298
7310
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
7299
7311
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
7300
7312
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
7301
|
-
domain: z.ZodDefault<z.
|
|
7313
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
7302
7314
|
}, "strict", z.ZodTypeAny, {
|
|
7303
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
7315
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
7304
7316
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
7305
7317
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
7306
7318
|
hasExperimentTracking: boolean;
|
|
7307
7319
|
}, {
|
|
7308
7320
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
7309
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
7321
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
7310
7322
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
7311
7323
|
hasExperimentTracking?: boolean | undefined;
|
|
7312
7324
|
}>>;
|
|
@@ -7320,21 +7332,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
7320
7332
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
7321
7333
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
7322
7334
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
7323
|
-
domain: z.ZodDefault<z.
|
|
7335
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
7324
7336
|
}, "strict", z.ZodTypeAny, {
|
|
7325
7337
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
7326
7338
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
7327
7339
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
7328
7340
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
7329
7341
|
deployTarget: "serverless" | "container" | "long-running";
|
|
7330
|
-
domain: "none" | "fintech";
|
|
7342
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
7331
7343
|
}, {
|
|
7332
7344
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
7333
7345
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
7334
7346
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
7335
7347
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
7336
7348
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
7337
|
-
domain?: "none" | "fintech" | undefined;
|
|
7349
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
7338
7350
|
}>>;
|
|
7339
7351
|
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
7340
7352
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
@@ -7356,15 +7368,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
7356
7368
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
7357
7369
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
7358
7370
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
7359
|
-
domain: z.ZodDefault<z.
|
|
7371
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
7360
7372
|
}, "strict", z.ZodTypeAny, {
|
|
7361
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
7373
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
7362
7374
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
7363
7375
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
7364
7376
|
hasExperimentTracking: boolean;
|
|
7365
7377
|
}, {
|
|
7366
7378
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
7367
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
7379
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
7368
7380
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
7369
7381
|
hasExperimentTracking?: boolean | undefined;
|
|
7370
7382
|
}>>;
|
|
@@ -7522,7 +7534,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
7522
7534
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
7523
7535
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
7524
7536
|
deployTarget: "serverless" | "container" | "long-running";
|
|
7525
|
-
domain: "none" | "fintech";
|
|
7537
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
7526
7538
|
} | undefined;
|
|
7527
7539
|
webAppConfig?: {
|
|
7528
7540
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -7531,7 +7543,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
7531
7543
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
7532
7544
|
} | undefined;
|
|
7533
7545
|
researchConfig?: {
|
|
7534
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
7546
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
7535
7547
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
7536
7548
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
7537
7549
|
hasExperimentTracking: boolean;
|
|
@@ -7600,7 +7612,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
7600
7612
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
7601
7613
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
7602
7614
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
7603
|
-
domain?: "none" | "fintech" | undefined;
|
|
7615
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
7604
7616
|
} | undefined;
|
|
7605
7617
|
webAppConfig?: {
|
|
7606
7618
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -7610,7 +7622,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
7610
7622
|
} | undefined;
|
|
7611
7623
|
researchConfig?: {
|
|
7612
7624
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
7613
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
7625
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
7614
7626
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
7615
7627
|
hasExperimentTracking?: boolean | undefined;
|
|
7616
7628
|
} | undefined;
|
|
@@ -7678,7 +7690,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
7678
7690
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
7679
7691
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
7680
7692
|
deployTarget: "serverless" | "container" | "long-running";
|
|
7681
|
-
domain: "none" | "fintech";
|
|
7693
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
7682
7694
|
} | undefined;
|
|
7683
7695
|
webAppConfig?: {
|
|
7684
7696
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -7687,7 +7699,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
7687
7699
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
7688
7700
|
} | undefined;
|
|
7689
7701
|
researchConfig?: {
|
|
7690
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
7702
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
7691
7703
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
7692
7704
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
7693
7705
|
hasExperimentTracking: boolean;
|
|
@@ -7756,7 +7768,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
7756
7768
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
7757
7769
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
7758
7770
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
7759
|
-
domain?: "none" | "fintech" | undefined;
|
|
7771
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
7760
7772
|
} | undefined;
|
|
7761
7773
|
webAppConfig?: {
|
|
7762
7774
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -7766,7 +7778,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
7766
7778
|
} | undefined;
|
|
7767
7779
|
researchConfig?: {
|
|
7768
7780
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
7769
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
7781
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
7770
7782
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
7771
7783
|
hasExperimentTracking?: boolean | undefined;
|
|
7772
7784
|
} | undefined;
|
|
@@ -7918,21 +7930,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
7918
7930
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
7919
7931
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
7920
7932
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
7921
|
-
domain: z.ZodDefault<z.
|
|
7933
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
7922
7934
|
}, "strict", z.ZodTypeAny, {
|
|
7923
7935
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
7924
7936
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
7925
7937
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
7926
7938
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
7927
7939
|
deployTarget: "serverless" | "container" | "long-running";
|
|
7928
|
-
domain: "none" | "fintech";
|
|
7940
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
7929
7941
|
}, {
|
|
7930
7942
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
7931
7943
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
7932
7944
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
7933
7945
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
7934
7946
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
7935
|
-
domain?: "none" | "fintech" | undefined;
|
|
7947
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
7936
7948
|
}>>;
|
|
7937
7949
|
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
7938
7950
|
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
@@ -8037,15 +8049,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
8037
8049
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
8038
8050
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
8039
8051
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
8040
|
-
domain: z.ZodDefault<z.
|
|
8052
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
8041
8053
|
}, "strict", z.ZodTypeAny, {
|
|
8042
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
8054
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
8043
8055
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
8044
8056
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
8045
8057
|
hasExperimentTracking: boolean;
|
|
8046
8058
|
}, {
|
|
8047
8059
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
8048
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
8060
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
8049
8061
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
8050
8062
|
hasExperimentTracking?: boolean | undefined;
|
|
8051
8063
|
}>>;
|
|
@@ -8059,21 +8071,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
8059
8071
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
8060
8072
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
8061
8073
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
8062
|
-
domain: z.ZodDefault<z.
|
|
8074
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
8063
8075
|
}, "strict", z.ZodTypeAny, {
|
|
8064
8076
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
8065
8077
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
8066
8078
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
8067
8079
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
8068
8080
|
deployTarget: "serverless" | "container" | "long-running";
|
|
8069
|
-
domain: "none" | "fintech";
|
|
8081
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
8070
8082
|
}, {
|
|
8071
8083
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
8072
8084
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
8073
8085
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
8074
8086
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
8075
8087
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
8076
|
-
domain?: "none" | "fintech" | undefined;
|
|
8088
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
8077
8089
|
}>>;
|
|
8078
8090
|
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
8079
8091
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
@@ -8095,15 +8107,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
8095
8107
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
8096
8108
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
8097
8109
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
8098
|
-
domain: z.ZodDefault<z.
|
|
8110
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
8099
8111
|
}, "strict", z.ZodTypeAny, {
|
|
8100
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
8112
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
8101
8113
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
8102
8114
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
8103
8115
|
hasExperimentTracking: boolean;
|
|
8104
8116
|
}, {
|
|
8105
8117
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
8106
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
8118
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
8107
8119
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
8108
8120
|
hasExperimentTracking?: boolean | undefined;
|
|
8109
8121
|
}>>;
|
|
@@ -8261,7 +8273,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
8261
8273
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
8262
8274
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
8263
8275
|
deployTarget: "serverless" | "container" | "long-running";
|
|
8264
|
-
domain: "none" | "fintech";
|
|
8276
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
8265
8277
|
} | undefined;
|
|
8266
8278
|
webAppConfig?: {
|
|
8267
8279
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -8270,7 +8282,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
8270
8282
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
8271
8283
|
} | undefined;
|
|
8272
8284
|
researchConfig?: {
|
|
8273
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
8285
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
8274
8286
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
8275
8287
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
8276
8288
|
hasExperimentTracking: boolean;
|
|
@@ -8339,7 +8351,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
8339
8351
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
8340
8352
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
8341
8353
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
8342
|
-
domain?: "none" | "fintech" | undefined;
|
|
8354
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
8343
8355
|
} | undefined;
|
|
8344
8356
|
webAppConfig?: {
|
|
8345
8357
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -8349,7 +8361,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
8349
8361
|
} | undefined;
|
|
8350
8362
|
researchConfig?: {
|
|
8351
8363
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
8352
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
8364
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
8353
8365
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
8354
8366
|
hasExperimentTracking?: boolean | undefined;
|
|
8355
8367
|
} | undefined;
|
|
@@ -8417,7 +8429,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
8417
8429
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
8418
8430
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
8419
8431
|
deployTarget: "serverless" | "container" | "long-running";
|
|
8420
|
-
domain: "none" | "fintech";
|
|
8432
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
8421
8433
|
} | undefined;
|
|
8422
8434
|
webAppConfig?: {
|
|
8423
8435
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -8426,7 +8438,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
8426
8438
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
8427
8439
|
} | undefined;
|
|
8428
8440
|
researchConfig?: {
|
|
8429
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
8441
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
8430
8442
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
8431
8443
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
8432
8444
|
hasExperimentTracking: boolean;
|
|
@@ -8495,7 +8507,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
8495
8507
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
8496
8508
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
8497
8509
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
8498
|
-
domain?: "none" | "fintech" | undefined;
|
|
8510
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
8499
8511
|
} | undefined;
|
|
8500
8512
|
webAppConfig?: {
|
|
8501
8513
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -8505,7 +8517,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
8505
8517
|
} | undefined;
|
|
8506
8518
|
researchConfig?: {
|
|
8507
8519
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
8508
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
8520
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
8509
8521
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
8510
8522
|
hasExperimentTracking?: boolean | undefined;
|
|
8511
8523
|
} | undefined;
|
|
@@ -8627,21 +8639,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
8627
8639
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
8628
8640
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
8629
8641
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
8630
|
-
domain: z.ZodDefault<z.
|
|
8642
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
8631
8643
|
}, "strict", z.ZodTypeAny, {
|
|
8632
8644
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
8633
8645
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
8634
8646
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
8635
8647
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
8636
8648
|
deployTarget: "serverless" | "container" | "long-running";
|
|
8637
|
-
domain: "none" | "fintech";
|
|
8649
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
8638
8650
|
}, {
|
|
8639
8651
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
8640
8652
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
8641
8653
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
8642
8654
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
8643
8655
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
8644
|
-
domain?: "none" | "fintech" | undefined;
|
|
8656
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
8645
8657
|
}>>;
|
|
8646
8658
|
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
8647
8659
|
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
@@ -8746,15 +8758,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
8746
8758
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
8747
8759
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
8748
8760
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
8749
|
-
domain: z.ZodDefault<z.
|
|
8761
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
8750
8762
|
}, "strict", z.ZodTypeAny, {
|
|
8751
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
8763
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
8752
8764
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
8753
8765
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
8754
8766
|
hasExperimentTracking: boolean;
|
|
8755
8767
|
}, {
|
|
8756
8768
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
8757
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
8769
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
8758
8770
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
8759
8771
|
hasExperimentTracking?: boolean | undefined;
|
|
8760
8772
|
}>>;
|
|
@@ -8768,21 +8780,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
8768
8780
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
8769
8781
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
8770
8782
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
8771
|
-
domain: z.ZodDefault<z.
|
|
8783
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
8772
8784
|
}, "strict", z.ZodTypeAny, {
|
|
8773
8785
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
8774
8786
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
8775
8787
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
8776
8788
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
8777
8789
|
deployTarget: "serverless" | "container" | "long-running";
|
|
8778
|
-
domain: "none" | "fintech";
|
|
8790
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
8779
8791
|
}, {
|
|
8780
8792
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
8781
8793
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
8782
8794
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
8783
8795
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
8784
8796
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
8785
|
-
domain?: "none" | "fintech" | undefined;
|
|
8797
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
8786
8798
|
}>>;
|
|
8787
8799
|
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
8788
8800
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
@@ -8804,15 +8816,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
8804
8816
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
8805
8817
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
8806
8818
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
8807
|
-
domain: z.ZodDefault<z.
|
|
8819
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
8808
8820
|
}, "strict", z.ZodTypeAny, {
|
|
8809
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
8821
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
8810
8822
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
8811
8823
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
8812
8824
|
hasExperimentTracking: boolean;
|
|
8813
8825
|
}, {
|
|
8814
8826
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
8815
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
8827
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
8816
8828
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
8817
8829
|
hasExperimentTracking?: boolean | undefined;
|
|
8818
8830
|
}>>;
|
|
@@ -8970,7 +8982,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
8970
8982
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
8971
8983
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
8972
8984
|
deployTarget: "serverless" | "container" | "long-running";
|
|
8973
|
-
domain: "none" | "fintech";
|
|
8985
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
8974
8986
|
} | undefined;
|
|
8975
8987
|
webAppConfig?: {
|
|
8976
8988
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -8979,7 +8991,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
8979
8991
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
8980
8992
|
} | undefined;
|
|
8981
8993
|
researchConfig?: {
|
|
8982
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
8994
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
8983
8995
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
8984
8996
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
8985
8997
|
hasExperimentTracking: boolean;
|
|
@@ -9048,7 +9060,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
9048
9060
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
9049
9061
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
9050
9062
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
9051
|
-
domain?: "none" | "fintech" | undefined;
|
|
9063
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
9052
9064
|
} | undefined;
|
|
9053
9065
|
webAppConfig?: {
|
|
9054
9066
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -9058,7 +9070,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
9058
9070
|
} | undefined;
|
|
9059
9071
|
researchConfig?: {
|
|
9060
9072
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
9061
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
9073
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
9062
9074
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
9063
9075
|
hasExperimentTracking?: boolean | undefined;
|
|
9064
9076
|
} | undefined;
|
|
@@ -9126,7 +9138,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
9126
9138
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
9127
9139
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
9128
9140
|
deployTarget: "serverless" | "container" | "long-running";
|
|
9129
|
-
domain: "none" | "fintech";
|
|
9141
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
9130
9142
|
} | undefined;
|
|
9131
9143
|
webAppConfig?: {
|
|
9132
9144
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -9135,7 +9147,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
9135
9147
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
9136
9148
|
} | undefined;
|
|
9137
9149
|
researchConfig?: {
|
|
9138
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
9150
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
9139
9151
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
9140
9152
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
9141
9153
|
hasExperimentTracking: boolean;
|
|
@@ -9204,7 +9216,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
9204
9216
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
9205
9217
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
9206
9218
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
9207
|
-
domain?: "none" | "fintech" | undefined;
|
|
9219
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
9208
9220
|
} | undefined;
|
|
9209
9221
|
webAppConfig?: {
|
|
9210
9222
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -9214,7 +9226,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
9214
9226
|
} | undefined;
|
|
9215
9227
|
researchConfig?: {
|
|
9216
9228
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
9217
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
9229
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
9218
9230
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
9219
9231
|
hasExperimentTracking?: boolean | undefined;
|
|
9220
9232
|
} | undefined;
|
|
@@ -9336,21 +9348,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
9336
9348
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
9337
9349
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
9338
9350
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
9339
|
-
domain: z.ZodDefault<z.
|
|
9351
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
9340
9352
|
}, "strict", z.ZodTypeAny, {
|
|
9341
9353
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
9342
9354
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
9343
9355
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
9344
9356
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
9345
9357
|
deployTarget: "serverless" | "container" | "long-running";
|
|
9346
|
-
domain: "none" | "fintech";
|
|
9358
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
9347
9359
|
}, {
|
|
9348
9360
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
9349
9361
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
9350
9362
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
9351
9363
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
9352
9364
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
9353
|
-
domain?: "none" | "fintech" | undefined;
|
|
9365
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
9354
9366
|
}>>;
|
|
9355
9367
|
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
9356
9368
|
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
@@ -9455,15 +9467,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
9455
9467
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
9456
9468
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
9457
9469
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
9458
|
-
domain: z.ZodDefault<z.
|
|
9470
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
9459
9471
|
}, "strict", z.ZodTypeAny, {
|
|
9460
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
9472
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
9461
9473
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
9462
9474
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
9463
9475
|
hasExperimentTracking: boolean;
|
|
9464
9476
|
}, {
|
|
9465
9477
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
9466
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
9478
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
9467
9479
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
9468
9480
|
hasExperimentTracking?: boolean | undefined;
|
|
9469
9481
|
}>>;
|
|
@@ -9477,21 +9489,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
9477
9489
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
9478
9490
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
9479
9491
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
9480
|
-
domain: z.ZodDefault<z.
|
|
9492
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
9481
9493
|
}, "strict", z.ZodTypeAny, {
|
|
9482
9494
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
9483
9495
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
9484
9496
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
9485
9497
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
9486
9498
|
deployTarget: "serverless" | "container" | "long-running";
|
|
9487
|
-
domain: "none" | "fintech";
|
|
9499
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
9488
9500
|
}, {
|
|
9489
9501
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
9490
9502
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
9491
9503
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
9492
9504
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
9493
9505
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
9494
|
-
domain?: "none" | "fintech" | undefined;
|
|
9506
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
9495
9507
|
}>>;
|
|
9496
9508
|
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
9497
9509
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
@@ -9513,15 +9525,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
9513
9525
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
9514
9526
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
9515
9527
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
9516
|
-
domain: z.ZodDefault<z.
|
|
9528
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
9517
9529
|
}, "strict", z.ZodTypeAny, {
|
|
9518
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
9530
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
9519
9531
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
9520
9532
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
9521
9533
|
hasExperimentTracking: boolean;
|
|
9522
9534
|
}, {
|
|
9523
9535
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
9524
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
9536
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
9525
9537
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
9526
9538
|
hasExperimentTracking?: boolean | undefined;
|
|
9527
9539
|
}>>;
|
|
@@ -9679,7 +9691,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
9679
9691
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
9680
9692
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
9681
9693
|
deployTarget: "serverless" | "container" | "long-running";
|
|
9682
|
-
domain: "none" | "fintech";
|
|
9694
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
9683
9695
|
} | undefined;
|
|
9684
9696
|
webAppConfig?: {
|
|
9685
9697
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -9688,7 +9700,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
9688
9700
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
9689
9701
|
} | undefined;
|
|
9690
9702
|
researchConfig?: {
|
|
9691
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
9703
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
9692
9704
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
9693
9705
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
9694
9706
|
hasExperimentTracking: boolean;
|
|
@@ -9757,7 +9769,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
9757
9769
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
9758
9770
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
9759
9771
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
9760
|
-
domain?: "none" | "fintech" | undefined;
|
|
9772
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
9761
9773
|
} | undefined;
|
|
9762
9774
|
webAppConfig?: {
|
|
9763
9775
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -9767,7 +9779,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
9767
9779
|
} | undefined;
|
|
9768
9780
|
researchConfig?: {
|
|
9769
9781
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
9770
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
9782
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
9771
9783
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
9772
9784
|
hasExperimentTracking?: boolean | undefined;
|
|
9773
9785
|
} | undefined;
|
|
@@ -9835,7 +9847,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
9835
9847
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
9836
9848
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
9837
9849
|
deployTarget: "serverless" | "container" | "long-running";
|
|
9838
|
-
domain: "none" | "fintech";
|
|
9850
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
9839
9851
|
} | undefined;
|
|
9840
9852
|
webAppConfig?: {
|
|
9841
9853
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -9844,7 +9856,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
9844
9856
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
9845
9857
|
} | undefined;
|
|
9846
9858
|
researchConfig?: {
|
|
9847
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
9859
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
9848
9860
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
9849
9861
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
9850
9862
|
hasExperimentTracking: boolean;
|
|
@@ -9913,7 +9925,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
9913
9925
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
9914
9926
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
9915
9927
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
9916
|
-
domain?: "none" | "fintech" | undefined;
|
|
9928
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
9917
9929
|
} | undefined;
|
|
9918
9930
|
webAppConfig?: {
|
|
9919
9931
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -9923,7 +9935,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
9923
9935
|
} | undefined;
|
|
9924
9936
|
researchConfig?: {
|
|
9925
9937
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
9926
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
9938
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
9927
9939
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
9928
9940
|
hasExperimentTracking?: boolean | undefined;
|
|
9929
9941
|
} | undefined;
|
|
@@ -10045,21 +10057,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
10045
10057
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
10046
10058
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
10047
10059
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
10048
|
-
domain: z.ZodDefault<z.
|
|
10060
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
10049
10061
|
}, "strict", z.ZodTypeAny, {
|
|
10050
10062
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
10051
10063
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
10052
10064
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
10053
10065
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
10054
10066
|
deployTarget: "serverless" | "container" | "long-running";
|
|
10055
|
-
domain: "none" | "fintech";
|
|
10067
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
10056
10068
|
}, {
|
|
10057
10069
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
10058
10070
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
10059
10071
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
10060
10072
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
10061
10073
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
10062
|
-
domain?: "none" | "fintech" | undefined;
|
|
10074
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
10063
10075
|
}>>;
|
|
10064
10076
|
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
10065
10077
|
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
@@ -10164,15 +10176,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
10164
10176
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
10165
10177
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
10166
10178
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
10167
|
-
domain: z.ZodDefault<z.
|
|
10179
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
10168
10180
|
}, "strict", z.ZodTypeAny, {
|
|
10169
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
10181
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
10170
10182
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
10171
10183
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
10172
10184
|
hasExperimentTracking: boolean;
|
|
10173
10185
|
}, {
|
|
10174
10186
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
10175
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
10187
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
10176
10188
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
10177
10189
|
hasExperimentTracking?: boolean | undefined;
|
|
10178
10190
|
}>>;
|
|
@@ -10186,21 +10198,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
10186
10198
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
10187
10199
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
10188
10200
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
10189
|
-
domain: z.ZodDefault<z.
|
|
10201
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
10190
10202
|
}, "strict", z.ZodTypeAny, {
|
|
10191
10203
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
10192
10204
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
10193
10205
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
10194
10206
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
10195
10207
|
deployTarget: "serverless" | "container" | "long-running";
|
|
10196
|
-
domain: "none" | "fintech";
|
|
10208
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
10197
10209
|
}, {
|
|
10198
10210
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
10199
10211
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
10200
10212
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
10201
10213
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
10202
10214
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
10203
|
-
domain?: "none" | "fintech" | undefined;
|
|
10215
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
10204
10216
|
}>>;
|
|
10205
10217
|
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
10206
10218
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
@@ -10222,15 +10234,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
10222
10234
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
10223
10235
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
10224
10236
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
10225
|
-
domain: z.ZodDefault<z.
|
|
10237
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
10226
10238
|
}, "strict", z.ZodTypeAny, {
|
|
10227
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
10239
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
10228
10240
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
10229
10241
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
10230
10242
|
hasExperimentTracking: boolean;
|
|
10231
10243
|
}, {
|
|
10232
10244
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
10233
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
10245
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
10234
10246
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
10235
10247
|
hasExperimentTracking?: boolean | undefined;
|
|
10236
10248
|
}>>;
|
|
@@ -10388,7 +10400,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
10388
10400
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
10389
10401
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
10390
10402
|
deployTarget: "serverless" | "container" | "long-running";
|
|
10391
|
-
domain: "none" | "fintech";
|
|
10403
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
10392
10404
|
} | undefined;
|
|
10393
10405
|
webAppConfig?: {
|
|
10394
10406
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -10397,7 +10409,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
10397
10409
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
10398
10410
|
} | undefined;
|
|
10399
10411
|
researchConfig?: {
|
|
10400
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
10412
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
10401
10413
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
10402
10414
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
10403
10415
|
hasExperimentTracking: boolean;
|
|
@@ -10466,7 +10478,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
10466
10478
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
10467
10479
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
10468
10480
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
10469
|
-
domain?: "none" | "fintech" | undefined;
|
|
10481
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
10470
10482
|
} | undefined;
|
|
10471
10483
|
webAppConfig?: {
|
|
10472
10484
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -10476,7 +10488,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
10476
10488
|
} | undefined;
|
|
10477
10489
|
researchConfig?: {
|
|
10478
10490
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
10479
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
10491
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
10480
10492
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
10481
10493
|
hasExperimentTracking?: boolean | undefined;
|
|
10482
10494
|
} | undefined;
|
|
@@ -10544,7 +10556,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
10544
10556
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
10545
10557
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
10546
10558
|
deployTarget: "serverless" | "container" | "long-running";
|
|
10547
|
-
domain: "none" | "fintech";
|
|
10559
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
10548
10560
|
} | undefined;
|
|
10549
10561
|
webAppConfig?: {
|
|
10550
10562
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -10553,7 +10565,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
10553
10565
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
10554
10566
|
} | undefined;
|
|
10555
10567
|
researchConfig?: {
|
|
10556
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
10568
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
10557
10569
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
10558
10570
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
10559
10571
|
hasExperimentTracking: boolean;
|
|
@@ -10622,7 +10634,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
10622
10634
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
10623
10635
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
10624
10636
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
10625
|
-
domain?: "none" | "fintech" | undefined;
|
|
10637
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
10626
10638
|
} | undefined;
|
|
10627
10639
|
webAppConfig?: {
|
|
10628
10640
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -10632,7 +10644,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
10632
10644
|
} | undefined;
|
|
10633
10645
|
researchConfig?: {
|
|
10634
10646
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
10635
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
10647
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
10636
10648
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
10637
10649
|
hasExperimentTracking?: boolean | undefined;
|
|
10638
10650
|
} | undefined;
|
|
@@ -10754,21 +10766,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
10754
10766
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
10755
10767
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
10756
10768
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
10757
|
-
domain: z.ZodDefault<z.
|
|
10769
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
10758
10770
|
}, "strict", z.ZodTypeAny, {
|
|
10759
10771
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
10760
10772
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
10761
10773
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
10762
10774
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
10763
10775
|
deployTarget: "serverless" | "container" | "long-running";
|
|
10764
|
-
domain: "none" | "fintech";
|
|
10776
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
10765
10777
|
}, {
|
|
10766
10778
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
10767
10779
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
10768
10780
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
10769
10781
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
10770
10782
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
10771
|
-
domain?: "none" | "fintech" | undefined;
|
|
10783
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
10772
10784
|
}>>;
|
|
10773
10785
|
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
10774
10786
|
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
@@ -10873,15 +10885,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
10873
10885
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
10874
10886
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
10875
10887
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
10876
|
-
domain: z.ZodDefault<z.
|
|
10888
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
10877
10889
|
}, "strict", z.ZodTypeAny, {
|
|
10878
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
10890
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
10879
10891
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
10880
10892
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
10881
10893
|
hasExperimentTracking: boolean;
|
|
10882
10894
|
}, {
|
|
10883
10895
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
10884
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
10896
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
10885
10897
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
10886
10898
|
hasExperimentTracking?: boolean | undefined;
|
|
10887
10899
|
}>>;
|
|
@@ -10895,21 +10907,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
10895
10907
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
10896
10908
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
10897
10909
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
10898
|
-
domain: z.ZodDefault<z.
|
|
10910
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
10899
10911
|
}, "strict", z.ZodTypeAny, {
|
|
10900
10912
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
10901
10913
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
10902
10914
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
10903
10915
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
10904
10916
|
deployTarget: "serverless" | "container" | "long-running";
|
|
10905
|
-
domain: "none" | "fintech";
|
|
10917
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
10906
10918
|
}, {
|
|
10907
10919
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
10908
10920
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
10909
10921
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
10910
10922
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
10911
10923
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
10912
|
-
domain?: "none" | "fintech" | undefined;
|
|
10924
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
10913
10925
|
}>>;
|
|
10914
10926
|
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
10915
10927
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
@@ -10931,15 +10943,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
10931
10943
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
10932
10944
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
10933
10945
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
10934
|
-
domain: z.ZodDefault<z.
|
|
10946
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
10935
10947
|
}, "strict", z.ZodTypeAny, {
|
|
10936
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
10948
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
10937
10949
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
10938
10950
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
10939
10951
|
hasExperimentTracking: boolean;
|
|
10940
10952
|
}, {
|
|
10941
10953
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
10942
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
10954
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
10943
10955
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
10944
10956
|
hasExperimentTracking?: boolean | undefined;
|
|
10945
10957
|
}>>;
|
|
@@ -11097,7 +11109,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
11097
11109
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
11098
11110
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
11099
11111
|
deployTarget: "serverless" | "container" | "long-running";
|
|
11100
|
-
domain: "none" | "fintech";
|
|
11112
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
11101
11113
|
} | undefined;
|
|
11102
11114
|
webAppConfig?: {
|
|
11103
11115
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -11106,7 +11118,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
11106
11118
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
11107
11119
|
} | undefined;
|
|
11108
11120
|
researchConfig?: {
|
|
11109
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
11121
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
11110
11122
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
11111
11123
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
11112
11124
|
hasExperimentTracking: boolean;
|
|
@@ -11175,7 +11187,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
11175
11187
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
11176
11188
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
11177
11189
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
11178
|
-
domain?: "none" | "fintech" | undefined;
|
|
11190
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
11179
11191
|
} | undefined;
|
|
11180
11192
|
webAppConfig?: {
|
|
11181
11193
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -11185,7 +11197,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
11185
11197
|
} | undefined;
|
|
11186
11198
|
researchConfig?: {
|
|
11187
11199
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
11188
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
11200
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
11189
11201
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
11190
11202
|
hasExperimentTracking?: boolean | undefined;
|
|
11191
11203
|
} | undefined;
|
|
@@ -11253,7 +11265,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
11253
11265
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
11254
11266
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
11255
11267
|
deployTarget: "serverless" | "container" | "long-running";
|
|
11256
|
-
domain: "none" | "fintech";
|
|
11268
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
11257
11269
|
} | undefined;
|
|
11258
11270
|
webAppConfig?: {
|
|
11259
11271
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -11262,7 +11274,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
11262
11274
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
11263
11275
|
} | undefined;
|
|
11264
11276
|
researchConfig?: {
|
|
11265
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
11277
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
11266
11278
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
11267
11279
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
11268
11280
|
hasExperimentTracking: boolean;
|
|
@@ -11331,7 +11343,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
11331
11343
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
11332
11344
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
11333
11345
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
11334
|
-
domain?: "none" | "fintech" | undefined;
|
|
11346
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
11335
11347
|
} | undefined;
|
|
11336
11348
|
webAppConfig?: {
|
|
11337
11349
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -11341,7 +11353,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
11341
11353
|
} | undefined;
|
|
11342
11354
|
researchConfig?: {
|
|
11343
11355
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
11344
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
11356
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
11345
11357
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
11346
11358
|
hasExperimentTracking?: boolean | undefined;
|
|
11347
11359
|
} | undefined;
|
|
@@ -11493,21 +11505,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
11493
11505
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
11494
11506
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
11495
11507
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
11496
|
-
domain: z.ZodDefault<z.
|
|
11508
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
11497
11509
|
}, "strict", z.ZodTypeAny, {
|
|
11498
11510
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
11499
11511
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
11500
11512
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
11501
11513
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
11502
11514
|
deployTarget: "serverless" | "container" | "long-running";
|
|
11503
|
-
domain: "none" | "fintech";
|
|
11515
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
11504
11516
|
}, {
|
|
11505
11517
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
11506
11518
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
11507
11519
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
11508
11520
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
11509
11521
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
11510
|
-
domain?: "none" | "fintech" | undefined;
|
|
11522
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
11511
11523
|
}>>;
|
|
11512
11524
|
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
11513
11525
|
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
@@ -11612,15 +11624,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
11612
11624
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
11613
11625
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
11614
11626
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
11615
|
-
domain: z.ZodDefault<z.
|
|
11627
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
11616
11628
|
}, "strict", z.ZodTypeAny, {
|
|
11617
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
11629
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
11618
11630
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
11619
11631
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
11620
11632
|
hasExperimentTracking: boolean;
|
|
11621
11633
|
}, {
|
|
11622
11634
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
11623
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
11635
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
11624
11636
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
11625
11637
|
hasExperimentTracking?: boolean | undefined;
|
|
11626
11638
|
}>>;
|
|
@@ -11634,21 +11646,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
11634
11646
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
11635
11647
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
11636
11648
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
11637
|
-
domain: z.ZodDefault<z.
|
|
11649
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
11638
11650
|
}, "strict", z.ZodTypeAny, {
|
|
11639
11651
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
11640
11652
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
11641
11653
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
11642
11654
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
11643
11655
|
deployTarget: "serverless" | "container" | "long-running";
|
|
11644
|
-
domain: "none" | "fintech";
|
|
11656
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
11645
11657
|
}, {
|
|
11646
11658
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
11647
11659
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
11648
11660
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
11649
11661
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
11650
11662
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
11651
|
-
domain?: "none" | "fintech" | undefined;
|
|
11663
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
11652
11664
|
}>>;
|
|
11653
11665
|
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
11654
11666
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
@@ -11670,15 +11682,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
11670
11682
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
11671
11683
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
11672
11684
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
11673
|
-
domain: z.ZodDefault<z.
|
|
11685
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
11674
11686
|
}, "strict", z.ZodTypeAny, {
|
|
11675
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
11687
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
11676
11688
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
11677
11689
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
11678
11690
|
hasExperimentTracking: boolean;
|
|
11679
11691
|
}, {
|
|
11680
11692
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
11681
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
11693
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
11682
11694
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
11683
11695
|
hasExperimentTracking?: boolean | undefined;
|
|
11684
11696
|
}>>;
|
|
@@ -11836,7 +11848,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
11836
11848
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
11837
11849
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
11838
11850
|
deployTarget: "serverless" | "container" | "long-running";
|
|
11839
|
-
domain: "none" | "fintech";
|
|
11851
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
11840
11852
|
} | undefined;
|
|
11841
11853
|
webAppConfig?: {
|
|
11842
11854
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -11845,7 +11857,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
11845
11857
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
11846
11858
|
} | undefined;
|
|
11847
11859
|
researchConfig?: {
|
|
11848
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
11860
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
11849
11861
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
11850
11862
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
11851
11863
|
hasExperimentTracking: boolean;
|
|
@@ -11914,7 +11926,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
11914
11926
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
11915
11927
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
11916
11928
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
11917
|
-
domain?: "none" | "fintech" | undefined;
|
|
11929
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
11918
11930
|
} | undefined;
|
|
11919
11931
|
webAppConfig?: {
|
|
11920
11932
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -11924,7 +11936,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
11924
11936
|
} | undefined;
|
|
11925
11937
|
researchConfig?: {
|
|
11926
11938
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
11927
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
11939
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
11928
11940
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
11929
11941
|
hasExperimentTracking?: boolean | undefined;
|
|
11930
11942
|
} | undefined;
|
|
@@ -11992,7 +12004,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
11992
12004
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
11993
12005
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
11994
12006
|
deployTarget: "serverless" | "container" | "long-running";
|
|
11995
|
-
domain: "none" | "fintech";
|
|
12007
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
11996
12008
|
} | undefined;
|
|
11997
12009
|
webAppConfig?: {
|
|
11998
12010
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -12001,7 +12013,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
12001
12013
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
12002
12014
|
} | undefined;
|
|
12003
12015
|
researchConfig?: {
|
|
12004
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
12016
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
12005
12017
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
12006
12018
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
12007
12019
|
hasExperimentTracking: boolean;
|
|
@@ -12070,7 +12082,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
12070
12082
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
12071
12083
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
12072
12084
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
12073
|
-
domain?: "none" | "fintech" | undefined;
|
|
12085
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
12074
12086
|
} | undefined;
|
|
12075
12087
|
webAppConfig?: {
|
|
12076
12088
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -12080,7 +12092,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
12080
12092
|
} | undefined;
|
|
12081
12093
|
researchConfig?: {
|
|
12082
12094
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
12083
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
12095
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
12084
12096
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
12085
12097
|
hasExperimentTracking?: boolean | undefined;
|
|
12086
12098
|
} | undefined;
|
|
@@ -12202,21 +12214,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
12202
12214
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
12203
12215
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
12204
12216
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
12205
|
-
domain: z.ZodDefault<z.
|
|
12217
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
12206
12218
|
}, "strict", z.ZodTypeAny, {
|
|
12207
12219
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
12208
12220
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
12209
12221
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
12210
12222
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
12211
12223
|
deployTarget: "serverless" | "container" | "long-running";
|
|
12212
|
-
domain: "none" | "fintech";
|
|
12224
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
12213
12225
|
}, {
|
|
12214
12226
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
12215
12227
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
12216
12228
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
12217
12229
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
12218
12230
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
12219
|
-
domain?: "none" | "fintech" | undefined;
|
|
12231
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
12220
12232
|
}>>;
|
|
12221
12233
|
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
12222
12234
|
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
@@ -12321,15 +12333,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
12321
12333
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
12322
12334
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
12323
12335
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
12324
|
-
domain: z.ZodDefault<z.
|
|
12336
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
12325
12337
|
}, "strict", z.ZodTypeAny, {
|
|
12326
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
12338
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
12327
12339
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
12328
12340
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
12329
12341
|
hasExperimentTracking: boolean;
|
|
12330
12342
|
}, {
|
|
12331
12343
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
12332
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
12344
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
12333
12345
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
12334
12346
|
hasExperimentTracking?: boolean | undefined;
|
|
12335
12347
|
}>>;
|
|
@@ -12343,21 +12355,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
12343
12355
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
12344
12356
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
12345
12357
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
12346
|
-
domain: z.ZodDefault<z.
|
|
12358
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
12347
12359
|
}, "strict", z.ZodTypeAny, {
|
|
12348
12360
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
12349
12361
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
12350
12362
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
12351
12363
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
12352
12364
|
deployTarget: "serverless" | "container" | "long-running";
|
|
12353
|
-
domain: "none" | "fintech";
|
|
12365
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
12354
12366
|
}, {
|
|
12355
12367
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
12356
12368
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
12357
12369
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
12358
12370
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
12359
12371
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
12360
|
-
domain?: "none" | "fintech" | undefined;
|
|
12372
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
12361
12373
|
}>>;
|
|
12362
12374
|
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
12363
12375
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
@@ -12379,15 +12391,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
12379
12391
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
12380
12392
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
12381
12393
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
12382
|
-
domain: z.ZodDefault<z.
|
|
12394
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
12383
12395
|
}, "strict", z.ZodTypeAny, {
|
|
12384
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
12396
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
12385
12397
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
12386
12398
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
12387
12399
|
hasExperimentTracking: boolean;
|
|
12388
12400
|
}, {
|
|
12389
12401
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
12390
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
12402
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
12391
12403
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
12392
12404
|
hasExperimentTracking?: boolean | undefined;
|
|
12393
12405
|
}>>;
|
|
@@ -12545,7 +12557,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
12545
12557
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
12546
12558
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
12547
12559
|
deployTarget: "serverless" | "container" | "long-running";
|
|
12548
|
-
domain: "none" | "fintech";
|
|
12560
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
12549
12561
|
} | undefined;
|
|
12550
12562
|
webAppConfig?: {
|
|
12551
12563
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -12554,7 +12566,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
12554
12566
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
12555
12567
|
} | undefined;
|
|
12556
12568
|
researchConfig?: {
|
|
12557
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
12569
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
12558
12570
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
12559
12571
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
12560
12572
|
hasExperimentTracking: boolean;
|
|
@@ -12623,7 +12635,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
12623
12635
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
12624
12636
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
12625
12637
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
12626
|
-
domain?: "none" | "fintech" | undefined;
|
|
12638
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
12627
12639
|
} | undefined;
|
|
12628
12640
|
webAppConfig?: {
|
|
12629
12641
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -12633,7 +12645,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
12633
12645
|
} | undefined;
|
|
12634
12646
|
researchConfig?: {
|
|
12635
12647
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
12636
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
12648
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
12637
12649
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
12638
12650
|
hasExperimentTracking?: boolean | undefined;
|
|
12639
12651
|
} | undefined;
|
|
@@ -12701,7 +12713,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
12701
12713
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
12702
12714
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
12703
12715
|
deployTarget: "serverless" | "container" | "long-running";
|
|
12704
|
-
domain: "none" | "fintech";
|
|
12716
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
12705
12717
|
} | undefined;
|
|
12706
12718
|
webAppConfig?: {
|
|
12707
12719
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -12710,7 +12722,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
12710
12722
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
12711
12723
|
} | undefined;
|
|
12712
12724
|
researchConfig?: {
|
|
12713
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
12725
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
12714
12726
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
12715
12727
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
12716
12728
|
hasExperimentTracking: boolean;
|
|
@@ -12779,7 +12791,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
12779
12791
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
12780
12792
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
12781
12793
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
12782
|
-
domain?: "none" | "fintech" | undefined;
|
|
12794
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
12783
12795
|
} | undefined;
|
|
12784
12796
|
webAppConfig?: {
|
|
12785
12797
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -12789,7 +12801,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
12789
12801
|
} | undefined;
|
|
12790
12802
|
researchConfig?: {
|
|
12791
12803
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
12792
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
12804
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
12793
12805
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
12794
12806
|
hasExperimentTracking?: boolean | undefined;
|
|
12795
12807
|
} | undefined;
|
|
@@ -12911,21 +12923,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
12911
12923
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
12912
12924
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
12913
12925
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
12914
|
-
domain: z.ZodDefault<z.
|
|
12926
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
12915
12927
|
}, "strict", z.ZodTypeAny, {
|
|
12916
12928
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
12917
12929
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
12918
12930
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
12919
12931
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
12920
12932
|
deployTarget: "serverless" | "container" | "long-running";
|
|
12921
|
-
domain: "none" | "fintech";
|
|
12933
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
12922
12934
|
}, {
|
|
12923
12935
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
12924
12936
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
12925
12937
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
12926
12938
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
12927
12939
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
12928
|
-
domain?: "none" | "fintech" | undefined;
|
|
12940
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
12929
12941
|
}>>;
|
|
12930
12942
|
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
12931
12943
|
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
@@ -13030,15 +13042,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
13030
13042
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
13031
13043
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
13032
13044
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
13033
|
-
domain: z.ZodDefault<z.
|
|
13045
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
13034
13046
|
}, "strict", z.ZodTypeAny, {
|
|
13035
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
13047
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
13036
13048
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
13037
13049
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
13038
13050
|
hasExperimentTracking: boolean;
|
|
13039
13051
|
}, {
|
|
13040
13052
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
13041
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
13053
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
13042
13054
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
13043
13055
|
hasExperimentTracking?: boolean | undefined;
|
|
13044
13056
|
}>>;
|
|
@@ -13052,21 +13064,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
13052
13064
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
13053
13065
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
13054
13066
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
13055
|
-
domain: z.ZodDefault<z.
|
|
13067
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
13056
13068
|
}, "strict", z.ZodTypeAny, {
|
|
13057
13069
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
13058
13070
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
13059
13071
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
13060
13072
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
13061
13073
|
deployTarget: "serverless" | "container" | "long-running";
|
|
13062
|
-
domain: "none" | "fintech";
|
|
13074
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
13063
13075
|
}, {
|
|
13064
13076
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
13065
13077
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
13066
13078
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
13067
13079
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
13068
13080
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
13069
|
-
domain?: "none" | "fintech" | undefined;
|
|
13081
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
13070
13082
|
}>>;
|
|
13071
13083
|
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
13072
13084
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
@@ -13088,15 +13100,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
13088
13100
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
13089
13101
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
13090
13102
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
13091
|
-
domain: z.ZodDefault<z.
|
|
13103
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
13092
13104
|
}, "strict", z.ZodTypeAny, {
|
|
13093
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
13105
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
13094
13106
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
13095
13107
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
13096
13108
|
hasExperimentTracking: boolean;
|
|
13097
13109
|
}, {
|
|
13098
13110
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
13099
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
13111
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
13100
13112
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
13101
13113
|
hasExperimentTracking?: boolean | undefined;
|
|
13102
13114
|
}>>;
|
|
@@ -13254,7 +13266,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
13254
13266
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
13255
13267
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
13256
13268
|
deployTarget: "serverless" | "container" | "long-running";
|
|
13257
|
-
domain: "none" | "fintech";
|
|
13269
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
13258
13270
|
} | undefined;
|
|
13259
13271
|
webAppConfig?: {
|
|
13260
13272
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -13263,7 +13275,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
13263
13275
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
13264
13276
|
} | undefined;
|
|
13265
13277
|
researchConfig?: {
|
|
13266
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
13278
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
13267
13279
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
13268
13280
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
13269
13281
|
hasExperimentTracking: boolean;
|
|
@@ -13332,7 +13344,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
13332
13344
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
13333
13345
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
13334
13346
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
13335
|
-
domain?: "none" | "fintech" | undefined;
|
|
13347
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
13336
13348
|
} | undefined;
|
|
13337
13349
|
webAppConfig?: {
|
|
13338
13350
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -13342,7 +13354,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
13342
13354
|
} | undefined;
|
|
13343
13355
|
researchConfig?: {
|
|
13344
13356
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
13345
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
13357
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
13346
13358
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
13347
13359
|
hasExperimentTracking?: boolean | undefined;
|
|
13348
13360
|
} | undefined;
|
|
@@ -13410,7 +13422,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
13410
13422
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
13411
13423
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
13412
13424
|
deployTarget: "serverless" | "container" | "long-running";
|
|
13413
|
-
domain: "none" | "fintech";
|
|
13425
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
13414
13426
|
} | undefined;
|
|
13415
13427
|
webAppConfig?: {
|
|
13416
13428
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -13419,7 +13431,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
13419
13431
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
13420
13432
|
} | undefined;
|
|
13421
13433
|
researchConfig?: {
|
|
13422
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
13434
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
13423
13435
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
13424
13436
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
13425
13437
|
hasExperimentTracking: boolean;
|
|
@@ -13488,7 +13500,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
13488
13500
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
13489
13501
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
13490
13502
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
13491
|
-
domain?: "none" | "fintech" | undefined;
|
|
13503
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
13492
13504
|
} | undefined;
|
|
13493
13505
|
webAppConfig?: {
|
|
13494
13506
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -13498,7 +13510,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
13498
13510
|
} | undefined;
|
|
13499
13511
|
researchConfig?: {
|
|
13500
13512
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
13501
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
13513
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
13502
13514
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
13503
13515
|
hasExperimentTracking?: boolean | undefined;
|
|
13504
13516
|
} | undefined;
|
|
@@ -13620,21 +13632,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
13620
13632
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
13621
13633
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
13622
13634
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
13623
|
-
domain: z.ZodDefault<z.
|
|
13635
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
13624
13636
|
}, "strict", z.ZodTypeAny, {
|
|
13625
13637
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
13626
13638
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
13627
13639
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
13628
13640
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
13629
13641
|
deployTarget: "serverless" | "container" | "long-running";
|
|
13630
|
-
domain: "none" | "fintech";
|
|
13642
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
13631
13643
|
}, {
|
|
13632
13644
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
13633
13645
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
13634
13646
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
13635
13647
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
13636
13648
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
13637
|
-
domain?: "none" | "fintech" | undefined;
|
|
13649
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
13638
13650
|
}>>;
|
|
13639
13651
|
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
13640
13652
|
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
@@ -13739,15 +13751,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
13739
13751
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
13740
13752
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
13741
13753
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
13742
|
-
domain: z.ZodDefault<z.
|
|
13754
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
13743
13755
|
}, "strict", z.ZodTypeAny, {
|
|
13744
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
13756
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
13745
13757
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
13746
13758
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
13747
13759
|
hasExperimentTracking: boolean;
|
|
13748
13760
|
}, {
|
|
13749
13761
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
13750
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
13762
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
13751
13763
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
13752
13764
|
hasExperimentTracking?: boolean | undefined;
|
|
13753
13765
|
}>>;
|
|
@@ -13761,21 +13773,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
13761
13773
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
13762
13774
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
13763
13775
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
13764
|
-
domain: z.ZodDefault<z.
|
|
13776
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
13765
13777
|
}, "strict", z.ZodTypeAny, {
|
|
13766
13778
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
13767
13779
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
13768
13780
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
13769
13781
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
13770
13782
|
deployTarget: "serverless" | "container" | "long-running";
|
|
13771
|
-
domain: "none" | "fintech";
|
|
13783
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
13772
13784
|
}, {
|
|
13773
13785
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
13774
13786
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
13775
13787
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
13776
13788
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
13777
13789
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
13778
|
-
domain?: "none" | "fintech" | undefined;
|
|
13790
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
13779
13791
|
}>>;
|
|
13780
13792
|
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
13781
13793
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
@@ -13797,15 +13809,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
13797
13809
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
13798
13810
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
13799
13811
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
13800
|
-
domain: z.ZodDefault<z.
|
|
13812
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
13801
13813
|
}, "strict", z.ZodTypeAny, {
|
|
13802
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
13814
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
13803
13815
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
13804
13816
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
13805
13817
|
hasExperimentTracking: boolean;
|
|
13806
13818
|
}, {
|
|
13807
13819
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
13808
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
13820
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
13809
13821
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
13810
13822
|
hasExperimentTracking?: boolean | undefined;
|
|
13811
13823
|
}>>;
|
|
@@ -13963,7 +13975,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
13963
13975
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
13964
13976
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
13965
13977
|
deployTarget: "serverless" | "container" | "long-running";
|
|
13966
|
-
domain: "none" | "fintech";
|
|
13978
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
13967
13979
|
} | undefined;
|
|
13968
13980
|
webAppConfig?: {
|
|
13969
13981
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -13972,7 +13984,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
13972
13984
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
13973
13985
|
} | undefined;
|
|
13974
13986
|
researchConfig?: {
|
|
13975
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
13987
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
13976
13988
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
13977
13989
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
13978
13990
|
hasExperimentTracking: boolean;
|
|
@@ -14041,7 +14053,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
14041
14053
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
14042
14054
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
14043
14055
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
14044
|
-
domain?: "none" | "fintech" | undefined;
|
|
14056
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
14045
14057
|
} | undefined;
|
|
14046
14058
|
webAppConfig?: {
|
|
14047
14059
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -14051,7 +14063,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
14051
14063
|
} | undefined;
|
|
14052
14064
|
researchConfig?: {
|
|
14053
14065
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
14054
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
14066
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
14055
14067
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
14056
14068
|
hasExperimentTracking?: boolean | undefined;
|
|
14057
14069
|
} | undefined;
|
|
@@ -14119,7 +14131,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
14119
14131
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
14120
14132
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
14121
14133
|
deployTarget: "serverless" | "container" | "long-running";
|
|
14122
|
-
domain: "none" | "fintech";
|
|
14134
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
14123
14135
|
} | undefined;
|
|
14124
14136
|
webAppConfig?: {
|
|
14125
14137
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -14128,7 +14140,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
14128
14140
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
14129
14141
|
} | undefined;
|
|
14130
14142
|
researchConfig?: {
|
|
14131
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
14143
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
14132
14144
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
14133
14145
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
14134
14146
|
hasExperimentTracking: boolean;
|
|
@@ -14197,7 +14209,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
14197
14209
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
14198
14210
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
14199
14211
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
14200
|
-
domain?: "none" | "fintech" | undefined;
|
|
14212
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
14201
14213
|
} | undefined;
|
|
14202
14214
|
webAppConfig?: {
|
|
14203
14215
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -14207,7 +14219,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
14207
14219
|
} | undefined;
|
|
14208
14220
|
researchConfig?: {
|
|
14209
14221
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
14210
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
14222
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
14211
14223
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
14212
14224
|
hasExperimentTracking?: boolean | undefined;
|
|
14213
14225
|
} | undefined;
|
|
@@ -14329,21 +14341,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
14329
14341
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
14330
14342
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
14331
14343
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
14332
|
-
domain: z.ZodDefault<z.
|
|
14344
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
14333
14345
|
}, "strict", z.ZodTypeAny, {
|
|
14334
14346
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
14335
14347
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
14336
14348
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
14337
14349
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
14338
14350
|
deployTarget: "serverless" | "container" | "long-running";
|
|
14339
|
-
domain: "none" | "fintech";
|
|
14351
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
14340
14352
|
}, {
|
|
14341
14353
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
14342
14354
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
14343
14355
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
14344
14356
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
14345
14357
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
14346
|
-
domain?: "none" | "fintech" | undefined;
|
|
14358
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
14347
14359
|
}>>;
|
|
14348
14360
|
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
14349
14361
|
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
@@ -14448,15 +14460,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
14448
14460
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
14449
14461
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
14450
14462
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
14451
|
-
domain: z.ZodDefault<z.
|
|
14463
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
14452
14464
|
}, "strict", z.ZodTypeAny, {
|
|
14453
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
14465
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
14454
14466
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
14455
14467
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
14456
14468
|
hasExperimentTracking: boolean;
|
|
14457
14469
|
}, {
|
|
14458
14470
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
14459
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
14471
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
14460
14472
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
14461
14473
|
hasExperimentTracking?: boolean | undefined;
|
|
14462
14474
|
}>>;
|
|
@@ -14470,21 +14482,21 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
14470
14482
|
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
14471
14483
|
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
14472
14484
|
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
14473
|
-
domain: z.ZodDefault<z.
|
|
14485
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["fintech"]>, z.ZodArray<z.ZodEnum<["fintech"]>, "many">]>>;
|
|
14474
14486
|
}, "strict", z.ZodTypeAny, {
|
|
14475
14487
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
14476
14488
|
dataStore: ("relational" | "document" | "key-value")[];
|
|
14477
14489
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
14478
14490
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
14479
14491
|
deployTarget: "serverless" | "container" | "long-running";
|
|
14480
|
-
domain: "none" | "fintech";
|
|
14492
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
14481
14493
|
}, {
|
|
14482
14494
|
apiStyle: "rest" | "graphql" | "grpc" | "trpc" | "none";
|
|
14483
14495
|
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
14484
14496
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
14485
14497
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
14486
14498
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
14487
|
-
domain?: "none" | "fintech" | undefined;
|
|
14499
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
14488
14500
|
}>>;
|
|
14489
14501
|
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
14490
14502
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
@@ -14506,15 +14518,15 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
14506
14518
|
experimentDriver: z.ZodEnum<["code-driven", "config-driven", "api-driven", "notebook-driven"]>;
|
|
14507
14519
|
interactionMode: z.ZodDefault<z.ZodEnum<["autonomous", "checkpoint-gated", "human-guided"]>>;
|
|
14508
14520
|
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
14509
|
-
domain: z.ZodDefault<z.
|
|
14521
|
+
domain: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, z.ZodArray<z.ZodEnum<["quant-finance", "ml-research", "simulation"]>, "many">]>>;
|
|
14510
14522
|
}, "strict", z.ZodTypeAny, {
|
|
14511
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
14523
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
14512
14524
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
14513
14525
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
14514
14526
|
hasExperimentTracking: boolean;
|
|
14515
14527
|
}, {
|
|
14516
14528
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
14517
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
14529
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
14518
14530
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
14519
14531
|
hasExperimentTracking?: boolean | undefined;
|
|
14520
14532
|
}>>;
|
|
@@ -14672,7 +14684,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
14672
14684
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
14673
14685
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
14674
14686
|
deployTarget: "serverless" | "container" | "long-running";
|
|
14675
|
-
domain: "none" | "fintech";
|
|
14687
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
14676
14688
|
} | undefined;
|
|
14677
14689
|
webAppConfig?: {
|
|
14678
14690
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -14681,7 +14693,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
14681
14693
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
14682
14694
|
} | undefined;
|
|
14683
14695
|
researchConfig?: {
|
|
14684
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
14696
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
14685
14697
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
14686
14698
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
14687
14699
|
hasExperimentTracking: boolean;
|
|
@@ -14750,7 +14762,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
14750
14762
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
14751
14763
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
14752
14764
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
14753
|
-
domain?: "none" | "fintech" | undefined;
|
|
14765
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
14754
14766
|
} | undefined;
|
|
14755
14767
|
webAppConfig?: {
|
|
14756
14768
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -14760,7 +14772,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
14760
14772
|
} | undefined;
|
|
14761
14773
|
researchConfig?: {
|
|
14762
14774
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
14763
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
14775
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
14764
14776
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
14765
14777
|
hasExperimentTracking?: boolean | undefined;
|
|
14766
14778
|
} | undefined;
|
|
@@ -14828,7 +14840,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
14828
14840
|
authMechanism: "none" | "jwt" | "session" | "oauth" | "apikey";
|
|
14829
14841
|
asyncMessaging: "none" | "queue" | "event-driven";
|
|
14830
14842
|
deployTarget: "serverless" | "container" | "long-running";
|
|
14831
|
-
domain: "none" | "fintech";
|
|
14843
|
+
domain: "none" | "fintech" | "fintech"[];
|
|
14832
14844
|
} | undefined;
|
|
14833
14845
|
webAppConfig?: {
|
|
14834
14846
|
deployTarget: "serverless" | "container" | "long-running" | "static" | "edge";
|
|
@@ -14837,7 +14849,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
14837
14849
|
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
14838
14850
|
} | undefined;
|
|
14839
14851
|
researchConfig?: {
|
|
14840
|
-
domain: "none" | "quant-finance" | "ml-research" | "simulation";
|
|
14852
|
+
domain: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[];
|
|
14841
14853
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
14842
14854
|
interactionMode: "autonomous" | "checkpoint-gated" | "human-guided";
|
|
14843
14855
|
hasExperimentTracking: boolean;
|
|
@@ -14906,7 +14918,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
14906
14918
|
authMechanism?: "none" | "jwt" | "session" | "oauth" | "apikey" | undefined;
|
|
14907
14919
|
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
14908
14920
|
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
14909
|
-
domain?: "none" | "fintech" | undefined;
|
|
14921
|
+
domain?: "none" | "fintech" | "fintech"[] | undefined;
|
|
14910
14922
|
} | undefined;
|
|
14911
14923
|
webAppConfig?: {
|
|
14912
14924
|
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
@@ -14916,7 +14928,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
14916
14928
|
} | undefined;
|
|
14917
14929
|
researchConfig?: {
|
|
14918
14930
|
experimentDriver: "code-driven" | "config-driven" | "api-driven" | "notebook-driven";
|
|
14919
|
-
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | undefined;
|
|
14931
|
+
domain?: "none" | "quant-finance" | "ml-research" | "simulation" | ("quant-finance" | "ml-research" | "simulation")[] | undefined;
|
|
14920
14932
|
interactionMode?: "autonomous" | "checkpoint-gated" | "human-guided" | undefined;
|
|
14921
14933
|
hasExperimentTracking?: boolean | undefined;
|
|
14922
14934
|
} | undefined;
|