@cloudfleet/sdk 0.0.1-028b8fa → 0.0.1-03062e4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/zod.gen.d.ts CHANGED
@@ -172,22 +172,7 @@ export declare const zChart: z.ZodObject<{
172
172
  name: z.ZodString;
173
173
  namespace: z.ZodString;
174
174
  chart: z.ZodString;
175
- status: z.ZodEnum<{
176
- InstallSucceeded: "InstallSucceeded";
177
- InstallFailed: "InstallFailed";
178
- UpgradeSucceeded: "UpgradeSucceeded";
179
- UpgradeFailed: "UpgradeFailed";
180
- TestSucceeded: "TestSucceeded";
181
- TestFailed: "TestFailed";
182
- RollbackSucceeded: "RollbackSucceeded";
183
- RollbackFailed: "RollbackFailed";
184
- UninstallSucceeded: "UninstallSucceeded";
185
- UninstallFailed: "UninstallFailed";
186
- ArtifactFailed: "ArtifactFailed";
187
- DependencyNotReady: "DependencyNotReady";
188
- Progressing: "Progressing";
189
- SourceNotReady: "SourceNotReady";
190
- }>;
175
+ status: z.ZodString;
191
176
  version_current: z.ZodString;
192
177
  created_at: z.ZodString;
193
178
  updated_at: z.ZodString;
@@ -197,29 +182,44 @@ export declare const zChartUpdateInput: z.ZodObject<{
197
182
  values: z.ZodString;
198
183
  version_channel: z.ZodString;
199
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
+ */
200
188
  export declare const zClusterCreateInput: z.ZodObject<{
201
189
  name: z.ZodString;
202
- tier: z.ZodEnum<{
190
+ tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
203
191
  basic: "basic";
204
192
  pro: "pro";
205
- }>;
206
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
207
- "staging-1a": "staging-1a";
208
- "northamerica-central-1": "northamerica-central-1";
209
- "europe-central-1a": "europe-central-1a";
210
- "northamerica-central-1a": "northamerica-central-1a";
211
193
  }>>>;
212
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
213
- "1.x.x-cfke.x": "1.x.x-cfke.x";
214
- "1.31.x-cfke.x": "1.31.x-cfke.x";
215
- "1.32.x-cfke.x": "1.32.x-cfke.x";
216
- "1.33.x-cfke.x": "1.33.x-cfke.x";
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";
217
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>>>;
218
217
  }, z.core.$strip>;
219
218
  export declare const zClusterJoinInformation: z.ZodObject<{
220
219
  certificate_authority: z.ZodString;
221
220
  endpoint: z.ZodURL;
222
221
  cluster_dns: z.ZodString;
222
+ pod_cidr: z.ZodString;
223
223
  auth_key: z.ZodString;
224
224
  bootstrap_token: z.ZodString;
225
225
  versions: z.ZodObject<{
@@ -234,23 +234,40 @@ export declare const zClusterJoinInformation: z.ZodObject<{
234
234
  gcp_workload_identity_provider: z.ZodString;
235
235
  }, z.core.$strip>;
236
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
+ */
237
240
  export declare const zCluster: z.ZodObject<{
238
241
  name: z.ZodString;
239
- tier: z.ZodEnum<{
242
+ tier: z.ZodDefault<z.ZodEnum<{
240
243
  basic: "basic";
241
244
  pro: "pro";
242
- }>;
243
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
244
- "staging-1a": "staging-1a";
245
- "northamerica-central-1": "northamerica-central-1";
246
- "europe-central-1a": "europe-central-1a";
247
- "northamerica-central-1a": "northamerica-central-1a";
248
- }>>>;
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>>;
249
269
  id: z.ZodUUID;
250
270
  status: z.ZodEnum<{
251
- deleted: "deleted";
252
- failed: "failed";
253
- active: "active";
254
271
  disabled: "disabled";
255
272
  creating: "creating";
256
273
  deployed: "deployed";
@@ -266,17 +283,36 @@ export declare const zCluster: z.ZodObject<{
266
283
  version_current: z.ZodOptional<z.ZodString>;
267
284
  created_at: z.ZodOptional<z.ZodString>;
268
285
  updated_at: z.ZodOptional<z.ZodString>;
269
- ready: z.ZodOptional<z.ZodBoolean>;
270
- version_channel: z.ZodOptional<z.ZodString>;
286
+ ready: z.ZodBoolean;
271
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
+ */
272
291
  export declare const zClusterUpdateInput: z.ZodObject<{
273
- name: z.ZodOptional<z.ZodString>;
274
- tier: z.ZodEnum<{
292
+ name: z.ZodString;
293
+ tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
275
294
  basic: "basic";
276
295
  pro: "pro";
277
- }>;
278
- 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>>>;
279
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
+ */
280
316
  export declare const zFleetCreateInput: z.ZodObject<{
281
317
  limits: z.ZodOptional<z.ZodObject<{
282
318
  cpu: z.ZodOptional<z.ZodInt>;
@@ -293,7 +329,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
293
329
  enabled: z.ZodBoolean;
294
330
  controllerRoleArn: z.ZodOptional<z.ZodString>;
295
331
  }, z.core.$strip>>;
296
- constraints: z.ZodOptional<z.ZodObject<{
332
+ constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
297
333
  'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
298
334
  "on-demand": "on-demand";
299
335
  spot: "spot";
@@ -302,7 +338,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
302
338
  amd64: "amd64";
303
339
  arm64: "arm64";
304
340
  }>>>>;
305
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
341
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
306
342
  p3: "p3";
307
343
  cx: "cx";
308
344
  h1: "h1";
@@ -461,8 +497,8 @@ export declare const zFleetCreateInput: z.ZodObject<{
461
497
  x8g: "x8g";
462
498
  z1d: "z1d";
463
499
  z3: "z3";
464
- }>>>;
465
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
500
+ }>>>>;
501
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
466
502
  "africa-south1": "africa-south1";
467
503
  "ap-northeast-1": "ap-northeast-1";
468
504
  "ap-northeast-2": "ap-northeast-2";
@@ -527,14 +563,17 @@ export declare const zFleetCreateInput: z.ZodObject<{
527
563
  "us-west2": "us-west2";
528
564
  "us-west3": "us-west3";
529
565
  "us-west4": "us-west4";
530
- }>>>;
531
- }, z.core.$strip>>;
566
+ }>>>>;
567
+ }, z.core.$strip>>>;
532
568
  scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
533
569
  aggressive: "aggressive";
534
570
  conservative: "conservative";
535
571
  }>>>;
536
572
  id: z.ZodString;
537
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
+ */
538
577
  export declare const zFleet: z.ZodObject<{
539
578
  limits: z.ZodOptional<z.ZodObject<{
540
579
  cpu: z.ZodOptional<z.ZodInt>;
@@ -551,16 +590,16 @@ export declare const zFleet: z.ZodObject<{
551
590
  enabled: z.ZodBoolean;
552
591
  controllerRoleArn: z.ZodOptional<z.ZodString>;
553
592
  }, z.core.$strip>>;
554
- constraints: z.ZodOptional<z.ZodObject<{
555
- 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
593
+ constraints: z.ZodDefault<z.ZodObject<{
594
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
556
595
  "on-demand": "on-demand";
557
596
  spot: "spot";
558
- }>>>>;
559
- 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
597
+ }>>>;
598
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
560
599
  amd64: "amd64";
561
600
  arm64: "arm64";
562
- }>>>>;
563
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
601
+ }>>>;
602
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
564
603
  p3: "p3";
565
604
  cx: "cx";
566
605
  h1: "h1";
@@ -719,8 +758,8 @@ export declare const zFleet: z.ZodObject<{
719
758
  x8g: "x8g";
720
759
  z1d: "z1d";
721
760
  z3: "z3";
722
- }>>>;
723
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
761
+ }>>>>;
762
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
724
763
  "africa-south1": "africa-south1";
725
764
  "ap-northeast-1": "ap-northeast-1";
726
765
  "ap-northeast-2": "ap-northeast-2";
@@ -785,14 +824,21 @@ export declare const zFleet: z.ZodObject<{
785
824
  "us-west2": "us-west2";
786
825
  "us-west3": "us-west3";
787
826
  "us-west4": "us-west4";
788
- }>>>;
827
+ }>>>>;
789
828
  }, z.core.$strip>>;
790
829
  scalingProfile: z.ZodDefault<z.ZodEnum<{
791
830
  aggressive: "aggressive";
792
831
  conservative: "conservative";
793
832
  }>>;
794
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;
795
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
+ */
796
842
  export declare const zFleetUpdateInput: z.ZodObject<{
797
843
  limits: z.ZodOptional<z.ZodObject<{
798
844
  cpu: z.ZodOptional<z.ZodInt>;
@@ -809,16 +855,16 @@ export declare const zFleetUpdateInput: z.ZodObject<{
809
855
  enabled: z.ZodBoolean;
810
856
  controllerRoleArn: z.ZodOptional<z.ZodString>;
811
857
  }, z.core.$strip>>;
812
- constraints: z.ZodOptional<z.ZodObject<{
813
- 'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
858
+ constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
859
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
814
860
  "on-demand": "on-demand";
815
861
  spot: "spot";
816
- }>>>;
817
- 'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
862
+ }>>>>;
863
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
818
864
  amd64: "amd64";
819
865
  arm64: "arm64";
820
- }>>>;
821
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
866
+ }>>>>;
867
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
822
868
  p3: "p3";
823
869
  cx: "cx";
824
870
  h1: "h1";
@@ -977,8 +1023,8 @@ export declare const zFleetUpdateInput: z.ZodObject<{
977
1023
  x8g: "x8g";
978
1024
  z1d: "z1d";
979
1025
  z3: "z3";
980
- }>>>;
981
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
1026
+ }>>>>;
1027
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
982
1028
  "africa-south1": "africa-south1";
983
1029
  "ap-northeast-1": "ap-northeast-1";
984
1030
  "ap-northeast-2": "ap-northeast-2";
@@ -1043,12 +1089,19 @@ export declare const zFleetUpdateInput: z.ZodObject<{
1043
1089
  "us-west2": "us-west2";
1044
1090
  "us-west3": "us-west3";
1045
1091
  "us-west4": "us-west4";
1046
- }>>>;
1047
- }, z.core.$strip>>;
1048
- scalingProfile: z.ZodEnum<{
1092
+ }>>>>;
1093
+ }, z.core.$strip>>>;
1094
+ scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1049
1095
  aggressive: "aggressive";
1050
1096
  conservative: "conservative";
1051
- }>;
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
+ }>>>;
1052
1105
  }, z.core.$strip>;
1053
1106
  export declare const zInvite: z.ZodObject<{
1054
1107
  id: z.ZodOptional<z.ZodString>;
@@ -1056,6 +1109,10 @@ export declare const zInvite: z.ZodObject<{
1056
1109
  date_created: z.ZodISODateTime;
1057
1110
  email: z.ZodOptional<z.ZodEmail>;
1058
1111
  code: z.ZodOptional<z.ZodString>;
1112
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1113
+ Administrator: "Administrator";
1114
+ User: "User";
1115
+ }>>>;
1059
1116
  }, z.core.$strip>;
