@stack-spot/portal-network 0.44.0 → 0.45.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.
@@ -8,11 +8,29 @@ import * as Oazapfts from "@oazapfts/runtime";
8
8
  import * as QS from "@oazapfts/runtime/query";
9
9
  export const defaults: Oazapfts.Defaults<Oazapfts.CustomHeaders> = {
10
10
  headers: {},
11
- baseUrl: "https://workspace-workspace-manager.stg.stackspot.com",
11
+ baseUrl: "https://workspace-workspace-manager.dev.stackspot.com",
12
12
  };
13
13
  const oazapfts = Oazapfts.runtime(defaults);
14
14
  export const servers = {
15
- generatedServerUrl: "https://workspace-workspace-manager.stg.stackspot.com"
15
+ generatedServerUrl: "https://workspace-workspace-manager.dev.stackspot.com"
16
+ };
17
+ export type WorkspaceVariableResponse = {
18
+ /** Workspace variable name. */
19
+ name: string;
20
+ /** Workspace variable value. */
21
+ value?: string;
22
+ /** Workspace variable description. */
23
+ description: string;
24
+ /** Workspace variable mandate flag. */
25
+ mandate: boolean;
26
+ /** Variable value source. */
27
+ source: string;
28
+ /** Workspace variable creation data */
29
+ createdAt: string;
30
+ };
31
+ export type UpsertWorkspaceVariableRequest = {
32
+ /** Workspace variable value. */
33
+ value: string;
16
34
  };
