@cloudfleet/sdk 0.0.1-523e444 → 0.0.1-55a31fe

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/dist/@tanstack/react-query.gen.d.ts +1125 -0
  2. package/dist/@tanstack/react-query.gen.d.ts.map +1 -0
  3. package/dist/@tanstack/react-query.gen.js +1129 -0
  4. package/dist/@tanstack/react-query.gen.js.map +1 -0
  5. package/dist/client/client.gen.d.ts.map +1 -1
  6. package/dist/client/client.gen.js +113 -98
  7. package/dist/client/client.gen.js.map +1 -1
  8. package/dist/client/index.d.ts +1 -1
  9. package/dist/client/index.d.ts.map +1 -1
  10. package/dist/client/index.js.map +1 -1
  11. package/dist/client/types.gen.d.ts +9 -13
  12. package/dist/client/types.gen.d.ts.map +1 -1
  13. package/dist/client/utils.gen.d.ts +6 -2
  14. package/dist/client/utils.gen.d.ts.map +1 -1
  15. package/dist/client/utils.gen.js +10 -12
  16. package/dist/client/utils.gen.js.map +1 -1
  17. package/dist/client.gen.d.ts.map +1 -1
  18. package/dist/client.gen.js +1 -3
  19. package/dist/client.gen.js.map +1 -1
  20. package/dist/core/auth.gen.d.ts.map +1 -1
  21. package/dist/core/auth.gen.js.map +1 -1
  22. package/dist/core/bodySerializer.gen.d.ts +16 -8
  23. package/dist/core/bodySerializer.gen.d.ts.map +1 -1
  24. package/dist/core/bodySerializer.gen.js +1 -1
  25. package/dist/core/bodySerializer.gen.js.map +1 -1
  26. package/dist/core/params.gen.d.ts +10 -0
  27. package/dist/core/params.gen.d.ts.map +1 -1
  28. package/dist/core/params.gen.js +18 -6
  29. package/dist/core/params.gen.js.map +1 -1
  30. package/dist/core/pathSerializer.gen.d.ts.map +1 -1
  31. package/dist/core/pathSerializer.gen.js +3 -11
  32. package/dist/core/pathSerializer.gen.js.map +1 -1
  33. package/dist/core/queryKeySerializer.gen.d.ts.map +1 -1
  34. package/dist/core/queryKeySerializer.gen.js +4 -11
  35. package/dist/core/queryKeySerializer.gen.js.map +1 -1
  36. package/dist/core/serverSentEvents.gen.d.ts +1 -1
  37. package/dist/core/serverSentEvents.gen.d.ts.map +1 -1
  38. package/dist/core/serverSentEvents.gen.js +6 -9
  39. package/dist/core/serverSentEvents.gen.js.map +1 -1
  40. package/dist/core/types.gen.d.ts +1 -1
  41. package/dist/core/types.gen.d.ts.map +1 -1
  42. package/dist/core/utils.gen.d.ts.map +1 -1
  43. package/dist/core/utils.gen.js +1 -1
  44. package/dist/core/utils.gen.js.map +1 -1
  45. package/dist/schemas.gen.d.ts +972 -132
  46. package/dist/schemas.gen.d.ts.map +1 -1
  47. package/dist/schemas.gen.js +1633 -262
  48. package/dist/schemas.gen.js.map +1 -1
  49. package/dist/sdk.gen.d.ts +85 -7
  50. package/dist/sdk.gen.d.ts.map +1 -1
  51. package/dist/sdk.gen.js +158 -127
  52. package/dist/sdk.gen.js.map +1 -1
  53. package/dist/services/kubernetes/api.d.ts +8 -8
  54. package/dist/types.gen.d.ts +904 -57
  55. package/dist/types.gen.d.ts.map +1 -1
  56. package/dist/zod.gen.d.ts +899 -617
  57. package/dist/zod.gen.d.ts.map +1 -1
  58. package/dist/zod.gen.js +495 -457
  59. package/dist/zod.gen.js.map +1 -1
  60. package/package.json +28 -5
package/dist/zod.gen.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { z } from 'zod';
1
+ import * as z from 'zod';
2
2
  export declare const zBillingContact: z.ZodObject<{
3
3
  company: z.ZodOptional<z.ZodString>;
4
4
  address1: z.ZodOptional<z.ZodString>;
@@ -199,17 +199,23 @@ export declare const zClusterCreateInput: z.ZodObject<{
199
199
  basic: "basic";
200
200
  pro: "pro";
201
201
  }>;
202
- region: z.ZodOptional<z.ZodEnum<{
203
- staging: "staging";
202
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
203
+ "staging-1a": "staging-1a";
204
204
  "northamerica-central-1": "northamerica-central-1";
205
205
  "europe-central-1a": "europe-central-1a";
206
206
  "northamerica-central-1a": "northamerica-central-1a";
207
- }>>;
208
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
207
+ }>>>;
208
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
209
+ "1.x.x-cfke.x": "1.x.x-cfke.x";
210
+ "1.31.x-cfke.x": "1.31.x-cfke.x";
211
+ "1.32.x-cfke.x": "1.32.x-cfke.x";
212
+ "1.33.x-cfke.x": "1.33.x-cfke.x";
213
+ }>>>;
209
214
  }, z.core.$strip>;
210
215
  export declare const zClusterJoinInformation: z.ZodObject<{
211
216
  certificate_authority: z.ZodString;
212
217
  endpoint: z.ZodURL;
218
+ cluster_dns: z.ZodString;
213
219
  auth_key: z.ZodString;
214
220
  bootstrap_token: z.ZodString;
215
221
  versions: z.ZodObject<{
@@ -230,13 +236,12 @@ export declare const zCluster: z.ZodObject<{
230
236
  basic: "basic";
231
237
  pro: "pro";
232
238
  }>;
233
- region: z.ZodOptional<z.ZodEnum<{
234
- staging: "staging";
239
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
240
+ "staging-1a": "staging-1a";
235
241
  "northamerica-central-1": "northamerica-central-1";
236
242
  "europe-central-1a": "europe-central-1a";
237
243
  "northamerica-central-1a": "northamerica-central-1a";
238
- }>>;
239
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
244
+ }>>>;
240
245
  id: z.ZodUUID;
241
246
  status: z.ZodEnum<{
242
247
  deleted: "deleted";
@@ -250,11 +255,15 @@ export declare const zCluster: z.ZodObject<{
250
255
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
251
256
  "": "";
252
257
  }>]>>;
258
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
259
+ "": "";
260
+ }>]>>;
253
261
  certificate_ca: z.ZodOptional<z.ZodString>;
254
262
  version_current: z.ZodOptional<z.ZodString>;
255
263
  created_at: z.ZodOptional<z.ZodString>;
256
264
  updated_at: z.ZodOptional<z.ZodString>;
257
265
  ready: z.ZodOptional<z.ZodBoolean>;
266
+ version_channel: z.ZodOptional<z.ZodString>;
258
267
  }, z.core.$strip>;