1060
1117
  export declare const zInvoice: z.ZodObject<{
1061
1118
  id: z.ZodOptional<z.ZodString>;
@@ -1378,14 +1435,6 @@ export declare const zUserCreateInput: z.ZodObject<{
1378
1435
  last_name: z.ZodString;
1379
1436
  code: z.ZodString;
1380
1437
  password: z.ZodString;
1381
- status: z.ZodOptional<z.ZodEnum<{
1382
- active: "active";
1383
- inactive: "inactive";
1384
- }>>;
1385
- role: z.ZodOptional<z.ZodEnum<{
1386
- Administrator: "Administrator";
1387
- User: "User";
1388
- }>>;
1389
1438
  }, z.core.$strip>;
1390
1439
  export declare const zUser: z.ZodObject<{
1391
1440
  email: z.ZodEmail;
@@ -1415,683 +1464,684 @@ export declare const zUserUpdateInput: z.ZodObject<{
1415
1464
  inactive: "inactive";
1416
1465
  }>>;
1417
1466
  }, z.core.$strip>;
1418
- export declare const zGetUsageQuery: z.ZodObject<{
1419
- granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1420
- hourly: "hourly";
1421
- daily: "daily";
1422
- monthly: "monthly";
1423
- }>>>;
1467
+ export declare const zListUserOrganizationsPath: z.ZodObject<{
1468
+ email: z.ZodString;
1424
1469
  }, z.core.$strip>;
1425
1470
  /**
1426
- * Usage data with facets for filtering
1471
+ * An array of organizations the user belongs to.
1427
1472
  */
1428
- export declare const zGetUsageResponse: z.ZodObject<{
1429
- data: z.ZodArray<z.ZodObject<{
1430
- hour: z.ZodString;
1431
- cluster_id: z.ZodString;
1432
- product: z.ZodString;
1433
- value: z.ZodNumber;
1434
- price: z.ZodNumber;
1435
- total: z.ZodNumber;
1436
- }, z.core.$strip>>;
1437
- facets: z.ZodObject<{
1438
- cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
1439
- product: z.ZodOptional<z.ZodArray<z.ZodString>>;
1440
- }, 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>>;
1477
+ /**
1478
+ * An array of users
1479
+ */
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
+ }>;
1492
+ id: z.ZodUUID;
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;
1441
1501
  }, z.core.$strip>;
1442
1502
  /**
1443
- * 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.
1444
- *
1503
+ * Successfully created. Returns created user details.
1445
1504
  */
1446
- export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
1447
- id: z.ZodOptional<z.ZodString>;
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";
1512
+ }>;
1513
+ status: z.ZodEnum<{
1514
+ active: "active";
1515
+ inactive: "inactive";
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;
1448
1522
  }, z.core.$strip>;
1449
1523
  /**
1450
- * An array of payment methods.
1524
+ * User profile information
1451
1525
  */
1452
- export declare const zListPaymentMethodsResponse: z.ZodArray<z.ZodObject<{
1453
- id: z.ZodString;
1454
- type: z.ZodEnum<{
1455
- card: "card";
1456
- sepa_debit: "sepa_debit";
1457
- bank_transfer: "bank_transfer";
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";
1458
1533
  }>;
1459
- last4: z.ZodString;
1460
- exp_month: z.ZodInt;
1461
- exp_year: z.ZodInt;
1462
- brand: z.ZodString;
1463
- iban: z.ZodString;
1464
- bic: z.ZodString;
1465
- account_holder_name: z.ZodString;
1466
- is_default: z.ZodBoolean;
1467
- }, z.core.$strip>>;
1468
- export declare const zSetDefaultPaymentMethodPath: z.ZodObject<{
1469
- paymentMethodId: z.ZodString;
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;
1470
1543
  }, z.core.$strip>;
1471
1544
  /**
1472
- * Default payment method updated.
1545
+ * User profile information
1473
1546
  */
1474
- export declare const zSetDefaultPaymentMethodResponse: z.ZodVoid;
1475
- export declare const zDeletePaymentMethodPath: z.ZodObject<{
1476
- paymentMethodId: z.ZodString;
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;
1477
1577
  }, z.core.$strip>;
1478
1578
  /**
1479
- * Payment method deleted.
1579
+ * Successfully created. Returns created user details.
1480
1580
  */
1481
- export declare const zDeletePaymentMethodResponse: z.ZodVoid;
1581
+ export declare const zUpdateUserResponse: z.ZodObject<{
1582
+ email: z.ZodEmail;
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;
1595
+ }, z.core.$strip>;
1482
1596
  /**
1483
- * An array of usage records.
1597
+ * Returns a list of access token details with masked secrets.
1484
1598
  */
1485
- export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
1599
+ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
1600
+ name: z.ZodString;
1601
+ role: z.ZodEnum<{
1602
+ Administrator: "Administrator";
1603
+ User: "User";
1604
+ }>;
1486
1605
  id: z.ZodOptional<z.ZodString>;
1487
- number: z.ZodOptional<z.ZodString>;
1488
- status: z.ZodOptional<z.ZodString>;
1489
- total: z.ZodOptional<z.ZodNumber>;
1490
- currency: z.ZodOptional<z.ZodString>;
1491
- created: z.ZodISODateTime;
1492
- period_start: z.ZodISODateTime;
1493
- period_end: z.ZodISODateTime;
1494
- invoice_pdf: z.ZodOptional<z.ZodString>;
1606
+ secret: z.ZodOptional<z.ZodString>;
1607
+ date_created: z.ZodISODateTime;
1495
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>;
1496
1616
  /**
1497
- * Returns a single object containing organization contact and billing address details.
1617
+ * Successfully created. Returns created token details with unmasked/raw secret.
1498
1618
  */
