@cloudfleet/sdk 0.0.1-0ac9bf0 → 0.0.1-0bc765b
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/dist/@tanstack/react-query.gen.d.ts +1149 -0
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -0
- package/dist/@tanstack/react-query.gen.js +1165 -0
- package/dist/@tanstack/react-query.gen.js.map +1 -0
- package/dist/client/client.gen.d.ts.map +1 -1
- package/dist/client/client.gen.js +113 -98
- package/dist/client/client.gen.js.map +1 -1
- package/dist/client/index.d.ts +1 -1
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js.map +1 -1
- package/dist/client/types.gen.d.ts +9 -13
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.d.ts +6 -2
- package/dist/client/utils.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.js +10 -12
- package/dist/client/utils.gen.js.map +1 -1
- package/dist/client.gen.d.ts.map +1 -1
- package/dist/client.gen.js +1 -3
- package/dist/client.gen.js.map +1 -1
- package/dist/core/auth.gen.d.ts.map +1 -1
- package/dist/core/auth.gen.js.map +1 -1
- package/dist/core/bodySerializer.gen.d.ts +16 -8
- package/dist/core/bodySerializer.gen.d.ts.map +1 -1
- package/dist/core/bodySerializer.gen.js +1 -1
- package/dist/core/bodySerializer.gen.js.map +1 -1
- package/dist/core/params.gen.d.ts +10 -0
- package/dist/core/params.gen.d.ts.map +1 -1
- package/dist/core/params.gen.js +18 -6
- package/dist/core/params.gen.js.map +1 -1
- package/dist/core/pathSerializer.gen.d.ts.map +1 -1
- package/dist/core/pathSerializer.gen.js +3 -11
- package/dist/core/pathSerializer.gen.js.map +1 -1
- package/dist/core/queryKeySerializer.gen.d.ts.map +1 -1
- package/dist/core/queryKeySerializer.gen.js +4 -11
- package/dist/core/queryKeySerializer.gen.js.map +1 -1
- package/dist/core/serverSentEvents.gen.d.ts +1 -1
- package/dist/core/serverSentEvents.gen.d.ts.map +1 -1
- package/dist/core/serverSentEvents.gen.js +6 -9
- package/dist/core/serverSentEvents.gen.js.map +1 -1
- package/dist/core/types.gen.d.ts +1 -1
- package/dist/core/types.gen.d.ts.map +1 -1
- package/dist/core/utils.gen.d.ts.map +1 -1
- package/dist/core/utils.gen.js +1 -1
- package/dist/core/utils.gen.js.map +1 -1
- package/dist/schemas.gen.d.ts +1475 -218
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +2844 -328
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +117 -27
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +188 -141
- package/dist/sdk.gen.js.map +1 -1
- package/dist/services/kubernetes/api.d.ts +8 -8
- package/dist/types.gen.d.ts +1390 -150
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +2946 -847
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +1315 -519
- package/dist/zod.gen.js.map +1 -1
- package/package.json +28 -5
package/dist/sdk.gen.js
CHANGED
|
@@ -1,41 +1,51 @@
|
|
|
1
1
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
+
import { formDataBodySerializer } from './client';
|
|
2
3
|
import { client } from './client.gen';
|
|
3
4
|
export class BillingService {
|
|
4
5
|
/**
|
|
5
6
|
* Get billing usage information.
|
|
6
7
|
*
|
|
7
|
-
* Returns aggregated usage information for the organization. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
|
|
8
|
+
* Returns aggregated usage information for the organization with facets for filtering. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
|
|
8
9
|
*
|
|
9
10
|
*/
|
|
10
11
|
static getUsage(options) {
|
|
11
|
-
return (options?.client ?? client).get({
|
|
12
|
-
url: '/billing/usage',
|
|
13
|
-
...options
|
|
14
|
-
});
|
|
12
|
+
return (options?.client ?? client).get({ url: '/billing/usage', ...options });
|
|
15
13
|
}
|
|
16
14
|
/**
|
|
17
|
-
* Get
|
|
15
|
+
* Get Stripe client secret.
|
|
18
16
|
*
|
|
19
|
-
*
|
|
17
|
+
* Endpoint returns the Stripe secret key for the organization. This key is used to securely update the payment method in the Cloudfleet console only, please visit https://console.cloudfleet.ai. This endpoint is available to administrators of the organization only.
|
|
20
18
|
*
|
|
21
19
|
*/
|
|
22
|
-
static
|
|
23
|
-
return (options?.client ?? client).
|
|
24
|
-
url: '/billing/payment-method',
|
|
25
|
-
...options
|
|
26
|
-
});
|
|
20
|
+
static getPaymentMethodSecret(options) {
|
|
21
|
+
return (options?.client ?? client).put({ url: '/billing/payment-method', ...options });
|
|
27
22
|
}
|
|
28
23
|
/**
|
|
29
|
-
*
|
|
24
|
+
* List organization payment methods.
|
|
30
25
|
*
|
|
31
|
-
*
|
|
26
|
+
* Returns all payment methods (cards and SEPA Direct Debit) attached to the organization, most recently added first, with the default flagged. This endpoint is available to all users in the organization.
|
|
32
27
|
*
|
|
33
28
|
*/
|
|
34
|
-
static
|
|
35
|
-
return (options?.client ?? client).
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
29
|
+
static listPaymentMethods(options) {
|
|
30
|
+
return (options?.client ?? client).get({ url: '/billing/payment-methods', ...options });
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Set the default payment method.
|
|
34
|
+
*
|
|
35
|
+
* Sets the given payment method as the default used for invoices and active subscriptions. Requires the Administrator role.
|
|
36
|
+
*
|
|
37
|
+
*/
|
|
38
|
+
static setDefaultPaymentMethod(options) {
|
|
39
|
+
return (options.client ?? client).put({ url: '/billing/payment-methods/{paymentMethodId}/default', ...options });
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Delete a payment method.
|
|
43
|
+
*
|
|
44
|
+
* Detaches the given payment method from the organization. Requires the Administrator role. An organization must keep at least one payment method, so deleting the only remaining method is rejected.
|
|
45
|
+
*
|
|
46
|
+
*/
|
|
47
|
+
static deletePaymentMethod(options) {
|
|
48
|
+
return (options.client ?? client).delete({ url: '/billing/payment-methods/{paymentMethodId}', ...options });
|
|
39
49
|
}
|
|
40
50
|
/**
|
|
41
51
|
* List issued invoices.
|
|
@@ -44,10 +54,7 @@ export class BillingService {
|
|
|
44
54
|
*
|
|
45
55
|
*/
|
|
46
56
|
static listInvoices(options) {
|
|
47
|
-
return (options?.client ?? client).get({
|
|
48
|
-
url: '/billing/invoices',
|
|
49
|
-
...options
|
|
50
|
-
});
|
|
57
|
+
return (options?.client ?? client).get({ url: '/billing/invoices', ...options });
|
|
51
58
|
}
|
|
52
59
|
/**
|
|
53
60
|
* Get organization contact and billing address information.
|
|
@@ -56,10 +63,7 @@ export class BillingService {
|
|
|
56
63
|
*
|
|
57
64
|
*/
|
|
58
65
|
static getContact(options) {
|
|
59
|
-
return (options?.client ?? client).get({
|
|
60
|
-
url: '/billing/contact',
|
|
61
|
-
...options
|
|
62
|
-
});
|
|
66
|
+
return (options?.client ?? client).get({ url: '/billing/contact', ...options });
|
|
63
67
|
}
|
|
64
68
|
/**
|
|
65
69
|
* Update organization contact information and billing address.
|
|
@@ -84,10 +88,7 @@ export class BillingService {
|
|
|
84
88
|
*
|
|
85
89
|
*/
|
|
86
90
|
static getCredits(options) {
|
|
87
|
-
return (options?.client ?? client).get({
|
|
88
|
-
url: '/billing/credits',
|
|
89
|
-
...options
|
|
90
|
-
});
|
|
91
|
+
return (options?.client ?? client).get({ url: '/billing/credits', ...options });
|
|
91
92
|
}
|
|
92
93
|
/**
|
|
93
94
|
* Redeem promotional credits code.
|
|
@@ -116,10 +117,7 @@ export class ClustersService {
|
|
|
116
117
|
*
|
|
117
118
|
*/
|
|
118
119
|
static listCharts(options) {
|
|
119
|
-
return (options.client ?? client).get({
|
|
120
|
-
url: '/clusters/{cluster_id}/charts',
|
|
121
|
-
...options
|
|
122
|
-
});
|
|
120
|
+
return (options.client ?? client).get({ url: '/clusters/{cluster_id}/charts', ...options });
|
|
123
121
|
}
|
|
124
122
|
/**
|
|
125
123
|
* Create a new chart.
|
|
@@ -148,10 +146,7 @@ export class ClustersService {
|
|
|
148
146
|
*
|
|
149
147
|
*/
|
|
150
148
|
static deleteChart(options) {
|
|
151
|
-
return (options.client ?? client).delete({
|
|
152
|
-
url: '/clusters/{cluster_id}/charts/{chart_name}',
|
|
153
|
-
...options
|
|
154
|
-
});
|
|
149
|
+
return (options.client ?? client).delete({ url: '/clusters/{cluster_id}/charts/{chart_name}', ...options });
|
|
155
150
|
}
|
|
156
151
|
/**
|
|
157
152
|
* Get chart information.
|
|
@@ -162,10 +157,7 @@ export class ClustersService {
|
|
|
162
157
|
*
|
|
163
158
|
*/
|
|
164
159
|
static getChart(options) {
|
|
165
|
-
return (options.client ?? client).get({
|
|
166
|
-
url: '/clusters/{cluster_id}/charts/{chart_name}',
|
|
167
|
-
...options
|
|
168
|
-
});
|
|
160
|
+
return (options.client ?? client).get({ url: '/clusters/{cluster_id}/charts/{chart_name}', ...options });
|
|
169
161
|
}
|
|
170
162
|
/**
|
|
171
163
|
* Update chart information.
|
|
@@ -194,10 +186,7 @@ export class ClustersService {
|
|
|
194
186
|
*
|
|
195
187
|
*/
|
|
196
188
|
static listFleets(options) {
|
|
197
|
-
return (options.client ?? client).get({
|
|
198
|
-
url: '/clusters/{cluster_id}/fleets',
|
|
199
|
-
...options
|
|
200
|
-
});
|
|
189
|
+
return (options.client ?? client).get({ url: '/clusters/{cluster_id}/fleets', ...options });
|
|
201
190
|
}
|
|
202
191
|
/**
|
|
203
192
|
* Create a new fleet.
|
|
@@ -220,16 +209,13 @@ export class ClustersService {
|
|
|
220
209
|
/**
|
|
221
210
|
* Permanently delete fleet.
|
|
222
211
|
*
|
|
223
|
-
* This endpoint will permanently delete fleet. This operation cannot be undone. Your subscription will end by the end of the current billing period and you will not be able to receive credit for unused time.
|
|
212
|
+
* This endpoint will permanently delete fleet. This operation cannot be undone. Your subscription will end by the end of the current billing period and you will not be able to receive credit for unused time. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
|
|
224
213
|
*
|
|
225
214
|
* This endpoint is available to administrators of the organization only.
|
|
226
215
|
*
|
|
227
216
|
*/
|
|
228
217
|
static deleteFleet(options) {
|
|
229
|
-
return (options.client ?? client).delete({
|
|
230
|
-
url: '/clusters/{cluster_id}/fleets/{fleet_name}',
|
|
231
|
-
...options
|
|
232
|
-
});
|
|
218
|
+
return (options.client ?? client).delete({ url: '/clusters/{cluster_id}/fleets/{fleet_name}', ...options });
|
|
233
219
|
}
|
|
234
220
|
/**
|
|
235
221
|
* Get fleet information.
|
|
@@ -240,18 +226,13 @@ export class ClustersService {
|
|
|
240
226
|
*
|
|
241
227
|
*/
|
|
242
228
|
static getFleet(options) {
|
|
243
|
-
return (options.client ?? client).get({
|
|
244
|
-
url: '/clusters/{cluster_id}/fleets/{fleet_name}',
|
|
245
|
-
...options
|
|
246
|
-
});
|
|
229
|
+
return (options.client ?? client).get({ url: '/clusters/{cluster_id}/fleets/{fleet_name}', ...options });
|
|
247
230
|
}
|
|
248
231
|
/**
|
|
249
232
|
* Update fleet information.
|
|
250
233
|
*
|
|
251
234
|
* This endpoint allows you to update fleet details.
|
|
252
235
|
*
|
|
253
|
-
* Setting status to `deleted` will permanently delete fleet. This operation cannot be undone. Your subscription will end by the end of the current billing period and you will not be able to receive credit for unused time. If you want to keep using the Fleet until the end of the billing period, set the status to `cancelling`.
|
|
254
|
-
*
|
|
255
236
|
* For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
|
|
256
237
|
*
|
|
257
238
|
* This endpoint is available to administrators of the organization only.
|
|
@@ -273,24 +254,18 @@ export class ClustersService {
|
|
|
273
254
|
* An API endpoint for directly querying a Kubernetes cluster API without requiring kubectl or other tools. This endpoint is ideal for automation and scripting, as well as for internal use in fetching data for the Cloudfleet Console. It acts as a passthrough to the Kubernetes API, allowing access to any valid Kubernetes API endpoint, including those not exposed in the Cloudfleet Console. The endpoint is strictly read-only, ensuring no modifications to the cluster state. It is accessible to all users within the organization and uses the same authentication mechanisms as other Cloudfleet API endpoints.
|
|
274
255
|
*/
|
|
275
256
|
static queryCluster(options) {
|
|
276
|
-
return (options.client ?? client).get({
|
|
277
|
-
url: '/clusters/{cluster_id}/query',
|
|
278
|
-
...options
|
|
279
|
-
});
|
|
257
|
+
return (options.client ?? client).get({ url: '/clusters/{cluster_id}/query', ...options });
|
|
280
258
|
}
|
|
281
259
|
/**
|
|
282
260
|
* List clusters.
|
|
283
261
|
*
|
|
284
|
-
* Returns a list of clusters under the current organization
|
|
262
|
+
* Returns a list of clusters under the current organization.
|
|
285
263
|
*
|
|
286
264
|
* This endpoint is available to all users in the organization.
|
|
287
265
|
*
|
|
288
266
|
*/
|
|
289
267
|
static listClusters(options) {
|
|
290
|
-
return (options?.client ?? client).get({
|
|
291
|
-
url: '/clusters',
|
|
292
|
-
...options
|
|
293
|
-
});
|
|
268
|
+
return (options?.client ?? client).get({ url: '/clusters', ...options });
|
|
294
269
|
}
|
|
295
270
|
/**
|
|
296
271
|
* Create a new cluster.
|
|
@@ -319,29 +294,23 @@ export class ClustersService {
|
|
|
319
294
|
*
|
|
320
295
|
*/
|
|
321
296
|
static deleteCluster(options) {
|
|
322
|
-
return (options.client ?? client).delete({
|
|
323
|
-
url: '/clusters/{cluster_id}',
|
|
324
|
-
...options
|
|
325
|
-
});
|
|
297
|
+
return (options.client ?? client).delete({ url: '/clusters/{cluster_id}', ...options });
|
|
326
298
|
}
|
|
327
299
|
/**
|
|
328
300
|
* Get cluster information.
|
|
329
301
|
*
|
|
330
|
-
* Returns cluster details
|
|
302
|
+
* Returns cluster details.
|
|
331
303
|
*
|
|
332
304
|
* This endpoint is available to all users in the organization.
|
|
333
305
|
*
|
|
334
306
|
*/
|
|
335
307
|
static getCluster(options) {
|
|
336
|
-
return (options.client ?? client).get({
|
|
337
|
-
url: '/clusters/{cluster_id}',
|
|
338
|
-
...options
|
|
339
|
-
});
|
|
308
|
+
return (options.client ?? client).get({ url: '/clusters/{cluster_id}', ...options });
|
|
340
309
|
}
|
|
341
310
|
/**
|
|
342
311
|
* Update cluster information.
|
|
343
312
|
*
|
|
344
|
-
* This endpoint allows you to update cluster details,
|
|
313
|
+
* This endpoint allows you to update cluster details such as name, tier, and Kubernetes version. For more information about clusters, see [Clusters](https://cloudfleet.ai/docs/cluster-management/cluster-types/) section of documentation.
|
|
345
314
|
*
|
|
346
315
|
* This endpoint is available to administrators of the organization only.
|
|
347
316
|
*
|
|
@@ -363,24 +332,18 @@ export class ClustersService {
|
|
|
363
332
|
*
|
|
364
333
|
*/
|
|
365
334
|
static getJoinInformation(options) {
|
|
366
|
-
return (options.client ?? client).post({
|
|
367
|
-
url: '/clusters/{cluster_id}/join_information',
|
|
368
|
-
...options
|
|
369
|
-
});
|
|
335
|
+
return (options.client ?? client).post({ url: '/clusters/{cluster_id}/join_information', ...options });
|
|
370
336
|
}
|
|
371
337
|
}
|
|
372
338
|
export class InvitesService {
|
|
373
339
|
/**
|
|
374
340
|
* List invites.
|
|
375
341
|
*
|
|
376
|
-
* Returns a list of invites under the current organization. This endpoint is available to
|
|
342
|
+
* Returns a list of pending (non-expired) invites under the current organization. This endpoint is available to administrators of the organization only.
|
|
377
343
|
*
|
|
378
344
|
*/
|
|
379
345
|
static listInvites(options) {
|
|
380
|
-
return (options?.client ?? client).get({
|
|
381
|
-
url: '/invites',
|
|
382
|
-
...options
|
|
383
|
-
});
|
|
346
|
+
return (options?.client ?? client).get({ url: '/invites', ...options });
|
|
384
347
|
}
|
|
385
348
|
/**
|
|
386
349
|
* Create a new invite.
|
|
@@ -401,14 +364,11 @@ export class InvitesService {
|
|
|
401
364
|
/**
|
|
402
365
|
* Get invite information.
|
|
403
366
|
*
|
|
404
|
-
*
|
|
367
|
+
* Validates an invitation code and returns the email address it was issued to (to pre-fill the signup form) and the organization it grants access to. This endpoint is unauthenticated, so no other invite details (such as the invited role) are disclosed.
|
|
405
368
|
*
|
|
406
369
|
*/
|
|
407
370
|
static getInvite(options) {
|
|
408
|
-
return (options.client ?? client).get({
|
|
409
|
-
url: '/invites/{code}',
|
|
410
|
-
...options
|
|
411
|
-
});
|
|
371
|
+
return (options.client ?? client).get({ url: '/invites/{code}', ...options });
|
|
412
372
|
}
|
|
413
373
|
/**
|
|
414
374
|
* Permanently delete invite.
|
|
@@ -417,10 +377,7 @@ export class InvitesService {
|
|
|
417
377
|
*
|
|
418
378
|
*/
|
|
419
379
|
static deleteInvite(options) {
|
|
420
|
-
return (options.client ?? client).delete({
|
|
421
|
-
url: '/invites/{email}',
|
|
422
|
-
...options
|
|
423
|
-
});
|
|
380
|
+
return (options.client ?? client).delete({ url: '/invites/{email}', ...options });
|
|
424
381
|
}
|
|
425
382
|
}
|
|
426
383
|
export class ChartsMarketplaceService {
|
|
@@ -433,23 +390,36 @@ export class ChartsMarketplaceService {
|
|
|
433
390
|
*
|
|
434
391
|
*/
|
|
435
392
|
static listMarketplaceCharts(options) {
|
|
436
|
-
return (options?.client ?? client).get({
|
|
437
|
-
url: '/marketplace',
|
|
438
|
-
...options
|
|
439
|
-
});
|
|
393
|
+
return (options?.client ?? client).get({ url: '/marketplace', ...options });
|
|
440
394
|
}
|
|
441
395
|
/**
|
|
442
|
-
* Get chart
|
|
396
|
+
* Get chart files for a specific version channel.
|
|
443
397
|
*
|
|
444
|
-
* Returns
|
|
398
|
+
* Returns the Chart.yaml, values.yaml, and values.schema.json files for the latest version matching the specified version channel.
|
|
399
|
+
*
|
|
400
|
+
* Version channels use patterns like "1.31.x-cfke.x" to match the latest patch version, or "1.x.x-cfke.x" to match the latest minor version.
|
|
445
401
|
*
|
|
446
402
|
* This endpoint is available to all users in the organization.
|
|
447
403
|
*
|
|
448
404
|
*/
|
|
449
|
-
static
|
|
450
|
-
return (options.client ?? client).get({
|
|
451
|
-
|
|
452
|
-
|
|
405
|
+
static getMarketplaceChartFiles(options) {
|
|
406
|
+
return (options.client ?? client).get({ url: '/marketplace/{chart_name}/files/{version_channel}', ...options });
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
export class McpService {
|
|
410
|
+
/**
|
|
411
|
+
* MCP endpoint
|
|
412
|
+
*
|
|
413
|
+
* MCP endpoint for handling Model Context Protocol JSON-RPC 2.0 messages.
|
|
414
|
+
*/
|
|
415
|
+
static postMcp(options) {
|
|
416
|
+
return (options.client ?? client).post({
|
|
417
|
+
url: '/mcp',
|
|
418
|
+
...options,
|
|
419
|
+
headers: {
|
|
420
|
+
'Content-Type': 'application/json',
|
|
421
|
+
...options.headers
|
|
422
|
+
}
|
|
453
423
|
});
|
|
454
424
|
}
|
|
455
425
|
}
|
|
@@ -463,10 +433,7 @@ export class OrganizationService {
|
|
|
463
433
|
*
|
|
464
434
|
*/
|
|
465
435
|
static getOrganization(options) {
|
|
466
|
-
return (options?.client ?? client).get({
|
|
467
|
-
url: '/organization',
|
|
468
|
-
...options
|
|
469
|
-
});
|
|
436
|
+
return (options?.client ?? client).get({ url: '/organization', ...options });
|
|
470
437
|
}
|
|
471
438
|
/**
|
|
472
439
|
* Create a new organization / Cloudfleet account signup.
|
|
@@ -485,6 +452,110 @@ export class OrganizationService {
|
|
|
485
452
|
});
|
|
486
453
|
}
|
|
487
454
|
}
|
|
455
|
+
export class RegistryService {
|
|
456
|
+
/**
|
|
457
|
+
* List repositories
|
|
458
|
+
*
|
|
459
|
+
* Returns a list of repositories in the registry across all regions. This endpoint is available to all users in the organization.
|
|
460
|
+
*
|
|
461
|
+
*/
|
|
462
|
+
static listRepositories(options) {
|
|
463
|
+
return (options?.client ?? client).get({ url: '/registry', ...options });
|
|
464
|
+
}
|
|
465
|
+
/**
|
|
466
|
+
* List tags for a repository
|
|
467
|
+
*
|
|
468
|
+
* Returns a list of tags for a specific repository, including size and metadata for each tag. This endpoint is available to all users in the organization.
|
|
469
|
+
*
|
|
470
|
+
*/
|
|
471
|
+
static listTags(options) {
|
|
472
|
+
return (options.client ?? client).get({ url: '/registry/{region}/{repository}', ...options });
|
|
473
|
+
}
|
|
474
|
+
/**
|
|
475
|
+
* Delete tag
|
|
476
|
+
*
|
|
477
|
+
* Permanently deletes a specific tag from a repository. This endpoint is available to administrators of the organization only.
|
|
478
|
+
*
|
|
479
|
+
*/
|
|
480
|
+
static deleteTag(options) {
|
|
481
|
+
return (options.client ?? client).delete({ url: '/registry/{region}/{repository}/{tag}', ...options });
|
|
482
|
+
}
|
|
483
|
+
/**
|
|
484
|
+
* Get tag details
|
|
485
|
+
*
|
|
486
|
+
* Returns detailed information for a specific tag in a repository, including manifest details, size, and URI. This endpoint is available to all users in the organization.
|
|
487
|
+
*
|
|
488
|
+
*/
|
|
489
|
+
static getTag(options) {
|
|
490
|
+
return (options.client ?? client).get({ url: '/registry/{region}/{repository}/{tag}', ...options });
|
|
491
|
+
}
|
|
492
|
+
}
|
|
493
|
+
export class TicketsService {
|
|
494
|
+
/**
|
|
495
|
+
* List tickets for the current organization.
|
|
496
|
+
*
|
|
497
|
+
* Returns all tickets belonging to the caller's organization, newest first.
|
|
498
|
+
*
|
|
499
|
+
*/
|
|
500
|
+
static listTickets(options) {
|
|
501
|
+
return (options?.client ?? client).get({ url: '/tickets', ...options });
|
|
502
|
+
}
|
|
503
|
+
/**
|
|
504
|
+
* Create a new support ticket.
|
|
505
|
+
*
|
|
506
|
+
* Creates a new support ticket with an initial customer message. The request is `multipart/form-data` with a JSON-encoded `payload` field carrying `category`, `body`, and optional `properties`, plus up to 3 `attachments` files (10 MB max each).
|
|
507
|
+
*
|
|
508
|
+
*/
|
|
509
|
+
static createTicket(options) {
|
|
510
|
+
return (options.client ?? client).post({
|
|
511
|
+
...formDataBodySerializer,
|
|
512
|
+
url: '/tickets',
|
|
513
|
+
...options,
|
|
514
|
+
headers: {
|
|
515
|
+
'Content-Type': null,
|
|
516
|
+
...options.headers
|
|
517
|
+
}
|
|
518
|
+
});
|
|
519
|
+
}
|
|
520
|
+
/**
|
|
521
|
+
* Close a ticket (soft close).
|
|
522
|
+
*
|
|
523
|
+
* Marks the ticket as closed. Closed is a terminal state — users cannot reply to a closed ticket; a new ticket must be opened instead.
|
|
524
|
+
*
|
|
525
|
+
*/
|
|
526
|
+
static closeTicket(options) {
|
|
527
|
+
return (options.client ?? client).delete({ url: '/tickets/{ticket_id}', ...options });
|
|
528
|
+
}
|
|
529
|
+
/**
|
|
530
|
+
* Get a ticket and its messages.
|
|
531
|
+
*/
|
|
532
|
+
static getTicket(options) {
|
|
533
|
+
return (options.client ?? client).get({ url: '/tickets/{ticket_id}', ...options });
|
|
534
|
+
}
|
|
535
|
+
/**
|
|
536
|
+
* Append a customer reply to a ticket.
|
|
537
|
+
*
|
|
538
|
+
* Multipart form-data with a JSON-encoded `payload` field carrying `body`, plus up to 3 `attachments` files. Returns 409 if the ticket is closed.
|
|
539
|
+
*
|
|
540
|
+
*/
|
|
541
|
+
static replyTicket(options) {
|
|
542
|
+
return (options.client ?? client).post({
|
|
543
|
+
...formDataBodySerializer,
|
|
544
|
+
url: '/tickets/{ticket_id}/messages',
|
|
545
|
+
...options,
|
|
546
|
+
headers: {
|
|
547
|
+
'Content-Type': null,
|
|
548
|
+
...options.headers
|
|
549
|
+
}
|
|
550
|
+
});
|
|
551
|
+
}
|
|
552
|
+
/**
|
|
553
|
+
* Download a ticket attachment.
|
|
554
|
+
*/
|
|
555
|
+
static getTicketAttachment(options) {
|
|
556
|
+
return (options.client ?? client).get({ url: '/tickets/{ticket_id}/attachments/{attachment_id}', ...options });
|
|
557
|
+
}
|
|
558
|
+
}
|
|
488
559
|
export class TokensService {
|
|
489
560
|
/**
|
|
490
561
|
* List access tokens in organization.
|
|
@@ -493,10 +564,7 @@ export class TokensService {
|
|
|
493
564
|
*
|
|
494
565
|
*/
|
|
495
566
|
static listTokens(options) {
|
|
496
|
-
return (options?.client ?? client).get({
|
|
497
|
-
url: '/tokens',
|
|
498
|
-
...options
|
|
499
|
-
});
|
|
567
|
+
return (options?.client ?? client).get({ url: '/tokens', ...options });
|
|
500
568
|
}
|
|
501
569
|
/**
|
|
502
570
|
* Create a new access token.
|
|
@@ -523,10 +591,7 @@ export class TokensService {
|
|
|
523
591
|
*
|
|
524
592
|
*/
|
|
525
593
|
static deleteToken(options) {
|
|
526
|
-
return (options.client ?? client).delete({
|
|
527
|
-
url: '/tokens/{token_id}',
|
|
528
|
-
...options
|
|
529
|
-
});
|
|
594
|
+
return (options.client ?? client).delete({ url: '/tokens/{token_id}', ...options });
|
|
530
595
|
}
|
|
531
596
|
/**
|
|
532
597
|
* Get access token information.
|
|
@@ -535,10 +600,7 @@ export class TokensService {
|
|
|
535
600
|
*
|
|
536
601
|
*/
|
|
537
602
|
static getToken(options) {
|
|
538
|
-
return (options.client ?? client).get({
|
|
539
|
-
url: '/tokens/{token_id}',
|
|
540
|
-
...options
|
|
541
|
-
});
|
|
603
|
+
return (options.client ?? client).get({ url: '/tokens/{token_id}', ...options });
|
|
542
604
|
}
|
|
543
605
|
/**
|
|
544
606
|
* Update access token information.
|
|
@@ -564,10 +626,7 @@ export class TokensService {
|
|
|
564
626
|
* Generates a new access token secret. Old secret will not be valid anymore.
|
|
565
627
|
*/
|
|
566
628
|
static regenerateToken(options) {
|
|
567
|
-
return (options.client ?? client).put({
|
|
568
|
-
url: '/tokens/{token_id}/secret',
|
|
569
|
-
...options
|
|
570
|
-
});
|
|
629
|
+
return (options.client ?? client).put({ url: '/tokens/{token_id}/secret', ...options });
|
|
571
630
|
}
|
|
572
631
|
}
|
|
573
632
|
export class UsersService {
|
|
@@ -575,10 +634,7 @@ export class UsersService {
|
|
|
575
634
|
* Get a list of organizations the user belongs to. Used during authentication process.
|
|
576
635
|
*/
|
|
577
636
|
static listUserOrganizations(options) {
|
|
578
|
-
return (options.client ?? client).get({
|
|
579
|
-
url: '/users/organizations/{email}',
|
|
580
|
-
...options
|
|
581
|
-
});
|
|
637
|
+
return (options.client ?? client).get({ url: '/users/organizations/{email}', ...options });
|
|
582
638
|
}
|
|
583
639
|
/**
|
|
584
640
|
* List users in organization.
|
|
@@ -589,10 +645,7 @@ export class UsersService {
|
|
|
589
645
|
*
|
|
590
646
|
*/
|
|
591
647
|
static listUsers(options) {
|
|
592
|
-
return (options?.client ?? client).get({
|
|
593
|
-
url: '/users',
|
|
594
|
-
...options
|
|
595
|
-
});
|
|
648
|
+
return (options?.client ?? client).get({ url: '/users', ...options });
|
|
596
649
|
}
|
|
597
650
|
/**
|
|
598
651
|
* Create a new user.
|
|
@@ -617,10 +670,7 @@ export class UsersService {
|
|
|
617
670
|
*
|
|
618
671
|
*/
|
|
619
672
|
static deleteUser(options) {
|
|
620
|
-
return (options.client ?? client).delete({
|
|
621
|
-
url: '/users/{user_id}',
|
|
622
|
-
...options
|
|
623
|
-
});
|
|
673
|
+
return (options.client ?? client).delete({ url: '/users/{user_id}', ...options });
|
|
624
674
|
}
|
|
625
675
|
/**
|
|
626
676
|
* Get user profile information by id.
|
|
@@ -631,10 +681,7 @@ export class UsersService {
|
|
|
631
681
|
*
|
|
632
682
|
*/
|
|
633
683
|
static getUser(options) {
|
|
634
|
-
return (options.client ?? client).get({
|
|
635
|
-
url: '/users/{user_id}',
|
|
636
|
-
...options
|
|
637
|
-
});
|
|
684
|
+
return (options.client ?? client).get({ url: '/users/{user_id}', ...options });
|
|
638
685
|
}
|
|
639
686
|
/**
|
|
640
687
|
* Update user profile information.
|
package/dist/sdk.gen.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sdk.gen.js","sourceRoot":"","sources":["../src/sdk.gen.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"sdk.gen.js","sourceRoot":"","sources":["../src/sdk.gen.ts"],"names":[],"mappings":"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"}
|
|
@@ -158,8 +158,8 @@ export default class Api<T extends KubernetesObject> implements ApiInterface {
|
|
|
158
158
|
data: string;
|
|
159
159
|
error: undefined;
|
|
160
160
|
}) & {
|
|
161
|
-
request
|
|
162
|
-
response
|
|
161
|
+
request?: Request;
|
|
162
|
+
response?: Response;
|
|
163
163
|
}>;
|
|
164
164
|
patch(body: OpPatch[], name: string, namespace?: string, queryParams?: QueryParameters): Promise<({
|
|
165
165
|
data: undefined;
|
|
@@ -168,8 +168,8 @@ export default class Api<T extends KubernetesObject> implements ApiInterface {
|
|
|
168
168
|
data: string;
|
|
169
169
|
error: undefined;
|
|
170
170
|
}) & {
|
|
171
|
-
request
|
|
172
|
-
response
|
|
171
|
+
request?: Request;
|
|
172
|
+
response?: Response;
|
|
173
173
|
}>;
|
|
174
174
|
put(body: KubernetesObject, queryParams?: QueryParameters): Promise<({
|
|
175
175
|
data: undefined;
|
|
@@ -178,8 +178,8 @@ export default class Api<T extends KubernetesObject> implements ApiInterface {
|
|
|
178
178
|
data: string;
|
|
179
179
|
error: undefined;
|
|
180
180
|
}) & {
|
|
181
|
-
request
|
|
182
|
-
response
|
|
181
|
+
request?: Request;
|
|
182
|
+
response?: Response;
|
|
183
183
|
}>;
|
|
184
184
|
delete(name: string, namespace?: string, queryParams?: QueryParameters): Promise<({
|
|
185
185
|
data: undefined;
|
|
@@ -188,8 +188,8 @@ export default class Api<T extends KubernetesObject> implements ApiInterface {
|
|
|
188
188
|
data: string;
|
|
189
189
|
error: undefined;
|
|
190
190
|
}) & {
|
|
191
|
-
request
|
|
192
|
-
response
|
|
191
|
+
request?: Request;
|
|
192
|
+
response?: Response;
|
|
193
193
|
}>;
|
|
194
194
|
}
|
|
195
195
|
export {};
|