@cloudfleet/sdk 0.0.1-aca000f → 0.0.1-af2f3f9

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,45 @@ 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";
192
+ enterprise: "enterprise";
204
193
  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
194
  }>>>;
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";
195
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
196
+ release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
197
+ stable: "stable";
198
+ rapid: "rapid";
199
+ extended: "extended";
217
200
  }>>>;
201
+ features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
202
+ gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
203
+ none: "none";
204
+ mps: "mps";
205
+ time_slicing: "time_slicing";
206
+ }>>>;
207
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
208
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
209
+ }, z.core.$strip>>>;
210
+ region: z.ZodString;
211
+ networking: z.ZodDefault<z.ZodOptional<z.ZodObject<{
212
+ pod_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
213
+ service_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
214
+ dual_stack: z.ZodOptional<z.ZodBoolean>;
215
+ pod_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
216
+ service_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
217
+ }, z.core.$strip>>>;
218
218
  }, z.core.$strip>;
219
219
  export declare const zClusterJoinInformation: z.ZodObject<{
220
220
  certificate_authority: z.ZodString;
221
221
  endpoint: z.ZodURL;
222
222
  cluster_dns: z.ZodString;
223
+ pod_cidr: z.ZodString;
223
224
  auth_key: z.ZodString;
224
225
  bootstrap_token: z.ZodString;
225
226
  versions: z.ZodObject<{
@@ -234,23 +235,41 @@ export declare const zClusterJoinInformation: z.ZodObject<{
234
235
  gcp_workload_identity_provider: z.ZodString;
235
236
  }, z.core.$strip>;
236
237
  }, z.core.$strip>;
238
+ /**
239
+ * Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
240
+ */
237
241
  export declare const zCluster: z.ZodObject<{
238
242
  name: z.ZodString;
239
- tier: z.ZodEnum<{
243
+ tier: z.ZodDefault<z.ZodEnum<{
240
244
  basic: "basic";
245
+ enterprise: "enterprise";
241
246
  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
- }>>>;
247
+ }>>;
248
+ version_channel: z.ZodDefault<z.ZodString>;
249
+ release_channel: z.ZodDefault<z.ZodEnum<{
250
+ stable: "stable";
251
+ rapid: "rapid";
252
+ extended: "extended";
253
+ }>>;
254
+ features: z.ZodDefault<z.ZodObject<{
255
+ gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
256
+ none: "none";
257
+ mps: "mps";
258
+ time_slicing: "time_slicing";
259
+ }>>;
260
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
261
+ cilium_socket_lb_host_namespace_only: z.ZodBoolean;
262
+ }, z.core.$strip>>;
263
+ region: z.ZodString;
264
+ networking: z.ZodDefault<z.ZodObject<{
265
+ pod_cidr: z.ZodDefault<z.ZodString>;
266
+ service_cidr: z.ZodDefault<z.ZodString>;
267
+ dual_stack: z.ZodBoolean;
268
+ pod_cidr_v6: z.ZodDefault<z.ZodString>;
269
+ service_cidr_v6: z.ZodDefault<z.ZodString>;
270
+ }, z.core.$strip>>;
249
271
  id: z.ZodUUID;
250
272
  status: z.ZodEnum<{
251
- deleted: "deleted";
252
- failed: "failed";
253
- active: "active";
254
273
  disabled: "disabled";
255
274
  creating: "creating";
256
275
  deployed: "deployed";
@@ -266,17 +285,37 @@ export declare const zCluster: z.ZodObject<{
266
285
  version_current: z.ZodOptional<z.ZodString>;
267
286
  created_at: z.ZodOptional<z.ZodString>;
268
287
  updated_at: z.ZodOptional<z.ZodString>;
269
- ready: z.ZodOptional<z.ZodBoolean>;
270
- version_channel: z.ZodOptional<z.ZodString>;
288
+ ready: z.ZodBoolean;
271
289
  }, z.core.$strip>;
290
+ /**
291
+ * Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
292
+ */
272
293
  export declare const zClusterUpdateInput: z.ZodObject<{
273
- name: z.ZodOptional<z.ZodString>;
274
- tier: z.ZodEnum<{
294
+ name: z.ZodString;
295
+ tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
275
296
  basic: "basic";
297
+ enterprise: "enterprise";
276
298
  pro: "pro";
277
- }>;
278
- version_channel: z.ZodOptional<z.ZodString>;
299
+ }>>>;
300
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
301
+ release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
302
+ stable: "stable";
303
+ rapid: "rapid";
304
+ extended: "extended";
305
+ }>>>;
306
+ features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
307
+ gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
308
+ none: "none";
309
+ mps: "mps";
310
+ time_slicing: "time_slicing";
311
+ }>>>;
312
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
313
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
314
+ }, z.core.$strip>>>;
279
315
  }, z.core.$strip>;
316
+ /**
317
+ * Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
318
+ */
280
319
  export declare const zFleetCreateInput: z.ZodObject<{
281
320
  limits: z.ZodOptional<z.ZodObject<{
282
321
  cpu: z.ZodOptional<z.ZodInt>;
@@ -293,7 +332,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
293
332
  enabled: z.ZodBoolean;
294
333
  controllerRoleArn: z.ZodOptional<z.ZodString>;
295
334
  }, z.core.$strip>>;
296
- constraints: z.ZodOptional<z.ZodObject<{
335
+ constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
297
336
  'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
298
337
  "on-demand": "on-demand";
299
338
  spot: "spot";
@@ -302,7 +341,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
302
341
  amd64: "amd64";
303
342
  arm64: "arm64";
304
343
  }>>>>;
305
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
344
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
306
345
  p3: "p3";
307
346
  cx: "cx";
308
347
  h1: "h1";
@@ -461,8 +500,8 @@ export declare const zFleetCreateInput: z.ZodObject<{
461
500
  x8g: "x8g";
462
501
  z1d: "z1d";
463
502
  z3: "z3";
464
- }>>>;
465
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
503
+ }>>>>;
504
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
466
505
  "africa-south1": "africa-south1";
467
506
  "ap-northeast-1": "ap-northeast-1";
468
507
  "ap-northeast-2": "ap-northeast-2";
@@ -527,14 +566,17 @@ export declare const zFleetCreateInput: z.ZodObject<{
527
566
  "us-west2": "us-west2";
528
567
  "us-west3": "us-west3";
529
568
  "us-west4": "us-west4";
530
- }>>>;
531
- }, z.core.$strip>>;
569
+ }>>>>;
570
+ }, z.core.$strip>>>;
532
571
  scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
533
572
  aggressive: "aggressive";
534
573
  conservative: "conservative";
535
574
  }>>>;
536
575
  id: z.ZodString;
537
576
  }, z.core.$strip>;
577
+ /**
578
+ * Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
579
+ */
538
580
  export declare const zFleet: z.ZodObject<{
539
581
  limits: z.ZodOptional<z.ZodObject<{
540
582
  cpu: z.ZodOptional<z.ZodInt>;
@@ -551,16 +593,16 @@ export declare const zFleet: z.ZodObject<{
551
593
  enabled: z.ZodBoolean;
552
594
  controllerRoleArn: z.ZodOptional<z.ZodString>;
553
595
  }, z.core.$strip>>;
554
- constraints: z.ZodOptional<z.ZodObject<{
555
- 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
596
+ constraints: z.ZodDefault<z.ZodObject<{
597
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
556
598
  "on-demand": "on-demand";
557
599
  spot: "spot";
558
- }>>>>;
559
- 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
600
+ }>>>;
601
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
560
602
  amd64: "amd64";
561
603
  arm64: "arm64";
562
- }>>>>;
563
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
604
+ }>>>;
605
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
564
606
  p3: "p3";
565
607
  cx: "cx";
566
608
  h1: "h1";
@@ -719,8 +761,8 @@ export declare const zFleet: z.ZodObject<{
719
761
  x8g: "x8g";
720
762
  z1d: "z1d";
721
763
  z3: "z3";
722
- }>>>;
723
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
764
+ }>>>>;
765
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
724
766
  "africa-south1": "africa-south1";
725
767
  "ap-northeast-1": "ap-northeast-1";
726
768
  "ap-northeast-2": "ap-northeast-2";
@@ -785,14 +827,21 @@ export declare const zFleet: z.ZodObject<{
785
827
  "us-west2": "us-west2";
786
828
  "us-west3": "us-west3";
787
829
  "us-west4": "us-west4";
788
- }>>>;
830
+ }>>>>;
789
831
  }, z.core.$strip>>;
790
832
  scalingProfile: z.ZodDefault<z.ZodEnum<{
791
833
  aggressive: "aggressive";
792
834
  conservative: "conservative";
793
835
  }>>;
794
836
  id: z.ZodString;
837
+ ready: z.ZodBoolean;
838
+ status_message: z.ZodOptional<z.ZodString>;
839
+ created_at: z.ZodString;
840
+ updated_at: z.ZodString;
795
841
  }, z.core.$strip>;
842
+ /**
843
+ * Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
844
+ */
796
845
  export declare const zFleetUpdateInput: z.ZodObject<{
797
846
  limits: z.ZodOptional<z.ZodObject<{
798
847
  cpu: z.ZodOptional<z.ZodInt>;
@@ -809,16 +858,16 @@ export declare const zFleetUpdateInput: z.ZodObject<{
809
858
  enabled: z.ZodBoolean;
810
859
  controllerRoleArn: z.ZodOptional<z.ZodString>;
811
860
  }, z.core.$strip>>;
812
- constraints: z.ZodOptional<z.ZodObject<{
813
- 'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
861
+ constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
862
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
814
863
  "on-demand": "on-demand";
815
864
  spot: "spot";
816
- }>>>;
817
- 'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
865
+ }>>>>;
866
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
818
867
  amd64: "amd64";
819
868
  arm64: "arm64";
820
- }>>>;
821
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
869
+ }>>>>;
870
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
822
871
  p3: "p3";
823
872
  cx: "cx";
824
873
  h1: "h1";
@@ -977,8 +1026,8 @@ export declare const zFleetUpdateInput: z.ZodObject<{
977
1026
  x8g: "x8g";
978
1027
  z1d: "z1d";
979
1028
  z3: "z3";
980
- }>>>;
981
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
1029
+ }>>>>;
1030
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
982
1031
  "africa-south1": "africa-south1";
983
1032
  "ap-northeast-1": "ap-northeast-1";
984
1033
  "ap-northeast-2": "ap-northeast-2";
@@ -1043,12 +1092,19 @@ export declare const zFleetUpdateInput: z.ZodObject<{
1043
1092
  "us-west2": "us-west2";
1044
1093
  "us-west3": "us-west3";
1045
1094
  "us-west4": "us-west4";
1046
- }>>>;
1047
- }, z.core.$strip>>;
1048
- scalingProfile: z.ZodEnum<{
1095
+ }>>>>;
1096
+ }, z.core.$strip>>>;
1097
+ scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1049
1098
  aggressive: "aggressive";
1050
1099
  conservative: "conservative";
1051
- }>;
1100
+ }>>>;
1101
+ }, z.core.$strip>;
1102
+ export declare const zInviteCreateInput: z.ZodObject<{
1103
+ email: z.ZodEmail;
1104
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1105
+ Administrator: "Administrator";
1106
+ User: "User";
1107
+ }>>>;
1052
1108
  }, z.core.$strip>;
1053
1109
  export declare const zInvite: z.ZodObject<{
1054
1110
  id: z.ZodOptional<z.ZodString>;
@@ -1056,6 +1112,10 @@ export declare const zInvite: z.ZodObject<{
1056
1112
  date_created: z.ZodISODateTime;
1057
1113
  email: z.ZodOptional<z.ZodEmail>;
1058
1114
  code: z.ZodOptional<z.ZodString>;
1115
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1116
+ Administrator: "Administrator";
1117
+ User: "User";
1118
+ }>>>;
1059
1119
  }, z.core.$strip>;
