@stack-spot/portal-network 0.194.2 → 0.195.0-beta.1
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/CHANGELOG.md +174 -0
- package/dist/api/agent-tools.d.ts +6 -0
- package/dist/api/agent-tools.d.ts.map +1 -1
- package/dist/api/agent-tools.js.map +1 -1
- package/dist/api/agent.d.ts +55 -55
- package/dist/api/agent.d.ts.map +1 -1
- package/dist/api/ai.d.ts +189 -86
- package/dist/api/ai.d.ts.map +1 -1
- package/dist/api/ai.js +238 -142
- package/dist/api/ai.js.map +1 -1
- package/dist/api/cloudPlatform.d.ts +70 -129
- package/dist/api/cloudPlatform.d.ts.map +1 -1
- package/dist/api/cloudPlatform.js +79 -72
- package/dist/api/cloudPlatform.js.map +1 -1
- package/dist/api/codeShift.d.ts +315 -62
- package/dist/api/codeShift.d.ts.map +1 -1
- package/dist/api/codeShift.js +153 -12
- package/dist/api/codeShift.js.map +1 -1
- package/dist/api/discover.d.ts +23 -12
- package/dist/api/discover.d.ts.map +1 -1
- package/dist/api/discover.js +10 -0
- package/dist/api/discover.js.map +1 -1
- package/dist/api-addresses.d.ts.map +1 -1
- package/dist/client/account.d.ts +233 -233
- package/dist/client/account.d.ts.map +1 -1
- package/dist/client/agent-tools.d.ts +124 -124
- package/dist/client/agent-tools.d.ts.map +1 -1
- package/dist/client/agent-tools.js +10 -1
- package/dist/client/agent-tools.js.map +1 -1
- package/dist/client/agent.d.ts +46 -46
- package/dist/client/agent.d.ts.map +1 -1
- package/dist/client/ai.d.ts +123 -77
- package/dist/client/ai.d.ts.map +1 -1
- package/dist/client/ai.js +44 -1
- package/dist/client/ai.js.map +1 -1
- package/dist/client/api-management.d.ts +2 -2
- package/dist/client/cloud-account.d.ts +13 -13
- package/dist/client/cloud-platform-horizon.d.ts +19 -19
- package/dist/client/cloud-platform.d.ts +114 -89
- package/dist/client/cloud-platform.d.ts.map +1 -1
- package/dist/client/cloud-platform.js +73 -46
- package/dist/client/cloud-platform.js.map +1 -1
- package/dist/client/cloud-runtimes.d.ts +4 -4
- package/dist/client/cloud-services.d.ts +17 -17
- package/dist/client/cloud-services.d.ts.map +1 -1
- package/dist/client/code-shift.d.ts +356 -258
- package/dist/client/code-shift.d.ts.map +1 -1
- package/dist/client/code-shift.js +91 -1
- package/dist/client/code-shift.js.map +1 -1
- package/dist/client/content.d.ts +127 -132
- package/dist/client/content.d.ts.map +1 -1
- package/dist/client/data-integration.d.ts +55 -55
- package/dist/client/data-integration.d.ts.map +1 -1
- package/dist/client/discover.d.ts +15 -9
- package/dist/client/discover.d.ts.map +1 -1
- package/dist/client/discover.js +208 -0
- package/dist/client/discover.js.map +1 -1
- package/dist/client/event-bus.d.ts.map +1 -1
- package/dist/client/gen-ai-inference.d.ts +20 -20
- package/dist/client/insights.d.ts +7 -7
- package/dist/client/notification.d.ts +10 -10
- package/dist/client/runtime-manager.d.ts +8 -8
- package/dist/client/types.d.ts +14 -0
- package/dist/client/types.d.ts.map +1 -1
- package/dist/client/workflow.d.ts +10 -10
- package/dist/client/workspace-ai.d.ts +48 -48
- package/dist/client/workspace-manager.d.ts +77 -77
- package/dist/client/workspace-search.d.ts +2 -2
- package/dist/client/workspace.d.ts +58 -105
- package/dist/client/workspace.d.ts.map +1 -1
- package/dist/error/dictionary/cloud-platform.d.ts +6 -0
- package/dist/error/dictionary/cloud-platform.d.ts.map +1 -1
- package/dist/error/dictionary/cloud-platform.js +6 -0
- package/dist/error/dictionary/cloud-platform.js.map +1 -1
- package/dist/utils/StreamedJson.d.ts.map +1 -1
- package/dist/utils/StreamedJson.js +9 -1
- package/dist/utils/StreamedJson.js.map +1 -1
- package/package.json +2 -2
- package/readme.md +2 -1
- package/src/api/account.ts +1 -0
- package/src/api/agent-tools.ts +9 -0
- package/src/api/agent.ts +2 -0
- package/src/api/ai.ts +364 -157
- package/src/api/cloudPlatform.ts +142 -216
- package/src/api/codeShift.ts +607 -69
- package/src/api/discover.ts +35 -12
- package/src/api/notification.ts +2 -0
- package/src/client/agent-tools.ts +10 -1
- package/src/client/ai.ts +37 -0
- package/src/client/cloud-platform.ts +40 -25
- package/src/client/code-shift.ts +54 -1
- package/src/client/discover.ts +220 -3
- package/src/client/types.ts +17 -2
- package/src/error/dictionary/cloud-platform.ts +6 -0
- package/src/utils/StreamedJson.tsx +9 -2
|
@@ -38,7 +38,7 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
38
38
|
workspaceId: string;
|
|
39
39
|
stackVersionId: string;
|
|
40
40
|
pluginVersionId: string;
|
|
41
|
-
envName?: string
|
|
41
|
+
envName?: string;
|
|
42
42
|
}, FixedFullInputContextResponse>;
|
|
43
43
|
/**
|
|
44
44
|
* Gets workflow in a workspace stack
|
|
@@ -55,7 +55,7 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
55
55
|
workspaceId: string;
|
|
56
56
|
stackVersionId: string;
|
|
57
57
|
workflowVersionId: string;
|
|
58
|
-
envName?: string
|
|
58
|
+
envName?: string;
|
|
59
59
|
}, FixedWorkflowForCreationResponse>;
|
|
60
60
|
/**
|
|
61
61
|
* Gets workflow inputs in an account stack
|
|
@@ -63,7 +63,7 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
63
63
|
workflowInputsInAccount: import("../network/types.js").QueryObject<{
|
|
64
64
|
stackVersionId: string;
|
|
65
65
|
workflowVersionId: string;
|
|
66
|
-
envName?: string
|
|
66
|
+
envName?: string;
|
|
67
67
|
}, FixedFullInputContextResponse>;
|
|
68
68
|
/**
|
|
69
69
|
* Gets inputs from a plugin in account context
|
|
@@ -71,7 +71,7 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
71
71
|
pluginInputsAccount: import("../network/types.js").QueryObject<{
|
|
72
72
|
stackVersionId: string;
|
|
73
73
|
pluginVersionId: string;
|
|
74
|
-
envName?: string
|
|
74
|
+
envName?: string;
|
|
75
75
|
}, FixedFullInputContextResponse>;
|
|
76
76
|
/**
|
|
77
77
|
* Update context inputs from a plugin in workspace
|
|
@@ -128,14 +128,14 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
128
128
|
workspaceId: string;
|
|
129
129
|
sharedInfraId: string;
|
|
130
130
|
envName: string;
|
|
131
|
-
pluginType?: string
|
|
132
|
-
containsLinks?: boolean
|
|
131
|
+
pluginType?: string;
|
|
132
|
+
containsLinks?: boolean;
|
|
133
133
|
}, import("../api/workspaceManager.js").SharedInfraAppliedPluginsV2Response>;
|
|
134
134
|
/**
|
|
135
135
|
* List all environments from account
|
|
136
136
|
*/
|
|
137
137
|
listEnvironments: import("../network/types.js").QueryObject<{
|
|
138
|
-
accountId?: string
|
|
138
|
+
accountId?: string;
|
|
139
139
|
}, import("../api/workspaceManager.js").EnvironmentResponse[]>;
|
|
140
140
|
/**
|
|
141
141
|
* Gets applied plugins in application
|
|
@@ -144,8 +144,8 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
144
144
|
workspaceId: string;
|
|
145
145
|
applicationId: string;
|
|
146
146
|
envName: string;
|
|
147
|
-
pluginType?: string
|
|
148
|
-
containsLinks?: boolean
|
|
147
|
+
pluginType?: string;
|
|
148
|
+
containsLinks?: boolean;
|
|
149
149
|
}, import("../api/workspaceManager.js").ApplicationAppliedPluginsV2Response>;
|
|
150
150
|
/**
|
|
151
151
|
* Gets plugin inputs and connection interface from a plugin in a stack version in workspace
|
|
@@ -186,7 +186,7 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
186
186
|
workspaceId: string;
|
|
187
187
|
stackVersionId: string;
|
|
188
188
|
actionsVersionId: string;
|
|
189
|
-
envName?: string
|
|
189
|
+
envName?: string;
|
|
190
190
|
}, FixedFullInputContextResponse>;
|
|
191
191
|
/**
|
|
192
192
|
* Gets inputs from an action in account context
|
|
@@ -194,7 +194,7 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
194
194
|
actionInputsAccount: import("../network/types.js").QueryObject<{
|
|
195
195
|
stackVersionId: string;
|
|
196
196
|
actionsVersionId: string;
|
|
197
|
-
envName?: string
|
|
197
|
+
envName?: string;
|
|
198
198
|
}, FixedFullInputContextResponse>;
|
|
199
199
|
/**
|
|
200
200
|
* Update context inputs from an action in workspace
|
|
@@ -265,7 +265,7 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
265
265
|
workspaceId: string;
|
|
266
266
|
sharedInfraId: string;
|
|
267
267
|
envName: string;
|
|
268
|
-
$type?: "DEPLOY" | "DESTROY" | "ROLLBACK" | "CREATE" | "ACTION" | "CUSTOMER_WORKFLOW"
|
|
268
|
+
$type?: "DEPLOY" | "DESTROY" | "ROLLBACK" | "CREATE" | "ACTION" | "CUSTOMER_WORKFLOW";
|
|
269
269
|
page: number;
|
|
270
270
|
size: number;
|
|
271
271
|
}, FixedPaginatedActivityResponse, "items">;
|
|
@@ -276,7 +276,7 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
276
276
|
workspaceId: string;
|
|
277
277
|
applicationId: string;
|
|
278
278
|
envName: string;
|
|
279
|
-
$type?: "DEPLOY" | "DESTROY" | "ROLLBACK" | "CREATE" | "ACTION" | "CUSTOMER_WORKFLOW"
|
|
279
|
+
$type?: "DEPLOY" | "DESTROY" | "ROLLBACK" | "CREATE" | "ACTION" | "CUSTOMER_WORKFLOW";
|
|
280
280
|
page: number;
|
|
281
281
|
size: number;
|
|
282
282
|
}, FixedPaginatedActivityResponse, "items">;
|
|
@@ -291,40 +291,40 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
291
291
|
* Get all workspaces with pagination
|
|
292
292
|
*/
|
|
293
293
|
workspacesWithPagination: import("../network/types.js").InfiniteQueryObject<{
|
|
294
|
-
name?: string
|
|
295
|
-
aclOnly?: boolean
|
|
296
|
-
accountId?: string
|
|
297
|
-
page?: number
|
|
298
|
-
size?: number
|
|
299
|
-
sortBy?: "NAME" | "DESCRIPTION"
|
|
300
|
-
sortDir?: "ASC" | "DESC"
|
|
301
|
-
tabFilter?: "FAVORITES" | "MY_RESOURCE" | "ALL_RESOURCE"
|
|
294
|
+
name?: string;
|
|
295
|
+
aclOnly?: boolean;
|
|
296
|
+
accountId?: string;
|
|
297
|
+
page?: number;
|
|
298
|
+
size?: number;
|
|
299
|
+
sortBy?: "NAME" | "DESCRIPTION";
|
|
300
|
+
sortDir?: "ASC" | "DESC";
|
|
301
|
+
tabFilter?: "FAVORITES" | "MY_RESOURCE" | "ALL_RESOURCE";
|
|
302
302
|
}, import("../api/workspaceManager.js").WorkspacePageResponse, "items">;
|
|
303
303
|
/**
|
|
304
304
|
* Get all applications by workspace with pagination
|
|
305
305
|
*/
|
|
306
306
|
applicationsByWorkspaceWithPagination: import("../network/types.js").QueryObject<{
|
|
307
307
|
workspaceId: string;
|
|
308
|
-
stackVersionId?: string
|
|
309
|
-
stackId?: string
|
|
310
|
-
name?: string
|
|
311
|
-
page?: number
|
|
312
|
-
size?: number
|
|
313
|
-
sortBy?: "
|
|
314
|
-
sortDir?: "ASC" | "DESC"
|
|
308
|
+
stackVersionId?: string;
|
|
309
|
+
stackId?: string;
|
|
310
|
+
name?: string;
|
|
311
|
+
page?: number;
|
|
312
|
+
size?: number;
|
|
313
|
+
sortBy?: "NAME" | "CREATED_AT" | "STACK_VERSION" | "STACK";
|
|
314
|
+
sortDir?: "ASC" | "DESC";
|
|
315
315
|
}, import("../api/workspaceManager.js").ApplicationPageResponse>;
|
|
316
316
|
/**
|
|
317
317
|
* Get all shared infra by workspace with pagination
|
|
318
318
|
*/
|
|
319
319
|
sharedInfraByWorkspaceWithPagination: import("../network/types.js").QueryObject<{
|
|
320
320
|
workspaceId: string;
|
|
321
|
-
stackId?: string
|
|
322
|
-
stackVersionId?: string
|
|
323
|
-
name?: string
|
|
324
|
-
page?: number
|
|
325
|
-
size?: number
|
|
326
|
-
sortBy?: "
|
|
327
|
-
sortDir?: "ASC" | "DESC"
|
|
321
|
+
stackId?: string;
|
|
322
|
+
stackVersionId?: string;
|
|
323
|
+
name?: string;
|
|
324
|
+
page?: number;
|
|
325
|
+
size?: number;
|
|
326
|
+
sortBy?: "NAME" | "CREATED_AT" | "STACK_VERSION" | "STACK";
|
|
327
|
+
sortDir?: "ASC" | "DESC";
|
|
328
328
|
}, import("../api/workspaceManager.js").SharedInfraPageResponse>;
|
|
329
329
|
/**
|
|
330
330
|
* Get all stacks used to create application in a workspace
|
|
@@ -342,40 +342,40 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
342
342
|
* Get all workspaces associated with an account.
|
|
343
343
|
*/
|
|
344
344
|
getAccountWorkspaces: import("../network/types.js").QueryObject<{
|
|
345
|
-
name?: string
|
|
346
|
-
aclOnly?: boolean
|
|
347
|
-
accountId?: string
|
|
348
|
-
page?: number
|
|
349
|
-
size?: number
|
|
350
|
-
sortBy?: "NAME" | "DESCRIPTION"
|
|
351
|
-
sortDir?: "ASC" | "DESC"
|
|
352
|
-
tabFilter?: "FAVORITES" | "MY_RESOURCE" | "ALL_RESOURCE"
|
|
345
|
+
name?: string;
|
|
346
|
+
aclOnly?: boolean;
|
|
347
|
+
accountId?: string;
|
|
348
|
+
page?: number;
|
|
349
|
+
size?: number;
|
|
350
|
+
sortBy?: "NAME" | "DESCRIPTION";
|
|
351
|
+
sortDir?: "ASC" | "DESC";
|
|
352
|
+
tabFilter?: "FAVORITES" | "MY_RESOURCE" | "ALL_RESOURCE";
|
|
353
353
|
}, import("../api/workspaceManager.js").WorkspacePageResponse>;
|
|
354
354
|
/**
|
|
355
355
|
* Get all applications associated with an account.
|
|
356
356
|
*/
|
|
357
357
|
getAccountApplications: import("../network/types.js").InfiniteQueryObject<{
|
|
358
|
-
page?: number
|
|
359
|
-
size?: number
|
|
360
|
-
sortBy?: "
|
|
361
|
-
sortDir?: "ASC" | "DESC"
|
|
362
|
-
tab?: "FAVORITES" | "MY_RESOURCE" | "ALL_RESOURCE"
|
|
363
|
-
name?: string
|
|
364
|
-
stackVersionId?: string
|
|
365
|
-
stackId?: string
|
|
358
|
+
page?: number;
|
|
359
|
+
size?: number;
|
|
360
|
+
sortBy?: "NAME" | "CREATED_AT" | "STACK_VERSION" | "STACK";
|
|
361
|
+
sortDir?: "ASC" | "DESC";
|
|
362
|
+
tab?: "FAVORITES" | "MY_RESOURCE" | "ALL_RESOURCE";
|
|
363
|
+
name?: string;
|
|
364
|
+
stackVersionId?: string;
|
|
365
|
+
stackId?: string;
|
|
366
366
|
}, import("../api/workspaceManager.js").AccountApplicationPageResponse, "items">;
|
|
367
367
|
/**
|
|
368
368
|
* Get all shared infrastructures associated with an account.
|
|
369
369
|
*/
|
|
370
370
|
getAccountSharedInfra: import("../network/types.js").QueryObject<{
|
|
371
|
-
page?: number
|
|
372
|
-
size?: number
|
|
373
|
-
sortBy?: "
|
|
374
|
-
sortDir?: "ASC" | "DESC"
|
|
375
|
-
name?: string
|
|
376
|
-
tab?: "FAVORITES" | "MY_RESOURCE" | "ALL_RESOURCE"
|
|
377
|
-
stackVersionId?: string
|
|
378
|
-
stackId?: string
|
|
371
|
+
page?: number;
|
|
372
|
+
size?: number;
|
|
373
|
+
sortBy?: "NAME" | "CREATED_AT" | "STACK_VERSION" | "STACK";
|
|
374
|
+
sortDir?: "ASC" | "DESC";
|
|
375
|
+
name?: string;
|
|
376
|
+
tab?: "FAVORITES" | "MY_RESOURCE" | "ALL_RESOURCE";
|
|
377
|
+
stackVersionId?: string;
|
|
378
|
+
stackId?: string;
|
|
379
379
|
}, import("../api/workspaceManager.js").AccountSharedInfraPageResponse>;
|
|
380
380
|
/** * Gets filters for applications associated with an account. */
|
|
381
381
|
getAccountApplicationsFilters: import("../network/types.js").QueryObject<void, import("../api/workspaceManager.js").StackFilterResponse>;
|
|
@@ -385,25 +385,25 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
385
385
|
* Find all account variables
|
|
386
386
|
*/
|
|
387
387
|
accountVariables: import("../network/types.js").QueryObject<{
|
|
388
|
-
accountId?: string
|
|
389
|
-
name?: string
|
|
390
|
-
page?: number
|
|
391
|
-
size?: number
|
|
392
|
-
sortBy?: "NAME" | "VALUE" | "CREATED_AT"
|
|
393
|
-
sortDir?: "ASC" | "DESC"
|
|
388
|
+
accountId?: string;
|
|
389
|
+
name?: string;
|
|
390
|
+
page?: number;
|
|
391
|
+
size?: number;
|
|
392
|
+
sortBy?: "NAME" | "VALUE" | "CREATED_AT";
|
|
393
|
+
sortDir?: "ASC" | "DESC";
|
|
394
394
|
}, import("../api/workspaceManager.js").PaginatedAccountVariableResponse>;
|
|
395
395
|
/**
|
|
396
396
|
* Get an account variable by name
|
|
397
397
|
*/
|
|
398
398
|
getAccountVariable: import("../network/types.js").QueryObject<{
|
|
399
|
-
accountId?: string
|
|
399
|
+
accountId?: string;
|
|
400
400
|
name: string;
|
|
401
401
|
}, import("../api/workspaceManager.js").AccountVariableResponse>;
|
|
402
402
|
/**
|
|
403
403
|
* Get account variable usage
|
|
404
404
|
*/
|
|
405
405
|
accountVariableUsage: import("../network/types.js").QueryObject<{
|
|
406
|
-
accountId?: string
|
|
406
|
+
accountId?: string;
|
|
407
407
|
name: string;
|
|
408
408
|
}, import("../api/workspaceManager.js").AccountVariableUsageResponse>;
|
|
409
409
|
/**
|
|
@@ -430,20 +430,20 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
430
430
|
*/
|
|
431
431
|
workspaceVariables: import("../network/types.js").QueryObject<{
|
|
432
432
|
workspaceId: string;
|
|
433
|
-
accountId?: string
|
|
434
|
-
page?: number
|
|
435
|
-
size?: number
|
|
436
|
-
sortBy?: "NAME" | "VALUE" | "CREATED_AT"
|
|
437
|
-
sortDir?: "ASC" | "DESC"
|
|
438
|
-
mandate?: boolean
|
|
439
|
-
name?: string
|
|
440
|
-
showEmptyValues?: boolean
|
|
433
|
+
accountId?: string;
|
|
434
|
+
page?: number;
|
|
435
|
+
size?: number;
|
|
436
|
+
sortBy?: "NAME" | "VALUE" | "CREATED_AT";
|
|
437
|
+
sortDir?: "ASC" | "DESC";
|
|
438
|
+
mandate?: boolean;
|
|
439
|
+
name?: string;
|
|
440
|
+
showEmptyValues?: boolean;
|
|
441
441
|
}, import("../api/workspaceManager.js").PaginatedWorkspaceVariableResponse>;
|
|
442
442
|
/**
|
|
443
443
|
* Get a workspace variable by name
|
|
444
444
|
*/
|
|
445
445
|
getWorkspaceVariable: import("../network/types.js").QueryObject<{
|
|
446
|
-
accountId?: string
|
|
446
|
+
accountId?: string;
|
|
447
447
|
workspaceId: string;
|
|
448
448
|
name: string;
|
|
449
449
|
}, import("../api/workspaceManager.js").WorkspaceVariableResponse>;
|
|
@@ -522,7 +522,7 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
522
522
|
workspaceId: string;
|
|
523
523
|
applicationId: string;
|
|
524
524
|
environmentId: string;
|
|
525
|
-
applicationDestroyRequest?: import("../api/workspaceManager.js").ApplicationDestroyRequest
|
|
525
|
+
applicationDestroyRequest?: import("../api/workspaceManager.js").ApplicationDestroyRequest;
|
|
526
526
|
}, never>;
|
|
527
527
|
/**
|
|
528
528
|
* Destroys an infrastructure
|
|
@@ -13,8 +13,8 @@ declare class WorkspaceSearchClient extends ReactQueryNetworkClient {
|
|
|
13
13
|
*/
|
|
14
14
|
search: import("../network/types.js").InfiniteQueryObject<{
|
|
15
15
|
q: string;
|
|
16
|
-
category?: string
|
|
17
|
-
page?: number
|
|
16
|
+
category?: string;
|
|
17
|
+
page?: number;
|
|
18
18
|
}, import("../api/workspaceSearchEngine.js").SearchResponse, "content">;
|
|
19
19
|
/**
|
|
20
20
|
* Clears users history
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { HttpError } from '@oazapfts/runtime';
|
|
2
|
+
import { contextControllerlistAccountContext, contextControllerlistConsolidatedContext, contextV2ControlleraddTypedContextInAccount, contextV2ControlleraddTypedContextInWorkspace, workspaceApplicationControllerdeleteApplication, workspaceApplicationControllergetApplication, workspaceControllerdelete, workspaceSharedInfrastructureControllerdeleteSharedInfra, workspaceSharedInfrastructureControllergetSharedInfrastructure, workspaceStackControlleraddStack, workspaceStackControllerdeleteStack, workspaceStackControllergetStackById, workspaceStackControllergetStacks } from '../api/workspace.js';
|
|
2
3
|
import { StackspotAPIError } from '../error/StackspotAPIError.js';
|
|
3
4
|
import { ReactQueryNetworkClient } from '../network/ReactQueryNetworkClient.js';
|
|
4
5
|
import { OperationObject } from '../network/types.js';
|
|
@@ -10,7 +11,7 @@ declare class WorkspaceClient extends ReactQueryNetworkClient {
|
|
|
10
11
|
*/
|
|
11
12
|
allConnectionInterfaces: import("../network/types.js").QueryObject<{
|
|
12
13
|
workspaceId: string;
|
|
13
|
-
typeId?: string
|
|
14
|
+
typeId?: string;
|
|
14
15
|
}, import("../api/workspace.js").ConnectionInterfaceSummaryResponse[]>;
|
|
15
16
|
/**
|
|
16
17
|
* Gets a connection interface from a workspace
|
|
@@ -18,7 +19,7 @@ declare class WorkspaceClient extends ReactQueryNetworkClient {
|
|
|
18
19
|
connectionInterface: import("../network/types.js").QueryObject<{
|
|
19
20
|
workspaceId: string;
|
|
20
21
|
connectionInterfaceId: string;
|
|
21
|
-
environmentId?: string
|
|
22
|
+
environmentId?: string;
|
|
22
23
|
}, import("../api/workspace.js").ConnectionInterfaceDetailsResponse>;
|
|
23
24
|
/**
|
|
24
25
|
* Get available connection interface for a workspace by connection interface slug
|
|
@@ -26,8 +27,8 @@ declare class WorkspaceClient extends ReactQueryNetworkClient {
|
|
|
26
27
|
workspaceAvailableConnInterfaceBySlug: import("../network/types.js").QueryObject<{
|
|
27
28
|
workspaceId: string;
|
|
28
29
|
slug: string;
|
|
29
|
-
environmentId?: string
|
|
30
|
-
accountId?: string
|
|
30
|
+
environmentId?: string;
|
|
31
|
+
accountId?: string;
|
|
31
32
|
}, import("../api/workspace.js").ConnectionInterfaceDetailsV2Response>;
|
|
32
33
|
/**
|
|
33
34
|
* Get available connection interface for an application by connection interface slug
|
|
@@ -35,7 +36,7 @@ declare class WorkspaceClient extends ReactQueryNetworkClient {
|
|
|
35
36
|
applicationAvailableConnInterface: import("../network/types.js").QueryObject<{
|
|
36
37
|
applicationId: string;
|
|
37
38
|
slug: string;
|
|
38
|
-
environmentId?: string
|
|
39
|
+
environmentId?: string;
|
|
39
40
|
}, import("../api/workspace.js").ConnectionInterfaceDetailsV2Response>;
|
|
40
41
|
/**
|
|
41
42
|
* Updates the visibility of a connection interface
|
|
@@ -73,14 +74,14 @@ declare class WorkspaceClient extends ReactQueryNetworkClient {
|
|
|
73
74
|
*/
|
|
74
75
|
checkConnectionInterfaceAvailability: import("../network/types.js").QueryObject<{
|
|
75
76
|
slug: string;
|
|
76
|
-
applicationId?: string
|
|
77
|
-
sharedInfraId?: string
|
|
77
|
+
applicationId?: string;
|
|
78
|
+
sharedInfraId?: string;
|
|
78
79
|
}, import("../api/workspace.js").CheckConnectionSlugAvailabilityResponse>;
|
|
79
80
|
/**
|
|
80
81
|
* Gets all environments
|
|
81
82
|
*/
|
|
82
83
|
environments: import("../network/types.js").QueryObject<{
|
|
83
|
-
accountId?: string
|
|
84
|
+
accountId?: string;
|
|
84
85
|
}, import("../api/workspace.js").EnvironmentReadResponse[]>;
|
|
85
86
|
/**
|
|
86
87
|
* Gets environment by Id
|
|
@@ -113,7 +114,7 @@ declare class WorkspaceClient extends ReactQueryNetworkClient {
|
|
|
113
114
|
*/
|
|
114
115
|
allEmbeddedLinksInWorkspace: import("../network/types.js").QueryObject<{
|
|
115
116
|
workspaceId: string;
|
|
116
|
-
name?: string
|
|
117
|
+
name?: string;
|
|
117
118
|
}, import("../api/workspace.js").WorkspaceEmbeddedLinkReadResponse[]>;
|
|
118
119
|
/**
|
|
119
120
|
* Creates an embedded link in a workspace
|
|
@@ -158,7 +159,7 @@ declare class WorkspaceClient extends ReactQueryNetworkClient {
|
|
|
158
159
|
allEmbeddedLinksInApplication: import("../network/types.js").QueryObject<{
|
|
159
160
|
workspaceId: string;
|
|
160
161
|
applicationId: string;
|
|
161
|
-
name?: string
|
|
162
|
+
name?: string;
|
|
162
163
|
}, import("../api/workspace.js").ApplicationEmbeddedLinkReadResponse[]>;
|
|
163
164
|
/**
|
|
164
165
|
* Creates an embedded link in an application
|
|
@@ -197,9 +198,9 @@ declare class WorkspaceClient extends ReactQueryNetworkClient {
|
|
|
197
198
|
* Gets all workspaces
|
|
198
199
|
*/
|
|
199
200
|
workspaces: import("../network/types.js").QueryObject<{
|
|
200
|
-
name?: string
|
|
201
|
-
aclOnly?: boolean
|
|
202
|
-
accountId?: string
|
|
201
|
+
name?: string;
|
|
202
|
+
aclOnly?: boolean;
|
|
203
|
+
accountId?: string;
|
|
203
204
|
}, import("../api/workspace.js").WorkspaceReadResponse[]>;
|
|
204
205
|
/**
|
|
205
206
|
* Gets a workspace
|
|
@@ -232,8 +233,8 @@ declare class WorkspaceClient extends ReactQueryNetworkClient {
|
|
|
232
233
|
*/
|
|
233
234
|
applications: import("../network/types.js").QueryObject<{
|
|
234
235
|
workspaceId: string;
|
|
235
|
-
name?: string
|
|
236
|
-
stackVersionId?: string
|
|
236
|
+
name?: string;
|
|
237
|
+
stackVersionId?: string;
|
|
237
238
|
}, import("../api/workspace.js").ApplicationReadResponse[]>;
|
|
238
239
|
/**
|
|
239
240
|
* Gets an application
|
|
@@ -254,8 +255,8 @@ declare class WorkspaceClient extends ReactQueryNetworkClient {
|
|
|
254
255
|
*/
|
|
255
256
|
allSharedInfra: import("../network/types.js").QueryObject<{
|
|
256
257
|
workspaceId: string;
|
|
257
|
-
name?: string
|
|
258
|
-
stackVersionId?: string
|
|
258
|
+
name?: string;
|
|
259
|
+
stackVersionId?: string;
|
|
259
260
|
}, import("../api/workspace.js").SharedInfraDetailsResponse[]>;
|
|
260
261
|
/**
|
|
261
262
|
* Gets a shared infra
|
|
@@ -299,8 +300,8 @@ declare class WorkspaceClient extends ReactQueryNetworkClient {
|
|
|
299
300
|
* Gets account workflows
|
|
300
301
|
*/
|
|
301
302
|
accountWorkflows: import("../network/types.js").QueryObject<{
|
|
302
|
-
$type?: "CREATE_API" | "CREATE_APP" | "CREATE_INFRA"
|
|
303
|
-
name?: string
|
|
303
|
+
$type?: "CREATE_API" | "CREATE_APP" | "CREATE_INFRA";
|
|
304
|
+
name?: string;
|
|
304
305
|
}, import("../api/workspace.js").WorkflowResponse[]>;
|
|
305
306
|
/**
|
|
306
307
|
* Gets workflows from a stack
|
|
@@ -321,19 +322,19 @@ declare class WorkspaceClient extends ReactQueryNetworkClient {
|
|
|
321
322
|
* @deprecated consume from Workspace Manager API
|
|
322
323
|
*/
|
|
323
324
|
accountVariables: import("../network/types.js").QueryObject<{
|
|
324
|
-
accountId?: string
|
|
325
|
-
name?: string
|
|
326
|
-
page?: number
|
|
327
|
-
size?: number
|
|
328
|
-
sortBy?: "NAME" | "VALUE" | "CREATED_AT"
|
|
329
|
-
sortDir?: "ASC" | "DESC"
|
|
325
|
+
accountId?: string;
|
|
326
|
+
name?: string;
|
|
327
|
+
page?: number;
|
|
328
|
+
size?: number;
|
|
329
|
+
sortBy?: "NAME" | "VALUE" | "CREATED_AT";
|
|
330
|
+
sortDir?: "ASC" | "DESC";
|
|
330
331
|
}, import("../api/workspace.js").PaginatedAccountVariableResponse>;
|
|
331
332
|
/**
|
|
332
333
|
* Get an account variable by name
|
|
333
334
|
* @deprecated consume from Workspace Manager API
|
|
334
335
|
*/
|
|
335
336
|
getAccountVariable: import("../network/types.js").QueryObject<{
|
|
336
|
-
accountId?: string
|
|
337
|
+
accountId?: string;
|
|
337
338
|
name: string;
|
|
338
339
|
}, import("../api/workspace.js").AccountVariableResponse>;
|
|
339
340
|
/**
|
|
@@ -341,7 +342,7 @@ declare class WorkspaceClient extends ReactQueryNetworkClient {
|
|
|
341
342
|
* @deprecated consume from Workspace Manager API
|
|
342
343
|
*/
|
|
343
344
|
accountVariableUsage: import("../network/types.js").QueryObject<{
|
|
344
|
-
accountId?: string
|
|
345
|
+
accountId?: string;
|
|
345
346
|
name: string;
|
|
346
347
|
}, import("../api/workspace.js").AccountVariableUsageResponse>;
|
|
347
348
|
/**
|
|
@@ -372,21 +373,21 @@ declare class WorkspaceClient extends ReactQueryNetworkClient {
|
|
|
372
373
|
*/
|
|
373
374
|
workspaceVariables: import("../network/types.js").QueryObject<{
|
|
374
375
|
workspaceId: string;
|
|
375
|
-
accountId?: string
|
|
376
|
-
page?: number
|
|
377
|
-
size?: number
|
|
378
|
-
sortBy?: "NAME" | "VALUE" | "CREATED_AT"
|
|
379
|
-
sortDir?: "ASC" | "DESC"
|
|
380
|
-
mandate?: boolean
|
|
381
|
-
name?: string
|
|
382
|
-
showEmptyValues?: boolean
|
|
376
|
+
accountId?: string;
|
|
377
|
+
page?: number;
|
|
378
|
+
size?: number;
|
|
379
|
+
sortBy?: "NAME" | "VALUE" | "CREATED_AT";
|
|
380
|
+
sortDir?: "ASC" | "DESC";
|
|
381
|
+
mandate?: boolean;
|
|
382
|
+
name?: string;
|
|
383
|
+
showEmptyValues?: boolean;
|
|
383
384
|
}, import("../api/workspace.js").PaginatedWorkspaceVariableResponse>;
|
|
384
385
|
/**
|
|
385
386
|
* Get a workspace variable by name
|
|
386
387
|
* @deprecated consume from Workspace Manager API
|
|
387
388
|
*/
|
|
388
389
|
getWorkspaceVariable: import("../network/types.js").QueryObject<{
|
|
389
|
-
accountId?: string
|
|
390
|
+
accountId?: string;
|
|
390
391
|
workspaceId: string;
|
|
391
392
|
name: string;
|
|
392
393
|
}, import("../api/workspace.js").WorkspaceVariableResponse>;
|
|
@@ -404,7 +405,7 @@ declare class WorkspaceClient extends ReactQueryNetworkClient {
|
|
|
404
405
|
*/
|
|
405
406
|
linksInWorkspace: import("../network/types.js").QueryObject<{
|
|
406
407
|
workspaceId: string;
|
|
407
|
-
name?: string
|
|
408
|
+
name?: string;
|
|
408
409
|
}, import("../api/workspace.js").WorkspaceLinkReadResponse[]>;
|
|
409
410
|
/**
|
|
410
411
|
* Adds a link to a workspace
|
|
@@ -505,114 +506,66 @@ declare class WorkspaceClient extends ReactQueryNetworkClient {
|
|
|
505
506
|
/**
|
|
506
507
|
* Gets stacks in a workspace. This fn is only used for permission purposes.
|
|
507
508
|
*/
|
|
508
|
-
stacks: OperationObject<
|
|
509
|
-
workspaceId: string;
|
|
510
|
-
}>;
|
|
509
|
+
stacks: OperationObject<Parameters<typeof workspaceStackControllergetStacks>[0]>;
|
|
511
510
|
/**
|
|
512
511
|
* List workspace context inputs for a plugin or action in a stack. This fn is only used for permission purposes.
|
|
513
512
|
*/
|
|
514
|
-
listConsolidatedWorkspaceContext: OperationObject<
|
|
515
|
-
workspaceId: string;
|
|
516
|
-
stackVersionId: string;
|
|
517
|
-
$type: "action" | "workflow" | "plugin";
|
|
518
|
-
envName?: string | undefined;
|
|
519
|
-
externalId?: string | undefined;
|
|
520
|
-
}>;
|
|
513
|
+
listConsolidatedWorkspaceContext: OperationObject<Parameters<typeof contextControllerlistConsolidatedContext>[0]>;
|
|
521
514
|
/**
|
|
522
515
|
* List account context inputs for a plugin or action in a stack. This fn is only used for permission purposes.
|
|
523
516
|
*/
|
|
524
|
-
listConsolidatedContext: OperationObject<
|
|
525
|
-
stackVersionId: string;
|
|
526
|
-
$type: "action" | "workflow" | "plugin";
|
|
527
|
-
envName?: string | undefined;
|
|
528
|
-
externalId?: string | undefined;
|
|
529
|
-
}>;
|
|
517
|
+
listConsolidatedContext: OperationObject<Parameters<typeof contextControllerlistAccountContext>[0]>;
|
|
530
518
|
/**
|
|
531
519
|
* Save workspace context inputs for a plugin or action in a stack. This fn is only used for permission purposes.
|
|
532
520
|
*/
|
|
533
|
-
saveContextInWorkspace: OperationObject<
|
|
534
|
-
workspaceId: string;
|
|
535
|
-
stackVersionId: string;
|
|
536
|
-
externalId: string;
|
|
537
|
-
$type: "action" | "workflow" | "plugin";
|
|
538
|
-
contextValuesRequest: import("../api/workspace.js").ContextValuesRequest;
|
|
539
|
-
}>;
|
|
521
|
+
saveContextInWorkspace: OperationObject<Parameters<typeof contextV2ControlleraddTypedContextInWorkspace>[0]>;
|
|
540
522
|
/**
|
|
541
523
|
* Save workspace context inputs for a plugin or action in the account. This fn is only used for permission purposes.
|
|
542
524
|
*/
|
|
543
|
-
saveContextInAccount: OperationObject<
|
|
544
|
-
stackVersionId: string;
|
|
545
|
-
externalId: string;
|
|
546
|
-
$type: "action" | "workflow" | "plugin";
|
|
547
|
-
contextValuesRequest: import("../api/workspace.js").ContextValuesRequest;
|
|
548
|
-
}>;
|
|
525
|
+
saveContextInAccount: OperationObject<Parameters<typeof contextV2ControlleraddTypedContextInAccount>[0]>;
|
|
549
526
|
/**
|
|
550
527
|
* Add stack to workspace. This fn is only used for permission purposes.
|
|
551
528
|
*/
|
|
552
|
-
addStackInWorkspace: OperationObject<
|
|
553
|
-
workspaceId: string;
|
|
554
|
-
addStackInWorkspaceRequest: import("../api/workspace.js").AddStackInWorkspaceRequest;
|
|
555
|
-
}>;
|
|
529
|
+
addStackInWorkspace: OperationObject<Parameters<typeof workspaceStackControlleraddStack>[0]>;
|
|
556
530
|
/**
|
|
557
531
|
* Removes a stack from a workspace. This fn is only used for permission purposes.
|
|
558
532
|
*/
|
|
559
|
-
removeStackFromWorkspace: OperationObject<
|
|
560
|
-
workspaceId: string;
|
|
561
|
-
stackVersionId: string;
|
|
562
|
-
}>;
|
|
533
|
+
removeStackFromWorkspace: OperationObject<Parameters<typeof workspaceStackControllerdeleteStack>[0]>;
|
|
563
534
|
/**
|
|
564
535
|
* Gets a stack in a workspace . This fn is only used for permission purposes.
|
|
565
536
|
*/
|
|
566
|
-
stackInWorkspace: OperationObject<
|
|
567
|
-
workspaceId: string;
|
|
568
|
-
stackVersionId: string;
|
|
569
|
-
}>;
|
|
537
|
+
stackInWorkspace: OperationObject<Parameters<typeof workspaceStackControllergetStackById>[0]>;
|
|
570
538
|
/**
|
|
571
539
|
* Deletes a workspace . This fn is only used for permission purposes.
|
|
572
540
|
*/
|
|
573
|
-
deleteWorkspace: OperationObject<
|
|
574
|
-
workspaceId: string;
|
|
575
|
-
}>;
|
|
541
|
+
deleteWorkspace: OperationObject<Parameters<typeof workspaceControllerdelete>[0]>;
|
|
576
542
|
/**
|
|
577
543
|
* Deletes an application. This fn is only used for permission purposes.
|
|
578
544
|
*/
|
|
579
|
-
deleteApplication: OperationObject<
|
|
580
|
-
workspaceId: string;
|
|
581
|
-
applicationId: string;
|
|
582
|
-
accountId?: string | undefined;
|
|
583
|
-
}>;
|
|
545
|
+
deleteApplication: OperationObject<Parameters<typeof workspaceApplicationControllerdeleteApplication>[0]>;
|
|
584
546
|
/**
|
|
585
547
|
* Deletes an infra. This fn is only used for permission purposes.
|
|
586
548
|
*/
|
|
587
|
-
deleteInfra: OperationObject<
|
|
588
|
-
workspaceId: string;
|
|
589
|
-
sharedInfraId: string;
|
|
590
|
-
}>;
|
|
549
|
+
deleteInfra: OperationObject<Parameters<typeof workspaceSharedInfrastructureControllerdeleteSharedInfra>[0]>;
|
|
591
550
|
/**
|
|
592
551
|
* Gets the detail of an application. This fn is only used for permission purposes.
|
|
593
552
|
*/
|
|
594
|
-
applicationDetail: OperationObject<
|
|
595
|
-
workspaceId: string;
|
|
596
|
-
applicationId: string;
|
|
597
|
-
}>;
|
|
553
|
+
applicationDetail: OperationObject<Parameters<typeof workspaceApplicationControllergetApplication>[0]>;
|
|
598
554
|
/**
|
|
599
555
|
* Gets the detail of an infra. This fn is only used for permission purposes.
|
|
600
556
|
*/
|
|
601
|
-
infraDetail: OperationObject<
|
|
602
|
-
workspaceId: string;
|
|
603
|
-
sharedInfraId: string;
|
|
604
|
-
}>;
|
|
557
|
+
infraDetail: OperationObject<Parameters<typeof workspaceSharedInfrastructureControllergetSharedInfrastructure>[0]>;
|
|
605
558
|
/**
|
|
606
559
|
* Get all workspaces without stack version and favorites filter
|
|
607
560
|
*/
|
|
608
561
|
getWorkspacesWithoutStackFilter: import("../network/types.js").QueryObject<{
|
|
609
|
-
name?: string
|
|
610
|
-
aclOnly?: boolean
|
|
611
|
-
accountId?: string
|
|
612
|
-
page?: number
|
|
613
|
-
size?: number
|
|
614
|
-
sortBy?: "NAME" | "DESCRIPTION"
|
|
615
|
-
sortDir?: "ASC" | "DESC"
|
|
562
|
+
name?: string;
|
|
563
|
+
aclOnly?: boolean;
|
|
564
|
+
accountId?: string;
|
|
565
|
+
page?: number;
|
|
566
|
+
size?: number;
|
|
567
|
+
sortBy?: "NAME" | "DESCRIPTION";
|
|
568
|
+
sortDir?: "ASC" | "DESC";
|
|
616
569
|
}, import("../api/workspace.js").WorkspacePageResponse>;
|
|
617
570
|
/**
|
|
618
571
|
* List all stacks with context for given account and given stackVersionId list.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workspace.d.ts","sourceRoot":"","sources":["../../src/client/workspace.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;
|
|
1
|
+
{"version":3,"file":"workspace.d.ts","sourceRoot":"","sources":["../../src/client/workspace.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAC7C,OAAO,EA2BL,mCAAmC,EACnC,wCAAwC,EAExC,2CAA2C,EAC3C,6CAA6C,EAgB7C,+CAA+C,EAC/C,4CAA4C,EAI5C,yBAAyB,EAezB,wDAAwD,EAGxD,8DAA8D,EAE9D,gCAAgC,EAChC,mCAAmC,EACnC,oCAAoC,EACpC,iCAAiC,EAKlC,MAAM,kBAAkB,CAAA;AAIzB,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAA;AAC5E,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAA;AAGlD,cAAM,eAAgB,SAAQ,uBAAuB;;IAKnD,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;IAIlE;;OAEG;IACH,uBAAuB;;;wEAAmE;IAE1F;;OAEG;IACH,mBAAmB;;;;sEAAkE;IACrF;;OAEG;IACH,qCAAqC;;;;;wEAAmG;IACxI;;OAEG;IACH,iCAAiC;;;;wEAAsG;IACvI;;OAEG;IACH,mCAAmC;;;;gBAAkF;IAErH;;OAEG;IACH,yBAAyB;;;gBAA2F;IAEpH;;OAEG;IACH,kDAAkD;;;;gBAAiG;IAEnJ;;OAEG;IACH,mCAAmC;;;;gBAAkF;IACrH;;OAEG;IACH,oCAAoC;;;;2EAAuF;IAE3H;;OAEG;IACH,YAAY;;6DAAmD;IAE/D;;OAEG;IACH,WAAW;;2DAAkD;IAE7D;;OAEG;IACH,iBAAiB;;8CAA2C;IAE5D;;OAEG;IACH,iBAAiB;;;8CAA6C;IAE9D;;OAEG;IACH,uBAAuB;;;qEAA6D;IAEpF;;OAEG;IACH,2BAA2B;;;uEAA8D;IAEzF;;OAEG;IACH,6BAA6B;;;8CAAqD;IAElF;;OAEG;IACH,+BAA+B;;;gBAAuD;IAEtF;;OAEG;IACH,6BAA6B;;;;8CAAuD;IAEpF;;OAEG;IACH,iCAAiC;;;gBAA4D;IAE7F;;OAEG;IACH,yBAAyB;;;;uEAA+D;IAExF;;OAEG;IACH,6BAA6B;;;;yEAAgE;IAE7F;;OAEG;IACH,+BAA+B;;;;8CAAuD;IAEtF;;OAEG;IACH,iCAAiC;;;;gBAAyD;IAE1F;;OAEG;IACH,+BAA+B;;;;;8CAAyD;IAExF;;OAEG;IACH,mCAAmC;;;;gBAA8D;IAEjG;;OAEG;IACH,UAAU;;;;2DAA+C;IAEzD;;OAEG;IACH,SAAS;;yDAAmD;IAC5D;;OAEG;IACH,4BAA4B;;;2DAAiE;IAE7F;;OAEG;IACH,eAAe;;8CAAyC;IAExD;;OAEG;IACH,eAAe;;;8CAA2C;IAG1D;;OAEG;IACH,YAAY;;;;6DAA4D;IACxE;;OAEG;IACH,WAAW;;;2DAA2D;IAEtE;;OAEG;IACH,uBAAuB;;;iEAA8D;IACrF;;OAEG;IACH,cAAc;;;;gEAAgF;IAC9F;;OAEG;IACH,WAAW;;;8DAA6E;IAExF;;OAEG;IACH,uBAAuB;;;iEAAuE;IAE9F;;OAEG;IACH,iBAAiB;;;;8CAAsD;IAEvE;;OAEG;IACH,WAAW;;;;8CAA+D;IAG1E;;OAEG;IACH,kBAAkB;;;;2DAA8E;IAChG;;OAEG;IACH,gBAAgB;;;sDAA4D;IAC5E;;OAEG;IACH,cAAc;;;;2DAA8E;IAC5F;;OAEG;IACH,qBAAqB;;gBAAgE;IAIrF;;;OAGG;IACH,gBAAgB;;;;;;;oEAA+C;IAC/D;;;OAGG;IACH,kBAAkB;;;2DAAkD;IACpE;;;OAGG;IACH,oBAAoB;;;gEAA6C;IACjE;;;OAGG;IACH,qBAAqB;;gBAAiD;IACtE;;;OAGG;IACH,qBAAqB;;;gBAAiD;IACtE;;;OAGG;IACH,qBAAqB;;gBAAiD;IAItE;;;OAGG;IACH,kBAAkB;;;;;;;;;;sEAAmD;IACrE;;;OAGG;IACH,oBAAoB;;;;6DAAsD;IAC1E;;;OAGG;IACH,uBAAuB;;;;gBAAqD;IAG5E;;OAEG;IACH,gBAAgB;;;+DAAuD;IACvE;;OAEG;IACH,kBAAkB;;;8CAA6C;IAC/D;;OAEG;IACH,uBAAuB;;;gBAA+C;IACtE;;OAEG;IACH,iBAAiB;;;;+DAA0D;IAC3E;;OAEG;IACH,oBAAoB;;;;8CAA+C;IACnE;;OAEG;IACH,yBAAyB;;;;gBAAiD;IAC1E;;OAEG;IACH,uBAAuB;;;;;8CAAiD;IACxE;;OAEG;IACH,iCAAiC;;;;gBAAgE;IACjG;;OAEG;IACH,WAAW;;;;+DAA0D;IACrE;;OAEG;IACH,cAAc;;;;8CAA+C;IAC7D;;OAEG;IACH,mBAAmB;;;;gBAAiD;IACpE;;OAEG;IACH,iBAAiB;;;;;8CAAiD;IAClE;;MAEE;IACF,2BAA2B;;;;gBAAgE;IAE3F;;OAEG;IACH,MAAM,EAAoD,eAAe,CAAC,UAAU,CAAC,OAAO,iCAAiC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAClI;;OAEG;IACH,gCAAgC,EAA2D,eAAe,CAAC,UAAU,CAAC,OAAO,wCAAwC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC1K;;OAEG;IACH,uBAAuB,EAAsD,eAAe,CAAC,UAAU,CAAC,OAAO,mCAAmC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACvJ;;OAEG;IACH,sBAAsB,EAAgE,eAAe,CAAC,UAAU,CAAC,OAAO,6CAA6C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC1K;;OAEG;IACH,oBAAoB,EAA8D,eAAe,CAAC,UAAU,CAAC,OAAO,2CAA2C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACpK;;QAEI;IACJ,mBAAmB,EAAmD,eAAe,CAAC,UAAU,CAAC,OAAO,gCAAgC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC7I;;QAEI;IACJ,wBAAwB,EAAsD,eAAe,CAAC,UAAU,CAAC,OAAO,mCAAmC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACxJ;;QAEI;IACJ,gBAAgB,EAAuD,eAAe,CAAC,UAAU,CAAC,OAAO,oCAAoC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAClJ;;QAEI;IACJ,eAAe,EAA4C,eAAe,CAAC,UAAU,CAAC,OAAO,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAC3H;;QAEI;IACJ,iBAAiB,EAAkE,eAAe,CAAC,UAAU,CAAC,OAAO,+CAA+C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACzK;;QAEI;IACJ,WAAW,EAA2E,eAAe,CAAC,UAAU,CAAC,OAAO,wDAAwD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACrL;;QAEI;IACJ,iBAAiB,EAA+D,eAAe,CAAC,UAAU,CAAC,OAAO,4CAA4C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACnK;;QAEI;IACJ,WAAW,EAAiF,eAAe,CAAC,UAAU,CAAC,OAAO,8DAA8D,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IACjM;;OAEG;IACH,+BAA+B;;;;;;;;yDAAmE;IAClG;;OAEG;IACH,wBAAwB;;+DAAsE;IAC9F;;;OAGG;IACH,6BAA6B;;;;gBAA6D;IAE1F;;;OAGG;IACH,2BAA2B;;;gBAA2D;CACvF;AAED,eAAO,MAAM,eAAe,iBAAwB,CAAA"}
|