259
268
  export declare const zClusterUpdateInput: z.ZodObject<{
260
269
  name: z.ZodOptional<z.ZodString>;
@@ -325,7 +334,7 @@ export declare const zInvite: z.ZodObject<{
325
334
  code: z.ZodOptional<z.ZodString>;
326
335
  }, z.core.$strip>;
327
336
  export declare const zInvoice: z.ZodObject<{
328
- id: z.ZodOptional<z.ZodUUID>;
337
+ id: z.ZodOptional<z.ZodString>;
329
338
  number: z.ZodOptional<z.ZodString>;
330
339
  status: z.ZodOptional<z.ZodString>;
331
340
  total: z.ZodOptional<z.ZodNumber>;
@@ -335,19 +344,30 @@ export declare const zInvoice: z.ZodObject<{
335
344
  period_end: z.ZodISODateTime;
336
345
  invoice_pdf: z.ZodOptional<z.ZodString>;
337
346
  }, z.core.$strip>;
347
+ export declare const zMarketplaceListingFiles: z.ZodObject<{
348
+ chartYaml: z.ZodOptional<z.ZodString>;
349
+ valuesYaml: z.ZodOptional<z.ZodString>;
350
+ valuesSchemaJson: z.ZodOptional<z.ZodString>;
351
+ }, z.core.$strip>;
338
352
  export declare const zMarketplaceListing: z.ZodObject<{
339
- id: z.ZodString;
340
353
  name: z.ZodString;
341
- developer: z.ZodString;
342
- description: z.ZodString;
343
- logoUrl: z.ZodString;
344
- longDescription: z.ZodString;
345
- categories: z.ZodArray<z.ZodString>;
354
+ versions: z.ZodArray<z.ZodString>;
346
355
  version_channels: z.ZodArray<z.ZodString>;
347
- value_schemas: z.ZodArray<z.ZodObject<{
356
+ latestVersion: z.ZodString;
357
+ metadata: z.ZodOptional<z.ZodObject<{
358
+ name: z.ZodString;
348
359
  version: z.ZodString;
349
- schema: z.ZodString;
350
- placeholder: z.ZodString;
360
+ description: z.ZodOptional<z.ZodString>;
361
+ appVersion: z.ZodOptional<z.ZodString>;
362
+ apiVersion: z.ZodOptional<z.ZodString>;
363
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
364
+ home: z.ZodOptional<z.ZodString>;
365
+ icon: z.ZodOptional<z.ZodString>;
366
+ sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
367
+ maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
368
+ name: z.ZodString;
369
+ email: z.ZodOptional<z.ZodString>;
370
+ }, z.core.$strip>>>;
351
371
  }, z.core.$strip>>;
352
372
  }, z.core.$strip>;
353
373
  export declare const zOrganizationCreateInput: z.ZodObject<{
@@ -373,6 +393,7 @@ export declare const zOrganization: z.ZodObject<{
373
393
  id: z.ZodString;
374
394
  label: z.ZodString;
375
395
  }, z.core.$strip>>;
396
+ cfcr_storage_gb: z.ZodInt;
376
397
  }, z.core.$strip>;
377
398
  status: z.ZodEnum<{
378
399
  active: "active";
@@ -401,6 +422,171 @@ export declare const zPaymentMethod: z.ZodObject<{
401
422
  visa: "visa";
402
423
  }>;
403
424
  }, z.core.$strip>;
425
+ export declare const zPlatformQuota: z.ZodObject<{
426
+ basic_clusters_max: z.ZodInt;
427
+ basic_clusters_available: z.ZodInt;
428
+ pro_clusters_max: z.ZodInt;
429
+ pro_clusters_available: z.ZodInt;
430
+ fleets_max: z.ZodInt;
431
+ cluster_tiers: z.ZodArray<z.ZodString>;
432
+ regions: z.ZodArray<z.ZodString>;
433
+ versions: z.ZodArray<z.ZodObject<{
434
+ id: z.ZodString;
435
+ label: z.ZodString;
436
+ }, z.core.$strip>>;
437
+ cfcr_storage_gb: z.ZodInt;
438
+ }, z.core.$strip>;
439
+ export declare const zRegistryRepository: z.ZodObject<{
440
+ name: z.ZodString;
441
+ region: z.ZodString;
442
+ uri: z.ZodString;
443
+ }, z.core.$strip>;
444
+ export declare const zRegistryRepositoryWithTags: z.ZodObject<{
445
+ name: z.ZodString;
446
+ region: z.ZodString;
447
+ uri: z.ZodString;
448
+ tags: z.ZodArray<z.ZodObject<{
449
+ name: z.ZodString;
450
+ size: z.ZodNumber;
451
+ mediaType: z.ZodOptional<z.ZodString>;
452
+ platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
453
+ }, z.core.$strip>>;
454
+ totalSize: z.ZodNumber;
455
+ }, z.core.$strip>;
456
+ export declare const zRegistryTag: z.ZodObject<{
457
+ name: z.ZodString;
458
+ digest: z.ZodString;
459
+ mediaType: z.ZodOptional<z.ZodString>;
460
+ config: z.ZodOptional<z.ZodObject<{
461
+ size: z.ZodNumber;
462
+ }, z.core.$strip>>;
463
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
464
+ digest: z.ZodOptional<z.ZodString>;
465
+ size: z.ZodNumber;
466
+ }, z.core.$strip>>>;
467
+ manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
468
+ digest: z.ZodString;
469
+ platform: z.ZodOptional<z.ZodObject<{
470
+ architecture: z.ZodString;
471
+ os: z.ZodString;
472
+ variant: z.ZodOptional<z.ZodString>;
473
+ }, z.core.$strip>>;
474
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
475
+ digest: z.ZodOptional<z.ZodString>;
476
+ size: z.ZodNumber;
477
+ }, z.core.$strip>>>;
478
+ size: z.ZodOptional<z.ZodNumber>;
479
+ }, z.core.$strip>>>;
480
+ size: z.ZodNumber;
481
+ region: z.ZodString;
482
+ repository: z.ZodString;
483
+ uri: z.ZodString;
484
+ }, z.core.$strip>;
485
+ export declare const zTicketAttachment: z.ZodObject<{
486
+ id: z.ZodString;
487
+ filename: z.ZodString;
488
+ content_type: z.ZodString;
489
+ size: z.ZodInt;
490
+ }, z.core.$strip>;
491
+ export declare const zTicketCreateInput: z.ZodObject<{
492
+ category: z.ZodEnum<{
493
+ billing: "billing";
494
+ technical: "technical";
495
+ general: "general";
496
+ }>;
497
+ body: z.ZodString;
498
+ properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
499
+ }, z.core.$strip>;
500
+ export declare const zTicketListResponse: z.ZodObject<{
501
+ items: z.ZodArray<z.ZodObject<{
502
+ id: z.ZodString;
503
+ status: z.ZodEnum<{
504
+ closed: "closed";
505
+ waiting_on_us: "waiting_on_us";
506
+ waiting_on_user: "waiting_on_user";
507
+ }>;
508
+ category: z.ZodEnum<{
509
+ billing: "billing";
510
+ technical: "technical";
511
+ general: "general";
512
+ }>;
513
+ summary: z.ZodString;
514
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
515
+ date_created: z.ZodISODateTime;
516
+ date_updated: z.ZodISODateTime;
517
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
518
+ id: z.ZodString;
519
+ type: z.ZodEnum<{
520
+ customer_reply: "customer_reply";
521
+ agent_reply: "agent_reply";
522
+ }>;
523
+ body: z.ZodString;
524
+ author_first_name: z.ZodOptional<z.ZodString>;
525
+ author_last_name: z.ZodOptional<z.ZodString>;
526
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
527
+ id: z.ZodString;
528
+ filename: z.ZodString;
529
+ content_type: z.ZodString;
530
+ size: z.ZodInt;
531
+ }, z.core.$strip>>>;
532
+ date_created: z.ZodISODateTime;
533
+ }, z.core.$strip>>>;
534
+ }, z.core.$strip>>;
535
+ }, z.core.$strip>;
536
+ export declare const zTicketMessageInput: z.ZodObject<{
537
+ body: z.ZodString;
538
+ }, z.core.$strip>;
539
+ export declare const zTicketMessage: z.ZodObject<{
540
+ id: z.ZodString;
541
+ type: z.ZodEnum<{
542
+ customer_reply: "customer_reply";
543
+ agent_reply: "agent_reply";
544
+ }>;
545
+ body: z.ZodString;
546
+ author_first_name: z.ZodOptional<z.ZodString>;
547
+ author_last_name: z.ZodOptional<z.ZodString>;
548
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
549
+ id: z.ZodString;
550
+ filename: z.ZodString;
551
+ content_type: z.ZodString;
552
+ size: z.ZodInt;
553
+ }, z.core.$strip>>>;
554
+ date_created: z.ZodISODateTime;
555
+ }, z.core.$strip>;
556
+ export declare const zTicket: z.ZodObject<{
557
+ id: z.ZodString;
558
+ status: z.ZodEnum<{
559
+ closed: "closed";
560
+ waiting_on_us: "waiting_on_us";
561
+ waiting_on_user: "waiting_on_user";
562
+ }>;
563
+ category: z.ZodEnum<{
564
+ billing: "billing";
565
+ technical: "technical";
566
+ general: "general";
567
+ }>;
568
+ summary: z.ZodString;
569
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
570
+ date_created: z.ZodISODateTime;
571
+ date_updated: z.ZodISODateTime;
572
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
573
+ id: z.ZodString;
574
+ type: z.ZodEnum<{
575
+ customer_reply: "customer_reply";
576
+ agent_reply: "agent_reply";
577
+ }>;
578
+ body: z.ZodString;
579
+ author_first_name: z.ZodOptional<z.ZodString>;
580
+ author_last_name: z.ZodOptional<z.ZodString>;
581
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
582
+ id: z.ZodString;
583
+ filename: z.ZodString;
584
+ content_type: z.ZodString;
585
+ size: z.ZodInt;
586
+ }, z.core.$strip>>>;
587
+ date_created: z.ZodISODateTime;
588
+ }, z.core.$strip>>>;
589
+ }, z.core.$strip>;
404
590
  export declare const zTokenCreateInput: z.ZodObject<{
405
591
  name: z.ZodString;
406
592
  role: z.ZodEnum<{
@@ -425,37 +611,31 @@ export declare const zTokenUpdateInput: z.ZodObject<{
425
611
  User: "User";
426
612
  }>>;
427
613
  }, z.core.$strip>;
614
+ export declare const zUsageFacets: z.ZodObject<{
615
+ cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
616
+ product: z.ZodOptional<z.ZodArray<z.ZodString>>;
617
+ }, z.core.$strip>;
618
+ export declare const zUsageResponse: z.ZodObject<{
619
+ data: z.ZodArray<z.ZodObject<{
620
+ hour: z.ZodString;
621
+ cluster_id: z.ZodString;
622
+ product: z.ZodString;
623
+ value: z.ZodNumber;
624
+ price: z.ZodNumber;
625
+ total: z.ZodNumber;
626
+ }, z.core.$strip>>;
627
+ facets: z.ZodObject<{
628
+ cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
629
+ product: z.ZodOptional<z.ZodArray<z.ZodString>>;
630
+ }, z.core.$strip>;
631
+ }, z.core.$strip>;
428
632
  export declare const zUsage: z.ZodObject<{
429
- hour: z.ZodOptional<z.ZodString>;
430
- cluster_id: z.ZodUUID;
431
- cluster_tier: z.ZodEnum<{
432
- "": "";
433
- basic: "basic";
434
- pro: "pro";
435
- }>;
436
- product: z.ZodEnum<{
437
- cfke_controlplane: "cfke_controlplane";
438
- cfke_connected_nodes: "cfke_connected_nodes";
439
- infra_compute: "infra_compute";
440
- infra_storage: "infra_storage";
441
- infra_loadbalancing: "infra_loadbalancing";
442
- infra_traffic: "infra_traffic";
443
- cfcr_storage: "cfcr_storage";
444
- }>;
445
- node_name: z.ZodString;
446
- sku: z.ZodString;
447
- cpu: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
448
- "": "";
449
- }>]>;
450
- price: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
451
- "": "";
452
- }>]>;
453
- value: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
454
- "": "";
455
- }>]>;
456
- total: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
457
- "": "";
458
- }>]>;
633
+ hour: z.ZodString;
634
+ cluster_id: z.ZodString;
635
+ product: z.ZodString;
636
+ value: z.ZodNumber;
637
+ price: z.ZodNumber;
638
+ total: z.ZodNumber;
459
639
  }, z.core.$strip>;
460
640
  export declare const zUserCreateInput: z.ZodObject<{
461
641
  email: z.ZodEmail;
@@ -500,50 +680,29 @@ export declare const zUserUpdateInput: z.ZodObject<{
500
680
  inactive: "inactive";
501
681
  }>>;
502
682
  }, z.core.$strip>;
503
- export declare const zGetUsageData: z.ZodObject<{
504
- body: z.ZodOptional<z.ZodNever>;
505
- path: z.ZodOptional<z.ZodNever>;
506
- query: z.ZodOptional<z.ZodNever>;
683
+ export declare const zGetUsageQuery: z.ZodObject<{
684
+ granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
685
+ hourly: "hourly";
686
+ daily: "daily";
687
+ monthly: "monthly";
688
+ }>>>;
507
689
  }, z.core.$strip>;
508
690
  /**
509
- * An array of usage records.
691
+ * Usage data with facets for filtering
510
692
  */
511
- export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
512
- hour: z.ZodOptional<z.ZodString>;
513
- cluster_id: z.ZodUUID;
514
- cluster_tier: z.ZodEnum<{
515
- "": "";
516
- basic: "basic";
517
- pro: "pro";
518
- }>;
519
- product: z.ZodEnum<{
520
- cfke_controlplane: "cfke_controlplane";
521
- cfke_connected_nodes: "cfke_connected_nodes";
522
- infra_compute: "infra_compute";
523
- infra_storage: "infra_storage";
524
- infra_loadbalancing: "infra_loadbalancing";
525
- infra_traffic: "infra_traffic";
526
- cfcr_storage: "cfcr_storage";
527
- }>;
528
- node_name: z.ZodString;
529
- sku: z.ZodString;
530
- cpu: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
531
- "": "";
532
- }>]>;
533
- price: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
534
- "": "";
535
- }>]>;
536
- value: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
537
- "": "";
538
- }>]>;
539
- total: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
540
- "": "";
541
- }>]>;
542
- }, z.core.$strip>>;
543
- export declare const zGetPaymentMethodData: z.ZodObject<{
544
- body: z.ZodOptional<z.ZodNever>;
545
- path: z.ZodOptional<z.ZodNever>;
546
- query: z.ZodOptional<z.ZodNever>;
693
+ export declare const zGetUsageResponse: z.ZodObject<{
694
+ data: z.ZodArray<z.ZodObject<{
695
+ hour: z.ZodString;
696
+ cluster_id: z.ZodString;
697
+ product: z.ZodString;
698
+ value: z.ZodNumber;
699
+ price: z.ZodNumber;
700
+ total: z.ZodNumber;
701
+ }, z.core.$strip>>;
702
+ facets: z.ZodObject<{
703
+ cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
704
+ product: z.ZodOptional<z.ZodArray<z.ZodString>>;
705
+ }, z.core.$strip>;
547
706
  }, z.core.$strip>;
548
707
  /**
549
708
  * Redacted payment card information.
@@ -569,11 +728,6 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
569
728
  visa: "visa";
570
729
  }>;
571
730
  }, z.core.$strip>;
572
- export declare const zGetPaymentMethodSecretData: z.ZodObject<{
573
- body: z.ZodOptional<z.ZodNever>;
574
- path: z.ZodOptional<z.ZodNever>;
575
- query: z.ZodOptional<z.ZodNever>;
576
- }, z.core.$strip>;
577
731
  /**
578
732
  * 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.
579
733
  *
@@ -581,16 +735,11 @@ export declare const zGetPaymentMethodSecretData: z.ZodObject<{
581
735
  export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
582
736
  id: z.ZodOptional<z.ZodString>;
583
737
  }, z.core.$strip>;
584
- export declare const zListInvoicesData: z.ZodObject<{
585
- body: z.ZodOptional<z.ZodNever>;
586
- path: z.ZodOptional<z.ZodNever>;
587
- query: z.ZodOptional<z.ZodNever>;
588
- }, z.core.$strip>;
589
738
  /**
590
739
  * An array of usage records.
591
740
  */
592
741
  export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
593
- id: z.ZodOptional<z.ZodUUID>;
742
+ id: z.ZodOptional<z.ZodString>;
594
743
  number: z.ZodOptional<z.ZodString>;
595
744
  status: z.ZodOptional<z.ZodString>;
596
745
  total: z.ZodOptional<z.ZodNumber>;
@@ -600,11 +749,6 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
600
749
  period_end: z.ZodISODateTime;
601
750
  invoice_pdf: z.ZodOptional<z.ZodString>;
602
751
  }, z.core.$strip>>;