1060
1120
  export declare const zInvoice: z.ZodObject<{
1061
1121
  id: z.ZodOptional<z.ZodString>;
@@ -1105,6 +1165,9 @@ export declare const zOrganizationCreateInput: z.ZodObject<{
1105
1165
  company_name: z.ZodString;
1106
1166
  password: z.ZodString;
1107
1167
  }, z.core.$strip>;
1168
+ export declare const zOrganizationCreateOutput: z.ZodObject<{
1169
+ id: z.ZodString;
1170
+ }, z.core.$strip>;
1108
1171
  export declare const zOrganization: z.ZodObject<{
1109
1172
  id: z.ZodUUID;
1110
1173
  name: z.ZodOptional<z.ZodString>;
@@ -1118,6 +1181,8 @@ export declare const zOrganization: z.ZodObject<{
1118
1181
  basic_clusters_available: z.ZodInt;
1119
1182
  pro_clusters_max: z.ZodInt;
1120
1183
  pro_clusters_available: z.ZodInt;
1184
+ enterprise_clusters_max: z.ZodInt;
1185
+ enterprise_clusters_available: z.ZodInt;
1121
1186
  fleets_max: z.ZodInt;
1122
1187
  cluster_tiers: z.ZodArray<z.ZodString>;
1123
1188
  regions: z.ZodArray<z.ZodString>;
@@ -1139,31 +1204,28 @@ export declare const zOrganization: z.ZodObject<{
1139
1204
  }>;
1140
1205
  }, z.core.$strip>;
1141
1206
  export declare const zPaymentMethod: z.ZodObject<{
1142
- id: z.ZodUUID;
1143
- setup: z.ZodBoolean;
1207
+ id: z.ZodString;
1144
1208
  type: z.ZodEnum<{
1145
1209
  card: "card";
1210
+ sepa_debit: "sepa_debit";
1211
+ bank_transfer: "bank_transfer";
1146
1212
  }>;
1147
1213
  last4: z.ZodString;
1148
1214
  exp_month: z.ZodInt;
1149
1215
  exp_year: z.ZodInt;
1150
- brand: z.ZodEnum<{
1151
- unknown: "unknown";
1152
- amex: "amex";
1153
- diners: "diners";
1154
- discover: "discover";
1155
- eftpos_au: "eftpos_au";
1156
- jcb: "jcb";
1157
- mastercard: "mastercard";
1158
- unionpay: "unionpay";
1159
- visa: "visa";
1160
- }>;
1216
+ brand: z.ZodString;
1217
+ iban: z.ZodString;
1218
+ bic: z.ZodString;
1219
+ account_holder_name: z.ZodString;
1220
+ is_default: z.ZodBoolean;
1161
1221
  }, z.core.$strip>;
1162
1222
  export declare const zPlatformQuota: z.ZodObject<{
1163
1223
  basic_clusters_max: z.ZodInt;
1164
1224
  basic_clusters_available: z.ZodInt;
1165
1225
  pro_clusters_max: z.ZodInt;
1166
1226
  pro_clusters_available: z.ZodInt;
1227
+ enterprise_clusters_max: z.ZodInt;
1228
+ enterprise_clusters_available: z.ZodInt;
1167
1229
  fleets_max: z.ZodInt;
1168
1230
  cluster_tiers: z.ZodArray<z.ZodString>;
1169
1231
  regions: z.ZodArray<z.ZodString>;
@@ -1380,14 +1442,6 @@ export declare const zUserCreateInput: z.ZodObject<{
1380
1442
  last_name: z.ZodString;
1381
1443
  code: z.ZodString;
1382
1444
  password: z.ZodString;
1383
- status: z.ZodOptional<z.ZodEnum<{
1384
- active: "active";
1385
- inactive: "inactive";
1386
- }>>;
1387
- role: z.ZodOptional<z.ZodEnum<{
1388
- Administrator: "Administrator";
1389
- User: "User";
1390
- }>>;
1391
1445
  }, z.core.$strip>;
1392
1446
  export declare const zUser: z.ZodObject<{
1393
1447
  email: z.ZodEmail;
@@ -1417,642 +1471,654 @@ export declare const zUserUpdateInput: z.ZodObject<{
1417
1471
  inactive: "inactive";
1418
1472
  }>>;
1419
1473
  }, z.core.$strip>;
1420
- export declare const zGetUsageQuery: z.ZodObject<{
1421
- granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1422
- hourly: "hourly";
1423
- daily: "daily";
1424
- monthly: "monthly";
1425
- }>>>;
1474
+ export declare const zListUserOrganizationsPath: z.ZodObject<{
1475
+ email: z.ZodString;
1426
1476
  }, z.core.$strip>;
1427
1477
  /**
1428
- * Usage data with facets for filtering
1478
+ * An array of organizations the user belongs to.
1429
1479
  */
1430
- export declare const zGetUsageResponse: z.ZodObject<{
1431
- data: z.ZodArray<z.ZodObject<{
1432
- hour: z.ZodString;
1433
- cluster_id: z.ZodString;
1434
- product: z.ZodString;
1435
- value: z.ZodNumber;
1436
- price: z.ZodNumber;
1437
- total: z.ZodNumber;
1438
- }, z.core.$strip>>;
1439
- facets: z.ZodObject<{
1440
- cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
1441
- product: z.ZodOptional<z.ZodArray<z.ZodString>>;
1442
- }, z.core.$strip>;
1480
+ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
1481
+ realm: z.ZodOptional<z.ZodString>;
1482
+ displayName: z.ZodOptional<z.ZodString>;
1483
+ }, z.core.$strip>>;
1484
+ /**
1485
+ * An array of users
1486
+ */
1487
+ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
1488
+ email: z.ZodEmail;
1489
+ first_name: z.ZodString;
1490
+ last_name: z.ZodString;
1491
+ role: z.ZodEnum<{
1492
+ Administrator: "Administrator";
1493
+ User: "User";
1494
+ }>;
1495
+ status: z.ZodEnum<{
1496
+ active: "active";
1497
+ inactive: "inactive";
1498
+ }>;
1499
+ id: z.ZodUUID;
1500
+ date_created: z.ZodISODateTime;
1501
+ }, z.core.$strip>>;
1502
+ export declare const zCreateUserBody: z.ZodObject<{
1503
+ email: z.ZodEmail;
1504
+ first_name: z.ZodString;
1505
+ last_name: z.ZodString;
1506
+ code: z.ZodString;
1507
+ password: z.ZodString;
1443
1508
  }, z.core.$strip>;
1444
1509
  /**
1445
- * Redacted payment card information.
1510
+ * Successfully created. Returns created user details.
1446
1511
  */
1447
- export declare const zGetPaymentMethodResponse: z.ZodObject<{
1512
+ export declare const zCreateUserResponse: z.ZodObject<{
1513
+ email: z.ZodEmail;
1514
+ first_name: z.ZodString;
1515
+ last_name: z.ZodString;
1516
+ role: z.ZodEnum<{
1517
+ Administrator: "Administrator";
1518
+ User: "User";
1519
+ }>;
1520
+ status: z.ZodEnum<{
1521
+ active: "active";
1522
+ inactive: "inactive";
1523
+ }>;
1448
1524
  id: z.ZodUUID;
1449
- setup: z.ZodBoolean;
1450
- type: z.ZodEnum<{
1451
- card: "card";
1525
+ date_created: z.ZodISODateTime;
1526
+ }, z.core.$strip>;
1527
+ export declare const zDeleteUserPath: z.ZodObject<{
1528
+ user_id: z.ZodString;
1529
+ }, z.core.$strip>;
1530
+ /**
1531
+ * User profile information
1532
+ */
1533
+ export declare const zDeleteUserResponse: z.ZodObject<{
1534
+ email: z.ZodEmail;
1535
+ first_name: z.ZodString;
1536
+ last_name: z.ZodString;
1537
+ role: z.ZodEnum<{
1538
+ Administrator: "Administrator";
1539
+ User: "User";
1452
1540
  }>;
1453
- last4: z.ZodString;
1454
- exp_month: z.ZodInt;
1455
- exp_year: z.ZodInt;
1456
- brand: z.ZodEnum<{
1457
- unknown: "unknown";
1458
- amex: "amex";
1459
- diners: "diners";
1460
- discover: "discover";
1461
- eftpos_au: "eftpos_au";
1462
- jcb: "jcb";
1463
- mastercard: "mastercard";
1464
- unionpay: "unionpay";
1465
- visa: "visa";
1541
+ status: z.ZodEnum<{
1542
+ active: "active";
1543
+ inactive: "inactive";
1466
1544
  }>;
1545
+ id: z.ZodUUID;
1546
+ date_created: z.ZodISODateTime;
1547
+ }, z.core.$strip>;
1548
+ export declare const zGetUserPath: z.ZodObject<{
1549
+ user_id: z.ZodString;
1467
1550
  }, z.core.$strip>;
1468
1551
  /**
1469
- * 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.
1470
- *
1552
+ * User profile information
1471
1553
  */
1472
- export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
1473
- id: z.ZodOptional<z.ZodString>;
1554
+ export declare const zGetUserResponse: z.ZodObject<{
1555
+ email: z.ZodEmail;
1556
+ first_name: z.ZodString;
1557
+ last_name: z.ZodString;
1558
+ role: z.ZodEnum<{
1559
+ Administrator: "Administrator";
1560
+ User: "User";
1561
+ }>;
1562
+ status: z.ZodEnum<{
1563
+ active: "active";
1564
+ inactive: "inactive";
1565
+ }>;
1566
+ id: z.ZodUUID;
1567
+ date_created: z.ZodISODateTime;
1568
+ }, z.core.$strip>;
1569
+ export declare const zUpdateUserBody: z.ZodObject<{
1570
+ email: z.ZodOptional<z.ZodEmail>;
1571
+ first_name: z.ZodOptional<z.ZodString>;
1572
+ last_name: z.ZodOptional<z.ZodString>;
1573
+ role: z.ZodOptional<z.ZodEnum<{
1574
+ Administrator: "Administrator";
1575
+ User: "User";
1576
+ }>>;
1577
+ status: z.ZodOptional<z.ZodEnum<{
1578
+ active: "active";
1579
+ inactive: "inactive";
1580
+ }>>;
1581
+ }, z.core.$strip>;
1582
+ export declare const zUpdateUserPath: z.ZodObject<{
1583
+ user_id: z.ZodString;
1474
1584
  }, z.core.$strip>;
1475
1585
  /**
1476
- * An array of usage records.
1586
+ * Successfully created. Returns created user details.
1477
1587
  */
1478
- export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
1479
- id: z.ZodOptional<z.ZodString>;
1480
- number: z.ZodOptional<z.ZodString>;
1481
- status: z.ZodOptional<z.ZodString>;
1482
- total: z.ZodOptional<z.ZodNumber>;
1483
- currency: z.ZodOptional<z.ZodString>;
1484
- created: z.ZodISODateTime;
1485
- period_start: z.ZodISODateTime;
1486
- period_end: z.ZodISODateTime;
1487
- invoice_pdf: z.ZodOptional<z.ZodString>;
1488
- }, z.core.$strip>>;
1588
+ export declare const zUpdateUserResponse: z.ZodObject<{
1589
+ email: z.ZodEmail;
1590
+ first_name: z.ZodString;
1591
+ last_name: z.ZodString;
1592
+ role: z.ZodEnum<{
1593
+ Administrator: "Administrator";
1594
+ User: "User";
1595
+ }>;
1596
+ status: z.ZodEnum<{
1597
+ active: "active";
1598
+ inactive: "inactive";
1599
+ }>;
1600
+ id: z.ZodUUID;
1601
+ date_created: z.ZodISODateTime;
1602
+ }, z.core.$strip>;
1489
1603
  /**
1490
- * Returns a single object containing organization contact and billing address details.
1604
+ * Returns a list of access token details with masked secrets.
1491
1605
  */
1492
- export declare const zGetContactResponse: z.ZodObject<{
1493
- type: z.ZodEnum<{
1494
- business: "business";
1495
- personal: "personal";
1606
+ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
1607
+ name: z.ZodString;
1608
+ role: z.ZodEnum<{
1609
+ Administrator: "Administrator";
1610
+ User: "User";
1496
1611
  }>;
1497
- company: z.ZodOptional<z.ZodString>;
1498
- address1: z.ZodOptional<z.ZodString>;
1499
- address2: z.ZodOptional<z.ZodString>;
1500
- postalCode: z.ZodOptional<z.ZodString>;
1501
- city: z.ZodOptional<z.ZodString>;
1502
- state: z.ZodOptional<z.ZodString>;
1503
- country: z.ZodOptional<z.ZodString>;
1504
- phone: z.ZodOptional<z.ZodString>;
1505
- email: z.ZodEmail;
1506
- individual_name: z.ZodString;
1507
- tax_id: z.ZodOptional<z.ZodString>;
1508
- tax_id_type: z.ZodOptional<z.ZodEnum<{
1509
- "": "";
1510
- ad_nrt: "ad_nrt";
1511
- ae_trn: "ae_trn";
1512
- al_tin: "al_tin";
1513
- am_tin: "am_tin";
1514
- ao_tin: "ao_tin";
1515
- ar_cuit: "ar_cuit";
1516
- at_vat: "at_vat";
1517
- au_abn: "au_abn";
1518
- au_arn: "au_arn";
1519
- ba_tin: "ba_tin";
1520
- bb_tin: "bb_tin";
1521
- be_vat: "be_vat";
1522
- bg_uic: "bg_uic";
1523
- bg_vat: "bg_vat";
1524
- bh_vat: "bh_vat";
1525
- bo_tin: "bo_tin";
1526
- br_cnpj: "br_cnpj";
1527
- br_cpf: "br_cpf";
1528
- bs_tin: "bs_tin";
1529
- by_tin: "by_tin";
1530
- ca_bn: "ca_bn";
1531
- ca_gst_hst: "ca_gst_hst";
1532
- ca_pst_bc: "ca_pst_bc";
1533
- ca_pst_mb: "ca_pst_mb";
1534
- ca_pst_sk: "ca_pst_sk";
1535
- ca_qst: "ca_qst";
1536
- cd_nif: "cd_nif";
1537
- ch_uid: "ch_uid";
1538
- ch_vat: "ch_vat";
1539
- cl_tin: "cl_tin";
1540
- cn_tin: "cn_tin";
1541
- co_nit: "co_nit";
1542
- cr_tin: "cr_tin";
1543
- cy_vat: "cy_vat";
1544
- cz_vat: "cz_vat";
1545
- de_stn: "de_stn";
1546
- de_vat: "de_vat";
1547
- dk_vat: "dk_vat";
1548
- do_rcn: "do_rcn";
1549
- ec_ruc: "ec_ruc";
1550
- ee_vat: "ee_vat";
1551
- eg_tin: "eg_tin";
1552
- es_cif: "es_cif";
1553
- es_vat: "es_vat";
1554
- eu_oss_vat: "eu_oss_vat";
1555
- fi_vat: "fi_vat";
1556
- fr_vat: "fr_vat";
1557
- gb_vat: "gb_vat";
1558
- ge_vat: "ge_vat";
1559
- gn_nif: "gn_nif";
1560
- gr_vat: "gr_vat";
1561
- hk_br: "hk_br";
1562
- hr_oib: "hr_oib";
1563
- hr_vat: "hr_vat";
1564
- hu_tin: "hu_tin";
1565
- hu_vat: "hu_vat";
1566
- id_npwp: "id_npwp";
1567
- ie_vat: "ie_vat";
1568
- il_vat: "il_vat";
1569
- in_gst: "in_gst";
1570
- is_vat: "is_vat";
1571
- it_vat: "it_vat";
1572
- jp_cn: "jp_cn";
1573
- jp_rn: "jp_rn";
1574
- jp_trn: "jp_trn";
1575
- ke_pin: "ke_pin";
1576
- kh_tin: "kh_tin";
1577
- kr_brn: "kr_brn";
1578
- kz_bin: "kz_bin";
1579
- li_uid: "li_uid";
1580
- li_vat: "li_vat";
1581
- lt_vat: "lt_vat";
1582
- lu_vat: "lu_vat";
1583
- lv_vat: "lv_vat";
1584
- ma_vat: "ma_vat";
1585
- md_vat: "md_vat";
1586
- me_pib: "me_pib";
1587
- mk_vat: "mk_vat";
1588
- mr_nif: "mr_nif";
1589
- mt_vat: "mt_vat";
1590
- mx_rfc: "mx_rfc";
1591
- my_frp: "my_frp";
1592
- my_itn: "my_itn";
1593
- my_sst: "my_sst";
1594
- ng_tin: "ng_tin";
1595
- nl_vat: "nl_vat";
1596
- no_vat: "no_vat";
1597
- no_voec: "no_voec";
1598
- np_pan: "np_pan";
1599
- nz_gst: "nz_gst";
1600
- om_vat: "om_vat";
1601
- pe_ruc: "pe_ruc";
1602
- ph_tin: "ph_tin";
1603
- pl_vat: "pl_vat";
1604
- pt_vat: "pt_vat";
1605
- ro_tin: "ro_tin";
1606
- ro_vat: "ro_vat";
1607
- rs_pib: "rs_pib";
1608
- ru_inn: "ru_inn";
1609
- ru_kpp: "ru_kpp";
1610
- sa_vat: "sa_vat";
1611
- se_vat: "se_vat";
1612
- sg_gst: "sg_gst";
1613
- sg_uen: "sg_uen";
1614
- si_tin: "si_tin";
1615
- si_vat: "si_vat";
1616
- sk_vat: "sk_vat";
1617
- sn_ninea: "sn_ninea";
1618
- sr_fin: "sr_fin";
1619
- sv_nit: "sv_nit";
1620
- th_vat: "th_vat";
1621
- tj_tin: "tj_tin";
1622
- tr_tin: "tr_tin";
1623
- tw_vat: "tw_vat";
1624
- tz_vat: "tz_vat";
1625
- ua_vat: "ua_vat";
1626
- ug_tin: "ug_tin";
1627
- us_ein: "us_ein";
1628
- uy_ruc: "uy_ruc";
1629
- uz_tin: "uz_tin";
1630
- uz_vat: "uz_vat";
1631
- ve_rif: "ve_rif";
1632
- vn_tin: "vn_tin";
1633
- xi_vat: "xi_vat";
1634
- za_vat: "za_vat";
1635
- zm_tin: "zm_tin";
1636
- zw_tin: "zw_tin";
1612
+ id: z.ZodOptional<z.ZodString>;
1613
+ secret: z.ZodOptional<z.ZodString>;
1614
+ date_created: z.ZodISODateTime;
1615
+ }, z.core.$strip>>;
1616
+ export declare const zCreateTokenBody: z.ZodObject<{
1617
+ name: z.ZodString;
1618
+ role: z.ZodEnum<{
1619
+ Administrator: "Administrator";
1620
+ User: "User";
1621
+ }>;
1622
+ }, z.core.$strip>;
1623
+ /**
1624
+ * Successfully created. Returns created token details with unmasked/raw secret.
1625
+ */
1626
+ export declare const zCreateTokenResponse: z.ZodObject<{
1627
+ name: z.ZodString;
1628
+ role: z.ZodEnum<{
1629
+ Administrator: "Administrator";
1630
+ User: "User";
1631
+ }>;
1632
+ id: z.ZodOptional<z.ZodString>;
1633
+ secret: z.ZodOptional<z.ZodString>;
1634
+ date_created: z.ZodISODateTime;
1635
+ }, z.core.$strip>;
1636
+ export declare const zDeleteTokenPath: z.ZodObject<{
1637
+ token_id: z.ZodString;
1638
+ }, z.core.$strip>;
1639
+ export declare const zGetTokenPath: z.ZodObject<{
1640
+ token_id: z.ZodString;
1641
+ }, z.core.$strip>;
1642
+ /**
1643
+ * Returns access token details with masked secret.
1644
+ */
1645
+ export declare const zGetTokenResponse: z.ZodObject<{
1646
+ name: z.ZodString;
1647
+ role: z.ZodEnum<{
1648
+ Administrator: "Administrator";
1649
+ User: "User";
1650
+ }>;
1651
+ id: z.ZodOptional<z.ZodString>;
1652
+ secret: z.ZodOptional<z.ZodString>;
1653
+ date_created: z.ZodISODateTime;
1654
+ }, z.core.$strip>;
1655
+ export declare const zUpdateTokenBody: z.ZodObject<{
1656
+ name: z.ZodOptional<z.ZodString>;
1657
+ role: z.ZodOptional<z.ZodEnum<{
1658
+ Administrator: "Administrator";
1659
+ User: "User";
1637
1660
  }>>;
1638
1661
  }, z.core.$strip>;
1639
- export declare const zUpdateContactBody: z.ZodObject<{
1640
- type: z.ZodEnum<{
1641
- business: "business";
1642
- personal: "personal";
1662
+ export declare const zUpdateTokenPath: z.ZodObject<{
1663
+ token_id: z.ZodString;
1664
+ }, z.core.$strip>;
1665
+ /**
1666
+ * Successfully updated. Returns updated token details with masked secret.
1667
+ */
1668
+ export declare const zUpdateTokenResponse: z.ZodObject<{
1669
+ name: z.ZodString;
1670
+ role: z.ZodEnum<{
1671
+ Administrator: "Administrator";
1672
+ User: "User";
1643
1673
  }>;
1644
- company: z.ZodOptional<z.ZodString>;
1645
- address1: z.ZodOptional<z.ZodString>;
1646
- address2: z.ZodOptional<z.ZodString>;
1647
- postalCode: z.ZodOptional<z.ZodString>;
1648
- city: z.ZodOptional<z.ZodString>;
1649
- state: z.ZodOptional<z.ZodString>;
1650
- country: z.ZodOptional<z.ZodString>;
1651
- phone: z.ZodOptional<z.ZodString>;
1652
- email: z.ZodEmail;
1653
- individual_name: z.ZodString;
1654
- tax_id: z.ZodOptional<z.ZodString>;
1655
- tax_id_type: z.ZodOptional<z.ZodEnum<{
1656
- "": "";
1657
- ad_nrt: "ad_nrt";
1658
- ae_trn: "ae_trn";
1659
- al_tin: "al_tin";
1660
- am_tin: "am_tin";
1661
- ao_tin: "ao_tin";
1662
- ar_cuit: "ar_cuit";
1663
- at_vat: "at_vat";
1664
- au_abn: "au_abn";
1665
- au_arn: "au_arn";
1666
- ba_tin: "ba_tin";
1667
- bb_tin: "bb_tin";
1668
- be_vat: "be_vat";
1669
- bg_uic: "bg_uic";
1670
- bg_vat: "bg_vat";
1671
- bh_vat: "bh_vat";
1672
- bo_tin: "bo_tin";
1673
- br_cnpj: "br_cnpj";
1674
- br_cpf: "br_cpf";
1675
- bs_tin: "bs_tin";
1676
- by_tin: "by_tin";
1677
- ca_bn: "ca_bn";
1678
- ca_gst_hst: "ca_gst_hst";
1679
- ca_pst_bc: "ca_pst_bc";
1680
- ca_pst_mb: "ca_pst_mb";
1681
- ca_pst_sk: "ca_pst_sk";
1682
- ca_qst: "ca_qst";
1683
- cd_nif: "cd_nif";
1684
- ch_uid: "ch_uid";
1685
- ch_vat: "ch_vat";
1686
- cl_tin: "cl_tin";
1687
- cn_tin: "cn_tin";
1688
- co_nit: "co_nit";
1689
- cr_tin: "cr_tin";
1690
- cy_vat: "cy_vat";
1691
- cz_vat: "cz_vat";
1692
- de_stn: "de_stn";
1693
- de_vat: "de_vat";
1694
- dk_vat: "dk_vat";
1695
- do_rcn: "do_rcn";
1696
- ec_ruc: "ec_ruc";
1697
- ee_vat: "ee_vat";
1698
- eg_tin: "eg_tin";
1699
- es_cif: "es_cif";
1700
- es_vat: "es_vat";
1701
- eu_oss_vat: "eu_oss_vat";
1702
- fi_vat: "fi_vat";
1703
- fr_vat: "fr_vat";
1704
- gb_vat: "gb_vat";
1705
- ge_vat: "ge_vat";
1706
- gn_nif: "gn_nif";
1707
- gr_vat: "gr_vat";
1708
- hk_br: "hk_br";
1709
- hr_oib: "hr_oib";
1710
- hr_vat: "hr_vat";
1711
- hu_tin: "hu_tin";
1712
- hu_vat: "hu_vat";
1713
- id_npwp: "id_npwp";
1714
- ie_vat: "ie_vat";
1715
- il_vat: "il_vat";
1716
- in_gst: "in_gst";
1717
- is_vat: "is_vat";
1718
- it_vat: "it_vat";
1719
- jp_cn: "jp_cn";
1720
- jp_rn: "jp_rn";
1721
- jp_trn: "jp_trn";
1722
- ke_pin: "ke_pin";
1723
- kh_tin: "kh_tin";
1724
- kr_brn: "kr_brn";
1725
- kz_bin: "kz_bin";
1726
- li_uid: "li_uid";
1727
- li_vat: "li_vat";
1728
- lt_vat: "lt_vat";
1729
- lu_vat: "lu_vat";
1730
- lv_vat: "lv_vat";
1731
- ma_vat: "ma_vat";
1732
- md_vat: "md_vat";
1733
- me_pib: "me_pib";
1734
- mk_vat: "mk_vat";
1735
- mr_nif: "mr_nif";
1736
- mt_vat: "mt_vat";
1737
- mx_rfc: "mx_rfc";
1738
- my_frp: "my_frp";
1739
- my_itn: "my_itn";
1740
- my_sst: "my_sst";
1741
- ng_tin: "ng_tin";
1742
- nl_vat: "nl_vat";
1743
- no_vat: "no_vat";
1744
- no_voec: "no_voec";
1745
- np_pan: "np_pan";
1746
- nz_gst: "nz_gst";
1747
- om_vat: "om_vat";
1748
- pe_ruc: "pe_ruc";
1749
- ph_tin: "ph_tin";
1750
- pl_vat: "pl_vat";
1751
- pt_vat: "pt_vat";
1752
- ro_tin: "ro_tin";
1753
- ro_vat: "ro_vat";
1754
- rs_pib: "rs_pib";
1755
- ru_inn: "ru_inn";
1756
- ru_kpp: "ru_kpp";
1757
- sa_vat: "sa_vat";
1758
- se_vat: "se_vat";
1759
- sg_gst: "sg_gst";
1760
- sg_uen: "sg_uen";
1761
- si_tin: "si_tin";
1762
- si_vat: "si_vat";
1763
- sk_vat: "sk_vat";
1764
- sn_ninea: "sn_ninea";
1765
- sr_fin: "sr_fin";
1766
- sv_nit: "sv_nit";
1767
- th_vat: "th_vat";
1768
- tj_tin: "tj_tin";
1769
- tr_tin: "tr_tin";
1770
- tw_vat: "tw_vat";
1771
- tz_vat: "tz_vat";
1772
- ua_vat: "ua_vat";
1773
- ug_tin: "ug_tin";
1774
- us_ein: "us_ein";
1775
- uy_ruc: "uy_ruc";
1776
- uz_tin: "uz_tin";
1777
- uz_vat: "uz_vat";
1778
- ve_rif: "ve_rif";
1779
- vn_tin: "vn_tin";
1780
- xi_vat: "xi_vat";
1781
- za_vat: "za_vat";
1782
- zm_tin: "zm_tin";
1783
- zw_tin: "zw_tin";
1784
- }>>;
1674
+ id: z.ZodOptional<z.ZodString>;
1675
+ secret: z.ZodOptional<z.ZodString>;
1676
+ date_created: z.ZodISODateTime;
1677
+ }, z.core.$strip>;
1678
+ export declare const zRegenerateTokenPath: z.ZodObject<{
1679
+ token_id: z.ZodString;
1680
+ }, z.core.$strip>;
1681
+ /**
1682
+ * Successfully updated. Returns updated token details with unmasked / raw secret.
1683
+ */
1684
+ export declare const zRegenerateTokenResponse: z.ZodObject<{
1685
+ name: z.ZodString;
1686
+ role: z.ZodEnum<{
1687
+ Administrator: "Administrator";
1688
+ User: "User";
1689
+ }>;
1690
+ id: z.ZodOptional<z.ZodString>;
1691
+ secret: z.ZodOptional<z.ZodString>;
1692
+ date_created: z.ZodISODateTime;
1693
+ }, z.core.$strip>;
1694
+ /**
1695
+ * Tickets for the organization.
1696
+ */
1697
+ export declare const zListTicketsResponse: z.ZodObject<{
1698
+ items: z.ZodArray<z.ZodObject<{
1699
+ id: z.ZodString;
1700
+ status: z.ZodEnum<{
1701
+ closed: "closed";
1702
+ waiting_on_us: "waiting_on_us";
1703
+ waiting_on_user: "waiting_on_user";
1704
+ }>;
1705
+ category: z.ZodEnum<{
1706
+ billing: "billing";
1707
+ technical: "technical";
1708
+ general: "general";
1709
+ }>;
1710
+ summary: z.ZodString;
1711
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1712
+ date_created: z.ZodISODateTime;
1713
+ date_updated: z.ZodISODateTime;
1714
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1715
+ id: z.ZodString;
1716
+ type: z.ZodEnum<{
1717
+ customer_reply: "customer_reply";
1718
+ agent_reply: "agent_reply";
1719
+ }>;
1720
+ body: z.ZodString;
1721
+ author_first_name: z.ZodOptional<z.ZodString>;
1722
+ author_last_name: z.ZodOptional<z.ZodString>;
1723
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1724
+ id: z.ZodString;
1725
+ filename: z.ZodString;
1726
+ content_type: z.ZodString;
1727
+ size: z.ZodInt;
1728
+ }, z.core.$strip>>>;
1729
+ date_created: z.ZodISODateTime;
1730
+ }, z.core.$strip>>>;
1731
+ }, z.core.$strip>>;
1732
+ }, z.core.$strip>;
1733
+ export declare const zCreateTicketBody: z.ZodObject<{
1734
+ payload: z.ZodOptional<z.ZodString>;
1735
+ attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
1736
+ }, z.core.$strip>;
1737
+ /**
1738
+ * Ticket created.
1739
+ */
1740
+ export declare const zCreateTicketResponse: z.ZodObject<{
1741
+ id: z.ZodString;
1742
+ status: z.ZodEnum<{
1743
+ closed: "closed";
1744
+ waiting_on_us: "waiting_on_us";
1745
+ waiting_on_user: "waiting_on_user";
1746
+ }>;
1747
+ category: z.ZodEnum<{
1748
+ billing: "billing";
1749
+ technical: "technical";
1750
+ general: "general";
1751
+ }>;
1752
+ summary: z.ZodString;
1753
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1754
+ date_created: z.ZodISODateTime;
1755
+ date_updated: z.ZodISODateTime;
1756
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1757
+ id: z.ZodString;
1758
+ type: z.ZodEnum<{
1759
+ customer_reply: "customer_reply";
1760
+ agent_reply: "agent_reply";
1761
+ }>;
1762
+ body: z.ZodString;
1763
+ author_first_name: z.ZodOptional<z.ZodString>;
1764
+ author_last_name: z.ZodOptional<z.ZodString>;
1765
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1766
+ id: z.ZodString;
1767
+ filename: z.ZodString;
1768
+ content_type: z.ZodString;
1769
+ size: z.ZodInt;
1770
+ }, z.core.$strip>>>;
1771
+ date_created: z.ZodISODateTime;
1772
+ }, z.core.$strip>>>;
1773
+ }, z.core.$strip>;
1774
+ export declare const zCloseTicketPath: z.ZodObject<{
1775
+ ticket_id: z.ZodString;
1776
+ }, z.core.$strip>;
1777
+ /**
1778
+ * Ticket closed.
1779
+ */
1780
+ export declare const zCloseTicketResponse: z.ZodObject<{
1781
+ id: z.ZodString;
1782
+ status: z.ZodEnum<{
1783
+ closed: "closed";
1784
+ waiting_on_us: "waiting_on_us";
1785
+ waiting_on_user: "waiting_on_user";
1786
+ }>;
1787
+ category: z.ZodEnum<{
1788
+ billing: "billing";
1789
+ technical: "technical";
1790
+ general: "general";
1791
+ }>;
1792
+ summary: z.ZodString;
1793
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1794
+ date_created: z.ZodISODateTime;
1795
+ date_updated: z.ZodISODateTime;
1796
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1797
+ id: z.ZodString;
1798
+ type: z.ZodEnum<{
1799
+ customer_reply: "customer_reply";
1800
+ agent_reply: "agent_reply";
1801
+ }>;
1802
+ body: z.ZodString;
1803
+ author_first_name: z.ZodOptional<z.ZodString>;
1804
+ author_last_name: z.ZodOptional<z.ZodString>;
1805
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1806
+ id: z.ZodString;
1807
+ filename: z.ZodString;
1808
+ content_type: z.ZodString;
1809
+ size: z.ZodInt;
1810
+ }, z.core.$strip>>>;
1811
+ date_created: z.ZodISODateTime;
1812
+ }, z.core.$strip>>>;
1813
+ }, z.core.$strip>;
1814
+ export declare const zGetTicketPath: z.ZodObject<{
1815
+ ticket_id: z.ZodString;
1816
+ }, z.core.$strip>;
1817
+ /**
1818
+ * Ticket with messages (internal notes excluded).
1819
+ */
1820
+ export declare const zGetTicketResponse: z.ZodObject<{
1821
+ id: z.ZodString;
1822
+ status: z.ZodEnum<{
1823
+ closed: "closed";
1824
+ waiting_on_us: "waiting_on_us";
1825
+ waiting_on_user: "waiting_on_user";
1826
+ }>;
1827
+ category: z.ZodEnum<{
1828
+ billing: "billing";
1829
+ technical: "technical";
1830
+ general: "general";
1831
+ }>;
1832
+ summary: z.ZodString;
1833
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1834
+ date_created: z.ZodISODateTime;
1835
+ date_updated: z.ZodISODateTime;
1836
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1837
+ id: z.ZodString;
1838
+ type: z.ZodEnum<{
1839
+ customer_reply: "customer_reply";
1840
+ agent_reply: "agent_reply";
1841
+ }>;
1842
+ body: z.ZodString;
1843
+ author_first_name: z.ZodOptional<z.ZodString>;
1844
+ author_last_name: z.ZodOptional<z.ZodString>;
1845
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1846
+ id: z.ZodString;
1847
+ filename: z.ZodString;
1848
+ content_type: z.ZodString;
1849
+ size: z.ZodInt;
1850
+ }, z.core.$strip>>>;
1851
+ date_created: z.ZodISODateTime;
1852
+ }, z.core.$strip>>>;
1853
+ }, z.core.$strip>;
1854
+ export declare const zReplyTicketBody: z.ZodObject<{
1855
+ payload: z.ZodOptional<z.ZodString>;
1856
+ attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
1857
+ }, z.core.$strip>;
1858
+ export declare const zReplyTicketPath: z.ZodObject<{
1859
+ ticket_id: z.ZodString;
1785
1860
  }, z.core.$strip>;
