@stack-spot/portal-network 0.194.2 → 0.195.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 +14 -0
- 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/client/ai.d.ts +29 -0
- package/dist/client/ai.d.ts.map +1 -1
- package/dist/client/cloud-platform.d.ts +72 -47
- 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/package.json +1 -1
- package/src/api/ai.ts +364 -157
- package/src/api/cloudPlatform.ts +142 -216
- package/src/client/cloud-platform.ts +40 -25
|
@@ -169,53 +169,6 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
169
169
|
foundationId: string;
|
|
170
170
|
createNetworkRequest: import("../api/cloudPlatform.js").CreateNetworkRequest;
|
|
171
171
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").NetworkResponse>;
|
|
172
|
-
/**
|
|
173
|
-
* Get a list of inbounds
|
|
174
|
-
*/
|
|
175
|
-
listInbounds: import("../network/types.js").QueryObject<Omit<{
|
|
176
|
-
authorization: string;
|
|
177
|
-
xAccountId?: string | undefined;
|
|
178
|
-
foundationId: string;
|
|
179
|
-
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListInboundResponse>;
|
|
180
|
-
/**
|
|
181
|
-
* Create a inbound
|
|
182
|
-
*/
|
|
183
|
-
createInbound: import("../network/types.js").MutationObject<Omit<{
|
|
184
|
-
authorization: string;
|
|
185
|
-
xAccountId?: string | undefined;
|
|
186
|
-
foundationId: string;
|
|
187
|
-
createInboundRequest: import("../api/cloudPlatform.js").CreateInboundRequest;
|
|
188
|
-
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").InboundResponse>;
|
|
189
|
-
/**
|
|
190
|
-
* Add a network connection
|
|
191
|
-
*/
|
|
192
|
-
addNetworkConnection: import("../network/types.js").MutationObject<Omit<{
|
|
193
|
-
authorization: string;
|
|
194
|
-
xAccountId?: string | undefined;
|
|
195
|
-
foundationId: string;
|
|
196
|
-
createNetworkConnectionRequest: import("../api/cloudPlatform.js").CreateNetworkConnectionRequest;
|
|
197
|
-
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").NetworkConnectionResponse>;
|
|
198
|
-
/**
|
|
199
|
-
* Get a network connection request
|
|
200
|
-
*/
|
|
201
|
-
getNetworkConnections: import("../network/types.js").QueryObject<Omit<{
|
|
202
|
-
authorization: string;
|
|
203
|
-
xAccountId?: string | undefined;
|
|
204
|
-
foundationId: string;
|
|
205
|
-
accepterNetworkId?: string | undefined;
|
|
206
|
-
accepterProjectId?: string | undefined;
|
|
207
|
-
requesterNetworkId?: string | undefined;
|
|
208
|
-
requesterProjectId?: string | undefined;
|
|
209
|
-
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListNetworkConnectionResponse>;
|
|
210
|
-
/**
|
|
211
|
-
* Accept a network connection
|
|
212
|
-
*/
|
|
213
|
-
acceptNetworkConnection: import("../network/types.js").MutationObject<Omit<{
|
|
214
|
-
authorization: string;
|
|
215
|
-
xAccountId?: string | undefined;
|
|
216
|
-
foundationId: string;
|
|
217
|
-
networkConnectionId: string;
|
|
218
|
-
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").NetworkConnectionResponse>;
|
|
219
172
|
/**
|
|
220
173
|
* Get a list of vpn's
|
|
221
174
|
*/
|
|
@@ -366,6 +319,78 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
366
319
|
vpnId: string;
|
|
367
320
|
body: import("../api/cloudPlatform.js").Tag[];
|
|
368
321
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").VpnResponse>;
|
|
322
|
+
/**
|
|
323
|
+
* Delete a folder
|
|
324
|
+
*/
|
|
325
|
+
deleteFolder: import("../network/types.js").MutationObject<Omit<{
|
|
326
|
+
authorization: string;
|
|
327
|
+
xAccountId?: string | undefined;
|
|
328
|
+
foundationId: string;
|
|
329
|
+
folderId: string;
|
|
330
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
331
|
+
/**
|
|
332
|
+
* Delete a project
|
|
333
|
+
*/
|
|
334
|
+
deleteProject: import("../network/types.js").MutationObject<Omit<{
|
|
335
|
+
authorization: string;
|
|
336
|
+
xAccountId?: string | undefined;
|
|
337
|
+
foundationId: string;
|
|
338
|
+
projectId: string;
|
|
339
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
340
|
+
/**
|
|
341
|
+
* Delete a network
|
|
342
|
+
*/
|
|
343
|
+
deleteNetwork: import("../network/types.js").MutationObject<Omit<{
|
|
344
|
+
authorization: string;
|
|
345
|
+
xAccountId?: string | undefined;
|
|
346
|
+
foundationId: string;
|
|
347
|
+
networkId: string;
|
|
348
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
349
|
+
/**
|
|
350
|
+
* Delete a certificate
|
|
351
|
+
*/
|
|
352
|
+
deleteCertificate: import("../network/types.js").MutationObject<Omit<{
|
|
353
|
+
authorization: string;
|
|
354
|
+
xAccountId?: string | undefined;
|
|
355
|
+
foundationId: string;
|
|
356
|
+
certificateId: string;
|
|
357
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
358
|
+
/**
|
|
359
|
+
* Delete a dns zone
|
|
360
|
+
*/
|
|
361
|
+
deleteDnsZone: import("../network/types.js").MutationObject<Omit<{
|
|
362
|
+
authorization: string;
|
|
363
|
+
xAccountId?: string | undefined;
|
|
364
|
+
foundationId: string;
|
|
365
|
+
dnsZoneId: string;
|
|
366
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
367
|
+
/**
|
|
368
|
+
* Delete a dns record
|
|
369
|
+
*/
|
|
370
|
+
deleteDnsRecord: import("../network/types.js").MutationObject<Omit<{
|
|
371
|
+
authorization: string;
|
|
372
|
+
xAccountId?: string | undefined;
|
|
373
|
+
foundationId: string;
|
|
374
|
+
dnsRecordId: string;
|
|
375
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
376
|
+
/**
|
|
377
|
+
* Delete a VPN
|
|
378
|
+
*/
|
|
379
|
+
deleteVPN: import("../network/types.js").MutationObject<Omit<{
|
|
380
|
+
authorization: string;
|
|
381
|
+
xAccountId?: string | undefined;
|
|
382
|
+
foundationId: string;
|
|
383
|
+
vpnId: string;
|
|
384
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
385
|
+
/**
|
|
386
|
+
* Delete a CIDR
|
|
387
|
+
*/
|
|
388
|
+
deleteCidr: import("../network/types.js").MutationObject<Omit<{
|
|
389
|
+
authorization: string;
|
|
390
|
+
xAccountId?: string | undefined;
|
|
391
|
+
foundationId: string;
|
|
392
|
+
cidrId: string;
|
|
393
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, never>;
|
|
369
394
|
}
|
|
370
395
|
export declare const cloudPlatformClient: CloudPlatformClient;
|
|
371
396
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cloud-platform.d.ts","sourceRoot":"","sources":["../../src/client/cloud-platform.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;
|
|
1
|
+
{"version":3,"file":"cloud-platform.d.ts","sourceRoot":"","sources":["../../src/client/cloud-platform.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAgD7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAA;AAK5E,cAAM,mBAAoB,SAAQ,uBAAuB;;IAKvD,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;IAGlE;;OAEG;IACH,eAAe;;;0HAAwD;IACvE;;OAEG;IACH,UAAU;;;;sHAAsD;IAChE;;OAEG;IACH,SAAS;;;;;kHAAkD;IAC3D;;OAEG;IACH,aAAa;;SAAkD;IAC/D;;OAEG;IACH,gBAAgB;;;;sHAA4D;IAC5E;;OAEG;IACH,YAAY;;;;;kHAAwD;IACpE;;OAEG;IACH,YAAY;;;;;;uHAAoD;IAChE;;OAEG;IACH,aAAa;;;;;mHAAyD;IACtE;;OAEG;IACH,SAAS;;;;oHAAiD;IAC1D;;OAEG;IACH,UAAU;;;;;gHAAsD;IAChE;;OAEG;IACH,gBAAgB;;;;;2HAAyD;IACzE;;OAEG;IACH,cAAc;;;;;uHAAuD;IACrE;;OAEG;IACH,iBAAiB;;;;;uHAA6D;IAC9E;;OAEG;IACH,aAAa;;;;;mHAAyD;IACtE;;OAEG;IACH,cAAc;;;;;mHAAmD;IACjE;;OAEG;IACH,cAAc;;;;;;yHAAsD;IACpE;;OAEG;IACH,eAAe;;;;;qHAA2D;IAC1E;;OAEG;IACH,YAAY;;;;;uHAAoD;IAChE;;OAEG;IACH,aAAa;;;;;mHAAyD;IACtE;;OAEG;IACH,QAAQ;;;;mHAAiD;IACzD;;OAEG;IACH,mBAAmB;;;;;4HAA4D;IAC/E;;OAEG;IACH,SAAS;;;;;+GAAqD;IAC9D;;OAEG;IACH,cAAc;;;;;mHAAmD;IACjE;;KAEC;IACD,WAAW;;;;sHAAmD;IAC9D;;KAEC;IACD,YAAY;;;;;kHAAwD;IACpE;;MAEE;IACF,YAAY;;;;;;uHAAoD;IAChE;;MAEE;IACF,aAAa;;;;;mHAAyD;IACtE;;MAEE;IACF,aAAa;;;;;yGAAsD;IACnE;;MAEE;IACF,gBAAgB;;;;;;kHAAyD;IACzE;;MAEE;IACF,iBAAiB;;;;;;mHAA0D;IAC3E;;MAEE;IACF,iBAAiB;;;;;;mHAA0D;IAC3E;;MAEE;IACF,cAAc;;;;;;gHAAuD;IACrE;;MAEE;IACF,iBAAiB;;;;;;mHAA0D;IAC3E;;MAEE;IACF,qBAAqB;;;;;;uHAA8D;IACnF;;MAEE;IACF,aAAa;;;;;;+GAAsD;IACnE;;MAEE;IACF,YAAY;;;;;0EAAwD;IACpE;;MAEE;IACF,aAAa;;;;;0EAAyD;IACtE;;MAEE;IACF,aAAa;;;;;0EAAyD;IACtE;;MAEE;IACF,iBAAiB;;;;;0EAA6D;IAC9E;;MAEE;IACF,aAAa;;;;;0EAAyD;IACtE;;MAEE;IACF,eAAe;;;;;0EAA2D;IAC1E;;IAEA;IACA,SAAS;;;;;0EAAqD;IAC9D;;IAEA;IACA,UAAU;;;;;0EAAsD;CACjE;AAED,eAAO,MAAM,mBAAmB,qBAA4B,CAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { createCertificate, createCidr, createDnsRecord, createDnsZone, createFolder, createFoundation, createNetwork, createProject, createRuntime, createTenant, createVpn, defaults, deleteCertificate, deleteCidr, deleteDnsRecord, deleteDnsZone, deleteFolder, deleteNetwork, deleteProject, deleteVpn, getCertificate, getFolder, getFolderTags, getFoundation, getNetwork, getProject, getVpnConfiguration, listCertificates, listCidr, listDnsRecord, listDnsZone, listFoundations, listNetwork, listRuntime, listTenant, listVpns, providers, putCertificateTags, putCidrTags, putDnsZoneTags, putFolderTags, putNetworkTags, putProjectTags, putVpnTags, } from '../api/cloudPlatform.js';
|
|
2
2
|
import { DefaultAPIError } from '../error/DefaultAPIError.js';
|
|
3
3
|
import { ReactQueryNetworkClient } from '../network/ReactQueryNetworkClient.js';
|
|
4
4
|
import { removeAuthorizationParam } from '../utils/remove-authorization-param.js';
|
|
@@ -178,51 +178,6 @@ class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
178
178
|
writable: true,
|
|
179
179
|
value: this.mutation(removeAuthorizationParam(createNetwork))
|
|
180
180
|
});
|
|
181
|
-
/**
|
|
182
|
-
* Get a list of inbounds
|
|
183
|
-
*/
|
|
184
|
-
Object.defineProperty(this, "listInbounds", {
|
|
185
|
-
enumerable: true,
|
|
186
|
-
configurable: true,
|
|
187
|
-
writable: true,
|
|
188
|
-
value: this.query(removeAuthorizationParam(listInbound))
|
|
189
|
-
});
|
|
190
|
-
/**
|
|
191
|
-
* Create a inbound
|
|
192
|
-
*/
|
|
193
|
-
Object.defineProperty(this, "createInbound", {
|
|
194
|
-
enumerable: true,
|
|
195
|
-
configurable: true,
|
|
196
|
-
writable: true,
|
|
197
|
-
value: this.mutation(removeAuthorizationParam(createInbound))
|
|
198
|
-
});
|
|
199
|
-
/**
|
|
200
|
-
* Add a network connection
|
|
201
|
-
*/
|
|
202
|
-
Object.defineProperty(this, "addNetworkConnection", {
|
|
203
|
-
enumerable: true,
|
|
204
|
-
configurable: true,
|
|
205
|
-
writable: true,
|
|
206
|
-
value: this.mutation(removeAuthorizationParam(createNetworkConnection))
|
|
207
|
-
});
|
|
208
|
-
/**
|
|
209
|
-
* Get a network connection request
|
|
210
|
-
*/
|
|
211
|
-
Object.defineProperty(this, "getNetworkConnections", {
|
|
212
|
-
enumerable: true,
|
|
213
|
-
configurable: true,
|
|
214
|
-
writable: true,
|
|
215
|
-
value: this.query(removeAuthorizationParam(listNetworkConnection))
|
|
216
|
-
});
|
|
217
|
-
/**
|
|
218
|
-
* Accept a network connection
|
|
219
|
-
*/
|
|
220
|
-
Object.defineProperty(this, "acceptNetworkConnection", {
|
|
221
|
-
enumerable: true,
|
|
222
|
-
configurable: true,
|
|
223
|
-
writable: true,
|
|
224
|
-
value: this.mutation(removeAuthorizationParam(acceptNetworkConnection))
|
|
225
|
-
});
|
|
226
181
|
/**
|
|
227
182
|
* Get a list of vpn's
|
|
228
183
|
*/
|
|
@@ -367,6 +322,78 @@ class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
367
322
|
writable: true,
|
|
368
323
|
value: this.mutation(removeAuthorizationParam(putVpnTags))
|
|
369
324
|
});
|
|
325
|
+
/**
|
|
326
|
+
* Delete a folder
|
|
327
|
+
*/
|
|
328
|
+
Object.defineProperty(this, "deleteFolder", {
|
|
329
|
+
enumerable: true,
|
|
330
|
+
configurable: true,
|
|
331
|
+
writable: true,
|
|
332
|
+
value: this.mutation(removeAuthorizationParam(deleteFolder))
|
|
333
|
+
});
|
|
334
|
+
/**
|
|
335
|
+
* Delete a project
|
|
336
|
+
*/
|
|
337
|
+
Object.defineProperty(this, "deleteProject", {
|
|
338
|
+
enumerable: true,
|
|
339
|
+
configurable: true,
|
|
340
|
+
writable: true,
|
|
341
|
+
value: this.mutation(removeAuthorizationParam(deleteProject))
|
|
342
|
+
});
|
|
343
|
+
/**
|
|
344
|
+
* Delete a network
|
|
345
|
+
*/
|
|
346
|
+
Object.defineProperty(this, "deleteNetwork", {
|
|
347
|
+
enumerable: true,
|
|
348
|
+
configurable: true,
|
|
349
|
+
writable: true,
|
|
350
|
+
value: this.mutation(removeAuthorizationParam(deleteNetwork))
|
|
351
|
+
});
|
|
352
|
+
/**
|
|
353
|
+
* Delete a certificate
|
|
354
|
+
*/
|
|
355
|
+
Object.defineProperty(this, "deleteCertificate", {
|
|
356
|
+
enumerable: true,
|
|
357
|
+
configurable: true,
|
|
358
|
+
writable: true,
|
|
359
|
+
value: this.mutation(removeAuthorizationParam(deleteCertificate))
|
|
360
|
+
});
|
|
361
|
+
/**
|
|
362
|
+
* Delete a dns zone
|
|
363
|
+
*/
|
|
364
|
+
Object.defineProperty(this, "deleteDnsZone", {
|
|
365
|
+
enumerable: true,
|
|
366
|
+
configurable: true,
|
|
367
|
+
writable: true,
|
|
368
|
+
value: this.mutation(removeAuthorizationParam(deleteDnsZone))
|
|
369
|
+
});
|
|
370
|
+
/**
|
|
371
|
+
* Delete a dns record
|
|
372
|
+
*/
|
|
373
|
+
Object.defineProperty(this, "deleteDnsRecord", {
|
|
374
|
+
enumerable: true,
|
|
375
|
+
configurable: true,
|
|
376
|
+
writable: true,
|
|
377
|
+
value: this.mutation(removeAuthorizationParam(deleteDnsRecord))
|
|
378
|
+
});
|
|
379
|
+
/**
|
|
380
|
+
* Delete a VPN
|
|
381
|
+
*/
|
|
382
|
+
Object.defineProperty(this, "deleteVPN", {
|
|
383
|
+
enumerable: true,
|
|
384
|
+
configurable: true,
|
|
385
|
+
writable: true,
|
|
386
|
+
value: this.mutation(removeAuthorizationParam(deleteVpn))
|
|
387
|
+
});
|
|
388
|
+
/**
|
|
389
|
+
* Delete a CIDR
|
|
390
|
+
*/
|
|
391
|
+
Object.defineProperty(this, "deleteCidr", {
|
|
392
|
+
enumerable: true,
|
|
393
|
+
configurable: true,
|
|
394
|
+
writable: true,
|
|
395
|
+
value: this.mutation(removeAuthorizationParam(deleteCidr))
|
|
396
|
+
});
|
|
370
397
|
}
|
|
371
398
|
buildStackSpotError(error) {
|
|
372
399
|
return new DefaultAPIError(error.data, error.status, scfDictionary, error.headers);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cloud-platform.js","sourceRoot":"","sources":["../../src/client/cloud-platform.ts"],"names":[],"mappings":"AACA,OAAO,EACL,
|
|
1
|
+
{"version":3,"file":"cloud-platform.js","sourceRoot":"","sources":["../../src/client/cloud-platform.ts"],"names":[],"mappings":"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"}
|