1499
- export declare const zGetContactResponse: z.ZodObject<{
1500
- type: z.ZodEnum<{
1501
- business: "business";
1502
- personal: "personal";
1619
+ export declare const zCreateTokenResponse: z.ZodObject<{
1620
+ name: z.ZodString;
1621
+ role: z.ZodEnum<{
1622
+ Administrator: "Administrator";
1623
+ User: "User";
1503
1624
  }>;
1504
- company: z.ZodOptional<z.ZodString>;
1505
- address1: z.ZodOptional<z.ZodString>;
1506
- address2: z.ZodOptional<z.ZodString>;
1507
- postalCode: z.ZodOptional<z.ZodString>;
1508
- city: z.ZodOptional<z.ZodString>;
1509
- state: z.ZodOptional<z.ZodString>;
1510
- country: z.ZodOptional<z.ZodString>;
1511
- phone: z.ZodOptional<z.ZodString>;
1512
- email: z.ZodEmail;
1513
- individual_name: z.ZodString;
1514
- tax_id: z.ZodOptional<z.ZodString>;
1515
- tax_id_type: z.ZodOptional<z.ZodEnum<{
1516
- "": "";
1517
- ad_nrt: "ad_nrt";
1518
- ae_trn: "ae_trn";
1519
- al_tin: "al_tin";
1520
- am_tin: "am_tin";
1521
- ao_tin: "ao_tin";
1522
- ar_cuit: "ar_cuit";
1523
- at_vat: "at_vat";
1524
- au_abn: "au_abn";
1525
- au_arn: "au_arn";
1526
- ba_tin: "ba_tin";
1527
- bb_tin: "bb_tin";
1528
- be_vat: "be_vat";
1529
- bg_uic: "bg_uic";
1530
- bg_vat: "bg_vat";
1531
- bh_vat: "bh_vat";
1532
- bo_tin: "bo_tin";
1533
- br_cnpj: "br_cnpj";
1534
- br_cpf: "br_cpf";
1535
- bs_tin: "bs_tin";
1536
- by_tin: "by_tin";
1537
- ca_bn: "ca_bn";
1538
- ca_gst_hst: "ca_gst_hst";
1539
- ca_pst_bc: "ca_pst_bc";
1540
- ca_pst_mb: "ca_pst_mb";
1541
- ca_pst_sk: "ca_pst_sk";
1542
- ca_qst: "ca_qst";
1543
- cd_nif: "cd_nif";
1544
- ch_uid: "ch_uid";
1545
- ch_vat: "ch_vat";
1546
- cl_tin: "cl_tin";
1547
- cn_tin: "cn_tin";
1548
- co_nit: "co_nit";
1549
- cr_tin: "cr_tin";
1550
- cy_vat: "cy_vat";
1551
- cz_vat: "cz_vat";
1552
- de_stn: "de_stn";
1553
- de_vat: "de_vat";
1554
- dk_vat: "dk_vat";
1555
- do_rcn: "do_rcn";
1556
- ec_ruc: "ec_ruc";
1557
- ee_vat: "ee_vat";
1558
- eg_tin: "eg_tin";
1559
- es_cif: "es_cif";
1560
- es_vat: "es_vat";
1561
- eu_oss_vat: "eu_oss_vat";
1562
- fi_vat: "fi_vat";
1563
- fr_vat: "fr_vat";
1564
- gb_vat: "gb_vat";
1565
- ge_vat: "ge_vat";
1566
- gn_nif: "gn_nif";
1567
- gr_vat: "gr_vat";
1568
- hk_br: "hk_br";
1569
- hr_oib: "hr_oib";
1570
- hr_vat: "hr_vat";
1571
- hu_tin: "hu_tin";
1572
- hu_vat: "hu_vat";
1573
- id_npwp: "id_npwp";
1574
- ie_vat: "ie_vat";
1575
- il_vat: "il_vat";
1576
- in_gst: "in_gst";
1577
- is_vat: "is_vat";
1578
- it_vat: "it_vat";
1579
- jp_cn: "jp_cn";
1580
- jp_rn: "jp_rn";
1581
- jp_trn: "jp_trn";
1582
- ke_pin: "ke_pin";
1583
- kh_tin: "kh_tin";
1584
- kr_brn: "kr_brn";
1585
- kz_bin: "kz_bin";
1586
- li_uid: "li_uid";
1587
- li_vat: "li_vat";
1588
- lt_vat: "lt_vat";
1589
- lu_vat: "lu_vat";
1590
- lv_vat: "lv_vat";
1591
- ma_vat: "ma_vat";
1592
- md_vat: "md_vat";
1593
- me_pib: "me_pib";
1594
- mk_vat: "mk_vat";
1595
- mr_nif: "mr_nif";
1596
- mt_vat: "mt_vat";
1597
- mx_rfc: "mx_rfc";
1598
- my_frp: "my_frp";
1599
- my_itn: "my_itn";
1600
- my_sst: "my_sst";
1601
- ng_tin: "ng_tin";
1602
- nl_vat: "nl_vat";
1603
- no_vat: "no_vat";
1604
- no_voec: "no_voec";
1605
- np_pan: "np_pan";
1606
- nz_gst: "nz_gst";
1607
- om_vat: "om_vat";
1608
- pe_ruc: "pe_ruc";
1609
- ph_tin: "ph_tin";
1610
- pl_vat: "pl_vat";
1611
- pt_vat: "pt_vat";
1612
- ro_tin: "ro_tin";
1613
- ro_vat: "ro_vat";
1614
- rs_pib: "rs_pib";
1615
- ru_inn: "ru_inn";
1616
- ru_kpp: "ru_kpp";
1617
- sa_vat: "sa_vat";
1618
- se_vat: "se_vat";
1619
- sg_gst: "sg_gst";
1620
- sg_uen: "sg_uen";
1621
- si_tin: "si_tin";
1622
- si_vat: "si_vat";
1623
- sk_vat: "sk_vat";
1624
- sn_ninea: "sn_ninea";
1625
- sr_fin: "sr_fin";
1626
- sv_nit: "sv_nit";
1627
- th_vat: "th_vat";
1628
- tj_tin: "tj_tin";
1629
- tr_tin: "tr_tin";
1630
- tw_vat: "tw_vat";
1631
- tz_vat: "tz_vat";
1632
- ua_vat: "ua_vat";
1633
- ug_tin: "ug_tin";
1634
- us_ein: "us_ein";
1635
- uy_ruc: "uy_ruc";
1636
- uz_tin: "uz_tin";
1637
- uz_vat: "uz_vat";
1638
- ve_rif: "ve_rif";
1639
- vn_tin: "vn_tin";
1640
- xi_vat: "xi_vat";
1641
- za_vat: "za_vat";
1642
- zm_tin: "zm_tin";
1643
- zw_tin: "zw_tin";
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";
1644
1653
  }>>;
1645
1654
  }, z.core.$strip>;
1646
- export declare const zUpdateContactBody: z.ZodObject<{
1647
- type: z.ZodEnum<{
1648
- business: "business";
1649
- personal: "personal";
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";
1650
1666
  }>;
1651
- company: z.ZodOptional<z.ZodString>;
1652
- address1: z.ZodOptional<z.ZodString>;
1653
- address2: z.ZodOptional<z.ZodString>;
1654
- postalCode: z.ZodOptional<z.ZodString>;
1655
- city: z.ZodOptional<z.ZodString>;
1656
- state: z.ZodOptional<z.ZodString>;
1657
- country: z.ZodOptional<z.ZodString>;
1658
- phone: z.ZodOptional<z.ZodString>;
1659
- email: z.ZodEmail;
1660
- individual_name: z.ZodString;
1661
- tax_id: z.ZodOptional<z.ZodString>;
1662
- tax_id_type: z.ZodOptional<z.ZodEnum<{
1663
- "": "";
1664
- ad_nrt: "ad_nrt";
1665
- ae_trn: "ae_trn";
1666
- al_tin: "al_tin";
1667
- am_tin: "am_tin";
1668
- ao_tin: "ao_tin";
1669
- ar_cuit: "ar_cuit";
1670
- at_vat: "at_vat";
1671
- au_abn: "au_abn";
1672
- au_arn: "au_arn";
1673
- ba_tin: "ba_tin";
1674
- bb_tin: "bb_tin";
1675
- be_vat: "be_vat";
1676
- bg_uic: "bg_uic";
1677
- bg_vat: "bg_vat";
1678
- bh_vat: "bh_vat";
1679
- bo_tin: "bo_tin";
1680
- br_cnpj: "br_cnpj";
1681
- br_cpf: "br_cpf";
1682
- bs_tin: "bs_tin";
1683
- by_tin: "by_tin";
1684
- ca_bn: "ca_bn";
1685
- ca_gst_hst: "ca_gst_hst";
1686
- ca_pst_bc: "ca_pst_bc";
1687
- ca_pst_mb: "ca_pst_mb";
1688
- ca_pst_sk: "ca_pst_sk";
1689
- ca_qst: "ca_qst";
1690
- cd_nif: "cd_nif";
1691
- ch_uid: "ch_uid";
1692
- ch_vat: "ch_vat";
1693
- cl_tin: "cl_tin";
1694
- cn_tin: "cn_tin";
1695
- co_nit: "co_nit";
1696
- cr_tin: "cr_tin";
1697
- cy_vat: "cy_vat";
1698
- cz_vat: "cz_vat";
1699
- de_stn: "de_stn";
1700
- de_vat: "de_vat";
1701
- dk_vat: "dk_vat";
1702
- do_rcn: "do_rcn";
1703
- ec_ruc: "ec_ruc";
1704
- ee_vat: "ee_vat";
1705
- eg_tin: "eg_tin";
1706
- es_cif: "es_cif";
1707
- es_vat: "es_vat";
1708
- eu_oss_vat: "eu_oss_vat";
1709
- fi_vat: "fi_vat";
1710
- fr_vat: "fr_vat";
1711
- gb_vat: "gb_vat";
1712
- ge_vat: "ge_vat";
1713
- gn_nif: "gn_nif";
1714
- gr_vat: "gr_vat";
1715
- hk_br: "hk_br";
1716
- hr_oib: "hr_oib";
1717
- hr_vat: "hr_vat";
1718
- hu_tin: "hu_tin";
1719
- hu_vat: "hu_vat";
1720
- id_npwp: "id_npwp";
1721
- ie_vat: "ie_vat";
1722
- il_vat: "il_vat";
1723
- in_gst: "in_gst";
1724
- is_vat: "is_vat";
1725
- it_vat: "it_vat";
1726
- jp_cn: "jp_cn";
1727
- jp_rn: "jp_rn";
1728
- jp_trn: "jp_trn";
1729
- ke_pin: "ke_pin";
1730
- kh_tin: "kh_tin";
1731
- kr_brn: "kr_brn";
1732
- kz_bin: "kz_bin";
1733
- li_uid: "li_uid";
1734
- li_vat: "li_vat";
1735
- lt_vat: "lt_vat";
1736
- lu_vat: "lu_vat";
1737
- lv_vat: "lv_vat";
1738
- ma_vat: "ma_vat";
1739
- md_vat: "md_vat";
1740
- me_pib: "me_pib";
1741
- mk_vat: "mk_vat";
1742
- mr_nif: "mr_nif";
1743
- mt_vat: "mt_vat";
1744
- mx_rfc: "mx_rfc";
1745
- my_frp: "my_frp";
1746
- my_itn: "my_itn";
1747
- my_sst: "my_sst";
1748
- ng_tin: "ng_tin";
1749
- nl_vat: "nl_vat";
1750
- no_vat: "no_vat";
1751
- no_voec: "no_voec";
1752
- np_pan: "np_pan";
1753
- nz_gst: "nz_gst";
1754
- om_vat: "om_vat";
1755
- pe_ruc: "pe_ruc";
1756
- ph_tin: "ph_tin";
1757
- pl_vat: "pl_vat";
1758
- pt_vat: "pt_vat";
1759
- ro_tin: "ro_tin";
1760
- ro_vat: "ro_vat";
1761
- rs_pib: "rs_pib";
1762
- ru_inn: "ru_inn";
1763
- ru_kpp: "ru_kpp";
1764
- sa_vat: "sa_vat";
1765
- se_vat: "se_vat";
1766
- sg_gst: "sg_gst";
1767
- sg_uen: "sg_uen";
1768
- si_tin: "si_tin";
1769
- si_vat: "si_vat";
1770
- sk_vat: "sk_vat";
1771
- sn_ninea: "sn_ninea";
1772
- sr_fin: "sr_fin";
1773
- sv_nit: "sv_nit";
1774
- th_vat: "th_vat";
1775
- tj_tin: "tj_tin";
1776
- tr_tin: "tr_tin";
1777
- tw_vat: "tw_vat";
1778
- tz_vat: "tz_vat";
1779
- ua_vat: "ua_vat";
1780
- ug_tin: "ug_tin";
1781
- us_ein: "us_ein";
1782
- uy_ruc: "uy_ruc";
1783
- uz_tin: "uz_tin";
1784
- uz_vat: "uz_vat";
1785
- ve_rif: "ve_rif";
1786
- vn_tin: "vn_tin";
1787
- xi_vat: "xi_vat";
1788
- za_vat: "za_vat";
1789
- zm_tin: "zm_tin";
1790
- zw_tin: "zw_tin";
1791
- }>>;
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;
1792
1673
  }, z.core.$strip>;
1793
1674
  /**
1794
- * Successfully updated. Returns updated organization details.
1675
+ * Successfully updated. Returns updated token details with unmasked / raw secret.
1795
1676
  */
1796
- export declare const zUpdateContactResponse: z.ZodObject<{
1797
- type: z.ZodEnum<{
1798
- business: "business";
1799
- personal: "personal";
1677
+ export declare const zRegenerateTokenResponse: z.ZodObject<{
1678
+ name: z.ZodString;
1679
+ role: z.ZodEnum<{
1680
+ Administrator: "Administrator";
1681
+ User: "User";
1800
1682
  }>;
1801
- company: z.ZodOptional<z.ZodString>;
1802
- address1: z.ZodOptional<z.ZodString>;
1803
- address2: z.ZodOptional<z.ZodString>;
1804
- postalCode: z.ZodOptional<z.ZodString>;
1805
- city: z.ZodOptional<z.ZodString>;
1806
- state: z.ZodOptional<z.ZodString>;
1807
- country: z.ZodOptional<z.ZodString>;
1808
- phone: z.ZodOptional<z.ZodString>;
1809
- email: z.ZodEmail;
1810
- individual_name: z.ZodString;
1811
- tax_id: z.ZodOptional<z.ZodString>;
1812
- tax_id_type: z.ZodOptional<z.ZodEnum<{
1813
- "": "";
1814
- ad_nrt: "ad_nrt";
1815
- ae_trn: "ae_trn";
1816
- al_tin: "al_tin";
1817
- am_tin: "am_tin";
1818
- ao_tin: "ao_tin";
1819
- ar_cuit: "ar_cuit";
1820
- at_vat: "at_vat";
1821
- au_abn: "au_abn";
1822
- au_arn: "au_arn";
1823
- ba_tin: "ba_tin";
1824
- bb_tin: "bb_tin";
1825
- be_vat: "be_vat";
1826
- bg_uic: "bg_uic";
1827
- bg_vat: "bg_vat";
1828
- bh_vat: "bh_vat";
1829
- bo_tin: "bo_tin";
1830
- br_cnpj: "br_cnpj";
1831
- br_cpf: "br_cpf";
1832
- bs_tin: "bs_tin";
1833
- by_tin: "by_tin";
1834
- ca_bn: "ca_bn";
1835
- ca_gst_hst: "ca_gst_hst";
1836
- ca_pst_bc: "ca_pst_bc";
1837
- ca_pst_mb: "ca_pst_mb";
1838
- ca_pst_sk: "ca_pst_sk";
1839
- ca_qst: "ca_qst";
1840
- cd_nif: "cd_nif";
1841
- ch_uid: "ch_uid";
1842
- ch_vat: "ch_vat";
1843
- cl_tin: "cl_tin";
1844
- cn_tin: "cn_tin";
1845
- co_nit: "co_nit";
1846
- cr_tin: "cr_tin";
1847
- cy_vat: "cy_vat";
1848
- cz_vat: "cz_vat";
1849
- de_stn: "de_stn";
1850
- de_vat: "de_vat";
1851
- dk_vat: "dk_vat";
1852
- do_rcn: "do_rcn";
1853
- ec_ruc: "ec_ruc";
1854
- ee_vat: "ee_vat";
1855
- eg_tin: "eg_tin";
1856
- es_cif: "es_cif";
1857
- es_vat: "es_vat";
1858
- eu_oss_vat: "eu_oss_vat";
1859
- fi_vat: "fi_vat";
1860
- fr_vat: "fr_vat";
1861
- gb_vat: "gb_vat";
1862
- ge_vat: "ge_vat";
1863
- gn_nif: "gn_nif";
1864
- gr_vat: "gr_vat";
1865
- hk_br: "hk_br";
1866
- hr_oib: "hr_oib";
1867
- hr_vat: "hr_vat";
1868
- hu_tin: "hu_tin";
1869
- hu_vat: "hu_vat";
1870
- id_npwp: "id_npwp";
1871
- ie_vat: "ie_vat";
1872
- il_vat: "il_vat";
1873
- in_gst: "in_gst";
1874
- is_vat: "is_vat";
1875
- it_vat: "it_vat";
1876
- jp_cn: "jp_cn";
1877
- jp_rn: "jp_rn";
1878
- jp_trn: "jp_trn";
1879
- ke_pin: "ke_pin";
1880
- kh_tin: "kh_tin";
1881
- kr_brn: "kr_brn";
1882
- kz_bin: "kz_bin";
1883
- li_uid: "li_uid";
1884
- li_vat: "li_vat";
1885
- lt_vat: "lt_vat";
1886
- lu_vat: "lu_vat";
1887
- lv_vat: "lv_vat";
1888
- ma_vat: "ma_vat";
1889
- md_vat: "md_vat";
1890
- me_pib: "me_pib";
1891
- mk_vat: "mk_vat";
1892
- mr_nif: "mr_nif";
1893
- mt_vat: "mt_vat";
1894
- mx_rfc: "mx_rfc";
1895
- my_frp: "my_frp";
1896
- my_itn: "my_itn";
1897
- my_sst: "my_sst";
1898
- ng_tin: "ng_tin";
1899
- nl_vat: "nl_vat";
1900
- no_vat: "no_vat";
1901
- no_voec: "no_voec";
1902
- np_pan: "np_pan";
1903
- nz_gst: "nz_gst";
1904
- om_vat: "om_vat";
1905
- pe_ruc: "pe_ruc";
1906
- ph_tin: "ph_tin";
1907
- pl_vat: "pl_vat";
1908
- pt_vat: "pt_vat";
1909
- ro_tin: "ro_tin";
1910
- ro_vat: "ro_vat";
1911
- rs_pib: "rs_pib";
1912
- ru_inn: "ru_inn";
1913
- ru_kpp: "ru_kpp";
1914
- sa_vat: "sa_vat";
1915
- se_vat: "se_vat";
1916
- sg_gst: "sg_gst";
1917
- sg_uen: "sg_uen";
1918
- si_tin: "si_tin";
1919
- si_vat: "si_vat";
1920
- sk_vat: "sk_vat";
1921
- sn_ninea: "sn_ninea";
1922
- sr_fin: "sr_fin";
1923
- sv_nit: "sv_nit";
1924
- th_vat: "th_vat";
1925
- tj_tin: "tj_tin";
1926
- tr_tin: "tr_tin";
1927
- tw_vat: "tw_vat";
1928
- tz_vat: "tz_vat";
1929
- ua_vat: "ua_vat";
1930
- ug_tin: "ug_tin";
1931
- us_ein: "us_ein";
1932
- uy_ruc: "uy_ruc";
1933
- uz_tin: "uz_tin";
1934
- uz_vat: "uz_vat";
1935
- ve_rif: "ve_rif";
1936
- vn_tin: "vn_tin";
1937
- xi_vat: "xi_vat";
1938
- za_vat: "za_vat";
1939
- zm_tin: "zm_tin";
1940
- zw_tin: "zw_tin";
1941
- }>>;
1683
+ id: z.ZodOptional<z.ZodString>;
1684
+ secret: z.ZodOptional<z.ZodString>;
1685
+ date_created: z.ZodISODateTime;
1942
1686
  }, z.core.$strip>;
1943
1687
  /**
1944
- * An array of the applied promotional credits records.
1688
+ * Tickets for the organization.
1945
1689
  */
1946
- export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
1947
- id: z.ZodOptional<z.ZodString>;
1948
- type: z.ZodEnum<{
1949
- credit: "credit";
1950
- discount: "discount";
1951
- }>;
1952
- date_start: z.ZodISODateTime;
1953
- date_end: z.ZodOptional<z.ZodISODateTime>;
1954
- code: z.ZodString;
1955
- description: z.ZodOptional<z.ZodString>;
1956
- value_total: z.ZodNumber;
1957
- value_remaining: z.ZodOptional<z.ZodNumber>;
1958
- }, z.core.$strip>>;
1959
- export declare const zRedeemCreditsBody: z.ZodObject<{
1960
- code: z.ZodOptional<z.ZodString>;
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>>;
1961
1725
  }, z.core.$strip>;
1962
- export declare const zListChartsPath: z.ZodObject<{
1963
- cluster_id: z.ZodString;
1726
+ export declare const zCreateTicketBody: z.ZodObject<{
1727
+ payload: z.ZodOptional<z.ZodString>;
1728
+ attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
1964
1729
  }, z.core.$strip>;
1965
1730
  /**
1966
- * An array of charts
1731
+ * Ticket created.
1967
1732
  */
1968
- export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
1969
- values: z.ZodString;
1970
- version_channel: z.ZodString;
1971
- name: z.ZodString;
1972
- namespace: z.ZodString;
1973
- chart: z.ZodString;
1733
+ export declare const zCreateTicketResponse: z.ZodObject<{
1734
+ id: z.ZodString;
1974
1735
  status: z.ZodEnum<{
1975
- InstallSucceeded: "InstallSucceeded";
1976
- InstallFailed: "InstallFailed";
1977
- UpgradeSucceeded: "UpgradeSucceeded";
1978
- UpgradeFailed: "UpgradeFailed";
1979
- TestSucceeded: "TestSucceeded";
1980
- TestFailed: "TestFailed";
1981
- RollbackSucceeded: "RollbackSucceeded";
1982
- RollbackFailed: "RollbackFailed";
1983
- UninstallSucceeded: "UninstallSucceeded";
1984
- UninstallFailed: "UninstallFailed";
1985
- ArtifactFailed: "ArtifactFailed";
1986
- DependencyNotReady: "DependencyNotReady";
1987
- Progressing: "Progressing";
1988
- SourceNotReady: "SourceNotReady";
1736
+ closed: "closed";
1737
+ waiting_on_us: "waiting_on_us";
1738
+ waiting_on_user: "waiting_on_user";
1989
1739
  }>;
1990
- version_current: z.ZodString;
1991
- created_at: z.ZodString;
1992
- updated_at: z.ZodString;
1993
- ready: z.ZodBoolean;
1994
- }, z.core.$strip>>;
1995
- export declare const zCreateChartBody: z.ZodObject<{
1996
- values: z.ZodString;
1997
- version_channel: z.ZodString;
1998
- name: z.ZodString;
1999
- namespace: z.ZodString;
2000
- chart: z.ZodString;
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>>>;
2001
1766
  }, z.core.$strip>;
2002
- export declare const zCreateChartPath: z.ZodObject<{
2003
- cluster_id: z.ZodString;
1767
+ export declare const zCloseTicketPath: z.ZodObject<{
1768
+ ticket_id: z.ZodString;
2004
1769
  }, z.core.$strip>;
2005
1770
  /**
2006
- * Successfully created. Returns created Chart ID.
1771
+ * Ticket closed.
2007
1772
  */
2008
- export declare const zCreateChartResponse: z.ZodString;
2009
- export declare const zDeleteChartPath: z.ZodObject<{
2010
- cluster_id: z.ZodString;
2011
- chart_name: z.ZodString;
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>>>;
2012
1806
  }, z.core.$strip>;
2013
- /**
2014
- * Successfully deleted.
2015
- */
2016
- export declare const zDeleteChartResponse: z.ZodString;
2017
- export declare const zGetChartPath: z.ZodObject<{
2018
- cluster_id: z.ZodString;
2019
- chart_name: z.ZodString;
1807
+ export declare const zGetTicketPath: z.ZodObject<{
1808
+ ticket_id: z.ZodString;
2020
1809
  }, z.core.$strip>;
2021
1810
  /**
2022
- * Returns a single object containing chart details.
1811
+ * Ticket with messages (internal notes excluded).
2023
1812
  */
2024
- export declare const zGetChartResponse: z.ZodObject<{
2025
- values: z.ZodString;
2026
- version_channel: z.ZodString;
2027
- name: z.ZodString;
2028
- namespace: z.ZodString;
2029
- chart: z.ZodString;
1813
+ export declare const zGetTicketResponse: z.ZodObject<{
1814
+ id: z.ZodString;
2030
1815
  status: z.ZodEnum<{
2031
- InstallSucceeded: "InstallSucceeded";
2032
- InstallFailed: "InstallFailed";
2033
- UpgradeSucceeded: "UpgradeSucceeded";
2034
- UpgradeFailed: "UpgradeFailed";
2035
- TestSucceeded: "TestSucceeded";
2036
- TestFailed: "TestFailed";
2037
- RollbackSucceeded: "RollbackSucceeded";
2038
- RollbackFailed: "RollbackFailed";
2039
- UninstallSucceeded: "UninstallSucceeded";
2040
- UninstallFailed: "UninstallFailed";
2041
- ArtifactFailed: "ArtifactFailed";
2042
- DependencyNotReady: "DependencyNotReady";
2043
- Progressing: "Progressing";
2044
- SourceNotReady: "SourceNotReady";
1816
+ closed: "closed";
1817
+ waiting_on_us: "waiting_on_us";
1818
+ waiting_on_user: "waiting_on_user";
2045
1819
  }>;
2046
- version_current: z.ZodString;
2047
- created_at: z.ZodString;
2048
- updated_at: z.ZodString;
2049
- ready: z.ZodBoolean;
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>>>;
2050
1846
  }, z.core.$strip>;
2051
- export declare const zUpdateChartBody: z.ZodObject<{
2052
- values: z.ZodString;
2053
- version_channel: z.ZodString;
1847
+ export declare const zReplyTicketBody: z.ZodObject<{
1848
+ payload: z.ZodOptional<z.ZodString>;
1849
+ attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
2054
1850
  }, z.core.$strip>;
2055
- export declare const zUpdateChartPath: z.ZodObject<{
2056
- cluster_id: z.ZodString;
2057
- chart_name: z.ZodString;
1851
+ export declare const zReplyTicketPath: z.ZodObject<{
1852
+ ticket_id: z.ZodString;
2058
1853
  }, z.core.$strip>;
2059
1854
  /**
2060
- * Successfully updated.
1855
+ * Reply appended.
2061
1856
  */
2062
- export declare const zUpdateChartResponse: z.ZodString;
2063
- export declare const zListFleetsPath: z.ZodObject<{
2064
- cluster_id: z.ZodString;
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;
2065
1877
  }, z.core.$strip>;
2066
1878
  /**
2067
- * An array of fleets
1879
+ * Attachment binary stream.
2068
1880
  */
2069
- export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
2070
- limits: z.ZodOptional<z.ZodObject<{
2071
- cpu: z.ZodOptional<z.ZodInt>;
2072
- }, z.core.$strip>>;
2073
- gcp: z.ZodOptional<z.ZodObject<{
2074
- enabled: z.ZodBoolean;
2075
- project: z.ZodOptional<z.ZodString>;
2076
- }, z.core.$strip>>;
2077
- hetzner: z.ZodOptional<z.ZodObject<{
2078
- enabled: z.ZodBoolean;
2079
- apiKey: z.ZodOptional<z.ZodString>;
2080
- }, z.core.$strip>>;
2081
- aws: z.ZodOptional<z.ZodObject<{
2082
- enabled: z.ZodBoolean;
2083
- controllerRoleArn: z.ZodOptional<z.ZodString>;
2084
- }, z.core.$strip>>;
2085
- constraints: z.ZodOptional<z.ZodObject<{
2086
- 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
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
+ }>;
1986
+ }, z.core.$strip>;
1987
+ export declare const zCreateOrganizationBody: z.ZodObject<{
1988
+ type: z.ZodEnum<{
1989
+ business: "business";
1990
+ personal: "personal";
1991
+ }>;
1992
+ email: z.ZodEmail;
1993
+ first_name: z.ZodString;
1994
+ last_name: z.ZodString;
1995
+ company_name: z.ZodString;
1996
+ password: z.ZodString;
1997
+ }, z.core.$strip>;
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;
2004
+ }, z.core.$strip>;
2005
+ /**
2006
+ * JSON-RPC 2.0 request payload
2007
+ */
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<{
2030
+ name: z.ZodString;
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>>;
2049
+ }, z.core.$strip>>;
2050
+ export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
2051
+ chart_name: z.ZodString;
2052
+ version_channel: z.ZodString;
2053
+ }, z.core.$strip>;
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>;
2061
+ }, z.core.$strip>;
2062
+ /**
2063
+ * An array of invites
2064
+ */
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
+ }>>>;
2082
+ }, z.core.$strip>;
2083
+ /**
2084
+ * Successfully created. Returns created invite details.
2085
+ */
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;
2099
+ }, z.core.$strip>;
2100
+ /**
2101
+ * The invitation code is valid. Returns the invited email and organization.
2102
+ */
2103
+ export declare const zGetInviteResponse: z.ZodObject<{
2104
+ email: z.ZodOptional<z.ZodEmail>;
2105
+ organization_id: z.ZodOptional<z.ZodString>;
2106
+ }, z.core.$strip>;
2107
+ export declare const zDeleteInvitePath: z.ZodObject<{
2108
+ email: z.ZodEmail;
2109
+ }, z.core.$strip>;
2110
+ export declare const zQueryClusterPath: z.ZodObject<{
2111
+ cluster_id: z.ZodString;
2112
+ }, z.core.$strip>;
2113
+ export declare const zListFleetsPath: z.ZodObject<{
2114
+ cluster_id: z.ZodString;
2115
+ }, z.core.$strip>;
2116
+ /**
2117
+ * An array of fleets
2118
+ */
2119
+ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
2120
+ limits: z.ZodOptional<z.ZodObject<{
2121
+ cpu: z.ZodOptional<z.ZodInt>;
2122
+ }, z.core.$strip>>;
2123
+ gcp: z.ZodOptional<z.ZodObject<{
2124
+ enabled: z.ZodBoolean;
2125
+ project: z.ZodOptional<z.ZodString>;
2126
+ }, z.core.$strip>>;
2127
+ hetzner: z.ZodOptional<z.ZodObject<{
2128
+ enabled: z.ZodBoolean;
2129
+ apiKey: z.ZodOptional<z.ZodString>;
2130
+ }, z.core.$strip>>;
2131
+ aws: z.ZodOptional<z.ZodObject<{
2132
+ enabled: z.ZodBoolean;
2133
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
2134
+ }, z.core.$strip>>;
2135
+ constraints: z.ZodDefault<z.ZodObject<{
2136
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
2087
2137
  "on-demand": "on-demand";
2088
2138
  spot: "spot";
2089
- }>>>>;
2090
- 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2139
+ }>>>;
2140
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
2091
2141
  amd64: "amd64";
2092
2142
  arm64: "arm64";
2093
- }>>>>;
2094
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2143
+ }>>>;
2144
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2095
2145
  p3: "p3";