1786
1861
  /**
1787
- * Successfully updated. Returns updated organization details.
1862
+ * Reply appended.
1788
1863
  */
1789
- export declare const zUpdateContactResponse: z.ZodObject<{
1864
+ export declare const zReplyTicketResponse: z.ZodObject<{
1865
+ id: z.ZodString;
1866
+ type: z.ZodEnum<{
1867
+ customer_reply: "customer_reply";
1868
+ agent_reply: "agent_reply";
1869
+ }>;
1870
+ body: z.ZodString;
1871
+ author_first_name: z.ZodOptional<z.ZodString>;
1872
+ author_last_name: z.ZodOptional<z.ZodString>;
1873
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1874
+ id: z.ZodString;
1875
+ filename: z.ZodString;
1876
+ content_type: z.ZodString;
1877
+ size: z.ZodInt;
1878
+ }, z.core.$strip>>>;
1879
+ date_created: z.ZodISODateTime;
1880
+ }, z.core.$strip>;
1881
+ export declare const zGetTicketAttachmentPath: z.ZodObject<{
1882
+ ticket_id: z.ZodString;
1883
+ attachment_id: z.ZodString;
1884
+ }, z.core.$strip>;
1885
+ /**
1886
+ * Attachment binary stream.
1887
+ */
1888
+ export declare const zGetTicketAttachmentResponse: z.ZodString;
1889
+ /**
1890
+ * List of repositories
1891
+ */
1892
+ export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
1893
+ name: z.ZodString;
1894
+ region: z.ZodString;
1895
+ uri: z.ZodString;
1896
+ }, z.core.$strip>>;
1897
+ export declare const zListTagsPath: z.ZodObject<{
1898
+ region: z.ZodString;
1899
+ repository: z.ZodString;
1900
+ }, z.core.$strip>;
1901
+ /**
1902
+ * Repository with tags
1903
+ */
1904
+ export declare const zListTagsResponse: z.ZodObject<{
1905
+ name: z.ZodString;
1906
+ region: z.ZodString;
1907
+ uri: z.ZodString;
1908
+ tags: z.ZodArray<z.ZodObject<{
1909
+ name: z.ZodString;
1910
+ size: z.ZodNumber;
1911
+ mediaType: z.ZodOptional<z.ZodString>;
1912
+ platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
1913
+ }, z.core.$strip>>;
1914
+ totalSize: z.ZodNumber;
1915
+ }, z.core.$strip>;
1916
+ export declare const zDeleteTagPath: z.ZodObject<{
1917
+ region: z.ZodString;
1918
+ repository: z.ZodString;
1919
+ tag: z.ZodString;
1920
+ }, z.core.$strip>;
1921
+ export declare const zGetTagPath: z.ZodObject<{
1922
+ region: z.ZodString;
1923
+ repository: z.ZodString;
1924
+ tag: z.ZodString;
1925
+ }, z.core.$strip>;
1926
+ /**
1927
+ * Tag details
1928
+ */
1929
+ export declare const zGetTagResponse: z.ZodObject<{
1930
+ name: z.ZodString;
1931
+ digest: z.ZodString;
1932
+ mediaType: z.ZodOptional<z.ZodString>;
1933
+ config: z.ZodOptional<z.ZodObject<{
1934
+ size: z.ZodNumber;
1935
+ }, z.core.$strip>>;
1936
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1937
+ digest: z.ZodOptional<z.ZodString>;
1938
+ size: z.ZodNumber;
1939
+ }, z.core.$strip>>>;
1940
+ manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
1941
+ digest: z.ZodString;
1942
+ platform: z.ZodOptional<z.ZodObject<{
1943
+ architecture: z.ZodString;
1944
+ os: z.ZodString;
1945
+ variant: z.ZodOptional<z.ZodString>;
1946
+ }, z.core.$strip>>;
1947
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1948
+ digest: z.ZodOptional<z.ZodString>;
1949
+ size: z.ZodNumber;
1950
+ }, z.core.$strip>>>;
1951
+ size: z.ZodOptional<z.ZodNumber>;
1952
+ }, z.core.$strip>>>;
1953
+ size: z.ZodNumber;
1954
+ region: z.ZodString;
1955
+ repository: z.ZodString;
1956
+ uri: z.ZodString;
1957
+ }, z.core.$strip>;
1958
+ /**
1959
+ * Returns a single object containing organization details.
1960
+ */
1961
+ export declare const zGetOrganizationResponse: z.ZodObject<{
1962
+ id: z.ZodUUID;
1963
+ name: z.ZodOptional<z.ZodString>;
1790
1964
  type: z.ZodEnum<{
1791
1965
  business: "business";
1792
1966
  personal: "personal";
1793
1967
  }>;
1794
- company: z.ZodOptional<z.ZodString>;
1795
- address1: z.ZodOptional<z.ZodString>;
1796
- address2: z.ZodOptional<z.ZodString>;
1797
- postalCode: z.ZodOptional<z.ZodString>;
1798
- city: z.ZodOptional<z.ZodString>;
1799
- state: z.ZodOptional<z.ZodString>;
1800
- country: z.ZodOptional<z.ZodString>;
1801
- phone: z.ZodOptional<z.ZodString>;
1802
- email: z.ZodEmail;
1803
- individual_name: z.ZodString;
1804
- tax_id: z.ZodOptional<z.ZodString>;
1805
- tax_id_type: z.ZodOptional<z.ZodEnum<{
1806
- "": "";
1807
- ad_nrt: "ad_nrt";
1808
- ae_trn: "ae_trn";
1809
- al_tin: "al_tin";
1810
- am_tin: "am_tin";
1811
- ao_tin: "ao_tin";
1812
- ar_cuit: "ar_cuit";
1813
- at_vat: "at_vat";
1814
- au_abn: "au_abn";
1815
- au_arn: "au_arn";
1816
- ba_tin: "ba_tin";
1817
- bb_tin: "bb_tin";
1818
- be_vat: "be_vat";
1819
- bg_uic: "bg_uic";
1820
- bg_vat: "bg_vat";
1821
- bh_vat: "bh_vat";
1822
- bo_tin: "bo_tin";
1823
- br_cnpj: "br_cnpj";
1824
- br_cpf: "br_cpf";
1825
- bs_tin: "bs_tin";
1826
- by_tin: "by_tin";
1827
- ca_bn: "ca_bn";
1828
- ca_gst_hst: "ca_gst_hst";
1829
- ca_pst_bc: "ca_pst_bc";
1830
- ca_pst_mb: "ca_pst_mb";
1831
- ca_pst_sk: "ca_pst_sk";
1832
- ca_qst: "ca_qst";
1833
- cd_nif: "cd_nif";
1834
- ch_uid: "ch_uid";
1835
- ch_vat: "ch_vat";
1836
- cl_tin: "cl_tin";
1837
- cn_tin: "cn_tin";
1838
- co_nit: "co_nit";
1839
- cr_tin: "cr_tin";
1840
- cy_vat: "cy_vat";
1841
- cz_vat: "cz_vat";
1842
- de_stn: "de_stn";
1843
- de_vat: "de_vat";
1844
- dk_vat: "dk_vat";
1845
- do_rcn: "do_rcn";
1846
- ec_ruc: "ec_ruc";
1847
- ee_vat: "ee_vat";
1848
- eg_tin: "eg_tin";
1849
- es_cif: "es_cif";
1850
- es_vat: "es_vat";
1851
- eu_oss_vat: "eu_oss_vat";
1852
- fi_vat: "fi_vat";
1853
- fr_vat: "fr_vat";
1854
- gb_vat: "gb_vat";
1855
- ge_vat: "ge_vat";
1856
- gn_nif: "gn_nif";
1857
- gr_vat: "gr_vat";
1858
- hk_br: "hk_br";
1859
- hr_oib: "hr_oib";
1860
- hr_vat: "hr_vat";
1861
- hu_tin: "hu_tin";
1862
- hu_vat: "hu_vat";
1863
- id_npwp: "id_npwp";
1864
- ie_vat: "ie_vat";
1865
- il_vat: "il_vat";
1866
- in_gst: "in_gst";
1867
- is_vat: "is_vat";
1868
- it_vat: "it_vat";
1869
- jp_cn: "jp_cn";
1870
- jp_rn: "jp_rn";
1871
- jp_trn: "jp_trn";
1872
- ke_pin: "ke_pin";
1873
- kh_tin: "kh_tin";
1874
- kr_brn: "kr_brn";
1875
- kz_bin: "kz_bin";
1876
- li_uid: "li_uid";
1877
- li_vat: "li_vat";
1878
- lt_vat: "lt_vat";
1879
- lu_vat: "lu_vat";
1880
- lv_vat: "lv_vat";
1881
- ma_vat: "ma_vat";
1882
- md_vat: "md_vat";
1883
- me_pib: "me_pib";
1884
- mk_vat: "mk_vat";
1885
- mr_nif: "mr_nif";
1886
- mt_vat: "mt_vat";
1887
- mx_rfc: "mx_rfc";
1888
- my_frp: "my_frp";
1889
- my_itn: "my_itn";
1890
- my_sst: "my_sst";
1891
- ng_tin: "ng_tin";
1892
- nl_vat: "nl_vat";
1893
- no_vat: "no_vat";
1894
- no_voec: "no_voec";
1895
- np_pan: "np_pan";
1896
- nz_gst: "nz_gst";
1897
- om_vat: "om_vat";
1898
- pe_ruc: "pe_ruc";
1899
- ph_tin: "ph_tin";
1900
- pl_vat: "pl_vat";
1901
- pt_vat: "pt_vat";
1902
- ro_tin: "ro_tin";
1903
- ro_vat: "ro_vat";
1904
- rs_pib: "rs_pib";
1905
- ru_inn: "ru_inn";
1906
- ru_kpp: "ru_kpp";
1907
- sa_vat: "sa_vat";
1908
- se_vat: "se_vat";
1909
- sg_gst: "sg_gst";
1910
- sg_uen: "sg_uen";
1911
- si_tin: "si_tin";
1912
- si_vat: "si_vat";
1913
- sk_vat: "sk_vat";
1914
- sn_ninea: "sn_ninea";
1915
- sr_fin: "sr_fin";
1916
- sv_nit: "sv_nit";
1917
- th_vat: "th_vat";
1918
- tj_tin: "tj_tin";
1919
- tr_tin: "tr_tin";
1920
- tw_vat: "tw_vat";
1921
- tz_vat: "tz_vat";
1922
- ua_vat: "ua_vat";
1923
- ug_tin: "ug_tin";
1924
- us_ein: "us_ein";
1925
- uy_ruc: "uy_ruc";
1926
- uz_tin: "uz_tin";
1927
- uz_vat: "uz_vat";
1928
- ve_rif: "ve_rif";
1929
- vn_tin: "vn_tin";
1930
- xi_vat: "xi_vat";
1931
- za_vat: "za_vat";
1932
- zm_tin: "zm_tin";
1933
- zw_tin: "zw_tin";
1934
- }>>;
1968
+ date_created: z.ZodISODateTime;
1969
+ quota: z.ZodObject<{
1970
+ basic_clusters_max: z.ZodInt;
1971
+ basic_clusters_available: z.ZodInt;
1972
+ pro_clusters_max: z.ZodInt;
1973
+ pro_clusters_available: z.ZodInt;
1974
+ enterprise_clusters_max: z.ZodInt;
1975
+ enterprise_clusters_available: z.ZodInt;
1976
+ fleets_max: z.ZodInt;
1977
+ cluster_tiers: z.ZodArray<z.ZodString>;
1978
+ regions: z.ZodArray<z.ZodString>;
1979
+ versions: z.ZodArray<z.ZodObject<{
1980
+ id: z.ZodString;
1981
+ label: z.ZodString;
1982
+ }, z.core.$strip>>;
1983
+ cfcr_storage_gb: z.ZodInt;
1984
+ }, z.core.$strip>;
1985
+ status: z.ZodEnum<{
1986
+ active: "active";
1987
+ closed: "closed";
1988
+ suspended: "suspended";
1989
+ }>;
1990
+ verification: z.ZodEnum<{
1991
+ none: "none";
1992
+ submitted: "submitted";
1993
+ verified: "verified";
1994
+ }>;
1935
1995
  }, z.core.$strip>;