603
- export declare const zGetContactData: z.ZodObject<{
604
- body: z.ZodOptional<z.ZodNever>;
605
- path: z.ZodOptional<z.ZodNever>;
606
- query: z.ZodOptional<z.ZodNever>;
607
- }, z.core.$strip>;
608
752
  /**
609
753
  * Returns a single object containing organization contact and billing address details.
610
754
  */
@@ -751,152 +895,148 @@ export declare const zGetContactResponse: z.ZodObject<{
751
895
  zw_tin: "zw_tin";
752
896
  }>>;
753
897
  }, z.core.$strip>;
754
- export declare const zUpdateContactData: z.ZodObject<{
755
- body: z.ZodObject<{
756
- company: z.ZodOptional<z.ZodString>;
757
- address1: z.ZodOptional<z.ZodString>;
758
- address2: z.ZodOptional<z.ZodString>;
759
- postalCode: z.ZodOptional<z.ZodString>;
760
- city: z.ZodOptional<z.ZodString>;
761
- state: z.ZodOptional<z.ZodString>;
762
- country: z.ZodOptional<z.ZodString>;
763
- phone: z.ZodOptional<z.ZodString>;
764
- email: z.ZodEmail;
765
- individual_name: z.ZodString;
766
- tax_id: z.ZodOptional<z.ZodString>;
767
- tax_id_type: z.ZodOptional<z.ZodEnum<{
768
- "": "";
769
- ad_nrt: "ad_nrt";
770
- ae_trn: "ae_trn";
771
- al_tin: "al_tin";
772
- am_tin: "am_tin";
773
- ao_tin: "ao_tin";
774
- ar_cuit: "ar_cuit";
775
- at_vat: "at_vat";
776
- au_abn: "au_abn";
777
- au_arn: "au_arn";
778
- ba_tin: "ba_tin";
779
- bb_tin: "bb_tin";
780
- be_vat: "be_vat";
781
- bg_uic: "bg_uic";
782
- bg_vat: "bg_vat";
783
- bh_vat: "bh_vat";
784
- bo_tin: "bo_tin";
785
- br_cnpj: "br_cnpj";
786
- br_cpf: "br_cpf";
787
- bs_tin: "bs_tin";
788
- by_tin: "by_tin";
789
- ca_bn: "ca_bn";
790
- ca_gst_hst: "ca_gst_hst";
791
- ca_pst_bc: "ca_pst_bc";
792
- ca_pst_mb: "ca_pst_mb";
793
- ca_pst_sk: "ca_pst_sk";
794
- ca_qst: "ca_qst";
795
- cd_nif: "cd_nif";
796
- ch_uid: "ch_uid";
797
- ch_vat: "ch_vat";
798
- cl_tin: "cl_tin";
799
- cn_tin: "cn_tin";
800
- co_nit: "co_nit";
801
- cr_tin: "cr_tin";
802
- cy_vat: "cy_vat";
803
- cz_vat: "cz_vat";
804
- de_stn: "de_stn";
805
- de_vat: "de_vat";
806
- dk_vat: "dk_vat";
807
- do_rcn: "do_rcn";
808
- ec_ruc: "ec_ruc";
809
- ee_vat: "ee_vat";
810
- eg_tin: "eg_tin";
811
- es_cif: "es_cif";
812
- es_vat: "es_vat";
813
- eu_oss_vat: "eu_oss_vat";
814
- fi_vat: "fi_vat";
815
- fr_vat: "fr_vat";
816
- gb_vat: "gb_vat";
817
- ge_vat: "ge_vat";
818
- gn_nif: "gn_nif";
819
- gr_vat: "gr_vat";
820
- hk_br: "hk_br";
821
- hr_oib: "hr_oib";
822
- hr_vat: "hr_vat";
823
- hu_tin: "hu_tin";
824
- hu_vat: "hu_vat";
825
- id_npwp: "id_npwp";
826
- ie_vat: "ie_vat";
827
- il_vat: "il_vat";
828
- in_gst: "in_gst";
829
- is_vat: "is_vat";
830
- it_vat: "it_vat";
831
- jp_cn: "jp_cn";
832
- jp_rn: "jp_rn";
833
- jp_trn: "jp_trn";
834
- ke_pin: "ke_pin";
835
- kh_tin: "kh_tin";
836
- kr_brn: "kr_brn";
837
- kz_bin: "kz_bin";
838
- li_uid: "li_uid";
839
- li_vat: "li_vat";
840
- lt_vat: "lt_vat";
841
- lu_vat: "lu_vat";
842
- lv_vat: "lv_vat";
843
- ma_vat: "ma_vat";
844
- md_vat: "md_vat";
845
- me_pib: "me_pib";
846
- mk_vat: "mk_vat";
847
- mr_nif: "mr_nif";
848
- mt_vat: "mt_vat";
849
- mx_rfc: "mx_rfc";
850
- my_frp: "my_frp";
851
- my_itn: "my_itn";
852
- my_sst: "my_sst";
853
- ng_tin: "ng_tin";
854
- nl_vat: "nl_vat";
855
- no_vat: "no_vat";
856
- no_voec: "no_voec";
857
- np_pan: "np_pan";
858
- nz_gst: "nz_gst";
859
- om_vat: "om_vat";
860
- pe_ruc: "pe_ruc";
861
- ph_tin: "ph_tin";
862
- pl_vat: "pl_vat";
863
- pt_vat: "pt_vat";
864
- ro_tin: "ro_tin";
865
- ro_vat: "ro_vat";
866
- rs_pib: "rs_pib";
867
- ru_inn: "ru_inn";
868
- ru_kpp: "ru_kpp";
869
- sa_vat: "sa_vat";
870
- se_vat: "se_vat";
871
- sg_gst: "sg_gst";
872
- sg_uen: "sg_uen";
873
- si_tin: "si_tin";
874
- si_vat: "si_vat";
875
- sk_vat: "sk_vat";
876
- sn_ninea: "sn_ninea";
877
- sr_fin: "sr_fin";
878
- sv_nit: "sv_nit";
879
- th_vat: "th_vat";
880
- tj_tin: "tj_tin";
881
- tr_tin: "tr_tin";
882
- tw_vat: "tw_vat";
883
- tz_vat: "tz_vat";
884
- ua_vat: "ua_vat";
885
- ug_tin: "ug_tin";
886
- us_ein: "us_ein";
887
- uy_ruc: "uy_ruc";
888
- uz_tin: "uz_tin";
889
- uz_vat: "uz_vat";
890
- ve_rif: "ve_rif";
891
- vn_tin: "vn_tin";
892
- xi_vat: "xi_vat";
893
- za_vat: "za_vat";
894
- zm_tin: "zm_tin";
895
- zw_tin: "zw_tin";
896
- }>>;
897
- }, z.core.$strip>;
898
- path: z.ZodOptional<z.ZodNever>;
899
- query: z.ZodOptional<z.ZodNever>;
898
+ export declare const zUpdateContactBody: z.ZodObject<{
899
+ company: z.ZodOptional<z.ZodString>;
900
+ address1: z.ZodOptional<z.ZodString>;
901
+ address2: z.ZodOptional<z.ZodString>;
902
+ postalCode: z.ZodOptional<z.ZodString>;
903
+ city: z.ZodOptional<z.ZodString>;
904
+ state: z.ZodOptional<z.ZodString>;
905
+ country: z.ZodOptional<z.ZodString>;
906
+ phone: z.ZodOptional<z.ZodString>;
907
+ email: z.ZodEmail;
908
+ individual_name: z.ZodString;
909
+ tax_id: z.ZodOptional<z.ZodString>;
910
+ tax_id_type: z.ZodOptional<z.ZodEnum<{
911
+ "": "";
912
+ ad_nrt: "ad_nrt";
913
+ ae_trn: "ae_trn";
914
+ al_tin: "al_tin";
915
+ am_tin: "am_tin";
916
+ ao_tin: "ao_tin";
917
+ ar_cuit: "ar_cuit";
918
+ at_vat: "at_vat";
919
+ au_abn: "au_abn";
920
+ au_arn: "au_arn";
921
+ ba_tin: "ba_tin";
922
+ bb_tin: "bb_tin";
923
+ be_vat: "be_vat";
924
+ bg_uic: "bg_uic";
925
+ bg_vat: "bg_vat";
926
+ bh_vat: "bh_vat";
927
+ bo_tin: "bo_tin";
928
+ br_cnpj: "br_cnpj";
929
+ br_cpf: "br_cpf";
930
+ bs_tin: "bs_tin";
931
+ by_tin: "by_tin";
932
+ ca_bn: "ca_bn";
933
+ ca_gst_hst: "ca_gst_hst";
934
+ ca_pst_bc: "ca_pst_bc";
935
+ ca_pst_mb: "ca_pst_mb";
936
+ ca_pst_sk: "ca_pst_sk";
937
+ ca_qst: "ca_qst";
938
+ cd_nif: "cd_nif";
939
+ ch_uid: "ch_uid";
940
+ ch_vat: "ch_vat";
941
+ cl_tin: "cl_tin";
942
+ cn_tin: "cn_tin";
943
+ co_nit: "co_nit";
944
+ cr_tin: "cr_tin";
945
+ cy_vat: "cy_vat";
946
+ cz_vat: "cz_vat";
947
+ de_stn: "de_stn";
948
+ de_vat: "de_vat";
949
+ dk_vat: "dk_vat";
950
+ do_rcn: "do_rcn";
951
+ ec_ruc: "ec_ruc";
952
+ ee_vat: "ee_vat";
953
+ eg_tin: "eg_tin";
954
+ es_cif: "es_cif";
955
+ es_vat: "es_vat";
956
+ eu_oss_vat: "eu_oss_vat";
957
+ fi_vat: "fi_vat";
958
+ fr_vat: "fr_vat";
959
+ gb_vat: "gb_vat";
960
+ ge_vat: "ge_vat";
961
+ gn_nif: "gn_nif";
962
+ gr_vat: "gr_vat";
963
+ hk_br: "hk_br";
964
+ hr_oib: "hr_oib";
965
+ hr_vat: "hr_vat";
966
+ hu_tin: "hu_tin";
967
+ hu_vat: "hu_vat";
968
+ id_npwp: "id_npwp";
969
+ ie_vat: "ie_vat";
970
+ il_vat: "il_vat";
971
+ in_gst: "in_gst";
972
+ is_vat: "is_vat";
973
+ it_vat: "it_vat";
974
+ jp_cn: "jp_cn";
975
+ jp_rn: "jp_rn";
976
+ jp_trn: "jp_trn";
977
+ ke_pin: "ke_pin";
978
+ kh_tin: "kh_tin";
979
+ kr_brn: "kr_brn";
980
+ kz_bin: "kz_bin";
981
+ li_uid: "li_uid";
982
+ li_vat: "li_vat";
983
+ lt_vat: "lt_vat";
984
+ lu_vat: "lu_vat";
985
+ lv_vat: "lv_vat";
986
+ ma_vat: "ma_vat";
987
+ md_vat: "md_vat";
988
+ me_pib: "me_pib";
989
+ mk_vat: "mk_vat";
990
+ mr_nif: "mr_nif";
991
+ mt_vat: "mt_vat";
992
+ mx_rfc: "mx_rfc";
993
+ my_frp: "my_frp";
994
+ my_itn: "my_itn";
995
+ my_sst: "my_sst";
996
+ ng_tin: "ng_tin";
997
+ nl_vat: "nl_vat";
998
+ no_vat: "no_vat";
999
+ no_voec: "no_voec";
1000
+ np_pan: "np_pan";
1001
+ nz_gst: "nz_gst";
1002
+ om_vat: "om_vat";
1003
+ pe_ruc: "pe_ruc";
1004
+ ph_tin: "ph_tin";
1005
+ pl_vat: "pl_vat";
1006
+ pt_vat: "pt_vat";
1007
+ ro_tin: "ro_tin";
1008
+ ro_vat: "ro_vat";
1009
+ rs_pib: "rs_pib";
1010
+ ru_inn: "ru_inn";
1011
+ ru_kpp: "ru_kpp";
1012
+ sa_vat: "sa_vat";
1013
+ se_vat: "se_vat";
1014
+ sg_gst: "sg_gst";
1015
+ sg_uen: "sg_uen";
1016
+ si_tin: "si_tin";
1017
+ si_vat: "si_vat";
1018
+ sk_vat: "sk_vat";
1019
+ sn_ninea: "sn_ninea";
1020
+ sr_fin: "sr_fin";
1021
+ sv_nit: "sv_nit";
1022
+ th_vat: "th_vat";
1023
+ tj_tin: "tj_tin";
1024
+ tr_tin: "tr_tin";
1025
+ tw_vat: "tw_vat";
1026
+ tz_vat: "tz_vat";
1027
+ ua_vat: "ua_vat";
1028
+ ug_tin: "ug_tin";
1029
+ us_ein: "us_ein";
1030
+ uy_ruc: "uy_ruc";
1031
+ uz_tin: "uz_tin";
1032
+ uz_vat: "uz_vat";
1033
+ ve_rif: "ve_rif";
1034
+ vn_tin: "vn_tin";
1035
+ xi_vat: "xi_vat";
1036
+ za_vat: "za_vat";
1037
+ zm_tin: "zm_tin";
1038
+ zw_tin: "zw_tin";
1039
+ }>>;
900
1040
  }, z.core.$strip>;
901
1041
  /**
902
1042
  * Successfully updated. Returns updated organization details.
@@ -1044,11 +1184,6 @@ export declare const zUpdateContactResponse: z.ZodObject<{
1044
1184
  zw_tin: "zw_tin";
1045
1185
  }>>;
1046
1186
  }, z.core.$strip>;
1047
- export declare const zGetCreditsData: z.ZodObject<{
1048
- body: z.ZodOptional<z.ZodNever>;
1049
- path: z.ZodOptional<z.ZodNever>;
1050
- query: z.ZodOptional<z.ZodNever>;
1051
- }, z.core.$strip>;
1052
1187
  /**
1053
1188
  * An array of the applied promotional credits records.
1054
1189
  */
@@ -1065,19 +1200,11 @@ export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
1065
1200
  value_total: z.ZodNumber;
1066
1201
  value_remaining: z.ZodOptional<z.ZodNumber>;
1067
1202
  }, z.core.$strip>>;
