@workglow/util 0.0.120 → 0.0.122

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.
Files changed (62) hide show
  1. package/dist/browser.js +337 -1250
  2. package/dist/browser.js.map +6 -11
  3. package/dist/bun.js +334 -1260
  4. package/dist/bun.js.map +6 -11
  5. package/dist/common.d.ts +0 -5
  6. package/dist/common.d.ts.map +1 -1
  7. package/dist/credentials/ChainedCredentialStore.d.ts.map +1 -1
  8. package/dist/credentials/EnvCredentialStore.d.ts.map +1 -1
  9. package/dist/credentials/InMemoryCredentialStore.d.ts.map +1 -1
  10. package/dist/di/Container.d.ts.map +1 -1
  11. package/dist/di/ServiceRegistry.d.ts.map +1 -1
  12. package/dist/events/EventEmitter.d.ts.map +1 -1
  13. package/dist/graph/directedAcyclicGraph.d.ts.map +1 -1
  14. package/dist/graph/directedGraph.d.ts.map +1 -1
  15. package/dist/graph/errors.d.ts.map +1 -1
  16. package/dist/graph/graph.d.ts.map +1 -1
  17. package/dist/logging/ConsoleLogger.d.ts.map +1 -1
  18. package/dist/logging/NullLogger.d.ts.map +1 -1
  19. package/dist/node.js +335 -1260
  20. package/dist/node.js.map +6 -11
  21. package/dist/telemetry/ConsoleTelemetryProvider.d.ts.map +1 -1
  22. package/dist/telemetry/NoopTelemetryProvider.d.ts.map +1 -1
  23. package/dist/telemetry/OTelTelemetryProvider.d.ts.map +1 -1
  24. package/dist/types.d.ts +0 -1
  25. package/dist/types.d.ts.map +1 -1
  26. package/dist/utilities/BaseError.d.ts.map +1 -1
  27. package/dist/vector/Tensor.d.ts +1 -1
  28. package/dist/vector/Tensor.d.ts.map +1 -1
  29. package/dist/vector/TypedArray.d.ts +4 -4
  30. package/dist/vector/TypedArray.d.ts.map +1 -1
  31. package/dist/worker/Worker.browser.d.ts +6 -1
  32. package/dist/worker/Worker.browser.d.ts.map +1 -1
  33. package/dist/worker/Worker.bun.d.ts +6 -1
  34. package/dist/worker/Worker.bun.d.ts.map +1 -1
  35. package/dist/worker/Worker.node.d.ts +6 -1
  36. package/dist/worker/Worker.node.d.ts.map +1 -1
  37. package/dist/worker/WorkerManager.d.ts +7 -1
  38. package/dist/worker/WorkerManager.d.ts.map +1 -1
  39. package/dist/worker/{WorkerServer.d.ts → WorkerServerBase.d.ts} +5 -4
  40. package/dist/worker/WorkerServerBase.d.ts.map +1 -0
  41. package/dist/worker-browser.js +894 -0
  42. package/dist/worker-browser.js.map +19 -0
  43. package/dist/worker-bun.js +895 -0
  44. package/dist/worker-bun.js.map +19 -0
  45. package/dist/worker-entry.d.ts +25 -0
  46. package/dist/worker-entry.d.ts.map +1 -0
  47. package/dist/worker-node.js +914 -0
  48. package/dist/worker-node.js.map +19 -0
  49. package/package.json +23 -20
  50. package/dist/json-schema/SchemaUtils.d.ts +0 -58
  51. package/dist/json-schema/SchemaUtils.d.ts.map +0 -1
  52. package/dist/json-schema/SchemaValidation.d.ts +0 -8
  53. package/dist/json-schema/SchemaValidation.d.ts.map +0 -1
  54. package/dist/mcp/McpAuthProvider.d.ts +0 -70
  55. package/dist/mcp/McpAuthProvider.d.ts.map +0 -1
  56. package/dist/mcp/McpAuthTypes.d.ts +0 -218
  57. package/dist/mcp/McpAuthTypes.d.ts.map +0 -1
  58. package/dist/mcp/McpClientUtil.browser.d.ts +0 -198
  59. package/dist/mcp/McpClientUtil.browser.d.ts.map +0 -1
  60. package/dist/mcp/McpClientUtil.node.d.ts +0 -222
  61. package/dist/mcp/McpClientUtil.node.d.ts.map +0 -1
  62. package/dist/worker/WorkerServer.d.ts.map +0 -1
