@stack-spot/portal-network 0.190.0-beta.1 → 0.191.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 +16 -0
- 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 +109 -39
- package/dist/api/codeShift.d.ts.map +1 -1
- package/dist/api/codeShift.js +51 -10
- package/dist/api/codeShift.js.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/dist/client/code-shift.d.ts +16 -3
- package/dist/client/code-shift.d.ts.map +1 -1
- package/dist/client/code-shift.js +10 -1
- package/dist/client/code-shift.js.map +1 -1
- package/package.json +1 -1
- package/src/api/cloudPlatform.ts +142 -216
- package/src/api/codeShift.ts +189 -44
- package/src/client/cloud-platform.ts +40 -25
- package/src/client/code-shift.ts +5 -0
|
@@ -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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"}
|
|
@@ -17,7 +17,7 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
17
17
|
createRepositoriesBatch: import("../network/types.js").MutationObject<Omit<{
|
|
18
18
|
tags?: string[] | null | undefined;
|
|
19
19
|
authorization: string;
|
|
20
|
-
|
|
20
|
+
fastapiCompatV2BodyCreateReposBatchServiceV1ReposBatchPost: import("../api/codeShift.js").BodyCreateReposBatchServiceV1ReposBatchPost;
|
|
21
21
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
22
22
|
/**
|
|
23
23
|
* Gets list of repositories.
|
|
@@ -86,6 +86,11 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
86
86
|
moduleType?: import("../api/codeShift.js").ModuleType | null | undefined;
|
|
87
87
|
page?: number | undefined;
|
|
88
88
|
lastEvaluatedKey?: string | undefined;
|
|
89
|
+
sharedWith?: string | null | undefined;
|
|
90
|
+
createdBy?: string | null | undefined;
|
|
91
|
+
visibility?: import("../api/codeShift.js").ModuleVisibility | null | undefined;
|
|
92
|
+
name?: string | null | undefined;
|
|
93
|
+
tags?: string[] | null | undefined;
|
|
89
94
|
xAccountSlug?: string | undefined;
|
|
90
95
|
authorization: string;
|
|
91
96
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListModuleResponse>;
|
|
@@ -120,6 +125,13 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
120
125
|
xAccountSlug?: string | undefined;
|
|
121
126
|
putModuleRequest: import("../api/codeShift.js").PutModuleRequest;
|
|
122
127
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
128
|
+
/**
|
|
129
|
+
* Adds a module to favorites.
|
|
130
|
+
*/
|
|
131
|
+
addModuleToFavorites: import("../network/types.js").MutationObject<Omit<{
|
|
132
|
+
moduleId: string;
|
|
133
|
+
authorization: string;
|
|
134
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
123
135
|
/**
|
|
124
136
|
* Generates a report.
|
|
125
137
|
*/
|
|
@@ -280,7 +292,7 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
280
292
|
tags?: string[] | null | undefined;
|
|
281
293
|
integrationId?: string | undefined;
|
|
282
294
|
authorization: string;
|
|
283
|
-
|
|
295
|
+
fastapiCompatV2BodyCreateProgramGroupServiceV1ProgramGroupsPost?: import("../api/codeShift.js").BodyCreateProgramGroupServiceV1ProgramGroupsPost | undefined;
|
|
284
296
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").CreateProgramGroupResponse>;
|
|
285
297
|
/**
|
|
286
298
|
* Gets list of program groups.
|
|
@@ -324,7 +336,7 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
324
336
|
tags?: string[] | null | undefined;
|
|
325
337
|
integrationId?: string | null | undefined;
|
|
326
338
|
authorization: string;
|
|
327
|
-
|
|
339
|
+
fastapiCompatV2BodyUpdateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut?: import("../api/codeShift.js").BodyUpdateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut | undefined;
|
|
328
340
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
329
341
|
/**
|
|
330
342
|
* Updates a program group components.
|
|
@@ -361,6 +373,7 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
361
373
|
*/
|
|
362
374
|
tags: import("../network/types.js").QueryObject<Omit<{
|
|
363
375
|
name?: string | null | undefined;
|
|
376
|
+
$type?: "Repository" | "Module" | undefined;
|
|
364
377
|
authorization: string;
|
|
365
378
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListTagResponse>;
|
|
366
379
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"code-shift.d.ts","sourceRoot":"","sources":["../../src/client/code-shift.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;
|
|
1
|
+
{"version":3,"file":"code-shift.d.ts","sourceRoot":"","sources":["../../src/client/code-shift.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { analyticsRepositoryLastReportStatusDownloadV1AnalyticsRepositoriesLastReportStatusDownloadGet, analyticsRepositoryLastReportStatusV1AnalyticsRepositoriesLastReportStatusGet, analyticsRepositoryUsageDownloadV1AnalyticsRepositoriesUsageDownloadGet, analyticsRepositoryUsageV1AnalyticsRepositoriesUsageGet, analyticsProgramGroupsLastReportStatusDownloadV1AnalyticsProgramGroupsLastReportStatusDownloadGet, analyticsProgramGroupsLastReportStatusV1AnalyticsProgramGroupsLastReportStatusGet, analyticsProgramGroupsUsageDownloadV1AnalyticsProgramGroupsUsageDownloadGet, analyticsProgramGroupsUsageV1AnalyticsProgramGroupsUsageGet, analyticsUserUsageDownloadV1AnalyticsUsersUsageDownloadGet, analyticsUserUsageV1AnalyticsUsersUsageGet, checkRoleRouteV1RolesRoleGet, createAccountSettingsV1SettingsPut, createIntegrationServiceV1IntegrationsPost, createModuleServiceV1ModulesPost, createProgramGroupServiceV1ProgramGroupsPost, createReposBatchServiceV1ReposBatchPost, createRepositoryServiceV1ReposPost, defaults, deleteIntegrationServiceV1IntegrationsIntegrationIdDelete, deleteProgramGroupServiceV1ProgramGroupsProgramGroupIdDelete, deleteRepositoryServiceV1ReposRepositoryIdDelete, dispatchModuleServiceV1ModulesDispatchesPost, downloadReportV1ReportsReportIdDownloadGet, downloadSearchReposScmServiceV1ReposSearchScmSearchRepoIdDownloadGet, generalReportSuccessAndErrorsV1AnalyticsReportsGeneralSuccessAndErrorsGet, getAccountSettingsV1SettingsGet, getIntegrationByIdServiceV1IntegrationsIntegrationIdGet, getProgramGroupByIdServiceV1ProgramGroupsProgramGroupIdGet, getReportPullRequestContentV1ReportsReportIdPullRequestGet, getReportV1ReportsReportIdGet, getRepositoryByIdServiceV1ReposRepositoryIdGet, getStatusSearchReposScmServiceV1ReposSearchScmSearchRepoIdStatusGet, listBranchesServiceV1ReposBranchesGet, listIntegrationServiceV1IntegrationsGet, listModulesServiceV1ModulesGet, listProgramGroupReportServiceV1ProgramGroupsProgramGroupIdReportsGet, listProgramGroupServiceV1ProgramGroupsGet, listRepositoryReportV1ReposRepositoryIdReportsGet, listRepositoryServiceV1ReposGet, listTagsServiceV1TagsGet, searchReposScmServiceV1ReposSearchScmGet, updateIntegrationServiceV1IntegrationsIntegrationIdPut, updateProgramGroupComponentsServiceV1ProgramGroupsProgramGroupIdComponentsPut, updateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut, updateRepositoryServiceV1ReposRepositoryIdPut, validateScmUrlServiceV1ReposValidateScmUrlPost, listUserServiceV1UsersGet, analyticsProgramGroupsDetailsV1AnalyticsProgramGroupsDetailsGet, analyticsProgramGroupsDetailsDownloadV1AnalyticsProgramGroupsDetailsDownloadGet, getModuleInputsV1ModulesModuleIdInputsGet, analyticsRepositoryDetailedReportDownloadV1AnalyticsRepositoriesDetailsDownloadGet, analyticsRepositoryDetailedReportV1AnalyticsRepositoriesDetailsGet, listRepositoryDownloadServiceV1ReposDownloadGet, listProgramGroupDownloadServiceV1ProgramGroupsDownloadGet, getModuleV1ModulesModuleIdGet, analyticsProgramGroupsTargetDetailsV1AnalyticsProgramGroupsTargetDetailsGet, analyticsProgramGroupsTargetDetailsDownloadV1AnalyticsProgramGroupsTargetDetailsDownloadGet, putCustomerRatingReportV1ReportsReportIdCustomerRatingPut, searchReposScmServiceV2ReposSearchScmPost, importReposWithTagsScmServiceV2ReposSearchScmSearchIdPost, searchReposScmV2V2ReposSearchScmSearchIdGet, analyticsRepositoryTargetDetailsV1AnalyticsRepositoriesTargetDetailsGet, analyticsRepositoryTargetDetailsDownloadV1AnalyticsRepositoriesTargetDetailsDownloadGet, updateModuleServiceV1ModulesModuleIdPut, downloadSearchReposScmV2V2ReposSearchScmSearchIdDownloadGet, } from '../api/codeShift.js';
|
|
1
|
+
import { analyticsRepositoryLastReportStatusDownloadV1AnalyticsRepositoriesLastReportStatusDownloadGet, analyticsRepositoryLastReportStatusV1AnalyticsRepositoriesLastReportStatusGet, analyticsRepositoryUsageDownloadV1AnalyticsRepositoriesUsageDownloadGet, analyticsRepositoryUsageV1AnalyticsRepositoriesUsageGet, analyticsProgramGroupsLastReportStatusDownloadV1AnalyticsProgramGroupsLastReportStatusDownloadGet, analyticsProgramGroupsLastReportStatusV1AnalyticsProgramGroupsLastReportStatusGet, analyticsProgramGroupsUsageDownloadV1AnalyticsProgramGroupsUsageDownloadGet, analyticsProgramGroupsUsageV1AnalyticsProgramGroupsUsageGet, analyticsUserUsageDownloadV1AnalyticsUsersUsageDownloadGet, analyticsUserUsageV1AnalyticsUsersUsageGet, checkRoleRouteV1RolesRoleGet, createAccountSettingsV1SettingsPut, createIntegrationServiceV1IntegrationsPost, createModuleServiceV1ModulesPost, createProgramGroupServiceV1ProgramGroupsPost, createReposBatchServiceV1ReposBatchPost, createRepositoryServiceV1ReposPost, defaults, deleteIntegrationServiceV1IntegrationsIntegrationIdDelete, deleteProgramGroupServiceV1ProgramGroupsProgramGroupIdDelete, deleteRepositoryServiceV1ReposRepositoryIdDelete, dispatchModuleServiceV1ModulesDispatchesPost, downloadReportV1ReportsReportIdDownloadGet, downloadSearchReposScmServiceV1ReposSearchScmSearchRepoIdDownloadGet, generalReportSuccessAndErrorsV1AnalyticsReportsGeneralSuccessAndErrorsGet, getAccountSettingsV1SettingsGet, getIntegrationByIdServiceV1IntegrationsIntegrationIdGet, getProgramGroupByIdServiceV1ProgramGroupsProgramGroupIdGet, getReportPullRequestContentV1ReportsReportIdPullRequestGet, getReportV1ReportsReportIdGet, getRepositoryByIdServiceV1ReposRepositoryIdGet, getStatusSearchReposScmServiceV1ReposSearchScmSearchRepoIdStatusGet, listBranchesServiceV1ReposBranchesGet, listIntegrationServiceV1IntegrationsGet, listModulesServiceV1ModulesGet, listProgramGroupReportServiceV1ProgramGroupsProgramGroupIdReportsGet, listProgramGroupServiceV1ProgramGroupsGet, listRepositoryReportV1ReposRepositoryIdReportsGet, listRepositoryServiceV1ReposGet, listTagsServiceV1TagsGet, searchReposScmServiceV1ReposSearchScmGet, updateIntegrationServiceV1IntegrationsIntegrationIdPut, updateProgramGroupComponentsServiceV1ProgramGroupsProgramGroupIdComponentsPut, updateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut, updateRepositoryServiceV1ReposRepositoryIdPut, validateScmUrlServiceV1ReposValidateScmUrlPost, listUserServiceV1UsersGet, analyticsProgramGroupsDetailsV1AnalyticsProgramGroupsDetailsGet, analyticsProgramGroupsDetailsDownloadV1AnalyticsProgramGroupsDetailsDownloadGet, getModuleInputsV1ModulesModuleIdInputsGet, analyticsRepositoryDetailedReportDownloadV1AnalyticsRepositoriesDetailsDownloadGet, analyticsRepositoryDetailedReportV1AnalyticsRepositoriesDetailsGet, listRepositoryDownloadServiceV1ReposDownloadGet, listProgramGroupDownloadServiceV1ProgramGroupsDownloadGet, getModuleV1ModulesModuleIdGet, analyticsProgramGroupsTargetDetailsV1AnalyticsProgramGroupsTargetDetailsGet, analyticsProgramGroupsTargetDetailsDownloadV1AnalyticsProgramGroupsTargetDetailsDownloadGet, putCustomerRatingReportV1ReportsReportIdCustomerRatingPut, searchReposScmServiceV2ReposSearchScmPost, importReposWithTagsScmServiceV2ReposSearchScmSearchIdPost, searchReposScmV2V2ReposSearchScmSearchIdGet, analyticsRepositoryTargetDetailsV1AnalyticsRepositoriesTargetDetailsGet, analyticsRepositoryTargetDetailsDownloadV1AnalyticsRepositoriesTargetDetailsDownloadGet, updateModuleServiceV1ModulesModuleIdPut, downloadSearchReposScmV2V2ReposSearchScmSearchIdDownloadGet, moduleFavoriteServiceAddV1ModulesModuleIdFavoritesPost, } from '../api/codeShift.js';
|
|
2
2
|
import { DefaultAPIError } from '../error/DefaultAPIError.js';
|
|
3
3
|
import { codeShiftDictionary } from '../error/dictionary/code-shift.js';
|
|
4
4
|
import { ReactQueryNetworkClient } from '../network/ReactQueryNetworkClient.js';
|
|
@@ -124,6 +124,15 @@ class CodeShift extends ReactQueryNetworkClient {
|
|
|
124
124
|
writable: true,
|
|
125
125
|
value: this.mutation(removeAuthorizationParam(updateModuleServiceV1ModulesModuleIdPut))
|
|
126
126
|
});
|
|
127
|
+
/**
|
|
128
|
+
* Adds a module to favorites.
|
|
129
|
+
*/
|
|
130
|
+
Object.defineProperty(this, "addModuleToFavorites", {
|
|
131
|
+
enumerable: true,
|
|
132
|
+
configurable: true,
|
|
133
|
+
writable: true,
|
|
134
|
+
value: this.mutation(removeAuthorizationParam(moduleFavoriteServiceAddV1ModulesModuleIdFavoritesPost))
|
|
135
|
+
});
|
|
127
136
|
/**
|
|
128
137
|
* Generates a report.
|
|
129
138
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"code-shift.js","sourceRoot":"","sources":["../../src/client/code-shift.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,6FAA6F,EAC7F,6EAA6E,EAC7E,uEAAuE,EACvE,uDAAuD,EACvD,iGAAiG,EACjG,iFAAiF,EACjF,2EAA2E,EAC3E,2DAA2D,EAC3D,0DAA0D,EAC1D,0CAA0C,EAC1C,4BAA4B,EAC5B,kCAAkC,EAClC,0CAA0C,EAC1C,gCAAgC,EAChC,4CAA4C,EAC5C,uCAAuC,EACvC,kCAAkC,EAClC,QAAQ,EACR,yDAAyD,EACzD,4DAA4D,EAC5D,gDAAgD,EAChD,4CAA4C,EAC5C,0CAA0C,EAC1C,oEAAoE,EACpE,yEAAyE,EACzE,+BAA+B,EAC/B,uDAAuD,EACvD,0DAA0D,EAC1D,0DAA0D,EAC1D,6BAA6B,EAC7B,8CAA8C,EAC9C,mEAAmE,EACnE,qCAAqC,EACrC,uCAAuC,EACvC,8BAA8B,EAC9B,oEAAoE,EACpE,yCAAyC,EACzC,iDAAiD,EACjD,+BAA+B,EAC/B,wBAAwB,EACxB,wCAAwC,EACxC,sDAAsD,EACtD,6EAA6E,EAC7E,yDAAyD,EACzD,6CAA6C,EAC7C,8CAA8C,EAC9C,yBAAyB,EACzB,+DAA+D,EAC/D,+EAA+E,EAC/E,yCAAyC,EACzC,kFAAkF,EAClF,kEAAkE,EAClE,+CAA+C,EAC/C,yDAAyD,EACzD,6BAA6B,EAC7B,2EAA2E,EAC3E,2FAA2F,EAC3F,yDAAyD,EACzD,yCAAyC,EACzC,yDAAyD,EACzD,2CAA2C,EAC3C,uEAAuE,EACvE,uFAAuF,EACvF,uCAAuC,EACvC,2DAA2D,
|
|
1
|
+
{"version":3,"file":"code-shift.js","sourceRoot":"","sources":["../../src/client/code-shift.ts"],"names":[],"mappings":"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"}
|