1068
- export declare const zRedeemCreditsData: z.ZodObject<{
1069
- body: z.ZodObject<{
1070
- code: z.ZodOptional<z.ZodString>;
1071
- }, z.core.$strip>;
1072
- path: z.ZodOptional<z.ZodNever>;
1073
- query: z.ZodOptional<z.ZodNever>;
1203
+ export declare const zRedeemCreditsBody: z.ZodObject<{
1204
+ code: z.ZodOptional<z.ZodString>;
1074
1205
  }, z.core.$strip>;
1075
- export declare const zListChartsData: z.ZodObject<{
1076
- body: z.ZodOptional<z.ZodNever>;
1077
- path: z.ZodObject<{
1078
- cluster_id: z.ZodString;
1079
- }, z.core.$strip>;
1080
- query: z.ZodOptional<z.ZodNever>;
1206
+ export declare const zListChartsPath: z.ZodObject<{
1207
+ cluster_id: z.ZodString;
1081
1208
  }, z.core.$strip>;
1082
1209
  /**
1083
1210
  * An array of charts
@@ -1109,42 +1236,31 @@ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
1109
1236
  updated_at: z.ZodString;
1110
1237
  ready: z.ZodBoolean;
1111
1238
  }, z.core.$strip>>;
1112
- export declare const zCreateChartData: z.ZodObject<{
1113
- body: z.ZodObject<{
1114
- values: z.ZodString;
1115
- version_channel: z.ZodString;
1116
- name: z.ZodString;
1117
- namespace: z.ZodString;
1118
- chart: z.ZodString;
1119
- }, z.core.$strip>;
1120
- path: z.ZodObject<{
1121
- cluster_id: z.ZodString;
1122
- }, z.core.$strip>;
1123
- query: z.ZodOptional<z.ZodNever>;
1239
+ export declare const zCreateChartBody: z.ZodObject<{
1240
+ values: z.ZodString;
1241
+ version_channel: z.ZodString;
1242
+ name: z.ZodString;
1243
+ namespace: z.ZodString;
1244
+ chart: z.ZodString;
1245
+ }, z.core.$strip>;
1246
+ export declare const zCreateChartPath: z.ZodObject<{
1247
+ cluster_id: z.ZodString;
1124
1248
  }, z.core.$strip>;
1125
1249
  /**
1126
1250
  * Successfully created. Returns created Chart ID.
1127
1251
  */
1128
1252
  export declare const zCreateChartResponse: z.ZodString;
1129
- export declare const zDeleteChartData: z.ZodObject<{
1130
- body: z.ZodOptional<z.ZodNever>;
1131
- path: z.ZodObject<{
1132
- cluster_id: z.ZodString;
1133
- chart_name: z.ZodString;
1134
- }, z.core.$strip>;
1135
- query: z.ZodOptional<z.ZodNever>;
1253
+ export declare const zDeleteChartPath: z.ZodObject<{
1254
+ cluster_id: z.ZodString;
1255
+ chart_name: z.ZodString;
1136
1256
  }, z.core.$strip>;
1137
1257
  /**
1138
1258
  * Successfully deleted.
1139
1259
  */
1140
1260
  export declare const zDeleteChartResponse: z.ZodString;
1141
- export declare const zGetChartData: z.ZodObject<{
1142
- body: z.ZodOptional<z.ZodNever>;
1143
- path: z.ZodObject<{
1144
- cluster_id: z.ZodString;
1145
- chart_name: z.ZodString;
1146
- }, z.core.$strip>;
1147
- query: z.ZodOptional<z.ZodNever>;
1261
+ export declare const zGetChartPath: z.ZodObject<{
1262
+ cluster_id: z.ZodString;
1263
+ chart_name: z.ZodString;
1148
1264
  }, z.core.$strip>;
1149
1265
  /**
1150
1266
  * Returns a single object containing chart details.
@@ -1176,27 +1292,20 @@ export declare const zGetChartResponse: z.ZodObject<{
1176
1292
  updated_at: z.ZodString;
1177
1293
  ready: z.ZodBoolean;
1178
1294
  }, z.core.$strip>;
1179
- export declare const zUpdateChartData: z.ZodObject<{
1180
- body: z.ZodObject<{
1181
- values: z.ZodString;
1182
- version_channel: z.ZodString;
1183
- }, z.core.$strip>;
1184
- path: z.ZodObject<{
1185
- cluster_id: z.ZodString;
1186
- chart_name: z.ZodString;
1187
- }, z.core.$strip>;
1188
- query: z.ZodOptional<z.ZodNever>;
1295
+ export declare const zUpdateChartBody: z.ZodObject<{
1296
+ values: z.ZodString;
1297
+ version_channel: z.ZodString;
1298
+ }, z.core.$strip>;
1299
+ export declare const zUpdateChartPath: z.ZodObject<{
1300
+ cluster_id: z.ZodString;
1301
+ chart_name: z.ZodString;
1189
1302
  }, z.core.$strip>;
1190
1303
  /**
1191
1304
  * Successfully updated.
1192
1305
  */
1193
1306
  export declare const zUpdateChartResponse: z.ZodString;
1194
- export declare const zListFleetsData: z.ZodObject<{
1195
- body: z.ZodOptional<z.ZodNever>;
1196
- path: z.ZodObject<{
1197
- cluster_id: z.ZodString;
1198
- }, z.core.$strip>;
1199
- query: z.ZodOptional<z.ZodNever>;
1307
+ export declare const zListFleetsPath: z.ZodObject<{
1308
+ cluster_id: z.ZodString;
1200
1309
  }, z.core.$strip>;
1201
1310
  /**
1202
1311
  * An array of fleets
@@ -1219,53 +1328,42 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
1219
1328
  }, z.core.$strip>>;
1220
1329
  id: z.ZodString;
1221
1330
  }, z.core.$strip>>;
1222
- export declare const zCreateFleetData: z.ZodObject<{
1223
- body: z.ZodObject<{
1224
- limits: z.ZodOptional<z.ZodObject<{
1225
- cpu: z.ZodNumber;
1226
- }, z.core.$strip>>;
1227
- gcp: z.ZodOptional<z.ZodObject<{
1228
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1229
- project: z.ZodString;
1230
- }, z.core.$strip>>;
1231
- hetzner: z.ZodOptional<z.ZodObject<{
1232
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1233
- apiKey: z.ZodString;
1234
- }, z.core.$strip>>;
1235
- aws: z.ZodOptional<z.ZodObject<{
1236
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1237
- controllerRoleArn: z.ZodString;
1238
- }, z.core.$strip>>;
1239
- id: z.ZodString;
1240
- }, z.core.$strip>;
1241
- path: z.ZodObject<{
1242
- cluster_id: z.ZodString;
1243
- }, z.core.$strip>;
1244
- query: z.ZodOptional<z.ZodNever>;
1331
+ export declare const zCreateFleetBody: z.ZodObject<{
1332
+ limits: z.ZodOptional<z.ZodObject<{
1333
+ cpu: z.ZodNumber;
1334
+ }, z.core.$strip>>;
1335
+ gcp: z.ZodOptional<z.ZodObject<{
1336
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1337
+ project: z.ZodString;
1338
+ }, z.core.$strip>>;
1339
+ hetzner: z.ZodOptional<z.ZodObject<{
1340
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1341
+ apiKey: z.ZodString;
1342
+ }, z.core.$strip>>;
1343
+ aws: z.ZodOptional<z.ZodObject<{
1344
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1345
+ controllerRoleArn: z.ZodString;
1346
+ }, z.core.$strip>>;
1347
+ id: z.ZodString;
1348
+ }, z.core.$strip>;
1349
+ export declare const zCreateFleetPath: z.ZodObject<{
1350
+ cluster_id: z.ZodString;
1245
1351
  }, z.core.$strip>;
1246
1352
  /**
1247
1353
  * Successfully created. Returns created Fleet ID.
1248
1354
  */
1249
1355
  export declare const zCreateFleetResponse: z.ZodString;
1250
- export declare const zDeleteFleetData: z.ZodObject<{
1251
- body: z.ZodOptional<z.ZodNever>;
1252
- path: z.ZodObject<{
1253
- cluster_id: z.ZodString;
1254
- fleet_name: z.ZodString;
1255
- }, z.core.$strip>;
1256
- query: z.ZodOptional<z.ZodNever>;
1356
+ export declare const zDeleteFleetPath: z.ZodObject<{
1357
+ cluster_id: z.ZodString;
1358
+ fleet_name: z.ZodString;
1257
1359
  }, z.core.$strip>;
1258
1360
  /**
1259
1361
  * Successfully deleted.
1260
1362
  */
1261
1363
  export declare const zDeleteFleetResponse: z.ZodString;
1262
- export declare const zGetFleetData: z.ZodObject<{
1263
- body: z.ZodOptional<z.ZodNever>;
1264
- path: z.ZodObject<{
1265
- cluster_id: z.ZodString;
1266
- fleet_name: z.ZodString;
1267
- }, z.core.$strip>;
1268
- query: z.ZodOptional<z.ZodNever>;
1364
+ export declare const zGetFleetPath: z.ZodObject<{
1365
+ cluster_id: z.ZodString;
1366
+ fleet_name: z.ZodString;
1269
1367
  }, z.core.$strip>;
1270
1368
  /**
1271
1369
  * Returns a single object containing fleet details.
@@ -1288,45 +1386,33 @@ export declare const zGetFleetResponse: z.ZodObject<{
1288
1386
  }, z.core.$strip>>;
1289
1387
  id: z.ZodString;
1290
1388
  }, z.core.$strip>;
1291
- export declare const zUpdateFleetData: z.ZodObject<{
1292
- body: z.ZodObject<{
1293
- limits: z.ZodOptional<z.ZodObject<{
1294
- cpu: z.ZodNumber;
1295
- }, z.core.$strip>>;
1296
- gcp: z.ZodOptional<z.ZodObject<{
1297
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1298
- project: z.ZodString;
1299
- }, z.core.$strip>>;
1300
- hetzner: z.ZodOptional<z.ZodObject<{
1301
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1302
- apiKey: z.ZodString;
1303
- }, z.core.$strip>>;
1304
- aws: z.ZodOptional<z.ZodObject<{
1305
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1306
- controllerRoleArn: z.ZodString;
1307
- }, z.core.$strip>>;
1308
- }, z.core.$strip>;
1309
- path: z.ZodObject<{
1310
- cluster_id: z.ZodString;
1311
- fleet_name: z.ZodString;
1312
- }, z.core.$strip>;
1313
- query: z.ZodOptional<z.ZodNever>;
1389
+ export declare const zUpdateFleetBody: z.ZodObject<{
1390
+ limits: z.ZodOptional<z.ZodObject<{
1391
+ cpu: z.ZodNumber;
1392
+ }, z.core.$strip>>;
1393
+ gcp: z.ZodOptional<z.ZodObject<{
1394
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1395
+ project: z.ZodString;
1396
+ }, z.core.$strip>>;
1397
+ hetzner: z.ZodOptional<z.ZodObject<{
1398
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1399
+ apiKey: z.ZodString;
1400
+ }, z.core.$strip>>;
1401
+ aws: z.ZodOptional<z.ZodObject<{
1402
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1403
+ controllerRoleArn: z.ZodString;
1404
+ }, z.core.$strip>>;
1405
+ }, z.core.$strip>;
1406
+ export declare const zUpdateFleetPath: z.ZodObject<{
1407
+ cluster_id: z.ZodString;
1408
+ fleet_name: z.ZodString;
1314
1409
  }, z.core.$strip>;
1315
1410
  /**
1316
1411
  * Successfully updated.
1317
1412
  */
1318
1413
  export declare const zUpdateFleetResponse: z.ZodString;
1319
- export declare const zQueryClusterData: z.ZodObject<{
1320
- body: z.ZodOptional<z.ZodNever>;
1321
- path: z.ZodObject<{
1322
- cluster_id: z.ZodString;
1323
- }, z.core.$strip>;
1324
- query: z.ZodOptional<z.ZodNever>;
1325
- }, z.core.$strip>;
1326
- export declare const zListClustersData: z.ZodObject<{
1327
- body: z.ZodOptional<z.ZodNever>;
1328
- path: z.ZodOptional<z.ZodNever>;
1329
- query: z.ZodOptional<z.ZodNever>;
1414
+ export declare const zQueryClusterPath: z.ZodObject<{
1415
+ cluster_id: z.ZodString;
1330
1416
  }, z.core.$strip>;
1331
1417
  /**
1332
1418
  * An array of clusters
@@ -1337,13 +1423,12 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
1337
1423
  basic: "basic";
1338
1424
  pro: "pro";
1339
1425
  }>;
1340
- region: z.ZodOptional<z.ZodEnum<{
1341
- staging: "staging";
1426
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1427
+ "staging-1a": "staging-1a";
1342
1428
  "northamerica-central-1": "northamerica-central-1";
1343
1429
  "europe-central-1a": "europe-central-1a";
1344
1430
  "northamerica-central-1a": "northamerica-central-1a";
1345
- }>>;
1346
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1431
+ }>>>;
1347
1432
  id: z.ZodUUID;
1348
1433
  status: z.ZodEnum<{
1349
1434
  deleted: "deleted";
@@ -1357,51 +1442,48 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
1357
1442
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1358
1443
  "": "";
1359
1444
  }>]>>;
1445
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1446
+ "": "";
1447
+ }>]>>;
1360
1448
  certificate_ca: z.ZodOptional<z.ZodString>;
1361
1449
  version_current: z.ZodOptional<z.ZodString>;
1362
1450
  created_at: z.ZodOptional<z.ZodString>;
1363
1451
  updated_at: z.ZodOptional<z.ZodString>;
1364
1452
  ready: z.ZodOptional<z.ZodBoolean>;
1453
+ version_channel: z.ZodOptional<z.ZodString>;
1365
1454
  }, z.core.$strip>>;
1366
- export declare const zCreateClusterData: z.ZodObject<{
1367
- body: z.ZodObject<{
1368
- name: z.ZodString;
1369
- tier: z.ZodEnum<{
1370
- basic: "basic";
1371
- pro: "pro";
1372
- }>;
1373
- region: z.ZodOptional<z.ZodEnum<{
1374
- staging: "staging";
1375
- "northamerica-central-1": "northamerica-central-1";
1376
- "europe-central-1a": "europe-central-1a";
1377
- "northamerica-central-1a": "northamerica-central-1a";
1378
- }>>;
1379
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1380
- }, z.core.$strip>;
1381
- path: z.ZodOptional<z.ZodNever>;
1382
- query: z.ZodOptional<z.ZodNever>;
1455
+ export declare const zCreateClusterBody: z.ZodObject<{
1456
+ name: z.ZodString;
1457
+ tier: z.ZodEnum<{
1458
+ basic: "basic";
1459
+ pro: "pro";
1460
+ }>;
1461
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1462
+ "staging-1a": "staging-1a";
1463
+ "northamerica-central-1": "northamerica-central-1";
1464
+ "europe-central-1a": "europe-central-1a";
1465
+ "northamerica-central-1a": "northamerica-central-1a";
1466
+ }>>>;
1467
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1468
+ "1.x.x-cfke.x": "1.x.x-cfke.x";
1469
+ "1.31.x-cfke.x": "1.31.x-cfke.x";
1470
+ "1.32.x-cfke.x": "1.32.x-cfke.x";
1471
+ "1.33.x-cfke.x": "1.33.x-cfke.x";
1472
+ }>>>;
1383
1473
  }, z.core.$strip>;
1384
1474
  /**
1385
1475
  * Successfully created. Returns created Cluster ID.
1386
1476
  */
1387
1477
  export declare const zCreateClusterResponse: z.ZodString;
1388
- export declare const zDeleteClusterData: z.ZodObject<{
1389
- body: z.ZodOptional<z.ZodNever>;
1390
- path: z.ZodObject<{
1391
- cluster_id: z.ZodString;
1392
- }, z.core.$strip>;
1393
- query: z.ZodOptional<z.ZodNever>;
1478
+ export declare const zDeleteClusterPath: z.ZodObject<{
1479
+ cluster_id: z.ZodString;
1394
1480
  }, z.core.$strip>;
1395
1481
  /**
1396
1482
  * Successfully deleted.
1397
1483
  */
1398
1484
  export declare const zDeleteClusterResponse: z.ZodString;
1399
- export declare const zGetClusterData: z.ZodObject<{
1400
- body: z.ZodOptional<z.ZodNever>;
1401
- path: z.ZodObject<{
1402
- cluster_id: z.ZodString;
1403
- }, z.core.$strip>;
1404
- query: z.ZodOptional<z.ZodNever>;
1485
+ export declare const zGetClusterPath: z.ZodObject<{
1486
+ cluster_id: z.ZodString;
1405
1487
  }, z.core.$strip>;
1406
1488
  /**
1407
1489
  * Returns a single object containing cluster details.
@@ -1412,13 +1494,12 @@ export declare const zGetClusterResponse: z.ZodObject<{
1412
1494
  basic: "basic";
1413
1495
  pro: "pro";
1414
1496
  }>;
1415
- region: z.ZodOptional<z.ZodEnum<{
1416
- staging: "staging";
1497
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1498
+ "staging-1a": "staging-1a";
1417
1499
  "northamerica-central-1": "northamerica-central-1";
1418
1500
  "europe-central-1a": "europe-central-1a";
1419
1501
  "northamerica-central-1a": "northamerica-central-1a";
1420
- }>>;
1421
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1502
+ }>>>;
1422
1503
  id: z.ZodUUID;
1423
1504
  status: z.ZodEnum<{
1424
1505
  deleted: "deleted";
@@ -1432,25 +1513,26 @@ export declare const zGetClusterResponse: z.ZodObject<{
1432
1513
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1433
1514
  "": "";
1434
1515
  }>]>>;
1516
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1517
+ "": "";
1518
+ }>]>>;
1435
1519
  certificate_ca: z.ZodOptional<z.ZodString>;
1436
1520
  version_current: z.ZodOptional<z.ZodString>;
1437
1521
  created_at: z.ZodOptional<z.ZodString>;
1438
1522
  updated_at: z.ZodOptional<z.ZodString>;
1439
1523
  ready: z.ZodOptional<z.ZodBoolean>;
1524
+ version_channel: z.ZodOptional<z.ZodString>;
1440
1525
  }, z.core.$strip>;
1441
- export declare const zUpdateClusterData: z.ZodObject<{
1442
- body: z.ZodObject<{
1443
- name: z.ZodOptional<z.ZodString>;
1444
- tier: z.ZodEnum<{
1445
- basic: "basic";
1446
- pro: "pro";
1447
- }>;
1448
- version_channel: z.ZodOptional<z.ZodString>;
1449
- }, z.core.$strip>;
1450
- path: z.ZodObject<{
1451
- cluster_id: z.ZodString;
1452
- }, z.core.$strip>;
1453
- query: z.ZodOptional<z.ZodNever>;
1526
+ export declare const zUpdateClusterBody: z.ZodObject<{
1527
+ name: z.ZodOptional<z.ZodString>;
1528
+ tier: z.ZodEnum<{
1529
+ basic: "basic";
1530
+ pro: "pro";
1531
+ }>;
1532
+ version_channel: z.ZodOptional<z.ZodString>;
1533
+ }, z.core.$strip>;
1534
+ export declare const zUpdateClusterPath: z.ZodObject<{
1535
+ cluster_id: z.ZodString;
1454
1536
  }, z.core.$strip>;
1455
1537
  /**
1456
1538
  * Successfully updated. Returns updated cluster details.
@@ -1461,13 +1543,12 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
1461
1543
  basic: "basic";
1462
1544
  pro: "pro";
1463
1545
  }>;
1464
- region: z.ZodOptional<z.ZodEnum<{
1465
- staging: "staging";
1546
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1547
+ "staging-1a": "staging-1a";
1466
1548
  "northamerica-central-1": "northamerica-central-1";
1467
1549
  "europe-central-1a": "europe-central-1a";
1468
1550
  "northamerica-central-1a": "northamerica-central-1a";
1469
- }>>;
1470
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1551
+ }>>>;
1471
1552
  id: z.ZodUUID;
1472
1553
  status: z.ZodEnum<{
1473
1554
  deleted: "deleted";
@@ -1481,18 +1562,18 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
1481
1562
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1482
1563
  "": "";
1483
1564
  }>]>>;
1565
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1566
+ "": "";
1567
+ }>]>>;
1484
1568
  certificate_ca: z.ZodOptional<z.ZodString>;
1485
1569
  version_current: z.ZodOptional<z.ZodString>;
1486
1570
  created_at: z.ZodOptional<z.ZodString>;
1487
1571
  updated_at: z.ZodOptional<z.ZodString>;
1488
1572
  ready: z.ZodOptional<z.ZodBoolean>;
1573
+ version_channel: z.ZodOptional<z.ZodString>;
1489
1574
  }, z.core.$strip>;
1490
- export declare const zGetJoinInformationData: z.ZodObject<{
1491
- body: z.ZodOptional<z.ZodNever>;
1492
- path: z.ZodObject<{
1493
- cluster_id: z.ZodString;
1494
- }, z.core.$strip>;
1495
- query: z.ZodOptional<z.ZodNever>;
1575
+ export declare const zGetJoinInformationPath: z.ZodObject<{
1576
+ cluster_id: z.ZodString;
1496
1577
  }, z.core.$strip>;
1497
1578
  /**
1498
1579
  * An object of cluster join information
@@ -1500,6 +1581,7 @@ export declare const zGetJoinInformationData: z.ZodObject<{
1500
1581
  export declare const zGetJoinInformationResponse: z.ZodObject<{
1501
1582
  certificate_authority: z.ZodString;
1502
1583
  endpoint: z.ZodURL;
1584
+ cluster_dns: z.ZodString;
1503
1585
  auth_key: z.ZodString;
1504
1586
  bootstrap_token: z.ZodString;
1505
1587
  versions: z.ZodObject<{
@@ -1514,11 +1596,6 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
1514
1596
  gcp_workload_identity_provider: z.ZodString;
1515
1597
  }, z.core.$strip>;
1516
1598
  }, z.core.$strip>;
1517
- export declare const zListInvitesData: z.ZodObject<{
1518
- body: z.ZodOptional<z.ZodNever>;
1519
- path: z.ZodOptional<z.ZodNever>;
1520
- query: z.ZodOptional<z.ZodNever>;
1521
- }, z.core.$strip>;
1522
1599
  /**
1523
1600
  * An array of invites
1524
1601
  */
@@ -1529,12 +1606,8 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
1529
1606
  email: z.ZodOptional<z.ZodEmail>;
1530
1607
  code: z.ZodOptional<z.ZodString>;
1531
1608
  }, z.core.$strip>>;
1532
- export declare const zCreateInviteData: z.ZodObject<{
1533
- body: z.ZodObject<{
1534
- email: z.ZodOptional<z.ZodString>;
1535
- }, z.core.$strip>;
1536
- path: z.ZodOptional<z.ZodNever>;
1537
- query: z.ZodOptional<z.ZodNever>;
1609
+ export declare const zCreateInviteBody: z.ZodObject<{
1610
+ email: z.ZodOptional<z.ZodString>;
1538
1611
  }, z.core.$strip>;
1539
1612
  /**
1540
1613
  * Successfully created. Returns created invite details.
@@ -1546,12 +1619,8 @@ export declare const zCreateInviteResponse: z.ZodObject<{
1546
1619
  email: z.ZodOptional<z.ZodEmail>;
1547
1620
  code: z.ZodOptional<z.ZodString>;
1548
1621
  }, z.core.$strip>;
1549
- export declare const zGetInviteData: z.ZodObject<{
1550
- body: z.ZodOptional<z.ZodNever>;
1551
- path: z.ZodObject<{
1552
- code: z.ZodString;
1553
- }, z.core.$strip>;
1554
- query: z.ZodOptional<z.ZodNever>;
1622
+ export declare const zGetInvitePath: z.ZodObject<{
1623
+ code: z.ZodString;
1555
1624
  }, z.core.$strip>;
1556
1625
  /**
1557
1626
  * Returns a single object containing invite details.
@@ -1563,65 +1632,65 @@ export declare const zGetInviteResponse: z.ZodObject<{
1563
1632
  email: z.ZodOptional<z.ZodEmail>;
1564
1633
  code: z.ZodOptional<z.ZodString>;
1565
1634
  }, z.core.$strip>;
1566
- export declare const zDeleteInviteData: z.ZodObject<{
1567
- body: z.ZodOptional<z.ZodNever>;
1568
- path: z.ZodObject<{
1569
- email: z.ZodString;
1570
- }, z.core.$strip>;
1571
- query: z.ZodOptional<z.ZodNever>;
1572
- }, z.core.$strip>;
1573
- export declare const zListMarketplaceChartsData: z.ZodObject<{
1574
- body: z.ZodOptional<z.ZodNever>;
1575
- path: z.ZodOptional<z.ZodNever>;
1576
- query: z.ZodOptional<z.ZodNever>;
1635
+ export declare const zDeleteInvitePath: z.ZodObject<{
1636
+ email: z.ZodString;
1577
1637
  }, z.core.$strip>;
1578
1638
  /**
1579
1639
  * An array of chart listings in the marketplace.
1580
1640
  */
1581
1641
  export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
1582
- id: z.ZodString;
1583
1642
  name: z.ZodString;
1584
- developer: z.ZodString;
1585
- description: z.ZodString;
1586
- logoUrl: z.ZodString;
1587
- longDescription: z.ZodString;
1588
- categories: z.ZodArray<z.ZodString>;
1643
+ versions: z.ZodArray<z.ZodString>;
1589
1644
  version_channels: z.ZodArray<z.ZodString>;
1590
- value_schemas: z.ZodArray<z.ZodObject<{
1645
+ latestVersion: z.ZodString;
1646
+ metadata: z.ZodOptional<z.ZodObject<{
1647
+ name: z.ZodString;
1591
1648
  version: z.ZodString;
1592
- schema: z.ZodString;
1593
- placeholder: z.ZodString;
1649
+ description: z.ZodOptional<z.ZodString>;
1650
+ appVersion: z.ZodOptional<z.ZodString>;
1651
+ apiVersion: z.ZodOptional<z.ZodString>;
1652
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
1653
+ home: z.ZodOptional<z.ZodString>;
1654
+ icon: z.ZodOptional<z.ZodString>;
1655
+ sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
1656
+ maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1657
+ name: z.ZodString;
1658
+ email: z.ZodOptional<z.ZodString>;
1659
+ }, z.core.$strip>>>;
1594
1660
  }, z.core.$strip>>;
1595
1661
  }, z.core.$strip>>;
1596
- export declare const zGetMarketplaceChartData: z.ZodObject<{
1597
- body: z.ZodOptional<z.ZodNever>;
1598
- path: z.ZodObject<{
1599
- listing_id: z.ZodString;
1600
- }, z.core.$strip>;
1601
- query: z.ZodOptional<z.ZodNever>;
1662
+ export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
1663
+ chart_name: z.ZodString;
1664
+ version_channel: z.ZodString;
1602
1665
  }, z.core.$strip>;
1603
1666
  /**
1604
- * Returns an object containing the chart listing details.
1667
+ * Returns an object containing the chart files for the latest matching version.
1605
1668
  */
1606
- export declare const zGetMarketplaceChartResponse: z.ZodObject<{
1607
- id: z.ZodString;
1608
- name: z.ZodString;
1609
- developer: z.ZodString;
1610
- description: z.ZodString;
1611
- logoUrl: z.ZodString;
1612
- longDescription: z.ZodString;
1613
- categories: z.ZodArray<z.ZodString>;
1614
- version_channels: z.ZodArray<z.ZodString>;
1615
- value_schemas: z.ZodArray<z.ZodObject<{
1616
- version: z.ZodString;
1617
- schema: z.ZodString;
1618
- placeholder: z.ZodString;
1619
- }, z.core.$strip>>;
1669
+ export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
1670
+ chartYaml: z.ZodOptional<z.ZodString>;
1671
+ valuesYaml: z.ZodOptional<z.ZodString>;
1672
+ valuesSchemaJson: z.ZodOptional<z.ZodString>;
1620
1673
  }, z.core.$strip>;
1621
- export declare const zGetOrganizationData: z.ZodObject<{
1622
- body: z.ZodOptional<z.ZodNever>;
1623
- path: z.ZodOptional<z.ZodNever>;
1624
- query: z.ZodOptional<z.ZodNever>;
1674
+ /**
1675
+ * JSON-RPC 2.0 request payload
1676
+ */
1677
+ export declare const zPostMcpBody: z.ZodObject<{
1678
+ jsonrpc: z.ZodOptional<z.ZodString>;
1679
+ method: z.ZodOptional<z.ZodString>;
1680
+ id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
1681
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1682
+ }, z.core.$strip>;
1683
+ /**
1684
+ * JSON-RPC 2.0 success or error response
1685
+ */
1686
+ export declare const zPostMcpResponse: z.ZodObject<{
1687
+ jsonrpc: z.ZodOptional<z.ZodString>;
1688
+ id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
1689
+ result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1690
+ error: z.ZodOptional<z.ZodObject<{
1691
+ code: z.ZodOptional<z.ZodInt>;
1692
+ message: z.ZodOptional<z.ZodString>;
1693
+ }, z.core.$strip>>;
1625
1694
  }, z.core.$strip>;
1626
1695
  /**
1627
1696
  * Returns a single object containing organization details.
@@ -1642,6 +1711,7 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
1642
1711
  id: z.ZodString;
1643
1712
  label: z.ZodString;
1644
1713
  }, z.core.$strip>>;
1714
+ cfcr_storage_gb: z.ZodInt;
1645
1715
  }, z.core.$strip>;
1646
1716
  status: z.ZodEnum<{
1647
1717
  active: "active";
@@ -1649,22 +1719,277 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
1649
1719
  suspended: "suspended";
1650
1720
  }>;
1651
1721
  }, z.core.$strip>;
1652
- export declare const zCreateOrganizationData: z.ZodObject<{
1653
- body: z.ZodObject<{
1654
- email: z.ZodEmail;
1655
- first_name: z.ZodString;
1656
- last_name: z.ZodString;
1657
- company_name: z.ZodString;
1658
- password: z.ZodString;
1659
- }, z.core.$strip>;
1660
- path: z.ZodOptional<z.ZodNever>;
1661
- query: z.ZodOptional<z.ZodNever>;
1722
+ export declare const zCreateOrganizationBody: z.ZodObject<{
1723
+ email: z.ZodEmail;
1724
+ first_name: z.ZodString;
1725
+ last_name: z.ZodString;
1726
+ company_name: z.ZodString;
1727
+ password: z.ZodString;
1662
1728
  }, z.core.$strip>;
1663
- export declare const zListTokensData: z.ZodObject<{
1664
- body: z.ZodOptional<z.ZodNever>;
1665
- path: z.ZodOptional<z.ZodNever>;
1666
- query: z.ZodOptional<z.ZodNever>;
1729
+ /**
1730
+ * List of repositories
1731
+ */
1732
+ export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
1733
+ name: z.ZodString;
1734
+ region: z.ZodString;
1735
+ uri: z.ZodString;
1736
+ }, z.core.$strip>>;
1737
+ export declare const zListTagsPath: z.ZodObject<{
1738
+ region: z.ZodString;
1739
+ repository: z.ZodString;
1667
1740
  }, z.core.$strip>;
1741
+ /**
1742
+ * Repository with tags
1743
+ */
1744
+ export declare const zListTagsResponse: z.ZodObject<{
1745
+ name: z.ZodString;
1746
+ region: z.ZodString;
1747
+ uri: z.ZodString;
1748
+ tags: z.ZodArray<z.ZodObject<{
1749
+ name: z.ZodString;
1750
+ size: z.ZodNumber;
1751
+ mediaType: z.ZodOptional<z.ZodString>;
1752
+ platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
1753
+ }, z.core.$strip>>;
1754
+ totalSize: z.ZodNumber;
1755
+ }, z.core.$strip>;
1756
+ export declare const zDeleteTagPath: z.ZodObject<{
1757
+ region: z.ZodString;
1758
+ repository: z.ZodString;
1759
+ tag: z.ZodString;
1760
+ }, z.core.$strip>;
1761
+ export declare const zGetTagPath: z.ZodObject<{
1762
+ region: z.ZodString;
1763
+ repository: z.ZodString;
1764
+ tag: z.ZodString;
1765
+ }, z.core.$strip>;
1766
+ /**
1767
+ * Tag details
1768
+ */
1769
+ export declare const zGetTagResponse: z.ZodObject<{
1770
+ name: z.ZodString;
1771
+ digest: z.ZodString;
1772
+ mediaType: z.ZodOptional<z.ZodString>;
1773
+ config: z.ZodOptional<z.ZodObject<{
1774
+ size: z.ZodNumber;
1775
+ }, z.core.$strip>>;
1776
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1777
+ digest: z.ZodOptional<z.ZodString>;
1778
+ size: z.ZodNumber;
1779
+ }, z.core.$strip>>>;
1780
+ manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
1781
+ digest: z.ZodString;
1782
+ platform: z.ZodOptional<z.ZodObject<{
1783
+ architecture: z.ZodString;
1784
+ os: z.ZodString;
1785
+ variant: z.ZodOptional<z.ZodString>;
1786
+ }, z.core.$strip>>;
1787
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1788
+ digest: z.ZodOptional<z.ZodString>;
1789
+ size: z.ZodNumber;
1790
+ }, z.core.$strip>>>;
1791
+ size: z.ZodOptional<z.ZodNumber>;
1792
+ }, z.core.$strip>>>;
1793
+ size: z.ZodNumber;
1794
+ region: z.ZodString;
1795
+ repository: z.ZodString;
1796
+ uri: z.ZodString;
1797
+ }, z.core.$strip>;
1798
+ /**
1799
+ * Tickets for the organization.
1800
+ */
1801
+ export declare const zListTicketsResponse: z.ZodObject<{
1802
+ items: z.ZodArray<z.ZodObject<{
1803
+ id: z.ZodString;
1804
+ status: z.ZodEnum<{
1805
+ closed: "closed";
1806
+ waiting_on_us: "waiting_on_us";
1807
+ waiting_on_user: "waiting_on_user";
1808
+ }>;
1809
+ category: z.ZodEnum<{
1810
+ billing: "billing";
1811
+ technical: "technical";
1812
+ general: "general";
1813
+ }>;
1814
+ summary: z.ZodString;
1815
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1816
+ date_created: z.ZodISODateTime;
1817
+ date_updated: z.ZodISODateTime;
1818
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1819
+ id: z.ZodString;
1820
+ type: z.ZodEnum<{
1821
+ customer_reply: "customer_reply";
1822
+ agent_reply: "agent_reply";
1823
+ }>;
1824
+ body: z.ZodString;
1825
+ author_first_name: z.ZodOptional<z.ZodString>;
1826
+ author_last_name: z.ZodOptional<z.ZodString>;
1827
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1828
+ id: z.ZodString;
1829
+ filename: z.ZodString;
1830
+ content_type: z.ZodString;
1831
+ size: z.ZodInt;
1832
+ }, z.core.$strip>>>;
1833
+ date_created: z.ZodISODateTime;
1834
+ }, z.core.$strip>>>;
1835
+ }, z.core.$strip>>;
1836
+ }, z.core.$strip>;
1837
+ export declare const zCreateTicketBody: z.ZodObject<{
1838
+ payload: z.ZodOptional<z.ZodString>;
1839
+ attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
1840
+ }, z.core.$strip>;
1841
+ /**
1842
+ * Ticket created.
1843
+ */
1844
+ export declare const zCreateTicketResponse: z.ZodObject<{
1845
+ id: z.ZodString;
1846
+ status: z.ZodEnum<{
1847
+ closed: "closed";
1848
+ waiting_on_us: "waiting_on_us";
1849
+ waiting_on_user: "waiting_on_user";
1850
+ }>;
1851
+ category: z.ZodEnum<{
1852
+ billing: "billing";
1853
+ technical: "technical";
1854
+ general: "general";
1855
+ }>;
1856
+ summary: z.ZodString;
1857
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1858
+ date_created: z.ZodISODateTime;
1859
+ date_updated: z.ZodISODateTime;
1860
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1861
+ id: z.ZodString;
1862
+ type: z.ZodEnum<{
1863
+ customer_reply: "customer_reply";
1864
+ agent_reply: "agent_reply";
1865
+ }>;
1866
+ body: z.ZodString;
1867
+ author_first_name: z.ZodOptional<z.ZodString>;
1868
+ author_last_name: z.ZodOptional<z.ZodString>;
1869
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1870
+ id: z.ZodString;
1871
+ filename: z.ZodString;
1872
+ content_type: z.ZodString;
1873
+ size: z.ZodInt;
1874
+ }, z.core.$strip>>>;
1875
+ date_created: z.ZodISODateTime;
1876
+ }, z.core.$strip>>>;
1877
+ }, z.core.$strip>;
1878
+ export declare const zCloseTicketPath: z.ZodObject<{
1879
+ ticket_id: z.ZodString;
1880
+ }, z.core.$strip>;
1881
+ /**
1882
+ * Ticket closed.
1883
+ */
1884
+ export declare const zCloseTicketResponse: z.ZodObject<{
1885
+ id: z.ZodString;
1886
+ status: z.ZodEnum<{
1887
+ closed: "closed";
1888
+ waiting_on_us: "waiting_on_us";
1889
+ waiting_on_user: "waiting_on_user";
1890
+ }>;
1891
+ category: z.ZodEnum<{
1892
+ billing: "billing";
1893
+ technical: "technical";
1894
+ general: "general";
1895
+ }>;
1896
+ summary: z.ZodString;
1897
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1898
+ date_created: z.ZodISODateTime;
1899
+ date_updated: z.ZodISODateTime;
1900
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1901
+ id: z.ZodString;
1902
+ type: z.ZodEnum<{
1903
+ customer_reply: "customer_reply";
1904
+ agent_reply: "agent_reply";
1905
+ }>;
1906
+ body: z.ZodString;
1907
+ author_first_name: z.ZodOptional<z.ZodString>;
1908
+ author_last_name: z.ZodOptional<z.ZodString>;
1909
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1910
+ id: z.ZodString;
1911
+ filename: z.ZodString;
1912
+ content_type: z.ZodString;
1913
+ size: z.ZodInt;
1914
+ }, z.core.$strip>>>;
1915
+ date_created: z.ZodISODateTime;
1916
+ }, z.core.$strip>>>;
1917
+ }, z.core.$strip>;
1918
+ export declare const zGetTicketPath: z.ZodObject<{
1919
+ ticket_id: z.ZodString;
1920
+ }, z.core.$strip>;
1921
+ /**
1922
+ * Ticket with messages (internal notes excluded).
1923
+ */
1924
+ export declare const zGetTicketResponse: z.ZodObject<{
1925
+ id: z.ZodString;
1926
+ status: z.ZodEnum<{
1927
+ closed: "closed";
1928
+ waiting_on_us: "waiting_on_us";
1929
+ waiting_on_user: "waiting_on_user";
1930
+ }>;
1931
+ category: z.ZodEnum<{
1932
+ billing: "billing";
1933
+ technical: "technical";
1934
+ general: "general";
1935
+ }>;
1936
+ summary: z.ZodString;
1937
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1938
+ date_created: z.ZodISODateTime;
1939
+ date_updated: z.ZodISODateTime;
1940
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1941
+ id: z.ZodString;
1942
+ type: z.ZodEnum<{
1943
+ customer_reply: "customer_reply";
1944
+ agent_reply: "agent_reply";
1945
+ }>;
1946
+ body: z.ZodString;
1947
+ author_first_name: z.ZodOptional<z.ZodString>;
1948
+ author_last_name: z.ZodOptional<z.ZodString>;
1949
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1950
+ id: z.ZodString;
1951
+ filename: z.ZodString;
1952
+ content_type: z.ZodString;
1953
+ size: z.ZodInt;
1954
+ }, z.core.$strip>>>;
1955
+ date_created: z.ZodISODateTime;
1956
+ }, z.core.$strip>>>;
1957
+ }, z.core.$strip>;
1958
+ export declare const zReplyTicketBody: z.ZodObject<{
1959
+ payload: z.ZodOptional<z.ZodString>;
1960
+ attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
1961
+ }, z.core.$strip>;
1962
+ export declare const zReplyTicketPath: z.ZodObject<{
1963
+ ticket_id: z.ZodString;
1964
+ }, z.core.$strip>;
1965
+ /**
1966
+ * Reply appended.
1967
+ */
1968
+ export declare const zReplyTicketResponse: z.ZodObject<{
1969
+ id: z.ZodString;
1970
+ type: z.ZodEnum<{
1971
+ customer_reply: "customer_reply";
1972
+ agent_reply: "agent_reply";
1973
+ }>;
1974
+ body: z.ZodString;
1975
+ author_first_name: z.ZodOptional<z.ZodString>;
1976
+ author_last_name: z.ZodOptional<z.ZodString>;
1977
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1978
+ id: z.ZodString;
1979
+ filename: z.ZodString;
1980
+ content_type: z.ZodString;
1981
+ size: z.ZodInt;
1982
+ }, z.core.$strip>>>;
1983
+ date_created: z.ZodISODateTime;
1984
+ }, z.core.$strip>;
1985
+ export declare const zGetTicketAttachmentPath: z.ZodObject<{
1986
+ ticket_id: z.ZodString;
1987
+ attachment_id: z.ZodString;
1988
+ }, z.core.$strip>;
1989
+ /**
1990
+ * Attachment binary stream.
1991
+ */
1992
+ export declare const zGetTicketAttachmentResponse: z.ZodString;
1668
1993
  /**
1669
1994
  * Returns a list of access token details with masked secrets.
1670
1995
  */