1936
- /**
1937
- * An array of the applied promotional credits records.
1938
- */
1939
- export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
1940
- id: z.ZodOptional<z.ZodString>;
1996
+ export declare const zCreateOrganizationBody: z.ZodObject<{
1941
1997
  type: z.ZodEnum<{
1942
- credit: "credit";
1943
- discount: "discount";
1998
+ business: "business";
1999
+ personal: "personal";
1944
2000
  }>;
1945
- date_start: z.ZodISODateTime;
1946
- date_end: z.ZodOptional<z.ZodISODateTime>;
1947
- code: z.ZodString;
1948
- description: z.ZodOptional<z.ZodString>;
1949
- value_total: z.ZodNumber;
1950
- value_remaining: z.ZodOptional<z.ZodNumber>;
1951
- }, z.core.$strip>>;
1952
- export declare const zRedeemCreditsBody: z.ZodObject<{
1953
- code: z.ZodOptional<z.ZodString>;
2001
+ email: z.ZodEmail;
2002
+ first_name: z.ZodString;
2003
+ last_name: z.ZodString;
2004
+ company_name: z.ZodString;
2005
+ password: z.ZodString;
1954
2006
  }, z.core.$strip>;
1955
- export declare const zListChartsPath: z.ZodObject<{
1956
- cluster_id: z.ZodString;
2007
+ /**
2008
+ * Organization signup accepted. Returns the generated organization id immediately; provisioning (billing, Keycloak realm, user) continues asynchronously in the background.
2009
+ *
2010
+ */
2011
+ export declare const zCreateOrganizationResponse: z.ZodObject<{
2012
+ id: z.ZodString;
1957
2013
  }, z.core.$strip>;
1958
2014
  /**
1959
- * An array of charts
2015
+ * JSON-RPC 2.0 request payload
1960
2016
  */
1961
- export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
1962
- values: z.ZodString;
1963
- version_channel: z.ZodString;
2017
+ export declare const zPostMcpBody: z.ZodObject<{
2018
+ jsonrpc: z.ZodOptional<z.ZodString>;
2019
+ method: z.ZodOptional<z.ZodString>;
2020
+ id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
2021
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2022
+ }, z.core.$strip>;
2023
+ /**
2024
+ * JSON-RPC 2.0 success or error response
2025
+ */
2026
+ export declare const zPostMcpResponse: z.ZodObject<{
2027
+ jsonrpc: z.ZodOptional<z.ZodString>;
2028
+ id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
2029
+ result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2030
+ error: z.ZodOptional<z.ZodObject<{
2031
+ code: z.ZodOptional<z.ZodInt>;
2032
+ message: z.ZodOptional<z.ZodString>;
2033
+ }, z.core.$strip>>;
2034
+ }, z.core.$strip>;
2035
+ /**
2036
+ * An array of chart listings in the marketplace.
2037
+ */
2038
+ export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
1964
2039
  name: z.ZodString;
1965
- namespace: z.ZodString;
1966
- chart: z.ZodString;
1967
- status: z.ZodEnum<{
1968
- InstallSucceeded: "InstallSucceeded";
1969
- InstallFailed: "InstallFailed";
1970
- UpgradeSucceeded: "UpgradeSucceeded";
1971
- UpgradeFailed: "UpgradeFailed";
1972
- TestSucceeded: "TestSucceeded";
1973
- TestFailed: "TestFailed";
1974
- RollbackSucceeded: "RollbackSucceeded";
1975
- RollbackFailed: "RollbackFailed";
1976
- UninstallSucceeded: "UninstallSucceeded";
1977
- UninstallFailed: "UninstallFailed";
1978
- ArtifactFailed: "ArtifactFailed";
1979
- DependencyNotReady: "DependencyNotReady";
1980
- Progressing: "Progressing";
1981
- SourceNotReady: "SourceNotReady";
1982
- }>;
1983
- version_current: z.ZodString;
1984
- created_at: z.ZodString;
1985
- updated_at: z.ZodString;
1986
- ready: z.ZodBoolean;
2040
+ versions: z.ZodArray<z.ZodString>;
2041
+ version_channels: z.ZodArray<z.ZodString>;
2042
+ latestVersion: z.ZodString;
2043
+ metadata: z.ZodOptional<z.ZodObject<{
2044
+ name: z.ZodString;
2045
+ version: z.ZodString;
2046
+ description: z.ZodOptional<z.ZodString>;
2047
+ appVersion: z.ZodOptional<z.ZodString>;
2048
+ apiVersion: z.ZodOptional<z.ZodString>;
2049
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
2050
+ home: z.ZodOptional<z.ZodString>;
2051
+ icon: z.ZodOptional<z.ZodString>;
2052
+ sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
2053
+ maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
2054
+ name: z.ZodString;
2055
+ email: z.ZodOptional<z.ZodString>;
2056
+ }, z.core.$strip>>>;
2057
+ }, z.core.$strip>>;
1987
2058
  }, z.core.$strip>>;
1988
- export declare const zCreateChartBody: z.ZodObject<{
1989
- values: z.ZodString;
2059
+ export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
2060
+ chart_name: z.ZodString;
1990
2061
  version_channel: z.ZodString;
1991
- name: z.ZodString;
1992
- namespace: z.ZodString;
1993
- chart: z.ZodString;
1994
2062
  }, z.core.$strip>;
1995
- export declare const zCreateChartPath: z.ZodObject<{
1996
- cluster_id: z.ZodString;
2063
+ /**
2064
+ * Returns an object containing the chart files for the latest matching version.
2065
+ */
2066
+ export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
2067
+ chartYaml: z.ZodOptional<z.ZodString>;
2068
+ valuesYaml: z.ZodOptional<z.ZodString>;
2069
+ valuesSchemaJson: z.ZodOptional<z.ZodString>;
1997
2070
  }, z.core.$strip>;
1998
2071
  /**
1999
- * Successfully created. Returns created Chart ID.
2072
+ * An array of invites
2000
2073
  */
2001
- export declare const zCreateChartResponse: z.ZodString;
2002
- export declare const zDeleteChartPath: z.ZodObject<{
2003
- cluster_id: z.ZodString;
2004
- chart_name: z.ZodString;
2074
+ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
2075
+ id: z.ZodOptional<z.ZodString>;
2076
+ organization_id: z.ZodOptional<z.ZodUUID>;
2077
+ date_created: z.ZodISODateTime;
2078
+ email: z.ZodOptional<z.ZodEmail>;
2079
+ code: z.ZodOptional<z.ZodString>;
2080
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2081
+ Administrator: "Administrator";
2082
+ User: "User";
2083
+ }>>>;
2084
+ }, z.core.$strip>>;
2085
+ export declare const zCreateInviteBody: z.ZodObject<{
2086
+ email: z.ZodEmail;
2087
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2088
+ Administrator: "Administrator";
2089
+ User: "User";
2090
+ }>>>;
2005
2091
  }, z.core.$strip>;
2006
2092
  /**
2007
- * Successfully deleted.
2093
+ * Successfully created. Returns created invite details.
2008
2094
  */
2009
- export declare const zDeleteChartResponse: z.ZodString;
2010
- export declare const zGetChartPath: z.ZodObject<{
2011
- cluster_id: z.ZodString;
2012
- chart_name: z.ZodString;
2095
+ export declare const zCreateInviteResponse: z.ZodObject<{
2096
+ id: z.ZodOptional<z.ZodString>;
2097
+ organization_id: z.ZodOptional<z.ZodUUID>;
2098
+ date_created: z.ZodISODateTime;
2099
+ email: z.ZodOptional<z.ZodEmail>;
2100
+ code: z.ZodOptional<z.ZodString>;
2101
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2102
+ Administrator: "Administrator";
2103
+ User: "User";
2104
+ }>>>;
2105
+ }, z.core.$strip>;
2106
+ export declare const zGetInvitePath: z.ZodObject<{
2107
+ code: z.ZodString;
2013
2108
  }, z.core.$strip>;
2014
2109
  /**
2015
- * Returns a single object containing chart details.
2110
+ * The invitation code is valid. Returns the invited email and organization.
2016
2111
  */
2017
- export declare const zGetChartResponse: z.ZodObject<{
2018
- values: z.ZodString;
2019
- version_channel: z.ZodString;
2020
- name: z.ZodString;
2021
- namespace: z.ZodString;
2022
- chart: z.ZodString;
2023
- status: z.ZodEnum<{
2024
- InstallSucceeded: "InstallSucceeded";
2025
- InstallFailed: "InstallFailed";
2026
- UpgradeSucceeded: "UpgradeSucceeded";
2027
- UpgradeFailed: "UpgradeFailed";
2028
- TestSucceeded: "TestSucceeded";
2029
- TestFailed: "TestFailed";
2030
- RollbackSucceeded: "RollbackSucceeded";
2031
- RollbackFailed: "RollbackFailed";
2032
- UninstallSucceeded: "UninstallSucceeded";
2033
- UninstallFailed: "UninstallFailed";
2034
- ArtifactFailed: "ArtifactFailed";
2035
- DependencyNotReady: "DependencyNotReady";
2036
- Progressing: "Progressing";
2037
- SourceNotReady: "SourceNotReady";
2038
- }>;
2039
- version_current: z.ZodString;
2040
- created_at: z.ZodString;
2041
- updated_at: z.ZodString;
2042
- ready: z.ZodBoolean;
2112
+ export declare const zGetInviteResponse: z.ZodObject<{
2113
+ email: z.ZodOptional<z.ZodEmail>;
2114
+ organization_id: z.ZodOptional<z.ZodString>;
2043
2115
  }, z.core.$strip>;
2044
- export declare const zUpdateChartBody: z.ZodObject<{
2045
- values: z.ZodString;
2046
- version_channel: z.ZodString;
2116
+ export declare const zDeleteInvitePath: z.ZodObject<{
2117
+ email: z.ZodEmail;
2047
2118
  }, z.core.$strip>;
2048
- export declare const zUpdateChartPath: z.ZodObject<{
2119
+ export declare const zQueryClusterPath: z.ZodObject<{
2049
2120
  cluster_id: z.ZodString;
2050
- chart_name: z.ZodString;
2051
2121
  }, z.core.$strip>;
2052
- /**
2053
- * Successfully updated.
2054
- */
2055
- export declare const zUpdateChartResponse: z.ZodString;
2056
2122
  export declare const zListFleetsPath: z.ZodObject<{
2057
2123
  cluster_id: z.ZodString;
2058
2124
  }, z.core.$strip>;
@@ -2075,16 +2141,16 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
2075
2141
  enabled: z.ZodBoolean;
2076
2142
  controllerRoleArn: z.ZodOptional<z.ZodString>;
2077
2143
  }, z.core.$strip>>;
2078
- constraints: z.ZodOptional<z.ZodObject<{
2079
- 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2144
+ constraints: z.ZodDefault<z.ZodObject<{
2145
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
2080
2146
  "on-demand": "on-demand";
2081
2147
  spot: "spot";
2082
- }>>>>;
2083
- 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2148
+ }>>>;
2149
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
2084
2150
  amd64: "amd64";
2085
2151
  arm64: "arm64";
2086
- }>>>>;
2087
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2152
+ }>>>;
2153
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2088
2154
  p3: "p3";
2089
2155
  cx: "cx";
2090
2156
  h1: "h1";
@@ -2243,8 +2309,8 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
2243
2309
  x8g: "x8g";
2244
2310
  z1d: "z1d";
2245
2311
  z3: "z3";
2246
- }>>>;
2247
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2312
+ }>>>>;
2313
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2248
2314
  "africa-south1": "africa-south1";
2249
2315
  "ap-northeast-1": "ap-northeast-1";
2250
2316
  "ap-northeast-2": "ap-northeast-2";
@@ -2309,13 +2375,17 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
2309
2375
  "us-west2": "us-west2";
2310
2376
  "us-west3": "us-west3";
2311
2377
  "us-west4": "us-west4";
2312
- }>>>;
2378
+ }>>>>;
2313
2379
  }, z.core.$strip>>;
2314
2380
  scalingProfile: z.ZodDefault<z.ZodEnum<{
2315
2381
  aggressive: "aggressive";
2316
2382
  conservative: "conservative";
2317
2383
  }>>;
2318
2384
  id: z.ZodString;
2385
+ ready: z.ZodBoolean;
2386
+ status_message: z.ZodOptional<z.ZodString>;
2387
+ created_at: z.ZodString;
2388
+ updated_at: z.ZodString;
2319
2389
  }, z.core.$strip>>;
2320
2390
  export declare const zCreateFleetBody: z.ZodObject<{
2321
2391
  limits: z.ZodOptional<z.ZodObject<{
@@ -2333,7 +2403,7 @@ export declare const zCreateFleetBody: z.ZodObject<{
2333
2403
  enabled: z.ZodBoolean;
2334
2404
  controllerRoleArn: z.ZodOptional<z.ZodString>;
2335
2405
  }, z.core.$strip>>;
2336
- constraints: z.ZodOptional<z.ZodObject<{
2406
+ constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
2337
2407
  'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2338
2408
  "on-demand": "on-demand";
2339
2409
  spot: "spot";
@@ -2342,7 +2412,7 @@ export declare const zCreateFleetBody: z.ZodObject<{
2342
2412
  amd64: "amd64";
2343
2413
  arm64: "arm64";
2344
2414
  }>>>>;
2345
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2415
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2346
2416
  p3: "p3";
2347
2417
  cx: "cx";
2348
2418
  h1: "h1";
@@ -2501,8 +2571,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
2501
2571
  x8g: "x8g";
2502
2572
  z1d: "z1d";
2503
2573
  z3: "z3";
2504
- }>>>;
2505
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2574
+ }>>>>;
2575
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2506
2576
  "africa-south1": "africa-south1";
2507
2577
  "ap-northeast-1": "ap-northeast-1";
2508
2578
  "ap-northeast-2": "ap-northeast-2";
@@ -2567,8 +2637,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
2567
2637
  "us-west2": "us-west2";
2568
2638
  "us-west3": "us-west3";
2569
2639
  "us-west4": "us-west4";
2570
- }>>>;
2571
- }, z.core.$strip>>;
2640
+ }>>>>;
2641
+ }, z.core.$strip>>>;
2572
2642
  scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2573
