airlock-bot 0.2.32 → 0.2.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/config/profiles.d.ts +2 -0
- package/dist/config/profiles.d.ts.map +1 -1
- package/dist/config/profiles.js +8 -1
- package/dist/config/profiles.js.map +1 -1
- package/dist/config/schema.d.ts +110 -20
- package/dist/config/schema.d.ts.map +1 -1
- package/dist/config/schema.js +15 -3
- package/dist/config/schema.js.map +1 -1
- package/dist/configure-web/cli.d.ts +81 -0
- package/dist/configure-web/cli.d.ts.map +1 -0
- package/dist/configure-web/cli.js +1511 -0
- package/dist/configure-web/cli.js.map +1 -0
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -1
- package/dist/pool/pool.d.ts +7 -3
- package/dist/pool/pool.d.ts.map +1 -1
- package/dist/pool/pool.js +9 -2
- package/dist/pool/pool.js.map +1 -1
- package/package.json +2 -1
- package/schema.json +36 -0
|
@@ -2,10 +2,12 @@ import type { AgentConfig, GatewayConfig } from './schema.js';
|
|
|
2
2
|
interface ResolvedPermissions {
|
|
3
3
|
allow: string[];
|
|
4
4
|
ask: string[];
|
|
5
|
+
deny: string[];
|
|
5
6
|
}
|
|
6
7
|
export declare function resolveAgentPermissions(agentConfig: AgentConfig, profiles: Record<string, {
|
|
7
8
|
allow: string[];
|
|
8
9
|
ask: string[];
|
|
10
|
+
deny?: string[];
|
|
9
11
|
}>): ResolvedPermissions;
|
|
10
12
|
export declare function applyProfiles(config: GatewayConfig): void;
|
|
11
13
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"profiles.d.ts","sourceRoot":"","sources":["../../src/config/profiles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAE9D,UAAU,mBAAmB;IAC3B,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,GAAG,EAAE,MAAM,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"profiles.d.ts","sourceRoot":"","sources":["../../src/config/profiles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAE9D,UAAU,mBAAmB;IAC3B,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,GAAG,EAAE,MAAM,EAAE,CAAC;IACd,IAAI,EAAE,MAAM,EAAE,CAAC;CAChB;AAED,wBAAgB,uBAAuB,CACrC,WAAW,EAAE,WAAW,EACxB,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE;IAAE,KAAK,EAAE,MAAM,EAAE,CAAC;IAAC,GAAG,EAAE,MAAM,EAAE,CAAC;IAAC,IAAI,CAAC,EAAE,MAAM,EAAE,CAAA;CAAE,CAAC,GAC5E,mBAAmB,CAyBrB;AAED,wBAAgB,aAAa,CAAC,MAAM,EAAE,aAAa,GAAG,IAAI,CAUzD"}
|
package/dist/config/profiles.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export function resolveAgentPermissions(agentConfig, profiles) {
|
|
2
2
|
const allow = new Set();
|
|
3
3
|
const ask = new Set();
|
|
4
|
+
const deny = new Set();
|
|
4
5
|
// Apply profiles in extends order, skipping unknown refs (caught by validateConfig)
|
|
5
6
|
for (const profileName of agentConfig.extends) {
|
|
6
7
|
const profile = profiles[profileName];
|
|
@@ -9,16 +10,21 @@ export function resolveAgentPermissions(agentConfig, profiles) {
|
|
|
9
10
|
allow.add(p);
|
|
10
11
|
for (const p of profile.ask)
|
|
11
12
|
ask.add(p);
|
|
13
|
+
for (const p of profile.deny ?? [])
|
|
14
|
+
deny.add(p);
|
|
12
15
|
}
|
|
13
16
|
}
|
|
14
|
-
// Union with agent's own allow/ask
|
|
17
|
+
// Union with agent's own allow/ask/deny
|
|
15
18
|
for (const p of agentConfig.allow)
|
|
16
19
|
allow.add(p);
|
|
17
20
|
for (const p of agentConfig.ask)
|
|
18
21
|
ask.add(p);
|
|
22
|
+
for (const p of agentConfig.deny)
|
|
23
|
+
deny.add(p);
|
|
19
24
|
return {
|
|
20
25
|
allow: Array.from(allow),
|
|
21
26
|
ask: Array.from(ask),
|
|
27
|
+
deny: Array.from(deny),
|
|
22
28
|
};
|
|
23
29
|
}
|
|
24
30
|
export function applyProfiles(config) {
|
|
@@ -28,6 +34,7 @@ export function applyProfiles(config) {
|
|
|
28
34
|
const resolved = resolveAgentPermissions(agent, config.profiles);
|
|
29
35
|
agent.allow = resolved.allow;
|
|
30
36
|
agent.ask = resolved.ask;
|
|
37
|
+
agent.deny = resolved.deny;
|
|
31
38
|
agent.extends = [];
|
|
32
39
|
}
|
|
33
40
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"profiles.js","sourceRoot":"","sources":["../../src/config/profiles.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"profiles.js","sourceRoot":"","sources":["../../src/config/profiles.ts"],"names":[],"mappings":"AAQA,MAAM,UAAU,uBAAuB,CACrC,WAAwB,EACxB,QAA6E;IAE7E,MAAM,KAAK,GAAG,IAAI,GAAG,EAAU,CAAC;IAChC,MAAM,GAAG,GAAG,IAAI,GAAG,EAAU,CAAC;IAC9B,MAAM,IAAI,GAAG,IAAI,GAAG,EAAU,CAAC;IAE/B,oFAAoF;IACpF,KAAK,MAAM,WAAW,IAAI,WAAW,CAAC,OAAO,EAAE,CAAC;QAC9C,MAAM,OAAO,GAAG,QAAQ,CAAC,WAAW,CAAC,CAAC;QACtC,IAAI,OAAO,EAAE,CAAC;YACZ,KAAK,MAAM,CAAC,IAAI,OAAO,CAAC,KAAK;gBAAE,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;YAC5C,KAAK,MAAM,CAAC,IAAI,OAAO,CAAC,GAAG;gBAAE,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;YACxC,KAAK,MAAM,CAAC,IAAI,OAAO,CAAC,IAAI,IAAI,EAAE;gBAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QAClD,CAAC;IACH,CAAC;IAED,wCAAwC;IACxC,KAAK,MAAM,CAAC,IAAI,WAAW,CAAC,KAAK;QAAE,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;IAChD,KAAK,MAAM,CAAC,IAAI,WAAW,CAAC,GAAG;QAAE,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;IAC5C,KAAK,MAAM,CAAC,IAAI,WAAW,CAAC,IAAI;QAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;IAE9C,OAAO;QACL,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC;QACxB,GAAG,EAAE,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC;QACpB,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC;KACvB,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,aAAa,CAAC,MAAqB;IACjD,KAAK,MAAM,KAAK,IAAI,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC;QACjD,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,KAAK,CAAC;YAAE,SAAS;QAEzC,MAAM,QAAQ,GAAG,uBAAuB,CAAC,KAAK,EAAE,MAAM,CAAC,QAAQ,CAAC,CAAC;QACjE,KAAK,CAAC,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;QAC7B,KAAK,CAAC,GAAG,GAAG,QAAQ,CAAC,GAAG,CAAC;QACzB,KAAK,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC;QAC3B,KAAK,CAAC,OAAO,GAAG,EAAE,CAAC;IACrB,CAAC;AACH,CAAC"}
|
package/dist/config/schema.d.ts
CHANGED
|
@@ -1,33 +1,40 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const McpServerConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
3
3
|
type: z.ZodLiteral<"stdio">;
|
|
4
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
4
5
|
command: z.ZodString;
|
|
5
6
|
args: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
6
7
|
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, string, string>>>;
|
|
7
8
|
}, "strip", z.ZodTypeAny, {
|
|
8
9
|
type: "stdio";
|
|
10
|
+
enabled: boolean;
|
|
9
11
|
command: string;
|
|
10
12
|
args: string[];
|
|
11
13
|
env?: Record<string, string> | undefined;
|
|
12
14
|
}, {
|
|
13
15
|
type: "stdio";
|
|
14
16
|
command: string;
|
|
17
|
+
enabled?: boolean | undefined;
|
|
15
18
|
args?: string[] | undefined;
|
|
16
19
|
env?: Record<string, string> | undefined;
|
|
17
20
|
}>, z.ZodObject<{
|
|
18
21
|
type: z.ZodLiteral<"sse">;
|
|
22
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
19
23
|
url: z.ZodString;
|
|
20
24
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, string, string>>>;
|
|
21
25
|
}, "strip", z.ZodTypeAny, {
|
|
22
26
|
url: string;
|
|
23
27
|
type: "sse";
|
|
28
|
+
enabled: boolean;
|
|
24
29
|
headers?: Record<string, string> | undefined;
|
|
25
30
|
}, {
|
|
26
31
|
url: string;
|
|
27
32
|
type: "sse";
|
|
33
|
+
enabled?: boolean | undefined;
|
|
28
34
|
headers?: Record<string, string> | undefined;
|
|
29
35
|
}>, z.ZodObject<{
|
|
30
36
|
type: z.ZodLiteral<"http">;
|
|
37
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
31
38
|
url: z.ZodString;
|
|
32
39
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, string, string>>>;
|
|
33
40
|
oauth: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -39,6 +46,7 @@ export declare const McpServerConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
39
46
|
url: string;
|
|
40
47
|
type: "http";
|
|
41
48
|
oauth: boolean;
|
|
49
|
+
enabled: boolean;
|
|
42
50
|
oauth_callback_port: number;
|
|
43
51
|
client_id?: string | undefined;
|
|
44
52
|
client_secret?: string | undefined;
|
|
@@ -50,40 +58,68 @@ export declare const McpServerConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
50
58
|
oauth?: boolean | undefined;
|
|
51
59
|
client_id?: string | undefined;
|
|
52
60
|
client_secret?: string | undefined;
|
|
61
|
+
enabled?: boolean | undefined;
|
|
53
62
|
headers?: Record<string, string> | undefined;
|
|
54
63
|
oauth_callback_port?: number | undefined;
|
|
55
64
|
oauth_callback_url?: string | undefined;
|
|
56
65
|
}>]>;
|
|
57
66
|
export type McpServerConfig = z.infer<typeof McpServerConfig>;
|
|
58
|
-
export declare const
|
|
67
|
+
export declare const BuiltinProviderConfig: z.ZodObject<{
|
|
68
|
+
type: z.ZodLiteral<"builtin">;
|
|
69
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
70
|
+
}, "strip", z.ZodTypeAny, {
|
|
71
|
+
type: "builtin";
|
|
72
|
+
enabled: boolean;
|
|
73
|
+
}, {
|
|
74
|
+
type: "builtin";
|
|
75
|
+
enabled?: boolean | undefined;
|
|
76
|
+
}>;
|
|
77
|
+
export type BuiltinProviderConfig = z.infer<typeof BuiltinProviderConfig>;
|
|
78
|
+
export declare const ProviderConfig: z.ZodUnion<[z.ZodLiteral<"builtin">, z.ZodObject<{
|
|
79
|
+
type: z.ZodLiteral<"builtin">;
|
|
80
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
81
|
+
}, "strip", z.ZodTypeAny, {
|
|
82
|
+
type: "builtin";
|
|
83
|
+
enabled: boolean;
|
|
84
|
+
}, {
|
|
85
|
+
type: "builtin";
|
|
86
|
+
enabled?: boolean | undefined;
|
|
87
|
+
}>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
59
88
|
type: z.ZodLiteral<"stdio">;
|
|
89
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
60
90
|
command: z.ZodString;
|
|
61
91
|
args: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
62
92
|
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, string, string>>>;
|
|
63
93
|
}, "strip", z.ZodTypeAny, {
|
|
64
94
|
type: "stdio";
|
|
95
|
+
enabled: boolean;
|
|
65
96
|
command: string;
|
|
66
97
|
args: string[];
|
|
67
98
|
env?: Record<string, string> | undefined;
|
|
68
99
|
}, {
|
|
69
100
|
type: "stdio";
|
|
70
101
|
command: string;
|
|
102
|
+
enabled?: boolean | undefined;
|
|
71
103
|
args?: string[] | undefined;
|
|
72
104
|
env?: Record<string, string> | undefined;
|
|
73
105
|
}>, z.ZodObject<{
|
|
74
106
|
type: z.ZodLiteral<"sse">;
|
|
107
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
75
108
|
url: z.ZodString;
|
|
76
109
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, string, string>>>;
|
|
77
110
|
}, "strip", z.ZodTypeAny, {
|
|
78
111
|
url: string;
|
|
79
112
|
type: "sse";
|
|
113
|
+
enabled: boolean;
|
|
80
114
|
headers?: Record<string, string> | undefined;
|
|
81
115
|
}, {
|
|
82
116
|
url: string;
|
|
83
117
|
type: "sse";
|
|
118
|
+
enabled?: boolean | undefined;
|
|
84
119
|
headers?: Record<string, string> | undefined;
|
|
85
120
|
}>, z.ZodObject<{
|
|
86
121
|
type: z.ZodLiteral<"http">;
|
|
122
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
87
123
|
url: z.ZodString;
|
|
88
124
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, string, string>>>;
|
|
89
125
|
oauth: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -95,6 +131,7 @@ export declare const ProviderConfig: z.ZodUnion<[z.ZodLiteral<"builtin">, z.ZodD
|
|
|
95
131
|
url: string;
|
|
96
132
|
type: "http";
|
|
97
133
|
oauth: boolean;
|
|
134
|
+
enabled: boolean;
|
|
98
135
|
oauth_callback_port: number;
|
|
99
136
|
client_id?: string | undefined;
|
|
100
137
|
client_secret?: string | undefined;
|
|
@@ -106,6 +143,7 @@ export declare const ProviderConfig: z.ZodUnion<[z.ZodLiteral<"builtin">, z.ZodD
|
|
|
106
143
|
oauth?: boolean | undefined;
|
|
107
144
|
client_id?: string | undefined;
|
|
108
145
|
client_secret?: string | undefined;
|
|
146
|
+
enabled?: boolean | undefined;
|
|
109
147
|
headers?: Record<string, string> | undefined;
|
|
110
148
|
oauth_callback_port?: number | undefined;
|
|
111
149
|
oauth_callback_url?: string | undefined;
|
|
@@ -276,6 +314,7 @@ export declare const SandboxConfig: z.ZodObject<{
|
|
|
276
314
|
} | undefined;
|
|
277
315
|
}>>>;
|
|
278
316
|
}, "strip", z.ZodTypeAny, {
|
|
317
|
+
enabled: boolean;
|
|
279
318
|
filesystem: {
|
|
280
319
|
allow_write: string[];
|
|
281
320
|
deny_read: string[];
|
|
@@ -286,7 +325,6 @@ export declare const SandboxConfig: z.ZodObject<{
|
|
|
286
325
|
allowed_domains: string[];
|
|
287
326
|
denied_domains: string[];
|
|
288
327
|
};
|
|
289
|
-
enabled: boolean;
|
|
290
328
|
presets: string[];
|
|
291
329
|
overrides: Record<string, {
|
|
292
330
|
filesystem?: {
|
|
@@ -301,6 +339,7 @@ export declare const SandboxConfig: z.ZodObject<{
|
|
|
301
339
|
} | undefined;
|
|
302
340
|
}>;
|
|
303
341
|
}, {
|
|
342
|
+
enabled?: boolean | undefined;
|
|
304
343
|
filesystem?: {
|
|
305
344
|
allow_write?: string[] | undefined;
|
|
306
345
|
deny_read?: string[] | undefined;
|
|
@@ -311,7 +350,6 @@ export declare const SandboxConfig: z.ZodObject<{
|
|
|
311
350
|
allowed_domains?: string[] | undefined;
|
|
312
351
|
denied_domains?: string[] | undefined;
|
|
313
352
|
} | undefined;
|
|
314
|
-
enabled?: boolean | undefined;
|
|
315
353
|
presets?: string | string[] | undefined;
|
|
316
354
|
overrides?: Record<string, {
|
|
317
355
|
filesystem?: {
|
|
@@ -703,6 +741,7 @@ export declare const AgentConfig: z.ZodObject<{
|
|
|
703
741
|
} | undefined;
|
|
704
742
|
}>>>;
|
|
705
743
|
}, "strip", z.ZodTypeAny, {
|
|
744
|
+
enabled: boolean;
|
|
706
745
|
filesystem: {
|
|
707
746
|
allow_write: string[];
|
|
708
747
|
deny_read: string[];
|
|
@@ -713,7 +752,6 @@ export declare const AgentConfig: z.ZodObject<{
|
|
|
713
752
|
allowed_domains: string[];
|
|
714
753
|
denied_domains: string[];
|
|
715
754
|
};
|
|
716
|
-
enabled: boolean;
|
|
717
755
|
presets: string[];
|
|
718
756
|
overrides: Record<string, {
|
|
719
757
|
filesystem?: {
|
|
@@ -728,6 +766,7 @@ export declare const AgentConfig: z.ZodObject<{
|
|
|
728
766
|
} | undefined;
|
|
729
767
|
}>;
|
|
730
768
|
}, {
|
|
769
|
+
enabled?: boolean | undefined;
|
|
731
770
|
filesystem?: {
|
|
732
771
|
allow_write?: string[] | undefined;
|
|
733
772
|
deny_read?: string[] | undefined;
|
|
@@ -738,7 +777,6 @@ export declare const AgentConfig: z.ZodObject<{
|
|
|
738
777
|
allowed_domains?: string[] | undefined;
|
|
739
778
|
denied_domains?: string[] | undefined;
|
|
740
779
|
} | undefined;
|
|
741
|
-
enabled?: boolean | undefined;
|
|
742
780
|
presets?: string | string[] | undefined;
|
|
743
781
|
overrides?: Record<string, {
|
|
744
782
|
filesystem?: {
|
|
@@ -809,6 +847,7 @@ export declare const AgentConfig: z.ZodObject<{
|
|
|
809
847
|
timeout_ms: number;
|
|
810
848
|
};
|
|
811
849
|
sandbox: {
|
|
850
|
+
enabled: boolean;
|
|
812
851
|
filesystem: {
|
|
813
852
|
allow_write: string[];
|
|
814
853
|
deny_read: string[];
|
|
@@ -819,7 +858,6 @@ export declare const AgentConfig: z.ZodObject<{
|
|
|
819
858
|
allowed_domains: string[];
|
|
820
859
|
denied_domains: string[];
|
|
821
860
|
};
|
|
822
|
-
enabled: boolean;
|
|
823
861
|
presets: string[];
|
|
824
862
|
overrides: Record<string, {
|
|
825
863
|
filesystem?: {
|
|
@@ -887,6 +925,7 @@ export declare const AgentConfig: z.ZodObject<{
|
|
|
887
925
|
timeout_ms?: number | undefined;
|
|
888
926
|
} | undefined;
|
|
889
927
|
sandbox?: {
|
|
928
|
+
enabled?: boolean | undefined;
|
|
890
929
|
filesystem?: {
|
|
891
930
|
allow_write?: string[] | undefined;
|
|
892
931
|
deny_read?: string[] | undefined;
|
|
@@ -897,7 +936,6 @@ export declare const AgentConfig: z.ZodObject<{
|
|
|
897
936
|
allowed_domains?: string[] | undefined;
|
|
898
937
|
denied_domains?: string[] | undefined;
|
|
899
938
|
} | undefined;
|
|
900
|
-
enabled?: boolean | undefined;
|
|
901
939
|
presets?: string | string[] | undefined;
|
|
902
940
|
overrides?: Record<string, {
|
|
903
941
|
filesystem?: {
|
|
@@ -963,12 +1001,15 @@ export type AgentConfig = z.infer<typeof AgentConfig>;
|
|
|
963
1001
|
export declare const ProfileConfig: z.ZodObject<{
|
|
964
1002
|
allow: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
965
1003
|
ask: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1004
|
+
deny: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
966
1005
|
}, "strip", z.ZodTypeAny, {
|
|
967
1006
|
allow: string[];
|
|
968
1007
|
ask: string[];
|
|
1008
|
+
deny: string[];
|
|
969
1009
|
}, {
|
|
970
1010
|
allow?: string[] | undefined;
|
|
971
1011
|
ask?: string[] | undefined;
|
|
1012
|
+
deny?: string[] | undefined;
|
|
972
1013
|
}>;
|
|
973
1014
|
export type ProfileConfig = z.infer<typeof ProfileConfig>;
|
|
974
1015
|
export declare const ApprovalProviderConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -1679,35 +1720,51 @@ export declare const SandboxPresetConfig: z.ZodObject<{
|
|
|
1679
1720
|
}>;
|
|
1680
1721
|
export type SandboxPresetConfig = z.infer<typeof SandboxPresetConfig>;
|
|
1681
1722
|
export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
1682
|
-
providers: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodLiteral<"builtin">, z.
|
|
1723
|
+
providers: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodLiteral<"builtin">, z.ZodObject<{
|
|
1724
|
+
type: z.ZodLiteral<"builtin">;
|
|
1725
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1726
|
+
}, "strip", z.ZodTypeAny, {
|
|
1727
|
+
type: "builtin";
|
|
1728
|
+
enabled: boolean;
|
|
1729
|
+
}, {
|
|
1730
|
+
type: "builtin";
|
|
1731
|
+
enabled?: boolean | undefined;
|
|
1732
|
+
}>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1683
1733
|
type: z.ZodLiteral<"stdio">;
|
|
1734
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1684
1735
|
command: z.ZodString;
|
|
1685
1736
|
args: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1686
1737
|
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, string, string>>>;
|
|
1687
1738
|
}, "strip", z.ZodTypeAny, {
|
|
1688
1739
|
type: "stdio";
|
|
1740
|
+
enabled: boolean;
|
|
1689
1741
|
command: string;
|
|
1690
1742
|
args: string[];
|
|
1691
1743
|
env?: Record<string, string> | undefined;
|
|
1692
1744
|
}, {
|
|
1693
1745
|
type: "stdio";
|
|
1694
1746
|
command: string;
|
|
1747
|
+
enabled?: boolean | undefined;
|
|
1695
1748
|
args?: string[] | undefined;
|
|
1696
1749
|
env?: Record<string, string> | undefined;
|
|
1697
1750
|
}>, z.ZodObject<{
|
|
1698
1751
|
type: z.ZodLiteral<"sse">;
|
|
1752
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1699
1753
|
url: z.ZodString;
|
|
1700
1754
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, string, string>>>;
|
|
1701
1755
|
}, "strip", z.ZodTypeAny, {
|
|
1702
1756
|
url: string;
|
|
1703
1757
|
type: "sse";
|
|
1758
|
+
enabled: boolean;
|
|
1704
1759
|
headers?: Record<string, string> | undefined;
|
|
1705
1760
|
}, {
|
|
1706
1761
|
url: string;
|
|
1707
1762
|
type: "sse";
|
|
1763
|
+
enabled?: boolean | undefined;
|
|
1708
1764
|
headers?: Record<string, string> | undefined;
|
|
1709
1765
|
}>, z.ZodObject<{
|
|
1710
1766
|
type: z.ZodLiteral<"http">;
|
|
1767
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1711
1768
|
url: z.ZodString;
|
|
1712
1769
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, string, string>>>;
|
|
1713
1770
|
oauth: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -1719,6 +1776,7 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
1719
1776
|
url: string;
|
|
1720
1777
|
type: "http";
|
|
1721
1778
|
oauth: boolean;
|
|
1779
|
+
enabled: boolean;
|
|
1722
1780
|
oauth_callback_port: number;
|
|
1723
1781
|
client_id?: string | undefined;
|
|
1724
1782
|
client_secret?: string | undefined;
|
|
@@ -1730,6 +1788,7 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
1730
1788
|
oauth?: boolean | undefined;
|
|
1731
1789
|
client_id?: string | undefined;
|
|
1732
1790
|
client_secret?: string | undefined;
|
|
1791
|
+
enabled?: boolean | undefined;
|
|
1733
1792
|
headers?: Record<string, string> | undefined;
|
|
1734
1793
|
oauth_callback_port?: number | undefined;
|
|
1735
1794
|
oauth_callback_url?: string | undefined;
|
|
@@ -1737,12 +1796,15 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
1737
1796
|
profiles: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1738
1797
|
allow: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1739
1798
|
ask: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1799
|
+
deny: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1740
1800
|
}, "strip", z.ZodTypeAny, {
|
|
1741
1801
|
allow: string[];
|
|
1742
1802
|
ask: string[];
|
|
1803
|
+
deny: string[];
|
|
1743
1804
|
}, {
|
|
1744
1805
|
allow?: string[] | undefined;
|
|
1745
1806
|
ask?: string[] | undefined;
|
|
1807
|
+
deny?: string[] | undefined;
|
|
1746
1808
|
}>>>;
|
|
1747
1809
|
sandbox_presets: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1748
1810
|
filesystem: z.ZodOptional<z.ZodObject<{
|
|
@@ -2157,6 +2219,7 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2157
2219
|
} | undefined;
|
|
2158
2220
|
}>>>;
|
|
2159
2221
|
}, "strip", z.ZodTypeAny, {
|
|
2222
|
+
enabled: boolean;
|
|
2160
2223
|
filesystem: {
|
|
2161
2224
|
allow_write: string[];
|
|
2162
2225
|
deny_read: string[];
|
|
@@ -2167,7 +2230,6 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2167
2230
|
allowed_domains: string[];
|
|
2168
2231
|
denied_domains: string[];
|
|
2169
2232
|
};
|
|
2170
|
-
enabled: boolean;
|
|
2171
2233
|
presets: string[];
|
|
2172
2234
|
overrides: Record<string, {
|
|
2173
2235
|
filesystem?: {
|
|
@@ -2182,6 +2244,7 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2182
2244
|
} | undefined;
|
|
2183
2245
|
}>;
|
|
2184
2246
|
}, {
|
|
2247
|
+
enabled?: boolean | undefined;
|
|
2185
2248
|
filesystem?: {
|
|
2186
2249
|
allow_write?: string[] | undefined;
|
|
2187
2250
|
deny_read?: string[] | undefined;
|
|
@@ -2192,7 +2255,6 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2192
2255
|
allowed_domains?: string[] | undefined;
|
|
2193
2256
|
denied_domains?: string[] | undefined;
|
|
2194
2257
|
} | undefined;
|
|
2195
|
-
enabled?: boolean | undefined;
|
|
2196
2258
|
presets?: string | string[] | undefined;
|
|
2197
2259
|
overrides?: Record<string, {
|
|
2198
2260
|
filesystem?: {
|
|
@@ -2263,6 +2325,7 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2263
2325
|
timeout_ms: number;
|
|
2264
2326
|
};
|
|
2265
2327
|
sandbox: {
|
|
2328
|
+
enabled: boolean;
|
|
2266
2329
|
filesystem: {
|
|
2267
2330
|
allow_write: string[];
|
|
2268
2331
|
deny_read: string[];
|
|
@@ -2273,7 +2336,6 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2273
2336
|
allowed_domains: string[];
|
|
2274
2337
|
denied_domains: string[];
|
|
2275
2338
|
};
|
|
2276
|
-
enabled: boolean;
|
|
2277
2339
|
presets: string[];
|
|
2278
2340
|
overrides: Record<string, {
|
|
2279
2341
|
filesystem?: {
|
|
@@ -2341,6 +2403,7 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2341
2403
|
timeout_ms?: number | undefined;
|
|
2342
2404
|
} | undefined;
|
|
2343
2405
|
sandbox?: {
|
|
2406
|
+
enabled?: boolean | undefined;
|
|
2344
2407
|
filesystem?: {
|
|
2345
2408
|
allow_write?: string[] | undefined;
|
|
2346
2409
|
deny_read?: string[] | undefined;
|
|
@@ -2351,7 +2414,6 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2351
2414
|
allowed_domains?: string[] | undefined;
|
|
2352
2415
|
denied_domains?: string[] | undefined;
|
|
2353
2416
|
} | undefined;
|
|
2354
|
-
enabled?: boolean | undefined;
|
|
2355
2417
|
presets?: string | string[] | undefined;
|
|
2356
2418
|
overrides?: Record<string, {
|
|
2357
2419
|
filesystem?: {
|
|
@@ -2737,26 +2799,33 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2737
2799
|
}>;
|
|
2738
2800
|
providers: Record<string, {
|
|
2739
2801
|
type: "stdio";
|
|
2802
|
+
enabled: boolean;
|
|
2740
2803
|
command: string;
|
|
2741
2804
|
args: string[];
|
|
2742
2805
|
env?: Record<string, string> | undefined;
|
|
2743
2806
|
} | {
|
|
2744
2807
|
url: string;
|
|
2745
2808
|
type: "sse";
|
|
2809
|
+
enabled: boolean;
|
|
2746
2810
|
headers?: Record<string, string> | undefined;
|
|
2747
2811
|
} | {
|
|
2748
2812
|
url: string;
|
|
2749
2813
|
type: "http";
|
|
2750
2814
|
oauth: boolean;
|
|
2815
|
+
enabled: boolean;
|
|
2751
2816
|
oauth_callback_port: number;
|
|
2752
2817
|
client_id?: string | undefined;
|
|
2753
2818
|
client_secret?: string | undefined;
|
|
2754
2819
|
headers?: Record<string, string> | undefined;
|
|
2755
2820
|
oauth_callback_url?: string | undefined;
|
|
2756
|
-
} | "builtin"
|
|
2821
|
+
} | "builtin" | {
|
|
2822
|
+
type: "builtin";
|
|
2823
|
+
enabled: boolean;
|
|
2824
|
+
}>;
|
|
2757
2825
|
profiles: Record<string, {
|
|
2758
2826
|
allow: string[];
|
|
2759
2827
|
ask: string[];
|
|
2828
|
+
deny: string[];
|
|
2760
2829
|
}>;
|
|
2761
2830
|
clis: Record<string, {
|
|
2762
2831
|
max_output_bytes: number;
|
|
@@ -2801,6 +2870,7 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2801
2870
|
timeout_ms: number;
|
|
2802
2871
|
};
|
|
2803
2872
|
sandbox: {
|
|
2873
|
+
enabled: boolean;
|
|
2804
2874
|
filesystem: {
|
|
2805
2875
|
allow_write: string[];
|
|
2806
2876
|
deny_read: string[];
|
|
@@ -2811,7 +2881,6 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2811
2881
|
allowed_domains: string[];
|
|
2812
2882
|
denied_domains: string[];
|
|
2813
2883
|
};
|
|
2814
|
-
enabled: boolean;
|
|
2815
2884
|
presets: string[];
|
|
2816
2885
|
overrides: Record<string, {
|
|
2817
2886
|
filesystem?: {
|
|
@@ -2960,11 +3029,13 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2960
3029
|
providers?: Record<string, {
|
|
2961
3030
|
type: "stdio";
|
|
2962
3031
|
command: string;
|
|
3032
|
+
enabled?: boolean | undefined;
|
|
2963
3033
|
args?: string[] | undefined;
|
|
2964
3034
|
env?: Record<string, string> | undefined;
|
|
2965
3035
|
} | {
|
|
2966
3036
|
url: string;
|
|
2967
3037
|
type: "sse";
|
|
3038
|
+
enabled?: boolean | undefined;
|
|
2968
3039
|
headers?: Record<string, string> | undefined;
|
|
2969
3040
|
} | {
|
|
2970
3041
|
url: string;
|
|
@@ -2972,13 +3043,18 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
2972
3043
|
oauth?: boolean | undefined;
|
|
2973
3044
|
client_id?: string | undefined;
|
|
2974
3045
|
client_secret?: string | undefined;
|
|
3046
|
+
enabled?: boolean | undefined;
|
|
2975
3047
|
headers?: Record<string, string> | undefined;
|
|
2976
3048
|
oauth_callback_port?: number | undefined;
|
|
2977
3049
|
oauth_callback_url?: string | undefined;
|
|
2978
|
-
} | "builtin"
|
|
3050
|
+
} | "builtin" | {
|
|
3051
|
+
type: "builtin";
|
|
3052
|
+
enabled?: boolean | undefined;
|
|
3053
|
+
}> | undefined;
|
|
2979
3054
|
profiles?: Record<string, {
|
|
2980
3055
|
allow?: string[] | undefined;
|
|
2981
3056
|
ask?: string[] | undefined;
|
|
3057
|
+
deny?: string[] | undefined;
|
|
2982
3058
|
}> | undefined;
|
|
2983
3059
|
clis?: Record<string, {
|
|
2984
3060
|
cwd?: string | undefined;
|
|
@@ -3023,6 +3099,7 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3023
3099
|
timeout_ms?: number | undefined;
|
|
3024
3100
|
} | undefined;
|
|
3025
3101
|
sandbox?: {
|
|
3102
|
+
enabled?: boolean | undefined;
|
|
3026
3103
|
filesystem?: {
|
|
3027
3104
|
allow_write?: string[] | undefined;
|
|
3028
3105
|
deny_read?: string[] | undefined;
|
|
@@ -3033,7 +3110,6 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3033
3110
|
allowed_domains?: string[] | undefined;
|
|
3034
3111
|
denied_domains?: string[] | undefined;
|
|
3035
3112
|
} | undefined;
|
|
3036
|
-
enabled?: boolean | undefined;
|
|
3037
3113
|
presets?: string | string[] | undefined;
|
|
3038
3114
|
overrides?: Record<string, {
|
|
3039
3115
|
filesystem?: {
|
|
@@ -3175,6 +3251,7 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3175
3251
|
timeout_ms: number;
|
|
3176
3252
|
};
|
|
3177
3253
|
sandbox: {
|
|
3254
|
+
enabled: boolean;
|
|
3178
3255
|
filesystem: {
|
|
3179
3256
|
allow_write: string[];
|
|
3180
3257
|
deny_read: string[];
|
|
@@ -3185,7 +3262,6 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3185
3262
|
allowed_domains: string[];
|
|
3186
3263
|
denied_domains: string[];
|
|
3187
3264
|
};
|
|
3188
|
-
enabled: boolean;
|
|
3189
3265
|
presets: string[];
|
|
3190
3266
|
overrides: Record<string, {
|
|
3191
3267
|
filesystem?: {
|
|
@@ -3262,26 +3338,33 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3262
3338
|
}>;
|
|
3263
3339
|
providers: Record<string, {
|
|
3264
3340
|
type: "stdio";
|
|
3341
|
+
enabled: boolean;
|
|
3265
3342
|
command: string;
|
|
3266
3343
|
args: string[];
|
|
3267
3344
|
env?: Record<string, string> | undefined;
|
|
3268
3345
|
} | {
|
|
3269
3346
|
url: string;
|
|
3270
3347
|
type: "sse";
|
|
3348
|
+
enabled: boolean;
|
|
3271
3349
|
headers?: Record<string, string> | undefined;
|
|
3272
3350
|
} | {
|
|
3273
3351
|
url: string;
|
|
3274
3352
|
type: "http";
|
|
3275
3353
|
oauth: boolean;
|
|
3354
|
+
enabled: boolean;
|
|
3276
3355
|
oauth_callback_port: number;
|
|
3277
3356
|
client_id?: string | undefined;
|
|
3278
3357
|
client_secret?: string | undefined;
|
|
3279
3358
|
headers?: Record<string, string> | undefined;
|
|
3280
3359
|
oauth_callback_url?: string | undefined;
|
|
3281
|
-
} | "builtin"
|
|
3360
|
+
} | "builtin" | {
|
|
3361
|
+
type: "builtin";
|
|
3362
|
+
enabled: boolean;
|
|
3363
|
+
}>;
|
|
3282
3364
|
profiles: Record<string, {
|
|
3283
3365
|
allow: string[];
|
|
3284
3366
|
ask: string[];
|
|
3367
|
+
deny: string[];
|
|
3285
3368
|
}>;
|
|
3286
3369
|
clis: Record<string, {
|
|
3287
3370
|
max_output_bytes: number;
|
|
@@ -3406,11 +3489,13 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3406
3489
|
providers?: Record<string, {
|
|
3407
3490
|
type: "stdio";
|
|
3408
3491
|
command: string;
|
|
3492
|
+
enabled?: boolean | undefined;
|
|
3409
3493
|
args?: string[] | undefined;
|
|
3410
3494
|
env?: Record<string, string> | undefined;
|
|
3411
3495
|
} | {
|
|
3412
3496
|
url: string;
|
|
3413
3497
|
type: "sse";
|
|
3498
|
+
enabled?: boolean | undefined;
|
|
3414
3499
|
headers?: Record<string, string> | undefined;
|
|
3415
3500
|
} | {
|
|
3416
3501
|
url: string;
|
|
@@ -3418,13 +3503,18 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3418
3503
|
oauth?: boolean | undefined;
|
|
3419
3504
|
client_id?: string | undefined;
|
|
3420
3505
|
client_secret?: string | undefined;
|
|
3506
|
+
enabled?: boolean | undefined;
|
|
3421
3507
|
headers?: Record<string, string> | undefined;
|
|
3422
3508
|
oauth_callback_port?: number | undefined;
|
|
3423
3509
|
oauth_callback_url?: string | undefined;
|
|
3424
|
-
} | "builtin"
|
|
3510
|
+
} | "builtin" | {
|
|
3511
|
+
type: "builtin";
|
|
3512
|
+
enabled?: boolean | undefined;
|
|
3513
|
+
}> | undefined;
|
|
3425
3514
|
profiles?: Record<string, {
|
|
3426
3515
|
allow?: string[] | undefined;
|
|
3427
3516
|
ask?: string[] | undefined;
|
|
3517
|
+
deny?: string[] | undefined;
|
|
3428
3518
|
}> | undefined;
|
|
3429
3519
|
clis?: Record<string, {
|
|
3430
3520
|
cwd?: string | undefined;
|
|
@@ -3469,6 +3559,7 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3469
3559
|
timeout_ms?: number | undefined;
|
|
3470
3560
|
} | undefined;
|
|
3471
3561
|
sandbox?: {
|
|
3562
|
+
enabled?: boolean | undefined;
|
|
3472
3563
|
filesystem?: {
|
|
3473
3564
|
allow_write?: string[] | undefined;
|
|
3474
3565
|
deny_read?: string[] | undefined;
|
|
@@ -3479,7 +3570,6 @@ export declare const GatewayConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3479
3570
|
allowed_domains?: string[] | undefined;
|
|
3480
3571
|
denied_domains?: string[] | undefined;
|
|
3481
3572
|
} | undefined;
|
|
3482
|
-
enabled?: boolean | undefined;
|
|
3483
3573
|
presets?: string | string[] | undefined;
|
|
3484
3574
|
overrides?: Record<string, {
|
|
3485
3575
|
filesystem?: {
|
|
@@ -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
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/config/schema.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqBrB,CAAC;AACN,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC"}
|