@@ -1678,16 +2003,12 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
1678
2003
  secret: z.ZodOptional<z.ZodString>;
1679
2004
  date_created: z.ZodISODateTime;
1680
2005
  }, z.core.$strip>>;
1681
- export declare const zCreateTokenData: z.ZodObject<{
1682
- body: z.ZodObject<{
1683
- name: z.ZodString;
1684
- role: z.ZodEnum<{
1685
- Administrator: "Administrator";
1686
- User: "User";
1687
- }>;
1688
- }, z.core.$strip>;
1689
- path: z.ZodOptional<z.ZodNever>;
1690
- query: z.ZodOptional<z.ZodNever>;
2006
+ export declare const zCreateTokenBody: z.ZodObject<{
2007
+ name: z.ZodString;
2008
+ role: z.ZodEnum<{
2009
+ Administrator: "Administrator";
2010
+ User: "User";
2011
+ }>;
1691
2012
  }, z.core.$strip>;
1692
2013
  /**
1693
2014
  * Successfully created. Returns created token details with unmasked/raw secret.
@@ -1702,19 +2023,11 @@ export declare const zCreateTokenResponse: z.ZodObject<{
1702
2023
  secret: z.ZodOptional<z.ZodString>;
1703
2024
  date_created: z.ZodISODateTime;
1704
2025
  }, z.core.$strip>;
1705
- export declare const zDeleteTokenData: z.ZodObject<{
1706
- body: z.ZodOptional<z.ZodNever>;
1707
- path: z.ZodObject<{
1708
- token_id: z.ZodString;
1709
- }, z.core.$strip>;
1710
- query: z.ZodOptional<z.ZodNever>;
2026
+ export declare const zDeleteTokenPath: z.ZodObject<{
2027
+ token_id: z.ZodString;
1711
2028
  }, z.core.$strip>;
1712
- export declare const zGetTokenData: z.ZodObject<{
1713
- body: z.ZodOptional<z.ZodNever>;
1714
- path: z.ZodObject<{
1715
- token_id: z.ZodString;
1716
- }, z.core.$strip>;
1717
- query: z.ZodOptional<z.ZodNever>;
2029
+ export declare const zGetTokenPath: z.ZodObject<{
2030
+ token_id: z.ZodString;
1718
2031
  }, z.core.$strip>;
1719
2032
  /**
1720
2033
  * Returns access token details with masked secret.
@@ -1729,18 +2042,15 @@ export declare const zGetTokenResponse: z.ZodObject<{
1729
2042
  secret: z.ZodOptional<z.ZodString>;
1730
2043
  date_created: z.ZodISODateTime;
1731
2044
  }, z.core.$strip>;
1732
- export declare const zUpdateTokenData: z.ZodObject<{
1733
- body: z.ZodObject<{
1734
- name: z.ZodOptional<z.ZodString>;
1735
- role: z.ZodOptional<z.ZodEnum<{
1736
- Administrator: "Administrator";
1737
- User: "User";
1738
- }>>;
1739
- }, z.core.$strip>;
1740
- path: z.ZodObject<{
1741
- token_id: z.ZodString;
1742
- }, z.core.$strip>;
1743
- query: z.ZodOptional<z.ZodNever>;
2045
+ export declare const zUpdateTokenBody: z.ZodObject<{
2046
+ name: z.ZodOptional<z.ZodString>;
2047
+ role: z.ZodOptional<z.ZodEnum<{
2048
+ Administrator: "Administrator";
2049
+ User: "User";
2050
+ }>>;
2051
+ }, z.core.$strip>;
2052
+ export declare const zUpdateTokenPath: z.ZodObject<{
2053
+ token_id: z.ZodString;
1744
2054
  }, z.core.$strip>;
1745
2055
  /**
1746
2056
  * Successfully updated. Returns updated token details with masked secret.
@@ -1755,12 +2065,8 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
1755
2065
  secret: z.ZodOptional<z.ZodString>;
1756
2066
  date_created: z.ZodISODateTime;
1757
2067
  }, z.core.$strip>;
1758
- export declare const zRegenerateTokenData: z.ZodObject<{
1759
- body: z.ZodOptional<z.ZodNever>;
1760
- path: z.ZodObject<{
1761
- token_id: z.ZodString;
1762
- }, z.core.$strip>;
1763
- query: z.ZodOptional<z.ZodNever>;
2068
+ export declare const zRegenerateTokenPath: z.ZodObject<{
2069
+ token_id: z.ZodString;
1764
2070
  }, z.core.$strip>;
1765
2071
  /**
1766
2072
  * Successfully updated. Returns updated token details with unmasked / raw secret.
@@ -1775,12 +2081,8 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
1775
2081
  secret: z.ZodOptional<z.ZodString>;
1776
2082
  date_created: z.ZodISODateTime;
1777
2083
  }, z.core.$strip>;
1778
- export declare const zListUserOrganizationsData: z.ZodObject<{
1779
- body: z.ZodOptional<z.ZodNever>;
1780
- path: z.ZodObject<{
1781
- email: z.ZodString;
1782
- }, z.core.$strip>;
1783
- query: z.ZodOptional<z.ZodNever>;
2084
+ export declare const zListUserOrganizationsPath: z.ZodObject<{
2085
+ email: z.ZodString;
1784
2086
  }, z.core.$strip>;
1785
2087
  /**
1786
2088
  * An array of organizations the user belongs to.
@@ -1789,11 +2091,6 @@ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
1789
2091
  realm: z.ZodOptional<z.ZodString>;
1790
2092
  displayName: z.ZodOptional<z.ZodString>;
1791
2093
  }, z.core.$strip>>;
1792
- export declare const zListUsersData: z.ZodObject<{
1793
- body: z.ZodOptional<z.ZodNever>;
1794
- path: z.ZodOptional<z.ZodNever>;
1795
- query: z.ZodOptional<z.ZodNever>;
1796
- }, z.core.$strip>;
1797
2094
  /**
1798
2095
  * An array of users
1799
2096
  */
@@ -1812,24 +2109,20 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
1812
2109
  id: z.ZodUUID;
1813
2110
  date_created: z.ZodISODateTime;
1814
2111
  }, z.core.$strip>>;