2643
  aggressive: "aggressive";
2574
2644
  conservative: "conservative";
@@ -2613,16 +2683,16 @@ export declare const zGetFleetResponse: z.ZodObject<{
2613
2683
  enabled: z.ZodBoolean;
2614
2684
  controllerRoleArn: z.ZodOptional<z.ZodString>;
2615
2685
  }, z.core.$strip>>;
2616
- constraints: z.ZodOptional<z.ZodObject<{
2617
- 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2686
+ constraints: z.ZodDefault<z.ZodObject<{
2687
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
2618
2688
  "on-demand": "on-demand";
2619
2689
  spot: "spot";
2620
- }>>>>;
2621
- 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2690
+ }>>>;
2691
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
2622
2692
  amd64: "amd64";
2623
2693
  arm64: "arm64";
2624
- }>>>>;
2625
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2694
+ }>>>;
2695
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2626
2696
  p3: "p3";
2627
2697
  cx: "cx";
2628
2698
  h1: "h1";
@@ -2781,8 +2851,8 @@ export declare const zGetFleetResponse: z.ZodObject<{
2781
2851
  x8g: "x8g";
2782
2852
  z1d: "z1d";
2783
2853
  z3: "z3";
2784
- }>>>;
2785
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2854
+ }>>>>;
2855
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2786
2856
  "africa-south1": "africa-south1";
2787
2857
  "ap-northeast-1": "ap-northeast-1";
2788
2858
  "ap-northeast-2": "ap-northeast-2";
@@ -2847,13 +2917,17 @@ export declare const zGetFleetResponse: z.ZodObject<{
2847
2917
  "us-west2": "us-west2";
2848
2918
  "us-west3": "us-west3";
2849
2919
  "us-west4": "us-west4";
2850
- }>>>;
2920
+ }>>>>;
2851
2921
  }, z.core.$strip>>;
2852
2922
  scalingProfile: z.ZodDefault<z.ZodEnum<{
2853
2923
  aggressive: "aggressive";
2854
2924
  conservative: "conservative";
2855
2925
  }>>;
2856
2926
  id: z.ZodString;
2927
+ ready: z.ZodBoolean;
2928
+ status_message: z.ZodOptional<z.ZodString>;
2929
+ created_at: z.ZodString;
2930
+ updated_at: z.ZodString;
2857
2931
  }, z.core.$strip>;
2858
2932
  export declare const zUpdateFleetBody: z.ZodObject<{
2859
2933
  limits: z.ZodOptional<z.ZodObject<{
@@ -2871,16 +2945,16 @@ export declare const zUpdateFleetBody: z.ZodObject<{
2871
2945
  enabled: z.ZodBoolean;
2872
2946
  controllerRoleArn: z.ZodOptional<z.ZodString>;
2873
2947
  }, z.core.$strip>>;
2874
- constraints: z.ZodOptional<z.ZodObject<{
2875
- 'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2948
+ constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
2949
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2876
2950
  "on-demand": "on-demand";
2877
2951
  spot: "spot";
2878
- }>>>;
2879
- 'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2952
+ }>>>>;
2953
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2880
2954
  amd64: "amd64";
2881
2955
  arm64: "arm64";
2882
- }>>>;
2883
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2956
+ }>>>>;
2957
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2884
2958
  p3: "p3";
2885
2959
  cx: "cx";
2886
2960
  h1: "h1";
@@ -3039,8 +3113,8 @@ export declare const zUpdateFleetBody: z.ZodObject<{
3039
3113
  x8g: "x8g";
3040
3114
  z1d: "z1d";
3041
3115
  z3: "z3";
3042
- }>>>;
3043
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
3116
+ }>>>>;
3117
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
3044
3118
  "africa-south1": "africa-south1";
3045
3119
  "ap-northeast-1": "ap-northeast-1";
3046
3120
  "ap-northeast-2": "ap-northeast-2";
@@ -3105,12 +3179,12 @@ export declare const zUpdateFleetBody: z.ZodObject<{
3105
3179
  "us-west2": "us-west2";
3106
3180
  "us-west3": "us-west3";
3107
3181
  "us-west4": "us-west4";
3108
- }>>>;
3109
- }, z.core.$strip>>;
3110
- scalingProfile: z.ZodEnum<{
3182
+ }>>>>;
3183
+ }, z.core.$strip>>>;
3184
+ scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3111
3185
  aggressive: "aggressive";
3112
3186
  conservative: "conservative";
3113
- }>;
3187
+ }>>>;
3114
3188
  }, z.core.$strip>;
3115
3189
  export declare const zUpdateFleetPath: z.ZodObject<{
3116
3190
  cluster_id: z.ZodString;
@@ -3120,149 +3194,112 @@ export declare const zUpdateFleetPath: z.ZodObject<{
3120
3194
  * Successfully updated.
3121
3195
  */
3122
3196
  export declare const zUpdateFleetResponse: z.ZodString;
3123
- export declare const zQueryClusterPath: z.ZodObject<{
3197
+ export declare const zListChartsPath: z.ZodObject<{
3124
3198
  cluster_id: z.ZodString;
3125
- }, z.core.$strip>;
3126
- /**
3127
- * An array of clusters
3128
- */
3129
- export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
3130
- name: z.ZodString;
3131
- tier: z.ZodEnum<{
3132
- basic: "basic";
3133
- pro: "pro";
3134
- }>;
3135
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3136
- "staging-1a": "staging-1a";
3137
- "northamerica-central-1": "northamerica-central-1";
3138
- "europe-central-1a": "europe-central-1a";
3139
- "northamerica-central-1a": "northamerica-central-1a";
3140
- }>>>;
3141
- id: z.ZodUUID;
3142
- status: z.ZodEnum<{
3143
- deleted: "deleted";
3144
- failed: "failed";
3145
- active: "active";
3146
- disabled: "disabled";
3147
- creating: "creating";
3148
- deployed: "deployed";
3149
- updating: "updating";
3150
- }>;
3151
- endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3152
- "": "";
3153
- }>]>>;
3154
- endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3155
- "": "";
3156
- }>]>>;
3157
- certificate_ca: z.ZodOptional<z.ZodString>;
3158
- version_current: z.ZodOptional<z.ZodString>;
3159
- created_at: z.ZodOptional<z.ZodString>;
3160
- updated_at: z.ZodOptional<z.ZodString>;
3161
- ready: z.ZodOptional<z.ZodBoolean>;
3162
- version_channel: z.ZodOptional<z.ZodString>;
3199
+ }, z.core.$strip>;
3200
+ /**
3201
+ * An array of charts
3202
+ */
3203
+ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
3204
+ values: z.ZodString;
3205
+ version_channel: z.ZodString;
3206
+ name: z.ZodString;
3207
+ namespace: z.ZodString;
3208
+ chart: z.ZodString;
3209
+ status: z.ZodString;
3210
+ version_current: z.ZodString;
3211
+ created_at: z.ZodString;
3212
+ updated_at: z.ZodString;
3213
+ ready: z.ZodBoolean;
3163
3214
  }, z.core.$strip>>;
3164
- export declare const zCreateClusterBody: z.ZodObject<{
3215
+ export declare const zCreateChartBody: z.ZodObject<{
3216
+ values: z.ZodString;
3217
+ version_channel: z.ZodString;
3165
3218
  name: z.ZodString;
3166
- tier: z.ZodEnum<{
3167
- basic: "basic";
3168
- pro: "pro";
3169
- }>;
3170
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3171
- "staging-1a": "staging-1a";
3172
- "northamerica-central-1": "northamerica-central-1";
3173
- "europe-central-1a": "europe-central-1a";
3174
- "northamerica-central-1a": "northamerica-central-1a";
3175
- }>>>;
3176
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3177
- "1.x.x-cfke.x": "1.x.x-cfke.x";
3178
- "1.31.x-cfke.x": "1.31.x-cfke.x";
3179
- "1.32.x-cfke.x": "1.32.x-cfke.x";
3180
- "1.33.x-cfke.x": "1.33.x-cfke.x";
3181
- }>>>;
3219
+ namespace: z.ZodString;
3220
+ chart: z.ZodString;
3221
+ }, z.core.$strip>;
3222
+ export declare const zCreateChartPath: z.ZodObject<{
3223
+ cluster_id: z.ZodString;
3182
3224
  }, z.core.$strip>;
3183
3225
  /**
3184
- * Successfully created. Returns created Cluster ID.
3226
+ * Successfully created. Returns created Chart ID.
3185
3227
  */
3186
- export declare const zCreateClusterResponse: z.ZodString;
3187
- export declare const zDeleteClusterPath: z.ZodObject<{
3228
+ export declare const zCreateChartResponse: z.ZodString;
3229
+ export declare const zDeleteChartPath: z.ZodObject<{
3188
3230
  cluster_id: z.ZodString;
3231
+ chart_name: z.ZodString;
3189
3232
  }, z.core.$strip>;
3190
3233
  /**
3191
3234
  * Successfully deleted.
3192
3235
  */
3193
- export declare const zDeleteClusterResponse: z.ZodString;
3194
- export declare const zGetClusterPath: z.ZodObject<{
3236
+ export declare const zDeleteChartResponse: z.ZodString;
3237
+ export declare const zGetChartPath: z.ZodObject<{
3195
3238
  cluster_id: z.ZodString;
3239
+ chart_name: z.ZodString;
3196
3240
  }, z.core.$strip>;
3197
3241
  /**
3198
- * Returns a single object containing cluster details.
3242
+ * Returns a single object containing chart details.
3199
3243
  */
3200
- export declare const zGetClusterResponse: z.ZodObject<{
3244
+ export declare const zGetChartResponse: z.ZodObject<{
3245
+ values: z.ZodString;
3246
+ version_channel: z.ZodString;
3201
3247
  name: z.ZodString;
3202
- tier: z.ZodEnum<{
3203
- basic: "basic";
3204
- pro: "pro";
3205
- }>;
3206
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3207
- "staging-1a": "staging-1a";
3208
- "northamerica-central-1": "northamerica-central-1";
3209
- "europe-central-1a": "europe-central-1a";
3210
- "northamerica-central-1a": "northamerica-central-1a";
3211
- }>>>;
3212
- id: z.ZodUUID;
3213
- status: z.ZodEnum<{
3214
- deleted: "deleted";
3215
- failed: "failed";
3216
- active: "active";
3217
- disabled: "disabled";
3218
- creating: "creating";
3219
- deployed: "deployed";
3220
- updating: "updating";
3221
- }>;
3222
- endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3223
- "": "";
3224
- }>]>>;
3225
- endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3226
- "": "";
3227
- }>]>>;
3228
- certificate_ca: z.ZodOptional<z.ZodString>;
3229
- version_current: z.ZodOptional<z.ZodString>;
3230
- created_at: z.ZodOptional<z.ZodString>;
3231
- updated_at: z.ZodOptional<z.ZodString>;
3232
- ready: z.ZodOptional<z.ZodBoolean>;
3233
- version_channel: z.ZodOptional<z.ZodString>;
3248
+ namespace: z.ZodString;
3249
+ chart: z.ZodString;
3250
+ status: z.ZodString;
3251
+ version_current: z.ZodString;
3252
+ created_at: z.ZodString;
3253
+ updated_at: z.ZodString;
3254
+ ready: z.ZodBoolean;
3234
3255
  }, z.core.$strip>;
3235
- export declare const zUpdateClusterBody: z.ZodObject<{
3236
- name: z.ZodOptional<z.ZodString>;
3237
- tier: z.ZodEnum<{
3238
- basic: "basic";
3239
- pro: "pro";
3240
- }>;
3241
- version_channel: z.ZodOptional<z.ZodString>;
3256
+ export declare const zUpdateChartBody: z.ZodObject<{
3257
+ values: z.ZodString;
3258
+ version_channel: z.ZodString;
3242
3259
  }, z.core.$strip>;
3243
- export declare const zUpdateClusterPath: z.ZodObject<{
3260
+ export declare const zUpdateChartPath: z.ZodObject<{
3244
3261
  cluster_id: z.ZodString;
3262
+ chart_name: z.ZodString;
3245
3263
  }, z.core.$strip>;
3246
3264
  /**
3247
- * Successfully updated. Returns updated cluster details.
3265
+ * Successfully updated.
3248
3266
  */
3249
- export declare const zUpdateClusterResponse: z.ZodObject<{
3267
+ export declare const zUpdateChartResponse: z.ZodString;
3268
+ /**
3269
+ * An array of clusters
3270
+ */
3271
+ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
3250
3272
  name: z.ZodString;
3251
- tier: z.ZodEnum<{
3273
+ tier: z.ZodDefault<z.ZodEnum<{
3252
3274
  basic: "basic";
3275
+ enterprise: "enterprise";
3253
3276
  pro: "pro";
3254
- }>;
3255
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3256
- "staging-1a": "staging-1a";
3257
- "northamerica-central-1": "northamerica-central-1";
3258
- "europe-central-1a": "europe-central-1a";
3259
- "northamerica-central-1a": "northamerica-central-1a";
3260
- }>>>;
3277
+ }>>;
3278
+ version_channel: z.ZodDefault<z.ZodString>;
3279
+ release_channel: z.ZodDefault<z.ZodEnum<{
3280
+ stable: "stable";
3281
+ rapid: "rapid";
3282
+ extended: "extended";
3283
+ }>>;
3284
+ features: z.ZodDefault<z.ZodObject<{
3285
+ gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
3286
+ none: "none";
3287
+ mps: "mps";
3288
+ time_slicing: "time_slicing";
3289
+ }>>;
3290
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
3291
+ cilium_socket_lb_host_namespace_only: z.ZodBoolean;
3292
+ }, z.core.$strip>>;
3293
+ region: z.ZodString;
3294
+ networking: z.ZodDefault<z.ZodObject<{
3295
+ pod_cidr: z.ZodDefault<z.ZodString>;
3296
+ service_cidr: z.ZodDefault<z.ZodString>;
3297
+ dual_stack: z.ZodBoolean;
3298
+ pod_cidr_v6: z.ZodDefault<z.ZodString>;
3299
+ service_cidr_v6: z.ZodDefault<z.ZodString>;
3300
+ }, z.core.$strip>>;
3261
3301
  id: z.ZodUUID;
3262
3302
  status: z.ZodEnum<{
3263
- deleted: "deleted";
3264
- failed: "failed";
3265
- active: "active";
3266
3303
  disabled: "disabled";
3267
3304
  creating: "creating";
3268
3305
  deployed: "deployed";
@@ -3278,666 +3315,750 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
3278
3315
  version_current: z.ZodOptional<z.ZodString>;
3279
3316
  created_at: z.ZodOptional<z.ZodString>;
3280
3317
  updated_at: z.ZodOptional<z.ZodString>;
3281
- ready: z.ZodOptional<z.ZodBoolean>;
3282
- version_channel: z.ZodOptional<z.ZodString>;
3283
- }, z.core.$strip>;
3284
- export declare const zGetJoinInformationPath: z.ZodObject<{
3285
- cluster_id: z.ZodString;
3286
- }, z.core.$strip>;
3287
- /**
3288
- * An object of cluster join information
3289
- */
3290
- export declare const zGetJoinInformationResponse: z.ZodObject<{
3291
- certificate_authority: z.ZodString;
3292
- endpoint: z.ZodURL;
3293
- cluster_dns: z.ZodString;
3294
- auth_key: z.ZodString;
3295
- bootstrap_token: z.ZodString;
3296
- versions: z.ZodObject<{
3297
- kubernetes: z.ZodString;
3298
- tailscale: z.ZodString;
3299
- containerd: z.ZodString;
3300
- nvidia_driver: z.ZodString;
3301
- }, z.core.$strip>;
3302
- third_party_api_access_config: z.ZodObject<{
3303
- metadata_url: z.ZodString;
3304
- aws_role_arn: z.ZodString;
3305
- gcp_workload_identity_provider: z.ZodString;
3306
- }, z.core.$strip>;
3307
- }, z.core.$strip>;
3308
- /**
3309
- * An array of invites
3310
- */
3311
- export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
3312
- id: z.ZodOptional<z.ZodString>;
3313
- organization_id: z.ZodOptional<z.ZodUUID>;
3314
- date_created: z.ZodISODateTime;
3315
- email: z.ZodOptional<z.ZodEmail>;
3316
- code: z.ZodOptional<z.ZodString>;
3318
+ ready: z.ZodBoolean;
3317
3319
  }, z.core.$strip>>;