2096
2146
  cx: "cx";
2097
2147
  h1: "h1";
@@ -2250,8 +2300,8 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
2250
2300
  x8g: "x8g";
2251
2301
  z1d: "z1d";
2252
2302
  z3: "z3";
2253
- }>>>;
2254
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2303
+ }>>>>;
2304
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2255
2305
  "africa-south1": "africa-south1";
2256
2306
  "ap-northeast-1": "ap-northeast-1";
2257
2307
  "ap-northeast-2": "ap-northeast-2";
@@ -2316,13 +2366,17 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
2316
2366
  "us-west2": "us-west2";
2317
2367
  "us-west3": "us-west3";
2318
2368
  "us-west4": "us-west4";
2319
- }>>>;
2369
+ }>>>>;
2320
2370
  }, z.core.$strip>>;
2321
2371
  scalingProfile: z.ZodDefault<z.ZodEnum<{
2322
2372
  aggressive: "aggressive";
2323
2373
  conservative: "conservative";
2324
2374
  }>>;
2325
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;
2326
2380
  }, z.core.$strip>>;
2327
2381
  export declare const zCreateFleetBody: z.ZodObject<{
2328
2382
  limits: z.ZodOptional<z.ZodObject<{
@@ -2340,7 +2394,7 @@ export declare const zCreateFleetBody: z.ZodObject<{
2340
2394
  enabled: z.ZodBoolean;
2341
2395
  controllerRoleArn: z.ZodOptional<z.ZodString>;
2342
2396
  }, z.core.$strip>>;
2343
- constraints: z.ZodOptional<z.ZodObject<{
2397
+ constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
2344
2398
  'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2345
2399
  "on-demand": "on-demand";
2346
2400
  spot: "spot";
@@ -2349,7 +2403,7 @@ export declare const zCreateFleetBody: z.ZodObject<{
2349
2403
  amd64: "amd64";
2350
2404
  arm64: "arm64";
2351
2405
  }>>>>;
2352
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2406
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2353
2407
  p3: "p3";
2354
2408
  cx: "cx";
2355
2409
  h1: "h1";
@@ -2508,8 +2562,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
2508
2562
  x8g: "x8g";
2509
2563
  z1d: "z1d";
2510
2564
  z3: "z3";
2511
- }>>>;
2512
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2565
+ }>>>>;
2566
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2513
2567
  "africa-south1": "africa-south1";
2514
2568
  "ap-northeast-1": "ap-northeast-1";
2515
2569
  "ap-northeast-2": "ap-northeast-2";
@@ -2574,8 +2628,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
2574
2628
  "us-west2": "us-west2";
2575
2629
  "us-west3": "us-west3";
2576
2630
  "us-west4": "us-west4";
2577
- }>>>;
2578
- }, z.core.$strip>>;
2631
+ }>>>>;
2632
+ }, z.core.$strip>>>;
2579
2633
  scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2580
