@stack-spot/portal-network 0.198.2 → 0.198.4

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 (45) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/dist/api/agent-tools.d.ts +6 -0
  3. package/dist/api/agent-tools.d.ts.map +1 -1
  4. package/dist/api/agent-tools.js.map +1 -1
  5. package/dist/api/agent.d.ts +55 -55
  6. package/dist/api/agent.d.ts.map +1 -1
  7. package/dist/api-addresses.d.ts.map +1 -1
  8. package/dist/client/account.d.ts +233 -233
  9. package/dist/client/account.d.ts.map +1 -1
  10. package/dist/client/agent-tools.d.ts +124 -124
  11. package/dist/client/agent-tools.d.ts.map +1 -1
  12. package/dist/client/agent-tools.js +10 -1
  13. package/dist/client/agent-tools.js.map +1 -1
  14. package/dist/client/agent.d.ts +46 -46
  15. package/dist/client/agent.d.ts.map +1 -1
  16. package/dist/client/ai.d.ts +106 -106
  17. package/dist/client/ai.d.ts.map +1 -1
  18. package/dist/client/api-management.d.ts +2 -2
  19. package/dist/client/cloud-account.d.ts +13 -13
  20. package/dist/client/cloud-platform-horizon.d.ts +19 -19
  21. package/dist/client/cloud-platform.d.ts +50 -50
  22. package/dist/client/cloud-runtimes.d.ts +4 -4
  23. package/dist/client/cloud-services.d.ts +17 -17
  24. package/dist/client/cloud-services.d.ts.map +1 -1
  25. package/dist/client/code-shift.d.ts +261 -261
  26. package/dist/client/content.d.ts +127 -132
  27. package/dist/client/content.d.ts.map +1 -1
  28. package/dist/client/data-integration.d.ts +55 -55
  29. package/dist/client/data-integration.d.ts.map +1 -1
  30. package/dist/client/discover.d.ts +8 -8
  31. package/dist/client/discover.d.ts.map +1 -1
  32. package/dist/client/event-bus.d.ts.map +1 -1
  33. package/dist/client/gen-ai-inference.d.ts +20 -20
  34. package/dist/client/insights.d.ts +7 -7
  35. package/dist/client/notification.d.ts +10 -10
  36. package/dist/client/runtime-manager.d.ts +8 -8
  37. package/dist/client/workflow.d.ts +10 -10
  38. package/dist/client/workspace-ai.d.ts +48 -48
  39. package/dist/client/workspace-manager.d.ts +77 -77
  40. package/dist/client/workspace-search.d.ts +2 -2
  41. package/dist/client/workspace.d.ts +58 -105
  42. package/dist/client/workspace.d.ts.map +1 -1
  43. package/package.json +1 -1
  44. package/src/api/agent-tools.ts +6 -0
  45. package/src/client/agent-tools.ts +10 -1