3318
- export declare const zCreateInviteBody: z.ZodObject<{
3319
- email: z.ZodOptional<z.ZodString>;
3320
- }, z.core.$strip>;
3321
- /**
3322
- * Successfully created. Returns created invite details.
3323
- */
3324
- export declare const zCreateInviteResponse: z.ZodObject<{
3325
- id: z.ZodOptional<z.ZodString>;
3326
- organization_id: z.ZodOptional<z.ZodUUID>;
3327
- date_created: z.ZodISODateTime;
3328
- email: z.ZodOptional<z.ZodEmail>;
3329
- code: z.ZodOptional<z.ZodString>;
3330
- }, z.core.$strip>;
3331
- export declare const zGetInvitePath: z.ZodObject<{
3332
- code: z.ZodString;
3333
- }, z.core.$strip>;
3334
- /**
3335
- * Returns a single object containing invite details.
3336
- */
3337
- export declare const zGetInviteResponse: z.ZodObject<{
3338
- id: z.ZodOptional<z.ZodString>;
3339
- organization_id: z.ZodOptional<z.ZodUUID>;
3340
- date_created: z.ZodISODateTime;
3341
- email: z.ZodOptional<z.ZodEmail>;
3342
- code: z.ZodOptional<z.ZodString>;
3343
- }, z.core.$strip>;
3344
- export declare const zDeleteInvitePath: z.ZodObject<{
3345
- email: z.ZodString;
3346
- }, z.core.$strip>;
3347
- /**
3348
- * An array of chart listings in the marketplace.
3349
- */
3350
- export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
3320
+ export declare const zCreateClusterBody: z.ZodObject<{
3351
3321
  name: z.ZodString;
3352
- versions: z.ZodArray<z.ZodString>;
3353
- version_channels: z.ZodArray<z.ZodString>;
3354
- latestVersion: z.ZodString;
3355
- metadata: z.ZodOptional<z.ZodObject<{
3356
- name: z.ZodString;
3357
- version: z.ZodString;
3358
- description: z.ZodOptional<z.ZodString>;
3359
- appVersion: z.ZodOptional<z.ZodString>;
3360
- apiVersion: z.ZodOptional<z.ZodString>;
3361
- keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
3362
- home: z.ZodOptional<z.ZodString>;
3363
- icon: z.ZodOptional<z.ZodString>;
3364
- sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
3365
- maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
3366
- name: z.ZodString;
3367
- email: z.ZodOptional<z.ZodString>;
3368
- }, z.core.$strip>>>;
3369
- }, z.core.$strip>>;
3370
- }, z.core.$strip>>;
3371
- export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
3372
- chart_name: z.ZodString;
3373
- version_channel: z.ZodString;
3374
- }, z.core.$strip>;
3375
- /**
3376
- * Returns an object containing the chart files for the latest matching version.
3377
- */
3378
- export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
3379
- chartYaml: z.ZodOptional<z.ZodString>;
3380
- valuesYaml: z.ZodOptional<z.ZodString>;
3381
- valuesSchemaJson: z.ZodOptional<z.ZodString>;
3382
- }, z.core.$strip>;
3383
- /**
3384
- * JSON-RPC 2.0 request payload
3385
- */
3386
- export declare const zPostMcpBody: z.ZodObject<{
3387
- jsonrpc: z.ZodOptional<z.ZodString>;
3388
- method: z.ZodOptional<z.ZodString>;
3389
- id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
3390
- params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3391
- }, z.core.$strip>;
3392
- /**
3393
- * JSON-RPC 2.0 success or error response
3394
- */
3395
- export declare const zPostMcpResponse: z.ZodObject<{
3396
- jsonrpc: z.ZodOptional<z.ZodString>;
3397
- id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
3398
- result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3399
- error: z.ZodOptional<z.ZodObject<{
3400
- code: z.ZodOptional<z.ZodInt>;
3401
- message: z.ZodOptional<z.ZodString>;
3402
- }, z.core.$strip>>;
3403
- }, z.core.$strip>;
3404
- /**
3405
- * Returns a single object containing organization details.
3406
- */
3407
- export declare const zGetOrganizationResponse: z.ZodObject<{
3408
- id: z.ZodUUID;
3409
- name: z.ZodOptional<z.ZodString>;
3410
- type: z.ZodEnum<{
3411
- business: "business";
3412
- personal: "personal";
3413
- }>;
3414
- date_created: z.ZodISODateTime;
3415
- quota: z.ZodObject<{
3416
- basic_clusters_max: z.ZodInt;
3417
- basic_clusters_available: z.ZodInt;
3418
- pro_clusters_max: z.ZodInt;
3419
- pro_clusters_available: z.ZodInt;
3420
- fleets_max: z.ZodInt;
3421
- cluster_tiers: z.ZodArray<z.ZodString>;
3422
- regions: z.ZodArray<z.ZodString>;
3423
- versions: z.ZodArray<z.ZodObject<{
3424
- id: z.ZodString;
3425
- label: z.ZodString;
3426
- }, z.core.$strip>>;
3427
- cfcr_storage_gb: z.ZodInt;
3428
- }, z.core.$strip>;
3429
- status: z.ZodEnum<{
3430
- active: "active";
3431
- closed: "closed";
3432
- suspended: "suspended";
3433
- }>;
3434
- verification: z.ZodEnum<{
3435
- none: "none";
3436
- submitted: "submitted";
3437
- verified: "verified";
3438
- }>;
3322
+ tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3323
+ basic: "basic";
3324
+ enterprise: "enterprise";
3325
+ pro: "pro";
3326
+ }>>>;
3327
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3328
+ release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3329
+ stable: "stable";
3330
+ rapid: "rapid";
3331
+ extended: "extended";
3332
+ }>>>;
3333
+ features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
3334
+ gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3335
+ none: "none";
3336
+ mps: "mps";
3337
+ time_slicing: "time_slicing";
3338
+ }>>>;
3339
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
3340
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
3341
+ }, z.core.$strip>>>;
3342
+ region: z.ZodString;
3343
+ networking: z.ZodDefault<z.ZodOptional<z.ZodObject<{
3344
+ pod_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3345
+ service_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3346
+ dual_stack: z.ZodOptional<z.ZodBoolean>;
3347
+ pod_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3348
+ service_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3349
+ }, z.core.$strip>>>;
3439
3350
  }, z.core.$strip>;
3440
- export declare const zCreateOrganizationBody: z.ZodObject<{
3441
- type: z.ZodEnum<{
3442
- business: "business";
3443
- personal: "personal";
3444
- }>;
3445
- email: z.ZodEmail;
3446
- first_name: z.ZodString;
3447
- last_name: z.ZodString;
3448
- company_name: z.ZodString;
3449
- password: z.ZodString;
3351
+ /**
3352
+ * Successfully created. Returns created Cluster ID.
3353
+ */
3354
+ export declare const zCreateClusterResponse: z.ZodString;
3355
+ export declare const zDeleteClusterPath: z.ZodObject<{
3356
+ cluster_id: z.ZodString;
3450
3357
  }, z.core.$strip>;
3451
3358
  /**
3452
- * List of repositories
3359
+ * Successfully deleted. The cluster has been torn down.
3453
3360
  */
3454
- export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
3455
- name: z.ZodString;
3456
- region: z.ZodString;
3457
- uri: z.ZodString;
3458
- }, z.core.$strip>>;
3459
- export declare const zListTagsPath: z.ZodObject<{
3460
- region: z.ZodString;
3461
- repository: z.ZodString;
3361
+ export declare const zDeleteClusterResponse: z.ZodString;
3362
+ export declare const zGetClusterPath: z.ZodObject<{
3363
+ cluster_id: z.ZodString;
3462
3364
  }, z.core.$strip>;
3463
3365
  /**
3464
- * Repository with tags
3366
+ * Returns a single object containing cluster details.
3465
3367
  */
3466
- export declare const zListTagsResponse: z.ZodObject<{
3368
+ export declare const zGetClusterResponse: z.ZodObject<{
3467
3369
  name: z.ZodString;
3370
+ tier: z.ZodDefault<z.ZodEnum<{
3371
+ basic: "basic";
3372
+ enterprise: "enterprise";
3373
+ pro: "pro";
3374
+ }>>;
3375
+ version_channel: z.ZodDefault<z.ZodString>;
3376
+ release_channel: z.ZodDefault<z.ZodEnum<{
3377
+ stable: "stable";
3378
+ rapid: "rapid";
3379
+ extended: "extended";
3380
+ }>>;
3381
+ features: z.ZodDefault<z.ZodObject<{
3382
+ gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
3383
+ none: "none";
3384
+ mps: "mps";
3385
+ time_slicing: "time_slicing";
3386
+ }>>;
3387
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
3388
+ cilium_socket_lb_host_namespace_only: z.ZodBoolean;
3389
+ }, z.core.$strip>>;
3468
3390
  region: z.ZodString;
3469
- uri: z.ZodString;
3470
- tags: z.ZodArray<z.ZodObject<{
3471
- name: z.ZodString;
3472
- size: z.ZodNumber;
3473
- mediaType: z.ZodOptional<z.ZodString>;
3474
- platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
3391
+ networking: z.ZodDefault<z.ZodObject<{
3392
+ pod_cidr: z.ZodDefault<z.ZodString>;
3393
+ service_cidr: z.ZodDefault<z.ZodString>;
3394
+ dual_stack: z.ZodBoolean;
3395
+ pod_cidr_v6: z.ZodDefault<z.ZodString>;
3396
+ service_cidr_v6: z.ZodDefault<z.ZodString>;
3475
3397
  }, z.core.$strip>>;
3476
- totalSize: z.ZodNumber;
3398
+ id: z.ZodUUID;
3399
+ status: z.ZodEnum<{
3400
+ disabled: "disabled";
3401
+ creating: "creating";
3402
+ deployed: "deployed";
3403
+ updating: "updating";
3404
+ }>;
3405
+ endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3406
+ "": "";
3407
+ }>]>>;
3408
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3409
+ "": "";
3410
+ }>]>>;
3411
+ certificate_ca: z.ZodOptional<z.ZodString>;
3412
+ version_current: z.ZodOptional<z.ZodString>;
3413
+ created_at: z.ZodOptional<z.ZodString>;
3414
+ updated_at: z.ZodOptional<z.ZodString>;
3415
+ ready: z.ZodBoolean;
3477
3416
  }, z.core.$strip>;
3478
- export declare const zDeleteTagPath: z.ZodObject<{
3479
- region: z.ZodString;
3480
- repository: z.ZodString;
3481
- tag: z.ZodString;
3417
+ export declare const zUpdateClusterBody: z.ZodObject<{
3418
+ name: z.ZodString;
3419
+ tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3420
+ basic: "basic";
3421
+ enterprise: "enterprise";
3422
+ pro: "pro";
3423
+ }>>>;
3424
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3425
+ release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3426
+ stable: "stable";
3427
+ rapid: "rapid";
3428
+ extended: "extended";
3429
+ }>>>;
3430
+ features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
3431
+ gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3432
+ none: "none";
3433
+ mps: "mps";
3434
+ time_slicing: "time_slicing";
3435
+ }>>>;
3436
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
3437
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
3438
+ }, z.core.$strip>>>;
3482
3439
  }, z.core.$strip>;
3483
- export declare const zGetTagPath: z.ZodObject<{
3484
- region: z.ZodString;
3485
- repository: z.ZodString;
3486
- tag: z.ZodString;
3440
+ export declare const zUpdateClusterPath: z.ZodObject<{
3441
+ cluster_id: z.ZodString;
3487
3442
  }, z.core.$strip>;
3488
3443
  /**
3489
- * Tag details
3444
+ * Successfully updated. Returns updated cluster details.
3490
3445
  */
3491
- export declare const zGetTagResponse: z.ZodObject<{
3446
+ export declare const zUpdateClusterResponse: z.ZodObject<{
3492
3447
  name: z.ZodString;
3493
- digest: z.ZodString;
3494
- mediaType: z.ZodOptional<z.ZodString>;
3495
- config: z.ZodOptional<z.ZodObject<{
3496
- size: z.ZodNumber;
3448
+ tier: z.ZodDefault<z.ZodEnum<{
3449
+ basic: "basic";
3450
+ enterprise: "enterprise";
3451
+ pro: "pro";
3452
+ }>>;
3453
+ version_channel: z.ZodDefault<z.ZodString>;
3454
+ release_channel: z.ZodDefault<z.ZodEnum<{
3455
+ stable: "stable";
3456
+ rapid: "rapid";
3457
+ extended: "extended";
3458
+ }>>;
3459
+ features: z.ZodDefault<z.ZodObject<{
3460
+ gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
3461
+ none: "none";
3462
+ mps: "mps";
3463
+ time_slicing: "time_slicing";
3464
+ }>>;
3465
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
3466
+ cilium_socket_lb_host_namespace_only: z.ZodBoolean;
3497
3467
  }, z.core.$strip>>;
3498
- layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
3499
- digest: z.ZodOptional<z.ZodString>;
3500
- size: z.ZodNumber;
3501
- }, z.core.$strip>>>;
3502
- manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
3503
- digest: z.ZodString;
3504
- platform: z.ZodOptional<z.ZodObject<{
3505
- architecture: z.ZodString;
3506
- os: z.ZodString;
3507
- variant: z.ZodOptional<z.ZodString>;
3508
- }, z.core.$strip>>;
3509
- layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
3510
- digest: z.ZodOptional<z.ZodString>;
3511
- size: z.ZodNumber;
3512
- }, z.core.$strip>>>;
3513
- size: z.ZodOptional<z.ZodNumber>;
3514
- }, z.core.$strip>>>;
3515
- size: z.ZodNumber;
3516
3468
  region: z.ZodString;
3517
- repository: z.ZodString;
3518
- uri: z.ZodString;
3519
- }, z.core.$strip>;
3520
- /**
3521
- * Tickets for the organization.
3522
- */
3523
- export declare const zListTicketsResponse: z.ZodObject<{
3524
- items: z.ZodArray<z.ZodObject<{
3525
- id: z.ZodString;
3526
- status: z.ZodEnum<{
3527
- closed: "closed";
3528
- waiting_on_us: "waiting_on_us";
3529
- waiting_on_user: "waiting_on_user";
3530
- }>;
3531
- category: z.ZodEnum<{
3532
- billing: "billing";
3533
- technical: "technical";
3534
- general: "general";
3535
- }>;
3536
- summary: z.ZodString;
3537
- closed_at: z.ZodOptional<z.ZodISODateTime>;
3538
- date_created: z.ZodISODateTime;
3539
- date_updated: z.ZodISODateTime;
3540
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
3541
- id: z.ZodString;
3542
- type: z.ZodEnum<{
3543
- customer_reply: "customer_reply";
3544
- agent_reply: "agent_reply";
3545
- }>;
3546
- body: z.ZodString;
3547
- author_first_name: z.ZodOptional<z.ZodString>;
3548
- author_last_name: z.ZodOptional<z.ZodString>;
3549
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3550
- id: z.ZodString;
3551
- filename: z.ZodString;
3552
- content_type: z.ZodString;
3553
- size: z.ZodInt;
3554
- }, z.core.$strip>>>;
3555
- date_created: z.ZodISODateTime;
3556
- }, z.core.$strip>>>;
3469
+ networking: z.ZodDefault<z.ZodObject<{
3470
+ pod_cidr: z.ZodDefault<z.ZodString>;
3471
+ service_cidr: z.ZodDefault<z.ZodString>;
3472
+ dual_stack: z.ZodBoolean;
3473
+ pod_cidr_v6: z.ZodDefault<z.ZodString>;
3474
+ service_cidr_v6: z.ZodDefault<z.ZodString>;
3557
3475
  }, z.core.$strip>>;
3558
- }, z.core.$strip>;
3559
- export declare const zCreateTicketBody: z.ZodObject<{
3560
- payload: z.ZodOptional<z.ZodString>;
3561
- attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
3562
- }, z.core.$strip>;
3563
- /**
3564
- * Ticket created.
3565
- */
3566
- export declare const zCreateTicketResponse: z.ZodObject<{
3567
- id: z.ZodString;
3476
+ id: z.ZodUUID;
3568
3477
  status: z.ZodEnum<{
3569
- closed: "closed";
3570
- waiting_on_us: "waiting_on_us";
3571
- waiting_on_user: "waiting_on_user";
3572
- }>;
3573
- category: z.ZodEnum<{
3574
- billing: "billing";
3575
- technical: "technical";
3576
- general: "general";
3478
+ disabled: "disabled";
3479
+ creating: "creating";
3480
+ deployed: "deployed";
3481
+ updating: "updating";
3577
3482
  }>;
3578
- summary: z.ZodString;
3579
- closed_at: z.ZodOptional<z.ZodISODateTime>;
3580
- date_created: z.ZodISODateTime;
3581
- date_updated: z.ZodISODateTime;
3582
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
3583
- id: z.ZodString;
3584
- type: z.ZodEnum<{
3585
- customer_reply: "customer_reply";
3586
- agent_reply: "agent_reply";
3587
- }>;
3588
- body: z.ZodString;
3589
- author_first_name: z.ZodOptional<z.ZodString>;
3590
- author_last_name: z.ZodOptional<z.ZodString>;
3591
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3592
- id: z.ZodString;
3593
- filename: z.ZodString;
3594
- content_type: z.ZodString;
3595
- size: z.ZodInt;
3596
- }, z.core.$strip>>>;
3597
- date_created: z.ZodISODateTime;
3598
- }, z.core.$strip>>>;
3483
+ endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3484
+ "": "";
3485
+ }>]>>;
3486
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3487
+ "": "";
3488
+ }>]>>;
3489
+ certificate_ca: z.ZodOptional<z.ZodString>;
3490
+ version_current: z.ZodOptional<z.ZodString>;
3491
+ created_at: z.ZodOptional<z.ZodString>;
3492
+ updated_at: z.ZodOptional<z.ZodString>;
3493
+ ready: z.ZodBoolean;
3599
3494
  }, z.core.$strip>;
3600
- export declare const zCloseTicketPath: z.ZodObject<{
3601
- ticket_id: z.ZodString;
3495
+ export declare const zGetJoinInformationPath: z.ZodObject<{
3496
+ cluster_id: z.ZodString;
3602
3497
  }, z.core.$strip>;
3603
3498
  /**
3604
- * Ticket closed.
3499
+ * An object of cluster join information
3605
3500
  */
3606
- export declare const zCloseTicketResponse: z.ZodObject<{
3607
- id: z.ZodString;
3608
- status: z.ZodEnum<{
3609
- closed: "closed";
3610
- waiting_on_us: "waiting_on_us";
3611
- waiting_on_user: "waiting_on_user";
3612
- }>;
3613
- category: z.ZodEnum<{
3614
- billing: "billing";
3615
- technical: "technical";
3616
- general: "general";
3617
- }>;
3618
- summary: z.ZodString;
3619
- closed_at: z.ZodOptional<z.ZodISODateTime>;
3620
- date_created: z.ZodISODateTime;
3621
- date_updated: z.ZodISODateTime;
3622
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
3623
- id: z.ZodString;
3624
- type: z.ZodEnum<{
3625
- customer_reply: "customer_reply";
3626
- agent_reply: "agent_reply";
3627
- }>;
3628
- body: z.ZodString;
3629
- author_first_name: z.ZodOptional<z.ZodString>;
3630
- author_last_name: z.ZodOptional<z.ZodString>;
3631
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3632
- id: z.ZodString;
3633
- filename: z.ZodString;
3634
- content_type: z.ZodString;
3635
- size: z.ZodInt;
3636
- }, z.core.$strip>>>;
3637
- date_created: z.ZodISODateTime;
3638
- }, z.core.$strip>>>;
3501
+ export declare const zGetJoinInformationResponse: z.ZodObject<{
3502
+ certificate_authority: z.ZodString;
3503
+ endpoint: z.ZodURL;
3504
+ cluster_dns: z.ZodString;
3505
+ pod_cidr: z.ZodString;
3506
+ auth_key: z.ZodString;
3507
+ bootstrap_token: z.ZodString;
3508
+ versions: z.ZodObject<{
3509
+ kubernetes: z.ZodString;
3510
+ tailscale: z.ZodString;
3511
+ containerd: z.ZodString;
3512
+ nvidia_driver: z.ZodString;
3513
+ }, z.core.$strip>;
3514
+ third_party_api_access_config: z.ZodObject<{
3515
+ metadata_url: z.ZodString;
3516
+ aws_role_arn: z.ZodString;
3517
+ gcp_workload_identity_provider: z.ZodString;
3518
+ }, z.core.$strip>;
3639
3519
  }, z.core.$strip>;
