@cloudfleet/sdk 0.0.1-a104fac → 0.0.1-a3b700e
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/README.md +26 -2
- package/dist/@tanstack/react-query.gen.d.ts +426 -325
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -1
- package/dist/@tanstack/react-query.gen.js +457 -332
- package/dist/@tanstack/react-query.gen.js.map +1 -1
- package/dist/client/client.gen.d.ts.map +1 -1
- package/dist/client/client.gen.js +1 -4
- package/dist/client/client.gen.js.map +1 -1
- package/dist/client/types.gen.d.ts +1 -1
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.d.ts +2 -2
- package/dist/client/utils.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.js +3 -3
- package/dist/client/utils.gen.js.map +1 -1
- package/dist/core/params.gen.js +4 -4
- package/dist/core/params.gen.js.map +1 -1
- package/dist/schemas.gen.d.ts +993 -107
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +1905 -174
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +240 -197
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +348 -274
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +1493 -756
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +3336 -1202
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +1239 -292
- package/dist/zod.gen.js.map +1 -1
- package/package.json +8 -11
package/dist/zod.gen.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import * as z from 'zod';
|
|
2
2
|
export declare const zBillingContact: z.ZodObject<{
|
|
3
|
+
type: z.ZodEnum<{
|
|
4
|
+
business: "business";
|
|
5
|
+
personal: "personal";
|
|
6
|
+
}>;
|
|
3
7
|
company: z.ZodOptional<z.ZodString>;
|
|
4
8
|
address1: z.ZodOptional<z.ZodString>;
|
|
5
9
|
address2: z.ZodOptional<z.ZodString>;
|
|
@@ -168,22 +172,7 @@ export declare const zChart: z.ZodObject<{
|
|
|
168
172
|
name: z.ZodString;
|
|
169
173
|
namespace: z.ZodString;
|
|
170
174
|
chart: z.ZodString;
|
|
171
|
-
status: z.
|
|
172
|
-
InstallSucceeded: "InstallSucceeded";
|
|
173
|
-
InstallFailed: "InstallFailed";
|
|
174
|
-
UpgradeSucceeded: "UpgradeSucceeded";
|
|
175
|
-
UpgradeFailed: "UpgradeFailed";
|
|
176
|
-
TestSucceeded: "TestSucceeded";
|
|
177
|
-
TestFailed: "TestFailed";
|
|
178
|
-
RollbackSucceeded: "RollbackSucceeded";
|
|
179
|
-
RollbackFailed: "RollbackFailed";
|
|
180
|
-
UninstallSucceeded: "UninstallSucceeded";
|
|
181
|
-
UninstallFailed: "UninstallFailed";
|
|
182
|
-
ArtifactFailed: "ArtifactFailed";
|
|
183
|
-
DependencyNotReady: "DependencyNotReady";
|
|
184
|
-
Progressing: "Progressing";
|
|
185
|
-
SourceNotReady: "SourceNotReady";
|
|
186
|
-
}>;
|
|
175
|
+
status: z.ZodString;
|
|
187
176
|
version_current: z.ZodString;
|
|
188
177
|
created_at: z.ZodString;
|
|
189
178
|
updated_at: z.ZodString;
|
|
@@ -193,29 +182,44 @@ export declare const zChartUpdateInput: z.ZodObject<{
|
|
|
193
182
|
values: z.ZodString;
|
|
194
183
|
version_channel: z.ZodString;
|
|
195
184
|
}, z.core.$strip>;
|
|
185
|
+
/**
|
|
186
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
187
|
+
*/
|
|
196
188
|
export declare const zClusterCreateInput: z.ZodObject<{
|
|
197
189
|
name: z.ZodString;
|
|
198
|
-
tier: z.ZodEnum<{
|
|
190
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
199
191
|
basic: "basic";
|
|
200
192
|
pro: "pro";
|
|
201
|
-
}>;
|
|
202
|
-
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
203
|
-
"staging-1a": "staging-1a";
|
|
204
|
-
"northamerica-central-1": "northamerica-central-1";
|
|
205
|
-
"europe-central-1a": "europe-central-1a";
|
|
206
|
-
"northamerica-central-1a": "northamerica-central-1a";
|
|
207
193
|
}>>>;
|
|
208
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
194
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
195
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
196
|
+
stable: "stable";
|
|
197
|
+
rapid: "rapid";
|
|
198
|
+
extended: "extended";
|
|
213
199
|
}>>>;
|
|
200
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
201
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
202
|
+
none: "none";
|
|
203
|
+
mps: "mps";
|
|
204
|
+
time_slicing: "time_slicing";
|
|
205
|
+
}>>>;
|
|
206
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
207
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
208
|
+
}, z.core.$strip>>>;
|
|
209
|
+
region: z.ZodString;
|
|
210
|
+
networking: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
211
|
+
pod_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
212
|
+
service_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
213
|
+
dual_stack: z.ZodOptional<z.ZodBoolean>;
|
|
214
|
+
pod_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
215
|
+
service_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
216
|
+
}, z.core.$strip>>>;
|
|
214
217
|
}, z.core.$strip>;
|
|
215
218
|
export declare const zClusterJoinInformation: z.ZodObject<{
|
|
216
219
|
certificate_authority: z.ZodString;
|
|
217
220
|
endpoint: z.ZodURL;
|
|
218
221
|
cluster_dns: z.ZodString;
|
|
222
|
+
pod_cidr: z.ZodString;
|
|
219
223
|
auth_key: z.ZodString;
|
|
220
224
|
bootstrap_token: z.ZodString;
|
|
221
225
|
versions: z.ZodObject<{
|
|
@@ -230,23 +234,40 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
230
234
|
gcp_workload_identity_provider: z.ZodString;
|
|
231
235
|
}, z.core.$strip>;
|
|
232
236
|
}, z.core.$strip>;
|
|
237
|
+
/**
|
|
238
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
239
|
+
*/
|
|
233
240
|
export declare const zCluster: z.ZodObject<{
|
|
234
241
|
name: z.ZodString;
|
|
235
|
-
tier: z.ZodEnum<{
|
|
242
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
236
243
|
basic: "basic";
|
|
237
244
|
pro: "pro";
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
}
|
|
245
|
+
}>>;
|
|
246
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
247
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
248
|
+
stable: "stable";
|
|
249
|
+
rapid: "rapid";
|
|
250
|
+
extended: "extended";
|
|
251
|
+
}>>;
|
|
252
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
253
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
254
|
+
none: "none";
|
|
255
|
+
mps: "mps";
|
|
256
|
+
time_slicing: "time_slicing";
|
|
257
|
+
}>>;
|
|
258
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
259
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
260
|
+
}, z.core.$strip>>;
|
|
261
|
+
region: z.ZodString;
|
|
262
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
263
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
264
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
265
|
+
dual_stack: z.ZodBoolean;
|
|
266
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
267
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
268
|
+
}, z.core.$strip>>;
|
|
245
269
|
id: z.ZodUUID;
|
|
246
270
|
status: z.ZodEnum<{
|
|
247
|
-
deleted: "deleted";
|
|
248
|
-
failed: "failed";
|
|
249
|
-
active: "active";
|
|
250
271
|
disabled: "disabled";
|
|
251
272
|
creating: "creating";
|
|
252
273
|
deployed: "deployed";
|
|
@@ -255,73 +276,832 @@ export declare const zCluster: z.ZodObject<{
|
|
|
255
276
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
256
277
|
"": "";
|
|
257
278
|
}>]>>;
|
|
279
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
280
|
+
"": "";
|
|
281
|
+
}>]>>;
|
|
258
282
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
259
283
|
version_current: z.ZodOptional<z.ZodString>;
|
|
260
284
|
created_at: z.ZodOptional<z.ZodString>;
|
|
261
285
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
262
|
-
ready: z.
|
|
263
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
286
|
+
ready: z.ZodBoolean;
|
|
264
287
|
}, z.core.$strip>;
|
|
288
|
+
/**
|
|
289
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
290
|
+
*/
|
|
265
291
|
export declare const zClusterUpdateInput: z.ZodObject<{
|
|
266
|
-
name: z.
|
|
267
|
-
tier: z.ZodEnum<{
|
|
292
|
+
name: z.ZodString;
|
|
293
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
268
294
|
basic: "basic";
|
|
269
295
|
pro: "pro";
|
|
270
|
-
}
|
|
271
|
-
version_channel: z.ZodOptional<z.ZodString
|
|
296
|
+
}>>>;
|
|
297
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
298
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
299
|
+
stable: "stable";
|
|
300
|
+
rapid: "rapid";
|
|
301
|
+
extended: "extended";
|
|
302
|
+
}>>>;
|
|
303
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
304
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
305
|
+
none: "none";
|
|
306
|
+
mps: "mps";
|
|
307
|
+
time_slicing: "time_slicing";
|
|
308
|
+
}>>>;
|
|
309
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
310
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
311
|
+
}, z.core.$strip>>>;
|
|
272
312
|
}, z.core.$strip>;
|
|
313
|
+
/**
|
|
314
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
315
|
+
*/
|
|
273
316
|
export declare const zFleetCreateInput: z.ZodObject<{
|
|
274
317
|
limits: z.ZodOptional<z.ZodObject<{
|
|
275
|
-
cpu: z.
|
|
318
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
276
319
|
}, z.core.$strip>>;
|
|
277
320
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
278
|
-
enabled: z.
|
|
279
|
-
project: z.ZodString
|
|
321
|
+
enabled: z.ZodBoolean;
|
|
322
|
+
project: z.ZodOptional<z.ZodString>;
|
|
280
323
|
}, z.core.$strip>>;
|
|
281
324
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
282
|
-
enabled: z.
|
|
283
|
-
apiKey: z.ZodString
|
|
325
|
+
enabled: z.ZodBoolean;
|
|
326
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
284
327
|
}, z.core.$strip>>;
|
|
285
328
|
aws: z.ZodOptional<z.ZodObject<{
|
|
286
|
-
enabled: z.
|
|
287
|
-
controllerRoleArn: z.ZodString
|
|
329
|
+
enabled: z.ZodBoolean;
|
|
330
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
288
331
|
}, z.core.$strip>>;
|
|
332
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
333
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
334
|
+
"on-demand": "on-demand";
|
|
335
|
+
spot: "spot";
|
|
336
|
+
}>>>>;
|
|
337
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
338
|
+
amd64: "amd64";
|
|
339
|
+
arm64: "arm64";
|
|
340
|
+
}>>>>;
|
|
341
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
342
|
+
p3: "p3";
|
|
343
|
+
cx: "cx";
|
|
344
|
+
h1: "h1";
|
|
345
|
+
h3: "h3";
|
|
346
|
+
a1: "a1";
|
|
347
|
+
a2: "a2";
|
|
348
|
+
a3: "a3";
|
|
349
|
+
a4: "a4";
|
|
350
|
+
c1: "c1";
|
|
351
|
+
c2: "c2";
|
|
352
|
+
c2d: "c2d";
|
|
353
|
+
c3: "c3";
|
|
354
|
+
c3d: "c3d";
|
|
355
|
+
c4: "c4";
|
|
356
|
+
c4a: "c4a";
|
|
357
|
+
c4d: "c4d";
|
|
358
|
+
c5: "c5";
|
|
359
|
+
c5a: "c5a";
|
|
360
|
+
c5ad: "c5ad";
|
|
361
|
+
c5d: "c5d";
|
|
362
|
+
c5n: "c5n";
|
|
363
|
+
c6a: "c6a";
|
|
364
|
+
c6g: "c6g";
|
|
365
|
+
c6gd: "c6gd";
|
|
366
|
+
c6gn: "c6gn";
|
|
367
|
+
c6i: "c6i";
|
|
368
|
+
c6id: "c6id";
|
|
369
|
+
c6in: "c6in";
|
|
370
|
+
c7a: "c7a";
|
|
371
|
+
c7g: "c7g";
|
|
372
|
+
c7gd: "c7gd";
|
|
373
|
+
c7gn: "c7gn";
|
|
374
|
+
c7i: "c7i";
|
|
375
|
+
"c7i-flex": "c7i-flex";
|
|
376
|
+
c8g: "c8g";
|
|
377
|
+
c8gd: "c8gd";
|
|
378
|
+
cax: "cax";
|
|
379
|
+
ccx: "ccx";
|
|
380
|
+
cpx: "cpx";
|
|
381
|
+
d2: "d2";
|
|
382
|
+
d3: "d3";
|
|
383
|
+
d3en: "d3en";
|
|
384
|
+
dl1: "dl1";
|
|
385
|
+
dl2q: "dl2q";
|
|
386
|
+
e2: "e2";
|
|
387
|
+
f1: "f1";
|
|
388
|
+
f2: "f2";
|
|
389
|
+
g1: "g1";
|
|
390
|
+
g2: "g2";
|
|
391
|
+
g4ad: "g4ad";
|
|
392
|
+
g4dn: "g4dn";
|
|
393
|
+
g5: "g5";
|
|
394
|
+
g5g: "g5g";
|
|
395
|
+
g6: "g6";
|
|
396
|
+
g6e: "g6e";
|
|
397
|
+
gr6: "gr6";
|
|
398
|
+
hpc6a: "hpc6a";
|
|
399
|
+
hpc6id: "hpc6id";
|
|
400
|
+
hpc7a: "hpc7a";
|
|
401
|
+
hpc7g: "hpc7g";
|
|
402
|
+
i2: "i2";
|
|
403
|
+
i3: "i3";
|
|
404
|
+
i3en: "i3en";
|
|
405
|
+
i4g: "i4g";
|
|
406
|
+
i4i: "i4i";
|
|
407
|
+
i7i: "i7i";
|
|
408
|
+
i7ie: "i7ie";
|
|
409
|
+
i8g: "i8g";
|
|
410
|
+
im4gn: "im4gn";
|
|
411
|
+
inf1: "inf1";
|
|
412
|
+
inf2: "inf2";
|
|
413
|
+
is4gen: "is4gen";
|
|
414
|
+
m1: "m1";
|
|
415
|
+
m2: "m2";
|
|
416
|
+
m3: "m3";
|
|
417
|
+
m4: "m4";
|
|
418
|
+
m5: "m5";
|
|
419
|
+
m5a: "m5a";
|
|
420
|
+
m5ad: "m5ad";
|
|
421
|
+
m5d: "m5d";
|
|
422
|
+
m5dn: "m5dn";
|
|
423
|
+
m5n: "m5n";
|
|
424
|
+
m5zn: "m5zn";
|
|
425
|
+
m6a: "m6a";
|
|
426
|
+
m6g: "m6g";
|
|
427
|
+
m6gd: "m6gd";
|
|
428
|
+
m6i: "m6i";
|
|
429
|
+
m6id: "m6id";
|
|
430
|
+
m6idn: "m6idn";
|
|
431
|
+
m6in: "m6in";
|
|
432
|
+
m7a: "m7a";
|
|
433
|
+
m7g: "m7g";
|
|
434
|
+
m7gd: "m7gd";
|
|
435
|
+
m7i: "m7i";
|
|
436
|
+
"m7i-flex": "m7i-flex";
|
|
437
|
+
m8g: "m8g";
|
|
438
|
+
m8gd: "m8gd";
|
|
439
|
+
n1: "n1";
|
|
440
|
+
n2: "n2";
|
|
441
|
+
n2d: "n2d";
|
|
442
|
+
n4: "n4";
|
|
443
|
+
p3dn: "p3dn";
|
|
444
|
+
p4d: "p4d";
|
|
445
|
+
p4de: "p4de";
|
|
446
|
+
p5: "p5";
|
|
447
|
+
p5e: "p5e";
|
|
448
|
+
p5en: "p5en";
|
|
449
|
+
"p6-b200": "p6-b200";
|
|
450
|
+
r3: "r3";
|
|
451
|
+
r4: "r4";
|
|
452
|
+
r5: "r5";
|
|
453
|
+
r5a: "r5a";
|
|
454
|
+
r5ad: "r5ad";
|
|
455
|
+
r5b: "r5b";
|
|
456
|
+
r5d: "r5d";
|
|
457
|
+
r5dn: "r5dn";
|
|
458
|
+
r5n: "r5n";
|
|
459
|
+
r6a: "r6a";
|
|
460
|
+
r6g: "r6g";
|
|
461
|
+
r6gd: "r6gd";
|
|
462
|
+
r6i: "r6i";
|
|
463
|
+
r6id: "r6id";
|
|
464
|
+
r6idn: "r6idn";
|
|
465
|
+
r6in: "r6in";
|
|
466
|
+
r7a: "r7a";
|
|
467
|
+
r7g: "r7g";
|
|
468
|
+
r7gd: "r7gd";
|
|
469
|
+
r7i: "r7i";
|
|
470
|
+
r7iz: "r7iz";
|
|
471
|
+
r8g: "r8g";
|
|
472
|
+
r8gd: "r8gd";
|
|
473
|
+
t2: "t2";
|
|
474
|
+
t2a: "t2a";
|
|
475
|
+
t2d: "t2d";
|
|
476
|
+
t3: "t3";
|
|
477
|
+
t3a: "t3a";
|
|
478
|
+
t4g: "t4g";
|
|
479
|
+
trn1: "trn1";
|
|
480
|
+
trn1n: "trn1n";
|
|
481
|
+
"u-3tb1": "u-3tb1";
|
|
482
|
+
"u-6tb1": "u-6tb1";
|
|
483
|
+
"u7i-12tb": "u7i-12tb";
|
|
484
|
+
"u7i-6tb": "u7i-6tb";
|
|
485
|
+
"u7i-8tb": "u7i-8tb";
|
|
486
|
+
"u7in-16tb": "u7in-16tb";
|
|
487
|
+
"u7in-24tb": "u7in-24tb";
|
|
488
|
+
"u7in-32tb": "u7in-32tb";
|
|
489
|
+
vt1: "vt1";
|
|
490
|
+
x1: "x1";
|
|
491
|
+
x1e: "x1e";
|
|
492
|
+
x2gd: "x2gd";
|
|
493
|
+
x2idn: "x2idn";
|
|
494
|
+
x2iedn: "x2iedn";
|
|
495
|
+
x2iezn: "x2iezn";
|
|
496
|
+
x4: "x4";
|
|
497
|
+
x8g: "x8g";
|
|
498
|
+
z1d: "z1d";
|
|
499
|
+
z3: "z3";
|
|
500
|
+
}>>>>;
|
|
501
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
502
|
+
"africa-south1": "africa-south1";
|
|
503
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
504
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
505
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
506
|
+
"ap-south-1": "ap-south-1";
|
|
507
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
508
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
509
|
+
ash: "ash";
|
|
510
|
+
"asia-east1": "asia-east1";
|
|
511
|
+
"asia-east2": "asia-east2";
|
|
512
|
+
"asia-northeast1": "asia-northeast1";
|
|
513
|
+
"asia-northeast2": "asia-northeast2";
|
|
514
|
+
"asia-northeast3": "asia-northeast3";
|
|
515
|
+
"asia-south1": "asia-south1";
|
|
516
|
+
"asia-south2": "asia-south2";
|
|
517
|
+
"asia-southeast1": "asia-southeast1";
|
|
518
|
+
"asia-southeast2": "asia-southeast2";
|
|
519
|
+
"australia-southeast1": "australia-southeast1";
|
|
520
|
+
"australia-southeast2": "australia-southeast2";
|
|
521
|
+
"ca-central-1": "ca-central-1";
|
|
522
|
+
"eu-central-1": "eu-central-1";
|
|
523
|
+
"eu-central-2": "eu-central-2";
|
|
524
|
+
"eu-north-1": "eu-north-1";
|
|
525
|
+
"eu-west-1": "eu-west-1";
|
|
526
|
+
"eu-west-2": "eu-west-2";
|
|
527
|
+
"eu-west-3": "eu-west-3";
|
|
528
|
+
"europe-central2": "europe-central2";
|
|
529
|
+
"europe-north1": "europe-north1";
|
|
530
|
+
"europe-southwest1": "europe-southwest1";
|
|
531
|
+
"europe-west1": "europe-west1";
|
|
532
|
+
"europe-west10": "europe-west10";
|
|
533
|
+
"europe-west12": "europe-west12";
|
|
534
|
+
"europe-west2": "europe-west2";
|
|
535
|
+
"europe-west3": "europe-west3";
|
|
536
|
+
"europe-west4": "europe-west4";
|
|
537
|
+
"europe-west6": "europe-west6";
|
|
538
|
+
"europe-west8": "europe-west8";
|
|
539
|
+
"europe-west9": "europe-west9";
|
|
540
|
+
fsn1: "fsn1";
|
|
541
|
+
hel1: "hel1";
|
|
542
|
+
hil: "hil";
|
|
543
|
+
"me-central1": "me-central1";
|
|
544
|
+
"me-central2": "me-central2";
|
|
545
|
+
"me-west1": "me-west1";
|
|
546
|
+
nbg1: "nbg1";
|
|
547
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
548
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
549
|
+
"sa-east-1": "sa-east-1";
|
|
550
|
+
sin: "sin";
|
|
551
|
+
"southamerica-east1": "southamerica-east1";
|
|
552
|
+
"southamerica-west1": "southamerica-west1";
|
|
553
|
+
"us-central1": "us-central1";
|
|
554
|
+
"us-east-1": "us-east-1";
|
|
555
|
+
"us-east-2": "us-east-2";
|
|
556
|
+
"us-east1": "us-east1";
|
|
557
|
+
"us-east4": "us-east4";
|
|
558
|
+
"us-east5": "us-east5";
|
|
559
|
+
"us-south1": "us-south1";
|
|
560
|
+
"us-west-1": "us-west-1";
|
|
561
|
+
"us-west-2": "us-west-2";
|
|
562
|
+
"us-west1": "us-west1";
|
|
563
|
+
"us-west2": "us-west2";
|
|
564
|
+
"us-west3": "us-west3";
|
|
565
|
+
"us-west4": "us-west4";
|
|
566
|
+
}>>>>;
|
|
567
|
+
}, z.core.$strip>>>;
|
|
568
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
569
|
+
aggressive: "aggressive";
|
|
570
|
+
conservative: "conservative";
|
|
571
|
+
}>>>;
|
|
289
572
|
id: z.ZodString;
|
|
290
573
|
}, z.core.$strip>;
|
|
574
|
+
/**
|
|
575
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
576
|
+
*/
|
|
291
577
|
export declare const zFleet: z.ZodObject<{
|
|
292
578
|
limits: z.ZodOptional<z.ZodObject<{
|
|
293
|
-
cpu: z.
|
|
579
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
294
580
|
}, z.core.$strip>>;
|
|
295
581
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
296
|
-
enabled: z.
|
|
297
|
-
project: z.ZodString
|
|
582
|
+
enabled: z.ZodBoolean;
|
|
583
|
+
project: z.ZodOptional<z.ZodString>;
|
|
298
584
|
}, z.core.$strip>>;
|
|
299
585
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
300
|
-
enabled: z.
|
|
301
|
-
apiKey: z.ZodString
|
|
586
|
+
enabled: z.ZodBoolean;
|
|
587
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
302
588
|
}, z.core.$strip>>;
|
|
303
589
|
aws: z.ZodOptional<z.ZodObject<{
|
|
304
|
-
enabled: z.
|
|
305
|
-
controllerRoleArn: z.ZodString
|
|
590
|
+
enabled: z.ZodBoolean;
|
|
591
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
592
|
+
}, z.core.$strip>>;
|
|
593
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
594
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
595
|
+
"on-demand": "on-demand";
|
|
596
|
+
spot: "spot";
|
|
597
|
+
}>>>;
|
|
598
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
599
|
+
amd64: "amd64";
|
|
600
|
+
arm64: "arm64";
|
|
601
|
+
}>>>;
|
|
602
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
603
|
+
p3: "p3";
|
|
604
|
+
cx: "cx";
|
|
605
|
+
h1: "h1";
|
|
606
|
+
h3: "h3";
|
|
607
|
+
a1: "a1";
|
|
608
|
+
a2: "a2";
|
|
609
|
+
a3: "a3";
|
|
610
|
+
a4: "a4";
|
|
611
|
+
c1: "c1";
|
|
612
|
+
c2: "c2";
|
|
613
|
+
c2d: "c2d";
|
|
614
|
+
c3: "c3";
|
|
615
|
+
c3d: "c3d";
|
|
616
|
+
c4: "c4";
|
|
617
|
+
c4a: "c4a";
|
|
618
|
+
c4d: "c4d";
|
|
619
|
+
c5: "c5";
|
|
620
|
+
c5a: "c5a";
|
|
621
|
+
c5ad: "c5ad";
|
|
622
|
+
c5d: "c5d";
|
|
623
|
+
c5n: "c5n";
|
|
624
|
+
c6a: "c6a";
|
|
625
|
+
c6g: "c6g";
|
|
626
|
+
c6gd: "c6gd";
|
|
627
|
+
c6gn: "c6gn";
|
|
628
|
+
c6i: "c6i";
|
|
629
|
+
c6id: "c6id";
|
|
630
|
+
c6in: "c6in";
|
|
631
|
+
c7a: "c7a";
|
|
632
|
+
c7g: "c7g";
|
|
633
|
+
c7gd: "c7gd";
|
|
634
|
+
c7gn: "c7gn";
|
|
635
|
+
c7i: "c7i";
|
|
636
|
+
"c7i-flex": "c7i-flex";
|
|
637
|
+
c8g: "c8g";
|
|
638
|
+
c8gd: "c8gd";
|
|
639
|
+
cax: "cax";
|
|
640
|
+
ccx: "ccx";
|
|
641
|
+
cpx: "cpx";
|
|
642
|
+
d2: "d2";
|
|
643
|
+
d3: "d3";
|
|
644
|
+
d3en: "d3en";
|
|
645
|
+
dl1: "dl1";
|
|
646
|
+
dl2q: "dl2q";
|
|
647
|
+
e2: "e2";
|
|
648
|
+
f1: "f1";
|
|
649
|
+
f2: "f2";
|
|
650
|
+
g1: "g1";
|
|
651
|
+
g2: "g2";
|
|
652
|
+
g4ad: "g4ad";
|
|
653
|
+
g4dn: "g4dn";
|
|
654
|
+
g5: "g5";
|
|
655
|
+
g5g: "g5g";
|
|
656
|
+
g6: "g6";
|
|
657
|
+
g6e: "g6e";
|
|
658
|
+
gr6: "gr6";
|
|
659
|
+
hpc6a: "hpc6a";
|
|
660
|
+
hpc6id: "hpc6id";
|
|
661
|
+
hpc7a: "hpc7a";
|
|
662
|
+
hpc7g: "hpc7g";
|
|
663
|
+
i2: "i2";
|
|
664
|
+
i3: "i3";
|
|
665
|
+
i3en: "i3en";
|
|
666
|
+
i4g: "i4g";
|
|
667
|
+
i4i: "i4i";
|
|
668
|
+
i7i: "i7i";
|
|
669
|
+
i7ie: "i7ie";
|
|
670
|
+
i8g: "i8g";
|
|
671
|
+
im4gn: "im4gn";
|
|
672
|
+
inf1: "inf1";
|
|
673
|
+
inf2: "inf2";
|
|
674
|
+
is4gen: "is4gen";
|
|
675
|
+
m1: "m1";
|
|
676
|
+
m2: "m2";
|
|
677
|
+
m3: "m3";
|
|
678
|
+
m4: "m4";
|
|
679
|
+
m5: "m5";
|
|
680
|
+
m5a: "m5a";
|
|
681
|
+
m5ad: "m5ad";
|
|
682
|
+
m5d: "m5d";
|
|
683
|
+
m5dn: "m5dn";
|
|
684
|
+
m5n: "m5n";
|
|
685
|
+
m5zn: "m5zn";
|
|
686
|
+
m6a: "m6a";
|
|
687
|
+
m6g: "m6g";
|
|
688
|
+
m6gd: "m6gd";
|
|
689
|
+
m6i: "m6i";
|
|
690
|
+
m6id: "m6id";
|
|
691
|
+
m6idn: "m6idn";
|
|
692
|
+
m6in: "m6in";
|
|
693
|
+
m7a: "m7a";
|
|
694
|
+
m7g: "m7g";
|
|
695
|
+
m7gd: "m7gd";
|
|
696
|
+
m7i: "m7i";
|
|
697
|
+
"m7i-flex": "m7i-flex";
|
|
698
|
+
m8g: "m8g";
|
|
699
|
+
m8gd: "m8gd";
|
|
700
|
+
n1: "n1";
|
|
701
|
+
n2: "n2";
|
|
702
|
+
n2d: "n2d";
|
|
703
|
+
n4: "n4";
|
|
704
|
+
p3dn: "p3dn";
|
|
705
|
+
p4d: "p4d";
|
|
706
|
+
p4de: "p4de";
|
|
707
|
+
p5: "p5";
|
|
708
|
+
p5e: "p5e";
|
|
709
|
+
p5en: "p5en";
|
|
710
|
+
"p6-b200": "p6-b200";
|
|
711
|
+
r3: "r3";
|
|
712
|
+
r4: "r4";
|
|
713
|
+
r5: "r5";
|
|
714
|
+
r5a: "r5a";
|
|
715
|
+
r5ad: "r5ad";
|
|
716
|
+
r5b: "r5b";
|
|
717
|
+
r5d: "r5d";
|
|
718
|
+
r5dn: "r5dn";
|
|
719
|
+
r5n: "r5n";
|
|
720
|
+
r6a: "r6a";
|
|
721
|
+
r6g: "r6g";
|
|
722
|
+
r6gd: "r6gd";
|
|
723
|
+
r6i: "r6i";
|
|
724
|
+
r6id: "r6id";
|
|
725
|
+
r6idn: "r6idn";
|
|
726
|
+
r6in: "r6in";
|
|
727
|
+
r7a: "r7a";
|
|
728
|
+
r7g: "r7g";
|
|
729
|
+
r7gd: "r7gd";
|
|
730
|
+
r7i: "r7i";
|
|
731
|
+
r7iz: "r7iz";
|
|
732
|
+
r8g: "r8g";
|
|
733
|
+
r8gd: "r8gd";
|
|
734
|
+
t2: "t2";
|
|
735
|
+
t2a: "t2a";
|
|
736
|
+
t2d: "t2d";
|
|
737
|
+
t3: "t3";
|
|
738
|
+
t3a: "t3a";
|
|
739
|
+
t4g: "t4g";
|
|
740
|
+
trn1: "trn1";
|
|
741
|
+
trn1n: "trn1n";
|
|
742
|
+
"u-3tb1": "u-3tb1";
|
|
743
|
+
"u-6tb1": "u-6tb1";
|
|
744
|
+
"u7i-12tb": "u7i-12tb";
|
|
745
|
+
"u7i-6tb": "u7i-6tb";
|
|
746
|
+
"u7i-8tb": "u7i-8tb";
|
|
747
|
+
"u7in-16tb": "u7in-16tb";
|
|
748
|
+
"u7in-24tb": "u7in-24tb";
|
|
749
|
+
"u7in-32tb": "u7in-32tb";
|
|
750
|
+
vt1: "vt1";
|
|
751
|
+
x1: "x1";
|
|
752
|
+
x1e: "x1e";
|
|
753
|
+
x2gd: "x2gd";
|
|
754
|
+
x2idn: "x2idn";
|
|
755
|
+
x2iedn: "x2iedn";
|
|
756
|
+
x2iezn: "x2iezn";
|
|
757
|
+
x4: "x4";
|
|
758
|
+
x8g: "x8g";
|
|
759
|
+
z1d: "z1d";
|
|
760
|
+
z3: "z3";
|
|
761
|
+
}>>>>;
|
|
762
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
763
|
+
"africa-south1": "africa-south1";
|
|
764
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
765
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
766
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
767
|
+
"ap-south-1": "ap-south-1";
|
|
768
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
769
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
770
|
+
ash: "ash";
|
|
771
|
+
"asia-east1": "asia-east1";
|
|
772
|
+
"asia-east2": "asia-east2";
|
|
773
|
+
"asia-northeast1": "asia-northeast1";
|
|
774
|
+
"asia-northeast2": "asia-northeast2";
|
|
775
|
+
"asia-northeast3": "asia-northeast3";
|
|
776
|
+
"asia-south1": "asia-south1";
|
|
777
|
+
"asia-south2": "asia-south2";
|
|
778
|
+
"asia-southeast1": "asia-southeast1";
|
|
779
|
+
"asia-southeast2": "asia-southeast2";
|
|
780
|
+
"australia-southeast1": "australia-southeast1";
|
|
781
|
+
"australia-southeast2": "australia-southeast2";
|
|
782
|
+
"ca-central-1": "ca-central-1";
|
|
783
|
+
"eu-central-1": "eu-central-1";
|
|
784
|
+
"eu-central-2": "eu-central-2";
|
|
785
|
+
"eu-north-1": "eu-north-1";
|
|
786
|
+
"eu-west-1": "eu-west-1";
|
|
787
|
+
"eu-west-2": "eu-west-2";
|
|
788
|
+
"eu-west-3": "eu-west-3";
|
|
789
|
+
"europe-central2": "europe-central2";
|
|
790
|
+
"europe-north1": "europe-north1";
|
|
791
|
+
"europe-southwest1": "europe-southwest1";
|
|
792
|
+
"europe-west1": "europe-west1";
|
|
793
|
+
"europe-west10": "europe-west10";
|
|
794
|
+
"europe-west12": "europe-west12";
|
|
795
|
+
"europe-west2": "europe-west2";
|
|
796
|
+
"europe-west3": "europe-west3";
|
|
797
|
+
"europe-west4": "europe-west4";
|
|
798
|
+
"europe-west6": "europe-west6";
|
|
799
|
+
"europe-west8": "europe-west8";
|
|
800
|
+
"europe-west9": "europe-west9";
|
|
801
|
+
fsn1: "fsn1";
|
|
802
|
+
hel1: "hel1";
|
|
803
|
+
hil: "hil";
|
|
804
|
+
"me-central1": "me-central1";
|
|
805
|
+
"me-central2": "me-central2";
|
|
806
|
+
"me-west1": "me-west1";
|
|
807
|
+
nbg1: "nbg1";
|
|
808
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
809
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
810
|
+
"sa-east-1": "sa-east-1";
|
|
811
|
+
sin: "sin";
|
|
812
|
+
"southamerica-east1": "southamerica-east1";
|
|
813
|
+
"southamerica-west1": "southamerica-west1";
|
|
814
|
+
"us-central1": "us-central1";
|
|
815
|
+
"us-east-1": "us-east-1";
|
|
816
|
+
"us-east-2": "us-east-2";
|
|
817
|
+
"us-east1": "us-east1";
|
|
818
|
+
"us-east4": "us-east4";
|
|
819
|
+
"us-east5": "us-east5";
|
|
820
|
+
"us-south1": "us-south1";
|
|
821
|
+
"us-west-1": "us-west-1";
|
|
822
|
+
"us-west-2": "us-west-2";
|
|
823
|
+
"us-west1": "us-west1";
|
|
824
|
+
"us-west2": "us-west2";
|
|
825
|
+
"us-west3": "us-west3";
|
|
826
|
+
"us-west4": "us-west4";
|
|
827
|
+
}>>>>;
|
|
306
828
|
}, z.core.$strip>>;
|
|
829
|
+
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
830
|
+
aggressive: "aggressive";
|
|
831
|
+
conservative: "conservative";
|
|
832
|
+
}>>;
|
|
307
833
|
id: z.ZodString;
|
|
834
|
+
ready: z.ZodBoolean;
|
|
835
|
+
status_message: z.ZodOptional<z.ZodString>;
|
|
836
|
+
created_at: z.ZodString;
|
|
837
|
+
updated_at: z.ZodString;
|
|
308
838
|
}, z.core.$strip>;
|
|
839
|
+
/**
|
|
840
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
841
|
+
*/
|
|
309
842
|
export declare const zFleetUpdateInput: z.ZodObject<{
|
|
310
843
|
limits: z.ZodOptional<z.ZodObject<{
|
|
311
|
-
cpu: z.
|
|
844
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
312
845
|
}, z.core.$strip>>;
|
|
313
846
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
314
|
-
enabled: z.
|
|
315
|
-
project: z.ZodString
|
|
847
|
+
enabled: z.ZodBoolean;
|
|
848
|
+
project: z.ZodOptional<z.ZodString>;
|
|
316
849
|
}, z.core.$strip>>;
|
|
317
850
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
318
|
-
enabled: z.
|
|
319
|
-
apiKey: z.ZodString
|
|
851
|
+
enabled: z.ZodBoolean;
|
|
852
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
320
853
|
}, z.core.$strip>>;
|
|
321
854
|
aws: z.ZodOptional<z.ZodObject<{
|
|
322
|
-
enabled: z.
|
|
323
|
-
controllerRoleArn: z.ZodString
|
|
855
|
+
enabled: z.ZodBoolean;
|
|
856
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
324
857
|
}, z.core.$strip>>;
|
|
858
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
859
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
860
|
+
"on-demand": "on-demand";
|
|
861
|
+
spot: "spot";
|
|
862
|
+
}>>>>;
|
|
863
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
864
|
+
amd64: "amd64";
|
|
865
|
+
arm64: "arm64";
|
|
866
|
+
}>>>>;
|
|
867
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
868
|
+
p3: "p3";
|
|
869
|
+
cx: "cx";
|
|
870
|
+
h1: "h1";
|
|
871
|
+
h3: "h3";
|
|
872
|
+
a1: "a1";
|
|
873
|
+
a2: "a2";
|
|
874
|
+
a3: "a3";
|
|
875
|
+
a4: "a4";
|
|
876
|
+
c1: "c1";
|
|
877
|
+
c2: "c2";
|
|
878
|
+
c2d: "c2d";
|
|
879
|
+
c3: "c3";
|
|
880
|
+
c3d: "c3d";
|
|
881
|
+
c4: "c4";
|
|
882
|
+
c4a: "c4a";
|
|
883
|
+
c4d: "c4d";
|
|
884
|
+
c5: "c5";
|
|
885
|
+
c5a: "c5a";
|
|
886
|
+
c5ad: "c5ad";
|
|
887
|
+
c5d: "c5d";
|
|
888
|
+
c5n: "c5n";
|
|
889
|
+
c6a: "c6a";
|
|
890
|
+
c6g: "c6g";
|
|
891
|
+
c6gd: "c6gd";
|
|
892
|
+
c6gn: "c6gn";
|
|
893
|
+
c6i: "c6i";
|
|
894
|
+
c6id: "c6id";
|
|
895
|
+
c6in: "c6in";
|
|
896
|
+
c7a: "c7a";
|
|
897
|
+
c7g: "c7g";
|
|
898
|
+
c7gd: "c7gd";
|
|
899
|
+
c7gn: "c7gn";
|
|
900
|
+
c7i: "c7i";
|
|
901
|
+
"c7i-flex": "c7i-flex";
|
|
902
|
+
c8g: "c8g";
|
|
903
|
+
c8gd: "c8gd";
|
|
904
|
+
cax: "cax";
|
|
905
|
+
ccx: "ccx";
|
|
906
|
+
cpx: "cpx";
|
|
907
|
+
d2: "d2";
|
|
908
|
+
d3: "d3";
|
|
909
|
+
d3en: "d3en";
|
|
910
|
+
dl1: "dl1";
|
|
911
|
+
dl2q: "dl2q";
|
|
912
|
+
e2: "e2";
|
|
913
|
+
f1: "f1";
|
|
914
|
+
f2: "f2";
|
|
915
|
+
g1: "g1";
|
|
916
|
+
g2: "g2";
|
|
917
|
+
g4ad: "g4ad";
|
|
918
|
+
g4dn: "g4dn";
|
|
919
|
+
g5: "g5";
|
|
920
|
+
g5g: "g5g";
|
|
921
|
+
g6: "g6";
|
|
922
|
+
g6e: "g6e";
|
|
923
|
+
gr6: "gr6";
|
|
924
|
+
hpc6a: "hpc6a";
|
|
925
|
+
hpc6id: "hpc6id";
|
|
926
|
+
hpc7a: "hpc7a";
|
|
927
|
+
hpc7g: "hpc7g";
|
|
928
|
+
i2: "i2";
|
|
929
|
+
i3: "i3";
|
|
930
|
+
i3en: "i3en";
|
|
931
|
+
i4g: "i4g";
|
|
932
|
+
i4i: "i4i";
|
|
933
|
+
i7i: "i7i";
|
|
934
|
+
i7ie: "i7ie";
|
|
935
|
+
i8g: "i8g";
|
|
936
|
+
im4gn: "im4gn";
|
|
937
|
+
inf1: "inf1";
|
|
938
|
+
inf2: "inf2";
|
|
939
|
+
is4gen: "is4gen";
|
|
940
|
+
m1: "m1";
|
|
941
|
+
m2: "m2";
|
|
942
|
+
m3: "m3";
|
|
943
|
+
m4: "m4";
|
|
944
|
+
m5: "m5";
|
|
945
|
+
m5a: "m5a";
|
|
946
|
+
m5ad: "m5ad";
|
|
947
|
+
m5d: "m5d";
|
|
948
|
+
m5dn: "m5dn";
|
|
949
|
+
m5n: "m5n";
|
|
950
|
+
m5zn: "m5zn";
|
|
951
|
+
m6a: "m6a";
|
|
952
|
+
m6g: "m6g";
|
|
953
|
+
m6gd: "m6gd";
|
|
954
|
+
m6i: "m6i";
|
|
955
|
+
m6id: "m6id";
|
|
956
|
+
m6idn: "m6idn";
|
|
957
|
+
m6in: "m6in";
|
|
958
|
+
m7a: "m7a";
|
|
959
|
+
m7g: "m7g";
|
|
960
|
+
m7gd: "m7gd";
|
|
961
|
+
m7i: "m7i";
|
|
962
|
+
"m7i-flex": "m7i-flex";
|
|
963
|
+
m8g: "m8g";
|
|
964
|
+
m8gd: "m8gd";
|
|
965
|
+
n1: "n1";
|
|
966
|
+
n2: "n2";
|
|
967
|
+
n2d: "n2d";
|
|
968
|
+
n4: "n4";
|
|
969
|
+
p3dn: "p3dn";
|
|
970
|
+
p4d: "p4d";
|
|
971
|
+
p4de: "p4de";
|
|
972
|
+
p5: "p5";
|
|
973
|
+
p5e: "p5e";
|
|
974
|
+
p5en: "p5en";
|
|
975
|
+
"p6-b200": "p6-b200";
|
|
976
|
+
r3: "r3";
|
|
977
|
+
r4: "r4";
|
|
978
|
+
r5: "r5";
|
|
979
|
+
r5a: "r5a";
|
|
980
|
+
r5ad: "r5ad";
|
|
981
|
+
r5b: "r5b";
|
|
982
|
+
r5d: "r5d";
|
|
983
|
+
r5dn: "r5dn";
|
|
984
|
+
r5n: "r5n";
|
|
985
|
+
r6a: "r6a";
|
|
986
|
+
r6g: "r6g";
|
|
987
|
+
r6gd: "r6gd";
|
|
988
|
+
r6i: "r6i";
|
|
989
|
+
r6id: "r6id";
|
|
990
|
+
r6idn: "r6idn";
|
|
991
|
+
r6in: "r6in";
|
|
992
|
+
r7a: "r7a";
|
|
993
|
+
r7g: "r7g";
|
|
994
|
+
r7gd: "r7gd";
|
|
995
|
+
r7i: "r7i";
|
|
996
|
+
r7iz: "r7iz";
|
|
997
|
+
r8g: "r8g";
|
|
998
|
+
r8gd: "r8gd";
|
|
999
|
+
t2: "t2";
|
|
1000
|
+
t2a: "t2a";
|
|
1001
|
+
t2d: "t2d";
|
|
1002
|
+
t3: "t3";
|
|
1003
|
+
t3a: "t3a";
|
|
1004
|
+
t4g: "t4g";
|
|
1005
|
+
trn1: "trn1";
|
|
1006
|
+
trn1n: "trn1n";
|
|
1007
|
+
"u-3tb1": "u-3tb1";
|
|
1008
|
+
"u-6tb1": "u-6tb1";
|
|
1009
|
+
"u7i-12tb": "u7i-12tb";
|
|
1010
|
+
"u7i-6tb": "u7i-6tb";
|
|
1011
|
+
"u7i-8tb": "u7i-8tb";
|
|
1012
|
+
"u7in-16tb": "u7in-16tb";
|
|
1013
|
+
"u7in-24tb": "u7in-24tb";
|
|
1014
|
+
"u7in-32tb": "u7in-32tb";
|
|
1015
|
+
vt1: "vt1";
|
|
1016
|
+
x1: "x1";
|
|
1017
|
+
x1e: "x1e";
|
|
1018
|
+
x2gd: "x2gd";
|
|
1019
|
+
x2idn: "x2idn";
|
|
1020
|
+
x2iedn: "x2iedn";
|
|
1021
|
+
x2iezn: "x2iezn";
|
|
1022
|
+
x4: "x4";
|
|
1023
|
+
x8g: "x8g";
|
|
1024
|
+
z1d: "z1d";
|
|
1025
|
+
z3: "z3";
|
|
1026
|
+
}>>>>;
|
|
1027
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1028
|
+
"africa-south1": "africa-south1";
|
|
1029
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
1030
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
1031
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
1032
|
+
"ap-south-1": "ap-south-1";
|
|
1033
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
1034
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
1035
|
+
ash: "ash";
|
|
1036
|
+
"asia-east1": "asia-east1";
|
|
1037
|
+
"asia-east2": "asia-east2";
|
|
1038
|
+
"asia-northeast1": "asia-northeast1";
|
|
1039
|
+
"asia-northeast2": "asia-northeast2";
|
|
1040
|
+
"asia-northeast3": "asia-northeast3";
|
|
1041
|
+
"asia-south1": "asia-south1";
|
|
1042
|
+
"asia-south2": "asia-south2";
|
|
1043
|
+
"asia-southeast1": "asia-southeast1";
|
|
1044
|
+
"asia-southeast2": "asia-southeast2";
|
|
1045
|
+
"australia-southeast1": "australia-southeast1";
|
|
1046
|
+
"australia-southeast2": "australia-southeast2";
|
|
1047
|
+
"ca-central-1": "ca-central-1";
|
|
1048
|
+
"eu-central-1": "eu-central-1";
|
|
1049
|
+
"eu-central-2": "eu-central-2";
|
|
1050
|
+
"eu-north-1": "eu-north-1";
|
|
1051
|
+
"eu-west-1": "eu-west-1";
|
|
1052
|
+
"eu-west-2": "eu-west-2";
|
|
1053
|
+
"eu-west-3": "eu-west-3";
|
|
1054
|
+
"europe-central2": "europe-central2";
|
|
1055
|
+
"europe-north1": "europe-north1";
|
|
1056
|
+
"europe-southwest1": "europe-southwest1";
|
|
1057
|
+
"europe-west1": "europe-west1";
|
|
1058
|
+
"europe-west10": "europe-west10";
|
|
1059
|
+
"europe-west12": "europe-west12";
|
|
1060
|
+
"europe-west2": "europe-west2";
|
|
1061
|
+
"europe-west3": "europe-west3";
|
|
1062
|
+
"europe-west4": "europe-west4";
|
|
1063
|
+
"europe-west6": "europe-west6";
|
|
1064
|
+
"europe-west8": "europe-west8";
|
|
1065
|
+
"europe-west9": "europe-west9";
|
|
1066
|
+
fsn1: "fsn1";
|
|
1067
|
+
hel1: "hel1";
|
|
1068
|
+
hil: "hil";
|
|
1069
|
+
"me-central1": "me-central1";
|
|
1070
|
+
"me-central2": "me-central2";
|
|
1071
|
+
"me-west1": "me-west1";
|
|
1072
|
+
nbg1: "nbg1";
|
|
1073
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
1074
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
1075
|
+
"sa-east-1": "sa-east-1";
|
|
1076
|
+
sin: "sin";
|
|
1077
|
+
"southamerica-east1": "southamerica-east1";
|
|
1078
|
+
"southamerica-west1": "southamerica-west1";
|
|
1079
|
+
"us-central1": "us-central1";
|
|
1080
|
+
"us-east-1": "us-east-1";
|
|
1081
|
+
"us-east-2": "us-east-2";
|
|
1082
|
+
"us-east1": "us-east1";
|
|
1083
|
+
"us-east4": "us-east4";
|
|
1084
|
+
"us-east5": "us-east5";
|
|
1085
|
+
"us-south1": "us-south1";
|
|
1086
|
+
"us-west-1": "us-west-1";
|
|
1087
|
+
"us-west-2": "us-west-2";
|
|
1088
|
+
"us-west1": "us-west1";
|
|
1089
|
+
"us-west2": "us-west2";
|
|
1090
|
+
"us-west3": "us-west3";
|
|
1091
|
+
"us-west4": "us-west4";
|
|
1092
|
+
}>>>>;
|
|
1093
|
+
}, z.core.$strip>>>;
|
|
1094
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1095
|
+
aggressive: "aggressive";
|
|
1096
|
+
conservative: "conservative";
|
|
1097
|
+
}>>>;
|
|
1098
|
+
}, z.core.$strip>;
|
|
1099
|
+
export declare const zInviteCreateInput: z.ZodObject<{
|
|
1100
|
+
email: z.ZodEmail;
|
|
1101
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1102
|
+
Administrator: "Administrator";
|
|
1103
|
+
User: "User";
|
|
1104
|
+
}>>>;
|
|
325
1105
|
}, z.core.$strip>;
|
|
326
1106
|
export declare const zInvite: z.ZodObject<{
|
|
327
1107
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -329,6 +1109,10 @@ export declare const zInvite: z.ZodObject<{
|
|
|
329
1109
|
date_created: z.ZodISODateTime;
|
|
330
1110
|
email: z.ZodOptional<z.ZodEmail>;
|
|
331
1111
|
code: z.ZodOptional<z.ZodString>;
|
|
1112
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1113
|
+
Administrator: "Administrator";
|
|
1114
|
+
User: "User";
|
|
1115
|
+
}>>>;
|
|
332
1116
|
}, z.core.$strip>;
|
|
333
1117
|
export declare const zInvoice: z.ZodObject<{
|
|
334
1118
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -368,15 +1152,26 @@ export declare const zMarketplaceListing: z.ZodObject<{
|
|
|
368
1152
|
}, z.core.$strip>>;
|
|
369
1153
|
}, z.core.$strip>;
|
|
370
1154
|
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
1155
|
+
type: z.ZodEnum<{
|
|
1156
|
+
business: "business";
|
|
1157
|
+
personal: "personal";
|
|
1158
|
+
}>;
|
|
371
1159
|
email: z.ZodEmail;
|
|
372
1160
|
first_name: z.ZodString;
|
|
373
1161
|
last_name: z.ZodString;
|
|
374
1162
|
company_name: z.ZodString;
|
|
375
1163
|
password: z.ZodString;
|
|
376
1164
|
}, z.core.$strip>;
|
|
1165
|
+
export declare const zOrganizationCreateOutput: z.ZodObject<{
|
|
1166
|
+
id: z.ZodString;
|
|
1167
|
+
}, z.core.$strip>;
|
|
377
1168
|
export declare const zOrganization: z.ZodObject<{
|
|
378
1169
|
id: z.ZodUUID;
|
|
379
1170
|
name: z.ZodOptional<z.ZodString>;
|
|
1171
|
+
type: z.ZodEnum<{
|
|
1172
|
+
business: "business";
|
|
1173
|
+
personal: "personal";
|
|
1174
|
+
}>;
|
|
380
1175
|
date_created: z.ZodISODateTime;
|
|
381
1176
|
quota: z.ZodObject<{
|
|
382
1177
|
basic_clusters_max: z.ZodInt;
|
|
@@ -397,27 +1192,27 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
397
1192
|
closed: "closed";
|
|
398
1193
|
suspended: "suspended";
|
|
399
1194
|
}>;
|
|
1195
|
+
verification: z.ZodEnum<{
|
|
1196
|
+
none: "none";
|
|
1197
|
+
submitted: "submitted";
|
|
1198
|
+
verified: "verified";
|
|
1199
|
+
}>;
|
|
400
1200
|
}, z.core.$strip>;
|
|
401
1201
|
export declare const zPaymentMethod: z.ZodObject<{
|
|
402
|
-
id: z.
|
|
403
|
-
setup: z.ZodBoolean;
|
|
1202
|
+
id: z.ZodString;
|
|
404
1203
|
type: z.ZodEnum<{
|
|
405
1204
|
card: "card";
|
|
1205
|
+
sepa_debit: "sepa_debit";
|
|
1206
|
+
bank_transfer: "bank_transfer";
|
|
406
1207
|
}>;
|
|
407
1208
|
last4: z.ZodString;
|
|
408
1209
|
exp_month: z.ZodInt;
|
|
409
1210
|
exp_year: z.ZodInt;
|
|
410
|
-
brand: z.
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
eftpos_au: "eftpos_au";
|
|
416
|
-
jcb: "jcb";
|
|
417
|
-
mastercard: "mastercard";
|
|
418
|
-
unionpay: "unionpay";
|
|
419
|
-
visa: "visa";
|
|
420
|
-
}>;
|
|
1211
|
+
brand: z.ZodString;
|
|
1212
|
+
iban: z.ZodString;
|
|
1213
|
+
bic: z.ZodString;
|
|
1214
|
+
account_holder_name: z.ZodString;
|
|
1215
|
+
is_default: z.ZodBoolean;
|
|
421
1216
|
}, z.core.$strip>;
|
|
422
1217
|
export declare const zPlatformQuota: z.ZodObject<{
|
|
423
1218
|
basic_clusters_max: z.ZodInt;
|
|
@@ -479,6 +1274,111 @@ export declare const zRegistryTag: z.ZodObject<{
|
|
|
479
1274
|
repository: z.ZodString;
|
|
480
1275
|
uri: z.ZodString;
|
|
481
1276
|
}, z.core.$strip>;
|
|
1277
|
+
export declare const zTicketAttachment: z.ZodObject<{
|
|
1278
|
+
id: z.ZodString;
|
|
1279
|
+
filename: z.ZodString;
|
|
1280
|
+
content_type: z.ZodString;
|
|
1281
|
+
size: z.ZodInt;
|
|
1282
|
+
}, z.core.$strip>;
|
|
1283
|
+
export declare const zTicketCreateInput: z.ZodObject<{
|
|
1284
|
+
category: z.ZodEnum<{
|
|
1285
|
+
billing: "billing";
|
|
1286
|
+
technical: "technical";
|
|
1287
|
+
general: "general";
|
|
1288
|
+
}>;
|
|
1289
|
+
body: z.ZodString;
|
|
1290
|
+
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1291
|
+
}, z.core.$strip>;
|
|
1292
|
+
export declare const zTicketListResponse: z.ZodObject<{
|
|
1293
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1294
|
+
id: z.ZodString;
|
|
1295
|
+
status: z.ZodEnum<{
|
|
1296
|
+
closed: "closed";
|
|
1297
|
+
waiting_on_us: "waiting_on_us";
|
|
1298
|
+
waiting_on_user: "waiting_on_user";
|
|
1299
|
+
}>;
|
|
1300
|
+
category: z.ZodEnum<{
|
|
1301
|
+
billing: "billing";
|
|
1302
|
+
technical: "technical";
|
|
1303
|
+
general: "general";
|
|
1304
|
+
}>;
|
|
1305
|
+
summary: z.ZodString;
|
|
1306
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1307
|
+
date_created: z.ZodISODateTime;
|
|
1308
|
+
date_updated: z.ZodISODateTime;
|
|
1309
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1310
|
+
id: z.ZodString;
|
|
1311
|
+
type: z.ZodEnum<{
|
|
1312
|
+
customer_reply: "customer_reply";
|
|
1313
|
+
agent_reply: "agent_reply";
|
|
1314
|
+
}>;
|
|
1315
|
+
body: z.ZodString;
|
|
1316
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1317
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1318
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1319
|
+
id: z.ZodString;
|
|
1320
|
+
filename: z.ZodString;
|
|
1321
|
+
content_type: z.ZodString;
|
|
1322
|
+
size: z.ZodInt;
|
|
1323
|
+
}, z.core.$strip>>>;
|
|
1324
|
+
date_created: z.ZodISODateTime;
|
|
1325
|
+
}, z.core.$strip>>>;
|
|
1326
|
+
}, z.core.$strip>>;
|
|
1327
|
+
}, z.core.$strip>;
|
|
1328
|
+
export declare const zTicketMessageInput: z.ZodObject<{
|
|
1329
|
+
body: z.ZodString;
|
|
1330
|
+
}, z.core.$strip>;
|
|
1331
|
+
export declare const zTicketMessage: z.ZodObject<{
|
|
1332
|
+
id: z.ZodString;
|
|
1333
|
+
type: z.ZodEnum<{
|
|
1334
|
+
customer_reply: "customer_reply";
|
|
1335
|
+
agent_reply: "agent_reply";
|
|
1336
|
+
}>;
|
|
1337
|
+
body: z.ZodString;
|
|
1338
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1339
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1340
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1341
|
+
id: z.ZodString;
|
|
1342
|
+
filename: z.ZodString;
|
|
1343
|
+
content_type: z.ZodString;
|
|
1344
|
+
size: z.ZodInt;
|
|
1345
|
+
}, z.core.$strip>>>;
|
|
1346
|
+
date_created: z.ZodISODateTime;
|
|
1347
|
+
}, z.core.$strip>;
|
|
1348
|
+
export declare const zTicket: z.ZodObject<{
|
|
1349
|
+
id: z.ZodString;
|
|
1350
|
+
status: z.ZodEnum<{
|
|
1351
|
+
closed: "closed";
|
|
1352
|
+
waiting_on_us: "waiting_on_us";
|
|
1353
|
+
waiting_on_user: "waiting_on_user";
|
|
1354
|
+
}>;
|
|
1355
|
+
category: z.ZodEnum<{
|
|
1356
|
+
billing: "billing";
|
|
1357
|
+
technical: "technical";
|
|
1358
|
+
general: "general";
|
|
1359
|
+
}>;
|
|
1360
|
+
summary: z.ZodString;
|
|
1361
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1362
|
+
date_created: z.ZodISODateTime;
|
|
1363
|
+
date_updated: z.ZodISODateTime;
|
|
1364
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1365
|
+
id: z.ZodString;
|
|
1366
|
+
type: z.ZodEnum<{
|
|
1367
|
+
customer_reply: "customer_reply";
|
|
1368
|
+
agent_reply: "agent_reply";
|
|
1369
|
+
}>;
|
|
1370
|
+
body: z.ZodString;
|
|
1371
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1372
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1373
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1374
|
+
id: z.ZodString;
|
|
1375
|
+
filename: z.ZodString;
|
|
1376
|
+
content_type: z.ZodString;
|
|
1377
|
+
size: z.ZodInt;
|
|
1378
|
+
}, z.core.$strip>>>;
|
|
1379
|
+
date_created: z.ZodISODateTime;
|
|
1380
|
+
}, z.core.$strip>>>;
|
|
1381
|
+
}, z.core.$strip>;
|
|
482
1382
|
export declare const zTokenCreateInput: z.ZodObject<{
|
|
483
1383
|
name: z.ZodString;
|
|
484
1384
|
role: z.ZodEnum<{
|
|
@@ -535,14 +1435,6 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
535
1435
|
last_name: z.ZodString;
|
|
536
1436
|
code: z.ZodString;
|
|
537
1437
|
password: z.ZodString;
|
|
538
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
539
|
-
active: "active";
|
|
540
|
-
inactive: "inactive";
|
|
541
|
-
}>>;
|
|
542
|
-
role: z.ZodOptional<z.ZodEnum<{
|
|
543
|
-
Administrator: "Administrator";
|
|
544
|
-
User: "User";
|
|
545
|
-
}>>;
|
|
546
1438
|
}, z.core.$strip>;
|
|
547
1439
|
export declare const zUser: z.ZodObject<{
|
|
548
1440
|
email: z.ZodEmail;
|
|
@@ -572,630 +1464,652 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
572
1464
|
inactive: "inactive";
|
|
573
1465
|
}>>;
|
|
574
1466
|
}, z.core.$strip>;
|
|
575
|
-
export declare const
|
|
576
|
-
|
|
577
|
-
hourly: "hourly";
|
|
578
|
-
daily: "daily";
|
|
579
|
-
monthly: "monthly";
|
|
580
|
-
}>>>;
|
|
1467
|
+
export declare const zListUserOrganizationsPath: z.ZodObject<{
|
|
1468
|
+
email: z.ZodString;
|
|
581
1469
|
}, z.core.$strip>;
|
|
582
1470
|
/**
|
|
583
|
-
*
|
|
1471
|
+
* An array of organizations the user belongs to.
|
|
584
1472
|
*/
|
|
585
|
-
export declare const
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
product: z.ZodString;
|
|
590
|
-
value: z.ZodNumber;
|
|
591
|
-
price: z.ZodNumber;
|
|
592
|
-
total: z.ZodNumber;
|
|
593
|
-
}, z.core.$strip>>;
|
|
594
|
-
facets: z.ZodObject<{
|
|
595
|
-
cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
596
|
-
product: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
597
|
-
}, z.core.$strip>;
|
|
598
|
-
}, z.core.$strip>;
|
|
1473
|
+
export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
1474
|
+
realm: z.ZodOptional<z.ZodString>;
|
|
1475
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
1476
|
+
}, z.core.$strip>>;
|
|
599
1477
|
/**
|
|
600
|
-
*
|
|
1478
|
+
* An array of users
|
|
601
1479
|
*/
|
|
602
|
-
export declare const
|
|
1480
|
+
export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
1481
|
+
email: z.ZodEmail;
|
|
1482
|
+
first_name: z.ZodString;
|
|
1483
|
+
last_name: z.ZodString;
|
|
1484
|
+
role: z.ZodEnum<{
|
|
1485
|
+
Administrator: "Administrator";
|
|
1486
|
+
User: "User";
|
|
1487
|
+
}>;
|
|
1488
|
+
status: z.ZodEnum<{
|
|
1489
|
+
active: "active";
|
|
1490
|
+
inactive: "inactive";
|
|
1491
|
+
}>;
|
|
603
1492
|
id: z.ZodUUID;
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
1493
|
+
date_created: z.ZodISODateTime;
|
|
1494
|
+
}, z.core.$strip>>;
|
|
1495
|
+
export declare const zCreateUserBody: z.ZodObject<{
|
|
1496
|
+
email: z.ZodEmail;
|
|
1497
|
+
first_name: z.ZodString;
|
|
1498
|
+
last_name: z.ZodString;
|
|
1499
|
+
code: z.ZodString;
|
|
1500
|
+
password: z.ZodString;
|
|
1501
|
+
}, z.core.$strip>;
|
|
1502
|
+
/**
|
|
1503
|
+
* Successfully created. Returns created user details.
|
|
1504
|
+
*/
|
|
1505
|
+
export declare const zCreateUserResponse: z.ZodObject<{
|
|
1506
|
+
email: z.ZodEmail;
|
|
1507
|
+
first_name: z.ZodString;
|
|
1508
|
+
last_name: z.ZodString;
|
|
1509
|
+
role: z.ZodEnum<{
|
|
1510
|
+
Administrator: "Administrator";
|
|
1511
|
+
User: "User";
|
|
607
1512
|
}>;
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
brand: z.ZodEnum<{
|
|
612
|
-
unknown: "unknown";
|
|
613
|
-
amex: "amex";
|
|
614
|
-
diners: "diners";
|
|
615
|
-
discover: "discover";
|
|
616
|
-
eftpos_au: "eftpos_au";
|
|
617
|
-
jcb: "jcb";
|
|
618
|
-
mastercard: "mastercard";
|
|
619
|
-
unionpay: "unionpay";
|
|
620
|
-
visa: "visa";
|
|
1513
|
+
status: z.ZodEnum<{
|
|
1514
|
+
active: "active";
|
|
1515
|
+
inactive: "inactive";
|
|
621
1516
|
}>;
|
|
1517
|
+
id: z.ZodUUID;
|
|
1518
|
+
date_created: z.ZodISODateTime;
|
|
1519
|
+
}, z.core.$strip>;
|
|
1520
|
+
export declare const zDeleteUserPath: z.ZodObject<{
|
|
1521
|
+
user_id: z.ZodString;
|
|
622
1522
|
}, z.core.$strip>;
|
|
623
1523
|
/**
|
|
624
|
-
*
|
|
625
|
-
*
|
|
1524
|
+
* User profile information
|
|
626
1525
|
*/
|
|
627
|
-
export declare const
|
|
628
|
-
|
|
1526
|
+
export declare const zDeleteUserResponse: z.ZodObject<{
|
|
1527
|
+
email: z.ZodEmail;
|
|
1528
|
+
first_name: z.ZodString;
|
|
1529
|
+
last_name: z.ZodString;
|
|
1530
|
+
role: z.ZodEnum<{
|
|
1531
|
+
Administrator: "Administrator";
|
|
1532
|
+
User: "User";
|
|
1533
|
+
}>;
|
|
1534
|
+
status: z.ZodEnum<{
|
|
1535
|
+
active: "active";
|
|
1536
|
+
inactive: "inactive";
|
|
1537
|
+
}>;
|
|
1538
|
+
id: z.ZodUUID;
|
|
1539
|
+
date_created: z.ZodISODateTime;
|
|
1540
|
+
}, z.core.$strip>;
|
|
1541
|
+
export declare const zGetUserPath: z.ZodObject<{
|
|
1542
|
+
user_id: z.ZodString;
|
|
629
1543
|
}, z.core.$strip>;
|
|
630
1544
|
/**
|
|
631
|
-
*
|
|
1545
|
+
* User profile information
|
|
632
1546
|
*/
|
|
633
|
-
export declare const
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
1547
|
+
export declare const zGetUserResponse: z.ZodObject<{
|
|
1548
|
+
email: z.ZodEmail;
|
|
1549
|
+
first_name: z.ZodString;
|
|
1550
|
+
last_name: z.ZodString;
|
|
1551
|
+
role: z.ZodEnum<{
|
|
1552
|
+
Administrator: "Administrator";
|
|
1553
|
+
User: "User";
|
|
1554
|
+
}>;
|
|
1555
|
+
status: z.ZodEnum<{
|
|
1556
|
+
active: "active";
|
|
1557
|
+
inactive: "inactive";
|
|
1558
|
+
}>;
|
|
1559
|
+
id: z.ZodUUID;
|
|
1560
|
+
date_created: z.ZodISODateTime;
|
|
1561
|
+
}, z.core.$strip>;
|
|
1562
|
+
export declare const zUpdateUserBody: z.ZodObject<{
|
|
1563
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
1564
|
+
first_name: z.ZodOptional<z.ZodString>;
|
|
1565
|
+
last_name: z.ZodOptional<z.ZodString>;
|
|
1566
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
1567
|
+
Administrator: "Administrator";
|
|
1568
|
+
User: "User";
|
|
1569
|
+
}>>;
|
|
1570
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1571
|
+
active: "active";
|
|
1572
|
+
inactive: "inactive";
|
|
1573
|
+
}>>;
|
|
1574
|
+
}, z.core.$strip>;
|
|
1575
|
+
export declare const zUpdateUserPath: z.ZodObject<{
|
|
1576
|
+
user_id: z.ZodString;
|
|
1577
|
+
}, z.core.$strip>;
|
|
644
1578
|
/**
|
|
645
|
-
*
|
|
1579
|
+
* Successfully created. Returns created user details.
|
|
646
1580
|
*/
|
|
647
|
-
export declare const
|
|
648
|
-
company: z.ZodOptional<z.ZodString>;
|
|
649
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
650
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
651
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
652
|
-
city: z.ZodOptional<z.ZodString>;
|
|
653
|
-
state: z.ZodOptional<z.ZodString>;
|
|
654
|
-
country: z.ZodOptional<z.ZodString>;
|
|
655
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
1581
|
+
export declare const zUpdateUserResponse: z.ZodObject<{
|
|
656
1582
|
email: z.ZodEmail;
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
au_arn: "au_arn";
|
|
670
|
-
ba_tin: "ba_tin";
|
|
671
|
-
bb_tin: "bb_tin";
|
|
672
|
-
be_vat: "be_vat";
|
|
673
|
-
bg_uic: "bg_uic";
|
|
674
|
-
bg_vat: "bg_vat";
|
|
675
|
-
bh_vat: "bh_vat";
|
|
676
|
-
bo_tin: "bo_tin";
|
|
677
|
-
br_cnpj: "br_cnpj";
|
|
678
|
-
br_cpf: "br_cpf";
|
|
679
|
-
bs_tin: "bs_tin";
|
|
680
|
-
by_tin: "by_tin";
|
|
681
|
-
ca_bn: "ca_bn";
|
|
682
|
-
ca_gst_hst: "ca_gst_hst";
|
|
683
|
-
ca_pst_bc: "ca_pst_bc";
|
|
684
|
-
ca_pst_mb: "ca_pst_mb";
|
|
685
|
-
ca_pst_sk: "ca_pst_sk";
|
|
686
|
-
ca_qst: "ca_qst";
|
|
687
|
-
cd_nif: "cd_nif";
|
|
688
|
-
ch_uid: "ch_uid";
|
|
689
|
-
ch_vat: "ch_vat";
|
|
690
|
-
cl_tin: "cl_tin";
|
|
691
|
-
cn_tin: "cn_tin";
|
|
692
|
-
co_nit: "co_nit";
|
|
693
|
-
cr_tin: "cr_tin";
|
|
694
|
-
cy_vat: "cy_vat";
|
|
695
|
-
cz_vat: "cz_vat";
|
|
696
|
-
de_stn: "de_stn";
|
|
697
|
-
de_vat: "de_vat";
|
|
698
|
-
dk_vat: "dk_vat";
|
|
699
|
-
do_rcn: "do_rcn";
|
|
700
|
-
ec_ruc: "ec_ruc";
|
|
701
|
-
ee_vat: "ee_vat";
|
|
702
|
-
eg_tin: "eg_tin";
|
|
703
|
-
es_cif: "es_cif";
|
|
704
|
-
es_vat: "es_vat";
|
|
705
|
-
eu_oss_vat: "eu_oss_vat";
|
|
706
|
-
fi_vat: "fi_vat";
|
|
707
|
-
fr_vat: "fr_vat";
|
|
708
|
-
gb_vat: "gb_vat";
|
|
709
|
-
ge_vat: "ge_vat";
|
|
710
|
-
gn_nif: "gn_nif";
|
|
711
|
-
gr_vat: "gr_vat";
|
|
712
|
-
hk_br: "hk_br";
|
|
713
|
-
hr_oib: "hr_oib";
|
|
714
|
-
hr_vat: "hr_vat";
|
|
715
|
-
hu_tin: "hu_tin";
|
|
716
|
-
hu_vat: "hu_vat";
|
|
717
|
-
id_npwp: "id_npwp";
|
|
718
|
-
ie_vat: "ie_vat";
|
|
719
|
-
il_vat: "il_vat";
|
|
720
|
-
in_gst: "in_gst";
|
|
721
|
-
is_vat: "is_vat";
|
|
722
|
-
it_vat: "it_vat";
|
|
723
|
-
jp_cn: "jp_cn";
|
|
724
|
-
jp_rn: "jp_rn";
|
|
725
|
-
jp_trn: "jp_trn";
|
|
726
|
-
ke_pin: "ke_pin";
|
|
727
|
-
kh_tin: "kh_tin";
|
|
728
|
-
kr_brn: "kr_brn";
|
|
729
|
-
kz_bin: "kz_bin";
|
|
730
|
-
li_uid: "li_uid";
|
|
731
|
-
li_vat: "li_vat";
|
|
732
|
-
lt_vat: "lt_vat";
|
|
733
|
-
lu_vat: "lu_vat";
|
|
734
|
-
lv_vat: "lv_vat";
|
|
735
|
-
ma_vat: "ma_vat";
|
|
736
|
-
md_vat: "md_vat";
|
|
737
|
-
me_pib: "me_pib";
|
|
738
|
-
mk_vat: "mk_vat";
|
|
739
|
-
mr_nif: "mr_nif";
|
|
740
|
-
mt_vat: "mt_vat";
|
|
741
|
-
mx_rfc: "mx_rfc";
|
|
742
|
-
my_frp: "my_frp";
|
|
743
|
-
my_itn: "my_itn";
|
|
744
|
-
my_sst: "my_sst";
|
|
745
|
-
ng_tin: "ng_tin";
|
|
746
|
-
nl_vat: "nl_vat";
|
|
747
|
-
no_vat: "no_vat";
|
|
748
|
-
no_voec: "no_voec";
|
|
749
|
-
np_pan: "np_pan";
|
|
750
|
-
nz_gst: "nz_gst";
|
|
751
|
-
om_vat: "om_vat";
|
|
752
|
-
pe_ruc: "pe_ruc";
|
|
753
|
-
ph_tin: "ph_tin";
|
|
754
|
-
pl_vat: "pl_vat";
|
|
755
|
-
pt_vat: "pt_vat";
|
|
756
|
-
ro_tin: "ro_tin";
|
|
757
|
-
ro_vat: "ro_vat";
|
|
758
|
-
rs_pib: "rs_pib";
|
|
759
|
-
ru_inn: "ru_inn";
|
|
760
|
-
ru_kpp: "ru_kpp";
|
|
761
|
-
sa_vat: "sa_vat";
|
|
762
|
-
se_vat: "se_vat";
|
|
763
|
-
sg_gst: "sg_gst";
|
|
764
|
-
sg_uen: "sg_uen";
|
|
765
|
-
si_tin: "si_tin";
|
|
766
|
-
si_vat: "si_vat";
|
|
767
|
-
sk_vat: "sk_vat";
|
|
768
|
-
sn_ninea: "sn_ninea";
|
|
769
|
-
sr_fin: "sr_fin";
|
|
770
|
-
sv_nit: "sv_nit";
|
|
771
|
-
th_vat: "th_vat";
|
|
772
|
-
tj_tin: "tj_tin";
|
|
773
|
-
tr_tin: "tr_tin";
|
|
774
|
-
tw_vat: "tw_vat";
|
|
775
|
-
tz_vat: "tz_vat";
|
|
776
|
-
ua_vat: "ua_vat";
|
|
777
|
-
ug_tin: "ug_tin";
|
|
778
|
-
us_ein: "us_ein";
|
|
779
|
-
uy_ruc: "uy_ruc";
|
|
780
|
-
uz_tin: "uz_tin";
|
|
781
|
-
uz_vat: "uz_vat";
|
|
782
|
-
ve_rif: "ve_rif";
|
|
783
|
-
vn_tin: "vn_tin";
|
|
784
|
-
xi_vat: "xi_vat";
|
|
785
|
-
za_vat: "za_vat";
|
|
786
|
-
zm_tin: "zm_tin";
|
|
787
|
-
zw_tin: "zw_tin";
|
|
788
|
-
}>>;
|
|
1583
|
+
first_name: z.ZodString;
|
|
1584
|
+
last_name: z.ZodString;
|
|
1585
|
+
role: z.ZodEnum<{
|
|
1586
|
+
Administrator: "Administrator";
|
|
1587
|
+
User: "User";
|
|
1588
|
+
}>;
|
|
1589
|
+
status: z.ZodEnum<{
|
|
1590
|
+
active: "active";
|
|
1591
|
+
inactive: "inactive";
|
|
1592
|
+
}>;
|
|
1593
|
+
id: z.ZodUUID;
|
|
1594
|
+
date_created: z.ZodISODateTime;
|
|
789
1595
|
}, z.core.$strip>;
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
es_vat: "es_vat";
|
|
848
|
-
eu_oss_vat: "eu_oss_vat";
|
|
849
|
-
fi_vat: "fi_vat";
|
|
850
|
-
fr_vat: "fr_vat";
|
|
851
|
-
gb_vat: "gb_vat";
|
|
852
|
-
ge_vat: "ge_vat";
|
|
853
|
-
gn_nif: "gn_nif";
|
|
854
|
-
gr_vat: "gr_vat";
|
|
855
|
-
hk_br: "hk_br";
|
|
856
|
-
hr_oib: "hr_oib";
|
|
857
|
-
hr_vat: "hr_vat";
|
|
858
|
-
hu_tin: "hu_tin";
|
|
859
|
-
hu_vat: "hu_vat";
|
|
860
|
-
id_npwp: "id_npwp";
|
|
861
|
-
ie_vat: "ie_vat";
|
|
862
|
-
il_vat: "il_vat";
|
|
863
|
-
in_gst: "in_gst";
|
|
864
|
-
is_vat: "is_vat";
|
|
865
|
-
it_vat: "it_vat";
|
|
866
|
-
jp_cn: "jp_cn";
|
|
867
|
-
jp_rn: "jp_rn";
|
|
868
|
-
jp_trn: "jp_trn";
|
|
869
|
-
ke_pin: "ke_pin";
|
|
870
|
-
kh_tin: "kh_tin";
|
|
871
|
-
kr_brn: "kr_brn";
|
|
872
|
-
kz_bin: "kz_bin";
|
|
873
|
-
li_uid: "li_uid";
|
|
874
|
-
li_vat: "li_vat";
|
|
875
|
-
lt_vat: "lt_vat";
|
|
876
|
-
lu_vat: "lu_vat";
|
|
877
|
-
lv_vat: "lv_vat";
|
|
878
|
-
ma_vat: "ma_vat";
|
|
879
|
-
md_vat: "md_vat";
|
|
880
|
-
me_pib: "me_pib";
|
|
881
|
-
mk_vat: "mk_vat";
|
|
882
|
-
mr_nif: "mr_nif";
|
|
883
|
-
mt_vat: "mt_vat";
|
|
884
|
-
mx_rfc: "mx_rfc";
|
|
885
|
-
my_frp: "my_frp";
|
|
886
|
-
my_itn: "my_itn";
|
|
887
|
-
my_sst: "my_sst";
|
|
888
|
-
ng_tin: "ng_tin";
|
|
889
|
-
nl_vat: "nl_vat";
|
|
890
|
-
no_vat: "no_vat";
|
|
891
|
-
no_voec: "no_voec";
|
|
892
|
-
np_pan: "np_pan";
|
|
893
|
-
nz_gst: "nz_gst";
|
|
894
|
-
om_vat: "om_vat";
|
|
895
|
-
pe_ruc: "pe_ruc";
|
|
896
|
-
ph_tin: "ph_tin";
|
|
897
|
-
pl_vat: "pl_vat";
|
|
898
|
-
pt_vat: "pt_vat";
|
|
899
|
-
ro_tin: "ro_tin";
|
|
900
|
-
ro_vat: "ro_vat";
|
|
901
|
-
rs_pib: "rs_pib";
|
|
902
|
-
ru_inn: "ru_inn";
|
|
903
|
-
ru_kpp: "ru_kpp";
|
|
904
|
-
sa_vat: "sa_vat";
|
|
905
|
-
se_vat: "se_vat";
|
|
906
|
-
sg_gst: "sg_gst";
|
|
907
|
-
sg_uen: "sg_uen";
|
|
908
|
-
si_tin: "si_tin";
|
|
909
|
-
si_vat: "si_vat";
|
|
910
|
-
sk_vat: "sk_vat";
|
|
911
|
-
sn_ninea: "sn_ninea";
|
|
912
|
-
sr_fin: "sr_fin";
|
|
913
|
-
sv_nit: "sv_nit";
|
|
914
|
-
th_vat: "th_vat";
|
|
915
|
-
tj_tin: "tj_tin";
|
|
916
|
-
tr_tin: "tr_tin";
|
|
917
|
-
tw_vat: "tw_vat";
|
|
918
|
-
tz_vat: "tz_vat";
|
|
919
|
-
ua_vat: "ua_vat";
|
|
920
|
-
ug_tin: "ug_tin";
|
|
921
|
-
us_ein: "us_ein";
|
|
922
|
-
uy_ruc: "uy_ruc";
|
|
923
|
-
uz_tin: "uz_tin";
|
|
924
|
-
uz_vat: "uz_vat";
|
|
925
|
-
ve_rif: "ve_rif";
|
|
926
|
-
vn_tin: "vn_tin";
|
|
927
|
-
xi_vat: "xi_vat";
|
|
928
|
-
za_vat: "za_vat";
|
|
929
|
-
zm_tin: "zm_tin";
|
|
930
|
-
zw_tin: "zw_tin";
|
|
1596
|
+
/**
|
|
1597
|
+
* Returns a list of access token details with masked secrets.
|
|
1598
|
+
*/
|
|
1599
|
+
export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
1600
|
+
name: z.ZodString;
|
|
1601
|
+
role: z.ZodEnum<{
|
|
1602
|
+
Administrator: "Administrator";
|
|
1603
|
+
User: "User";
|
|
1604
|
+
}>;
|
|
1605
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1606
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1607
|
+
date_created: z.ZodISODateTime;
|
|
1608
|
+
}, z.core.$strip>>;
|
|
1609
|
+
export declare const zCreateTokenBody: z.ZodObject<{
|
|
1610
|
+
name: z.ZodString;
|
|
1611
|
+
role: z.ZodEnum<{
|
|
1612
|
+
Administrator: "Administrator";
|
|
1613
|
+
User: "User";
|
|
1614
|
+
}>;
|
|
1615
|
+
}, z.core.$strip>;
|
|
1616
|
+
/**
|
|
1617
|
+
* Successfully created. Returns created token details with unmasked/raw secret.
|
|
1618
|
+
*/
|
|
1619
|
+
export declare const zCreateTokenResponse: z.ZodObject<{
|
|
1620
|
+
name: z.ZodString;
|
|
1621
|
+
role: z.ZodEnum<{
|
|
1622
|
+
Administrator: "Administrator";
|
|
1623
|
+
User: "User";
|
|
1624
|
+
}>;
|
|
1625
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1626
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1627
|
+
date_created: z.ZodISODateTime;
|
|
1628
|
+
}, z.core.$strip>;
|
|
1629
|
+
export declare const zDeleteTokenPath: z.ZodObject<{
|
|
1630
|
+
token_id: z.ZodString;
|
|
1631
|
+
}, z.core.$strip>;
|
|
1632
|
+
export declare const zGetTokenPath: z.ZodObject<{
|
|
1633
|
+
token_id: z.ZodString;
|
|
1634
|
+
}, z.core.$strip>;
|
|
1635
|
+
/**
|
|
1636
|
+
* Returns access token details with masked secret.
|
|
1637
|
+
*/
|
|
1638
|
+
export declare const zGetTokenResponse: z.ZodObject<{
|
|
1639
|
+
name: z.ZodString;
|
|
1640
|
+
role: z.ZodEnum<{
|
|
1641
|
+
Administrator: "Administrator";
|
|
1642
|
+
User: "User";
|
|
1643
|
+
}>;
|
|
1644
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1645
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1646
|
+
date_created: z.ZodISODateTime;
|
|
1647
|
+
}, z.core.$strip>;
|
|
1648
|
+
export declare const zUpdateTokenBody: z.ZodObject<{
|
|
1649
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1650
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
1651
|
+
Administrator: "Administrator";
|
|
1652
|
+
User: "User";
|
|
931
1653
|
}>>;
|
|
932
1654
|
}, z.core.$strip>;
|
|
1655
|
+
export declare const zUpdateTokenPath: z.ZodObject<{
|
|
1656
|
+
token_id: z.ZodString;
|
|
1657
|
+
}, z.core.$strip>;
|
|
1658
|
+
/**
|
|
1659
|
+
* Successfully updated. Returns updated token details with masked secret.
|
|
1660
|
+
*/
|
|
1661
|
+
export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
1662
|
+
name: z.ZodString;
|
|
1663
|
+
role: z.ZodEnum<{
|
|
1664
|
+
Administrator: "Administrator";
|
|
1665
|
+
User: "User";
|
|
1666
|
+
}>;
|
|
1667
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1668
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1669
|
+
date_created: z.ZodISODateTime;
|
|
1670
|
+
}, z.core.$strip>;
|
|
1671
|
+
export declare const zRegenerateTokenPath: z.ZodObject<{
|
|
1672
|
+
token_id: z.ZodString;
|
|
1673
|
+
}, z.core.$strip>;
|
|
1674
|
+
/**
|
|
1675
|
+
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
1676
|
+
*/
|
|
1677
|
+
export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
1678
|
+
name: z.ZodString;
|
|
1679
|
+
role: z.ZodEnum<{
|
|
1680
|
+
Administrator: "Administrator";
|
|
1681
|
+
User: "User";
|
|
1682
|
+
}>;
|
|
1683
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1684
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1685
|
+
date_created: z.ZodISODateTime;
|
|
1686
|
+
}, z.core.$strip>;
|
|
1687
|
+
/**
|
|
1688
|
+
* Tickets for the organization.
|
|
1689
|
+
*/
|
|
1690
|
+
export declare const zListTicketsResponse: z.ZodObject<{
|
|
1691
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1692
|
+
id: z.ZodString;
|
|
1693
|
+
status: z.ZodEnum<{
|
|
1694
|
+
closed: "closed";
|
|
1695
|
+
waiting_on_us: "waiting_on_us";
|
|
1696
|
+
waiting_on_user: "waiting_on_user";
|
|
1697
|
+
}>;
|
|
1698
|
+
category: z.ZodEnum<{
|
|
1699
|
+
billing: "billing";
|
|
1700
|
+
technical: "technical";
|
|
1701
|
+
general: "general";
|
|
1702
|
+
}>;
|
|
1703
|
+
summary: z.ZodString;
|
|
1704
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1705
|
+
date_created: z.ZodISODateTime;
|
|
1706
|
+
date_updated: z.ZodISODateTime;
|
|
1707
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1708
|
+
id: z.ZodString;
|
|
1709
|
+
type: z.ZodEnum<{
|
|
1710
|
+
customer_reply: "customer_reply";
|
|
1711
|
+
agent_reply: "agent_reply";
|
|
1712
|
+
}>;
|
|
1713
|
+
body: z.ZodString;
|
|
1714
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1715
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1716
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1717
|
+
id: z.ZodString;
|
|
1718
|
+
filename: z.ZodString;
|
|
1719
|
+
content_type: z.ZodString;
|
|
1720
|
+
size: z.ZodInt;
|
|
1721
|
+
}, z.core.$strip>>>;
|
|
1722
|
+
date_created: z.ZodISODateTime;
|
|
1723
|
+
}, z.core.$strip>>>;
|
|
1724
|
+
}, z.core.$strip>>;
|
|
1725
|
+
}, z.core.$strip>;
|
|
1726
|
+
export declare const zCreateTicketBody: z.ZodObject<{
|
|
1727
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
1728
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1729
|
+
}, z.core.$strip>;
|
|
1730
|
+
/**
|
|
1731
|
+
* Ticket created.
|
|
1732
|
+
*/
|
|
1733
|
+
export declare const zCreateTicketResponse: z.ZodObject<{
|
|
1734
|
+
id: z.ZodString;
|
|
1735
|
+
status: z.ZodEnum<{
|
|
1736
|
+
closed: "closed";
|
|
1737
|
+
waiting_on_us: "waiting_on_us";
|
|
1738
|
+
waiting_on_user: "waiting_on_user";
|
|
1739
|
+
}>;
|
|
1740
|
+
category: z.ZodEnum<{
|
|
1741
|
+
billing: "billing";
|
|
1742
|
+
technical: "technical";
|
|
1743
|
+
general: "general";
|
|
1744
|
+
}>;
|
|
1745
|
+
summary: z.ZodString;
|
|
1746
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1747
|
+
date_created: z.ZodISODateTime;
|
|
1748
|
+
date_updated: z.ZodISODateTime;
|
|
1749
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1750
|
+
id: z.ZodString;
|
|
1751
|
+
type: z.ZodEnum<{
|
|
1752
|
+
customer_reply: "customer_reply";
|
|
1753
|
+
agent_reply: "agent_reply";
|
|
1754
|
+
}>;
|
|
1755
|
+
body: z.ZodString;
|
|
1756
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1757
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1758
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1759
|
+
id: z.ZodString;
|
|
1760
|
+
filename: z.ZodString;
|
|
1761
|
+
content_type: z.ZodString;
|
|
1762
|
+
size: z.ZodInt;
|
|
1763
|
+
}, z.core.$strip>>>;
|
|
1764
|
+
date_created: z.ZodISODateTime;
|
|
1765
|
+
}, z.core.$strip>>>;
|
|
1766
|
+
}, z.core.$strip>;
|
|
1767
|
+
export declare const zCloseTicketPath: z.ZodObject<{
|
|
1768
|
+
ticket_id: z.ZodString;
|
|
1769
|
+
}, z.core.$strip>;
|
|
1770
|
+
/**
|
|
1771
|
+
* Ticket closed.
|
|
1772
|
+
*/
|
|
1773
|
+
export declare const zCloseTicketResponse: z.ZodObject<{
|
|
1774
|
+
id: z.ZodString;
|
|
1775
|
+
status: z.ZodEnum<{
|
|
1776
|
+
closed: "closed";
|
|
1777
|
+
waiting_on_us: "waiting_on_us";
|
|
1778
|
+
waiting_on_user: "waiting_on_user";
|
|
1779
|
+
}>;
|
|
1780
|
+
category: z.ZodEnum<{
|
|
1781
|
+
billing: "billing";
|
|
1782
|
+
technical: "technical";
|
|
1783
|
+
general: "general";
|
|
1784
|
+
}>;
|
|
1785
|
+
summary: z.ZodString;
|
|
1786
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1787
|
+
date_created: z.ZodISODateTime;
|
|
1788
|
+
date_updated: z.ZodISODateTime;
|
|
1789
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1790
|
+
id: z.ZodString;
|
|
1791
|
+
type: z.ZodEnum<{
|
|
1792
|
+
customer_reply: "customer_reply";
|
|
1793
|
+
agent_reply: "agent_reply";
|
|
1794
|
+
}>;
|
|
1795
|
+
body: z.ZodString;
|
|
1796
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1797
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1798
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1799
|
+
id: z.ZodString;
|
|
1800
|
+
filename: z.ZodString;
|
|
1801
|
+
content_type: z.ZodString;
|
|
1802
|
+
size: z.ZodInt;
|
|
1803
|
+
}, z.core.$strip>>>;
|
|
1804
|
+
date_created: z.ZodISODateTime;
|
|
1805
|
+
}, z.core.$strip>>>;
|
|
1806
|
+
}, z.core.$strip>;
|
|
1807
|
+
export declare const zGetTicketPath: z.ZodObject<{
|
|
1808
|
+
ticket_id: z.ZodString;
|
|
1809
|
+
}, z.core.$strip>;
|
|
1810
|
+
/**
|
|
1811
|
+
* Ticket with messages (internal notes excluded).
|
|
1812
|
+
*/
|
|
1813
|
+
export declare const zGetTicketResponse: z.ZodObject<{
|
|
1814
|
+
id: z.ZodString;
|
|
1815
|
+
status: z.ZodEnum<{
|
|
1816
|
+
closed: "closed";
|
|
1817
|
+
waiting_on_us: "waiting_on_us";
|
|
1818
|
+
waiting_on_user: "waiting_on_user";
|
|
1819
|
+
}>;
|
|
1820
|
+
category: z.ZodEnum<{
|
|
1821
|
+
billing: "billing";
|
|
1822
|
+
technical: "technical";
|
|
1823
|
+
general: "general";
|
|
1824
|
+
}>;
|
|
1825
|
+
summary: z.ZodString;
|
|
1826
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1827
|
+
date_created: z.ZodISODateTime;
|
|
1828
|
+
date_updated: z.ZodISODateTime;
|
|
1829
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1830
|
+
id: z.ZodString;
|
|
1831
|
+
type: z.ZodEnum<{
|
|
1832
|
+
customer_reply: "customer_reply";
|
|
1833
|
+
agent_reply: "agent_reply";
|
|
1834
|
+
}>;
|
|
1835
|
+
body: z.ZodString;
|
|
1836
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1837
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1838
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1839
|
+
id: z.ZodString;
|
|
1840
|
+
filename: z.ZodString;
|
|
1841
|
+
content_type: z.ZodString;
|
|
1842
|
+
size: z.ZodInt;
|
|
1843
|
+
}, z.core.$strip>>>;
|
|
1844
|
+
date_created: z.ZodISODateTime;
|
|
1845
|
+
}, z.core.$strip>>>;
|
|
1846
|
+
}, z.core.$strip>;
|
|
1847
|
+
export declare const zReplyTicketBody: z.ZodObject<{
|
|
1848
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
1849
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1850
|
+
}, z.core.$strip>;
|
|
1851
|
+
export declare const zReplyTicketPath: z.ZodObject<{
|
|
1852
|
+
ticket_id: z.ZodString;
|
|
1853
|
+
}, z.core.$strip>;
|
|
933
1854
|
/**
|
|
934
|
-
*
|
|
1855
|
+
* Reply appended.
|
|
935
1856
|
*/
|
|
936
|
-
export declare const
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
ua_vat: "ua_vat";
|
|
1066
|
-
ug_tin: "ug_tin";
|
|
1067
|
-
us_ein: "us_ein";
|
|
1068
|
-
uy_ruc: "uy_ruc";
|
|
1069
|
-
uz_tin: "uz_tin";
|
|
1070
|
-
uz_vat: "uz_vat";
|
|
1071
|
-
ve_rif: "ve_rif";
|
|
1072
|
-
vn_tin: "vn_tin";
|
|
1073
|
-
xi_vat: "xi_vat";
|
|
1074
|
-
za_vat: "za_vat";
|
|
1075
|
-
zm_tin: "zm_tin";
|
|
1076
|
-
zw_tin: "zw_tin";
|
|
1077
|
-
}>>;
|
|
1857
|
+
export declare const zReplyTicketResponse: z.ZodObject<{
|
|
1858
|
+
id: z.ZodString;
|
|
1859
|
+
type: z.ZodEnum<{
|
|
1860
|
+
customer_reply: "customer_reply";
|
|
1861
|
+
agent_reply: "agent_reply";
|
|
1862
|
+
}>;
|
|
1863
|
+
body: z.ZodString;
|
|
1864
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1865
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1866
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1867
|
+
id: z.ZodString;
|
|
1868
|
+
filename: z.ZodString;
|
|
1869
|
+
content_type: z.ZodString;
|
|
1870
|
+
size: z.ZodInt;
|
|
1871
|
+
}, z.core.$strip>>>;
|
|
1872
|
+
date_created: z.ZodISODateTime;
|
|
1873
|
+
}, z.core.$strip>;
|
|
1874
|
+
export declare const zGetTicketAttachmentPath: z.ZodObject<{
|
|
1875
|
+
ticket_id: z.ZodString;
|
|
1876
|
+
attachment_id: z.ZodString;
|
|
1877
|
+
}, z.core.$strip>;
|
|
1878
|
+
/**
|
|
1879
|
+
* Attachment binary stream.
|
|
1880
|
+
*/
|
|
1881
|
+
export declare const zGetTicketAttachmentResponse: z.ZodString;
|
|
1882
|
+
/**
|
|
1883
|
+
* List of repositories
|
|
1884
|
+
*/
|
|
1885
|
+
export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
|
|
1886
|
+
name: z.ZodString;
|
|
1887
|
+
region: z.ZodString;
|
|
1888
|
+
uri: z.ZodString;
|
|
1889
|
+
}, z.core.$strip>>;
|
|
1890
|
+
export declare const zListTagsPath: z.ZodObject<{
|
|
1891
|
+
region: z.ZodString;
|
|
1892
|
+
repository: z.ZodString;
|
|
1893
|
+
}, z.core.$strip>;
|
|
1894
|
+
/**
|
|
1895
|
+
* Repository with tags
|
|
1896
|
+
*/
|
|
1897
|
+
export declare const zListTagsResponse: z.ZodObject<{
|
|
1898
|
+
name: z.ZodString;
|
|
1899
|
+
region: z.ZodString;
|
|
1900
|
+
uri: z.ZodString;
|
|
1901
|
+
tags: z.ZodArray<z.ZodObject<{
|
|
1902
|
+
name: z.ZodString;
|
|
1903
|
+
size: z.ZodNumber;
|
|
1904
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
1905
|
+
platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1906
|
+
}, z.core.$strip>>;
|
|
1907
|
+
totalSize: z.ZodNumber;
|
|
1908
|
+
}, z.core.$strip>;
|
|
1909
|
+
export declare const zDeleteTagPath: z.ZodObject<{
|
|
1910
|
+
region: z.ZodString;
|
|
1911
|
+
repository: z.ZodString;
|
|
1912
|
+
tag: z.ZodString;
|
|
1913
|
+
}, z.core.$strip>;
|
|
1914
|
+
export declare const zGetTagPath: z.ZodObject<{
|
|
1915
|
+
region: z.ZodString;
|
|
1916
|
+
repository: z.ZodString;
|
|
1917
|
+
tag: z.ZodString;
|
|
1918
|
+
}, z.core.$strip>;
|
|
1919
|
+
/**
|
|
1920
|
+
* Tag details
|
|
1921
|
+
*/
|
|
1922
|
+
export declare const zGetTagResponse: z.ZodObject<{
|
|
1923
|
+
name: z.ZodString;
|
|
1924
|
+
digest: z.ZodString;
|
|
1925
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
1926
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
1927
|
+
size: z.ZodNumber;
|
|
1928
|
+
}, z.core.$strip>>;
|
|
1929
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1930
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
1931
|
+
size: z.ZodNumber;
|
|
1932
|
+
}, z.core.$strip>>>;
|
|
1933
|
+
manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1934
|
+
digest: z.ZodString;
|
|
1935
|
+
platform: z.ZodOptional<z.ZodObject<{
|
|
1936
|
+
architecture: z.ZodString;
|
|
1937
|
+
os: z.ZodString;
|
|
1938
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
1939
|
+
}, z.core.$strip>>;
|
|
1940
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1941
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
1942
|
+
size: z.ZodNumber;
|
|
1943
|
+
}, z.core.$strip>>>;
|
|
1944
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
1945
|
+
}, z.core.$strip>>>;
|
|
1946
|
+
size: z.ZodNumber;
|
|
1947
|
+
region: z.ZodString;
|
|
1948
|
+
repository: z.ZodString;
|
|
1949
|
+
uri: z.ZodString;
|
|
1950
|
+
}, z.core.$strip>;
|
|
1951
|
+
/**
|
|
1952
|
+
* Returns a single object containing organization details.
|
|
1953
|
+
*/
|
|
1954
|
+
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
1955
|
+
id: z.ZodUUID;
|
|
1956
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1957
|
+
type: z.ZodEnum<{
|
|
1958
|
+
business: "business";
|
|
1959
|
+
personal: "personal";
|
|
1960
|
+
}>;
|
|
1961
|
+
date_created: z.ZodISODateTime;
|
|
1962
|
+
quota: z.ZodObject<{
|
|
1963
|
+
basic_clusters_max: z.ZodInt;
|
|
1964
|
+
basic_clusters_available: z.ZodInt;
|
|
1965
|
+
pro_clusters_max: z.ZodInt;
|
|
1966
|
+
pro_clusters_available: z.ZodInt;
|
|
1967
|
+
fleets_max: z.ZodInt;
|
|
1968
|
+
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
1969
|
+
regions: z.ZodArray<z.ZodString>;
|
|
1970
|
+
versions: z.ZodArray<z.ZodObject<{
|
|
1971
|
+
id: z.ZodString;
|
|
1972
|
+
label: z.ZodString;
|
|
1973
|
+
}, z.core.$strip>>;
|
|
1974
|
+
cfcr_storage_gb: z.ZodInt;
|
|
1975
|
+
}, z.core.$strip>;
|
|
1976
|
+
status: z.ZodEnum<{
|
|
1977
|
+
active: "active";
|
|
1978
|
+
closed: "closed";
|
|
1979
|
+
suspended: "suspended";
|
|
1980
|
+
}>;
|
|
1981
|
+
verification: z.ZodEnum<{
|
|
1982
|
+
none: "none";
|
|
1983
|
+
submitted: "submitted";
|
|
1984
|
+
verified: "verified";
|
|
1985
|
+
}>;
|
|
1078
1986
|
}, z.core.$strip>;
|
|
1079
|
-
|
|
1080
|
-
* An array of the applied promotional credits records.
|
|
1081
|
-
*/
|
|
1082
|
-
export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
|
|
1083
|
-
id: z.ZodOptional<z.ZodString>;
|
|
1987
|
+
export declare const zCreateOrganizationBody: z.ZodObject<{
|
|
1084
1988
|
type: z.ZodEnum<{
|
|
1085
|
-
|
|
1086
|
-
|
|
1989
|
+
business: "business";
|
|
1990
|
+
personal: "personal";
|
|
1087
1991
|
}>;
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
1094
|
-
}, z.core.$strip>>;
|
|
1095
|
-
export declare const zRedeemCreditsBody: z.ZodObject<{
|
|
1096
|
-
code: z.ZodOptional<z.ZodString>;
|
|
1992
|
+
email: z.ZodEmail;
|
|
1993
|
+
first_name: z.ZodString;
|
|
1994
|
+
last_name: z.ZodString;
|
|
1995
|
+
company_name: z.ZodString;
|
|
1996
|
+
password: z.ZodString;
|
|
1097
1997
|
}, z.core.$strip>;
|
|
1098
|
-
|
|
1099
|
-
|
|
1998
|
+
/**
|
|
1999
|
+
* Organization signup accepted. Returns the generated organization id immediately; provisioning (billing, Keycloak realm, user) continues asynchronously in the background.
|
|
2000
|
+
*
|
|
2001
|
+
*/
|
|
2002
|
+
export declare const zCreateOrganizationResponse: z.ZodObject<{
|
|
2003
|
+
id: z.ZodString;
|
|
1100
2004
|
}, z.core.$strip>;
|
|
1101
2005
|
/**
|
|
1102
|
-
*
|
|
2006
|
+
* JSON-RPC 2.0 request payload
|
|
1103
2007
|
*/
|
|
1104
|
-
export declare const
|
|
1105
|
-
|
|
1106
|
-
|
|
2008
|
+
export declare const zPostMcpBody: z.ZodObject<{
|
|
2009
|
+
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
2010
|
+
method: z.ZodOptional<z.ZodString>;
|
|
2011
|
+
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
2012
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2013
|
+
}, z.core.$strip>;
|
|
2014
|
+
/**
|
|
2015
|
+
* JSON-RPC 2.0 success or error response
|
|
2016
|
+
*/
|
|
2017
|
+
export declare const zPostMcpResponse: z.ZodObject<{
|
|
2018
|
+
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
2019
|
+
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
2020
|
+
result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2021
|
+
error: z.ZodOptional<z.ZodObject<{
|
|
2022
|
+
code: z.ZodOptional<z.ZodInt>;
|
|
2023
|
+
message: z.ZodOptional<z.ZodString>;
|
|
2024
|
+
}, z.core.$strip>>;
|
|
2025
|
+
}, z.core.$strip>;
|
|
2026
|
+
/**
|
|
2027
|
+
* An array of chart listings in the marketplace.
|
|
2028
|
+
*/
|
|
2029
|
+
export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
|
|
1107
2030
|
name: z.ZodString;
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
}
|
|
1126
|
-
version_current: z.ZodString;
|
|
1127
|
-
created_at: z.ZodString;
|
|
1128
|
-
updated_at: z.ZodString;
|
|
1129
|
-
ready: z.ZodBoolean;
|
|
2031
|
+
versions: z.ZodArray<z.ZodString>;
|
|
2032
|
+
version_channels: z.ZodArray<z.ZodString>;
|
|
2033
|
+
latestVersion: z.ZodString;
|
|
2034
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
2035
|
+
name: z.ZodString;
|
|
2036
|
+
version: z.ZodString;
|
|
2037
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2038
|
+
appVersion: z.ZodOptional<z.ZodString>;
|
|
2039
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
2040
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2041
|
+
home: z.ZodOptional<z.ZodString>;
|
|
2042
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
2043
|
+
sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2044
|
+
maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2045
|
+
name: z.ZodString;
|
|
2046
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2047
|
+
}, z.core.$strip>>>;
|
|
2048
|
+
}, z.core.$strip>>;
|
|
1130
2049
|
}, z.core.$strip>>;
|
|
1131
|
-
export declare const
|
|
1132
|
-
|
|
2050
|
+
export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
|
|
2051
|
+
chart_name: z.ZodString;
|
|
1133
2052
|
version_channel: z.ZodString;
|
|
1134
|
-
name: z.ZodString;
|
|
1135
|
-
namespace: z.ZodString;
|
|
1136
|
-
chart: z.ZodString;
|
|
1137
2053
|
}, z.core.$strip>;
|
|
1138
|
-
|
|
1139
|
-
|
|
2054
|
+
/**
|
|
2055
|
+
* Returns an object containing the chart files for the latest matching version.
|
|
2056
|
+
*/
|
|
2057
|
+
export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
|
|
2058
|
+
chartYaml: z.ZodOptional<z.ZodString>;
|
|
2059
|
+
valuesYaml: z.ZodOptional<z.ZodString>;
|
|
2060
|
+
valuesSchemaJson: z.ZodOptional<z.ZodString>;
|
|
1140
2061
|
}, z.core.$strip>;
|
|
1141
2062
|
/**
|
|
1142
|
-
*
|
|
2063
|
+
* An array of invites
|
|
1143
2064
|
*/
|
|
1144
|
-
export declare const
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
2065
|
+
export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
2066
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2067
|
+
organization_id: z.ZodOptional<z.ZodUUID>;
|
|
2068
|
+
date_created: z.ZodISODateTime;
|
|
2069
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
2070
|
+
code: z.ZodOptional<z.ZodString>;
|
|
2071
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2072
|
+
Administrator: "Administrator";
|
|
2073
|
+
User: "User";
|
|
2074
|
+
}>>>;
|
|
2075
|
+
}, z.core.$strip>>;
|
|
2076
|
+
export declare const zCreateInviteBody: z.ZodObject<{
|
|
2077
|
+
email: z.ZodEmail;
|
|
2078
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2079
|
+
Administrator: "Administrator";
|
|
2080
|
+
User: "User";
|
|
2081
|
+
}>>>;
|
|
1148
2082
|
}, z.core.$strip>;
|
|
1149
2083
|
/**
|
|
1150
|
-
* Successfully
|
|
2084
|
+
* Successfully created. Returns created invite details.
|
|
1151
2085
|
*/
|
|
1152
|
-
export declare const
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
2086
|
+
export declare const zCreateInviteResponse: z.ZodObject<{
|
|
2087
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2088
|
+
organization_id: z.ZodOptional<z.ZodUUID>;
|
|
2089
|
+
date_created: z.ZodISODateTime;
|
|
2090
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
2091
|
+
code: z.ZodOptional<z.ZodString>;
|
|
2092
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2093
|
+
Administrator: "Administrator";
|
|
2094
|
+
User: "User";
|
|
2095
|
+
}>>>;
|
|
2096
|
+
}, z.core.$strip>;
|
|
2097
|
+
export declare const zGetInvitePath: z.ZodObject<{
|
|
2098
|
+
code: z.ZodString;
|
|
1156
2099
|
}, z.core.$strip>;
|
|
1157
2100
|
/**
|
|
1158
|
-
* Returns
|
|
2101
|
+
* The invitation code is valid. Returns the invited email and organization.
|
|
1159
2102
|
*/
|
|
1160
|
-
export declare const
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
name: z.ZodString;
|
|
1164
|
-
namespace: z.ZodString;
|
|
1165
|
-
chart: z.ZodString;
|
|
1166
|
-
status: z.ZodEnum<{
|
|
1167
|
-
InstallSucceeded: "InstallSucceeded";
|
|
1168
|
-
InstallFailed: "InstallFailed";
|
|
1169
|
-
UpgradeSucceeded: "UpgradeSucceeded";
|
|
1170
|
-
UpgradeFailed: "UpgradeFailed";
|
|
1171
|
-
TestSucceeded: "TestSucceeded";
|
|
1172
|
-
TestFailed: "TestFailed";
|
|
1173
|
-
RollbackSucceeded: "RollbackSucceeded";
|
|
1174
|
-
RollbackFailed: "RollbackFailed";
|
|
1175
|
-
UninstallSucceeded: "UninstallSucceeded";
|
|
1176
|
-
UninstallFailed: "UninstallFailed";
|
|
1177
|
-
ArtifactFailed: "ArtifactFailed";
|
|
1178
|
-
DependencyNotReady: "DependencyNotReady";
|
|
1179
|
-
Progressing: "Progressing";
|
|
1180
|
-
SourceNotReady: "SourceNotReady";
|
|
1181
|
-
}>;
|
|
1182
|
-
version_current: z.ZodString;
|
|
1183
|
-
created_at: z.ZodString;
|
|
1184
|
-
updated_at: z.ZodString;
|
|
1185
|
-
ready: z.ZodBoolean;
|
|
2103
|
+
export declare const zGetInviteResponse: z.ZodObject<{
|
|
2104
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
2105
|
+
organization_id: z.ZodOptional<z.ZodString>;
|
|
1186
2106
|
}, z.core.$strip>;
|
|
1187
|
-
export declare const
|
|
1188
|
-
|
|
1189
|
-
version_channel: z.ZodString;
|
|
2107
|
+
export declare const zDeleteInvitePath: z.ZodObject<{
|
|
2108
|
+
email: z.ZodEmail;
|
|
1190
2109
|
}, z.core.$strip>;
|
|
1191
|
-
export declare const
|
|
2110
|
+
export declare const zQueryClusterPath: z.ZodObject<{
|
|
1192
2111
|
cluster_id: z.ZodString;
|
|
1193
|
-
chart_name: z.ZodString;
|
|
1194
2112
|
}, z.core.$strip>;
|
|
1195
|
-
/**
|
|
1196
|
-
* Successfully updated.
|
|
1197
|
-
*/
|
|
1198
|
-
export declare const zUpdateChartResponse: z.ZodString;
|
|
1199
2113
|
export declare const zListFleetsPath: z.ZodObject<{
|
|
1200
2114
|
cluster_id: z.ZodString;
|
|
1201
2115
|
}, z.core.$strip>;
|
|
@@ -1204,38 +2118,522 @@ export declare const zListFleetsPath: z.ZodObject<{
|
|
|
1204
2118
|
*/
|
|
1205
2119
|
export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
1206
2120
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1207
|
-
cpu: z.
|
|
2121
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
1208
2122
|
}, z.core.$strip>>;
|
|
1209
2123
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
1210
|
-
enabled: z.
|
|
1211
|
-
project: z.ZodString
|
|
2124
|
+
enabled: z.ZodBoolean;
|
|
2125
|
+
project: z.ZodOptional<z.ZodString>;
|
|
1212
2126
|
}, z.core.$strip>>;
|
|
1213
2127
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1214
|
-
enabled: z.
|
|
1215
|
-
apiKey: z.ZodString
|
|
2128
|
+
enabled: z.ZodBoolean;
|
|
2129
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1216
2130
|
}, z.core.$strip>>;
|
|
1217
2131
|
aws: z.ZodOptional<z.ZodObject<{
|
|
1218
|
-
enabled: z.
|
|
1219
|
-
controllerRoleArn: z.ZodString
|
|
2132
|
+
enabled: z.ZodBoolean;
|
|
2133
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
1220
2134
|
}, z.core.$strip>>;
|
|
2135
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
2136
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2137
|
+
"on-demand": "on-demand";
|
|
2138
|
+
spot: "spot";
|
|
2139
|
+
}>>>;
|
|
2140
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2141
|
+
amd64: "amd64";
|
|
2142
|
+
arm64: "arm64";
|
|
2143
|
+
}>>>;
|
|
2144
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2145
|
+
p3: "p3";
|
|
2146
|
+
cx: "cx";
|
|
2147
|
+
h1: "h1";
|
|
2148
|
+
h3: "h3";
|
|
2149
|
+
a1: "a1";
|
|
2150
|
+
a2: "a2";
|
|
2151
|
+
a3: "a3";
|
|
2152
|
+
a4: "a4";
|
|
2153
|
+
c1: "c1";
|
|
2154
|
+
c2: "c2";
|
|
2155
|
+
c2d: "c2d";
|
|
2156
|
+
c3: "c3";
|
|
2157
|
+
c3d: "c3d";
|
|
2158
|
+
c4: "c4";
|
|
2159
|
+
c4a: "c4a";
|
|
2160
|
+
c4d: "c4d";
|
|
2161
|
+
c5: "c5";
|
|
2162
|
+
c5a: "c5a";
|
|
2163
|
+
c5ad: "c5ad";
|
|
2164
|
+
c5d: "c5d";
|
|
2165
|
+
c5n: "c5n";
|
|
2166
|
+
c6a: "c6a";
|
|
2167
|
+
c6g: "c6g";
|
|
2168
|
+
c6gd: "c6gd";
|
|
2169
|
+
c6gn: "c6gn";
|
|
2170
|
+
c6i: "c6i";
|
|
2171
|
+
c6id: "c6id";
|
|
2172
|
+
c6in: "c6in";
|
|
2173
|
+
c7a: "c7a";
|
|
2174
|
+
c7g: "c7g";
|
|
2175
|
+
c7gd: "c7gd";
|
|
2176
|
+
c7gn: "c7gn";
|
|
2177
|
+
c7i: "c7i";
|
|
2178
|
+
"c7i-flex": "c7i-flex";
|
|
2179
|
+
c8g: "c8g";
|
|
2180
|
+
c8gd: "c8gd";
|
|
2181
|
+
cax: "cax";
|
|
2182
|
+
ccx: "ccx";
|
|
2183
|
+
cpx: "cpx";
|
|
2184
|
+
d2: "d2";
|
|
2185
|
+
d3: "d3";
|
|
2186
|
+
d3en: "d3en";
|
|
2187
|
+
dl1: "dl1";
|
|
2188
|
+
dl2q: "dl2q";
|
|
2189
|
+
e2: "e2";
|
|
2190
|
+
f1: "f1";
|
|
2191
|
+
f2: "f2";
|
|
2192
|
+
g1: "g1";
|
|
2193
|
+
g2: "g2";
|
|
2194
|
+
g4ad: "g4ad";
|
|
2195
|
+
g4dn: "g4dn";
|
|
2196
|
+
g5: "g5";
|
|
2197
|
+
g5g: "g5g";
|
|
2198
|
+
g6: "g6";
|
|
2199
|
+
g6e: "g6e";
|
|
2200
|
+
gr6: "gr6";
|
|
2201
|
+
hpc6a: "hpc6a";
|
|
2202
|
+
hpc6id: "hpc6id";
|
|
2203
|
+
hpc7a: "hpc7a";
|
|
2204
|
+
hpc7g: "hpc7g";
|
|
2205
|
+
i2: "i2";
|
|
2206
|
+
i3: "i3";
|
|
2207
|
+
i3en: "i3en";
|
|
2208
|
+
i4g: "i4g";
|
|
2209
|
+
i4i: "i4i";
|
|
2210
|
+
i7i: "i7i";
|
|
2211
|
+
i7ie: "i7ie";
|
|
2212
|
+
i8g: "i8g";
|
|
2213
|
+
im4gn: "im4gn";
|
|
2214
|
+
inf1: "inf1";
|
|
2215
|
+
inf2: "inf2";
|
|
2216
|
+
is4gen: "is4gen";
|
|
2217
|
+
m1: "m1";
|
|
2218
|
+
m2: "m2";
|
|
2219
|
+
m3: "m3";
|
|
2220
|
+
m4: "m4";
|
|
2221
|
+
m5: "m5";
|
|
2222
|
+
m5a: "m5a";
|
|
2223
|
+
m5ad: "m5ad";
|
|
2224
|
+
m5d: "m5d";
|
|
2225
|
+
m5dn: "m5dn";
|
|
2226
|
+
m5n: "m5n";
|
|
2227
|
+
m5zn: "m5zn";
|
|
2228
|
+
m6a: "m6a";
|
|
2229
|
+
m6g: "m6g";
|
|
2230
|
+
m6gd: "m6gd";
|
|
2231
|
+
m6i: "m6i";
|
|
2232
|
+
m6id: "m6id";
|
|
2233
|
+
m6idn: "m6idn";
|
|
2234
|
+
m6in: "m6in";
|
|
2235
|
+
m7a: "m7a";
|
|
2236
|
+
m7g: "m7g";
|
|
2237
|
+
m7gd: "m7gd";
|
|
2238
|
+
m7i: "m7i";
|
|
2239
|
+
"m7i-flex": "m7i-flex";
|
|
2240
|
+
m8g: "m8g";
|
|
2241
|
+
m8gd: "m8gd";
|
|
2242
|
+
n1: "n1";
|
|
2243
|
+
n2: "n2";
|
|
2244
|
+
n2d: "n2d";
|
|
2245
|
+
n4: "n4";
|
|
2246
|
+
p3dn: "p3dn";
|
|
2247
|
+
p4d: "p4d";
|
|
2248
|
+
p4de: "p4de";
|
|
2249
|
+
p5: "p5";
|
|
2250
|
+
p5e: "p5e";
|
|
2251
|
+
p5en: "p5en";
|
|
2252
|
+
"p6-b200": "p6-b200";
|
|
2253
|
+
r3: "r3";
|
|
2254
|
+
r4: "r4";
|
|
2255
|
+
r5: "r5";
|
|
2256
|
+
r5a: "r5a";
|
|
2257
|
+
r5ad: "r5ad";
|
|
2258
|
+
r5b: "r5b";
|
|
2259
|
+
r5d: "r5d";
|
|
2260
|
+
r5dn: "r5dn";
|
|
2261
|
+
r5n: "r5n";
|
|
2262
|
+
r6a: "r6a";
|
|
2263
|
+
r6g: "r6g";
|
|
2264
|
+
r6gd: "r6gd";
|
|
2265
|
+
r6i: "r6i";
|
|
2266
|
+
r6id: "r6id";
|
|
2267
|
+
r6idn: "r6idn";
|
|
2268
|
+
r6in: "r6in";
|
|
2269
|
+
r7a: "r7a";
|
|
2270
|
+
r7g: "r7g";
|
|
2271
|
+
r7gd: "r7gd";
|
|
2272
|
+
r7i: "r7i";
|
|
2273
|
+
r7iz: "r7iz";
|
|
2274
|
+
r8g: "r8g";
|
|
2275
|
+
r8gd: "r8gd";
|
|
2276
|
+
t2: "t2";
|
|
2277
|
+
t2a: "t2a";
|
|
2278
|
+
t2d: "t2d";
|
|
2279
|
+
t3: "t3";
|
|
2280
|
+
t3a: "t3a";
|
|
2281
|
+
t4g: "t4g";
|
|
2282
|
+
trn1: "trn1";
|
|
2283
|
+
trn1n: "trn1n";
|
|
2284
|
+
"u-3tb1": "u-3tb1";
|
|
2285
|
+
"u-6tb1": "u-6tb1";
|
|
2286
|
+
"u7i-12tb": "u7i-12tb";
|
|
2287
|
+
"u7i-6tb": "u7i-6tb";
|
|
2288
|
+
"u7i-8tb": "u7i-8tb";
|
|
2289
|
+
"u7in-16tb": "u7in-16tb";
|
|
2290
|
+
"u7in-24tb": "u7in-24tb";
|
|
2291
|
+
"u7in-32tb": "u7in-32tb";
|
|
2292
|
+
vt1: "vt1";
|
|
2293
|
+
x1: "x1";
|
|
2294
|
+
x1e: "x1e";
|
|
2295
|
+
x2gd: "x2gd";
|
|
2296
|
+
x2idn: "x2idn";
|
|
2297
|
+
x2iedn: "x2iedn";
|
|
2298
|
+
x2iezn: "x2iezn";
|
|
2299
|
+
x4: "x4";
|
|
2300
|
+
x8g: "x8g";
|
|
2301
|
+
z1d: "z1d";
|
|
2302
|
+
z3: "z3";
|
|
2303
|
+
}>>>>;
|
|
2304
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2305
|
+
"africa-south1": "africa-south1";
|
|
2306
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
2307
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
2308
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
2309
|
+
"ap-south-1": "ap-south-1";
|
|
2310
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
2311
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
2312
|
+
ash: "ash";
|
|
2313
|
+
"asia-east1": "asia-east1";
|
|
2314
|
+
"asia-east2": "asia-east2";
|
|
2315
|
+
"asia-northeast1": "asia-northeast1";
|
|
2316
|
+
"asia-northeast2": "asia-northeast2";
|
|
2317
|
+
"asia-northeast3": "asia-northeast3";
|
|
2318
|
+
"asia-south1": "asia-south1";
|
|
2319
|
+
"asia-south2": "asia-south2";
|
|
2320
|
+
"asia-southeast1": "asia-southeast1";
|
|
2321
|
+
"asia-southeast2": "asia-southeast2";
|
|
2322
|
+
"australia-southeast1": "australia-southeast1";
|
|
2323
|
+
"australia-southeast2": "australia-southeast2";
|
|
2324
|
+
"ca-central-1": "ca-central-1";
|
|
2325
|
+
"eu-central-1": "eu-central-1";
|
|
2326
|
+
"eu-central-2": "eu-central-2";
|
|
2327
|
+
"eu-north-1": "eu-north-1";
|
|
2328
|
+
"eu-west-1": "eu-west-1";
|
|
2329
|
+
"eu-west-2": "eu-west-2";
|
|
2330
|
+
"eu-west-3": "eu-west-3";
|
|
2331
|
+
"europe-central2": "europe-central2";
|
|
2332
|
+
"europe-north1": "europe-north1";
|
|
2333
|
+
"europe-southwest1": "europe-southwest1";
|
|
2334
|
+
"europe-west1": "europe-west1";
|
|
2335
|
+
"europe-west10": "europe-west10";
|
|
2336
|
+
"europe-west12": "europe-west12";
|
|
2337
|
+
"europe-west2": "europe-west2";
|
|
2338
|
+
"europe-west3": "europe-west3";
|
|
2339
|
+
"europe-west4": "europe-west4";
|
|
2340
|
+
"europe-west6": "europe-west6";
|
|
2341
|
+
"europe-west8": "europe-west8";
|
|
2342
|
+
"europe-west9": "europe-west9";
|
|
2343
|
+
fsn1: "fsn1";
|
|
2344
|
+
hel1: "hel1";
|
|
2345
|
+
hil: "hil";
|
|
2346
|
+
"me-central1": "me-central1";
|
|
2347
|
+
"me-central2": "me-central2";
|
|
2348
|
+
"me-west1": "me-west1";
|
|
2349
|
+
nbg1: "nbg1";
|
|
2350
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
2351
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
2352
|
+
"sa-east-1": "sa-east-1";
|
|
2353
|
+
sin: "sin";
|
|
2354
|
+
"southamerica-east1": "southamerica-east1";
|
|
2355
|
+
"southamerica-west1": "southamerica-west1";
|
|
2356
|
+
"us-central1": "us-central1";
|
|
2357
|
+
"us-east-1": "us-east-1";
|
|
2358
|
+
"us-east-2": "us-east-2";
|
|
2359
|
+
"us-east1": "us-east1";
|
|
2360
|
+
"us-east4": "us-east4";
|
|
2361
|
+
"us-east5": "us-east5";
|
|
2362
|
+
"us-south1": "us-south1";
|
|
2363
|
+
"us-west-1": "us-west-1";
|
|
2364
|
+
"us-west-2": "us-west-2";
|
|
2365
|
+
"us-west1": "us-west1";
|
|
2366
|
+
"us-west2": "us-west2";
|
|
2367
|
+
"us-west3": "us-west3";
|
|
2368
|
+
"us-west4": "us-west4";
|
|
2369
|
+
}>>>>;
|
|
2370
|
+
}, z.core.$strip>>;
|
|
2371
|
+
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2372
|
+
aggressive: "aggressive";
|
|
2373
|
+
conservative: "conservative";
|
|
2374
|
+
}>>;
|
|
1221
2375
|
id: z.ZodString;
|
|
2376
|
+
ready: z.ZodBoolean;
|
|
2377
|
+
status_message: z.ZodOptional<z.ZodString>;
|
|
2378
|
+
created_at: z.ZodString;
|
|
2379
|
+
updated_at: z.ZodString;
|
|
1222
2380
|
}, z.core.$strip>>;
|
|
1223
2381
|
export declare const zCreateFleetBody: z.ZodObject<{
|
|
1224
2382
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1225
|
-
cpu: z.
|
|
2383
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
1226
2384
|
}, z.core.$strip>>;
|
|
1227
2385
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
1228
|
-
enabled: z.
|
|
1229
|
-
project: z.ZodString
|
|
2386
|
+
enabled: z.ZodBoolean;
|
|
2387
|
+
project: z.ZodOptional<z.ZodString>;
|
|
1230
2388
|
}, z.core.$strip>>;
|
|
1231
2389
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1232
|
-
enabled: z.
|
|
1233
|
-
apiKey: z.ZodString
|
|
2390
|
+
enabled: z.ZodBoolean;
|
|
2391
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1234
2392
|
}, z.core.$strip>>;
|
|
1235
2393
|
aws: z.ZodOptional<z.ZodObject<{
|
|
1236
|
-
enabled: z.
|
|
1237
|
-
controllerRoleArn: z.ZodString
|
|
2394
|
+
enabled: z.ZodBoolean;
|
|
2395
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
1238
2396
|
}, z.core.$strip>>;
|
|
2397
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
2398
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2399
|
+
"on-demand": "on-demand";
|
|
2400
|
+
spot: "spot";
|
|
2401
|
+
}>>>>;
|
|
2402
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2403
|
+
amd64: "amd64";
|
|
2404
|
+
arm64: "arm64";
|
|
2405
|
+
}>>>>;
|
|
2406
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2407
|
+
p3: "p3";
|
|
2408
|
+
cx: "cx";
|
|
2409
|
+
h1: "h1";
|
|
2410
|
+
h3: "h3";
|
|
2411
|
+
a1: "a1";
|
|
2412
|
+
a2: "a2";
|
|
2413
|
+
a3: "a3";
|
|
2414
|
+
a4: "a4";
|
|
2415
|
+
c1: "c1";
|
|
2416
|
+
c2: "c2";
|
|
2417
|
+
c2d: "c2d";
|
|
2418
|
+
c3: "c3";
|
|
2419
|
+
c3d: "c3d";
|
|
2420
|
+
c4: "c4";
|
|
2421
|
+
c4a: "c4a";
|
|
2422
|
+
c4d: "c4d";
|
|
2423
|
+
c5: "c5";
|
|
2424
|
+
c5a: "c5a";
|
|
2425
|
+
c5ad: "c5ad";
|
|
2426
|
+
c5d: "c5d";
|
|
2427
|
+
c5n: "c5n";
|
|
2428
|
+
c6a: "c6a";
|
|
2429
|
+
c6g: "c6g";
|
|
2430
|
+
c6gd: "c6gd";
|
|
2431
|
+
c6gn: "c6gn";
|
|
2432
|
+
c6i: "c6i";
|
|
2433
|
+
c6id: "c6id";
|
|
2434
|
+
c6in: "c6in";
|
|
2435
|
+
c7a: "c7a";
|
|
2436
|
+
c7g: "c7g";
|
|
2437
|
+
c7gd: "c7gd";
|
|
2438
|
+
c7gn: "c7gn";
|
|
2439
|
+
c7i: "c7i";
|
|
2440
|
+
"c7i-flex": "c7i-flex";
|
|
2441
|
+
c8g: "c8g";
|
|
2442
|
+
c8gd: "c8gd";
|
|
2443
|
+
cax: "cax";
|
|
2444
|
+
ccx: "ccx";
|
|
2445
|
+
cpx: "cpx";
|
|
2446
|
+
d2: "d2";
|
|
2447
|
+
d3: "d3";
|
|
2448
|
+
d3en: "d3en";
|
|
2449
|
+
dl1: "dl1";
|
|
2450
|
+
dl2q: "dl2q";
|
|
2451
|
+
e2: "e2";
|
|
2452
|
+
f1: "f1";
|
|
2453
|
+
f2: "f2";
|
|
2454
|
+
g1: "g1";
|
|
2455
|
+
g2: "g2";
|
|
2456
|
+
g4ad: "g4ad";
|
|
2457
|
+
g4dn: "g4dn";
|
|
2458
|
+
g5: "g5";
|
|
2459
|
+
g5g: "g5g";
|
|
2460
|
+
g6: "g6";
|
|
2461
|
+
g6e: "g6e";
|
|
2462
|
+
gr6: "gr6";
|
|
2463
|
+
hpc6a: "hpc6a";
|
|
2464
|
+
hpc6id: "hpc6id";
|
|
2465
|
+
hpc7a: "hpc7a";
|
|
2466
|
+
hpc7g: "hpc7g";
|
|
2467
|
+
i2: "i2";
|
|
2468
|
+
i3: "i3";
|
|
2469
|
+
i3en: "i3en";
|
|
2470
|
+
i4g: "i4g";
|
|
2471
|
+
i4i: "i4i";
|
|
2472
|
+
i7i: "i7i";
|
|
2473
|
+
i7ie: "i7ie";
|
|
2474
|
+
i8g: "i8g";
|
|
2475
|
+
im4gn: "im4gn";
|
|
2476
|
+
inf1: "inf1";
|
|
2477
|
+
inf2: "inf2";
|
|
2478
|
+
is4gen: "is4gen";
|
|
2479
|
+
m1: "m1";
|
|
2480
|
+
m2: "m2";
|
|
2481
|
+
m3: "m3";
|
|
2482
|
+
m4: "m4";
|
|
2483
|
+
m5: "m5";
|
|
2484
|
+
m5a: "m5a";
|
|
2485
|
+
m5ad: "m5ad";
|
|
2486
|
+
m5d: "m5d";
|
|
2487
|
+
m5dn: "m5dn";
|
|
2488
|
+
m5n: "m5n";
|
|
2489
|
+
m5zn: "m5zn";
|
|
2490
|
+
m6a: "m6a";
|
|
2491
|
+
m6g: "m6g";
|
|
2492
|
+
m6gd: "m6gd";
|
|
2493
|
+
m6i: "m6i";
|
|
2494
|
+
m6id: "m6id";
|
|
2495
|
+
m6idn: "m6idn";
|
|
2496
|
+
m6in: "m6in";
|
|
2497
|
+
m7a: "m7a";
|
|
2498
|
+
m7g: "m7g";
|
|
2499
|
+
m7gd: "m7gd";
|
|
2500
|
+
m7i: "m7i";
|
|
2501
|
+
"m7i-flex": "m7i-flex";
|
|
2502
|
+
m8g: "m8g";
|
|
2503
|
+
m8gd: "m8gd";
|
|
2504
|
+
n1: "n1";
|
|
2505
|
+
n2: "n2";
|
|
2506
|
+
n2d: "n2d";
|
|
2507
|
+
n4: "n4";
|
|
2508
|
+
p3dn: "p3dn";
|
|
2509
|
+
p4d: "p4d";
|
|
2510
|
+
p4de: "p4de";
|
|
2511
|
+
p5: "p5";
|
|
2512
|
+
p5e: "p5e";
|
|
2513
|
+
p5en: "p5en";
|
|
2514
|
+
"p6-b200": "p6-b200";
|
|
2515
|
+
r3: "r3";
|
|
2516
|
+
r4: "r4";
|
|
2517
|
+
r5: "r5";
|
|
2518
|
+
r5a: "r5a";
|
|
2519
|
+
r5ad: "r5ad";
|
|
2520
|
+
r5b: "r5b";
|
|
2521
|
+
r5d: "r5d";
|
|
2522
|
+
r5dn: "r5dn";
|
|
2523
|
+
r5n: "r5n";
|
|
2524
|
+
r6a: "r6a";
|
|
2525
|
+
r6g: "r6g";
|
|
2526
|
+
r6gd: "r6gd";
|
|
2527
|
+
r6i: "r6i";
|
|
2528
|
+
r6id: "r6id";
|
|
2529
|
+
r6idn: "r6idn";
|
|
2530
|
+
r6in: "r6in";
|
|
2531
|
+
r7a: "r7a";
|
|
2532
|
+
r7g: "r7g";
|
|
2533
|
+
r7gd: "r7gd";
|
|
2534
|
+
r7i: "r7i";
|
|
2535
|
+
r7iz: "r7iz";
|
|
2536
|
+
r8g: "r8g";
|
|
2537
|
+
r8gd: "r8gd";
|
|
2538
|
+
t2: "t2";
|
|
2539
|
+
t2a: "t2a";
|
|
2540
|
+
t2d: "t2d";
|
|
2541
|
+
t3: "t3";
|
|
2542
|
+
t3a: "t3a";
|
|
2543
|
+
t4g: "t4g";
|
|
2544
|
+
trn1: "trn1";
|
|
2545
|
+
trn1n: "trn1n";
|
|
2546
|
+
"u-3tb1": "u-3tb1";
|
|
2547
|
+
"u-6tb1": "u-6tb1";
|
|
2548
|
+
"u7i-12tb": "u7i-12tb";
|
|
2549
|
+
"u7i-6tb": "u7i-6tb";
|
|
2550
|
+
"u7i-8tb": "u7i-8tb";
|
|
2551
|
+
"u7in-16tb": "u7in-16tb";
|
|
2552
|
+
"u7in-24tb": "u7in-24tb";
|
|
2553
|
+
"u7in-32tb": "u7in-32tb";
|
|
2554
|
+
vt1: "vt1";
|
|
2555
|
+
x1: "x1";
|
|
2556
|
+
x1e: "x1e";
|
|
2557
|
+
x2gd: "x2gd";
|
|
2558
|
+
x2idn: "x2idn";
|
|
2559
|
+
x2iedn: "x2iedn";
|
|
2560
|
+
x2iezn: "x2iezn";
|
|
2561
|
+
x4: "x4";
|
|
2562
|
+
x8g: "x8g";
|
|
2563
|
+
z1d: "z1d";
|
|
2564
|
+
z3: "z3";
|
|
2565
|
+
}>>>>;
|
|
2566
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2567
|
+
"africa-south1": "africa-south1";
|
|
2568
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
2569
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
2570
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
2571
|
+
"ap-south-1": "ap-south-1";
|
|
2572
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
2573
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
2574
|
+
ash: "ash";
|
|
2575
|
+
"asia-east1": "asia-east1";
|
|
2576
|
+
"asia-east2": "asia-east2";
|
|
2577
|
+
"asia-northeast1": "asia-northeast1";
|
|
2578
|
+
"asia-northeast2": "asia-northeast2";
|
|
2579
|
+
"asia-northeast3": "asia-northeast3";
|
|
2580
|
+
"asia-south1": "asia-south1";
|
|
2581
|
+
"asia-south2": "asia-south2";
|
|
2582
|
+
"asia-southeast1": "asia-southeast1";
|
|
2583
|
+
"asia-southeast2": "asia-southeast2";
|
|
2584
|
+
"australia-southeast1": "australia-southeast1";
|
|
2585
|
+
"australia-southeast2": "australia-southeast2";
|
|
2586
|
+
"ca-central-1": "ca-central-1";
|
|
2587
|
+
"eu-central-1": "eu-central-1";
|
|
2588
|
+
"eu-central-2": "eu-central-2";
|
|
2589
|
+
"eu-north-1": "eu-north-1";
|
|
2590
|
+
"eu-west-1": "eu-west-1";
|
|
2591
|
+
"eu-west-2": "eu-west-2";
|
|
2592
|
+
"eu-west-3": "eu-west-3";
|
|
2593
|
+
"europe-central2": "europe-central2";
|
|
2594
|
+
"europe-north1": "europe-north1";
|
|
2595
|
+
"europe-southwest1": "europe-southwest1";
|
|
2596
|
+
"europe-west1": "europe-west1";
|
|
2597
|
+
"europe-west10": "europe-west10";
|
|
2598
|
+
"europe-west12": "europe-west12";
|
|
2599
|
+
"europe-west2": "europe-west2";
|
|
2600
|
+
"europe-west3": "europe-west3";
|
|
2601
|
+
"europe-west4": "europe-west4";
|
|
2602
|
+
"europe-west6": "europe-west6";
|
|
2603
|
+
"europe-west8": "europe-west8";
|
|
2604
|
+
"europe-west9": "europe-west9";
|
|
2605
|
+
fsn1: "fsn1";
|
|
2606
|
+
hel1: "hel1";
|
|
2607
|
+
hil: "hil";
|
|
2608
|
+
"me-central1": "me-central1";
|
|
2609
|
+
"me-central2": "me-central2";
|
|
2610
|
+
"me-west1": "me-west1";
|
|
2611
|
+
nbg1: "nbg1";
|
|
2612
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
2613
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
2614
|
+
"sa-east-1": "sa-east-1";
|
|
2615
|
+
sin: "sin";
|
|
2616
|
+
"southamerica-east1": "southamerica-east1";
|
|
2617
|
+
"southamerica-west1": "southamerica-west1";
|
|
2618
|
+
"us-central1": "us-central1";
|
|
2619
|
+
"us-east-1": "us-east-1";
|
|
2620
|
+
"us-east-2": "us-east-2";
|
|
2621
|
+
"us-east1": "us-east1";
|
|
2622
|
+
"us-east4": "us-east4";
|
|
2623
|
+
"us-east5": "us-east5";
|
|
2624
|
+
"us-south1": "us-south1";
|
|
2625
|
+
"us-west-1": "us-west-1";
|
|
2626
|
+
"us-west-2": "us-west-2";
|
|
2627
|
+
"us-west1": "us-west1";
|
|
2628
|
+
"us-west2": "us-west2";
|
|
2629
|
+
"us-west3": "us-west3";
|
|
2630
|
+
"us-west4": "us-west4";
|
|
2631
|
+
}>>>>;
|
|
2632
|
+
}, z.core.$strip>>>;
|
|
2633
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2634
|
+
aggressive: "aggressive";
|
|
2635
|
+
conservative: "conservative";
|
|
2636
|
+
}>>>;
|
|
1239
2637
|
id: z.ZodString;
|
|
1240
2638
|
}, z.core.$strip>;
|
|
1241
2639
|
export declare const zCreateFleetPath: z.ZodObject<{
|
|
@@ -1244,88 +2642,654 @@ export declare const zCreateFleetPath: z.ZodObject<{
|
|
|
1244
2642
|
/**
|
|
1245
2643
|
* Successfully created. Returns created Fleet ID.
|
|
1246
2644
|
*/
|
|
1247
|
-
export declare const zCreateFleetResponse: z.ZodString;
|
|
1248
|
-
export declare const zDeleteFleetPath: z.ZodObject<{
|
|
2645
|
+
export declare const zCreateFleetResponse: z.ZodString;
|
|
2646
|
+
export declare const zDeleteFleetPath: z.ZodObject<{
|
|
2647
|
+
cluster_id: z.ZodString;
|
|
2648
|
+
fleet_name: z.ZodString;
|
|
2649
|
+
}, z.core.$strip>;
|
|
2650
|
+
/**
|
|
2651
|
+
* Successfully deleted.
|
|
2652
|
+
*/
|
|
2653
|
+
export declare const zDeleteFleetResponse: z.ZodString;
|
|
2654
|
+
export declare const zGetFleetPath: z.ZodObject<{
|
|
2655
|
+
cluster_id: z.ZodString;
|
|
2656
|
+
fleet_name: z.ZodString;
|
|
2657
|
+
}, z.core.$strip>;
|
|
2658
|
+
/**
|
|
2659
|
+
* Returns a single object containing fleet details.
|
|
2660
|
+
*/
|
|
2661
|
+
export declare const zGetFleetResponse: z.ZodObject<{
|
|
2662
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
2663
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
2664
|
+
}, z.core.$strip>>;
|
|
2665
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
2666
|
+
enabled: z.ZodBoolean;
|
|
2667
|
+
project: z.ZodOptional<z.ZodString>;
|
|
2668
|
+
}, z.core.$strip>>;
|
|
2669
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
2670
|
+
enabled: z.ZodBoolean;
|
|
2671
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2672
|
+
}, z.core.$strip>>;
|
|
2673
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
2674
|
+
enabled: z.ZodBoolean;
|
|
2675
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2676
|
+
}, z.core.$strip>>;
|
|
2677
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
2678
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2679
|
+
"on-demand": "on-demand";
|
|
2680
|
+
spot: "spot";
|
|
2681
|
+
}>>>;
|
|
2682
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2683
|
+
amd64: "amd64";
|
|
2684
|
+
arm64: "arm64";
|
|
2685
|
+
}>>>;
|
|
2686
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2687
|
+
p3: "p3";
|
|
2688
|
+
cx: "cx";
|
|
2689
|
+
h1: "h1";
|
|
2690
|
+
h3: "h3";
|
|
2691
|
+
a1: "a1";
|
|
2692
|
+
a2: "a2";
|
|
2693
|
+
a3: "a3";
|
|
2694
|
+
a4: "a4";
|
|
2695
|
+
c1: "c1";
|
|
2696
|
+
c2: "c2";
|
|
2697
|
+
c2d: "c2d";
|
|
2698
|
+
c3: "c3";
|
|
2699
|
+
c3d: "c3d";
|
|
2700
|
+
c4: "c4";
|
|
2701
|
+
c4a: "c4a";
|
|
2702
|
+
c4d: "c4d";
|
|
2703
|
+
c5: "c5";
|
|
2704
|
+
c5a: "c5a";
|
|
2705
|
+
c5ad: "c5ad";
|
|
2706
|
+
c5d: "c5d";
|
|
2707
|
+
c5n: "c5n";
|
|
2708
|
+
c6a: "c6a";
|
|
2709
|
+
c6g: "c6g";
|
|
2710
|
+
c6gd: "c6gd";
|
|
2711
|
+
c6gn: "c6gn";
|
|
2712
|
+
c6i: "c6i";
|
|
2713
|
+
c6id: "c6id";
|
|
2714
|
+
c6in: "c6in";
|
|
2715
|
+
c7a: "c7a";
|
|
2716
|
+
c7g: "c7g";
|
|
2717
|
+
c7gd: "c7gd";
|
|
2718
|
+
c7gn: "c7gn";
|
|
2719
|
+
c7i: "c7i";
|
|
2720
|
+
"c7i-flex": "c7i-flex";
|
|
2721
|
+
c8g: "c8g";
|
|
2722
|
+
c8gd: "c8gd";
|
|
2723
|
+
cax: "cax";
|
|
2724
|
+
ccx: "ccx";
|
|
2725
|
+
cpx: "cpx";
|
|
2726
|
+
d2: "d2";
|
|
2727
|
+
d3: "d3";
|
|
2728
|
+
d3en: "d3en";
|
|
2729
|
+
dl1: "dl1";
|
|
2730
|
+
dl2q: "dl2q";
|
|
2731
|
+
e2: "e2";
|
|
2732
|
+
f1: "f1";
|
|
2733
|
+
f2: "f2";
|
|
2734
|
+
g1: "g1";
|
|
2735
|
+
g2: "g2";
|
|
2736
|
+
g4ad: "g4ad";
|
|
2737
|
+
g4dn: "g4dn";
|
|
2738
|
+
g5: "g5";
|
|
2739
|
+
g5g: "g5g";
|
|
2740
|
+
g6: "g6";
|
|
2741
|
+
g6e: "g6e";
|
|
2742
|
+
gr6: "gr6";
|
|
2743
|
+
hpc6a: "hpc6a";
|
|
2744
|
+
hpc6id: "hpc6id";
|
|
2745
|
+
hpc7a: "hpc7a";
|
|
2746
|
+
hpc7g: "hpc7g";
|
|
2747
|
+
i2: "i2";
|
|
2748
|
+
i3: "i3";
|
|
2749
|
+
i3en: "i3en";
|
|
2750
|
+
i4g: "i4g";
|
|
2751
|
+
i4i: "i4i";
|
|
2752
|
+
i7i: "i7i";
|
|
2753
|
+
i7ie: "i7ie";
|
|
2754
|
+
i8g: "i8g";
|
|
2755
|
+
im4gn: "im4gn";
|
|
2756
|
+
inf1: "inf1";
|
|
2757
|
+
inf2: "inf2";
|
|
2758
|
+
is4gen: "is4gen";
|
|
2759
|
+
m1: "m1";
|
|
2760
|
+
m2: "m2";
|
|
2761
|
+
m3: "m3";
|
|
2762
|
+
m4: "m4";
|
|
2763
|
+
m5: "m5";
|
|
2764
|
+
m5a: "m5a";
|
|
2765
|
+
m5ad: "m5ad";
|
|
2766
|
+
m5d: "m5d";
|
|
2767
|
+
m5dn: "m5dn";
|
|
2768
|
+
m5n: "m5n";
|
|
2769
|
+
m5zn: "m5zn";
|
|
2770
|
+
m6a: "m6a";
|
|
2771
|
+
m6g: "m6g";
|
|
2772
|
+
m6gd: "m6gd";
|
|
2773
|
+
m6i: "m6i";
|
|
2774
|
+
m6id: "m6id";
|
|
2775
|
+
m6idn: "m6idn";
|
|
2776
|
+
m6in: "m6in";
|
|
2777
|
+
m7a: "m7a";
|
|
2778
|
+
m7g: "m7g";
|
|
2779
|
+
m7gd: "m7gd";
|
|
2780
|
+
m7i: "m7i";
|
|
2781
|
+
"m7i-flex": "m7i-flex";
|
|
2782
|
+
m8g: "m8g";
|
|
2783
|
+
m8gd: "m8gd";
|
|
2784
|
+
n1: "n1";
|
|
2785
|
+
n2: "n2";
|
|
2786
|
+
n2d: "n2d";
|
|
2787
|
+
n4: "n4";
|
|
2788
|
+
p3dn: "p3dn";
|
|
2789
|
+
p4d: "p4d";
|
|
2790
|
+
p4de: "p4de";
|
|
2791
|
+
p5: "p5";
|
|
2792
|
+
p5e: "p5e";
|
|
2793
|
+
p5en: "p5en";
|
|
2794
|
+
"p6-b200": "p6-b200";
|
|
2795
|
+
r3: "r3";
|
|
2796
|
+
r4: "r4";
|
|
2797
|
+
r5: "r5";
|
|
2798
|
+
r5a: "r5a";
|
|
2799
|
+
r5ad: "r5ad";
|
|
2800
|
+
r5b: "r5b";
|
|
2801
|
+
r5d: "r5d";
|
|
2802
|
+
r5dn: "r5dn";
|
|
2803
|
+
r5n: "r5n";
|
|
2804
|
+
r6a: "r6a";
|
|
2805
|
+
r6g: "r6g";
|
|
2806
|
+
r6gd: "r6gd";
|
|
2807
|
+
r6i: "r6i";
|
|
2808
|
+
r6id: "r6id";
|
|
2809
|
+
r6idn: "r6idn";
|
|
2810
|
+
r6in: "r6in";
|
|
2811
|
+
r7a: "r7a";
|
|
2812
|
+
r7g: "r7g";
|
|
2813
|
+
r7gd: "r7gd";
|
|
2814
|
+
r7i: "r7i";
|
|
2815
|
+
r7iz: "r7iz";
|
|
2816
|
+
r8g: "r8g";
|
|
2817
|
+
r8gd: "r8gd";
|
|
2818
|
+
t2: "t2";
|
|
2819
|
+
t2a: "t2a";
|
|
2820
|
+
t2d: "t2d";
|
|
2821
|
+
t3: "t3";
|
|
2822
|
+
t3a: "t3a";
|
|
2823
|
+
t4g: "t4g";
|
|
2824
|
+
trn1: "trn1";
|
|
2825
|
+
trn1n: "trn1n";
|
|
2826
|
+
"u-3tb1": "u-3tb1";
|
|
2827
|
+
"u-6tb1": "u-6tb1";
|
|
2828
|
+
"u7i-12tb": "u7i-12tb";
|
|
2829
|
+
"u7i-6tb": "u7i-6tb";
|
|
2830
|
+
"u7i-8tb": "u7i-8tb";
|
|
2831
|
+
"u7in-16tb": "u7in-16tb";
|
|
2832
|
+
"u7in-24tb": "u7in-24tb";
|
|
2833
|
+
"u7in-32tb": "u7in-32tb";
|
|
2834
|
+
vt1: "vt1";
|
|
2835
|
+
x1: "x1";
|
|
2836
|
+
x1e: "x1e";
|
|
2837
|
+
x2gd: "x2gd";
|
|
2838
|
+
x2idn: "x2idn";
|
|
2839
|
+
x2iedn: "x2iedn";
|
|
2840
|
+
x2iezn: "x2iezn";
|
|
2841
|
+
x4: "x4";
|
|
2842
|
+
x8g: "x8g";
|
|
2843
|
+
z1d: "z1d";
|
|
2844
|
+
z3: "z3";
|
|
2845
|
+
}>>>>;
|
|
2846
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2847
|
+
"africa-south1": "africa-south1";
|
|
2848
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
2849
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
2850
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
2851
|
+
"ap-south-1": "ap-south-1";
|
|
2852
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
2853
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
2854
|
+
ash: "ash";
|
|
2855
|
+
"asia-east1": "asia-east1";
|
|
2856
|
+
"asia-east2": "asia-east2";
|
|
2857
|
+
"asia-northeast1": "asia-northeast1";
|
|
2858
|
+
"asia-northeast2": "asia-northeast2";
|
|
2859
|
+
"asia-northeast3": "asia-northeast3";
|
|
2860
|
+
"asia-south1": "asia-south1";
|
|
2861
|
+
"asia-south2": "asia-south2";
|
|
2862
|
+
"asia-southeast1": "asia-southeast1";
|
|
2863
|
+
"asia-southeast2": "asia-southeast2";
|
|
2864
|
+
"australia-southeast1": "australia-southeast1";
|
|
2865
|
+
"australia-southeast2": "australia-southeast2";
|
|
2866
|
+
"ca-central-1": "ca-central-1";
|
|
2867
|
+
"eu-central-1": "eu-central-1";
|
|
2868
|
+
"eu-central-2": "eu-central-2";
|
|
2869
|
+
"eu-north-1": "eu-north-1";
|
|
2870
|
+
"eu-west-1": "eu-west-1";
|
|
2871
|
+
"eu-west-2": "eu-west-2";
|
|
2872
|
+
"eu-west-3": "eu-west-3";
|
|
2873
|
+
"europe-central2": "europe-central2";
|
|
2874
|
+
"europe-north1": "europe-north1";
|
|
2875
|
+
"europe-southwest1": "europe-southwest1";
|
|
2876
|
+
"europe-west1": "europe-west1";
|
|
2877
|
+
"europe-west10": "europe-west10";
|
|
2878
|
+
"europe-west12": "europe-west12";
|
|
2879
|
+
"europe-west2": "europe-west2";
|
|
2880
|
+
"europe-west3": "europe-west3";
|
|
2881
|
+
"europe-west4": "europe-west4";
|
|
2882
|
+
"europe-west6": "europe-west6";
|
|
2883
|
+
"europe-west8": "europe-west8";
|
|
2884
|
+
"europe-west9": "europe-west9";
|
|
2885
|
+
fsn1: "fsn1";
|
|
2886
|
+
hel1: "hel1";
|
|
2887
|
+
hil: "hil";
|
|
2888
|
+
"me-central1": "me-central1";
|
|
2889
|
+
"me-central2": "me-central2";
|
|
2890
|
+
"me-west1": "me-west1";
|
|
2891
|
+
nbg1: "nbg1";
|
|
2892
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
2893
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
2894
|
+
"sa-east-1": "sa-east-1";
|
|
2895
|
+
sin: "sin";
|
|
2896
|
+
"southamerica-east1": "southamerica-east1";
|
|
2897
|
+
"southamerica-west1": "southamerica-west1";
|
|
2898
|
+
"us-central1": "us-central1";
|
|
2899
|
+
"us-east-1": "us-east-1";
|
|
2900
|
+
"us-east-2": "us-east-2";
|
|
2901
|
+
"us-east1": "us-east1";
|
|
2902
|
+
"us-east4": "us-east4";
|
|
2903
|
+
"us-east5": "us-east5";
|
|
2904
|
+
"us-south1": "us-south1";
|
|
2905
|
+
"us-west-1": "us-west-1";
|
|
2906
|
+
"us-west-2": "us-west-2";
|
|
2907
|
+
"us-west1": "us-west1";
|
|
2908
|
+
"us-west2": "us-west2";
|
|
2909
|
+
"us-west3": "us-west3";
|
|
2910
|
+
"us-west4": "us-west4";
|
|
2911
|
+
}>>>>;
|
|
2912
|
+
}, z.core.$strip>>;
|
|
2913
|
+
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2914
|
+
aggressive: "aggressive";
|
|
2915
|
+
conservative: "conservative";
|
|
2916
|
+
}>>;
|
|
2917
|
+
id: z.ZodString;
|
|
2918
|
+
ready: z.ZodBoolean;
|
|
2919
|
+
status_message: z.ZodOptional<z.ZodString>;
|
|
2920
|
+
created_at: z.ZodString;
|
|
2921
|
+
updated_at: z.ZodString;
|
|
2922
|
+
}, z.core.$strip>;
|
|
2923
|
+
export declare const zUpdateFleetBody: z.ZodObject<{
|
|
2924
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
2925
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
2926
|
+
}, z.core.$strip>>;
|
|
2927
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
2928
|
+
enabled: z.ZodBoolean;
|
|
2929
|
+
project: z.ZodOptional<z.ZodString>;
|
|
2930
|
+
}, z.core.$strip>>;
|
|
2931
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
2932
|
+
enabled: z.ZodBoolean;
|
|
2933
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2934
|
+
}, z.core.$strip>>;
|
|
2935
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
2936
|
+
enabled: z.ZodBoolean;
|
|
2937
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2938
|
+
}, z.core.$strip>>;
|
|
2939
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
2940
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2941
|
+
"on-demand": "on-demand";
|
|
2942
|
+
spot: "spot";
|
|
2943
|
+
}>>>>;
|
|
2944
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2945
|
+
amd64: "amd64";
|
|
2946
|
+
arm64: "arm64";
|
|
2947
|
+
}>>>>;
|
|
2948
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2949
|
+
p3: "p3";
|
|
2950
|
+
cx: "cx";
|
|
2951
|
+
h1: "h1";
|
|
2952
|
+
h3: "h3";
|
|
2953
|
+
a1: "a1";
|
|
2954
|
+
a2: "a2";
|
|
2955
|
+
a3: "a3";
|
|
2956
|
+
a4: "a4";
|
|
2957
|
+
c1: "c1";
|
|
2958
|
+
c2: "c2";
|
|
2959
|
+
c2d: "c2d";
|
|
2960
|
+
c3: "c3";
|
|
2961
|
+
c3d: "c3d";
|
|
2962
|
+
c4: "c4";
|
|
2963
|
+
c4a: "c4a";
|
|
2964
|
+
c4d: "c4d";
|
|
2965
|
+
c5: "c5";
|
|
2966
|
+
c5a: "c5a";
|
|
2967
|
+
c5ad: "c5ad";
|
|
2968
|
+
c5d: "c5d";
|
|
2969
|
+
c5n: "c5n";
|
|
2970
|
+
c6a: "c6a";
|
|
2971
|
+
c6g: "c6g";
|
|
2972
|
+
c6gd: "c6gd";
|
|
2973
|
+
c6gn: "c6gn";
|
|
2974
|
+
c6i: "c6i";
|
|
2975
|
+
c6id: "c6id";
|
|
2976
|
+
c6in: "c6in";
|
|
2977
|
+
c7a: "c7a";
|
|
2978
|
+
c7g: "c7g";
|
|
2979
|
+
c7gd: "c7gd";
|
|
2980
|
+
c7gn: "c7gn";
|
|
2981
|
+
c7i: "c7i";
|
|
2982
|
+
"c7i-flex": "c7i-flex";
|
|
2983
|
+
c8g: "c8g";
|
|
2984
|
+
c8gd: "c8gd";
|
|
2985
|
+
cax: "cax";
|
|
2986
|
+
ccx: "ccx";
|
|
2987
|
+
cpx: "cpx";
|
|
2988
|
+
d2: "d2";
|
|
2989
|
+
d3: "d3";
|
|
2990
|
+
d3en: "d3en";
|
|
2991
|
+
dl1: "dl1";
|
|
2992
|
+
dl2q: "dl2q";
|
|
2993
|
+
e2: "e2";
|
|
2994
|
+
f1: "f1";
|
|
2995
|
+
f2: "f2";
|
|
2996
|
+
g1: "g1";
|
|
2997
|
+
g2: "g2";
|
|
2998
|
+
g4ad: "g4ad";
|
|
2999
|
+
g4dn: "g4dn";
|
|
3000
|
+
g5: "g5";
|
|
3001
|
+
g5g: "g5g";
|
|
3002
|
+
g6: "g6";
|
|
3003
|
+
g6e: "g6e";
|
|
3004
|
+
gr6: "gr6";
|
|
3005
|
+
hpc6a: "hpc6a";
|
|
3006
|
+
hpc6id: "hpc6id";
|
|
3007
|
+
hpc7a: "hpc7a";
|
|
3008
|
+
hpc7g: "hpc7g";
|
|
3009
|
+
i2: "i2";
|
|
3010
|
+
i3: "i3";
|
|
3011
|
+
i3en: "i3en";
|
|
3012
|
+
i4g: "i4g";
|
|
3013
|
+
i4i: "i4i";
|
|
3014
|
+
i7i: "i7i";
|
|
3015
|
+
i7ie: "i7ie";
|
|
3016
|
+
i8g: "i8g";
|
|
3017
|
+
im4gn: "im4gn";
|
|
3018
|
+
inf1: "inf1";
|
|
3019
|
+
inf2: "inf2";
|
|
3020
|
+
is4gen: "is4gen";
|
|
3021
|
+
m1: "m1";
|
|
3022
|
+
m2: "m2";
|
|
3023
|
+
m3: "m3";
|
|
3024
|
+
m4: "m4";
|
|
3025
|
+
m5: "m5";
|
|
3026
|
+
m5a: "m5a";
|
|
3027
|
+
m5ad: "m5ad";
|
|
3028
|
+
m5d: "m5d";
|
|
3029
|
+
m5dn: "m5dn";
|
|
3030
|
+
m5n: "m5n";
|
|
3031
|
+
m5zn: "m5zn";
|
|
3032
|
+
m6a: "m6a";
|
|
3033
|
+
m6g: "m6g";
|
|
3034
|
+
m6gd: "m6gd";
|
|
3035
|
+
m6i: "m6i";
|
|
3036
|
+
m6id: "m6id";
|
|
3037
|
+
m6idn: "m6idn";
|
|
3038
|
+
m6in: "m6in";
|
|
3039
|
+
m7a: "m7a";
|
|
3040
|
+
m7g: "m7g";
|
|
3041
|
+
m7gd: "m7gd";
|
|
3042
|
+
m7i: "m7i";
|
|
3043
|
+
"m7i-flex": "m7i-flex";
|
|
3044
|
+
m8g: "m8g";
|
|
3045
|
+
m8gd: "m8gd";
|
|
3046
|
+
n1: "n1";
|
|
3047
|
+
n2: "n2";
|
|
3048
|
+
n2d: "n2d";
|
|
3049
|
+
n4: "n4";
|
|
3050
|
+
p3dn: "p3dn";
|
|
3051
|
+
p4d: "p4d";
|
|
3052
|
+
p4de: "p4de";
|
|
3053
|
+
p5: "p5";
|
|
3054
|
+
p5e: "p5e";
|
|
3055
|
+
p5en: "p5en";
|
|
3056
|
+
"p6-b200": "p6-b200";
|
|
3057
|
+
r3: "r3";
|
|
3058
|
+
r4: "r4";
|
|
3059
|
+
r5: "r5";
|
|
3060
|
+
r5a: "r5a";
|
|
3061
|
+
r5ad: "r5ad";
|
|
3062
|
+
r5b: "r5b";
|
|
3063
|
+
r5d: "r5d";
|
|
3064
|
+
r5dn: "r5dn";
|
|
3065
|
+
r5n: "r5n";
|
|
3066
|
+
r6a: "r6a";
|
|
3067
|
+
r6g: "r6g";
|
|
3068
|
+
r6gd: "r6gd";
|
|
3069
|
+
r6i: "r6i";
|
|
3070
|
+
r6id: "r6id";
|
|
3071
|
+
r6idn: "r6idn";
|
|
3072
|
+
r6in: "r6in";
|
|
3073
|
+
r7a: "r7a";
|
|
3074
|
+
r7g: "r7g";
|
|
3075
|
+
r7gd: "r7gd";
|
|
3076
|
+
r7i: "r7i";
|
|
3077
|
+
r7iz: "r7iz";
|
|
3078
|
+
r8g: "r8g";
|
|
3079
|
+
r8gd: "r8gd";
|
|
3080
|
+
t2: "t2";
|
|
3081
|
+
t2a: "t2a";
|
|
3082
|
+
t2d: "t2d";
|
|
3083
|
+
t3: "t3";
|
|
3084
|
+
t3a: "t3a";
|
|
3085
|
+
t4g: "t4g";
|
|
3086
|
+
trn1: "trn1";
|
|
3087
|
+
trn1n: "trn1n";
|
|
3088
|
+
"u-3tb1": "u-3tb1";
|
|
3089
|
+
"u-6tb1": "u-6tb1";
|
|
3090
|
+
"u7i-12tb": "u7i-12tb";
|
|
3091
|
+
"u7i-6tb": "u7i-6tb";
|
|
3092
|
+
"u7i-8tb": "u7i-8tb";
|
|
3093
|
+
"u7in-16tb": "u7in-16tb";
|
|
3094
|
+
"u7in-24tb": "u7in-24tb";
|
|
3095
|
+
"u7in-32tb": "u7in-32tb";
|
|
3096
|
+
vt1: "vt1";
|
|
3097
|
+
x1: "x1";
|
|
3098
|
+
x1e: "x1e";
|
|
3099
|
+
x2gd: "x2gd";
|
|
3100
|
+
x2idn: "x2idn";
|
|
3101
|
+
x2iedn: "x2iedn";
|
|
3102
|
+
x2iezn: "x2iezn";
|
|
3103
|
+
x4: "x4";
|
|
3104
|
+
x8g: "x8g";
|
|
3105
|
+
z1d: "z1d";
|
|
3106
|
+
z3: "z3";
|
|
3107
|
+
}>>>>;
|
|
3108
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3109
|
+
"africa-south1": "africa-south1";
|
|
3110
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
3111
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
3112
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
3113
|
+
"ap-south-1": "ap-south-1";
|
|
3114
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
3115
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
3116
|
+
ash: "ash";
|
|
3117
|
+
"asia-east1": "asia-east1";
|
|
3118
|
+
"asia-east2": "asia-east2";
|
|
3119
|
+
"asia-northeast1": "asia-northeast1";
|
|
3120
|
+
"asia-northeast2": "asia-northeast2";
|
|
3121
|
+
"asia-northeast3": "asia-northeast3";
|
|
3122
|
+
"asia-south1": "asia-south1";
|
|
3123
|
+
"asia-south2": "asia-south2";
|
|
3124
|
+
"asia-southeast1": "asia-southeast1";
|
|
3125
|
+
"asia-southeast2": "asia-southeast2";
|
|
3126
|
+
"australia-southeast1": "australia-southeast1";
|
|
3127
|
+
"australia-southeast2": "australia-southeast2";
|
|
3128
|
+
"ca-central-1": "ca-central-1";
|
|
3129
|
+
"eu-central-1": "eu-central-1";
|
|
3130
|
+
"eu-central-2": "eu-central-2";
|
|
3131
|
+
"eu-north-1": "eu-north-1";
|
|
3132
|
+
"eu-west-1": "eu-west-1";
|
|
3133
|
+
"eu-west-2": "eu-west-2";
|
|
3134
|
+
"eu-west-3": "eu-west-3";
|
|
3135
|
+
"europe-central2": "europe-central2";
|
|
3136
|
+
"europe-north1": "europe-north1";
|
|
3137
|
+
"europe-southwest1": "europe-southwest1";
|
|
3138
|
+
"europe-west1": "europe-west1";
|
|
3139
|
+
"europe-west10": "europe-west10";
|
|
3140
|
+
"europe-west12": "europe-west12";
|
|
3141
|
+
"europe-west2": "europe-west2";
|
|
3142
|
+
"europe-west3": "europe-west3";
|
|
3143
|
+
"europe-west4": "europe-west4";
|
|
3144
|
+
"europe-west6": "europe-west6";
|
|
3145
|
+
"europe-west8": "europe-west8";
|
|
3146
|
+
"europe-west9": "europe-west9";
|
|
3147
|
+
fsn1: "fsn1";
|
|
3148
|
+
hel1: "hel1";
|
|
3149
|
+
hil: "hil";
|
|
3150
|
+
"me-central1": "me-central1";
|
|
3151
|
+
"me-central2": "me-central2";
|
|
3152
|
+
"me-west1": "me-west1";
|
|
3153
|
+
nbg1: "nbg1";
|
|
3154
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
3155
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
3156
|
+
"sa-east-1": "sa-east-1";
|
|
3157
|
+
sin: "sin";
|
|
3158
|
+
"southamerica-east1": "southamerica-east1";
|
|
3159
|
+
"southamerica-west1": "southamerica-west1";
|
|
3160
|
+
"us-central1": "us-central1";
|
|
3161
|
+
"us-east-1": "us-east-1";
|
|
3162
|
+
"us-east-2": "us-east-2";
|
|
3163
|
+
"us-east1": "us-east1";
|
|
3164
|
+
"us-east4": "us-east4";
|
|
3165
|
+
"us-east5": "us-east5";
|
|
3166
|
+
"us-south1": "us-south1";
|
|
3167
|
+
"us-west-1": "us-west-1";
|
|
3168
|
+
"us-west-2": "us-west-2";
|
|
3169
|
+
"us-west1": "us-west1";
|
|
3170
|
+
"us-west2": "us-west2";
|
|
3171
|
+
"us-west3": "us-west3";
|
|
3172
|
+
"us-west4": "us-west4";
|
|
3173
|
+
}>>>>;
|
|
3174
|
+
}, z.core.$strip>>>;
|
|
3175
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3176
|
+
aggressive: "aggressive";
|
|
3177
|
+
conservative: "conservative";
|
|
3178
|
+
}>>>;
|
|
3179
|
+
}, z.core.$strip>;
|
|
3180
|
+
export declare const zUpdateFleetPath: z.ZodObject<{
|
|
3181
|
+
cluster_id: z.ZodString;
|
|
3182
|
+
fleet_name: z.ZodString;
|
|
3183
|
+
}, z.core.$strip>;
|
|
3184
|
+
/**
|
|
3185
|
+
* Successfully updated.
|
|
3186
|
+
*/
|
|
3187
|
+
export declare const zUpdateFleetResponse: z.ZodString;
|
|
3188
|
+
export declare const zListChartsPath: z.ZodObject<{
|
|
3189
|
+
cluster_id: z.ZodString;
|
|
3190
|
+
}, z.core.$strip>;
|
|
3191
|
+
/**
|
|
3192
|
+
* An array of charts
|
|
3193
|
+
*/
|
|
3194
|
+
export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
|
|
3195
|
+
values: z.ZodString;
|
|
3196
|
+
version_channel: z.ZodString;
|
|
3197
|
+
name: z.ZodString;
|
|
3198
|
+
namespace: z.ZodString;
|
|
3199
|
+
chart: z.ZodString;
|
|
3200
|
+
status: z.ZodString;
|
|
3201
|
+
version_current: z.ZodString;
|
|
3202
|
+
created_at: z.ZodString;
|
|
3203
|
+
updated_at: z.ZodString;
|
|
3204
|
+
ready: z.ZodBoolean;
|
|
3205
|
+
}, z.core.$strip>>;
|
|
3206
|
+
export declare const zCreateChartBody: z.ZodObject<{
|
|
3207
|
+
values: z.ZodString;
|
|
3208
|
+
version_channel: z.ZodString;
|
|
3209
|
+
name: z.ZodString;
|
|
3210
|
+
namespace: z.ZodString;
|
|
3211
|
+
chart: z.ZodString;
|
|
3212
|
+
}, z.core.$strip>;
|
|
3213
|
+
export declare const zCreateChartPath: z.ZodObject<{
|
|
3214
|
+
cluster_id: z.ZodString;
|
|
3215
|
+
}, z.core.$strip>;
|
|
3216
|
+
/**
|
|
3217
|
+
* Successfully created. Returns created Chart ID.
|
|
3218
|
+
*/
|
|
3219
|
+
export declare const zCreateChartResponse: z.ZodString;
|
|
3220
|
+
export declare const zDeleteChartPath: z.ZodObject<{
|
|
1249
3221
|
cluster_id: z.ZodString;
|
|
1250
|
-
|
|
3222
|
+
chart_name: z.ZodString;
|
|
1251
3223
|
}, z.core.$strip>;
|
|
1252
3224
|
/**
|
|
1253
3225
|
* Successfully deleted.
|
|
1254
3226
|
*/
|
|
1255
|
-
export declare const
|
|
1256
|
-
export declare const
|
|
3227
|
+
export declare const zDeleteChartResponse: z.ZodString;
|
|
3228
|
+
export declare const zGetChartPath: z.ZodObject<{
|
|
1257
3229
|
cluster_id: z.ZodString;
|
|
1258
|
-
|
|
3230
|
+
chart_name: z.ZodString;
|
|
1259
3231
|
}, z.core.$strip>;
|
|
1260
3232
|
/**
|
|
1261
|
-
* Returns a single object containing
|
|
3233
|
+
* Returns a single object containing chart details.
|
|
1262
3234
|
*/
|
|
1263
|
-
export declare const
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
}, z.core.$strip>>;
|
|
1275
|
-
aws: z.ZodOptional<z.ZodObject<{
|
|
1276
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1277
|
-
controllerRoleArn: z.ZodString;
|
|
1278
|
-
}, z.core.$strip>>;
|
|
1279
|
-
id: z.ZodString;
|
|
3235
|
+
export declare const zGetChartResponse: z.ZodObject<{
|
|
3236
|
+
values: z.ZodString;
|
|
3237
|
+
version_channel: z.ZodString;
|
|
3238
|
+
name: z.ZodString;
|
|
3239
|
+
namespace: z.ZodString;
|
|
3240
|
+
chart: z.ZodString;
|
|
3241
|
+
status: z.ZodString;
|
|
3242
|
+
version_current: z.ZodString;
|
|
3243
|
+
created_at: z.ZodString;
|
|
3244
|
+
updated_at: z.ZodString;
|
|
3245
|
+
ready: z.ZodBoolean;
|
|
1280
3246
|
}, z.core.$strip>;
|
|
1281
|
-
export declare const
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
}, z.core.$strip>>;
|
|
1285
|
-
gcp: z.ZodOptional<z.ZodObject<{
|
|
1286
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1287
|
-
project: z.ZodString;
|
|
1288
|
-
}, z.core.$strip>>;
|
|
1289
|
-
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1290
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1291
|
-
apiKey: z.ZodString;
|
|
1292
|
-
}, z.core.$strip>>;
|
|
1293
|
-
aws: z.ZodOptional<z.ZodObject<{
|
|
1294
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1295
|
-
controllerRoleArn: z.ZodString;
|
|
1296
|
-
}, z.core.$strip>>;
|
|
3247
|
+
export declare const zUpdateChartBody: z.ZodObject<{
|
|
3248
|
+
values: z.ZodString;
|
|
3249
|
+
version_channel: z.ZodString;
|
|
1297
3250
|
}, z.core.$strip>;
|
|
1298
|
-
export declare const
|
|
3251
|
+
export declare const zUpdateChartPath: z.ZodObject<{
|
|
1299
3252
|
cluster_id: z.ZodString;
|
|
1300
|
-
|
|
3253
|
+
chart_name: z.ZodString;
|
|
1301
3254
|
}, z.core.$strip>;
|
|
1302
3255
|
/**
|
|
1303
3256
|
* Successfully updated.
|
|
1304
3257
|
*/
|
|
1305
|
-
export declare const
|
|
1306
|
-
export declare const zQueryClusterPath: z.ZodObject<{
|
|
1307
|
-
cluster_id: z.ZodString;
|
|
1308
|
-
}, z.core.$strip>;
|
|
3258
|
+
export declare const zUpdateChartResponse: z.ZodString;
|
|
1309
3259
|
/**
|
|
1310
3260
|
* An array of clusters
|
|
1311
3261
|
*/
|
|
1312
3262
|
export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
1313
3263
|
name: z.ZodString;
|
|
1314
|
-
tier: z.ZodEnum<{
|
|
3264
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
1315
3265
|
basic: "basic";
|
|
1316
3266
|
pro: "pro";
|
|
1317
|
-
}
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
}
|
|
3267
|
+
}>>;
|
|
3268
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
3269
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
3270
|
+
stable: "stable";
|
|
3271
|
+
rapid: "rapid";
|
|
3272
|
+
extended: "extended";
|
|
3273
|
+
}>>;
|
|
3274
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
3275
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
3276
|
+
none: "none";
|
|
3277
|
+
mps: "mps";
|
|
3278
|
+
time_slicing: "time_slicing";
|
|
3279
|
+
}>>;
|
|
3280
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
3281
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
3282
|
+
}, z.core.$strip>>;
|
|
3283
|
+
region: z.ZodString;
|
|
3284
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
3285
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
3286
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
3287
|
+
dual_stack: z.ZodBoolean;
|
|
3288
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3289
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3290
|
+
}, z.core.$strip>>;
|
|
1324
3291
|
id: z.ZodUUID;
|
|
1325
3292
|
status: z.ZodEnum<{
|
|
1326
|
-
deleted: "deleted";
|
|
1327
|
-
failed: "failed";
|
|
1328
|
-
active: "active";
|
|
1329
3293
|
disabled: "disabled";
|
|
1330
3294
|
creating: "creating";
|
|
1331
3295
|
deployed: "deployed";
|
|
@@ -1334,31 +3298,44 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1334
3298
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1335
3299
|
"": "";
|
|
1336
3300
|
}>]>>;
|
|
3301
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3302
|
+
"": "";
|
|
3303
|
+
}>]>>;
|
|
1337
3304
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
1338
3305
|
version_current: z.ZodOptional<z.ZodString>;
|
|
1339
3306
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1340
3307
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
1341
|
-
ready: z.
|
|
1342
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
3308
|
+
ready: z.ZodBoolean;
|
|
1343
3309
|
}, z.core.$strip>>;
|
|
1344
3310
|
export declare const zCreateClusterBody: z.ZodObject<{
|
|
1345
3311
|
name: z.ZodString;
|
|
1346
|
-
tier: z.ZodEnum<{
|
|
3312
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1347
3313
|
basic: "basic";
|
|
1348
3314
|
pro: "pro";
|
|
1349
|
-
}>;
|
|
1350
|
-
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1351
|
-
"staging-1a": "staging-1a";
|
|
1352
|
-
"northamerica-central-1": "northamerica-central-1";
|
|
1353
|
-
"europe-central-1a": "europe-central-1a";
|
|
1354
|
-
"northamerica-central-1a": "northamerica-central-1a";
|
|
1355
3315
|
}>>>;
|
|
1356
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
3316
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3317
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3318
|
+
stable: "stable";
|
|
3319
|
+
rapid: "rapid";
|
|
3320
|
+
extended: "extended";
|
|
1361
3321
|
}>>>;
|
|
3322
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3323
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3324
|
+
none: "none";
|
|
3325
|
+
mps: "mps";
|
|
3326
|
+
time_slicing: "time_slicing";
|
|
3327
|
+
}>>>;
|
|
3328
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
3329
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
3330
|
+
}, z.core.$strip>>>;
|
|
3331
|
+
region: z.ZodString;
|
|
3332
|
+
networking: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3333
|
+
pod_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3334
|
+
service_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3335
|
+
dual_stack: z.ZodOptional<z.ZodBoolean>;
|
|
3336
|
+
pod_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3337
|
+
service_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3338
|
+
}, z.core.$strip>>>;
|
|
1362
3339
|
}, z.core.$strip>;
|
|
1363
3340
|
/**
|
|
1364
3341
|
* Successfully created. Returns created Cluster ID.
|
|
@@ -1368,7 +3345,7 @@ export declare const zDeleteClusterPath: z.ZodObject<{
|
|
|
1368
3345
|
cluster_id: z.ZodString;
|
|
1369
3346
|
}, z.core.$strip>;
|
|
1370
3347
|
/**
|
|
1371
|
-
* Successfully deleted.
|
|
3348
|
+
* Successfully deleted. The cluster has been torn down.
|
|
1372
3349
|
*/
|
|
1373
3350
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
1374
3351
|
export declare const zGetClusterPath: z.ZodObject<{
|
|
@@ -1379,21 +3356,35 @@ export declare const zGetClusterPath: z.ZodObject<{
|
|
|
1379
3356
|
*/
|
|
1380
3357
|
export declare const zGetClusterResponse: z.ZodObject<{
|
|
1381
3358
|
name: z.ZodString;
|
|
1382
|
-
tier: z.ZodEnum<{
|
|
3359
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
1383
3360
|
basic: "basic";
|
|
1384
3361
|
pro: "pro";
|
|
1385
|
-
}
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
}
|
|
3362
|
+
}>>;
|
|
3363
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
3364
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
3365
|
+
stable: "stable";
|
|
3366
|
+
rapid: "rapid";
|
|
3367
|
+
extended: "extended";
|
|
3368
|
+
}>>;
|
|
3369
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
3370
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
3371
|
+
none: "none";
|
|
3372
|
+
mps: "mps";
|
|
3373
|
+
time_slicing: "time_slicing";
|
|
3374
|
+
}>>;
|
|
3375
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
3376
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
3377
|
+
}, z.core.$strip>>;
|
|
3378
|
+
region: z.ZodString;
|
|
3379
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
3380
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
3381
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
3382
|
+
dual_stack: z.ZodBoolean;
|
|
3383
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3384
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3385
|
+
}, z.core.$strip>>;
|
|
1392
3386
|
id: z.ZodUUID;
|
|
1393
3387
|
status: z.ZodEnum<{
|
|
1394
|
-
deleted: "deleted";
|
|
1395
|
-
failed: "failed";
|
|
1396
|
-
active: "active";
|
|
1397
3388
|
disabled: "disabled";
|
|
1398
3389
|
creating: "creating";
|
|
1399
3390
|
deployed: "deployed";
|
|
@@ -1402,20 +3393,36 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1402
3393
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1403
3394
|
"": "";
|
|
1404
3395
|
}>]>>;
|
|
3396
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3397
|
+
"": "";
|
|
3398
|
+
}>]>>;
|
|
1405
3399
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
1406
3400
|
version_current: z.ZodOptional<z.ZodString>;
|
|
1407
3401
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1408
3402
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
1409
|
-
ready: z.
|
|
1410
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
3403
|
+
ready: z.ZodBoolean;
|
|
1411
3404
|
}, z.core.$strip>;
|
|
1412
3405
|
export declare const zUpdateClusterBody: z.ZodObject<{
|
|
1413
|
-
name: z.
|
|
1414
|
-
tier: z.ZodEnum<{
|
|
3406
|
+
name: z.ZodString;
|
|
3407
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1415
3408
|
basic: "basic";
|
|
1416
3409
|
pro: "pro";
|
|
1417
|
-
}
|
|
1418
|
-
version_channel: z.ZodOptional<z.ZodString
|
|
3410
|
+
}>>>;
|
|
3411
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3412
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3413
|
+
stable: "stable";
|
|
3414
|
+
rapid: "rapid";
|
|
3415
|
+
extended: "extended";
|
|
3416
|
+
}>>>;
|
|
3417
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3418
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3419
|
+
none: "none";
|
|
3420
|
+
mps: "mps";
|
|
3421
|
+
time_slicing: "time_slicing";
|
|
3422
|
+
}>>>;
|
|
3423
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
3424
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
3425
|
+
}, z.core.$strip>>>;
|
|
1419
3426
|
}, z.core.$strip>;
|
|
1420
3427
|
export declare const zUpdateClusterPath: z.ZodObject<{
|
|
1421
3428
|
cluster_id: z.ZodString;
|
|
@@ -1425,21 +3432,35 @@ export declare const zUpdateClusterPath: z.ZodObject<{
|
|
|
1425
3432
|
*/
|
|
1426
3433
|
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
1427
3434
|
name: z.ZodString;
|
|
1428
|
-
tier: z.ZodEnum<{
|
|
3435
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
1429
3436
|
basic: "basic";
|
|
1430
3437
|
pro: "pro";
|
|
1431
|
-
}
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
}
|
|
3438
|
+
}>>;
|
|
3439
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
3440
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
3441
|
+
stable: "stable";
|
|
3442
|
+
rapid: "rapid";
|
|
3443
|
+
extended: "extended";
|
|
3444
|
+
}>>;
|
|
3445
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
3446
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
3447
|
+
none: "none";
|
|
3448
|
+
mps: "mps";
|
|
3449
|
+
time_slicing: "time_slicing";
|
|
3450
|
+
}>>;
|
|
3451
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
3452
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
3453
|
+
}, z.core.$strip>>;
|
|
3454
|
+
region: z.ZodString;
|
|
3455
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
3456
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
3457
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
3458
|
+
dual_stack: z.ZodBoolean;
|
|
3459
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3460
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3461
|
+
}, z.core.$strip>>;
|
|
1438
3462
|
id: z.ZodUUID;
|
|
1439
3463
|
status: z.ZodEnum<{
|
|
1440
|
-
deleted: "deleted";
|
|
1441
|
-
failed: "failed";
|
|
1442
|
-
active: "active";
|
|
1443
3464
|
disabled: "disabled";
|
|
1444
3465
|
creating: "creating";
|
|
1445
3466
|
deployed: "deployed";
|
|
@@ -1448,469 +3469,582 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1448
3469
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1449
3470
|
"": "";
|
|
1450
3471
|
}>]>>;
|
|
3472
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3473
|
+
"": "";
|
|
3474
|
+
}>]>>;
|
|
1451
3475
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
1452
3476
|
version_current: z.ZodOptional<z.ZodString>;
|
|
1453
3477
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1454
3478
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
1455
|
-
ready: z.
|
|
1456
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
1457
|
-
}, z.core.$strip>;
|
|
1458
|
-
export declare const zGetClusterCaPath: z.ZodObject<{
|
|
1459
|
-
cluster_id: z.ZodString;
|
|
1460
|
-
}, z.core.$strip>;
|
|
1461
|
-
/**
|
|
1462
|
-
* PEM-encoded certificate authority of the cluster.
|
|
1463
|
-
*/
|
|
1464
|
-
export declare const zGetClusterCaResponse: z.ZodString;
|
|
1465
|
-
export declare const zGetJoinInformationPath: z.ZodObject<{
|
|
1466
|
-
cluster_id: z.ZodString;
|
|
1467
|
-
}, z.core.$strip>;
|
|
1468
|
-
/**
|
|
1469
|
-
* An object of cluster join information
|
|
1470
|
-
*/
|
|
1471
|
-
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
1472
|
-
certificate_authority: z.ZodString;
|
|
1473
|
-
endpoint: z.ZodURL;
|
|
1474
|
-
cluster_dns: z.ZodString;
|
|
1475
|
-
auth_key: z.ZodString;
|
|
1476
|
-
bootstrap_token: z.ZodString;
|
|
1477
|
-
versions: z.ZodObject<{
|
|
1478
|
-
kubernetes: z.ZodString;
|
|
1479
|
-
tailscale: z.ZodString;
|
|
1480
|
-
containerd: z.ZodString;
|
|
1481
|
-
nvidia_driver: z.ZodString;
|
|
1482
|
-
}, z.core.$strip>;
|
|
1483
|
-
third_party_api_access_config: z.ZodObject<{
|
|
1484
|
-
metadata_url: z.ZodString;
|
|
1485
|
-
aws_role_arn: z.ZodString;
|
|
1486
|
-
gcp_workload_identity_provider: z.ZodString;
|
|
1487
|
-
}, z.core.$strip>;
|
|
1488
|
-
}, z.core.$strip>;
|
|
1489
|
-
/**
|
|
1490
|
-
* An array of invites
|
|
1491
|
-
*/
|
|
1492
|
-
export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
1493
|
-
id: z.ZodOptional<z.ZodString>;
|
|
1494
|
-
organization_id: z.ZodOptional<z.ZodUUID>;
|
|
1495
|
-
date_created: z.ZodISODateTime;
|
|
1496
|
-
email: z.ZodOptional<z.ZodEmail>;
|
|
1497
|
-
code: z.ZodOptional<z.ZodString>;
|
|
1498
|
-
}, z.core.$strip>>;
|
|
1499
|
-
export declare const zCreateInviteBody: z.ZodObject<{
|
|
1500
|
-
email: z.ZodOptional<z.ZodString>;
|
|
1501
|
-
}, z.core.$strip>;
|
|
1502
|
-
/**
|
|
1503
|
-
* Successfully created. Returns created invite details.
|
|
1504
|
-
*/
|
|
1505
|
-
export declare const zCreateInviteResponse: z.ZodObject<{
|
|
1506
|
-
id: z.ZodOptional<z.ZodString>;
|
|
1507
|
-
organization_id: z.ZodOptional<z.ZodUUID>;
|
|
1508
|
-
date_created: z.ZodISODateTime;
|
|
1509
|
-
email: z.ZodOptional<z.ZodEmail>;
|
|
1510
|
-
code: z.ZodOptional<z.ZodString>;
|
|
1511
|
-
}, z.core.$strip>;
|
|
1512
|
-
export declare const zGetInvitePath: z.ZodObject<{
|
|
1513
|
-
code: z.ZodString;
|
|
1514
|
-
}, z.core.$strip>;
|
|
1515
|
-
/**
|
|
1516
|
-
* Returns a single object containing invite details.
|
|
1517
|
-
*/
|
|
1518
|
-
export declare const zGetInviteResponse: z.ZodObject<{
|
|
1519
|
-
id: z.ZodOptional<z.ZodString>;
|
|
1520
|
-
organization_id: z.ZodOptional<z.ZodUUID>;
|
|
1521
|
-
date_created: z.ZodISODateTime;
|
|
1522
|
-
email: z.ZodOptional<z.ZodEmail>;
|
|
1523
|
-
code: z.ZodOptional<z.ZodString>;
|
|
1524
|
-
}, z.core.$strip>;
|
|
1525
|
-
export declare const zDeleteInvitePath: z.ZodObject<{
|
|
1526
|
-
email: z.ZodString;
|
|
1527
|
-
}, z.core.$strip>;
|
|
1528
|
-
/**
|
|
1529
|
-
* An array of chart listings in the marketplace.
|
|
1530
|
-
*/
|
|
1531
|
-
export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
|
|
1532
|
-
name: z.ZodString;
|
|
1533
|
-
versions: z.ZodArray<z.ZodString>;
|
|
1534
|
-
version_channels: z.ZodArray<z.ZodString>;
|
|
1535
|
-
latestVersion: z.ZodString;
|
|
1536
|
-
metadata: z.ZodOptional<z.ZodObject<{
|
|
1537
|
-
name: z.ZodString;
|
|
1538
|
-
version: z.ZodString;
|
|
1539
|
-
description: z.ZodOptional<z.ZodString>;
|
|
1540
|
-
appVersion: z.ZodOptional<z.ZodString>;
|
|
1541
|
-
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1542
|
-
keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1543
|
-
home: z.ZodOptional<z.ZodString>;
|
|
1544
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
1545
|
-
sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1546
|
-
maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1547
|
-
name: z.ZodString;
|
|
1548
|
-
email: z.ZodOptional<z.ZodString>;
|
|
1549
|
-
}, z.core.$strip>>>;
|
|
1550
|
-
}, z.core.$strip>>;
|
|
1551
|
-
}, z.core.$strip>>;
|
|
1552
|
-
export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
|
|
1553
|
-
chart_name: z.ZodString;
|
|
1554
|
-
version_channel: z.ZodString;
|
|
1555
|
-
}, z.core.$strip>;
|
|
1556
|
-
/**
|
|
1557
|
-
* Returns an object containing the chart files for the latest matching version.
|
|
1558
|
-
*/
|
|
1559
|
-
export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
|
|
1560
|
-
chartYaml: z.ZodOptional<z.ZodString>;
|
|
1561
|
-
valuesYaml: z.ZodOptional<z.ZodString>;
|
|
1562
|
-
valuesSchemaJson: z.ZodOptional<z.ZodString>;
|
|
1563
|
-
}, z.core.$strip>;
|
|
1564
|
-
/**
|
|
1565
|
-
* JSON-RPC 2.0 request payload
|
|
1566
|
-
*/
|
|
1567
|
-
export declare const zPostMcpBody: z.ZodObject<{
|
|
1568
|
-
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
1569
|
-
method: z.ZodOptional<z.ZodString>;
|
|
1570
|
-
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
1571
|
-
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1572
|
-
}, z.core.$strip>;
|
|
1573
|
-
/**
|
|
1574
|
-
* JSON-RPC 2.0 success or error response
|
|
1575
|
-
*/
|
|
1576
|
-
export declare const zPostMcpResponse: z.ZodObject<{
|
|
1577
|
-
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
1578
|
-
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
1579
|
-
result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1580
|
-
error: z.ZodOptional<z.ZodObject<{
|
|
1581
|
-
code: z.ZodOptional<z.ZodInt>;
|
|
1582
|
-
message: z.ZodOptional<z.ZodString>;
|
|
1583
|
-
}, z.core.$strip>>;
|
|
1584
|
-
}, z.core.$strip>;
|
|
1585
|
-
/**
|
|
1586
|
-
* Returns a single object containing organization details.
|
|
1587
|
-
*/
|
|
1588
|
-
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
1589
|
-
id: z.ZodUUID;
|
|
1590
|
-
name: z.ZodOptional<z.ZodString>;
|
|
1591
|
-
date_created: z.ZodISODateTime;
|
|
1592
|
-
quota: z.ZodObject<{
|
|
1593
|
-
basic_clusters_max: z.ZodInt;
|
|
1594
|
-
basic_clusters_available: z.ZodInt;
|
|
1595
|
-
pro_clusters_max: z.ZodInt;
|
|
1596
|
-
pro_clusters_available: z.ZodInt;
|
|
1597
|
-
fleets_max: z.ZodInt;
|
|
1598
|
-
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
1599
|
-
regions: z.ZodArray<z.ZodString>;
|
|
1600
|
-
versions: z.ZodArray<z.ZodObject<{
|
|
1601
|
-
id: z.ZodString;
|
|
1602
|
-
label: z.ZodString;
|
|
1603
|
-
}, z.core.$strip>>;
|
|
1604
|
-
cfcr_storage_gb: z.ZodInt;
|
|
1605
|
-
}, z.core.$strip>;
|
|
1606
|
-
status: z.ZodEnum<{
|
|
1607
|
-
active: "active";
|
|
1608
|
-
closed: "closed";
|
|
1609
|
-
suspended: "suspended";
|
|
1610
|
-
}>;
|
|
1611
|
-
}, z.core.$strip>;
|
|
1612
|
-
export declare const zCreateOrganizationBody: z.ZodObject<{
|
|
1613
|
-
email: z.ZodEmail;
|
|
1614
|
-
first_name: z.ZodString;
|
|
1615
|
-
last_name: z.ZodString;
|
|
1616
|
-
company_name: z.ZodString;
|
|
1617
|
-
password: z.ZodString;
|
|
3479
|
+
ready: z.ZodBoolean;
|
|
1618
3480
|
}, z.core.$strip>;
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
*/
|
|
1622
|
-
export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
|
|
1623
|
-
name: z.ZodString;
|
|
1624
|
-
region: z.ZodString;
|
|
1625
|
-
uri: z.ZodString;
|
|
1626
|
-
}, z.core.$strip>>;
|
|
1627
|
-
export declare const zListTagsPath: z.ZodObject<{
|
|
1628
|
-
region: z.ZodString;
|
|
1629
|
-
repository: z.ZodString;
|
|
3481
|
+
export declare const zGetJoinInformationPath: z.ZodObject<{
|
|
3482
|
+
cluster_id: z.ZodString;
|
|
1630
3483
|
}, z.core.$strip>;
|
|
1631
3484
|
/**
|
|
1632
|
-
*
|
|
3485
|
+
* An object of cluster join information
|
|
1633
3486
|
*/
|
|
1634
|
-
export declare const
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
3487
|
+
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
3488
|
+
certificate_authority: z.ZodString;
|
|
3489
|
+
endpoint: z.ZodURL;
|
|
3490
|
+
cluster_dns: z.ZodString;
|
|
3491
|
+
pod_cidr: z.ZodString;
|
|
3492
|
+
auth_key: z.ZodString;
|
|
3493
|
+
bootstrap_token: z.ZodString;
|
|
3494
|
+
versions: z.ZodObject<{
|
|
3495
|
+
kubernetes: z.ZodString;
|
|
3496
|
+
tailscale: z.ZodString;
|
|
3497
|
+
containerd: z.ZodString;
|
|
3498
|
+
nvidia_driver: z.ZodString;
|
|
3499
|
+
}, z.core.$strip>;
|
|
3500
|
+
third_party_api_access_config: z.ZodObject<{
|
|
3501
|
+
metadata_url: z.ZodString;
|
|
3502
|
+
aws_role_arn: z.ZodString;
|
|
3503
|
+
gcp_workload_identity_provider: z.ZodString;
|
|
3504
|
+
}, z.core.$strip>;
|
|
1650
3505
|
}, z.core.$strip>;
|
|
1651
|
-
export declare const
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
3506
|
+
export declare const zGetUsageQuery: z.ZodObject<{
|
|
3507
|
+
granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3508
|
+
hourly: "hourly";
|
|
3509
|
+
daily: "daily";
|
|
3510
|
+
monthly: "monthly";
|
|
3511
|
+
}>>>;
|
|
1655
3512
|
}, z.core.$strip>;
|
|
1656
3513
|
/**
|
|
1657
|
-
*
|
|
3514
|
+
* Usage data with facets for filtering
|
|
1658
3515
|
*/
|
|
1659
|
-
export declare const
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
3516
|
+
export declare const zGetUsageResponse: z.ZodObject<{
|
|
3517
|
+
data: z.ZodArray<z.ZodObject<{
|
|
3518
|
+
hour: z.ZodString;
|
|
3519
|
+
cluster_id: z.ZodString;
|
|
3520
|
+
product: z.ZodString;
|
|
3521
|
+
value: z.ZodNumber;
|
|
3522
|
+
price: z.ZodNumber;
|
|
3523
|
+
total: z.ZodNumber;
|
|
1665
3524
|
}, z.core.$strip>>;
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
}, z.core.$strip
|
|
1670
|
-
manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1671
|
-
digest: z.ZodString;
|
|
1672
|
-
platform: z.ZodOptional<z.ZodObject<{
|
|
1673
|
-
architecture: z.ZodString;
|
|
1674
|
-
os: z.ZodString;
|
|
1675
|
-
variant: z.ZodOptional<z.ZodString>;
|
|
1676
|
-
}, z.core.$strip>>;
|
|
1677
|
-
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1678
|
-
digest: z.ZodOptional<z.ZodString>;
|
|
1679
|
-
size: z.ZodNumber;
|
|
1680
|
-
}, z.core.$strip>>>;
|
|
1681
|
-
size: z.ZodOptional<z.ZodNumber>;
|
|
1682
|
-
}, z.core.$strip>>>;
|
|
1683
|
-
size: z.ZodNumber;
|
|
1684
|
-
region: z.ZodString;
|
|
1685
|
-
repository: z.ZodString;
|
|
1686
|
-
uri: z.ZodString;
|
|
3525
|
+
facets: z.ZodObject<{
|
|
3526
|
+
cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3527
|
+
product: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3528
|
+
}, z.core.$strip>;
|
|
1687
3529
|
}, z.core.$strip>;
|
|
1688
3530
|
/**
|
|
1689
|
-
*
|
|
3531
|
+
* The client secret. Used for client-side retrieval using a publishable key. The client secret can be used to complete a payment from your frontend. It should not be stored, logged, or exposed to anyone other than the customer. Make sure that you have TLS enabled on any page that includes the client secret.
|
|
3532
|
+
*
|
|
1690
3533
|
*/
|
|
1691
|
-
export declare const
|
|
1692
|
-
name: z.ZodString;
|
|
1693
|
-
role: z.ZodEnum<{
|
|
1694
|
-
Administrator: "Administrator";
|
|
1695
|
-
User: "User";
|
|
1696
|
-
}>;
|
|
3534
|
+
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
1697
3535
|
id: z.ZodOptional<z.ZodString>;
|
|
1698
|
-
secret: z.ZodOptional<z.ZodString>;
|
|
1699
|
-
date_created: z.ZodISODateTime;
|
|
1700
|
-
}, z.core.$strip>>;
|
|
1701
|
-
export declare const zCreateTokenBody: z.ZodObject<{
|
|
1702
|
-
name: z.ZodString;
|
|
1703
|
-
role: z.ZodEnum<{
|
|
1704
|
-
Administrator: "Administrator";
|
|
1705
|
-
User: "User";
|
|
1706
|
-
}>;
|
|
1707
3536
|
}, z.core.$strip>;
|
|
1708
3537
|
/**
|
|
1709
|
-
*
|
|
3538
|
+
* An array of payment methods.
|
|
1710
3539
|
*/
|
|
1711
|
-
export declare const
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
3540
|
+
export declare const zListPaymentMethodsResponse: z.ZodArray<z.ZodObject<{
|
|
3541
|
+
id: z.ZodString;
|
|
3542
|
+
type: z.ZodEnum<{
|
|
3543
|
+
card: "card";
|
|
3544
|
+
sepa_debit: "sepa_debit";
|
|
3545
|
+
bank_transfer: "bank_transfer";
|
|
1716
3546
|
}>;
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
3547
|
+
last4: z.ZodString;
|
|
3548
|
+
exp_month: z.ZodInt;
|
|
3549
|
+
exp_year: z.ZodInt;
|
|
3550
|
+
brand: z.ZodString;
|
|
3551
|
+
iban: z.ZodString;
|
|
3552
|
+
bic: z.ZodString;
|
|
3553
|
+
account_holder_name: z.ZodString;
|
|
3554
|
+
is_default: z.ZodBoolean;
|
|
3555
|
+
}, z.core.$strip>>;
|
|
3556
|
+
export declare const zSetDefaultPaymentMethodPath: z.ZodObject<{
|
|
3557
|
+
paymentMethodId: z.ZodString;
|
|
1723
3558
|
}, z.core.$strip>;
|
|
1724
|
-
|
|
1725
|
-
|
|
3559
|
+
/**
|
|
3560
|
+
* Default payment method updated.
|
|
3561
|
+
*/
|
|
3562
|
+
export declare const zSetDefaultPaymentMethodResponse: z.ZodVoid;
|
|
3563
|
+
export declare const zDeletePaymentMethodPath: z.ZodObject<{
|
|
3564
|
+
paymentMethodId: z.ZodString;
|
|
1726
3565
|
}, z.core.$strip>;
|
|
1727
3566
|
/**
|
|
1728
|
-
*
|
|
3567
|
+
* Payment method deleted.
|
|
1729
3568
|
*/
|
|
1730
|
-
export declare const
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
}>;
|
|
3569
|
+
export declare const zDeletePaymentMethodResponse: z.ZodVoid;
|
|
3570
|
+
/**
|
|
3571
|
+
* An array of usage records.
|
|
3572
|
+
*/
|
|
3573
|
+
export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
1736
3574
|
id: z.ZodOptional<z.ZodString>;
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
3575
|
+
number: z.ZodOptional<z.ZodString>;
|
|
3576
|
+
status: z.ZodOptional<z.ZodString>;
|
|
3577
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
3578
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
3579
|
+
created: z.ZodISODateTime;
|
|
3580
|
+
period_start: z.ZodISODateTime;
|
|
3581
|
+
period_end: z.ZodISODateTime;
|
|
3582
|
+
invoice_pdf: z.ZodOptional<z.ZodString>;
|
|
3583
|
+
}, z.core.$strip>>;
|
|
3584
|
+
/**
|
|
3585
|
+
* Returns a single object containing organization contact and billing address details.
|
|
3586
|
+
*/
|
|
3587
|
+
export declare const zGetContactResponse: z.ZodObject<{
|
|
3588
|
+
type: z.ZodEnum<{
|
|
3589
|
+
business: "business";
|
|
3590
|
+
personal: "personal";
|
|
3591
|
+
}>;
|
|
3592
|
+
company: z.ZodOptional<z.ZodString>;
|
|
3593
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
3594
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
3595
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
3596
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3597
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3598
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3599
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
3600
|
+
email: z.ZodEmail;
|
|
3601
|
+
individual_name: z.ZodString;
|
|
3602
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
3603
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
3604
|
+
"": "";
|
|
3605
|
+
ad_nrt: "ad_nrt";
|
|
3606
|
+
ae_trn: "ae_trn";
|
|
3607
|
+
al_tin: "al_tin";
|
|
3608
|
+
am_tin: "am_tin";
|
|
3609
|
+
ao_tin: "ao_tin";
|
|
3610
|
+
ar_cuit: "ar_cuit";
|
|
3611
|
+
at_vat: "at_vat";
|
|
3612
|
+
au_abn: "au_abn";
|
|
3613
|
+
au_arn: "au_arn";
|
|
3614
|
+
ba_tin: "ba_tin";
|
|
3615
|
+
bb_tin: "bb_tin";
|
|
3616
|
+
be_vat: "be_vat";
|
|
3617
|
+
bg_uic: "bg_uic";
|
|
3618
|
+
bg_vat: "bg_vat";
|
|
3619
|
+
bh_vat: "bh_vat";
|
|
3620
|
+
bo_tin: "bo_tin";
|
|
3621
|
+
br_cnpj: "br_cnpj";
|
|
3622
|
+
br_cpf: "br_cpf";
|
|
3623
|
+
bs_tin: "bs_tin";
|
|
3624
|
+
by_tin: "by_tin";
|
|
3625
|
+
ca_bn: "ca_bn";
|
|
3626
|
+
ca_gst_hst: "ca_gst_hst";
|
|
3627
|
+
ca_pst_bc: "ca_pst_bc";
|
|
3628
|
+
ca_pst_mb: "ca_pst_mb";
|
|
3629
|
+
ca_pst_sk: "ca_pst_sk";
|
|
3630
|
+
ca_qst: "ca_qst";
|
|
3631
|
+
cd_nif: "cd_nif";
|
|
3632
|
+
ch_uid: "ch_uid";
|
|
3633
|
+
ch_vat: "ch_vat";
|
|
3634
|
+
cl_tin: "cl_tin";
|
|
3635
|
+
cn_tin: "cn_tin";
|
|
3636
|
+
co_nit: "co_nit";
|
|
3637
|
+
cr_tin: "cr_tin";
|
|
3638
|
+
cy_vat: "cy_vat";
|
|
3639
|
+
cz_vat: "cz_vat";
|
|
3640
|
+
de_stn: "de_stn";
|
|
3641
|
+
de_vat: "de_vat";
|
|
3642
|
+
dk_vat: "dk_vat";
|
|
3643
|
+
do_rcn: "do_rcn";
|
|
3644
|
+
ec_ruc: "ec_ruc";
|
|
3645
|
+
ee_vat: "ee_vat";
|
|
3646
|
+
eg_tin: "eg_tin";
|
|
3647
|
+
es_cif: "es_cif";
|
|
3648
|
+
es_vat: "es_vat";
|
|
3649
|
+
eu_oss_vat: "eu_oss_vat";
|
|
3650
|
+
fi_vat: "fi_vat";
|
|
3651
|
+
fr_vat: "fr_vat";
|
|
3652
|
+
gb_vat: "gb_vat";
|
|
3653
|
+
ge_vat: "ge_vat";
|
|
3654
|
+
gn_nif: "gn_nif";
|
|
3655
|
+
gr_vat: "gr_vat";
|
|
3656
|
+
hk_br: "hk_br";
|
|
3657
|
+
hr_oib: "hr_oib";
|
|
3658
|
+
hr_vat: "hr_vat";
|
|
3659
|
+
hu_tin: "hu_tin";
|
|
3660
|
+
hu_vat: "hu_vat";
|
|
3661
|
+
id_npwp: "id_npwp";
|
|
3662
|
+
ie_vat: "ie_vat";
|
|
3663
|
+
il_vat: "il_vat";
|
|
3664
|
+
in_gst: "in_gst";
|
|
3665
|
+
is_vat: "is_vat";
|
|
3666
|
+
it_vat: "it_vat";
|
|
3667
|
+
jp_cn: "jp_cn";
|
|
3668
|
+
jp_rn: "jp_rn";
|
|
3669
|
+
jp_trn: "jp_trn";
|
|
3670
|
+
ke_pin: "ke_pin";
|
|
3671
|
+
kh_tin: "kh_tin";
|
|
3672
|
+
kr_brn: "kr_brn";
|
|
3673
|
+
kz_bin: "kz_bin";
|
|
3674
|
+
li_uid: "li_uid";
|
|
3675
|
+
li_vat: "li_vat";
|
|
3676
|
+
lt_vat: "lt_vat";
|
|
3677
|
+
lu_vat: "lu_vat";
|
|
3678
|
+
lv_vat: "lv_vat";
|
|
3679
|
+
ma_vat: "ma_vat";
|
|
3680
|
+
md_vat: "md_vat";
|
|
3681
|
+
me_pib: "me_pib";
|
|
3682
|
+
mk_vat: "mk_vat";
|
|
3683
|
+
mr_nif: "mr_nif";
|
|
3684
|
+
mt_vat: "mt_vat";
|
|
3685
|
+
mx_rfc: "mx_rfc";
|
|
3686
|
+
my_frp: "my_frp";
|
|
3687
|
+
my_itn: "my_itn";
|
|
3688
|
+
my_sst: "my_sst";
|
|
3689
|
+
ng_tin: "ng_tin";
|
|
3690
|
+
nl_vat: "nl_vat";
|
|
3691
|
+
no_vat: "no_vat";
|
|
3692
|
+
no_voec: "no_voec";
|
|
3693
|
+
np_pan: "np_pan";
|
|
3694
|
+
nz_gst: "nz_gst";
|
|
3695
|
+
om_vat: "om_vat";
|
|
3696
|
+
pe_ruc: "pe_ruc";
|
|
3697
|
+
ph_tin: "ph_tin";
|
|
3698
|
+
pl_vat: "pl_vat";
|
|
3699
|
+
pt_vat: "pt_vat";
|
|
3700
|
+
ro_tin: "ro_tin";
|
|
3701
|
+
ro_vat: "ro_vat";
|
|
3702
|
+
rs_pib: "rs_pib";
|
|
3703
|
+
ru_inn: "ru_inn";
|
|
3704
|
+
ru_kpp: "ru_kpp";
|
|
3705
|
+
sa_vat: "sa_vat";
|
|
3706
|
+
se_vat: "se_vat";
|
|
3707
|
+
sg_gst: "sg_gst";
|
|
3708
|
+
sg_uen: "sg_uen";
|
|
3709
|
+
si_tin: "si_tin";
|
|
3710
|
+
si_vat: "si_vat";
|
|
3711
|
+
sk_vat: "sk_vat";
|
|
3712
|
+
sn_ninea: "sn_ninea";
|
|
3713
|
+
sr_fin: "sr_fin";
|
|
3714
|
+
sv_nit: "sv_nit";
|
|
3715
|
+
th_vat: "th_vat";
|
|
3716
|
+
tj_tin: "tj_tin";
|
|
3717
|
+
tr_tin: "tr_tin";
|
|
3718
|
+
tw_vat: "tw_vat";
|
|
3719
|
+
tz_vat: "tz_vat";
|
|
3720
|
+
ua_vat: "ua_vat";
|
|
3721
|
+
ug_tin: "ug_tin";
|
|
3722
|
+
us_ein: "us_ein";
|
|
3723
|
+
uy_ruc: "uy_ruc";
|
|
3724
|
+
uz_tin: "uz_tin";
|
|
3725
|
+
uz_vat: "uz_vat";
|
|
3726
|
+
ve_rif: "ve_rif";
|
|
3727
|
+
vn_tin: "vn_tin";
|
|
3728
|
+
xi_vat: "xi_vat";
|
|
3729
|
+
za_vat: "za_vat";
|
|
3730
|
+
zm_tin: "zm_tin";
|
|
3731
|
+
zw_tin: "zw_tin";
|
|
1745
3732
|
}>>;
|
|
1746
3733
|
}, z.core.$strip>;
|
|
1747
|
-
export declare const
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
* Successfully updated. Returns updated token details with masked secret.
|
|
1752
|
-
*/
|
|
1753
|
-
export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
1754
|
-
name: z.ZodString;
|
|
1755
|
-
role: z.ZodEnum<{
|
|
1756
|
-
Administrator: "Administrator";
|
|
1757
|
-
User: "User";
|
|
1758
|
-
}>;
|
|
1759
|
-
id: z.ZodOptional<z.ZodString>;
|
|
1760
|
-
secret: z.ZodOptional<z.ZodString>;
|
|
1761
|
-
date_created: z.ZodISODateTime;
|
|
1762
|
-
}, z.core.$strip>;
|
|
1763
|
-
export declare const zRegenerateTokenPath: z.ZodObject<{
|
|
1764
|
-
token_id: z.ZodString;
|
|
1765
|
-
}, z.core.$strip>;
|
|
1766
|
-
/**
|
|
1767
|
-
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
1768
|
-
*/
|
|
1769
|
-
export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
1770
|
-
name: z.ZodString;
|
|
1771
|
-
role: z.ZodEnum<{
|
|
1772
|
-
Administrator: "Administrator";
|
|
1773
|
-
User: "User";
|
|
1774
|
-
}>;
|
|
1775
|
-
id: z.ZodOptional<z.ZodString>;
|
|
1776
|
-
secret: z.ZodOptional<z.ZodString>;
|
|
1777
|
-
date_created: z.ZodISODateTime;
|
|
1778
|
-
}, z.core.$strip>;
|
|
1779
|
-
export declare const zListUserOrganizationsPath: z.ZodObject<{
|
|
1780
|
-
email: z.ZodString;
|
|
1781
|
-
}, z.core.$strip>;
|
|
1782
|
-
/**
|
|
1783
|
-
* An array of organizations the user belongs to.
|
|
1784
|
-
*/
|
|
1785
|
-
export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
1786
|
-
realm: z.ZodOptional<z.ZodString>;
|
|
1787
|
-
displayName: z.ZodOptional<z.ZodString>;
|
|
1788
|
-
}, z.core.$strip>>;
|
|
1789
|
-
/**
|
|
1790
|
-
* An array of users
|
|
1791
|
-
*/
|
|
1792
|
-
export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
1793
|
-
email: z.ZodEmail;
|
|
1794
|
-
first_name: z.ZodString;
|
|
1795
|
-
last_name: z.ZodString;
|
|
1796
|
-
role: z.ZodEnum<{
|
|
1797
|
-
Administrator: "Administrator";
|
|
1798
|
-
User: "User";
|
|
1799
|
-
}>;
|
|
1800
|
-
status: z.ZodEnum<{
|
|
1801
|
-
active: "active";
|
|
1802
|
-
inactive: "inactive";
|
|
3734
|
+
export declare const zUpdateContactBody: z.ZodObject<{
|
|
3735
|
+
type: z.ZodEnum<{
|
|
3736
|
+
business: "business";
|
|
3737
|
+
personal: "personal";
|
|
1803
3738
|
}>;
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
3739
|
+
company: z.ZodOptional<z.ZodString>;
|
|
3740
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
3741
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
3742
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
3743
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3744
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3745
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3746
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1808
3747
|
email: z.ZodEmail;
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
3748
|
+
individual_name: z.ZodString;
|
|
3749
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
3750
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
3751
|
+
"": "";
|
|
3752
|
+
ad_nrt: "ad_nrt";
|
|
3753
|
+
ae_trn: "ae_trn";
|
|
3754
|
+
al_tin: "al_tin";
|
|
3755
|
+
am_tin: "am_tin";
|
|
3756
|
+
ao_tin: "ao_tin";
|
|
3757
|
+
ar_cuit: "ar_cuit";
|
|
3758
|
+
at_vat: "at_vat";
|
|
3759
|
+
au_abn: "au_abn";
|
|
3760
|
+
au_arn: "au_arn";
|
|
3761
|
+
ba_tin: "ba_tin";
|
|
3762
|
+
bb_tin: "bb_tin";
|
|
3763
|
+
be_vat: "be_vat";
|
|
3764
|
+
bg_uic: "bg_uic";
|
|
3765
|
+
bg_vat: "bg_vat";
|
|
3766
|
+
bh_vat: "bh_vat";
|
|
3767
|
+
bo_tin: "bo_tin";
|
|
3768
|
+
br_cnpj: "br_cnpj";
|
|
3769
|
+
br_cpf: "br_cpf";
|
|
3770
|
+
bs_tin: "bs_tin";
|
|
3771
|
+
by_tin: "by_tin";
|
|
3772
|
+
ca_bn: "ca_bn";
|
|
3773
|
+
ca_gst_hst: "ca_gst_hst";
|
|
3774
|
+
ca_pst_bc: "ca_pst_bc";
|
|
3775
|
+
ca_pst_mb: "ca_pst_mb";
|
|
3776
|
+
ca_pst_sk: "ca_pst_sk";
|
|
3777
|
+
ca_qst: "ca_qst";
|
|
3778
|
+
cd_nif: "cd_nif";
|
|
3779
|
+
ch_uid: "ch_uid";
|
|
3780
|
+
ch_vat: "ch_vat";
|
|
3781
|
+
cl_tin: "cl_tin";
|
|
3782
|
+
cn_tin: "cn_tin";
|
|
3783
|
+
co_nit: "co_nit";
|
|
3784
|
+
cr_tin: "cr_tin";
|
|
3785
|
+
cy_vat: "cy_vat";
|
|
3786
|
+
cz_vat: "cz_vat";
|
|
3787
|
+
de_stn: "de_stn";
|
|
3788
|
+
de_vat: "de_vat";
|
|
3789
|
+
dk_vat: "dk_vat";
|
|
3790
|
+
do_rcn: "do_rcn";
|
|
3791
|
+
ec_ruc: "ec_ruc";
|
|
3792
|
+
ee_vat: "ee_vat";
|
|
3793
|
+
eg_tin: "eg_tin";
|
|
3794
|
+
es_cif: "es_cif";
|
|
3795
|
+
es_vat: "es_vat";
|
|
3796
|
+
eu_oss_vat: "eu_oss_vat";
|
|
3797
|
+
fi_vat: "fi_vat";
|
|
3798
|
+
fr_vat: "fr_vat";
|
|
3799
|
+
gb_vat: "gb_vat";
|
|
3800
|
+
ge_vat: "ge_vat";
|
|
3801
|
+
gn_nif: "gn_nif";
|
|
3802
|
+
gr_vat: "gr_vat";
|
|
3803
|
+
hk_br: "hk_br";
|
|
3804
|
+
hr_oib: "hr_oib";
|
|
3805
|
+
hr_vat: "hr_vat";
|
|
3806
|
+
hu_tin: "hu_tin";
|
|
3807
|
+
hu_vat: "hu_vat";
|
|
3808
|
+
id_npwp: "id_npwp";
|
|
3809
|
+
ie_vat: "ie_vat";
|
|
3810
|
+
il_vat: "il_vat";
|
|
3811
|
+
in_gst: "in_gst";
|
|
3812
|
+
is_vat: "is_vat";
|
|
3813
|
+
it_vat: "it_vat";
|
|
3814
|
+
jp_cn: "jp_cn";
|
|
3815
|
+
jp_rn: "jp_rn";
|
|
3816
|
+
jp_trn: "jp_trn";
|
|
3817
|
+
ke_pin: "ke_pin";
|
|
3818
|
+
kh_tin: "kh_tin";
|
|
3819
|
+
kr_brn: "kr_brn";
|
|
3820
|
+
kz_bin: "kz_bin";
|
|
3821
|
+
li_uid: "li_uid";
|
|
3822
|
+
li_vat: "li_vat";
|
|
3823
|
+
lt_vat: "lt_vat";
|
|
3824
|
+
lu_vat: "lu_vat";
|
|
3825
|
+
lv_vat: "lv_vat";
|
|
3826
|
+
ma_vat: "ma_vat";
|
|
3827
|
+
md_vat: "md_vat";
|
|
3828
|
+
me_pib: "me_pib";
|
|
3829
|
+
mk_vat: "mk_vat";
|
|
3830
|
+
mr_nif: "mr_nif";
|
|
3831
|
+
mt_vat: "mt_vat";
|
|
3832
|
+
mx_rfc: "mx_rfc";
|
|
3833
|
+
my_frp: "my_frp";
|
|
3834
|
+
my_itn: "my_itn";
|
|
3835
|
+
my_sst: "my_sst";
|
|
3836
|
+
ng_tin: "ng_tin";
|
|
3837
|
+
nl_vat: "nl_vat";
|
|
3838
|
+
no_vat: "no_vat";
|
|
3839
|
+
no_voec: "no_voec";
|
|
3840
|
+
np_pan: "np_pan";
|
|
3841
|
+
nz_gst: "nz_gst";
|
|
3842
|
+
om_vat: "om_vat";
|
|
3843
|
+
pe_ruc: "pe_ruc";
|
|
3844
|
+
ph_tin: "ph_tin";
|
|
3845
|
+
pl_vat: "pl_vat";
|
|
3846
|
+
pt_vat: "pt_vat";
|
|
3847
|
+
ro_tin: "ro_tin";
|
|
3848
|
+
ro_vat: "ro_vat";
|
|
3849
|
+
rs_pib: "rs_pib";
|
|
3850
|
+
ru_inn: "ru_inn";
|
|
3851
|
+
ru_kpp: "ru_kpp";
|
|
3852
|
+
sa_vat: "sa_vat";
|
|
3853
|
+
se_vat: "se_vat";
|
|
3854
|
+
sg_gst: "sg_gst";
|
|
3855
|
+
sg_uen: "sg_uen";
|
|
3856
|
+
si_tin: "si_tin";
|
|
3857
|
+
si_vat: "si_vat";
|
|
3858
|
+
sk_vat: "sk_vat";
|
|
3859
|
+
sn_ninea: "sn_ninea";
|
|
3860
|
+
sr_fin: "sr_fin";
|
|
3861
|
+
sv_nit: "sv_nit";
|
|
3862
|
+
th_vat: "th_vat";
|
|
3863
|
+
tj_tin: "tj_tin";
|
|
3864
|
+
tr_tin: "tr_tin";
|
|
3865
|
+
tw_vat: "tw_vat";
|
|
3866
|
+
tz_vat: "tz_vat";
|
|
3867
|
+
ua_vat: "ua_vat";
|
|
3868
|
+
ug_tin: "ug_tin";
|
|
3869
|
+
us_ein: "us_ein";
|
|
3870
|
+
uy_ruc: "uy_ruc";
|
|
3871
|
+
uz_tin: "uz_tin";
|
|
3872
|
+
uz_vat: "uz_vat";
|
|
3873
|
+
ve_rif: "ve_rif";
|
|
3874
|
+
vn_tin: "vn_tin";
|
|
3875
|
+
xi_vat: "xi_vat";
|
|
3876
|
+
za_vat: "za_vat";
|
|
3877
|
+
zm_tin: "zm_tin";
|
|
3878
|
+
zw_tin: "zw_tin";
|
|
1820
3879
|
}>>;
|
|
1821
3880
|
}, z.core.$strip>;
|
|
1822
3881
|
/**
|
|
1823
|
-
* Successfully
|
|
1824
|
-
*/
|
|
1825
|
-
export declare const zCreateUserResponse: z.ZodObject<{
|
|
1826
|
-
email: z.ZodEmail;
|
|
1827
|
-
first_name: z.ZodString;
|
|
1828
|
-
last_name: z.ZodString;
|
|
1829
|
-
role: z.ZodEnum<{
|
|
1830
|
-
Administrator: "Administrator";
|
|
1831
|
-
User: "User";
|
|
1832
|
-
}>;
|
|
1833
|
-
status: z.ZodEnum<{
|
|
1834
|
-
active: "active";
|
|
1835
|
-
inactive: "inactive";
|
|
1836
|
-
}>;
|
|
1837
|
-
id: z.ZodUUID;
|
|
1838
|
-
date_created: z.ZodISODateTime;
|
|
1839
|
-
}, z.core.$strip>;
|
|
1840
|
-
export declare const zDeleteUserPath: z.ZodObject<{
|
|
1841
|
-
user_id: z.ZodString;
|
|
1842
|
-
}, z.core.$strip>;
|
|
1843
|
-
/**
|
|
1844
|
-
* User profile information
|
|
3882
|
+
* Successfully updated. Returns updated organization details.
|
|
1845
3883
|
*/
|
|
1846
|
-
export declare const
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
role: z.ZodEnum<{
|
|
1851
|
-
Administrator: "Administrator";
|
|
1852
|
-
User: "User";
|
|
1853
|
-
}>;
|
|
1854
|
-
status: z.ZodEnum<{
|
|
1855
|
-
active: "active";
|
|
1856
|
-
inactive: "inactive";
|
|
3884
|
+
export declare const zUpdateContactResponse: z.ZodObject<{
|
|
3885
|
+
type: z.ZodEnum<{
|
|
3886
|
+
business: "business";
|
|
3887
|
+
personal: "personal";
|
|
1857
3888
|
}>;
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
*/
|
|
1867
|
-
export declare const zGetUserResponse: z.ZodObject<{
|
|
3889
|
+
company: z.ZodOptional<z.ZodString>;
|
|
3890
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
3891
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
3892
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
3893
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3894
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3895
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3896
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1868
3897
|
email: z.ZodEmail;
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
3898
|
+
individual_name: z.ZodString;
|
|
3899
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
3900
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
3901
|
+
"": "";
|
|
3902
|
+
ad_nrt: "ad_nrt";
|
|
3903
|
+
ae_trn: "ae_trn";
|
|
3904
|
+
al_tin: "al_tin";
|
|
3905
|
+
am_tin: "am_tin";
|
|
3906
|
+
ao_tin: "ao_tin";
|
|
3907
|
+
ar_cuit: "ar_cuit";
|
|
3908
|
+
at_vat: "at_vat";
|
|
3909
|
+
au_abn: "au_abn";
|
|
3910
|
+
au_arn: "au_arn";
|
|
3911
|
+
ba_tin: "ba_tin";
|
|
3912
|
+
bb_tin: "bb_tin";
|
|
3913
|
+
be_vat: "be_vat";
|
|
3914
|
+
bg_uic: "bg_uic";
|
|
3915
|
+
bg_vat: "bg_vat";
|
|
3916
|
+
bh_vat: "bh_vat";
|
|
3917
|
+
bo_tin: "bo_tin";
|
|
3918
|
+
br_cnpj: "br_cnpj";
|
|
3919
|
+
br_cpf: "br_cpf";
|
|
3920
|
+
bs_tin: "bs_tin";
|
|
3921
|
+
by_tin: "by_tin";
|
|
3922
|
+
ca_bn: "ca_bn";
|
|
3923
|
+
ca_gst_hst: "ca_gst_hst";
|
|
3924
|
+
ca_pst_bc: "ca_pst_bc";
|
|
3925
|
+
ca_pst_mb: "ca_pst_mb";
|
|
3926
|
+
ca_pst_sk: "ca_pst_sk";
|
|
3927
|
+
ca_qst: "ca_qst";
|
|
3928
|
+
cd_nif: "cd_nif";
|
|
3929
|
+
ch_uid: "ch_uid";
|
|
3930
|
+
ch_vat: "ch_vat";
|
|
3931
|
+
cl_tin: "cl_tin";
|
|
3932
|
+
cn_tin: "cn_tin";
|
|
3933
|
+
co_nit: "co_nit";
|
|
3934
|
+
cr_tin: "cr_tin";
|
|
3935
|
+
cy_vat: "cy_vat";
|
|
3936
|
+
cz_vat: "cz_vat";
|
|
3937
|
+
de_stn: "de_stn";
|
|
3938
|
+
de_vat: "de_vat";
|
|
3939
|
+
dk_vat: "dk_vat";
|
|
3940
|
+
do_rcn: "do_rcn";
|
|
3941
|
+
ec_ruc: "ec_ruc";
|
|
3942
|
+
ee_vat: "ee_vat";
|
|
3943
|
+
eg_tin: "eg_tin";
|
|
3944
|
+
es_cif: "es_cif";
|
|
3945
|
+
es_vat: "es_vat";
|
|
3946
|
+
eu_oss_vat: "eu_oss_vat";
|
|
3947
|
+
fi_vat: "fi_vat";
|
|
3948
|
+
fr_vat: "fr_vat";
|
|
3949
|
+
gb_vat: "gb_vat";
|
|
3950
|
+
ge_vat: "ge_vat";
|
|
3951
|
+
gn_nif: "gn_nif";
|
|
3952
|
+
gr_vat: "gr_vat";
|
|
3953
|
+
hk_br: "hk_br";
|
|
3954
|
+
hr_oib: "hr_oib";
|
|
3955
|
+
hr_vat: "hr_vat";
|
|
3956
|
+
hu_tin: "hu_tin";
|
|
3957
|
+
hu_vat: "hu_vat";
|
|
3958
|
+
id_npwp: "id_npwp";
|
|
3959
|
+
ie_vat: "ie_vat";
|
|
3960
|
+
il_vat: "il_vat";
|
|
3961
|
+
in_gst: "in_gst";
|
|
3962
|
+
is_vat: "is_vat";
|
|
3963
|
+
it_vat: "it_vat";
|
|
3964
|
+
jp_cn: "jp_cn";
|
|
3965
|
+
jp_rn: "jp_rn";
|
|
3966
|
+
jp_trn: "jp_trn";
|
|
3967
|
+
ke_pin: "ke_pin";
|
|
3968
|
+
kh_tin: "kh_tin";
|
|
3969
|
+
kr_brn: "kr_brn";
|
|
3970
|
+
kz_bin: "kz_bin";
|
|
3971
|
+
li_uid: "li_uid";
|
|
3972
|
+
li_vat: "li_vat";
|
|
3973
|
+
lt_vat: "lt_vat";
|
|
3974
|
+
lu_vat: "lu_vat";
|
|
3975
|
+
lv_vat: "lv_vat";
|
|
3976
|
+
ma_vat: "ma_vat";
|
|
3977
|
+
md_vat: "md_vat";
|
|
3978
|
+
me_pib: "me_pib";
|
|
3979
|
+
mk_vat: "mk_vat";
|
|
3980
|
+
mr_nif: "mr_nif";
|
|
3981
|
+
mt_vat: "mt_vat";
|
|
3982
|
+
mx_rfc: "mx_rfc";
|
|
3983
|
+
my_frp: "my_frp";
|
|
3984
|
+
my_itn: "my_itn";
|
|
3985
|
+
my_sst: "my_sst";
|
|
3986
|
+
ng_tin: "ng_tin";
|
|
3987
|
+
nl_vat: "nl_vat";
|
|
3988
|
+
no_vat: "no_vat";
|
|
3989
|
+
no_voec: "no_voec";
|
|
3990
|
+
np_pan: "np_pan";
|
|
3991
|
+
nz_gst: "nz_gst";
|
|
3992
|
+
om_vat: "om_vat";
|
|
3993
|
+
pe_ruc: "pe_ruc";
|
|
3994
|
+
ph_tin: "ph_tin";
|
|
3995
|
+
pl_vat: "pl_vat";
|
|
3996
|
+
pt_vat: "pt_vat";
|
|
3997
|
+
ro_tin: "ro_tin";
|
|
3998
|
+
ro_vat: "ro_vat";
|
|
3999
|
+
rs_pib: "rs_pib";
|
|
4000
|
+
ru_inn: "ru_inn";
|
|
4001
|
+
ru_kpp: "ru_kpp";
|
|
4002
|
+
sa_vat: "sa_vat";
|
|
4003
|
+
se_vat: "se_vat";
|
|
4004
|
+
sg_gst: "sg_gst";
|
|
4005
|
+
sg_uen: "sg_uen";
|
|
4006
|
+
si_tin: "si_tin";
|
|
4007
|
+
si_vat: "si_vat";
|
|
4008
|
+
sk_vat: "sk_vat";
|
|
4009
|
+
sn_ninea: "sn_ninea";
|
|
4010
|
+
sr_fin: "sr_fin";
|
|
4011
|
+
sv_nit: "sv_nit";
|
|
4012
|
+
th_vat: "th_vat";
|
|
4013
|
+
tj_tin: "tj_tin";
|
|
4014
|
+
tr_tin: "tr_tin";
|
|
4015
|
+
tw_vat: "tw_vat";
|
|
4016
|
+
tz_vat: "tz_vat";
|
|
4017
|
+
ua_vat: "ua_vat";
|
|
4018
|
+
ug_tin: "ug_tin";
|
|
4019
|
+
us_ein: "us_ein";
|
|
4020
|
+
uy_ruc: "uy_ruc";
|
|
4021
|
+
uz_tin: "uz_tin";
|
|
4022
|
+
uz_vat: "uz_vat";
|
|
4023
|
+
ve_rif: "ve_rif";
|
|
4024
|
+
vn_tin: "vn_tin";
|
|
4025
|
+
xi_vat: "xi_vat";
|
|
4026
|
+
za_vat: "za_vat";
|
|
4027
|
+
zm_tin: "zm_tin";
|
|
4028
|
+
zw_tin: "zw_tin";
|
|
1893
4029
|
}>>;
|
|
1894
4030
|
}, z.core.$strip>;
|
|
1895
|
-
export declare const zUpdateUserPath: z.ZodObject<{
|
|
1896
|
-
user_id: z.ZodString;
|
|
1897
|
-
}, z.core.$strip>;
|
|
1898
4031
|
/**
|
|
1899
|
-
*
|
|
4032
|
+
* An array of the applied promotional credits records.
|
|
1900
4033
|
*/
|
|
1901
|
-
export declare const
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
Administrator: "Administrator";
|
|
1907
|
-
User: "User";
|
|
1908
|
-
}>;
|
|
1909
|
-
status: z.ZodEnum<{
|
|
1910
|
-
active: "active";
|
|
1911
|
-
inactive: "inactive";
|
|
4034
|
+
export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
|
|
4035
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4036
|
+
type: z.ZodEnum<{
|
|
4037
|
+
credit: "credit";
|
|
4038
|
+
discount: "discount";
|
|
1912
4039
|
}>;
|
|
1913
|
-
|
|
1914
|
-
|
|
4040
|
+
date_start: z.ZodISODateTime;
|
|
4041
|
+
date_end: z.ZodOptional<z.ZodISODateTime>;
|
|
4042
|
+
code: z.ZodString;
|
|
4043
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4044
|
+
value_total: z.ZodNumber;
|
|
4045
|
+
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
4046
|
+
}, z.core.$strip>>;
|
|
4047
|
+
export declare const zRedeemCreditsBody: z.ZodObject<{
|
|
4048
|
+
code: z.ZodOptional<z.ZodString>;
|
|
1915
4049
|
}, z.core.$strip>;
|
|
1916
4050
|
//# sourceMappingURL=zod.gen.d.ts.map
|