2634
  aggressive: "aggressive";
2581
2635
  conservative: "conservative";
@@ -2620,16 +2674,16 @@ export declare const zGetFleetResponse: z.ZodObject<{
2620
2674
  enabled: z.ZodBoolean;
2621
2675
  controllerRoleArn: z.ZodOptional<z.ZodString>;
2622
2676
  }, z.core.$strip>>;
2623
- constraints: z.ZodOptional<z.ZodObject<{
2624
- 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2677
+ constraints: z.ZodDefault<z.ZodObject<{
2678
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
2625
2679
  "on-demand": "on-demand";
2626
2680
  spot: "spot";
2627
- }>>>>;
2628
- 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2681
+ }>>>;
2682
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
2629
2683
  amd64: "amd64";
2630
2684
  arm64: "arm64";
2631
- }>>>>;
2632
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2685
+ }>>>;
2686
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2633
2687
  p3: "p3";
2634
2688
  cx: "cx";
2635
2689
  h1: "h1";
@@ -2788,8 +2842,8 @@ export declare const zGetFleetResponse: z.ZodObject<{
2788
2842
  x8g: "x8g";
2789
2843
  z1d: "z1d";
2790
2844
  z3: "z3";
2791
- }>>>;
2792
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2845
+ }>>>>;
2846
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2793
2847
  "africa-south1": "africa-south1";
2794
2848
  "ap-northeast-1": "ap-northeast-1";
2795
2849
  "ap-northeast-2": "ap-northeast-2";
@@ -2854,13 +2908,17 @@ export declare const zGetFleetResponse: z.ZodObject<{
2854
2908
  "us-west2": "us-west2";
2855
2909
  "us-west3": "us-west3";
2856
2910
  "us-west4": "us-west4";
2857
- }>>>;
2911
+ }>>>>;
2858
2912
  }, z.core.$strip>>;
2859
2913
  scalingProfile: z.ZodDefault<z.ZodEnum<{
2860
2914
  aggressive: "aggressive";
2861
2915
  conservative: "conservative";
2862
2916
  }>>;
2863
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;
2864
2922
  }, z.core.$strip>;
2865
2923
  export declare const zUpdateFleetBody: z.ZodObject<{
2866
2924
  limits: z.ZodOptional<z.ZodObject<{
@@ -2878,16 +2936,16 @@ export declare const zUpdateFleetBody: z.ZodObject<{
2878
2936
  enabled: z.ZodBoolean;
2879
2937
  controllerRoleArn: z.ZodOptional<z.ZodString>;
2880
2938
  }, z.core.$strip>>;
2881
- constraints: z.ZodOptional<z.ZodObject<{
2882
- 'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2939
+ constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
2940
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2883
2941
  "on-demand": "on-demand";
2884
2942
  spot: "spot";
2885
- }>>>;
2886
- 'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2943
+ }>>>>;
2944
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2887
2945
  amd64: "amd64";
2888
2946
  arm64: "arm64";
2889
- }>>>;
2890
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2947
+ }>>>>;
2948
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2891
2949
  p3: "p3";
2892
2950
  cx: "cx";
2893
2951
  h1: "h1";
@@ -3046,8 +3104,8 @@ export declare const zUpdateFleetBody: z.ZodObject<{
3046
3104
  x8g: "x8g";
3047
3105
  z1d: "z1d";
3048
3106
  z3: "z3";
3049
- }>>>;
3050
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
3107
+ }>>>>;
3108
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
3051
3109
  "africa-south1": "africa-south1";
3052
3110
  "ap-northeast-1": "ap-northeast-1";
3053
3111
  "ap-northeast-2": "ap-northeast-2";
@@ -3112,12 +3170,12 @@ export declare const zUpdateFleetBody: z.ZodObject<{
3112
3170
  "us-west2": "us-west2";
3113
3171
  "us-west3": "us-west3";
3114
3172
  "us-west4": "us-west4";
3115
- }>>>;
3116
- }, z.core.$strip>>;
3117
- scalingProfile: z.ZodEnum<{
3173
+ }>>>>;
3174
+ }, z.core.$strip>>>;
3175
+ scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3118
3176
  aggressive: "aggressive";
3119
3177
  conservative: "conservative";
3120
- }>;
3178
+ }>>>;
3121
3179
  }, z.core.$strip>;