17
35
  export type ExternalItemsResponse = {
18
36
  source: string;
@@ -211,6 +229,26 @@ export type WorkflowActionsRequest = {
211
229
  actionsBefore: WorkflowActionSimpleRequest[];
212
230
  actionsAfter: WorkflowActionSimpleRequest[];
213
231
  };
232
+ export type AccountVariableResponse = {
233
+ /** Account variable name */
234
+ name: string;
235
+ /** Account variable value stored */
236
+ value?: string;
237
+ /** Account variable description */
238
+ description: string;
239
+ /** Account variable mandatory flag */
240
+ mandate: boolean;
241
+ /** Account variable creation data */
242
+ createdAt: string;
243
+ };
244
+ export type UpdateAccountVariableRequest = {
245
+ /** New account variable value */
246
+ value?: string;
247
+ /** New account variable description */
248
+ description: string;
249
+ /** New account variable mandatory flag */
250
+ mandate: boolean;
251
+ };
214
252
  export type RequiresRequest = {
215
253
  /** Connections requires name. */
216
254
  selected: string;
@@ -428,6 +466,28 @@ export type AccountWorkflowCreateRequest = {
428
466
  export type IdResponseString = {
429
467
  id: string;
430
468
  };
469
+ export type PaginatedAccountVariableResponse = {
470
+ /** Current page requested */
471
+ currentPage: number;
472
+ /** Last page available */
473
+ lastPage: number;
474
+ /** Page size requested */
475
+ pageSize: number;
476
+ /** Total items found */
477
+ totalItems: number;
478
+ /** Account variables for current page */
479
+ items: AccountVariableResponse[];
480
+ };
481
+ export type CreateAccountVariableRequest = {
482
+ /** Account variable name */
483
+ name: string;
484
+ /** Account variable value */
485
+ value?: string;
486
+ /** Account variable description */
487
+ description: string;
488
+ /** Account variable mandatory flag */
489
+ mandate: boolean;
490
+ };
431
491
  export type ManagerRunResponse = {
432
492
  environmentName?: string;
433
493
  runId: string;
@@ -671,6 +731,23 @@ export type FullInputContextResponse = {
671
731
  computedInputs: ComputedInputResponse[];
672
732
  globalComputedInputs: ComputedInputResponse[];
673
733
  };
734
+ export type WorkspaceResponse = {
735
+ /** Workspace id. */
736
+ id: string;
737
+ /** Workspace name */
738
+ name: string;
739
+ /** Workspace description */
740
+ description?: string;
741
+ /** Workspace image */
742
+ imageUrl?: string;
743
+ };
744
+ export type WorkspacePageResponse = {
745
+ currentPage: number;
746
+ pageSize: number;
747
+ lastPage: number;
748
+ totalItems: number;
749
+ items: WorkspaceResponse[];
750
+ };
674
751
  export type SimpleStackWithImageResponse = {
675
752
  stackId: string;
676
753
  name: string;
@@ -678,6 +755,13 @@ export type SimpleStackWithImageResponse = {
678
755
  imageUrl?: string;
679
756
  studio: StudioResponse;
680
757
  };
758
+ export type PaginatedWorkspaceVariableResponse = {
759
+ currentPage: number;
760
+ pageSize: number;
761
+ lastPage: number;
762
+ totalItems: number;
763
+ items: WorkspaceVariableResponse[];
764
+ };
681
765
  export type WorkflowCompleteResponse = {
682
766
  workflowId: string;
683
767
  name: string;
@@ -893,6 +977,14 @@ export type StackActionInputValuesByEnvInAccountContextResponse = {
893
977
  input?: object;
894
978
  inputs: object[];
895
979
  };
980
+ export type AccountVariableUsageResponse = {
981
+ /** How many plugins are using this account variable */
982
+ pluginsInUse: number;
983
+ /** How many actions are using this account variable */
984
+ actionsInUse: number;
985
+ /** How many contexts are using this account variable */
986
+ contextsInUse: number;
987
+ };
896
988
  export type StackResponse = {
897
989
  stackId: string;
898
990
  slug: string;
@@ -952,6 +1044,32 @@ export type AccountContextStackResponse = {
952
1044
  hasVersionsWithContext: boolean;
953
1045
  versions: StackVersionWksResponse[];
954
1046
  };
1047
+ export function workspaceVariableControllerV2FindByName({ accountId, workspaceId, name }: {
1048
+ accountId?: string;
1049
+ workspaceId: string;
1050
+ name: string;
1051
+ }, opts?: Oazapfts.RequestOpts) {
1052
+ return oazapfts.ok(oazapfts.fetchJson<{
1053
+ status: 200;
1054
+ data: WorkspaceVariableResponse;
1055
+ }>(`/v1/workspaces/${encodeURIComponent(workspaceId)}/variables/${encodeURIComponent(name)}`, {
1056
+ ...opts,
1057
+ headers: oazapfts.mergeHeaders(opts?.headers, {
1058
+ accountId
1059
+ })
1060
+ }));
1061
+ }
1062
+ export function workspaceVariableControllerV2Upsert({ workspaceId, name, upsertWorkspaceVariableRequest }: {
1063
+ workspaceId: string;
1064
+ name: string;
1065
+ upsertWorkspaceVariableRequest: UpsertWorkspaceVariableRequest;
1066
+ }, opts?: Oazapfts.RequestOpts) {
1067
+ return oazapfts.ok(oazapfts.fetchText(`/v1/workspaces/${encodeURIComponent(workspaceId)}/variables/${encodeURIComponent(name)}`, oazapfts.json({
1068
+ ...opts,
1069
+ method: "PUT",
1070
+ body: upsertWorkspaceVariableRequest
1071
+ })));
1072
+ }
955
1073
  export function workflowWorkspaceControllerfindWorkflowStackContext({ workspaceId, stackId, workflowId }: {
956
1074
  workspaceId: string;
957
1075
  stackId: string;
@@ -1132,6 +1250,38 @@ export function workflowAccountControllerupdateWorkflowActions({ workflowId, wor
1132
1250
  body: workflowActionsRequest
1133
1251
  })));
1134
1252
  }
1253
+ export function accountVariableControllerfindByName({ accountId, name }: {
1254
+ accountId?: string;
1255
+ name: string;
1256
+ }, opts?: Oazapfts.RequestOpts) {
1257
+ return oazapfts.ok(oazapfts.fetchJson<{
1258
+ status: 200;
1259
+ data: AccountVariableResponse;
1260
+ }>(`/v1/account/variables/${encodeURIComponent(name)}`, {
1261
+ ...opts,
1262
+ headers: oazapfts.mergeHeaders(opts?.headers, {
1263
+ accountId
1264
+ })
1265
+ }));
1266
+ }
1267
+ export function accountVariableControllerupdate({ name, updateAccountVariableRequest }: {
1268
+ name: string;
1269
+ updateAccountVariableRequest: UpdateAccountVariableRequest;
1270
+ }, opts?: Oazapfts.RequestOpts) {
1271
+ return oazapfts.ok(oazapfts.fetchText(`/v1/account/variables/${encodeURIComponent(name)}`, oazapfts.json({
1272
+ ...opts,
1273
+ method: "PUT",
1274
+ body: updateAccountVariableRequest
1275
+ })));
1276
+ }
1277
+ export function accountVariableControllerdelete({ name }: {
1278
+ name: string;
1279
+ }, opts?: Oazapfts.RequestOpts) {
1280
+ return oazapfts.ok(oazapfts.fetchText(`/v1/account/variables/${encodeURIComponent(name)}`, {
1281
+ ...opts,
1282
+ method: "DELETE"
1283
+ }));
1284
+ }
1135
1285
  export function workflowStackControllerfindWorkflowStackContext({ stackId, workflowId }: {
1136
1286
  stackId: string;
1137
1287
  workflowId: string;
@@ -1200,19 +1350,6 @@ export function workspaceStackControlleraddStacksInWorkspace({ workspaceId, addS
1200
1350
  body: addStackInWorkspaceRequest
1201
1351
  })));
1202
1352
  }
1203
- export function sharedInfraControllercreateSharedInfra({ workspaceId, createSharedRequest }: {
1204
- workspaceId: string;
1205
- createSharedRequest: CreateSharedRequest;
1206
- }, opts?: Oazapfts.RequestOpts) {
1207
- return oazapfts.ok(oazapfts.fetchJson<{
1208
- status: 200;
1209
- data: CreateShareInfraResponse;
1210
- }>(`/v1/workspaces/${encodeURIComponent(workspaceId)}/shared-infra`, oazapfts.json({
1211
- ...opts,
1212
- method: "POST",
1213
- body: createSharedRequest
1214
- })));
1215
- }
1216
1353
  export function connectionInterfaceControllercreateConnectionInterface({ workspaceId, createConnectionInterfaceRequest }: {
1217
1354
  workspaceId: string;
1218
1355
  createConnectionInterfaceRequest: CreateConnectionInterfaceRequest;
@@ -1226,19 +1363,6 @@ export function connectionInterfaceControllercreateConnectionInterface({ workspa
1226
1363
  body: createConnectionInterfaceRequest
1227
1364
  })));
1228
1365
  }
1229
- export function applicationControllercreateApp({ workspaceId, createAppRequest }: {
1230
- workspaceId: string;
1231
- createAppRequest: CreateAppRequest;
1232
- }, opts?: Oazapfts.RequestOpts) {
1233
- return oazapfts.ok(oazapfts.fetchJson<{
1234
- status: 200;
1235
- data: CreateApplicationResponse;
1236
- }>(`/v1/workspaces/${encodeURIComponent(workspaceId)}/applications`, oazapfts.json({
1237
- ...opts,
1238
- method: "POST",
1239
- body: createAppRequest
1240
- })));
1241
- }
1242
1366
  export function contextControllerimportContextInWorkspace({ workspaceId, body }: {
1243
1367
  workspaceId: string;
1244
1368
  body: ImportContextRequest[];
@@ -1270,6 +1394,39 @@ export function workflowAccountControllercreateAccountWorkflow({ accountWorkflow
1270
1394
  body: accountWorkflowCreateRequest
1271
1395
  })));
1272
1396
  }
1397
+ export function accountVariableControllerfindAll({ accountId, name, page, size, sortBy, sortDir }: {
1398
+ accountId?: string;
1399
+ name?: string;
1400
+ page?: number;
1401
+ size?: number;
1402
+ sortBy?: "NAME" | "VALUE" | "CREATED_AT";
1403
+ sortDir?: "ASC" | "DESC";
1404
+ }, opts?: Oazapfts.RequestOpts) {
1405
+ return oazapfts.ok(oazapfts.fetchJson<{
1406
+ status: 200;
1407
+ data: PaginatedAccountVariableResponse;
1408
+ }>(`/v1/account/variables${QS.query(QS.explode({
1409
+ name,
1410
+ page,
1411
+ size,
1412
+ sortBy,
1413
+ sortDir
1414
+ }))}`, {
1415
+ ...opts,
1416
+ headers: oazapfts.mergeHeaders(opts?.headers, {
1417
+ accountId
1418
+ })
1419
+ }));
1420
+ }
1421
+ export function accountVariableControllercreate({ createAccountVariableRequest }: {
1422
+ createAccountVariableRequest: CreateAccountVariableRequest;
1423
+ }, opts?: Oazapfts.RequestOpts) {
1424
+ return oazapfts.ok(oazapfts.fetchText("/v1/account/variables", oazapfts.json({
1425
+ ...opts,
1426
+ method: "POST",
1427
+ body: createAccountVariableRequest
1428
+ })));
1429
+ }
1273
1430
  export function managerRunControllerarchiveApplication({ workspaceId, applicationId }: {
1274
1431
  workspaceId: string;
1275
1432
  applicationId: string;
@@ -1368,7 +1525,7 @@ export function contextStackControllergetWorkspaceContext({ workspaceId, stackVe
1368
1525
  ...opts
1369
1526
  }));
1370
1527
  }
1371
- export function contextgetConsolidatedPluginInputsWithConnectionInterfaces({ workspaceId, stackVersionId, pluginVersionId }: {
1528
+ export function contextPluginControllergetConsolidatedPluginInputsWithConnectionInterfaces({ workspaceId, stackVersionId, pluginVersionId }: {
1372
1529
  workspaceId: string;
1373
1530
  stackVersionId: string;
1374
1531
  pluginVersionId: string;
@@ -1380,7 +1537,7 @@ export function contextgetConsolidatedPluginInputsWithConnectionInterfaces({ wor
1380
1537
  ...opts
1381
1538
  }));
1382
1539
  }
1383
- export function contextgetConsolidatedPluginInputs({ workspaceId, stackVersionId, pluginVersionId, envName }: {
1540
+ export function contextPluginControllergetConsolidatedPluginInputs({ workspaceId, stackVersionId, pluginVersionId, envName }: {
1384
1541
  workspaceId: string;
1385
1542
  stackVersionId: string;
1386
1543
  pluginVersionId: string;
@@ -1410,7 +1567,7 @@ export function contextActionControllergetStackActionInputsInWorkspaceContext({
1410
1567
  ...opts
1411
1568
  }));
1412
1569
  }
1413
- export function contextgetAccountPluginInputs({ stackVersionId, pluginVersionId, envName }: {
1570
+ export function contextPluginControllergetAccountPluginInputs({ stackVersionId, pluginVersionId, envName }: {
1414
1571
  stackVersionId: string;
1415
1572
  pluginVersionId: string;
1416
1573
  envName?: string;
@@ -1438,6 +1595,32 @@ export function contextActionControllergetStackActionInputsInAccountContext({ st
1438
1595
  ...opts
1439
1596
  }));
1440
1597
  }
1598
+ export function workspaceControllergetWorkspaces({ name, aclOnly, accountId, page, size, sortBy, sortDir }: {
1599
+ name?: string;
1600
+ aclOnly?: boolean;
1601
+ accountId?: string;
1602
+ page?: number;
1603
+ size?: number;
1604
+ sortBy?: "NAME" | "DESCRIPTION";
1605
+ sortDir?: "ASC" | "DESC";
1606
+ }, opts?: Oazapfts.RequestOpts) {
1607
+ return oazapfts.ok(oazapfts.fetchJson<{
1608
+ status: 200;
1609
+ data: WorkspacePageResponse;
1610
+ }>(`/v1/workspaces${QS.query(QS.explode({
1611
+ name,
1612
+ aclOnly,
1613
+ page,
1614
+ size,
1615
+ sortBy,
1616
+ sortDir
1617
+ }))}`, {
1618
+ ...opts,
1619
+ headers: oazapfts.mergeHeaders(opts?.headers, {
1620
+ accountId
1621
+ })
1622
+ }));
1623
+ }
1441
1624
  export function workflowWorkspaceControllerlistStacks({ workspaceId, workflowId }: {
1442
1625
  workspaceId: string;
1443
1626
  workflowId: string;
@@ -1449,6 +1632,35 @@ export function workflowWorkspaceControllerlistStacks({ workspaceId, workflowId
1449
1632
  ...opts
1450
1633
  }));
1451
1634
  }
1635
+ export function workspaceVariableControllerV2FindAll({ workspaceId, accountId, page, size, sortBy, sortDir, mandate, name, showEmptyValues }: {
1636
+ workspaceId: string;
1637
+ accountId?: string;
1638
+ page?: number;
1639
+ size?: number;
1640
+ sortBy?: "NAME" | "VALUE" | "CREATED_AT";
1641
+ sortDir?: "ASC" | "DESC";
1642
+ mandate?: boolean;
1643
+ name?: string;
1644
+ showEmptyValues?: boolean;
1645
+ }, opts?: Oazapfts.RequestOpts) {
1646
+ return oazapfts.ok(oazapfts.fetchJson<{
1647
+ status: 200;
1648
+ data: PaginatedWorkspaceVariableResponse;
1649
+ }>(`/v1/workspaces/${encodeURIComponent(workspaceId)}/variables${QS.query(QS.explode({
1650
+ page,
1651
+ size,
1652
+ sortBy,
1653
+ sortDir,
1654
+ mandate,
1655
+ name,
1656
+ showEmptyValues
1657
+ }))}`, {
1658
+ ...opts,
1659
+ headers: oazapfts.mergeHeaders(opts?.headers, {
1660
+ accountId
1661
+ })
1662
+ }));
1663
+ }
1452
1664
  export function workflowWorkspaceControllerlistWorkflowByStackIdAndWorkflowType({ workspaceId, stackId, workflowType }: {
1453
1665
  workspaceId: string;
1454
1666
  stackId: string;
@@ -1617,6 +1829,20 @@ export function contextControllergetStackActionInputsInAccountContext({ stackVer
1617
1829
  ...opts
1618
1830
  }));
1619
1831
  }
1832
+ export function accountVariableControllerusage({ accountId, name }: {
1833
+ accountId?: string;
1834
+ name: string;
1835
+ }, opts?: Oazapfts.RequestOpts) {
1836
+ return oazapfts.ok(oazapfts.fetchJson<{
1837
+ status: 200;
1838
+ data: AccountVariableUsageResponse;
1839
+ }>(`/v1/account/variables/${encodeURIComponent(name)}/usage`, {
1840
+ ...opts,
1841
+ headers: oazapfts.mergeHeaders(opts?.headers, {
1842
+ accountId
1843
+ })
1844
+ }));
1845
+ }
1620
1846
  export function accountStackControllerlistStacksByAccountWithWorkflow({ workspaceId }: {
1621
1847
  workspaceId?: string;
1622
1848
  }, opts?: Oazapfts.RequestOpts) {
@@ -122,7 +122,8 @@ export interface FixedPluginForAppCreationV2Response extends Omit<PluginForAppCr
122
122
  inputs: FixedPluginInputValuesInConsolidatedContextResponse[],
123
123
  }
124
124
 
125
- export type InputType = 'BOOL' | 'INT' | 'MULTISELECT' | 'OBJECT' | 'LIST' | 'REQUIRED-CONNECTION' | 'PASSWORD' | 'SELECT' | 'TEXT'
125
+ export type InputType = 'BOOL' | 'INT' | 'MULTISELECT' | 'OBJECT' | 'LIST' | 'REQUIRED-CONNECTION' | 'PASSWORD' |
126
+ 'SELECT' | 'TEXT' | 'GENERATED-CONNECTION'
126
127
 
127
128
  export interface FixedInputConditionResponse extends Omit<InputConditionResponse, 'value'> {
128
129
  value?: any,
@@ -10,9 +10,9 @@ import {
10
10
  contextControllerupsertPluginAccountContext,
11
11
  contextControllerupsertPluginWorkspaceContext,
12
12
  contextControllerupsertWorkspaceActionsInputContext,
13
- contextgetAccountPluginInputs,
14
- contextgetConsolidatedPluginInputs,
15
- contextgetConsolidatedPluginInputsWithConnectionInterfaces,
13
+ contextPluginControllergetAccountPluginInputs,
14
+ contextPluginControllergetConsolidatedPluginInputs,
15
+ contextPluginControllergetConsolidatedPluginInputsWithConnectionInterfaces,
16
16
  defaults,
17
17
  managerRunControllerdeleteApplication,
18
18
  managerRunControllerdeleteSharedInfra,
@@ -21,6 +21,7 @@ import {
21
21
  sharedInfraControllergetSharedInfraAppliedPlugins,
22
22
  workflowWorkspaceControllerlistWorkflowByStackIdAndWorkflowType,
23
23
  workspaceControllerdelete,
24
+ workspaceControllergetWorkspaces,
24
25
  workspaceStackControlleraddStacksInWorkspace,
25
26
  workspaceStackControllerdeleteStacksInWorkspace,
26
27
  workspaceStackControllerlistStacks,
@@ -91,11 +92,11 @@ class WorkspaceManagerClient extends ReactQueryNetworkClient {
91
92
  */
92
93
  pluginInputsInWorkspace = this.query({
93
94
  name: 'pluginInputsInWorkspace',
94
- request: async (signal, variables: Parameters<typeof contextgetConsolidatedPluginInputs>[0]) => {
95
- const data = await contextgetConsolidatedPluginInputs(variables, { signal })
95
+ request: async (signal, variables: Parameters<typeof contextPluginControllergetConsolidatedPluginInputs>[0]) => {
96
+ const data = await contextPluginControllergetConsolidatedPluginInputs(variables, { signal })
96
97
  return data as FixedFullInputContextResponse
97
98
  },
98
- permission: async ({ workspaceId, stackVersionId }: Parameters<typeof contextgetConsolidatedPluginInputs>[0]) => {
99
+ permission: async ({ workspaceId, stackVersionId }: Parameters<typeof contextPluginControllergetConsolidatedPluginInputs>[0]) => {
99
100
  const canViewContext = await workspaceClient.listConsolidatedWorkspaceContext.isAllowed({ $type: 'plugin', workspaceId, stackVersionId })
100
101
  const canGetConnectionInterfaceTypes = await contentClient.connectionInterfaceTypes.isAllowed()
101
102
  const canGetPluginVersions = await contentClient.pluginVersionsByIds.isAllowed({})
@@ -107,11 +108,11 @@ class WorkspaceManagerClient extends ReactQueryNetworkClient {
107
108
  */
108
109
  pluginInputsAccount = this.query({
109
110
  name: 'pluginInputsAccount',
110
- request: async (signal, variables: Parameters<typeof contextgetAccountPluginInputs>[0]) => {
111
- const data = await contextgetAccountPluginInputs(variables, { signal })
111
+ request: async (signal, variables: Parameters<typeof contextPluginControllergetAccountPluginInputs>[0]) => {
112
+ const data = await contextPluginControllergetAccountPluginInputs(variables, { signal })
112
113
  return data as FixedFullInputContextResponse
113
114
  },
114
- permission: async ({ stackVersionId }: Parameters<typeof contextgetAccountPluginInputs>[0]) => {
115
+ permission: async ({ stackVersionId }: Parameters<typeof contextPluginControllergetAccountPluginInputs>[0]) => {
115
116
  const canViewContext = await workspaceClient.listConsolidatedContext.isAllowed({ $type: 'plugin', stackVersionId })
116
117
  const canGetConnectionInterfaceTypes = await contentClient.connectionInterfaceTypes.isAllowed()
117
118
  const canGetPluginVersions = await contentClient.pluginVersionsByIds.isAllowed({})
@@ -157,7 +158,7 @@ class WorkspaceManagerClient extends ReactQueryNetworkClient {
157
158
  /**
158
159
  * Gets plugin inputs and connection interface from a plugin in a stack version in workspace
159
160
  */
160
- pluginInputsWithConnectionInterfaces = this.query(contextgetConsolidatedPluginInputsWithConnectionInterfaces as unknown as ReplaceResult<typeof contextgetConsolidatedPluginInputsWithConnectionInterfaces, FixedPluginForAppCreationV2Response>)
161
+ pluginInputsWithConnectionInterfaces = this.query(contextPluginControllergetConsolidatedPluginInputsWithConnectionInterfaces as unknown as ReplaceResult<typeof contextPluginControllergetConsolidatedPluginInputsWithConnectionInterfaces, FixedPluginForAppCreationV2Response>)
161
162
  /**
162
163
  * Gets workflows from a given stack and workflow type
163
164
  */
@@ -253,6 +254,10 @@ class WorkspaceManagerClient extends ReactQueryNetworkClient {
253
254
  * Updates Stacks To Latest Version By Workspace
254
255
  */
255
256
  updateStacksToLatestVersionByWorkspace = this.mutation(workspaceStackControllerrefreshStacksInWorkspace)
257
+ /**
258
+ * Get all workspaces with pagination
259
+ */
260
+ workspacesWithPagination = this.query(workspaceControllergetWorkspaces)
256
261
  }
257
262
 
258
263
  export const workspaceManagerClient = new WorkspaceManagerClient()