1815
- export declare const zCreateUserData: z.ZodObject<{
1816
- body: z.ZodObject<{
1817
- email: z.ZodEmail;
1818
- first_name: z.ZodString;
1819
- last_name: z.ZodString;
1820
- code: z.ZodString;
1821
- password: z.ZodString;
1822
- status: z.ZodOptional<z.ZodEnum<{
1823
- active: "active";
1824
- inactive: "inactive";
1825
- }>>;
1826
- role: z.ZodOptional<z.ZodEnum<{
1827
- Administrator: "Administrator";
1828
- User: "User";
1829
- }>>;
1830
- }, z.core.$strip>;
1831
- path: z.ZodOptional<z.ZodNever>;
1832
- query: z.ZodOptional<z.ZodNever>;
2112
+ export declare const zCreateUserBody: z.ZodObject<{
2113
+ email: z.ZodEmail;
2114
+ first_name: z.ZodString;
2115
+ last_name: z.ZodString;
2116
+ code: z.ZodString;
2117
+ password: z.ZodString;
2118
+ status: z.ZodOptional<z.ZodEnum<{
2119
+ active: "active";
2120
+ inactive: "inactive";
2121
+ }>>;
2122
+ role: z.ZodOptional<z.ZodEnum<{
2123
+ Administrator: "Administrator";
2124
+ User: "User";
2125
+ }>>;
1833
2126
  }, z.core.$strip>;
1834
2127
  /**
1835
2128
  * Successfully created. Returns created user details.
@@ -1849,12 +2142,8 @@ export declare const zCreateUserResponse: z.ZodObject<{
1849
2142
  id: z.ZodUUID;
1850
2143
  date_created: z.ZodISODateTime;
1851
2144
  }, z.core.$strip>;
1852
- export declare const zDeleteUserData: z.ZodObject<{
1853
- body: z.ZodOptional<z.ZodNever>;
1854
- path: z.ZodObject<{
1855
- user_id: z.ZodString;
1856
- }, z.core.$strip>;
1857
- query: z.ZodOptional<z.ZodNever>;
2145
+ export declare const zDeleteUserPath: z.ZodObject<{
2146
+ user_id: z.ZodString;
1858
2147
  }, z.core.$strip>;
1859
2148
  /**
1860
2149
  * User profile information
@@ -1874,12 +2163,8 @@ export declare const zDeleteUserResponse: z.ZodObject<{
1874
2163
  id: z.ZodUUID;
1875
2164
  date_created: z.ZodISODateTime;
1876
2165
  }, z.core.$strip>;
1877
- export declare const zGetUserData: z.ZodObject<{
1878
- body: z.ZodOptional<z.ZodNever>;
1879
- path: z.ZodObject<{
1880
- user_id: z.ZodString;
1881
- }, z.core.$strip>;
1882
- query: z.ZodOptional<z.ZodNever>;
2166
+ export declare const zGetUserPath: z.ZodObject<{
2167
+ user_id: z.ZodString;
1883
2168
  }, z.core.$strip>;
1884
2169
  /**
1885
2170
  * User profile information
@@ -1899,24 +2184,21 @@ export declare const zGetUserResponse: z.ZodObject<{
1899
2184
  id: z.ZodUUID;
1900
2185
  date_created: z.ZodISODateTime;
1901
2186
  }, z.core.$strip>;
1902
- export declare const zUpdateUserData: z.ZodObject<{
1903
- body: z.ZodObject<{
1904
- email: z.ZodOptional<z.ZodEmail>;
1905
- first_name: z.ZodOptional<z.ZodString>;
1906
- last_name: z.ZodOptional<z.ZodString>;
1907
- role: z.ZodOptional<z.ZodEnum<{
1908
- Administrator: "Administrator";
1909
- User: "User";
1910
- }>>;
1911
- status: z.ZodOptional<z.ZodEnum<{
1912
- active: "active";
1913
- inactive: "inactive";
1914
- }>>;
1915
- }, z.core.$strip>;
1916
- path: z.ZodObject<{
1917
- user_id: z.ZodString;
1918
- }, z.core.$strip>;
1919
- query: z.ZodOptional<z.ZodNever>;
2187
+ export declare const zUpdateUserBody: z.ZodObject<{
2188
+ email: z.ZodOptional<z.ZodEmail>;
2189
+ first_name: z.ZodOptional<z.ZodString>;
2190
+ last_name: z.ZodOptional<z.ZodString>;
2191
+ role: z.ZodOptional<z.ZodEnum<{
2192
+ Administrator: "Administrator";
2193
+ User: "User";
2194
+ }>>;
2195
+ status: z.ZodOptional<z.ZodEnum<{
2196
+ active: "active";
2197
+ inactive: "inactive";
2198
+ }>>;
2199
+ }, z.core.$strip>;
2200
+ export declare const zUpdateUserPath: z.ZodObject<{
2201
+ user_id: z.ZodString;
1920
2202
  }, z.core.$strip>;
1921
2203
  /**
1922
2204
  * Successfully created. Returns created user details.