3122
3180
  export declare const zUpdateFleetPath: z.ZodObject<{
3123
3181
  cluster_id: z.ZodString;
@@ -3127,29 +3185,111 @@ export declare const zUpdateFleetPath: z.ZodObject<{
3127
3185
  * Successfully updated.
3128
3186
  */
3129
3187
  export declare const zUpdateFleetResponse: z.ZodString;
3130
- export declare const zQueryClusterPath: z.ZodObject<{
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<{
3221
+ cluster_id: z.ZodString;
3222
+ chart_name: z.ZodString;
3223
+ }, z.core.$strip>;
3224
+ /**
3225
+ * Successfully deleted.
3226
+ */
3227
+ export declare const zDeleteChartResponse: z.ZodString;
3228
+ export declare const zGetChartPath: z.ZodObject<{
3229
+ cluster_id: z.ZodString;
3230
+ chart_name: z.ZodString;
3231
+ }, z.core.$strip>;
3232
+ /**
3233
+ * Returns a single object containing chart details.
3234
+ */
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;
3246
+ }, z.core.$strip>;
3247
+ export declare const zUpdateChartBody: z.ZodObject<{
3248
+ values: z.ZodString;
3249
+ version_channel: z.ZodString;
3250
+ }, z.core.$strip>;
3251
+ export declare const zUpdateChartPath: z.ZodObject<{
3131
3252
  cluster_id: z.ZodString;
3253
+ chart_name: z.ZodString;
3132
3254
  }, z.core.$strip>;
3255
+ /**
3256
+ * Successfully updated.
3257
+ */
3258
+ export declare const zUpdateChartResponse: z.ZodString;
3133
3259
  /**
3134
3260
  * An array of clusters
3135
3261
  */
3136
3262
  export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
3137
3263
  name: z.ZodString;
3138
- tier: z.ZodEnum<{
3264
+ tier: z.ZodDefault<z.ZodEnum<{
3139
3265
  basic: "basic";
3140
3266
  pro: "pro";
3141
- }>;
3142
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3143
- "staging-1a": "staging-1a";
3144
- "northamerica-central-1": "northamerica-central-1";
3145
- "europe-central-1a": "europe-central-1a";
3146
- "northamerica-central-1a": "northamerica-central-1a";
3147
- }>>>;
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>>;
3148
3291
  id: z.ZodUUID;
3149
3292
  status: z.ZodEnum<{
3150
- deleted: "deleted";
3151
- failed: "failed";
3152
- active: "active";
3153
3293
  disabled: "disabled";
3154
3294
  creating: "creating";
3155
3295
  deployed: "deployed";
@@ -3165,27 +3305,37 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
3165
3305
  version_current: z.ZodOptional<z.ZodString>;
3166
3306
  created_at: z.ZodOptional<z.ZodString>;
3167
3307
  updated_at: z.ZodOptional<z.ZodString>;
3168
- ready: z.ZodOptional<z.ZodBoolean>;
3169
- version_channel: z.ZodOptional<z.ZodString>;
3308
+ ready: z.ZodBoolean;
3170
3309
  }, z.core.$strip>>;
3171
3310
  export declare const zCreateClusterBody: z.ZodObject<{
3172
3311
  name: z.ZodString;
3173
- tier: z.ZodEnum<{
3312
+ tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3174
3313
  basic: "basic";
3175
3314
  pro: "pro";
3176
- }>;
3177
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3178
- "staging-1a": "staging-1a";
3179
- "northamerica-central-1": "northamerica-central-1";
3180
- "europe-central-1a": "europe-central-1a";
3181
- "northamerica-central-1a": "northamerica-central-1a";
3182
3315
  }>>>;
3183
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3184
- "1.x.x-cfke.x": "1.x.x-cfke.x";
3185
- "1.31.x-cfke.x": "1.31.x-cfke.x";
3186
- "1.32.x-cfke.x": "1.32.x-cfke.x";
3187
- "1.33.x-cfke.x": "1.33.x-cfke.x";
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";
3188
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>>>;
3189
3339
  }, z.core.$strip>;
3190
3340
  /**
3191
3341
  * Successfully created. Returns created Cluster ID.
@@ -3195,7 +3345,7 @@ export declare const zDeleteClusterPath: z.ZodObject<{
3195
3345
  cluster_id: z.ZodString;
3196
3346
  }, z.core.$strip>;
3197
3347
  /**
3198
- * Successfully deleted.
3348
+ * Successfully deleted. The cluster has been torn down.
3199
3349
  */
3200
3350
  export declare const zDeleteClusterResponse: z.ZodString;
3201
3351
  export declare const zGetClusterPath: z.ZodObject<{
@@ -3206,21 +3356,35 @@ export declare const zGetClusterPath: z.ZodObject<{
3206
3356
  */
3207
3357
  export declare const zGetClusterResponse: z.ZodObject<{
3208
3358
  name: z.ZodString;
3209
- tier: z.ZodEnum<{
3359
+ tier: z.ZodDefault<z.ZodEnum<{
3210
3360
  basic: "basic";
3211
3361
  pro: "pro";
3212
- }>;
3213
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3214
- "staging-1a": "staging-1a";
3215
- "northamerica-central-1": "northamerica-central-1";
3216
- "europe-central-1a": "europe-central-1a";
3217
- "northamerica-central-1a": "northamerica-central-1a";
3218
- }>>>;
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>>;
3219
3386
  id: z.ZodUUID;
3220
3387
  status: z.ZodEnum<{
3221
- deleted: "deleted";
3222
- failed: "failed";
3223
- active: "active";
3224
3388
  disabled: "disabled";
3225
3389
  creating: "creating";
3226
3390
  deployed: "deployed";
@@ -3236,16 +3400,29 @@ export declare const zGetClusterResponse: z.ZodObject<{
3236
3400
  version_current: z.ZodOptional<z.ZodString>;
3237
3401
  created_at: z.ZodOptional<z.ZodString>;
3238
3402
  updated_at: z.ZodOptional<z.ZodString>;
3239
- ready: z.ZodOptional<z.ZodBoolean>;
3240
- version_channel: z.ZodOptional<z.ZodString>;
3403
+ ready: z.ZodBoolean;
3241
3404
  }, z.core.$strip>;
3242
3405
  export declare const zUpdateClusterBody: z.ZodObject<{
3243
- name: z.ZodOptional<z.ZodString>;
3244
- tier: z.ZodEnum<{
3406
+ name: z.ZodString;
3407
+ tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3245
3408
  basic: "basic";
3246
3409
  pro: "pro";
3247
- }>;
3248
- 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>>>;
3249
3426
  }, z.core.$strip>;
3250
3427
  export declare const zUpdateClusterPath: z.ZodObject<{
3251
3428
  cluster_id: z.ZodString;
@@ -3255,21 +3432,35 @@ export declare const zUpdateClusterPath: z.ZodObject<{
3255
3432
  */
3256
3433
  export declare const zUpdateClusterResponse: z.ZodObject<{
3257
3434
  name: z.ZodString;
3258
- tier: z.ZodEnum<{
3435
+ tier: z.ZodDefault<z.ZodEnum<{
3259
3436
  basic: "basic";
3260
3437
  pro: "pro";
3261
- }>;
3262
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3263
- "staging-1a": "staging-1a";
3264
- "northamerica-central-1": "northamerica-central-1";
3265
- "europe-central-1a": "europe-central-1a";
3266
- "northamerica-central-1a": "northamerica-central-1a";
3267
- }>>>;
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>>;
3268
3462
  id: z.ZodUUID;
3269
3463
  status: z.ZodEnum<{
3270
- deleted: "deleted";
3271
- failed: "failed";
3272
- active: "active";
3273
3464
  disabled: "disabled";
3274
3465
  creating: "creating";
3275
3466
  deployed: "deployed";
@@ -3285,8 +3476,7 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
3285
3476
  version_current: z.ZodOptional<z.ZodString>;
3286
3477
  created_at: z.ZodOptional<z.ZodString>;
3287
3478
  updated_at: z.ZodOptional<z.ZodString>;
3288
- ready: z.ZodOptional<z.ZodBoolean>;
3289
- version_channel: z.ZodOptional<z.ZodString>;
3479
+ ready: z.ZodBoolean;
3290
3480
  }, z.core.$strip>;
3291
3481
  export declare const zGetJoinInformationPath: z.ZodObject<{
3292
3482
  cluster_id: z.ZodString;
@@ -3298,6 +3488,7 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
3298
3488
  certificate_authority: z.ZodString;
3299
3489
  endpoint: z.ZodURL;
3300
3490
  cluster_dns: z.ZodString;
3491
+ pod_cidr: z.ZodString;
3301
3492
  auth_key: z.ZodString;
3302
3493
  bootstrap_token: z.ZodString;
3303
3494
  versions: z.ZodObject<{
@@ -3312,646 +3503,548 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
3312
3503
  gcp_workload_identity_provider: z.ZodString;
3313
3504
  }, z.core.$strip>;
3314
3505
  }, z.core.$strip>;
3315
- /**
3316
- * An array of invites
3317
- */
3318
- export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
3319
- id: z.ZodOptional<z.ZodString>;
3320
- organization_id: z.ZodOptional<z.ZodUUID>;
3321
- date_created: z.ZodISODateTime;
3322
- email: z.ZodOptional<z.ZodEmail>;
3323
- code: z.ZodOptional<z.ZodString>;
3324
- }, z.core.$strip>>;
3325
- export declare const zCreateInviteBody: z.ZodObject<{
3326
- email: z.ZodOptional<z.ZodString>;
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
+ }>>>;
3327
3512
  }, z.core.$strip>;
3328
3513
  /**
3329
- * Successfully created. Returns created invite details.
3514
+ * Usage data with facets for filtering
3330
3515
  */
3331
- export declare const zCreateInviteResponse: z.ZodObject<{
3332
- id: z.ZodOptional<z.ZodString>;
3333
- organization_id: z.ZodOptional<z.ZodUUID>;
3334
- date_created: z.ZodISODateTime;
3335
- email: z.ZodOptional<z.ZodEmail>;
3336
- code: z.ZodOptional<z.ZodString>;
3337
- }, z.core.$strip>;
3338
- export declare const zGetInvitePath: z.ZodObject<{
3339
- code: z.ZodString;
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;
3524
+ }, z.core.$strip>>;
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>;
3340
3529
  }, z.core.$strip>;
3341
3530
  /**
3342
- * Returns a single object containing invite details.
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
+ *
3343
3533
  */
3344
- export declare const zGetInviteResponse: z.ZodObject<{
3534
+ export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
3345
3535
  id: z.ZodOptional<z.ZodString>;
3346
- organization_id: z.ZodOptional<z.ZodUUID>;
3347
- date_created: z.ZodISODateTime;
3348
- email: z.ZodOptional<z.ZodEmail>;
3349
- code: z.ZodOptional<z.ZodString>;
3350
- }, z.core.$strip>;
3351
- export declare const zDeleteInvitePath: z.ZodObject<{
3352
- email: z.ZodString;
3353
3536
  }, z.core.$strip>;
3354
3537
  /**
3355
- * An array of chart listings in the marketplace.
3538
+ * An array of payment methods.
3356
3539
  */
3357
- export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
3358
- name: z.ZodString;
3359
- versions: z.ZodArray<z.ZodString>;
3360
- version_channels: z.ZodArray<z.ZodString>;
3361
- latestVersion: z.ZodString;
3362
- metadata: z.ZodOptional<z.ZodObject<{
3363
- name: z.ZodString;
3364
- version: z.ZodString;
3365
- description: z.ZodOptional<z.ZodString>;
3366
- appVersion: z.ZodOptional<z.ZodString>;
3367
- apiVersion: z.ZodOptional<z.ZodString>;
3368
- keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
3369
- home: z.ZodOptional<z.ZodString>;
3370
- icon: z.ZodOptional<z.ZodString>;
3371
- sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
3372
- maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
3373
- name: z.ZodString;
3374
- email: z.ZodOptional<z.ZodString>;
3375
- }, z.core.$strip>>>;
3376
- }, z.core.$strip>>;
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";
3546
+ }>;
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;
3377
3555
  }, z.core.$strip>>;
3378
- export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
3379
- chart_name: z.ZodString;
3380
- version_channel: z.ZodString;
3556
+ export declare const zSetDefaultPaymentMethodPath: z.ZodObject<{
3557
+ paymentMethodId: z.ZodString;
3381
3558
  }, z.core.$strip>;
3382
3559
  /**
3383
- * Returns an object containing the chart files for the latest matching version.
3560
+ * Default payment method updated.
3384
3561
  */
3385
- export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
3386
- chartYaml: z.ZodOptional<z.ZodString>;
3387
- valuesYaml: z.ZodOptional<z.ZodString>;
3388
- valuesSchemaJson: z.ZodOptional<z.ZodString>;
3562
+ export declare const zSetDefaultPaymentMethodResponse: z.ZodVoid;
3563
+ export declare const zDeletePaymentMethodPath: z.ZodObject<{
3564
+ paymentMethodId: z.ZodString;
3389
3565
  }, z.core.$strip>;
3390
3566
  /**
3391
- * JSON-RPC 2.0 request payload
3567
+ * Payment method deleted.
3392
3568
  */
3393
- export declare const zPostMcpBody: z.ZodObject<{
3394
- jsonrpc: z.ZodOptional<z.ZodString>;
3395
- method: z.ZodOptional<z.ZodString>;
3396
- id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
3397
- params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3398
- }, z.core.$strip>;
3569
+ export declare const zDeletePaymentMethodResponse: z.ZodVoid;
3399
3570
  /**
3400
- * JSON-RPC 2.0 success or error response
3571
+ * An array of usage records.
3401
3572
  */
3402
- export declare const zPostMcpResponse: z.ZodObject<{
3403
- jsonrpc: z.ZodOptional<z.ZodString>;
3404
- id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
3405
- result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3406
- error: z.ZodOptional<z.ZodObject<{
3407
- code: z.ZodOptional<z.ZodInt>;
3408
- message: z.ZodOptional<z.ZodString>;
3409
- }, z.core.$strip>>;
3410
- }, z.core.$strip>;
3573
+ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
3574
+ id: z.ZodOptional<z.ZodString>;
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>>;
3411
3584
  /**
3412
- * Returns a single object containing organization details.
3585
+ * Returns a single object containing organization contact and billing address details.
3413
3586
  */
3414
- export declare const zGetOrganizationResponse: z.ZodObject<{
3415
- id: z.ZodUUID;
3416
- name: z.ZodOptional<z.ZodString>;
3587
+ export declare const zGetContactResponse: z.ZodObject<{
3417
3588
  type: z.ZodEnum<{
3418
3589
  business: "business";
3419
3590
  personal: "personal";
3420
3591
  }>;
3421
- date_created: z.ZodISODateTime;
3422
- quota: z.ZodObject<{
3423
- basic_clusters_max: z.ZodInt;
3424
- basic_clusters_available: z.ZodInt;
3425
- pro_clusters_max: z.ZodInt;
3426
- pro_clusters_available: z.ZodInt;
3427
- fleets_max: z.ZodInt;
3428
- cluster_tiers: z.ZodArray<z.ZodString>;
3429
- regions: z.ZodArray<z.ZodString>;
3430
- versions: z.ZodArray<z.ZodObject<{
3431
- id: z.ZodString;
3432
- label: z.ZodString;
3433
- }, z.core.$strip>>;
3434
- cfcr_storage_gb: z.ZodInt;
3435
- }, z.core.$strip>;
3436
- status: z.ZodEnum<{
3437
- active: "active";
3438
- closed: "closed";
3439
- suspended: "suspended";
3440
- }>;
3441
- verification: z.ZodEnum<{
3442
- none: "none";
3443
- submitted: "submitted";
3444
- verified: "verified";
3445
- }>;
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";
3732
+ }>>;
3446
3733
  }, z.core.$strip>;
3447
- export declare const zCreateOrganizationBody: z.ZodObject<{
3734
+ export declare const zUpdateContactBody: z.ZodObject<{
3448
3735
  type: z.ZodEnum<{
3449
3736
  business: "business";
3450
3737
  personal: "personal";
3451
3738
  }>;
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>;
3452
3747
  email: z.ZodEmail;
3453
- first_name: z.ZodString;
3454
- last_name: z.ZodString;
3455
- company_name: z.ZodString;
3456
- password: z.ZodString;
3457
- }, z.core.$strip>;
3458
- /**
3459
- * Organization signup accepted. Returns the generated organization id immediately; provisioning (billing, Keycloak realm, user) continues asynchronously in the background.
3460
- *
3461
- */
3462
- export declare const zCreateOrganizationResponse: z.ZodObject<{
3463
- id: z.ZodString;
3464
- }, z.core.$strip>;
3465
- /**
3466
- * List of repositories
3467
- */
3468
- export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
3469
- name: z.ZodString;
3470
- region: z.ZodString;
3471
- uri: z.ZodString;
3472
- }, z.core.$strip>>;
3473
- export declare const zListTagsPath: z.ZodObject<{
3474
- region: z.ZodString;
3475
- repository: z.ZodString;
3476
- }, z.core.$strip>;
3477
- /**
3478
- * Repository with tags
3479
- */
3480
- export declare const zListTagsResponse: z.ZodObject<{
3481
- name: z.ZodString;
3482
- region: z.ZodString;
3483
- uri: z.ZodString;
3484
- tags: z.ZodArray<z.ZodObject<{
3485
- name: z.ZodString;
3486
- size: z.ZodNumber;
3487
- mediaType: z.ZodOptional<z.ZodString>;
3488
- platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
3489
- }, z.core.$strip>>;
3490
- totalSize: z.ZodNumber;
3491
- }, z.core.$strip>;
3492
- export declare const zDeleteTagPath: z.ZodObject<{
3493
- region: z.ZodString;
3494
- repository: z.ZodString;
3495
- tag: z.ZodString;
3496
- }, z.core.$strip>;
3497
- export declare const zGetTagPath: z.ZodObject<{
3498
- region: z.ZodString;
3499
- repository: z.ZodString;
3500
- tag: z.ZodString;
3501
- }, z.core.$strip>;
3502
- /**
3503
- * Tag details
3504
- */
3505
- export declare const zGetTagResponse: z.ZodObject<{
3506
- name: z.ZodString;
3507
- digest: z.ZodString;
3508
- mediaType: z.ZodOptional<z.ZodString>;
3509
- config: z.ZodOptional<z.ZodObject<{
3510
- size: z.ZodNumber;
3511
- }, z.core.$strip>>;
3512
- layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
3513
- digest: z.ZodOptional<z.ZodString>;
3514
- size: z.ZodNumber;
3515
- }, z.core.$strip>>>;
3516
- manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
3517
- digest: z.ZodString;
3518
- platform: z.ZodOptional<z.ZodObject<{
3519
- architecture: z.ZodString;
3520
- os: z.ZodString;
3521
- variant: z.ZodOptional<z.ZodString>;
3522
- }, z.core.$strip>>;
3523
- layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
3524
- digest: z.ZodOptional<z.ZodString>;
3525
- size: z.ZodNumber;
3526
- }, z.core.$strip>>>;
3527
- size: z.ZodOptional<z.ZodNumber>;
3528
- }, z.core.$strip>>>;
3529
- size: z.ZodNumber;
3530
- region: z.ZodString;
3531
- repository: z.ZodString;
3532
- uri: z.ZodString;
3533
- }, z.core.$strip>;
3534
- /**
3535
- * Tickets for the organization.
3536
- */
3537
- export declare const zListTicketsResponse: z.ZodObject<{
3538
- items: z.ZodArray<z.ZodObject<{
3539
- id: z.ZodString;
3540
- status: z.ZodEnum<{
3541
- closed: "closed";
3542
- waiting_on_us: "waiting_on_us";
3543
- waiting_on_user: "waiting_on_user";
3544
- }>;
3545
- category: z.ZodEnum<{
3546
- billing: "billing";
3547
- technical: "technical";
3548
- general: "general";
3549
- }>;
3550
- summary: z.ZodString;
3551
- closed_at: z.ZodOptional<z.ZodISODateTime>;
3552
- date_created: z.ZodISODateTime;
3553
- date_updated: z.ZodISODateTime;
3554
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
3555
- id: z.ZodString;
3556
- type: z.ZodEnum<{
3557
- customer_reply: "customer_reply";
3558
- agent_reply: "agent_reply";
3559
- }>;
3560
- body: z.ZodString;
3561
- author_first_name: z.ZodOptional<z.ZodString>;
3562
- author_last_name: z.ZodOptional<z.ZodString>;
3563
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3564
- id: z.ZodString;
3565
- filename: z.ZodString;
3566
- content_type: z.ZodString;
3567
- size: z.ZodInt;
3568
- }, z.core.$strip>>>;
3569
- date_created: z.ZodISODateTime;
3570
- }, z.core.$strip>>>;
3571
- }, z.core.$strip>>;
3572
- }, z.core.$strip>;
3573
- export declare const zCreateTicketBody: z.ZodObject<{
3574
- payload: z.ZodOptional<z.ZodString>;
3575
- attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
3576
- }, z.core.$strip>;
3577
- /**
3578
- * Ticket created.
3579
- */
3580
- export declare const zCreateTicketResponse: z.ZodObject<{
3581
- id: z.ZodString;
3582
- status: z.ZodEnum<{
3583
- closed: "closed";
3584
- waiting_on_us: "waiting_on_us";
3585
- waiting_on_user: "waiting_on_user";
3586
- }>;
3587
- category: z.ZodEnum<{
3588
- billing: "billing";
3589
- technical: "technical";
3590
- general: "general";
3591
- }>;
3592
- summary: z.ZodString;
3593
- closed_at: z.ZodOptional<z.ZodISODateTime>;
3594
- date_created: z.ZodISODateTime;
3595
- date_updated: z.ZodISODateTime;
3596
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
3597
- id: z.ZodString;
3598
- type: z.ZodEnum<{
3599
- customer_reply: "customer_reply";
3600
- agent_reply: "agent_reply";
3601
- }>;
3602
- body: z.ZodString;
3603
- author_first_name: z.ZodOptional<z.ZodString>;
3604
- author_last_name: z.ZodOptional<z.ZodString>;
3605
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3606
- id: z.ZodString;
3607
- filename: z.ZodString;
3608
- content_type: z.ZodString;
3609
- size: z.ZodInt;
3610
- }, z.core.$strip>>>;
3611
- date_created: z.ZodISODateTime;
3612
- }, z.core.$strip>>>;
3613
- }, z.core.$strip>;
3614
- export declare const zCloseTicketPath: z.ZodObject<{
3615
- ticket_id: z.ZodString;
3616
- }, z.core.$strip>;
3617
- /**
3618
- * Ticket closed.
3619
- */
3620
- export declare const zCloseTicketResponse: z.ZodObject<{
3621
- id: z.ZodString;
3622
- status: z.ZodEnum<{
3623
- closed: "closed";
3624
- waiting_on_us: "waiting_on_us";
3625
- waiting_on_user: "waiting_on_user";
3626
- }>;
3627
- category: z.ZodEnum<{
3628
- billing: "billing";
3629
- technical: "technical";
3630
- general: "general";
3631
- }>;
3632
- summary: z.ZodString;
3633
- closed_at: z.ZodOptional<z.ZodISODateTime>;
3634
- date_created: z.ZodISODateTime;
3635
- date_updated: z.ZodISODateTime;
3636
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
3637
- id: z.ZodString;
3638
- type: z.ZodEnum<{
3639
- customer_reply: "customer_reply";
3640
- agent_reply: "agent_reply";
3641
- }>;
3642
- body: z.ZodString;
3643
- author_first_name: z.ZodOptional<z.ZodString>;
3644
- author_last_name: z.ZodOptional<z.ZodString>;
3645
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3646
- id: z.ZodString;
3647
- filename: z.ZodString;
3648
- content_type: z.ZodString;
3649
- size: z.ZodInt;
3650
- }, z.core.$strip>>>;
3651
- date_created: z.ZodISODateTime;
3652
- }, z.core.$strip>>>;
3653
- }, z.core.$strip>;
3654
- export declare const zGetTicketPath: z.ZodObject<{
3655
- ticket_id: z.ZodString;
3656
- }, z.core.$strip>;
3657
- /**
3658
- * Ticket with messages (internal notes excluded).
3659
- */
3660
- export declare const zGetTicketResponse: z.ZodObject<{
3661
- id: z.ZodString;
3662
- status: z.ZodEnum<{
3663
- closed: "closed";
3664
- waiting_on_us: "waiting_on_us";
3665
- waiting_on_user: "waiting_on_user";
3666
- }>;
3667
- category: z.ZodEnum<{
3668
- billing: "billing";
3669
- technical: "technical";
3670
- general: "general";
3671
- }>;
3672
- summary: z.ZodString;
3673
- closed_at: z.ZodOptional<z.ZodISODateTime>;
3674
- date_created: z.ZodISODateTime;
3675
- date_updated: z.ZodISODateTime;
3676
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
3677
- id: z.ZodString;
3678
- type: z.ZodEnum<{
3679
- customer_reply: "customer_reply";
3680
- agent_reply: "agent_reply";
3681
- }>;
3682
- body: z.ZodString;
3683
- author_first_name: z.ZodOptional<z.ZodString>;
3684
- author_last_name: z.ZodOptional<z.ZodString>;
3685
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3686
- id: z.ZodString;
3687
- filename: z.ZodString;
3688
- content_type: z.ZodString;
3689
- size: z.ZodInt;
3690
- }, z.core.$strip>>>;
3691
- date_created: z.ZodISODateTime;
3692
- }, z.core.$strip>>>;
3693
- }, z.core.$strip>;
3694
- export declare const zReplyTicketBody: z.ZodObject<{
3695
- payload: z.ZodOptional<z.ZodString>;
3696
- attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
3697
- }, z.core.$strip>;
3698
- export declare const zReplyTicketPath: z.ZodObject<{
3699
- ticket_id: z.ZodString;
3700
- }, z.core.$strip>;
3701
- /**
3702
- * Reply appended.
3703
- */
3704
- export declare const zReplyTicketResponse: z.ZodObject<{
3705
- id: z.ZodString;
3706
- type: z.ZodEnum<{
3707
- customer_reply: "customer_reply";
3708
- agent_reply: "agent_reply";
3709
- }>;
3710
- body: z.ZodString;
3711
- author_first_name: z.ZodOptional<z.ZodString>;
3712
- author_last_name: z.ZodOptional<z.ZodString>;
3713
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3714
- id: z.ZodString;
3715
- filename: z.ZodString;
3716
- content_type: z.ZodString;
3717
- size: z.ZodInt;
3718
- }, z.core.$strip>>>;
3719
- date_created: z.ZodISODateTime;
3720
- }, z.core.$strip>;
3721
- export declare const zGetTicketAttachmentPath: z.ZodObject<{
3722
- ticket_id: z.ZodString;
3723
- attachment_id: z.ZodString;
3724
- }, z.core.$strip>;
3725
- /**
3726
- * Attachment binary stream.
3727
- */
3728
- export declare const zGetTicketAttachmentResponse: z.ZodString;
3729
- /**
3730
- * Returns a list of access token details with masked secrets.
3731
- */
3732
- export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
3733
- name: z.ZodString;
3734
- role: z.ZodEnum<{
3735
- Administrator: "Administrator";
3736
- User: "User";
3737
- }>;
3738
- id: z.ZodOptional<z.ZodString>;
3739
- secret: z.ZodOptional<z.ZodString>;
3740
- date_created: z.ZodISODateTime;
3741
- }, z.core.$strip>>;
3742
- export declare const zCreateTokenBody: z.ZodObject<{
3743
- name: z.ZodString;
3744
- role: z.ZodEnum<{
3745
- Administrator: "Administrator";
3746
- User: "User";
3747
- }>;
3748
- }, z.core.$strip>;
3749
- /**
3750
- * Successfully created. Returns created token details with unmasked/raw secret.
3751
- */
3752
- export declare const zCreateTokenResponse: z.ZodObject<{
3753
- name: z.ZodString;
3754
- role: z.ZodEnum<{
3755
- Administrator: "Administrator";
3756
- User: "User";
3757
- }>;
3758
- id: z.ZodOptional<z.ZodString>;
3759
- secret: z.ZodOptional<z.ZodString>;
3760
- date_created: z.ZodISODateTime;
3761
- }, z.core.$strip>;
3762
- export declare const zDeleteTokenPath: z.ZodObject<{
3763
- token_id: z.ZodString;
3764
- }, z.core.$strip>;
3765
- export declare const zGetTokenPath: z.ZodObject<{
3766
- token_id: z.ZodString;
3767
- }, z.core.$strip>;
3768
- /**
3769
- * Returns access token details with masked secret.
3770
- */
3771
- export declare const zGetTokenResponse: z.ZodObject<{
3772
- name: z.ZodString;
3773
- role: z.ZodEnum<{
3774
- Administrator: "Administrator";
3775
- User: "User";
3776
- }>;
3777
- id: z.ZodOptional<z.ZodString>;
3778
- secret: z.ZodOptional<z.ZodString>;
3779
- date_created: z.ZodISODateTime;
3780
- }, z.core.$strip>;
3781
- export declare const zUpdateTokenBody: z.ZodObject<{
3782
- name: z.ZodOptional<z.ZodString>;
3783
- role: z.ZodOptional<z.ZodEnum<{
3784
- Administrator: "Administrator";
3785
- User: "User";
3786
- }>>;
3787
- }, z.core.$strip>;
3788
- export declare const zUpdateTokenPath: z.ZodObject<{
3789
- token_id: z.ZodString;
3790
- }, z.core.$strip>;
3791
- /**
3792
- * Successfully updated. Returns updated token details with masked secret.
3793
- */
3794
- export declare const zUpdateTokenResponse: z.ZodObject<{
3795
- name: z.ZodString;
3796
- role: z.ZodEnum<{
3797
- Administrator: "Administrator";
3798
- User: "User";
3799
- }>;
3800
- id: z.ZodOptional<z.ZodString>;
3801
- secret: z.ZodOptional<z.ZodString>;
3802
- date_created: z.ZodISODateTime;
3803
- }, z.core.$strip>;
3804
- export declare const zRegenerateTokenPath: z.ZodObject<{
3805
- token_id: z.ZodString;
3806
- }, z.core.$strip>;
3807
- /**
3808
- * Successfully updated. Returns updated token details with unmasked / raw secret.
3809
- */
3810
- export declare const zRegenerateTokenResponse: z.ZodObject<{
3811
- name: z.ZodString;
3812
- role: z.ZodEnum<{
3813
- Administrator: "Administrator";
3814
- User: "User";
3815
- }>;
3816
- id: z.ZodOptional<z.ZodString>;
3817
- secret: z.ZodOptional<z.ZodString>;
3818
- date_created: z.ZodISODateTime;
3819
- }, z.core.$strip>;
3820
- export declare const zListUserOrganizationsPath: z.ZodObject<{
3821
- email: z.ZodString;
3822
- }, z.core.$strip>;
3823
- /**
3824
- * An array of organizations the user belongs to.
3825
- */
3826
- export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
3827
- realm: z.ZodOptional<z.ZodString>;
3828
- displayName: z.ZodOptional<z.ZodString>;
3829
- }, z.core.$strip>>;
3830
- /**
3831
- * An array of users
3832
- */
3833
- export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
3834
- email: z.ZodEmail;
3835
- first_name: z.ZodString;
3836
- last_name: z.ZodString;
3837
- role: z.ZodEnum<{
3838
- Administrator: "Administrator";
3839
- User: "User";
3840
- }>;
3841
- status: z.ZodEnum<{
3842
- active: "active";
3843
- inactive: "inactive";
3844
- }>;
3845
- id: z.ZodUUID;
3846
- date_created: z.ZodISODateTime;
3847
- }, z.core.$strip>>;
3848
- export declare const zCreateUserBody: z.ZodObject<{
3849
- email: z.ZodEmail;
3850
- first_name: z.ZodString;
3851
- last_name: z.ZodString;
3852
- code: z.ZodString;
3853
- password: z.ZodString;
3854
- status: z.ZodOptional<z.ZodEnum<{
3855
- active: "active";
3856
- inactive: "inactive";
3857
- }>>;
3858
- role: z.ZodOptional<z.ZodEnum<{
3859
- Administrator: "Administrator";
3860
- User: "User";
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";
3861
3879
  }>>;
3862
3880
  }, z.core.$strip>;