@@ -1,198 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright 2025 Steven Roussey <sroussey@gmail.com>
4
- * SPDX-License-Identifier: Apache-2.0
5
- *
6
- * Browser-only MCP client util. Supports streamable-http only.
7
- * stdio is not available in the browser.
8
- */
9
- import { Client } from "@modelcontextprotocol/sdk/client";
10
- import type { Transport } from "@modelcontextprotocol/sdk/shared/transport.js";
11
- import type { McpAuthConfig } from "./McpAuthTypes";
12
- import type { OAuthClientProvider } from "@modelcontextprotocol/sdk/client/auth.js";
13
- export declare const mcpTransportTypes: readonly ["streamable-http", "sse"];
14
- export declare const mcpServerConfigSchema: {
15
- readonly properties: {
16
- readonly auth_type: {
17
- readonly type: "string";
18
- readonly enum: readonly ["none", "bearer", "client_credentials", "private_key_jwt", "static_private_key_jwt", "authorization_code"];
19
- readonly title: "Auth Type";
20
- readonly description: "Authentication method for connecting to the MCP server";
21
- readonly default: "none";
22
- };
23
- readonly auth_token: {
24
- readonly type: "string";
25
- readonly format: "credential";
26
- readonly title: "Bearer Token";
27
- readonly description: "Static bearer token or API key (for bearer auth)";
28
- };
29
- readonly auth_client_id: {
30
- readonly type: "string";
31
- readonly title: "Client ID";
32
- readonly description: "OAuth client ID (for OAuth auth types)";
33
- };
34
- readonly auth_client_secret: {
35
- readonly type: "string";
36
- readonly format: "credential";
37
- readonly title: "Client Secret";
38
- readonly description: "OAuth client secret (for client_credentials auth)";
39
- };
40
- readonly auth_private_key: {
41
- readonly type: "string";
42
- readonly format: "credential";
43
- readonly title: "Private Key";
44
- readonly description: "PEM or JWK private key (for private_key_jwt auth)";
45
- };
46
- readonly auth_algorithm: {
47
- readonly type: "string";
48
- readonly title: "Algorithm";
49
- readonly description: "JWT signing algorithm, e.g. RS256, ES256 (for private_key_jwt auth)";
50
- };
51
- readonly auth_jwt_bearer_assertion: {
52
- readonly type: "string";
53
- readonly format: "credential";
54
- readonly title: "JWT Assertion";
55
- readonly description: "Pre-built JWT assertion (for static_private_key_jwt auth)";
56
- };
57
- readonly auth_redirect_url: {
58
- readonly type: "string";
59
- readonly format: "uri";
60
- readonly title: "Redirect URL";
61
- readonly description: "OAuth redirect URL (for authorization_code auth)";
62
- };
63
- readonly auth_scope: {
64
- readonly type: "string";
65
- readonly title: "Scope";
66
- readonly description: "OAuth scope (space-separated)";
67
- };
68
- readonly auth_client_name: {
69
- readonly type: "string";
70
- readonly title: "Client Name";
71
- readonly description: "Optional OAuth client display name";
72
- };
73
- readonly auth_jwt_lifetime_seconds: {
74
- readonly type: "number";
75
- readonly title: "JWT Lifetime";
76
- readonly description: "JWT lifetime in seconds (default: 300)";
77
- readonly minimum: 1;
78
- };
79
- readonly transport: {
80
- readonly type: "string";
81
- readonly enum: readonly ["streamable-http", "sse"];
82
- readonly title: "Transport";
83
- readonly description: "The transport type to use for connecting to the MCP server";
84
- };
85
- readonly server_url: {
86
- readonly type: "string";
87
- readonly format: "uri";
88
- readonly title: "Server URL";
89
- readonly description: "The URL of the MCP server (for streamable-http transport)";
90
- };
91
- };
92
- readonly allOf: readonly [{
93
- readonly if: {
94
- readonly properties: {
95
- readonly auth_type: {
96
- readonly const: "bearer";
97
- };
98
- };
99
- readonly required: readonly ["auth_type"];
100
- };
101
- readonly then: {
102
- readonly required: readonly ["auth_token"];
103
- readonly properties: {
104
- readonly auth_token: true;
105
- };
106
- };
107
- }, {
108
- readonly if: {
109
- readonly properties: {
110
- readonly auth_type: {
111
- readonly const: "client_credentials";
112
- };
113
- };
114
- readonly required: readonly ["auth_type"];
115
- };
116
- readonly then: {
117
- readonly required: readonly ["auth_client_id", "auth_client_secret"];
118
- readonly properties: {
119
- readonly auth_client_id: true;
120
- readonly auth_client_secret: true;
121
- readonly auth_client_name: true;
122
- readonly auth_scope: true;
123
- };
124
- };
125
- }, {
126
- readonly if: {
127
- readonly properties: {
128
- readonly auth_type: {
129
- readonly const: "private_key_jwt";
130
- };
131
- };
132
- readonly required: readonly ["auth_type"];
133
- };
134
- readonly then: {
135
- readonly required: readonly ["auth_client_id", "auth_private_key", "auth_algorithm"];
136
- readonly properties: {
137
- readonly auth_client_id: true;
138
- readonly auth_private_key: true;
139
- readonly auth_algorithm: true;
140
- readonly auth_client_name: true;
141
- readonly auth_jwt_lifetime_seconds: true;
142
- readonly auth_scope: true;
143
- };
144
- };
145
- }, {
146
- readonly if: {
147
- readonly properties: {
148
- readonly auth_type: {
149
- readonly const: "static_private_key_jwt";
150
- };
151
- };
152
- readonly required: readonly ["auth_type"];
153
- };
154
- readonly then: {
155
- readonly required: readonly ["auth_client_id", "auth_jwt_bearer_assertion"];
156
- readonly properties: {
157
- readonly auth_client_id: true;
158
- readonly auth_jwt_bearer_assertion: true;
159
- readonly auth_client_name: true;
160
- readonly auth_scope: true;
161
- };
162
- };
163
- }, {
164
- readonly if: {
165
- readonly properties: {
166
- readonly auth_type: {
167
- readonly const: "authorization_code";
168
- };
169
- };
170
- readonly required: readonly ["auth_type"];
171
- };
172
- readonly then: {
173
- readonly required: readonly ["auth_client_id", "auth_redirect_url"];
174
- readonly properties: {
175
- readonly auth_client_id: true;
176
- readonly auth_client_secret: true;
177
- readonly auth_redirect_url: true;
178
- readonly auth_scope: true;
179
- };
180
- };
181
- }];
182
- };
183
- export type McpTransportType = (typeof mcpTransportTypes)[number];
184
- export interface McpServerConfig {
185
- transport: McpTransportType;
186
- server_url?: string;
187
- auth?: McpAuthConfig;
188
- auth_type?: string;
189
- authProvider?: OAuthClientProvider;
190
- }
191
- export declare function createMcpClient(config: McpServerConfig, signal?: AbortSignal): Promise<{
192
- client: Client;
193
- transport: Transport;
194
- }>;
195
- export declare const mcpClientFactory: {
196
- create: typeof createMcpClient;
197
- };
198
- //# sourceMappingURL=McpClientUtil.browser.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"McpClientUtil.browser.d.ts","sourceRoot":"","sources":["../../src/mcp/McpClientUtil.browser.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAE,MAAM,EAAE,MAAM,kCAAkC,CAAC;AAG1D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,+CAA+C,CAAC;AAI/E,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AACpD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,0CAA0C,CAAC;AAEpF,eAAO,MAAM,iBAAiB,qCAAsC,CAAC;AAErE,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiBxB,CAAC;AAEX,MAAM,MAAM,gBAAgB,GAAG,CAAC,OAAO,iBAAiB,CAAC,CAAC,MAAM,CAAC,CAAC;AAElE,MAAM,WAAW,eAAe;IAC9B,SAAS,EAAE,gBAAgB,CAAC;IAC5B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,aAAa,CAAC;IAErB,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB,YAAY,CAAC,EAAE,mBAAmB,CAAC;CACpC;AAED,wBAAsB,eAAe,CACnC,MAAM,EAAE,eAAe,EACvB,MAAM,CAAC,EAAE,WAAW,GACnB,OAAO,CAAC;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,SAAS,CAAA;CAAE,CAAC,CA2FnD;AAED,eAAO,MAAM,gBAAgB;;CAE5B,CAAC"}
@@ -1,222 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright 2025 Steven Roussey <sroussey@gmail.com>
4
- * SPDX-License-Identifier: Apache-2.0
5
- *
6
- * Node/Bun MCP client util. Supports stdio, sse, and streamable-http.
7
- * stdio is not available in the browser.
8
- */
9
- import { Client } from "@modelcontextprotocol/sdk/client";
10
- import type { Transport } from "@modelcontextprotocol/sdk/shared/transport.js";
11
- import type { McpAuthConfig } from "./McpAuthTypes";
12
- import type { OAuthClientProvider } from "@modelcontextprotocol/sdk/client/auth.js";
13
- export declare const mcpTransportTypes: readonly ["stdio", "sse", "streamable-http"];
14
- export declare const mcpServerConfigSchema: {
15
- readonly properties: {
16
- readonly auth_type: {
17
- readonly type: "string";
18
- readonly enum: readonly ["none", "bearer", "client_credentials", "private_key_jwt", "static_private_key_jwt", "authorization_code"];
19
- readonly title: "Auth Type";
20
- readonly description: "Authentication method for connecting to the MCP server";
21
- readonly default: "none";
22
- };
23
- readonly auth_token: {
24
- readonly type: "string";
25
- readonly format: "credential";
26
- readonly title: "Bearer Token";
27
- readonly description: "Static bearer token or API key (for bearer auth)";
28
- };
29
- readonly auth_client_id: {
30
- readonly type: "string";
31
- readonly title: "Client ID";
32
- readonly description: "OAuth client ID (for OAuth auth types)";
33
- };
34
- readonly auth_client_secret: {
35
- readonly type: "string";
36
- readonly format: "credential";
37
- readonly title: "Client Secret";
38
- readonly description: "OAuth client secret (for client_credentials auth)";
39
- };
40
- readonly auth_private_key: {
41
- readonly type: "string";
42
- readonly format: "credential";
43
- readonly title: "Private Key";
44
- readonly description: "PEM or JWK private key (for private_key_jwt auth)";
45
- };
46
- readonly auth_algorithm: {
47
- readonly type: "string";
48
- readonly title: "Algorithm";
49
- readonly description: "JWT signing algorithm, e.g. RS256, ES256 (for private_key_jwt auth)";
50
- };
51
- readonly auth_jwt_bearer_assertion: {
52
- readonly type: "string";
53
- readonly format: "credential";
54
- readonly title: "JWT Assertion";
55
- readonly description: "Pre-built JWT assertion (for static_private_key_jwt auth)";
56
- };
57
- readonly auth_redirect_url: {
58
- readonly type: "string";
59
- readonly format: "uri";
60
- readonly title: "Redirect URL";
61
- readonly description: "OAuth redirect URL (for authorization_code auth)";
62
- };
63
- readonly auth_scope: {
64
- readonly type: "string";
65
- readonly title: "Scope";
66
- readonly description: "OAuth scope (space-separated)";
67
- };
68
- readonly auth_client_name: {
69
- readonly type: "string";
70
- readonly title: "Client Name";
71
- readonly description: "Optional OAuth client display name";
72
- };
73
- readonly auth_jwt_lifetime_seconds: {
74
- readonly type: "number";
75
- readonly title: "JWT Lifetime";
76
- readonly description: "JWT lifetime in seconds (default: 300)";
77
- readonly minimum: 1;
78
- };
79
- readonly transport: {
80
- readonly type: "string";
81
- readonly enum: readonly ["stdio", "sse", "streamable-http"];
82
- readonly title: "Transport";
83
- readonly description: "The transport type to use for connecting to the MCP server";
84
- };
85
- readonly server_url: {
86
- readonly type: "string";
87
- readonly format: "string:uri";
88
- readonly title: "Server URL";
89
- readonly description: "The URL of the MCP server (for sse and streamable-http transports)";
90
- };
91
- readonly command: {
92
- readonly type: "string";
93
- readonly title: "Command";
94
- readonly description: "The command to run (for stdio transport)";
95
- };
96
- readonly args: {
97
- readonly type: "array";
98
- readonly items: {
99
- readonly type: "string";
100
- };
101
- readonly title: "Arguments";
102
- readonly description: "Command arguments (for stdio transport)";
103
- };
104
- readonly env: {
105
- readonly type: "object";
106
- readonly additionalProperties: {
107
- readonly type: "string";
108
- };
109
- readonly title: "Environment";
110
- readonly description: "Environment variables (for stdio transport)";
111
- };
112
- };
113
- readonly allOf: readonly [{
114
- readonly if: {
115
- readonly properties: {
116
- readonly auth_type: {
117
- readonly const: "bearer";
118
- };
119
- };
120
- readonly required: readonly ["auth_type"];
121
- };
122
- readonly then: {
123
- readonly required: readonly ["auth_token"];
124
- readonly properties: {
125
- readonly auth_token: true;
126
- };
127
- };
128
- }, {
129
- readonly if: {
130
- readonly properties: {
131
- readonly auth_type: {
132
- readonly const: "client_credentials";
133
- };
134
- };
135
- readonly required: readonly ["auth_type"];
136
- };
137
- readonly then: {
138
- readonly required: readonly ["auth_client_id", "auth_client_secret"];
139
- readonly properties: {
140
- readonly auth_client_id: true;
141
- readonly auth_client_secret: true;
142
- readonly auth_client_name: true;
143
- readonly auth_scope: true;
144
- };
145
- };
146
- }, {
147
- readonly if: {
148
- readonly properties: {
149
- readonly auth_type: {
150
- readonly const: "private_key_jwt";
151
- };
152
- };
153
- readonly required: readonly ["auth_type"];
154
- };
155
- readonly then: {
156
- readonly required: readonly ["auth_client_id", "auth_private_key", "auth_algorithm"];
157
- readonly properties: {
158
- readonly auth_client_id: true;
159
- readonly auth_private_key: true;
160
- readonly auth_algorithm: true;
161
- readonly auth_client_name: true;
162
- readonly auth_jwt_lifetime_seconds: true;
163
- readonly auth_scope: true;
164
- };
165
- };
166
- }, {
167
- readonly if: {
168
- readonly properties: {
169
- readonly auth_type: {
170
- readonly const: "static_private_key_jwt";
171
- };
172
- };
173
- readonly required: readonly ["auth_type"];
174
- };
175
- readonly then: {
176
- readonly required: readonly ["auth_client_id", "auth_jwt_bearer_assertion"];
177
- readonly properties: {
178
- readonly auth_client_id: true;
179
- readonly auth_jwt_bearer_assertion: true;
180
- readonly auth_client_name: true;
181
- readonly auth_scope: true;
182
- };
183
- };
184
- }, {
185
- readonly if: {
186
- readonly properties: {
187
- readonly auth_type: {
188
- readonly const: "authorization_code";
189
- };
190
- };
191
- readonly required: readonly ["auth_type"];
192
- };
193
- readonly then: {
194
- readonly required: readonly ["auth_client_id", "auth_redirect_url"];
195
- readonly properties: {
196
- readonly auth_client_id: true;
197
- readonly auth_client_secret: true;
198
- readonly auth_redirect_url: true;
199
- readonly auth_scope: true;
200
- };
201
- };
202
- }];
203
- };
204
- export type McpTransportType = (typeof mcpTransportTypes)[number];
205
- export interface McpServerConfig {
206
- transport: McpTransportType;
207
- server_url?: string;
208
- command?: string;
209
- args?: string[];
210
- env?: Record<string, string>;
211
- auth?: McpAuthConfig;
212
- auth_type?: string;
213
- authProvider?: OAuthClientProvider;
214
- }
215
- export declare function createMcpClient(config: McpServerConfig, signal?: AbortSignal): Promise<{
216
- client: Client;
217
- transport: Transport;
218
- }>;
219
- export declare const mcpClientFactory: {
220
- create: typeof createMcpClient;
221
- };
222
- //# sourceMappingURL=McpClientUtil.node.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"McpClientUtil.node.d.ts","sourceRoot":"","sources":["../../src/mcp/McpClientUtil.node.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAE,MAAM,EAAE,MAAM,kCAAkC,CAAC;AAK1D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,+CAA+C,CAAC;AAK/E,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AACpD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,0CAA0C,CAAC;AAEpF,eAAO,MAAM,iBAAiB,8CAA+C,CAAC;AAE9E,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkCxB,CAAC;AAEX,MAAM,MAAM,gBAAgB,GAAG,CAAC,OAAO,iBAAiB,CAAC,CAAC,MAAM,CAAC,CAAC;AAElE,MAAM,WAAW,eAAe;IAC9B,SAAS,EAAE,gBAAgB,CAAC;IAC5B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC7B,IAAI,CAAC,EAAE,aAAa,CAAC;IAErB,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB,YAAY,CAAC,EAAE,mBAAmB,CAAC;CACpC;AAED,wBAAsB,eAAe,CACnC,MAAM,EAAE,eAAe,EACvB,MAAM,CAAC,EAAE,WAAW,GACnB,OAAO,CAAC;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,SAAS,CAAA;CAAE,CAAC,CAwGnD;AAED,eAAO,MAAM,gBAAgB;;CAE5B,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"WorkerServer.d.ts","sourceRoot":"","sources":["../../src/worker/WorkerServer.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAyEH;;;;GAIG;AACH,qBAAa,YAAY;;IAYvB,OAAO,CAAC,SAAS,CAAwD;IACzE,OAAO,CAAC,eAAe,CAA8D;IACrF,OAAO,CAAC,iBAAiB,CACpB;IAGL,OAAO,CAAC,kBAAkB,CAAsC;IAEhE,OAAO,CAAC,iBAAiB,CAAqB;IAE9C,OAAO,CAAC,UAAU,CAShB;IAEF,OAAO,CAAC,SAAS,CAMf;IAEF,OAAO,CAAC,eAAe,CAKrB;IAEF;;;;OAIG;IACH,SAAS;IAUT,gBAAgB,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,OAAO,CAAC,GAAG,CAAC;IAInE;;;;;;;OAOG;IACH,wBAAwB,CACtB,IAAI,EAAE,MAAM,EACZ,EAAE,EAAE,CAAC,KAAK,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,KAAK,OAAO,CAAC,GAAG,CAAC;IAK3D;;;;;;;;OAQG;IACH,sBAAsB,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,aAAa,CAAC,GAAG,CAAC;IAKzE,aAAa,CAAC,KAAK,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,GAAG,CAAA;KAAE;IAgBhD,WAAW,CAAC,EAAE,EAAE,MAAM;IAU5B;;;OAGG;IACG,kBAAkB,CACtB,EAAE,EAAE,MAAM,EACV,YAAY,EAAE,MAAM,EACpB,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC;IAenC,UAAU,CAAC,EAAE,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,EAAE,CAAC,GAAG,EAAE,GAAG,CAAC;IA+B7E;;;;;OAKG;IACG,gBAAgB,CAAC,EAAE,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,EAAE,CAAC,GAAG,EAAE,GAAG,CAAC;CA+CpF;AAED,eAAO,MAAM,aAAa,qDAAoD,CAAC"}