3640
- export declare const zGetTicketPath: z.ZodObject<{
3641
- ticket_id: z.ZodString;
3520
+ export declare const zGetUsageQuery: z.ZodObject<{
3521
+ granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3522
+ hourly: "hourly";
3523
+ daily: "daily";
3524
+ monthly: "monthly";
3525
+ }>>>;
3642
3526
  }, z.core.$strip>;
3643
3527
  /**
3644
- * Ticket with messages (internal notes excluded).
3528
+ * Usage data with facets for filtering
3645
3529
  */
3646
- export declare const zGetTicketResponse: z.ZodObject<{
3647
- id: z.ZodString;
3648
- status: z.ZodEnum<{
3649
- closed: "closed";
3650
- waiting_on_us: "waiting_on_us";
3651
- waiting_on_user: "waiting_on_user";
3652
- }>;
3653
- category: z.ZodEnum<{
3654
- billing: "billing";
3655
- technical: "technical";
3656
- general: "general";
3657
- }>;
3658
- summary: z.ZodString;
3659
- closed_at: z.ZodOptional<z.ZodISODateTime>;
3660
- date_created: z.ZodISODateTime;
3661
- date_updated: z.ZodISODateTime;
3662
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
3663
- id: z.ZodString;
3664
- type: z.ZodEnum<{
3665
- customer_reply: "customer_reply";
3666
- agent_reply: "agent_reply";
3667
- }>;
3668
- body: z.ZodString;
3669
- author_first_name: z.ZodOptional<z.ZodString>;
3670
- author_last_name: z.ZodOptional<z.ZodString>;
3671
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3672
- id: z.ZodString;
3673
- filename: z.ZodString;
3674
- content_type: z.ZodString;
3675
- size: z.ZodInt;
3676
- }, z.core.$strip>>>;
3677
- date_created: z.ZodISODateTime;
3678
- }, z.core.$strip>>>;
3679
- }, z.core.$strip>;
3680
- export declare const zReplyTicketBody: z.ZodObject<{
3681
- payload: z.ZodOptional<z.ZodString>;
3682
- attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
3530
+ export declare const zGetUsageResponse: z.ZodObject<{
3531
+ data: z.ZodArray<z.ZodObject<{
3532
+ hour: z.ZodString;
3533
+ cluster_id: z.ZodString;
3534
+ product: z.ZodString;
3535
+ value: z.ZodNumber;
3536
+ price: z.ZodNumber;
3537
+ total: z.ZodNumber;
3538
+ }, z.core.$strip>>;
3539
+ facets: z.ZodObject<{
3540
+ cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
3541
+ product: z.ZodOptional<z.ZodArray<z.ZodString>>;
3542
+ }, z.core.$strip>;
3683
3543
  }, z.core.$strip>;
3684
- export declare const zReplyTicketPath: z.ZodObject<{
3685
- ticket_id: z.ZodString;
3544
+ /**
3545
+ * 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.
3546
+ *
3547
+ */
3548
+ export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
3549
+ id: z.ZodOptional<z.ZodString>;
3686
3550
  }, z.core.$strip>;
3687
3551
  /**
3688
- * Reply appended.
3552
+ * An array of payment methods.
3689
3553
  */
3690
- export declare const zReplyTicketResponse: z.ZodObject<{
3554
+ export declare const zListPaymentMethodsResponse: z.ZodArray<z.ZodObject<{
3691
3555
  id: z.ZodString;
3692
3556
  type: z.ZodEnum<{
3693
- customer_reply: "customer_reply";
3694
- agent_reply: "agent_reply";
3557
+ card: "card";
3558
+ sepa_debit: "sepa_debit";
3559
+ bank_transfer: "bank_transfer";
3695
3560
  }>;
3696
- body: z.ZodString;
3697
- author_first_name: z.ZodOptional<z.ZodString>;
3698
- author_last_name: z.ZodOptional<z.ZodString>;
3699
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3700
- id: z.ZodString;
3701
- filename: z.ZodString;
3702
- content_type: z.ZodString;
3703
- size: z.ZodInt;
3704
- }, z.core.$strip>>>;
3705
- date_created: z.ZodISODateTime;
3706
- }, z.core.$strip>;
3707
- export declare const zGetTicketAttachmentPath: z.ZodObject<{
3708
- ticket_id: z.ZodString;
3709
- attachment_id: z.ZodString;
3561
+ last4: z.ZodString;
3562
+ exp_month: z.ZodInt;
3563
+ exp_year: z.ZodInt;
3564
+ brand: z.ZodString;
3565
+ iban: z.ZodString;
3566
+ bic: z.ZodString;
3567
+ account_holder_name: z.ZodString;
3568
+ is_default: z.ZodBoolean;
3569
+ }, z.core.$strip>>;
3570
+ export declare const zSetDefaultPaymentMethodPath: z.ZodObject<{
3571
+ paymentMethodId: z.ZodString;
3710
3572
  }, z.core.$strip>;
3711
3573
  /**
3712
- * Attachment binary stream.
3574
+ * Default payment method updated.
3713
3575
  */
3714
- export declare const zGetTicketAttachmentResponse: z.ZodString;
3576
+ export declare const zSetDefaultPaymentMethodResponse: z.ZodVoid;
3577
+ export declare const zDeletePaymentMethodPath: z.ZodObject<{
3578
+ paymentMethodId: z.ZodString;
3579
+ }, z.core.$strip>;
3715
3580
  /**
3716
- * Returns a list of access token details with masked secrets.
3581
+ * Payment method deleted.
3717
3582
  */
3718
- export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
3719
- name: z.ZodString;
3720
- role: z.ZodEnum<{
3721
- Administrator: "Administrator";
3722
- User: "User";
3723
- }>;
3724
- id: z.ZodOptional<z.ZodString>;
3725
- secret: z.ZodOptional<z.ZodString>;
3726
- date_created: z.ZodISODateTime;
3727
- }, z.core.$strip>>;
3728
- export declare const zCreateTokenBody: z.ZodObject<{
3729
- name: z.ZodString;
3730
- role: z.ZodEnum<{
3731
- Administrator: "Administrator";
3732
- User: "User";
3733
- }>;
3734
- }, z.core.$strip>;
3583
+ export declare const zDeletePaymentMethodResponse: z.ZodVoid;
3735
3584
  /**
3736
- * Successfully created. Returns created token details with unmasked/raw secret.
3585
+ * An array of usage records.
3737
3586
  */
3738
- export declare const zCreateTokenResponse: z.ZodObject<{
3739
- name: z.ZodString;
3740
- role: z.ZodEnum<{
3741
- Administrator: "Administrator";
3742
- User: "User";
3743
- }>;
3587
+ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
3744
3588
  id: z.ZodOptional<z.ZodString>;
3745
- secret: z.ZodOptional<z.ZodString>;
3746
- date_created: z.ZodISODateTime;
3747
- }, z.core.$strip>;
3748
- export declare const zDeleteTokenPath: z.ZodObject<{
3749
- token_id: z.ZodString;
3750
- }, z.core.$strip>;
3751
- export declare const zGetTokenPath: z.ZodObject<{
3752
- token_id: z.ZodString;
3753
- }, z.core.$strip>;
3589
+ number: z.ZodOptional<z.ZodString>;
3590
+ status: z.ZodOptional<z.ZodString>;
3591
+ total: z.ZodOptional<z.ZodNumber>;
3592
+ currency: z.ZodOptional<z.ZodString>;
3593
+ created: z.ZodISODateTime;
3594
+ period_start: z.ZodISODateTime;
3595
+ period_end: z.ZodISODateTime;
3596
+ invoice_pdf: z.ZodOptional<z.ZodString>;
3597
+ }, z.core.$strip>>;
3754
3598
  /**
3755
- * Returns access token details with masked secret.
3599
+ * Returns a single object containing organization contact and billing address details.
3756
3600
  */