@@ -10,21 +10,21 @@ declare class CloudAccountClient extends ReactQueryNetworkClient {
10
10
  */
11
11
  cloudAccounts: import("../network/types.js").InfiniteQueryObject<Omit<{
12
12
  jwtToken: import("../api/cloudAccount.js").JwtToken;
13
- sortBy?: string | undefined;
14
- sortOrder?: string | undefined;
15
- filter?: string | undefined;
16
- page?: number | undefined;
17
- pageSize?: number | undefined;
18
- $type?: "CustomCloud" | "CloudServices" | undefined;
19
- environment?: string | undefined;
20
- status?: "Connecting" | "Connected" | "Disconnected" | "Failed" | "Unknown" | undefined;
13
+ sortBy?: string;
14
+ sortOrder?: string;
15
+ filter?: string;
16
+ page?: number;
17
+ pageSize?: number;
18
+ $type?: "CustomCloud" | "CloudServices";
19
+ environment?: string;
20
+ status?: "Connecting" | "Connected" | "Disconnected" | "Failed" | "Unknown";
21
21
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudAccount.js").PaginatedResourceCloudAccountResponse, "data">;
22
22
  /**
23
23
  * Gets a list of cloud accounts connected to a workspace
24
24
  */
25
25
  cloudAccountByWorkspace: import("../network/types.js").QueryObject<Omit<{
26
26
  jwtToken: import("../api/cloudAccount.js").JwtToken;
27
- accountId?: string | undefined;
27
+ accountId?: string;
28
28
  id: string;
29
29
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudAccount.js").CloudAccountDetails[]>;
30
30
  /**
@@ -39,7 +39,7 @@ declare class CloudAccountClient extends ReactQueryNetworkClient {
39
39
  */
40
40
  createCloudAccount: import("../network/types.js").MutationObject<Omit<{
41
41
  jwtToken: import("../api/cloudAccount.js").JwtToken;
42
- stackspotCustomerIp?: string | undefined;
42
+ stackspotCustomerIp?: string;
43
43
  connectAccountRequestV2: import("../api/cloudAccount.js").ConnectAccountRequestV2;
44
44
  }, "jwtToken" | "connectAccountRequestV2"> & {
45
45
  connectAccountRequestV2: FixedConnectAccountRequestV2;
@@ -49,7 +49,7 @@ declare class CloudAccountClient extends ReactQueryNetworkClient {
49
49
  */
50
50
  deleteCloudAccount: import("../network/types.js").MutationObject<Omit<{
51
51
  jwtToken: import("../api/cloudAccount.js").JwtToken;
52
- stackspotCustomerIp?: string | undefined;
52
+ stackspotCustomerIp?: string;
53
53
  id: string;
54
54
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudAccount.js").DeleteCloudAccountResponse>;
55
55
  /**
@@ -57,7 +57,7 @@ declare class CloudAccountClient extends ReactQueryNetworkClient {
57
57
  */
58
58
  deleteAllCloudAccounts: import("../network/types.js").MutationObject<Omit<{
59
59
  jwtToken: import("../api/cloudAccount.js").JwtToken;
60
- stackspotCustomerIp?: string | undefined;
60
+ stackspotCustomerIp?: string;
61
61
  workspaceId: string;
62
62
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudAccount.js").DeleteCloudAccountResponse>;
63
63
  /**
@@ -65,7 +65,7 @@ declare class CloudAccountClient extends ReactQueryNetworkClient {
65
65
  */
66
66
  createCloudServicesAccount: import("../network/types.js").MutationObject<Omit<{
67
67
  jwtToken: import("../api/cloudAccount.js").JwtToken;
68
- stackspotCustomerIp?: string | undefined;
68
+ stackspotCustomerIp?: string;
69
69
  managedAccountProvisionRequest: import("../api/cloudAccount.js").ManagedAccountProvisionRequest;
70
70
  }, "jwtToken" | "managedAccountProvisionRequest"> & {
71
71
  managedAccountProvisionRequest: FixedManagedAccountProvisionRequest;
@@ -8,9 +8,9 @@ declare class CloudPlatformHorizonClient extends ReactQueryNetworkClient {
8
8
  * Get a list of organizations
9
9
  */
10
10
  listOrganizations: import("../network/types.js").QueryObject<Omit<{
11
- xAccountId?: string | undefined;
12
- page?: number | undefined;
13
- perPage?: number | undefined;
11
+ xAccountId?: string;
12
+ page?: number;
13
+ perPage?: number;
14
14
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatformHorizon.js").OrganizationManifestV1[]>;
15
15
  /**
16
16
  * Get organization by id
@@ -58,25 +58,25 @@ declare class CloudPlatformHorizonClient extends ReactQueryNetworkClient {
58
58
  * List all runtimes
59
59
  */
60
60
  listRuntimes: import("../network/types.js").QueryObject<Omit<{
61
- xAccountId?: string | undefined;
62
- page?: number | undefined;
63
- perPage?: number | undefined;
61
+ xAccountId?: string;
62
+ page?: number;
63
+ perPage?: number;
64
64
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatformHorizon.js").RuntimeManifestV1[]>;
65
65
  /**
66
66
  * List all tenants
67
67
  */
68
68
  listTenants: import("../network/types.js").QueryObject<Omit<{
69
- xAccountId?: string | undefined;
70
- page?: number | undefined;
71
- perPage?: number | undefined;
69
+ xAccountId?: string;
70
+ page?: number;
71
+ perPage?: number;
72
72
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatformHorizon.js").TenantManifestV1[]>;
73
73
  /**
74
74
  * List tenants from organization
75
75
  */
76
76
  listTenantsByOrganization: import("../network/types.js").QueryObject<Omit<{
77
77
  organizationId: string;
78
- page?: number | undefined;
79
- perPage?: number | undefined;
78
+ page?: number;
79
+ perPage?: number;
80
80
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatformHorizon.js").TenantManifestV1[]>;
81
81
  /**
82
82
  * List runtimes from tenant
@@ -84,8 +84,8 @@ declare class CloudPlatformHorizonClient extends ReactQueryNetworkClient {
84
84
  listRuntimesByTenant: import("../network/types.js").QueryObject<Omit<{
85
85
  organizationId: string;
86
86
  tenantId: string;
87
- page?: number | undefined;
88
- perPage?: number | undefined;
87
+ page?: number;
88
+ perPage?: number;
89
89
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatformHorizon.js").RuntimeManifestV1[]>;
90
90
  /**
91
91
  * List applications deployments from runtime
@@ -121,7 +121,7 @@ declare class CloudPlatformHorizonClient extends ReactQueryNetworkClient {
121
121
  tenantId: string;
122
122
  runtimeId: string;
123
123
  deploymentId: string;
124
- numberOfLines?: number | undefined;
124
+ numberOfLines?: number;
125
125
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatformHorizon.js").LogManifestV1>;
126
126
  /**
127
127
  * Get health from a application deployment
@@ -162,7 +162,7 @@ declare class CloudPlatformHorizonClient extends ReactQueryNetworkClient {
162
162
  * Associate an runtime with an workspace environment
163
163
  */
164
164
  associateRuntimeWithWorkspaceEnv: import("../network/types.js").MutationObject<Omit<{
165
- xAccountId?: string | undefined;
165
+ xAccountId?: string;
166
166
  organizationId: string;
167
167
  tenantId: string;
168
168
  associateRuntimeWithWorkspaceEnvironmentRequest: import("../api/cloudPlatformHorizon.js").AssociateRuntimeWithWorkspaceEnvironmentRequest;
@@ -171,7 +171,7 @@ declare class CloudPlatformHorizonClient extends ReactQueryNetworkClient {
171
171
  * Retrieves associate runtime with a workspace's environment
172
172
  */
173
173
  getRuntimeAssociations: import("../network/types.js").QueryObject<Omit<{
174
- xAccountId?: string | undefined;
174
+ xAccountId?: string;
175
175
  organizationId: string;
176
176
  tenantId: string;
177
177
  runtimeId: string;
@@ -180,10 +180,10 @@ declare class CloudPlatformHorizonClient extends ReactQueryNetworkClient {
180
180
  * List runtime associations to workspace's environment
181
181
  */
182
182
  listRuntimeAssociationsToEnv: import("../network/types.js").QueryObject<Omit<{
183
- xAccountId?: string | undefined;
183
+ xAccountId?: string;
184
184
  workspaceId: string;
185
- envId?: string | undefined;
186
- applicationId?: string | undefined;
185
+ envId?: string;
186
+ applicationId?: string;
187
187
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatformHorizon.js").ListRuntimeWorkspaceEnvironmentAssociationsResponse>;
188
188
  }
189
189
  export declare const cloudPlatformHorizonClient: CloudPlatformHorizonClient;
@@ -9,14 +9,14 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
9
9
  */
10
10
  listFoundations: import("../network/types.js").QueryObject<Omit<{
11
11
  authorization: string;
12
- xAccountId?: string | undefined;
12
+ xAccountId?: string;
13
13
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListFoundationResponse>;
14
14
  /**
15
15
  * Get a foundation by id
16
16
  */
17
17
  foundation: import("../network/types.js").QueryObject<Omit<{
18
18
  authorization: string;
19
- xAccountId?: string | undefined;
19
+ xAccountId?: string;
20
20
  foundationId: string;
21
21
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FoundationResponse>;
22
22
  /**
@@ -24,7 +24,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
24
24
  */
25
25
  getFolder: import("../network/types.js").QueryObject<Omit<{
26
26
  authorization: string;
27
- xAccountId?: string | undefined;
27
+ xAccountId?: string;
28
28
  foundationId: string;
29
29
  folderId: string;
30
30
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FolderResponse>;
@@ -39,7 +39,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
39
39
  */
40
40
  createFoundation: import("../network/types.js").MutationObject<Omit<{
41
41
  authorization: string;
42
- xAccountId?: string | undefined;
42
+ xAccountId?: string;
43
43
  createFoundationRequest: import("../api/cloudPlatform.js").CreateFoundationRequest;
44
44
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FoundationResponse>;
45
45
  /**
@@ -47,7 +47,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
47
47
  */
48
48
  createFolder: import("../network/types.js").MutationObject<Omit<{
49
49
  authorization: string;
50
- xAccountId?: string | undefined;
50
+ xAccountId?: string;
51
51
  foundationId: string;
52
52
  createFolderRequest: import("../api/cloudPlatform.js").CreateFolderRequest;
53
53
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FolderResponse>;
@@ -56,17 +56,17 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
56
56
  */
57
57
  listDnsZones: import("../network/types.js").QueryObject<Omit<{
58
58
  authorization: string;
59
- xAccountId?: string | undefined;
59
+ xAccountId?: string;
60
60
  foundationId: string;
61
- projectId?: string | undefined;
62
- privacy?: "PRIVATE" | "PUBLIC" | undefined;
61
+ projectId?: string;
62
+ privacy?: "PUBLIC" | "PRIVATE";
63
63
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListDnsZoneResponse>;
64
64
  /**
65
65
  * Create a dns zone
66
66
  */
67
67
  createDnsZone: import("../network/types.js").MutationObject<Omit<{
68
68
  authorization: string;
69
- xAccountId?: string | undefined;
69
+ xAccountId?: string;
70
70
  foundationId: string;
71
71
  createDnsZoneRequest: import("../api/cloudPlatform.js").CreateDnsZoneRequest;
72
72
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").DnsZoneResponse>;
@@ -75,7 +75,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
75
75
  */
76
76
  listCidrs: import("../network/types.js").QueryObject<Omit<{
77
77
  authorization: string;
78
- xAccountId?: string | undefined;
78
+ xAccountId?: string;
79
79
  foundationId: string;
80
80
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListCidrResponse>;
81
81
  /**
@@ -83,7 +83,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
83
83
  */
84
84
  createCidr: import("../network/types.js").MutationObject<Omit<{
85
85
  authorization: string;
86
- xAccountId?: string | undefined;
86
+ xAccountId?: string;
87
87
  foundationId: string;
88
88
  createCidrRequest: import("../api/cloudPlatform.js").CreateCidrRequest;
89
89
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CidrResponse>;
@@ -92,16 +92,16 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
92
92
  */
93
93
  listCertificates: import("../network/types.js").QueryObject<Omit<{
94
94
  authorization: string;
95
- xAccountId?: string | undefined;
95
+ xAccountId?: string;
96
96
  foundationId: string;
97
- forInbound?: "TRUE" | "FALSE" | undefined;
97
+ forInbound?: "TRUE" | "FALSE";
98
98
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListCertificateResponse>;
99
99
  /**
100
100
  * Get a certificate by id
101
101
  */
102
102
  getCertificate: import("../network/types.js").QueryObject<Omit<{
103
103
  authorization: string;
104
- xAccountId?: string | undefined;
104
+ xAccountId?: string;
105
105
  foundationId: string;
106
106
  certificateId: string;
107
107
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CertificateResponse>;
@@ -110,7 +110,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
110
110
  */
111
111
  createCertificate: import("../network/types.js").MutationObject<Omit<{
112
112
  authorization: string;
113
- xAccountId?: string | undefined;
113
+ xAccountId?: string;
114
114
  foundationId: string;
115
115
  body: import("../api/cloudPlatform.js").CreatePublicCertificateRequest | import("../api/cloudPlatform.js").ImportCertificateRequest;
116
116
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CertificateResponse>;
@@ -119,7 +119,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
119
119
  */
120
120
  createProject: import("../network/types.js").MutationObject<Omit<{
121
121
  authorization: string;
122
- xAccountId?: string | undefined;
122
+ xAccountId?: string;
123
123
  foundationId: string;
124
124
  createProjectRequest: import("../api/cloudPlatform.js").CreateProjectRequest;
125
125
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ProjectResponse>;
@@ -128,7 +128,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
128
128
  */
129
129
  getProjectById: import("../network/types.js").QueryObject<Omit<{
130
130
  authorization: string;
131
- xAccountId?: string | undefined;
131
+ xAccountId?: string;
132
132
  foundationId: string;
133
133
  projectId: string;
134
134
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ProjectResponse>;
@@ -137,17 +137,17 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
137
137
  */
138
138
  listDnsRecords: import("../network/types.js").QueryObject<Omit<{
139
139
  authorization: string;
140
- xAccountId?: string | undefined;
140
+ xAccountId?: string;
141
141
  foundationId: string;
142
- projectId?: string | undefined;
143
- dnsZoneId?: string | undefined;
142
+ projectId?: string;
143
+ dnsZoneId?: string;
144
144
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListDnsRecordResponse>;
145
145
  /**
146
146
  * Create a dns record
147
147
  */
148
148
  createDnsRecord: import("../network/types.js").MutationObject<Omit<{
149
149
  authorization: string;
150
- xAccountId?: string | undefined;
150
+ xAccountId?: string;
151
151
  foundationId: string;
152
152
  createDnsRecordRequest: import("../api/cloudPlatform.js").CreateDnsRecordRequest;
153
153
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").DnsRecordResponse>;
@@ -156,16 +156,16 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
156
156
  */
157
157
  listNetworks: import("../network/types.js").QueryObject<Omit<{
158
158
  authorization: string;
159
- xAccountId?: string | undefined;
159
+ xAccountId?: string;
160
160
  foundationId: string;
161
- projectId?: string | undefined;
161
+ projectId?: string;
162
162
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListNetworkResponse>;
163
163
  /**
164
164
  * Create a network
165
165
  */
166
166
  createNetwork: import("../network/types.js").MutationObject<Omit<{
167
167
  authorization: string;
168
- xAccountId?: string | undefined;
168
+ xAccountId?: string;
169
169
  foundationId: string;
170
170
  createNetworkRequest: import("../api/cloudPlatform.js").CreateNetworkRequest;
171
171
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").NetworkResponse>;
@@ -174,7 +174,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
174
174
  */
175
175
  listVpns: import("../network/types.js").QueryObject<Omit<{
176
176
  authorization: string;
177
- xAccountId?: string | undefined;
177
+ xAccountId?: string;
178
178
  foundationId: string;
179
179
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListVpnResponse>;
180
180
  /**
@@ -182,7 +182,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
182
182
  */
183
183
  getVpnConfiguration: import("../network/types.js").QueryObject<Omit<{
184
184
  authorization: string;
185
- xAccountId?: string | undefined;
185
+ xAccountId?: string;
186
186
  foundationId: string;
187
187
  vpnId: string;
188
188
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").VpnConfigurationResponse>;
@@ -191,7 +191,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
191
191
  */
192
192
  createVpn: import("../network/types.js").MutationObject<Omit<{
193
193
  authorization: string;
194
- xAccountId?: string | undefined;
194
+ xAccountId?: string;
195
195
  foundationId: string;
196
196
  createVpnRequest: import("../api/cloudPlatform.js").CreateVpnRequest;
197
197
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").VpnResponse>;
@@ -200,7 +200,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
200
200
  */
201
201
  getNetworkById: import("../network/types.js").QueryObject<Omit<{
202
202
  authorization: string;
203
- xAccountId?: string | undefined;
203
+ xAccountId?: string;
204
204
  foundationId: string;
205
205
  networkId: string;
206
206
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").NetworkResponse>;
@@ -209,7 +209,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
209
209
  */
210
210
  listTenants: import("../network/types.js").QueryObject<Omit<{
211
211
  authorization: string;
212
- xAccountId?: string | undefined;
212
+ xAccountId?: string;
213
213
  foundationId: string;
214
214
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListTenantResponse>;
215
215
  /**
@@ -217,7 +217,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
217
217
  */
218
218
  createTenant: import("../network/types.js").MutationObject<Omit<{
219
219
  authorization: string;
220
- xAccountId?: string | undefined;
220
+ xAccountId?: string;
221
221
  foundationId: string;
222
222
  createTenantRequest: import("../api/cloudPlatform.js").CreateTenantRequest;
223
223
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").TenantResponse>;
@@ -226,17 +226,17 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
226
226
  */
227
227
  listRuntimes: import("../network/types.js").QueryObject<Omit<{
228
228
  authorization: string;
229
- xAccountId?: string | undefined;
229
+ xAccountId?: string;
230
230
  foundationId: string;
231
- tenantId?: string | undefined;
232
- projectId?: string | undefined;
231
+ tenantId?: string;
232
+ projectId?: string;
233
233
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListRuntimeResponse>;
234
234
  /**
235
235
  * Create a runtime
236
236
  */
237
237
  createRuntime: import("../network/types.js").MutationObject<Omit<{
238
238
  authorization: string;
239
- xAccountId?: string | undefined;
239
+ xAccountId?: string;
240
240
  foundationId: string;
241
241
  createRuntimeRequest: import("../api/cloudPlatform.js").CreateRuntimeRequest;
242
242
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").RuntimeResponse>;
@@ -245,7 +245,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
245
245
  */
246
246
  getFolderTags: import("../network/types.js").QueryObject<Omit<{
247
247
  authorization: string;
248
- xAccountId?: string | undefined;
248
+ xAccountId?: string;
249
249
  foundationId: string;
250
250
  folderId: string;
251
251
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Tag[]>;
@@ -254,7 +254,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
254
254
  */
255
255
  updateFolderTags: import("../network/types.js").MutationObject<Omit<{
256
256
  authorization: string;
257
- xAccountId?: string | undefined;
257
+ xAccountId?: string;
258
258
  foundationId: string;
259
259
  folderId: string;
260
260
  body: import("../api/cloudPlatform.js").Tag[];
@@ -264,7 +264,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
264
264
  */
265
265
  updateProjectTags: import("../network/types.js").MutationObject<Omit<{
266
266
  authorization: string;
267
- xAccountId?: string | undefined;
267
+ xAccountId?: string;
268
268
  foundationId: string;
269
269
  projectId: string;
270
270
  body: import("../api/cloudPlatform.js").Tag[];
@@ -274,7 +274,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
274
274
  */
275
275
  updateNetworkTags: import("../network/types.js").MutationObject<Omit<{
276
276
  authorization: string;
277
- xAccountId?: string | undefined;
277
+ xAccountId?: string;
278
278
  foundationId: string;
279
279
  networkId: string;
280
280
  body: import("../api/cloudPlatform.js").Tag[];
@@ -284,7 +284,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
284
284
  */
285
285
  updateCidrTags: import("../network/types.js").MutationObject<Omit<{
286
286
  authorization: string;
287
- xAccountId?: string | undefined;
287
+ xAccountId?: string;
288
288
  foundationId: string;
289
289
  cidrId: string;
290
290
  body: import("../api/cloudPlatform.js").Tag[];
@@ -294,7 +294,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
294
294
  */
295
295
  updateDnsZoneTags: import("../network/types.js").MutationObject<Omit<{
296
296
  authorization: string;
297
- xAccountId?: string | undefined;
297
+ xAccountId?: string;
298
298
  foundationId: string;
299
299
  dnsZoneId: string;
300
300
  body: import("../api/cloudPlatform.js").Tag[];
@@ -304,7 +304,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
304
304
  */
305
305
  updateCertificateTags: import("../network/types.js").MutationObject<Omit<{
306
306
  authorization: string;
307
- xAccountId?: string | undefined;
307
+ xAccountId?: string;
308
308
  foundationId: string;
309
309
  certificateId: string;
310
310
  body: import("../api/cloudPlatform.js").Tag[];
@@ -314,7 +314,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
314
314
  */
315
315
  updateVpnTags: import("../network/types.js").MutationObject<Omit<{
316
316
  authorization: string;
317
- xAccountId?: string | undefined;
317
+ xAccountId?: string;
318
318
  foundationId: string;
319
319
  vpnId: string;
320
320
  body: import("../api/cloudPlatform.js").Tag[];
@@ -324,7 +324,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
324
324
  */
325
325
  deleteFolder: import("../network/types.js").MutationObject<Omit<{
326
326
  authorization: string;
327
- xAccountId?: string | undefined;
327
+ xAccountId?: string;
328
328
  foundationId: string;
329
329
  folderId: string;
330
330
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
@@ -333,7 +333,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
333
333
  */
334
334
  deleteProject: import("../network/types.js").MutationObject<Omit<{
335
335
  authorization: string;
336
- xAccountId?: string | undefined;
336
+ xAccountId?: string;
337
337
  foundationId: string;
338
338
  projectId: string;
339
339
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
@@ -342,7 +342,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
342
342
  */
343
343
  deleteNetwork: import("../network/types.js").MutationObject<Omit<{
344
344
  authorization: string;
345
- xAccountId?: string | undefined;
345
+ xAccountId?: string;
346
346
  foundationId: string;
347
347
  networkId: string;
348
348
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
@@ -351,7 +351,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
351
351
  */
352
352
  deleteCertificate: import("../network/types.js").MutationObject<Omit<{
353
353
  authorization: string;
354
- xAccountId?: string | undefined;
354
+ xAccountId?: string;
355
355
  foundationId: string;
356
356
  certificateId: string;
357
357
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
@@ -360,7 +360,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
360
360
  */
361
361
  deleteDnsZone: import("../network/types.js").MutationObject<Omit<{
362
362
  authorization: string;
363
- xAccountId?: string | undefined;
363
+ xAccountId?: string;
364
364
  foundationId: string;
365
365
  dnsZoneId: string;
366
366
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
@@ -369,7 +369,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
369
369
  */
370
370
  deleteDnsRecord: import("../network/types.js").MutationObject<Omit<{
371
371
  authorization: string;
372
- xAccountId?: string | undefined;
372
+ xAccountId?: string;
373
373
  foundationId: string;
374
374
  dnsRecordId: string;
375
375
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
@@ -378,7 +378,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
378
378
  */
379
379
  deleteVPN: import("../network/types.js").MutationObject<Omit<{
380
380
  authorization: string;
381
- xAccountId?: string | undefined;
381
+ xAccountId?: string;
382
382
  foundationId: string;
383
383
  vpnId: string;
384
384
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
@@ -387,7 +387,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
387
387
  */
388
388
  deleteCidr: import("../network/types.js").MutationObject<Omit<{
389
389
  authorization: string;
390
- xAccountId?: string | undefined;
390
+ xAccountId?: string;
391
391
  foundationId: string;
392
392
  cidrId: string;
393
393
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
@@ -9,8 +9,8 @@ declare class CloudRuntimesClient extends ReactQueryNetworkClient {
9
9
  */
10
10
  listApplications: import("../network/types.js").QueryObject<Omit<{
11
11
  projectId: string;
12
- limit?: number | undefined;
13
- offset?: number | undefined;
12
+ limit?: number;
13
+ offset?: number;
14
14
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudRuntimes.js").PaginatedResponseApplicationDto>;
15
15
  /**
16
16
  * Get an application by id
@@ -70,8 +70,8 @@ declare class CloudRuntimesClient extends ReactQueryNetworkClient {
70
70
  * Get list of repositories
71
71
  */
72
72
  listRepositories: import("../network/types.js").QueryObject<Omit<{
73
- limit?: number | undefined;
74
- offset?: number | undefined;
73
+ limit?: number;
74
+ offset?: number;
75
75
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudRuntimes.js").ListRepositoryResponse>;
76
76
  /**
77
77
  * Get list of images from a repository
@@ -10,8 +10,8 @@ declare class CloudServicesClient extends ReactQueryNetworkClient {
10
10
  * Gets overview of costs over the current month, last month and last 3 months.
11
11
  */
12
12
  costOverview: import("../network/types.js").QueryObject<Omit<{
13
- sortBy?: string | undefined;
14
- sortOrder?: string | undefined;
13
+ sortBy?: string;
14
+ sortOrder?: string;
15
15
  }, "sortOrder"> & {
16
16
  sortOrder?: "asc" | "desc" | undefined;
17
17
  }, import("../api/cloudServices.js").CostOverview>;
@@ -28,13 +28,13 @@ declare class CloudServicesClient extends ReactQueryNetworkClient {
28
28
  alerts: import("../network/types.js").InfiniteQueryObject<{
29
29
  workspace: string;
30
30
  env: string;
31
- pillar?: "SECURITY" | "COST_OPTIMIZATION" | "RELIABILITY" | undefined;
32
- severity?: "MEDIUM" | "MANDATORY" | "LOW" | "HIGH" | undefined;
33
- status?: "PENDING" | "NOT_APPLICABLE" | "COMPLETED" | undefined;
34
- search?: string | undefined;
35
- sort?: ("STATUS_ASC" | "STATUS_DESC" | "POLICIES_ASC" | "POLICIES_DESC" | "PILLAR_ASC" | "PILLAR_DESC" | "SEVERITY_ASC" | "SEVERITY_DESC")[] | undefined;
36
- page?: number | undefined;
37
- pageSize?: number | undefined;
31
+ pillar?: "SECURITY" | "COST_OPTIMIZATION" | "RELIABILITY";
32
+ severity?: "LOW" | "MEDIUM" | "HIGH" | "MANDATORY";
33
+ status?: "PENDING" | "NOT_APPLICABLE" | "COMPLETED";
34
+ search?: string;
35
+ sort?: ("STATUS_ASC" | "STATUS_DESC" | "POLICIES_ASC" | "POLICIES_DESC" | "PILLAR_ASC" | "PILLAR_DESC" | "SEVERITY_ASC" | "SEVERITY_DESC")[];
36
+ page?: number;
37
+ pageSize?: number;
38
38
  }, import("../api/cloudServices.js").PaginatedResponseAlert, "data">;
39
39
  /**
40
40
  * Lists instances of a particular service resource running in a workspace.
@@ -42,8 +42,8 @@ declare class CloudServicesClient extends ReactQueryNetworkClient {
42
42
  allInstancesOfResource: import("../network/types.js").QueryObject<{
43
43
  workspaceId: string;
44
44
  resourceId: string;
45
- pageToken?: string | undefined;
46
- search?: string | undefined;
45
+ pageToken?: string;
46
+ search?: string;
47
47
  }, import("../api/cloudServices.js").ManagedResourceList>;
48
48
  /**
49
49
  * Lists all managed services.
@@ -62,16 +62,16 @@ declare class CloudServicesClient extends ReactQueryNetworkClient {
62
62
  */
63
63
  guardRails: import("../network/types.js").QueryObject<{
64
64
  account: string;
65
- workspace?: string | undefined;
66
- env?: string | undefined;
65
+ workspace?: string;
66
+ env?: string;
67
67
  }, import("../api/cloudServices.js").GroupedGuardrailResponse[]>;
68
68
  /**
69
69
  * Enables a Guard Rail in any level
70
70
  */
71
71
  enableGuardRail: import("../network/types.js").MutationObject<{
72
72
  account: string;
73
- workspace?: string | undefined;
74
- env?: string | undefined;
73
+ workspace?: string;
74
+ env?: string;
75
75
  enable: boolean;
76
76
  guardrailId: string;
77
77
  }, unknown>;
@@ -83,7 +83,7 @@ declare class CloudServicesClient extends ReactQueryNetworkClient {
83
83
  * Lists the filters related to the given type.
84
84
  */
85
85
  costAllocationFilters: import("../network/types.js").QueryObject<{
86
- $type: "REGION" | "SUB_ACCOUNT_ID";
86
+ $type: "SUB_ACCOUNT_ID" | "REGION";
87
87
  }, string[]>;
88
88
  /**
89
89
  * Gets a CSV file with the data of `costAllocation`.
@@ -105,7 +105,7 @@ declare class CloudServicesClient extends ReactQueryNetworkClient {
105
105
  */
106
106
  billingAccounts: import("../network/types.js").QueryObject<{
107
107
  stackSpotAccountId: string;
108
- showDeleted?: boolean | undefined;
108
+ showDeleted?: boolean;
109
109
  }, BillingAccountSummaryResponse[]>;
110
110
  }
111
111
  export declare const cloudServicesClient: CloudServicesClient;