3863
3881
  /**
3864
- * Successfully created. Returns created user details.
3865
- */
3866
- export declare const zCreateUserResponse: z.ZodObject<{
3867
- email: z.ZodEmail;
3868
- first_name: z.ZodString;
3869
- last_name: z.ZodString;
3870
- role: z.ZodEnum<{
3871
- Administrator: "Administrator";
3872
- User: "User";
3873
- }>;
3874
- status: z.ZodEnum<{
3875
- active: "active";
3876
- inactive: "inactive";
3877
- }>;
3878
- id: z.ZodUUID;
3879
- date_created: z.ZodISODateTime;
3880
- }, z.core.$strip>;
3881
- export declare const zDeleteUserPath: z.ZodObject<{
3882
- user_id: z.ZodString;
3883
- }, z.core.$strip>;
3884
- /**
3885
- * User profile information
3882
+ * Successfully updated. Returns updated organization details.
3886
3883
  */
3887
- export declare const zDeleteUserResponse: z.ZodObject<{
3888
- email: z.ZodEmail;
3889
- first_name: z.ZodString;
3890
- last_name: z.ZodString;
3891
- role: z.ZodEnum<{
3892
- Administrator: "Administrator";
3893
- User: "User";
3894
- }>;
3895
- status: z.ZodEnum<{
3896
- active: "active";
3897
- inactive: "inactive";
3884
+ export declare const zUpdateContactResponse: z.ZodObject<{
3885
+ type: z.ZodEnum<{
3886
+ business: "business";
3887
+ personal: "personal";
3898
3888
  }>;
3899
- id: z.ZodUUID;
3900
- date_created: z.ZodISODateTime;
3901
- }, z.core.$strip>;
3902
- export declare const zGetUserPath: z.ZodObject<{
3903
- user_id: z.ZodString;
3904
- }, z.core.$strip>;
3905
- /**
3906
- * User profile information
3907
- */
3908
- 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>;
3909
3897
  email: z.ZodEmail;
3910
- first_name: z.ZodString;
3911
- last_name: z.ZodString;
3912
- role: z.ZodEnum<{
3913
- Administrator: "Administrator";
3914
- User: "User";
3915
- }>;
3916
- status: z.ZodEnum<{
3917
- active: "active";
3918
- inactive: "inactive";
3919
- }>;
3920
- id: z.ZodUUID;
3921
- date_created: z.ZodISODateTime;
3922
- }, z.core.$strip>;
3923
- export declare const zUpdateUserBody: z.ZodObject<{
3924
- email: z.ZodOptional<z.ZodEmail>;
3925
- first_name: z.ZodOptional<z.ZodString>;
3926
- last_name: z.ZodOptional<z.ZodString>;
3927
- role: z.ZodOptional<z.ZodEnum<{
3928
- Administrator: "Administrator";
3929
- User: "User";
3930
- }>>;
3931
- status: z.ZodOptional<z.ZodEnum<{
3932
- active: "active";
3933
- inactive: "inactive";
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";
3934
4029
  }>>;
3935
4030
  }, z.core.$strip>;
3936
- export declare const zUpdateUserPath: z.ZodObject<{
3937
- user_id: z.ZodString;
3938
- }, z.core.$strip>;
3939
4031
  /**
3940
- * Successfully created. Returns created user details.
4032
+ * An array of the applied promotional credits records.
3941
4033
  */
3942
- export declare const zUpdateUserResponse: z.ZodObject<{
3943
- email: z.ZodEmail;
3944
- first_name: z.ZodString;
3945
- last_name: z.ZodString;
3946
- role: z.ZodEnum<{
3947
- Administrator: "Administrator";
3948
- User: "User";
3949
- }>;
3950
- status: z.ZodEnum<{
3951
- active: "active";
3952
- 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";
3953
4039
  }>;
3954
- id: z.ZodUUID;
3955
- date_created: z.ZodISODateTime;
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>;
3956
4049
  }, z.core.$strip>;
3957
4050
  //# sourceMappingURL=zod.gen.d.ts.map