3757
- export declare const zGetTokenResponse: z.ZodObject<{
3758
- name: z.ZodString;
3759
- role: z.ZodEnum<{
3760
- Administrator: "Administrator";
3761
- User: "User";
3601
+ export declare const zGetContactResponse: z.ZodObject<{
3602
+ type: z.ZodEnum<{
3603
+ business: "business";
3604
+ personal: "personal";
3762
3605
  }>;
3763
- id: z.ZodOptional<z.ZodString>;
3764
- secret: z.ZodOptional<z.ZodString>;
3765
- date_created: z.ZodISODateTime;
3766
- }, z.core.$strip>;
3767
- export declare const zUpdateTokenBody: z.ZodObject<{
3768
- name: z.ZodOptional<z.ZodString>;
3769
- role: z.ZodOptional<z.ZodEnum<{
3770
- Administrator: "Administrator";
3771
- User: "User";
3606
+ company: z.ZodOptional<z.ZodString>;
3607
+ address1: z.ZodOptional<z.ZodString>;
3608
+ address2: z.ZodOptional<z.ZodString>;
3609
+ postalCode: z.ZodOptional<z.ZodString>;
3610
+ city: z.ZodOptional<z.ZodString>;
3611
+ state: z.ZodOptional<z.ZodString>;
3612
+ country: z.ZodOptional<z.ZodString>;
3613
+ phone: z.ZodOptional<z.ZodString>;
3614
+ email: z.ZodEmail;
3615
+ individual_name: z.ZodString;
3616
+ tax_id: z.ZodOptional<z.ZodString>;
3617
+ tax_id_type: z.ZodOptional<z.ZodEnum<{
3618
+ "": "";
3619
+ ad_nrt: "ad_nrt";
3620
+ ae_trn: "ae_trn";
3621
+ al_tin: "al_tin";
3622
+ am_tin: "am_tin";
3623
+ ao_tin: "ao_tin";
3624
+ ar_cuit: "ar_cuit";
3625
+ at_vat: "at_vat";
3626
+ au_abn: "au_abn";
3627
+ au_arn: "au_arn";
3628
+ ba_tin: "ba_tin";
3629
+ bb_tin: "bb_tin";
3630
+ be_vat: "be_vat";
3631
+ bg_uic: "bg_uic";
3632
+ bg_vat: "bg_vat";
3633
+ bh_vat: "bh_vat";
3634
+ bo_tin: "bo_tin";
3635
+ br_cnpj: "br_cnpj";
3636
+ br_cpf: "br_cpf";
3637
+ bs_tin: "bs_tin";
3638
+ by_tin: "by_tin";
3639
+ ca_bn: "ca_bn";
3640
+ ca_gst_hst: "ca_gst_hst";
3641
+ ca_pst_bc: "ca_pst_bc";
3642
+ ca_pst_mb: "ca_pst_mb";
3643
+ ca_pst_sk: "ca_pst_sk";
3644
+ ca_qst: "ca_qst";
3645
+ cd_nif: "cd_nif";
3646
+ ch_uid: "ch_uid";
3647
+ ch_vat: "ch_vat";
3648
+ cl_tin: "cl_tin";
3649
+ cn_tin: "cn_tin";
3650
+ co_nit: "co_nit";
3651
+ cr_tin: "cr_tin";
3652
+ cy_vat: "cy_vat";
3653
+ cz_vat: "cz_vat";
3654
+ de_stn: "de_stn";
3655
+ de_vat: "de_vat";
3656
+ dk_vat: "dk_vat";
3657
+ do_rcn: "do_rcn";
3658
+ ec_ruc: "ec_ruc";
3659
+ ee_vat: "ee_vat";
3660
+ eg_tin: "eg_tin";
3661
+ es_cif: "es_cif";
3662
+ es_vat: "es_vat";
3663
+ eu_oss_vat: "eu_oss_vat";
3664
+ fi_vat: "fi_vat";
3665
+ fr_vat: "fr_vat";
3666
+ gb_vat: "gb_vat";
3667
+ ge_vat: "ge_vat";
3668
+ gn_nif: "gn_nif";
3669
+ gr_vat: "gr_vat";
3670
+ hk_br: "hk_br";
3671
+ hr_oib: "hr_oib";
3672
+ hr_vat: "hr_vat";
3673
+ hu_tin: "hu_tin";
3674
+ hu_vat: "hu_vat";
3675
+ id_npwp: "id_npwp";
3676
+ ie_vat: "ie_vat";
3677
+ il_vat: "il_vat";
3678
+ in_gst: "in_gst";
3679
+ is_vat: "is_vat";
3680
+ it_vat: "it_vat";
3681
+ jp_cn: "jp_cn";
3682
+ jp_rn: "jp_rn";
3683
+ jp_trn: "jp_trn";
3684
+ ke_pin: "ke_pin";
3685
+ kh_tin: "kh_tin";
3686
+ kr_brn: "kr_brn";
3687
+ kz_bin: "kz_bin";
3688
+ li_uid: "li_uid";
3689
+ li_vat: "li_vat";
3690
+ lt_vat: "lt_vat";
3691
+ lu_vat: "lu_vat";
3692
+ lv_vat: "lv_vat";
3693
+ ma_vat: "ma_vat";
3694
+ md_vat: "md_vat";
3695
+ me_pib: "me_pib";
3696
+ mk_vat: "mk_vat";
3697
+ mr_nif: "mr_nif";
3698
+ mt_vat: "mt_vat";
3699
+ mx_rfc: "mx_rfc";
3700
+ my_frp: "my_frp";
3701
+ my_itn: "my_itn";
3702
+ my_sst: "my_sst";
3703
+ ng_tin: "ng_tin";
3704
+ nl_vat: "nl_vat";
3705
+ no_vat: "no_vat";
3706
+ no_voec: "no_voec";
3707
+ np_pan: "np_pan";
3708
+ nz_gst: "nz_gst";
3709
+ om_vat: "om_vat";
3710
+ pe_ruc: "pe_ruc";
3711
+ ph_tin: "ph_tin";
3712
+ pl_vat: "pl_vat";
3713
+ pt_vat: "pt_vat";
3714
+ ro_tin: "ro_tin";
3715
+ ro_vat: "ro_vat";
3716
+ rs_pib: "rs_pib";
3717
+ ru_inn: "ru_inn";
3718
+ ru_kpp: "ru_kpp";
3719
+ sa_vat: "sa_vat";
3720
+ se_vat: "se_vat";
3721
+ sg_gst: "sg_gst";
3722
+ sg_uen: "sg_uen";
3723
+ si_tin: "si_tin";
3724
+ si_vat: "si_vat";
3725
+ sk_vat: "sk_vat";
3726
+ sn_ninea: "sn_ninea";
3727
+ sr_fin: "sr_fin";
3728
+ sv_nit: "sv_nit";
3729
+ th_vat: "th_vat";
3730
+ tj_tin: "tj_tin";
3731
+ tr_tin: "tr_tin";
3732
+ tw_vat: "tw_vat";
3733
+ tz_vat: "tz_vat";
3734
+ ua_vat: "ua_vat";
3735
+ ug_tin: "ug_tin";
3736
+ us_ein: "us_ein";
3737
+ uy_ruc: "uy_ruc";
3738
+ uz_tin: "uz_tin";
3739
+ uz_vat: "uz_vat";
3740
+ ve_rif: "ve_rif";
3741
+ vn_tin: "vn_tin";
3742
+ xi_vat: "xi_vat";
3743
+ za_vat: "za_vat";
3744
+ zm_tin: "zm_tin";
3745
+ zw_tin: "zw_tin";
3772
3746
  }>>;
3773
3747
  }, z.core.$strip>;
3774
- export declare const zUpdateTokenPath: z.ZodObject<{
3775
- token_id: z.ZodString;
3776
- }, z.core.$strip>;
3777
- /**
3778
- * Successfully updated. Returns updated token details with masked secret.
3779
- */
3780
- export declare const zUpdateTokenResponse: z.ZodObject<{
3781
- name: z.ZodString;
3782
- role: z.ZodEnum<{
3783
- Administrator: "Administrator";
3784
- User: "User";
3785
- }>;
3786
- id: z.ZodOptional<z.ZodString>;
3787
- secret: z.ZodOptional<z.ZodString>;
3788
- date_created: z.ZodISODateTime;
3789
- }, z.core.$strip>;
3790
- export declare const zRegenerateTokenPath: z.ZodObject<{
3791
- token_id: z.ZodString;
3792
- }, z.core.$strip>;
3793
- /**
3794
- * Successfully updated. Returns updated token details with unmasked / raw secret.
3795
- */
3796
- export declare const zRegenerateTokenResponse: z.ZodObject<{
3797
- name: z.ZodString;
3798
- role: z.ZodEnum<{
3799
- Administrator: "Administrator";
3800
- User: "User";
3801
- }>;
3802
- id: z.ZodOptional<z.ZodString>;
3803
- secret: z.ZodOptional<z.ZodString>;
3804
- date_created: z.ZodISODateTime;
3805
- }, z.core.$strip>;
3806
- export declare const zListUserOrganizationsPath: z.ZodObject<{
3807
- email: z.ZodString;
3808
- }, z.core.$strip>;
3809
- /**
3810
- * An array of organizations the user belongs to.
3811
- */
3812
- export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
3813
- realm: z.ZodOptional<z.ZodString>;
3814
- displayName: z.ZodOptional<z.ZodString>;
3815
- }, z.core.$strip>>;
3816
- /**
3817
- * An array of users
3818
- */
3819
- export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
3820
- email: z.ZodEmail;
3821
- first_name: z.ZodString;
3822
- last_name: z.ZodString;
3823
- role: z.ZodEnum<{
3824
- Administrator: "Administrator";
3825
- User: "User";
3826
- }>;
3827
- status: z.ZodEnum<{
3828
- active: "active";
3829
- inactive: "inactive";
3748
+ export declare const zUpdateContactBody: z.ZodObject<{
3749
+ type: z.ZodEnum<{
3750
+ business: "business";
3751
+ personal: "personal";
3830
3752
  }>;
3831
- id: z.ZodUUID;
3832
- date_created: z.ZodISODateTime;
3833
- }, z.core.$strip>>;
3834
- export declare const zCreateUserBody: z.ZodObject<{
3753
+ company: z.ZodOptional<z.ZodString>;
3754
+ address1: z.ZodOptional<z.ZodString>;
3755
+ address2: z.ZodOptional<z.ZodString>;
3756
+ postalCode: z.ZodOptional<z.ZodString>;
3757
+ city: z.ZodOptional<z.ZodString>;
3758
+ state: z.ZodOptional<z.ZodString>;
3759
+ country: z.ZodOptional<z.ZodString>;
3760
+ phone: z.ZodOptional<z.ZodString>;
3835
3761
  email: z.ZodEmail;
3836
- first_name: z.ZodString;
3837
- last_name: z.ZodString;
3838
- code: z.ZodString;
3839
- password: z.ZodString;
3840
- status: z.ZodOptional<z.ZodEnum<{
3841
- active: "active";
3842
- inactive: "inactive";
3843
- }>>;
3844
- role: z.ZodOptional<z.ZodEnum<{
3845
- Administrator: "Administrator";
3846
- User: "User";
3762
+ individual_name: z.ZodString;
3763
+ tax_id: z.ZodOptional<z.ZodString>;
3764
+ tax_id_type: z.ZodOptional<z.ZodEnum<{
3765
+ "": "";
3766
+ ad_nrt: "ad_nrt";
3767
+ ae_trn: "ae_trn";
3768
+ al_tin: "al_tin";
3769
+ am_tin: "am_tin";
3770
+ ao_tin: "ao_tin";
3771
+ ar_cuit: "ar_cuit";
3772
+ at_vat: "at_vat";
3773
+ au_abn: "au_abn";
3774
+ au_arn: "au_arn";
3775
+ ba_tin: "ba_tin";
3776
+ bb_tin: "bb_tin";
3777
+ be_vat: "be_vat";
3778
+ bg_uic: "bg_uic";
3779
+ bg_vat: "bg_vat";
3780
+ bh_vat: "bh_vat";
3781
+ bo_tin: "bo_tin";
3782
+ br_cnpj: "br_cnpj";
3783
+ br_cpf: "br_cpf";
3784
+ bs_tin: "bs_tin";
3785
+ by_tin: "by_tin";
3786
+ ca_bn: "ca_bn";
3787
+ ca_gst_hst: "ca_gst_hst";
3788
+ ca_pst_bc: "ca_pst_bc";
3789
+ ca_pst_mb: "ca_pst_mb";
3790
+ ca_pst_sk: "ca_pst_sk";
3791
+ ca_qst: "ca_qst";
3792
+ cd_nif: "cd_nif";
3793
+ ch_uid: "ch_uid";
3794
+ ch_vat: "ch_vat";
3795
+ cl_tin: "cl_tin";
3796
+ cn_tin: "cn_tin";
3797
+ co_nit: "co_nit";
3798
+ cr_tin: "cr_tin";
3799
+ cy_vat: "cy_vat";
3800
+ cz_vat: "cz_vat";
3801
+ de_stn: "de_stn";
3802
+ de_vat: "de_vat";
3803
+ dk_vat: "dk_vat";
3804
+ do_rcn: "do_rcn";
3805
+ ec_ruc: "ec_ruc";
3806
+ ee_vat: "ee_vat";
3807
+ eg_tin: "eg_tin";
3808
+ es_cif: "es_cif";
3809
+ es_vat: "es_vat";
3810
+ eu_oss_vat: "eu_oss_vat";
3811
+ fi_vat: "fi_vat";
3812
+ fr_vat: "fr_vat";
3813
+ gb_vat: "gb_vat";
3814
+ ge_vat: "ge_vat";
3815
+ gn_nif: "gn_nif";
3816
+ gr_vat: "gr_vat";
3817
+ hk_br: "hk_br";
3818
+ hr_oib: "hr_oib";
3819
+ hr_vat: "hr_vat";
3820
+ hu_tin: "hu_tin";
3821
+ hu_vat: "hu_vat";
3822
+ id_npwp: "id_npwp";
3823
+ ie_vat: "ie_vat";
3824
+ il_vat: "il_vat";
3825
+ in_gst: "in_gst";
3826
+ is_vat: "is_vat";
3827
+ it_vat: "it_vat";
3828
+ jp_cn: "jp_cn";
3829
+ jp_rn: "jp_rn";
3830
+ jp_trn: "jp_trn";
3831
+ ke_pin: "ke_pin";
3832
+ kh_tin: "kh_tin";
3833
+ kr_brn: "kr_brn";
3834
+ kz_bin: "kz_bin";
3835
+ li_uid: "li_uid";
3836
+ li_vat: "li_vat";
3837
+ lt_vat: "lt_vat";
3838
+ lu_vat: "lu_vat";
3839
+ lv_vat: "lv_vat";
3840
+ ma_vat: "ma_vat";
3841
+ md_vat: "md_vat";
3842
+ me_pib: "me_pib";
3843
+ mk_vat: "mk_vat";
3844
+ mr_nif: "mr_nif";
3845
+ mt_vat: "mt_vat";
3846
+ mx_rfc: "mx_rfc";
3847
+ my_frp: "my_frp";
3848
+ my_itn: "my_itn";
3849
+ my_sst: "my_sst";
3850
+ ng_tin: "ng_tin";
3851
+ nl_vat: "nl_vat";
3852
+ no_vat: "no_vat";
3853
+ no_voec: "no_voec";
3854
+ np_pan: "np_pan";
3855
+ nz_gst: "nz_gst";
3856
+ om_vat: "om_vat";
3857
+ pe_ruc: "pe_ruc";
3858
+ ph_tin: "ph_tin";
3859
+ pl_vat: "pl_vat";
3860
+ pt_vat: "pt_vat";
3861
+ ro_tin: "ro_tin";
3862
+ ro_vat: "ro_vat";
3863
+ rs_pib: "rs_pib";
3864
+ ru_inn: "ru_inn";
3865
+ ru_kpp: "ru_kpp";
3866
+ sa_vat: "sa_vat";
3867
+ se_vat: "se_vat";
3868
+ sg_gst: "sg_gst";
3869
+ sg_uen: "sg_uen";
3870
+ si_tin: "si_tin";
3871
+ si_vat: "si_vat";
3872
+ sk_vat: "sk_vat";
3873
+ sn_ninea: "sn_ninea";
3874
+ sr_fin: "sr_fin";
3875
+ sv_nit: "sv_nit";
3876
+ th_vat: "th_vat";
3877
+ tj_tin: "tj_tin";
3878
+ tr_tin: "tr_tin";
3879
+ tw_vat: "tw_vat";
3880
+ tz_vat: "tz_vat";
3881
+ ua_vat: "ua_vat";
3882
+ ug_tin: "ug_tin";
3883
+ us_ein: "us_ein";
3884
+ uy_ruc: "uy_ruc";
3885
+ uz_tin: "uz_tin";
3886
+ uz_vat: "uz_vat";
3887
+ ve_rif: "ve_rif";
3888
+ vn_tin: "vn_tin";
3889
+ xi_vat: "xi_vat";
3890
+ za_vat: "za_vat";
3891
+ zm_tin: "zm_tin";
3892
+ zw_tin: "zw_tin";
3847
3893
  }>>;
3848
3894
  }, z.core.$strip>;
3849
3895
  /**
3850
- * Successfully created. Returns created user details.
3851
- */
3852
- export declare const zCreateUserResponse: z.ZodObject<{
3853
- email: z.ZodEmail;
3854
- first_name: z.ZodString;
3855
- last_name: z.ZodString;
3856
- role: z.ZodEnum<{
3857
- Administrator: "Administrator";
3858
- User: "User";
3859
- }>;
3860
- status: z.ZodEnum<{
3861
- active: "active";
3862
- inactive: "inactive";
3863
- }>;
3864
- id: z.ZodUUID;
3865
- date_created: z.ZodISODateTime;
3866
- }, z.core.$strip>;
3867
- export declare const zDeleteUserPath: z.ZodObject<{
3868
- user_id: z.ZodString;
3869
- }, z.core.$strip>;
3870
- /**
3871
- * User profile information
3896
+ * Successfully updated. Returns updated organization details.
3872
3897
  */
3873
- export declare const zDeleteUserResponse: z.ZodObject<{
3874
- email: z.ZodEmail;
3875
- first_name: z.ZodString;
3876
- last_name: z.ZodString;
3877
- role: z.ZodEnum<{
3878
- Administrator: "Administrator";
3879
- User: "User";
3880
- }>;
3881
- status: z.ZodEnum<{
3882
- active: "active";
3883
- inactive: "inactive";
3898
+ export declare const zUpdateContactResponse: z.ZodObject<{
3899
+ type: z.ZodEnum<{
3900
+ business: "business";
3901
+ personal: "personal";
3884
3902
  }>;
3885
- id: z.ZodUUID;
3886
- date_created: z.ZodISODateTime;
3887
- }, z.core.$strip>;
3888
- export declare const zGetUserPath: z.ZodObject<{
3889
- user_id: z.ZodString;
3890
- }, z.core.$strip>;
3891
- /**
3892
- * User profile information
3893
- */
3894
- export declare const zGetUserResponse: z.ZodObject<{
3903
+ company: z.ZodOptional<z.ZodString>;
3904
+ address1: z.ZodOptional<z.ZodString>;
3905
+ address2: z.ZodOptional<z.ZodString>;
3906
+ postalCode: z.ZodOptional<z.ZodString>;
3907
+ city: z.ZodOptional<z.ZodString>;
3908
+ state: z.ZodOptional<z.ZodString>;
3909
+ country: z.ZodOptional<z.ZodString>;
3910
+ phone: z.ZodOptional<z.ZodString>;
3895
3911
  email: z.ZodEmail;
3896
- first_name: z.ZodString;
3897
- last_name: z.ZodString;
3898
- role: z.ZodEnum<{
3899
- Administrator: "Administrator";
3900
- User: "User";
3901
- }>;
3902
- status: z.ZodEnum<{
3903
- active: "active";
3904
- inactive: "inactive";
3905
- }>;
3906
- id: z.ZodUUID;
3907
- date_created: z.ZodISODateTime;
3908
- }, z.core.$strip>;
3909
- export declare const zUpdateUserBody: z.ZodObject<{
3910
- email: z.ZodOptional<z.ZodEmail>;
3911
- first_name: z.ZodOptional<z.ZodString>;
3912
- last_name: z.ZodOptional<z.ZodString>;
3913
- role: z.ZodOptional<z.ZodEnum<{
3914
- Administrator: "Administrator";
3915
- User: "User";
3916
- }>>;
3917
- status: z.ZodOptional<z.ZodEnum<{
3918
- active: "active";
3919
- inactive: "inactive";
3912
+ individual_name: z.ZodString;
3913
+ tax_id: z.ZodOptional<z.ZodString>;
3914
+ tax_id_type: z.ZodOptional<z.ZodEnum<{
3915
+ "": "";
3916
+ ad_nrt: "ad_nrt";
3917
+ ae_trn: "ae_trn";
3918
+ al_tin: "al_tin";
3919
+ am_tin: "am_tin";
3920
+ ao_tin: "ao_tin";
3921
+ ar_cuit: "ar_cuit";
3922
+ at_vat: "at_vat";
3923
+ au_abn: "au_abn";
3924
+ au_arn: "au_arn";
3925
+ ba_tin: "ba_tin";
3926
+ bb_tin: "bb_tin";
3927
+ be_vat: "be_vat";
3928
+ bg_uic: "bg_uic";
3929
+ bg_vat: "bg_vat";
3930
+ bh_vat: "bh_vat";
3931
+ bo_tin: "bo_tin";
3932
+ br_cnpj: "br_cnpj";
3933
+ br_cpf: "br_cpf";
3934
+ bs_tin: "bs_tin";
3935
+ by_tin: "by_tin";
3936
+ ca_bn: "ca_bn";
3937
+ ca_gst_hst: "ca_gst_hst";
3938
+ ca_pst_bc: "ca_pst_bc";
3939
+ ca_pst_mb: "ca_pst_mb";
3940
+ ca_pst_sk: "ca_pst_sk";
3941
+ ca_qst: "ca_qst";
3942
+ cd_nif: "cd_nif";
3943
+ ch_uid: "ch_uid";
3944
+ ch_vat: "ch_vat";
3945
+ cl_tin: "cl_tin";
3946
+ cn_tin: "cn_tin";
3947
+ co_nit: "co_nit";
3948
+ cr_tin: "cr_tin";
3949
+ cy_vat: "cy_vat";
3950
+ cz_vat: "cz_vat";
3951
+ de_stn: "de_stn";
3952
+ de_vat: "de_vat";
3953
+ dk_vat: "dk_vat";
3954
+ do_rcn: "do_rcn";
3955
+ ec_ruc: "ec_ruc";
3956
+ ee_vat: "ee_vat";
3957
+ eg_tin: "eg_tin";
3958
+ es_cif: "es_cif";
3959
+ es_vat: "es_vat";
3960
+ eu_oss_vat: "eu_oss_vat";
3961
+ fi_vat: "fi_vat";
3962
+ fr_vat: "fr_vat";
3963
+ gb_vat: "gb_vat";
3964
+ ge_vat: "ge_vat";
3965
+ gn_nif: "gn_nif";
3966
+ gr_vat: "gr_vat";
3967
+ hk_br: "hk_br";
3968
+ hr_oib: "hr_oib";
3969
+ hr_vat: "hr_vat";
3970
+ hu_tin: "hu_tin";
3971
+ hu_vat: "hu_vat";
3972
+ id_npwp: "id_npwp";
3973
+ ie_vat: "ie_vat";
3974
+ il_vat: "il_vat";
3975
+ in_gst: "in_gst";
3976
+ is_vat: "is_vat";
3977
+ it_vat: "it_vat";
3978
+ jp_cn: "jp_cn";
3979
+ jp_rn: "jp_rn";
3980
+ jp_trn: "jp_trn";
3981
+ ke_pin: "ke_pin";
3982
+ kh_tin: "kh_tin";
3983
+ kr_brn: "kr_brn";
3984
+ kz_bin: "kz_bin";
3985
+ li_uid: "li_uid";
3986
+ li_vat: "li_vat";
3987
+ lt_vat: "lt_vat";
3988
+ lu_vat: "lu_vat";
3989
+ lv_vat: "lv_vat";
3990
+ ma_vat: "ma_vat";
3991
+ md_vat: "md_vat";
3992
+ me_pib: "me_pib";
3993
+ mk_vat: "mk_vat";
3994
+ mr_nif: "mr_nif";
3995
+ mt_vat: "mt_vat";
3996
+ mx_rfc: "mx_rfc";
3997
+ my_frp: "my_frp";
3998
+ my_itn: "my_itn";
3999
+ my_sst: "my_sst";
4000
+ ng_tin: "ng_tin";
4001
+ nl_vat: "nl_vat";
4002
+ no_vat: "no_vat";
4003
+ no_voec: "no_voec";
4004
+ np_pan: "np_pan";
4005
+ nz_gst: "nz_gst";
4006
+ om_vat: "om_vat";
4007
+ pe_ruc: "pe_ruc";
4008
+ ph_tin: "ph_tin";
4009
+ pl_vat: "pl_vat";
4010
+ pt_vat: "pt_vat";
4011
+ ro_tin: "ro_tin";
4012
+ ro_vat: "ro_vat";
4013
+ rs_pib: "rs_pib";
4014
+ ru_inn: "ru_inn";
4015
+ ru_kpp: "ru_kpp";
4016
+ sa_vat: "sa_vat";
4017
+ se_vat: "se_vat";
4018
+ sg_gst: "sg_gst";
4019
+ sg_uen: "sg_uen";
4020
+ si_tin: "si_tin";
4021
+ si_vat: "si_vat";
4022
+ sk_vat: "sk_vat";
4023
+ sn_ninea: "sn_ninea";
4024
+ sr_fin: "sr_fin";
4025
+ sv_nit: "sv_nit";
4026
+ th_vat: "th_vat";
4027
+ tj_tin: "tj_tin";
4028
+ tr_tin: "tr_tin";
4029
+ tw_vat: "tw_vat";
4030
+ tz_vat: "tz_vat";
4031
+ ua_vat: "ua_vat";
4032
+ ug_tin: "ug_tin";
4033
+ us_ein: "us_ein";
4034
+ uy_ruc: "uy_ruc";
4035
+ uz_tin: "uz_tin";
4036
+ uz_vat: "uz_vat";
4037
+ ve_rif: "ve_rif";
4038
+ vn_tin: "vn_tin";
4039
+ xi_vat: "xi_vat";
4040
+ za_vat: "za_vat";
4041
+ zm_tin: "zm_tin";
4042
+ zw_tin: "zw_tin";
3920
4043
  }>>;
3921
4044
  }, z.core.$strip>;
3922
- export declare const zUpdateUserPath: z.ZodObject<{
3923
- user_id: z.ZodString;
3924
- }, z.core.$strip>;
3925
4045
  /**
3926
- * Successfully created. Returns created user details.
4046
+ * An array of the applied promotional credits records.
3927
4047
  */
3928
- export declare const zUpdateUserResponse: z.ZodObject<{
3929
- email: z.ZodEmail;
3930
- first_name: z.ZodString;
3931
- last_name: z.ZodString;
3932
- role: z.ZodEnum<{
3933
- Administrator: "Administrator";
3934
- User: "User";
3935
- }>;
3936
- status: z.ZodEnum<{
3937
- active: "active";
3938
- inactive: "inactive";
4048
+ export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
4049
+ id: z.ZodOptional<z.ZodString>;
4050
+ type: z.ZodEnum<{
4051
+ credit: "credit";
4052
+ discount: "discount";
3939
4053
  }>;
3940
- id: z.ZodUUID;
3941
- date_created: z.ZodISODateTime;
4054
+ date_start: z.ZodISODateTime;
4055
+ date_end: z.ZodOptional<z.ZodISODateTime>;
4056
+ code: z.ZodString;
4057
+ description: z.ZodOptional<z.ZodString>;
4058
+ value_total: z.ZodNumber;
4059
+ value_remaining: z.ZodOptional<z.ZodNumber>;
4060
+ }, z.core.$strip>>;
4061
+ export declare const zRedeemCreditsBody: z.ZodObject<{
4062
+ code: z.ZodOptional<z.ZodString>;
3942
4063
  }, z.core.$strip>;
3943
4064
  //# sourceMappingURL=zod.gen.d.ts.map