airlock-bot 0.2.36 → 0.2.37
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 +10 -1
- package/dist/config/loader.d.ts.map +1 -1
- package/dist/config/loader.js +1 -1
- package/dist/config/loader.js.map +1 -1
- package/dist/config/profiles.d.ts +3 -6
- package/dist/config/profiles.d.ts.map +1 -1
- package/dist/config/profiles.js +52 -19
- package/dist/config/profiles.js.map +1 -1
- package/dist/config/schema.d.ts +277 -8
- package/dist/config/schema.d.ts.map +1 -1
- package/dist/config/schema.js +28 -0
- package/dist/config/schema.js.map +1 -1
- package/dist/configure-web/cli.d.ts +12 -0
- package/dist/configure-web/cli.d.ts.map +1 -1
- package/dist/configure-web/cli.js +332 -33
- package/dist/configure-web/cli.js.map +1 -1
- package/dist/middleware/chain-builder.d.ts +1 -1
- package/dist/middleware/chain-builder.d.ts.map +1 -1
- package/dist/middleware/chain-builder.js +4 -2
- package/dist/middleware/chain-builder.js.map +1 -1
- package/dist/middleware/core/arg-policy.d.ts +12 -0
- package/dist/middleware/core/arg-policy.d.ts.map +1 -0
- package/dist/middleware/core/arg-policy.js +91 -0
- package/dist/middleware/core/arg-policy.js.map +1 -0
- package/examples/profiles.yaml +4 -2
- package/package.json +1 -1
- package/schema.json +44 -0
package/dist/config/schema.d.ts
CHANGED
|
@@ -365,6 +365,50 @@ export declare const SandboxConfig: z.ZodObject<{
|
|
|
365
365
|
}> | undefined;
|
|
366
366
|
}>;
|
|
367
367
|
export type SandboxConfig = z.infer<typeof SandboxConfig>;
|
|
368
|
+
export declare const ToolArgConstraintConfig: z.ZodEffects<z.ZodObject<{
|
|
369
|
+
allow: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
370
|
+
equals: z.ZodOptional<z.ZodUnknown>;
|
|
371
|
+
label: z.ZodOptional<z.ZodString>;
|
|
372
|
+
}, "strict", z.ZodTypeAny, {
|
|
373
|
+
allow?: unknown[] | undefined;
|
|
374
|
+
equals?: unknown;
|
|
375
|
+
label?: string | undefined;
|
|
376
|
+
}, {
|
|
377
|
+
allow?: unknown[] | undefined;
|
|
378
|
+
equals?: unknown;
|
|
379
|
+
label?: string | undefined;
|
|
380
|
+
}>, {
|
|
381
|
+
allow?: unknown[] | undefined;
|
|
382
|
+
equals?: unknown;
|
|
383
|
+
label?: string | undefined;
|
|
384
|
+
}, {
|
|
385
|
+
allow?: unknown[] | undefined;
|
|
386
|
+
equals?: unknown;
|
|
387
|
+
label?: string | undefined;
|
|
388
|
+
}>;
|
|
389
|
+
export type ToolArgConstraintConfig = z.infer<typeof ToolArgConstraintConfig>;
|
|
390
|
+
export declare const ToolArgPolicyConfig: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
391
|
+
allow: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
392
|
+
equals: z.ZodOptional<z.ZodUnknown>;
|
|
393
|
+
label: z.ZodOptional<z.ZodString>;
|
|
394
|
+
}, "strict", z.ZodTypeAny, {
|
|
395
|
+
allow?: unknown[] | undefined;
|
|
396
|
+
equals?: unknown;
|
|
397
|
+
label?: string | undefined;
|
|
398
|
+
}, {
|
|
399
|
+
allow?: unknown[] | undefined;
|
|
400
|
+
equals?: unknown;
|
|
401
|
+
label?: string | undefined;
|
|
402
|
+
}>, {
|
|
403
|
+
allow?: unknown[] | undefined;
|
|
404
|
+
equals?: unknown;
|
|
405
|
+
label?: string | undefined;
|
|
406
|
+
}, {
|
|
407
|
+
allow?: unknown[] | undefined;
|
|
408
|
+
equals?: unknown;
|
|
409
|
+
label?: string | undefined;
|
|
410
|
+
}>>>;
|
|
411
|
+
export type ToolArgPolicyConfig = z.infer<typeof ToolArgPolicyConfig>;
|
|
368
412
|
export declare const ToolOverride: z.ZodObject<{
|
|
369
413
|
description: z.ZodOptional<z.ZodString>;
|
|
370
414
|
alias_of: z.ZodOptional<z.ZodString>;
|
|
@@ -419,9 +463,35 @@ export declare const ToolOverride: z.ZodObject<{
|
|
|
419
463
|
denied_domains?: string[] | undefined;
|
|
420
464
|
} | undefined;
|
|
421
465
|
}>>;
|
|
466
|
+
args: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
467
|
+
allow: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
468
|
+
equals: z.ZodOptional<z.ZodUnknown>;
|
|
469
|
+
label: z.ZodOptional<z.ZodString>;
|
|
470
|
+
}, "strict", z.ZodTypeAny, {
|
|
471
|
+
allow?: unknown[] | undefined;
|
|
472
|
+
equals?: unknown;
|
|
473
|
+
label?: string | undefined;
|
|
474
|
+
}, {
|
|
475
|
+
allow?: unknown[] | undefined;
|
|
476
|
+
equals?: unknown;
|
|
477
|
+
label?: string | undefined;
|
|
478
|
+
}>, {
|
|
479
|
+
allow?: unknown[] | undefined;
|
|
480
|
+
equals?: unknown;
|
|
481
|
+
label?: string | undefined;
|
|
482
|
+
}, {
|
|
483
|
+
allow?: unknown[] | undefined;
|
|
484
|
+
equals?: unknown;
|
|
485
|
+
label?: string | undefined;
|
|
486
|
+
}>>>;
|
|
422
487
|
}, "strip", z.ZodTypeAny, {
|
|
423
488
|
sandbox_presets: string[];
|
|
424
489
|
description?: string | undefined;
|
|
490
|
+
args?: Record<string, {
|
|
491
|
+
allow?: unknown[] | undefined;
|
|
492
|
+
equals?: unknown;
|
|
493
|
+
label?: string | undefined;
|
|
494
|
+
}> | undefined;
|
|
425
495
|
alias_of?: string | undefined;
|
|
426
496
|
sandbox?: {
|
|
427
497
|
filesystem?: {
|
|
@@ -437,6 +507,11 @@ export declare const ToolOverride: z.ZodObject<{
|
|
|
437
507
|
} | undefined;
|
|
438
508
|
}, {
|
|
439
509
|
description?: string | undefined;
|
|
510
|
+
args?: Record<string, {
|
|
511
|
+
allow?: unknown[] | undefined;
|
|
512
|
+
equals?: unknown;
|
|
513
|
+
label?: string | undefined;
|
|
514
|
+
}> | undefined;
|
|
440
515
|
alias_of?: string | undefined;
|
|
441
516
|
sandbox_presets?: string | string[] | undefined;
|
|
442
517
|
sandbox?: {
|
|
@@ -617,9 +692,35 @@ export declare const AgentConfig: z.ZodObject<{
|
|
|
617
692
|
denied_domains?: string[] | undefined;
|
|
618
693
|
} | undefined;
|
|
619
694
|
}>>;
|
|
695
|
+
args: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
696
|
+
allow: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
697
|
+
equals: z.ZodOptional<z.ZodUnknown>;
|
|
698
|
+
label: z.ZodOptional<z.ZodString>;
|
|
699
|
+
}, "strict", z.ZodTypeAny, {
|
|
700
|
+
allow?: unknown[] | undefined;
|
|
701
|
+
equals?: unknown;
|
|
702
|
+
label?: string | undefined;
|
|
703
|
+
}, {
|
|
704
|
+
allow?: unknown[] | undefined;
|
|
705
|
+
equals?: unknown;
|
|
706
|
+
label?: string | undefined;
|
|
707
|
+
}>, {
|
|
708
|
+
allow?: unknown[] | undefined;
|
|
709
|
+
equals?: unknown;
|
|
710
|
+
label?: string | undefined;
|
|
711
|
+
}, {
|
|
712
|
+
allow?: unknown[] | undefined;
|
|
713
|
+
equals?: unknown;
|
|
714
|
+
label?: string | undefined;
|
|
715
|
+
}>>>;
|
|
620
716
|
}, "strip", z.ZodTypeAny, {
|
|
621
717
|
sandbox_presets: string[];
|
|
622
718
|
description?: string | undefined;
|
|
719
|
+
args?: Record<string, {
|
|
720
|
+
allow?: unknown[] | undefined;
|
|
721
|
+
equals?: unknown;
|
|
722
|
+
label?: string | undefined;
|
|
723
|
+
}> | undefined;
|
|
623
724
|
alias_of?: string | undefined;
|
|
624
725
|
sandbox?: {
|
|
625
726
|
filesystem?: {
|
|
@@ -635,6 +736,11 @@ export declare const AgentConfig: z.ZodObject<{
|
|
|
635
736
|
} | undefined;
|
|
636
737
|
}, {
|
|
637
738
|
description?: string | undefined;
|
|
739
|
+
args?: Record<string, {
|
|
740
|
+
allow?: unknown[] | undefined;
|
|
741
|
+
equals?: unknown;
|
|
742
|
+
label?: string | undefined;
|
|
743
|
+
}> | undefined;
|
|
638
744
|
alias_of?: string | undefined;
|
|
639
745
|
sandbox_presets?: string | string[] | undefined;
|
|
640
746
|
sandbox?: {
|
|
@@ -650,6 +756,27 @@ export declare const AgentConfig: z.ZodObject<{
|
|
|
650
756
|
} | undefined;
|
|
651
757
|
} | undefined;
|
|
652
758
|
}>>>;
|
|
759
|
+
arg_policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
760
|
+
allow: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
761
|
+
equals: z.ZodOptional<z.ZodUnknown>;
|
|
762
|
+
label: z.ZodOptional<z.ZodString>;
|
|
763
|
+
}, "strict", z.ZodTypeAny, {
|
|
764
|
+
allow?: unknown[] | undefined;
|
|
765
|
+
equals?: unknown;
|
|
766
|
+
label?: string | undefined;
|
|
767
|
+
}, {
|
|
768
|
+
allow?: unknown[] | undefined;
|
|
769
|
+
equals?: unknown;
|
|
770
|
+
label?: string | undefined;
|
|
771
|
+
}>, {
|
|
772
|
+
allow?: unknown[] | undefined;
|
|
773
|
+
equals?: unknown;
|
|
774
|
+
label?: string | undefined;
|
|
775
|
+
}, {
|
|
776
|
+
allow?: unknown[] | undefined;
|
|
777
|
+
equals?: unknown;
|
|
778
|
+
label?: string | undefined;
|
|
779
|
+
}>>>>;
|
|
653
780
|
exec: z.ZodDefault<z.ZodObject<{
|
|
654
781
|
allow: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
655
782
|
ask: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -867,6 +994,7 @@ export declare const AgentConfig: z.ZodObject<{
|
|
|
867
994
|
max_response_bytes: number;
|
|
868
995
|
timeout_ms: number;
|
|
869
996
|
};
|
|
997
|
+
allow: string[];
|
|
870
998
|
sandbox: {
|
|
871
999
|
enabled: boolean;
|
|
872
1000
|
filesystem: {
|
|
@@ -893,7 +1021,6 @@ export declare const AgentConfig: z.ZodObject<{
|
|
|
893
1021
|
} | undefined;
|
|
894
1022
|
}>;
|
|
895
1023
|
};
|
|
896
|
-
allow: string[];
|
|
897
1024
|
ask: string[];
|
|
898
1025
|
deny: string[];
|
|
899
1026
|
extends: string[];
|
|
@@ -904,6 +1031,11 @@ export declare const AgentConfig: z.ZodObject<{
|
|
|
904
1031
|
tool_overrides: Record<string, {
|
|
905
1032
|
sandbox_presets: string[];
|
|
906
1033
|
description?: string | undefined;
|
|
1034
|
+
args?: Record<string, {
|
|
1035
|
+
allow?: unknown[] | undefined;
|
|
1036
|
+
equals?: unknown;
|
|
1037
|
+
label?: string | undefined;
|
|
1038
|
+
}> | undefined;
|
|
907
1039
|
alias_of?: string | undefined;
|
|
908
1040
|
sandbox?: {
|
|
909
1041
|
filesystem?: {
|
|
@@ -926,6 +1058,11 @@ export declare const AgentConfig: z.ZodObject<{
|
|
|
926
1058
|
default_timeout_ms: number;
|
|
927
1059
|
};
|
|
928
1060
|
token?: string | undefined;
|
|
1061
|
+
arg_policy?: Record<string, Record<string, {
|
|
1062
|
+
allow?: unknown[] | undefined;
|
|
1063
|
+
equals?: unknown;
|
|
1064
|
+
label?: string | undefined;
|
|
1065
|
+
}>> | undefined;
|
|
929
1066
|
middleware?: {
|
|
930
1067
|
name: "schema-validator" | "rate-limiter" | "untrusted-envelope" | "strip-query-params" | "output-injection-detector" | "canary-token-injector" | "output-size-limiter" | "output-summarizer" | "injection-detector" | "sensitivity-classifier";
|
|
931
1068
|
enabled: boolean;
|
|
@@ -949,6 +1086,7 @@ export declare const AgentConfig: z.ZodObject<{
|
|
|
949
1086
|
max_response_bytes?: number | undefined;
|
|
950
1087
|
timeout_ms?: number | undefined;
|
|
951
1088
|
} | undefined;
|
|
1089
|
+
allow?: string[] | undefined;
|
|
952
1090
|
sandbox?: {
|
|
953
1091
|
enabled?: boolean | undefined;
|
|
954
1092
|
filesystem?: {
|
|
@@ -975,7 +1113,6 @@ export declare const AgentConfig: z.ZodObject<{
|
|
|
975
1113
|
} | undefined;
|
|
976
1114
|
}> | undefined;
|
|
977
1115
|
} | undefined;
|
|
978
|
-
allow?: string[] | undefined;
|
|
979
1116
|
ask?: string[] | undefined;
|
|
980
1117
|
deny?: string[] | undefined;
|
|
981
1118
|
token?: string | undefined;
|
|
@@ -986,6 +1123,11 @@ export declare const AgentConfig: z.ZodObject<{
|
|
|
986
1123
|
}[] | undefined;
|
|
987
1124
|
tool_overrides?: Record<string, {
|
|
988
1125
|
description?: string | undefined;
|
|
1126
|
+
args?: Record<string, {
|
|
1127
|
+
allow?: unknown[] | undefined;
|
|
1128
|
+
equals?: unknown;
|
|
1129
|
+
label?: string | undefined;
|
|
1130
|
+
}> | undefined;
|
|
989
1131
|
alias_of?: string | undefined;
|
|
990
1132
|
sandbox_presets?: string | string[] | undefined;
|
|
991
1133
|
sandbox?: {
|
|
@@ -1001,6 +1143,11 @@ export declare const AgentConfig: z.ZodObject<{
|
|
|
1001
1143
|
} | undefined;
|
|
1002
1144
|
} | undefined;
|
|
1003
1145
|
}> | undefined;
|
|
1146
|
+
arg_policy?: Record<string, Record<string, {
|
|
1147
|
+
allow?: unknown[] | undefined;
|
|
1148
|
+
equals?: unknown;
|
|
1149
|
+
label?: string | undefined;
|
|
1150
|
+
}>> | undefined;
|
|
1004
1151
|
exec?: {
|
|
1005
1152
|
env?: Record<string, string> | undefined;
|
|
1006
1153
|
allow?: string[] | undefined;
|
|
@@ -1028,6 +1175,7 @@ export declare const AgentConfig: z.ZodObject<{
|
|
|
1028
1175
|
}>;
|
|
1029
1176
|
export type AgentConfig = z.infer<typeof AgentConfig>;
|
|
1030
1177
|
export declare const ProfileConfig: z.ZodObject<{
|
|
1178
|
+
extends: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1031
1179
|
allow: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1032
1180
|
ask: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1033
1181
|
deny: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1035,10 +1183,12 @@ export declare const ProfileConfig: z.ZodObject<{
|
|
|
1035
1183
|
allow: string[];
|
|
1036
1184
|
ask: string[];
|
|
1037
1185
|
deny: string[];
|
|
1186
|
+
extends: string[];
|
|
1038
1187
|
}, {
|
|
1039
1188
|
allow?: string[] | undefined;
|
|
1040
1189
|
ask?: string[] | undefined;
|
|
1041
1190
|
deny?: string[] | undefined;
|
|
1191
|
+
extends?: string[] | undefined;
|
|
1042
1192
|
}>;
|
|
1043
1193
|
export type ProfileConfig = z.infer<typeof ProfileConfig>;
|
|
1044
1194
|
export declare const ApprovalProviderConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -1854,6 +2004,7 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
1854
2004
|
oauth_callback_url?: string | undefined;
|
|
1855
2005
|
}>]>]>>>;
|
|
1856
2006
|
profiles: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2007
|
+
extends: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1857
2008
|
allow: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1858
2009
|
ask: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1859
2010
|
deny: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1861,10 +2012,12 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
1861
2012
|
allow: string[];
|
|
1862
2013
|
ask: string[];
|
|
1863
2014
|
deny: string[];
|
|
2015
|
+
extends: string[];
|
|
1864
2016
|
}, {
|
|
1865
2017
|
allow?: string[] | undefined;
|
|
1866
2018
|
ask?: string[] | undefined;
|
|
1867
2019
|
deny?: string[] | undefined;
|
|
2020
|
+
extends?: string[] | undefined;
|
|
1868
2021
|
}>>>;
|
|
1869
2022
|
sandbox_presets: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1870
2023
|
filesystem: z.ZodOptional<z.ZodObject<{
|
|
@@ -2144,9 +2297,35 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2144
2297
|
denied_domains?: string[] | undefined;
|
|
2145
2298
|
} | undefined;
|
|
2146
2299
|
}>>;
|
|
2300
|
+
args: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
2301
|
+
allow: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
2302
|
+
equals: z.ZodOptional<z.ZodUnknown>;
|
|
2303
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2304
|
+
}, "strict", z.ZodTypeAny, {
|
|
2305
|
+
allow?: unknown[] | undefined;
|
|
2306
|
+
equals?: unknown;
|
|
2307
|
+
label?: string | undefined;
|
|
2308
|
+
}, {
|
|
2309
|
+
allow?: unknown[] | undefined;
|
|
2310
|
+
equals?: unknown;
|
|
2311
|
+
label?: string | undefined;
|
|
2312
|
+
}>, {
|
|
2313
|
+
allow?: unknown[] | undefined;
|
|
2314
|
+
equals?: unknown;
|
|
2315
|
+
label?: string | undefined;
|
|
2316
|
+
}, {
|
|
2317
|
+
allow?: unknown[] | undefined;
|
|
2318
|
+
equals?: unknown;
|
|
2319
|
+
label?: string | undefined;
|
|
2320
|
+
}>>>;
|
|
2147
2321
|
}, "strip", z.ZodTypeAny, {
|
|
2148
2322
|
sandbox_presets: string[];
|
|
2149
2323
|
description?: string | undefined;
|
|
2324
|
+
args?: Record<string, {
|
|
2325
|
+
allow?: unknown[] | undefined;
|
|
2326
|
+
equals?: unknown;
|
|
2327
|
+
label?: string | undefined;
|
|
2328
|
+
}> | undefined;
|
|
2150
2329
|
alias_of?: string | undefined;
|
|
2151
2330
|
sandbox?: {
|
|
2152
2331
|
filesystem?: {
|
|
@@ -2162,6 +2341,11 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2162
2341
|
} | undefined;
|
|
2163
2342
|
}, {
|
|
2164
2343
|
description?: string | undefined;
|
|
2344
|
+
args?: Record<string, {
|
|
2345
|
+
allow?: unknown[] | undefined;
|
|
2346
|
+
equals?: unknown;
|
|
2347
|
+
label?: string | undefined;
|
|
2348
|
+
}> | undefined;
|
|
2165
2349
|
alias_of?: string | undefined;
|
|
2166
2350
|
sandbox_presets?: string | string[] | undefined;
|
|
2167
2351
|
sandbox?: {
|
|
@@ -2177,6 +2361,27 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2177
2361
|
} | undefined;
|
|
2178
2362
|
} | undefined;
|
|
2179
2363
|
}>>>;
|
|
2364
|
+
arg_policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
2365
|
+
allow: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
2366
|
+
equals: z.ZodOptional<z.ZodUnknown>;
|
|
2367
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2368
|
+
}, "strict", z.ZodTypeAny, {
|
|
2369
|
+
allow?: unknown[] | undefined;
|
|
2370
|
+
equals?: unknown;
|
|
2371
|
+
label?: string | undefined;
|
|
2372
|
+
}, {
|
|
2373
|
+
allow?: unknown[] | undefined;
|
|
2374
|
+
equals?: unknown;
|
|
2375
|
+
label?: string | undefined;
|
|
2376
|
+
}>, {
|
|
2377
|
+
allow?: unknown[] | undefined;
|
|
2378
|
+
equals?: unknown;
|
|
2379
|
+
label?: string | undefined;
|
|
2380
|
+
}, {
|
|
2381
|
+
allow?: unknown[] | undefined;
|
|
2382
|
+
equals?: unknown;
|
|
2383
|
+
label?: string | undefined;
|
|
2384
|
+
}>>>>;
|
|
2180
2385
|
exec: z.ZodDefault<z.ZodObject<{
|
|
2181
2386
|
allow: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
2182
2387
|
ask: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -2394,6 +2599,7 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2394
2599
|
max_response_bytes: number;
|
|
2395
2600
|
timeout_ms: number;
|
|
2396
2601
|
};
|
|
2602
|
+
allow: string[];
|
|
2397
2603
|
sandbox: {
|
|
2398
2604
|
enabled: boolean;
|
|
2399
2605
|
filesystem: {
|
|
@@ -2420,7 +2626,6 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2420
2626
|
} | undefined;
|
|
2421
2627
|
}>;
|
|
2422
2628
|
};
|
|
2423
|
-
allow: string[];
|
|
2424
2629
|
ask: string[];
|
|
2425
2630
|
deny: string[];
|
|
2426
2631
|
extends: string[];
|
|
@@ -2431,6 +2636,11 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2431
2636
|
tool_overrides: Record<string, {
|
|
2432
2637
|
sandbox_presets: string[];
|
|
2433
2638
|
description?: string | undefined;
|
|
2639
|
+
args?: Record<string, {
|
|
2640
|
+
allow?: unknown[] | undefined;
|
|
2641
|
+
equals?: unknown;
|
|
2642
|
+
label?: string | undefined;
|
|
2643
|
+
}> | undefined;
|
|
2434
2644
|
alias_of?: string | undefined;
|
|
2435
2645
|
sandbox?: {
|
|
2436
2646
|
filesystem?: {
|
|
@@ -2453,6 +2663,11 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2453
2663
|
default_timeout_ms: number;
|
|
2454
2664
|
};
|
|
2455
2665
|
token?: string | undefined;
|
|
2666
|
+
arg_policy?: Record<string, Record<string, {
|
|
2667
|
+
allow?: unknown[] | undefined;
|
|
2668
|
+
equals?: unknown;
|
|
2669
|
+
label?: string | undefined;
|
|
2670
|
+
}>> | undefined;
|
|
2456
2671
|
middleware?: {
|
|
2457
2672
|
name: "schema-validator" | "rate-limiter" | "untrusted-envelope" | "strip-query-params" | "output-injection-detector" | "canary-token-injector" | "output-size-limiter" | "output-summarizer" | "injection-detector" | "sensitivity-classifier";
|
|
2458
2673
|
enabled: boolean;
|
|
@@ -2476,6 +2691,7 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2476
2691
|
max_response_bytes?: number | undefined;
|
|
2477
2692
|
timeout_ms?: number | undefined;
|
|
2478
2693
|
} | undefined;
|
|
2694
|
+
allow?: string[] | undefined;
|
|
2479
2695
|
sandbox?: {
|
|
2480
2696
|
enabled?: boolean | undefined;
|
|
2481
2697
|
filesystem?: {
|
|
@@ -2502,7 +2718,6 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2502
2718
|
} | undefined;
|
|
2503
2719
|
}> | undefined;
|
|
2504
2720
|
} | undefined;
|
|
2505
|
-
allow?: string[] | undefined;
|
|
2506
2721
|
ask?: string[] | undefined;
|
|
2507
2722
|
deny?: string[] | undefined;
|
|
2508
2723
|
token?: string | undefined;
|
|
@@ -2513,6 +2728,11 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2513
2728
|
}[] | undefined;
|
|
2514
2729
|
tool_overrides?: Record<string, {
|
|
2515
2730
|
description?: string | undefined;
|
|
2731
|
+
args?: Record<string, {
|
|
2732
|
+
allow?: unknown[] | undefined;
|
|
2733
|
+
equals?: unknown;
|
|
2734
|
+
label?: string | undefined;
|
|
2735
|
+
}> | undefined;
|
|
2516
2736
|
alias_of?: string | undefined;
|
|
2517
2737
|
sandbox_presets?: string | string[] | undefined;
|
|
2518
2738
|
sandbox?: {
|
|
@@ -2528,6 +2748,11 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2528
2748
|
} | undefined;
|
|
2529
2749
|
} | undefined;
|
|
2530
2750
|
}> | undefined;
|
|
2751
|
+
arg_policy?: Record<string, Record<string, {
|
|
2752
|
+
allow?: unknown[] | undefined;
|
|
2753
|
+
equals?: unknown;
|
|
2754
|
+
label?: string | undefined;
|
|
2755
|
+
}>> | undefined;
|
|
2531
2756
|
exec?: {
|
|
2532
2757
|
env?: Record<string, string> | undefined;
|
|
2533
2758
|
allow?: string[] | undefined;
|
|
@@ -2932,6 +3157,7 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2932
3157
|
allow: string[];
|
|
2933
3158
|
ask: string[];
|
|
2934
3159
|
deny: string[];
|
|
3160
|
+
extends: string[];
|
|
2935
3161
|
}>;
|
|
2936
3162
|
clis: Record<string, {
|
|
2937
3163
|
max_output_bytes: number;
|
|
@@ -2975,6 +3201,7 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2975
3201
|
max_response_bytes: number;
|
|
2976
3202
|
timeout_ms: number;
|
|
2977
3203
|
};
|
|
3204
|
+
allow: string[];
|
|
2978
3205
|
sandbox: {
|
|
2979
3206
|
enabled: boolean;
|
|
2980
3207
|
filesystem: {
|
|
@@ -3001,7 +3228,6 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3001
3228
|
} | undefined;
|
|
3002
3229
|
}>;
|
|
3003
3230
|
};
|
|
3004
|
-
allow: string[];
|
|
3005
3231
|
ask: string[];
|
|
3006
3232
|
deny: string[];
|
|
3007
3233
|
extends: string[];
|
|
@@ -3012,6 +3238,11 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3012
3238
|
tool_overrides: Record<string, {
|
|
3013
3239
|
sandbox_presets: string[];
|
|
3014
3240
|
description?: string | undefined;
|
|
3241
|
+
args?: Record<string, {
|
|
3242
|
+
allow?: unknown[] | undefined;
|
|
3243
|
+
equals?: unknown;
|
|
3244
|
+
label?: string | undefined;
|
|
3245
|
+
}> | undefined;
|
|
3015
3246
|
alias_of?: string | undefined;
|
|
3016
3247
|
sandbox?: {
|
|
3017
3248
|
filesystem?: {
|
|
@@ -3034,6 +3265,11 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3034
3265
|
default_timeout_ms: number;
|
|
3035
3266
|
};
|
|
3036
3267
|
token?: string | undefined;
|
|
3268
|
+
arg_policy?: Record<string, Record<string, {
|
|
3269
|
+
allow?: unknown[] | undefined;
|
|
3270
|
+
equals?: unknown;
|
|
3271
|
+
label?: string | undefined;
|
|
3272
|
+
}>> | undefined;
|
|
3037
3273
|
middleware?: {
|
|
3038
3274
|
name: "schema-validator" | "rate-limiter" | "untrusted-envelope" | "strip-query-params" | "output-injection-detector" | "canary-token-injector" | "output-size-limiter" | "output-summarizer" | "injection-detector" | "sensitivity-classifier";
|
|
3039
3275
|
enabled: boolean;
|
|
@@ -3173,6 +3409,7 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3173
3409
|
allow?: string[] | undefined;
|
|
3174
3410
|
ask?: string[] | undefined;
|
|
3175
3411
|
deny?: string[] | undefined;
|
|
3412
|
+
extends?: string[] | undefined;
|
|
3176
3413
|
}> | undefined;
|
|
3177
3414
|
clis?: Record<string, {
|
|
3178
3415
|
cwd?: string | undefined;
|
|
@@ -3216,6 +3453,7 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3216
3453
|
max_response_bytes?: number | undefined;
|
|
3217
3454
|
timeout_ms?: number | undefined;
|
|
3218
3455
|
} | undefined;
|
|
3456
|
+
allow?: string[] | undefined;
|
|
3219
3457
|
sandbox?: {
|
|
3220
3458
|
enabled?: boolean | undefined;
|
|
3221
3459
|
filesystem?: {
|
|
@@ -3242,7 +3480,6 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3242
3480
|
} | undefined;
|
|
3243
3481
|
}> | undefined;
|
|
3244
3482
|
} | undefined;
|
|
3245
|
-
allow?: string[] | undefined;
|
|
3246
3483
|
ask?: string[] | undefined;
|
|
3247
3484
|
deny?: string[] | undefined;
|
|
3248
3485
|
token?: string | undefined;
|
|
@@ -3253,6 +3490,11 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3253
3490
|
}[] | undefined;
|
|
3254
3491
|
tool_overrides?: Record<string, {
|
|
3255
3492
|
description?: string | undefined;
|
|
3493
|
+
args?: Record<string, {
|
|
3494
|
+
allow?: unknown[] | undefined;
|
|
3495
|
+
equals?: unknown;
|
|
3496
|
+
label?: string | undefined;
|
|
3497
|
+
}> | undefined;
|
|
3256
3498
|
alias_of?: string | undefined;
|
|
3257
3499
|
sandbox_presets?: string | string[] | undefined;
|
|
3258
3500
|
sandbox?: {
|
|
@@ -3268,6 +3510,11 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3268
3510
|
} | undefined;
|
|
3269
3511
|
} | undefined;
|
|
3270
3512
|
}> | undefined;
|
|
3513
|
+
arg_policy?: Record<string, Record<string, {
|
|
3514
|
+
allow?: unknown[] | undefined;
|
|
3515
|
+
equals?: unknown;
|
|
3516
|
+
label?: string | undefined;
|
|
3517
|
+
}>> | undefined;
|
|
3271
3518
|
exec?: {
|
|
3272
3519
|
env?: Record<string, string> | undefined;
|
|
3273
3520
|
allow?: string[] | undefined;
|
|
@@ -3380,6 +3627,7 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3380
3627
|
max_response_bytes: number;
|
|
3381
3628
|
timeout_ms: number;
|
|
3382
3629
|
};
|
|
3630
|
+
allow: string[];
|
|
3383
3631
|
sandbox: {
|
|
3384
3632
|
enabled: boolean;
|
|
3385
3633
|
filesystem: {
|
|
@@ -3406,7 +3654,6 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3406
3654
|
} | undefined;
|
|
3407
3655
|
}>;
|
|
3408
3656
|
};
|
|
3409
|
-
allow: string[];
|
|
3410
3657
|
ask: string[];
|
|
3411
3658
|
deny: string[];
|
|
3412
3659
|
extends: string[];
|
|
@@ -3417,6 +3664,11 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3417
3664
|
tool_overrides: Record<string, {
|
|
3418
3665
|
sandbox_presets: string[];
|
|
3419
3666
|
description?: string | undefined;
|
|
3667
|
+
args?: Record<string, {
|
|
3668
|
+
allow?: unknown[] | undefined;
|
|
3669
|
+
equals?: unknown;
|
|
3670
|
+
label?: string | undefined;
|
|
3671
|
+
}> | undefined;
|
|
3420
3672
|
alias_of?: string | undefined;
|
|
3421
3673
|
sandbox?: {
|
|
3422
3674
|
filesystem?: {
|
|
@@ -3439,6 +3691,11 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3439
3691
|
default_timeout_ms: number;
|
|
3440
3692
|
};
|
|
3441
3693
|
token?: string | undefined;
|
|
3694
|
+
arg_policy?: Record<string, Record<string, {
|
|
3695
|
+
allow?: unknown[] | undefined;
|
|
3696
|
+
equals?: unknown;
|
|
3697
|
+
label?: string | undefined;
|
|
3698
|
+
}>> | undefined;
|
|
3442
3699
|
middleware?: {
|
|
3443
3700
|
name: "schema-validator" | "rate-limiter" | "untrusted-envelope" | "strip-query-params" | "output-injection-detector" | "canary-token-injector" | "output-size-limiter" | "output-summarizer" | "injection-detector" | "sensitivity-classifier";
|
|
3444
3701
|
enabled: boolean;
|
|
@@ -3499,6 +3756,7 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3499
3756
|
allow: string[];
|
|
3500
3757
|
ask: string[];
|
|
3501
3758
|
deny: string[];
|
|
3759
|
+
extends: string[];
|
|
3502
3760
|
}>;
|
|
3503
3761
|
clis: Record<string, {
|
|
3504
3762
|
max_output_bytes: number;
|
|
@@ -3657,6 +3915,7 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3657
3915
|
allow?: string[] | undefined;
|
|
3658
3916
|
ask?: string[] | undefined;
|
|
3659
3917
|
deny?: string[] | undefined;
|
|
3918
|
+
extends?: string[] | undefined;
|
|
3660
3919
|
}> | undefined;
|
|
3661
3920
|
clis?: Record<string, {
|
|
3662
3921
|
cwd?: string | undefined;
|
|
@@ -3700,6 +3959,7 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3700
3959
|
max_response_bytes?: number | undefined;
|
|
3701
3960
|
timeout_ms?: number | undefined;
|
|
3702
3961
|
} | undefined;
|
|
3962
|
+
allow?: string[] | undefined;
|
|
3703
3963
|
sandbox?: {
|
|
3704
3964
|
enabled?: boolean | undefined;
|
|
3705
3965
|
filesystem?: {
|
|
@@ -3726,7 +3986,6 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3726
3986
|
} | undefined;
|
|
3727
3987
|
}> | undefined;
|
|
3728
3988
|
} | undefined;
|
|
3729
|
-
allow?: string[] | undefined;
|
|
3730
3989
|
ask?: string[] | undefined;
|
|
3731
3990
|
deny?: string[] | undefined;
|
|
3732
3991
|
token?: string | undefined;
|
|
@@ -3737,6 +3996,11 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3737
3996
|
}[] | undefined;
|
|
3738
3997
|
tool_overrides?: Record<string, {
|
|
3739
3998
|
description?: string | undefined;
|
|
3999
|
+
args?: Record<string, {
|
|
4000
|
+
allow?: unknown[] | undefined;
|
|
4001
|
+
equals?: unknown;
|
|
4002
|
+
label?: string | undefined;
|
|
4003
|
+
}> | undefined;
|
|
3740
4004
|
alias_of?: string | undefined;
|
|
3741
4005
|
sandbox_presets?: string | string[] | undefined;
|
|
3742
4006
|
sandbox?: {
|
|
@@ -3752,6 +4016,11 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3752
4016
|
} | undefined;
|
|
3753
4017
|
} | undefined;
|
|
3754
4018
|
}> | undefined;
|
|
4019
|
+
arg_policy?: Record<string, Record<string, {
|
|
4020
|
+
allow?: unknown[] | undefined;
|
|
4021
|
+
equals?: unknown;
|
|
4022
|
+
label?: string | undefined;
|
|
4023
|
+
}>> | undefined;
|
|
3755
4024
|
exec?: {
|
|
3756
4025
|
env?: Record<string, string> | undefined;
|
|
3757
4026
|
allow?: string[] | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/config/schema.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAwBxB,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAyB1B,CAAC;AACH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAE9D,eAAO,MAAM,qBAAqB;;;;;;;;;EAGhC,CAAC;AACH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE1E,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAIzB,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D,6DAA6D;AAC7D,wBAAgB,aAAa,CAC3B,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,cAAc,CAAC,GACxC,MAAM,CAAC,MAAM,EAAE,eAAe,CAAC,CAQjC;AAED,sEAAsE;AACtE,wBAAgB,mBAAmB,CAAC,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,cAAc,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,CAQ1F;AAED,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;EAKlC,CAAC;AACH,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAE9E,eAAO,MAAM,oBAAoB;;;;;;;;;EAG/B,CAAC;AACH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGhC,CAAC;AACH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE1E,eAAO,MAAM,gBAAgB,uGAEoC,CAAC;AAClE,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMxB,CAAC;AACH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAE1D,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/config/schema.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAwBxB,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAyB1B,CAAC;AACH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAE9D,eAAO,MAAM,qBAAqB;;;;;;;;;EAGhC,CAAC;AACH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE1E,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAIzB,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D,6DAA6D;AAC7D,wBAAgB,aAAa,CAC3B,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,cAAc,CAAC,GACxC,MAAM,CAAC,MAAM,EAAE,eAAe,CAAC,CAQjC;AAED,sEAAsE;AACtE,wBAAgB,mBAAmB,CAAC,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,cAAc,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,CAQ1F;AAED,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;EAKlC,CAAC;AACH,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAE9E,eAAO,MAAM,oBAAoB;;;;;;;;;EAG/B,CAAC;AACH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGhC,CAAC;AACH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE1E,eAAO,MAAM,gBAAgB,uGAEoC,CAAC;AAClE,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMxB,CAAC;AACH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAE1D,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;EAyBhC,CAAC;AACL,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAE9E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;IAA8C,CAAC;AAC/E,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEtE,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMvB,CAAC;AAEH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;EAM1B,CAAC;AACH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAE9D,eAAO,MAAM,eAAe;;;;;;;;;;;;EAI1B,CAAC;AACH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAE9D,eAAO,MAAM,iBAAiB;;;;;;;;;EAG5B,CAAC;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAElE,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmCtB,CAAC;AACZ,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAatB,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;EAKxB,CAAC;AACH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAE1D,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAoCjC,CAAC;AACH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAG5E,MAAM,MAAM,kBAAkB,GAAG,sBAAsB,CAAC;AAExD,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM1B,CAAC;AACH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAG9D,MAAM,MAAM,UAAU,GAAG,eAAe,CAAC;AAEzC,eAAO,MAAM,cAAc;;;;;;;;;EAkCzB,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D,eAAO,MAAM,WAAW;;;;;;;;;;;;EAMtB,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUvB,CAAC;AACH,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AAIxD,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;EAOzB,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM3B,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMpB,CAAC;AACH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAIlD,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;IAGxB,CAAC;AACH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAE1D,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQpB,CAAC;AACH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAElD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAwB,CAAC;AACzD,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAsItE,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqBrB,CAAC;AACN,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC"}
|