@cloudfleet/sdk 0.0.1-bbca6e3 → 0.0.1-bc8a6a1

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
@@ -1,4 +1,20 @@
1
1
  import * as z from 'zod';
2
+ export declare const zBasicPriceConsentInput: z.ZodObject<{
3
+ decision: z.ZodEnum<{
4
+ rejected: "rejected";
5
+ accepted: "accepted";
6
+ }>;
7
+ }, z.core.$strip>;
8
+ export declare const zBasicPriceConsent: z.ZodObject<{
9
+ status: z.ZodEnum<{
10
+ pending: "pending";
11
+ rejected: "rejected";
12
+ accepted: "accepted";
13
+ not_applicable: "not_applicable";
14
+ }>;
15
+ decided_at: z.ZodOptional<z.ZodISODateTime>;
16
+ decided_by: z.ZodOptional<z.ZodString>;
17
+ }, z.core.$strip>;
2
18
  export declare const zBillingContact: z.ZodObject<{
3
19
  type: z.ZodEnum<{
4
20
  business: "business";
@@ -182,14 +198,39 @@ export declare const zChartUpdateInput: z.ZodObject<{
182
198
  values: z.ZodString;
183
199
  version_channel: z.ZodString;
184
200
  }, z.core.$strip>;
201
+ /**
202
+ * Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
203
+ */
185
204
  export declare const zClusterCreateInput: z.ZodObject<{
186
205
  name: z.ZodString;
187
- tier: z.ZodEnum<{
206
+ tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
188
207
  basic: "basic";
208
+ enterprise: "enterprise";
189
209
  pro: "pro";
190
- }>;
191
- region: z.ZodString;
210
+ }>>>;
192
211
  version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
212
+ release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
213
+ stable: "stable";
214
+ rapid: "rapid";
215
+ extended: "extended";
216
+ }>>>;
217
+ features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
218
+ gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
219
+ none: "none";
220
+ mps: "mps";
221
+ time_slicing: "time_slicing";
222
+ }>>>;
223
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
224
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
225
+ }, z.core.$strip>>>;
226
+ region: z.ZodString;
227
+ networking: z.ZodDefault<z.ZodOptional<z.ZodObject<{
228
+ pod_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
229
+ service_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
230
+ dual_stack: z.ZodOptional<z.ZodBoolean>;
231
+ pod_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
232
+ service_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
233
+ }, z.core.$strip>>>;
193
234
  }, z.core.$strip>;
194
235
  export declare const zClusterJoinInformation: z.ZodObject<{
195
236
  certificate_authority: z.ZodString;
@@ -197,6 +238,7 @@ export declare const zClusterJoinInformation: z.ZodObject<{
197
238
  cluster_dns: z.ZodString;
198
239
  pod_cidr: z.ZodString;
199
240
  auth_key: z.ZodString;
241
+ login_server: z.ZodString;
200
242
  bootstrap_token: z.ZodString;
201
243
  versions: z.ZodObject<{
202
244
  kubernetes: z.ZodString;
@@ -210,18 +252,41 @@ export declare const zClusterJoinInformation: z.ZodObject<{
210
252
  gcp_workload_identity_provider: z.ZodString;
211
253
  }, z.core.$strip>;
212
254
  }, z.core.$strip>;
255
+ /**
256
+ * Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
257
+ */
213
258
  export declare const zCluster: z.ZodObject<{
214
259
  name: z.ZodString;
215
- tier: z.ZodEnum<{
260
+ tier: z.ZodDefault<z.ZodEnum<{
216
261
  basic: "basic";
262
+ enterprise: "enterprise";
217
263
  pro: "pro";
218
- }>;
264
+ }>>;
265
+ version_channel: z.ZodDefault<z.ZodString>;
266
+ release_channel: z.ZodDefault<z.ZodEnum<{
267
+ stable: "stable";
268
+ rapid: "rapid";
269
+ extended: "extended";
270
+ }>>;
271
+ features: z.ZodDefault<z.ZodObject<{
272
+ gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
273
+ none: "none";
274
+ mps: "mps";
275
+ time_slicing: "time_slicing";
276
+ }>>;
277
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
278
+ cilium_socket_lb_host_namespace_only: z.ZodBoolean;
279
+ }, z.core.$strip>>;
219
280
  region: z.ZodString;
281
+ networking: z.ZodDefault<z.ZodObject<{
282
+ pod_cidr: z.ZodDefault<z.ZodString>;
283
+ service_cidr: z.ZodDefault<z.ZodString>;
284
+ dual_stack: z.ZodBoolean;
285
+ pod_cidr_v6: z.ZodDefault<z.ZodString>;
286
+ service_cidr_v6: z.ZodDefault<z.ZodString>;
287
+ }, z.core.$strip>>;
220
288
  id: z.ZodUUID;
221
289
  status: z.ZodEnum<{
222
- deleted: "deleted";
223
- failed: "failed";
224
- active: "active";
225
290
  disabled: "disabled";
226
291
  creating: "creating";
227
292
  deployed: "deployed";
@@ -237,17 +302,37 @@ export declare const zCluster: z.ZodObject<{
237
302
  version_current: z.ZodOptional<z.ZodString>;
238
303
  created_at: z.ZodOptional<z.ZodString>;
239
304
  updated_at: z.ZodOptional<z.ZodString>;
240
- ready: z.ZodOptional<z.ZodBoolean>;
241
- version_channel: z.ZodOptional<z.ZodString>;
305
+ ready: z.ZodBoolean;
242
306
  }, z.core.$strip>;
307
+ /**
308
+ * Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
309
+ */
243
310
  export declare const zClusterUpdateInput: z.ZodObject<{
244
- name: z.ZodOptional<z.ZodString>;
245
- tier: z.ZodEnum<{
311
+ name: z.ZodString;
312
+ tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
246
313
  basic: "basic";
314
+ enterprise: "enterprise";
247
315
  pro: "pro";
248
- }>;
249
- version_channel: z.ZodOptional<z.ZodString>;
316
+ }>>>;
317
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
318
+ release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
319
+ stable: "stable";
320
+ rapid: "rapid";
321
+ extended: "extended";
322
+ }>>>;
323
+ features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
324
+ gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
325
+ none: "none";
326
+ mps: "mps";
327
+ time_slicing: "time_slicing";
328
+ }>>>;
329
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
330
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
331
+ }, z.core.$strip>>>;
250
332
  }, z.core.$strip>;
333
+ /**
334
+ * Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
335
+ */
251
336
  export declare const zFleetCreateInput: z.ZodObject<{
252
337
  limits: z.ZodOptional<z.ZodObject<{
253
338
  cpu: z.ZodOptional<z.ZodInt>;
@@ -264,7 +349,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
264
349
  enabled: z.ZodBoolean;
265
350
  controllerRoleArn: z.ZodOptional<z.ZodString>;
266
351
  }, z.core.$strip>>;
267
- constraints: z.ZodOptional<z.ZodObject<{
352
+ constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
268
353
  'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
269
354
  "on-demand": "on-demand";
270
355
  spot: "spot";
@@ -273,7 +358,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
273
358
  amd64: "amd64";
274
359
  arm64: "arm64";
275
360
  }>>>>;
276
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
361
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
277
362
  p3: "p3";
278
363
  cx: "cx";
279
364
  h1: "h1";
@@ -432,8 +517,8 @@ export declare const zFleetCreateInput: z.ZodObject<{
432
517
  x8g: "x8g";
433
518
  z1d: "z1d";
434
519
  z3: "z3";
435
- }>>>;
436
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
520
+ }>>>>;
521
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
437
522
  "africa-south1": "africa-south1";
438
523
  "ap-northeast-1": "ap-northeast-1";
439
524
  "ap-northeast-2": "ap-northeast-2";
@@ -498,14 +583,17 @@ export declare const zFleetCreateInput: z.ZodObject<{
498
583
  "us-west2": "us-west2";
499
584
  "us-west3": "us-west3";
500
585
  "us-west4": "us-west4";
501
- }>>>;
502
- }, z.core.$strip>>;
586
+ }>>>>;
587
+ }, z.core.$strip>>>;
503
588
  scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
504
589
  aggressive: "aggressive";
505
590
  conservative: "conservative";
506
591
  }>>>;
507
592
  id: z.ZodString;
508
593
  }, z.core.$strip>;
594
+ /**
595
+ * Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
596
+ */
509
597
  export declare const zFleet: z.ZodObject<{
510
598
  limits: z.ZodOptional<z.ZodObject<{
511
599
  cpu: z.ZodOptional<z.ZodInt>;
@@ -522,16 +610,16 @@ export declare const zFleet: z.ZodObject<{
522
610
  enabled: z.ZodBoolean;
523
611
  controllerRoleArn: z.ZodOptional<z.ZodString>;
524
612
  }, z.core.$strip>>;
525
- constraints: z.ZodOptional<z.ZodObject<{
526
- 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
613
+ constraints: z.ZodDefault<z.ZodObject<{
614
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
527
615
  "on-demand": "on-demand";
528
616
  spot: "spot";
529
- }>>>>;
530
- 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
617
+ }>>>;
618
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
531
619
  amd64: "amd64";
532
620
  arm64: "arm64";
533
- }>>>>;
534
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
621
+ }>>>;
622
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
535
623
  p3: "p3";
536
624
  cx: "cx";
537
625
  h1: "h1";
@@ -690,8 +778,8 @@ export declare const zFleet: z.ZodObject<{
690
778
  x8g: "x8g";
691
779
  z1d: "z1d";
692
780
  z3: "z3";
693
- }>>>;
694
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
781
+ }>>>>;
782
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
695
783
  "africa-south1": "africa-south1";
696
784
  "ap-northeast-1": "ap-northeast-1";
697
785
  "ap-northeast-2": "ap-northeast-2";
@@ -756,14 +844,21 @@ export declare const zFleet: z.ZodObject<{
756
844
  "us-west2": "us-west2";
757
845
  "us-west3": "us-west3";
758
846
  "us-west4": "us-west4";
759
- }>>>;
847
+ }>>>>;
760
848
  }, z.core.$strip>>;
761
849
  scalingProfile: z.ZodDefault<z.ZodEnum<{
762
850
  aggressive: "aggressive";
763
851
  conservative: "conservative";
764
852
  }>>;
765
853
  id: z.ZodString;
854
+ ready: z.ZodBoolean;
855
+ status_message: z.ZodOptional<z.ZodString>;
856
+ created_at: z.ZodString;
857
+ updated_at: z.ZodString;
766
858
  }, z.core.$strip>;
859
+ /**
860
+ * Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
861
+ */
767
862
  export declare const zFleetUpdateInput: z.ZodObject<{
768
863
  limits: z.ZodOptional<z.ZodObject<{
769
864
  cpu: z.ZodOptional<z.ZodInt>;
@@ -780,16 +875,16 @@ export declare const zFleetUpdateInput: z.ZodObject<{
780
875
  enabled: z.ZodBoolean;
781
876
  controllerRoleArn: z.ZodOptional<z.ZodString>;
782
877
  }, z.core.$strip>>;
783
- constraints: z.ZodOptional<z.ZodObject<{
784
- 'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
878
+ constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
879
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
785
880
  "on-demand": "on-demand";
786
881
  spot: "spot";
787
- }>>>;
788
- 'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
882
+ }>>>>;
883
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
789
884
  amd64: "amd64";
790
885
  arm64: "arm64";
791
- }>>>;
792
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
886
+ }>>>>;
887
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
793
888
  p3: "p3";
794
889
  cx: "cx";
795
890
  h1: "h1";
@@ -948,8 +1043,8 @@ export declare const zFleetUpdateInput: z.ZodObject<{
948
1043
  x8g: "x8g";
949
1044
  z1d: "z1d";
950
1045
  z3: "z3";
951
- }>>>;
952
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
1046
+ }>>>>;
1047
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
953
1048
  "africa-south1": "africa-south1";
954
1049
  "ap-northeast-1": "ap-northeast-1";
955
1050
  "ap-northeast-2": "ap-northeast-2";
@@ -1014,12 +1109,12 @@ export declare const zFleetUpdateInput: z.ZodObject<{
1014
1109
  "us-west2": "us-west2";
1015
1110
  "us-west3": "us-west3";
1016
1111
  "us-west4": "us-west4";
1017
- }>>>;
1018
- }, z.core.$strip>>;
1019
- scalingProfile: z.ZodEnum<{
1112
+ }>>>>;
1113
+ }, z.core.$strip>>>;
1114
+ scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1020
1115
  aggressive: "aggressive";
1021
1116
  conservative: "conservative";
1022
- }>;
1117
+ }>>>;
1023
1118
  }, z.core.$strip>;
1024
1119
  export declare const zInviteCreateInput: z.ZodObject<{
1025
1120
  email: z.ZodEmail;
@@ -1103,6 +1198,8 @@ export declare const zOrganization: z.ZodObject<{
1103
1198
  basic_clusters_available: z.ZodInt;
1104
1199
  pro_clusters_max: z.ZodInt;
1105
1200
  pro_clusters_available: z.ZodInt;
1201
+ enterprise_clusters_max: z.ZodInt;
1202
+ enterprise_clusters_available: z.ZodInt;
1106
1203
  fleets_max: z.ZodInt;
1107
1204
  cluster_tiers: z.ZodArray<z.ZodString>;
1108
1205
  regions: z.ZodArray<z.ZodString>;
@@ -1144,6 +1241,8 @@ export declare const zPlatformQuota: z.ZodObject<{
1144
1241
  basic_clusters_available: z.ZodInt;
1145
1242
  pro_clusters_max: z.ZodInt;
1146
1243
  pro_clusters_available: z.ZodInt;
1244
+ enterprise_clusters_max: z.ZodInt;
1245
+ enterprise_clusters_available: z.ZodInt;
1147
1246
  fleets_max: z.ZodInt;
1148
1247
  cluster_tiers: z.ZodArray<z.ZodString>;
1149
1248
  regions: z.ZodArray<z.ZodString>;
@@ -1214,42 +1313,6 @@ export declare const zTicketCreateInput: z.ZodObject<{
1214
1313
  body: z.ZodString;
1215
1314
  properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1216
1315
  }, z.core.$strip>;
1217
- export declare const zTicketListResponse: z.ZodObject<{
1218
- items: z.ZodArray<z.ZodObject<{
1219
- id: z.ZodString;
1220
- status: z.ZodEnum<{
1221
- closed: "closed";
1222
- waiting_on_us: "waiting_on_us";
1223
- waiting_on_user: "waiting_on_user";
1224
- }>;
1225
- category: z.ZodEnum<{
1226
- billing: "billing";
1227
- technical: "technical";
1228
- general: "general";
1229
- }>;
1230
- summary: z.ZodString;
1231
- closed_at: z.ZodOptional<z.ZodISODateTime>;
1232
- date_created: z.ZodISODateTime;
1233
- date_updated: z.ZodISODateTime;
1234
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1235
- id: z.ZodString;
1236
- type: z.ZodEnum<{
1237
- customer_reply: "customer_reply";
1238
- agent_reply: "agent_reply";
1239
- }>;
1240
- body: z.ZodString;
1241
- author_first_name: z.ZodOptional<z.ZodString>;
1242
- author_last_name: z.ZodOptional<z.ZodString>;
1243
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1244
- id: z.ZodString;
1245
- filename: z.ZodString;
1246
- content_type: z.ZodString;
1247
- size: z.ZodInt;
1248
- }, z.core.$strip>>>;
1249
- date_created: z.ZodISODateTime;
1250
- }, z.core.$strip>>>;
1251
- }, z.core.$strip>>;
1252
- }, z.core.$strip>;
1253
1316
  export declare const zTicketMessageInput: z.ZodObject<{
1254
1317
  body: z.ZodString;
1255
1318
  }, z.core.$strip>;
@@ -1330,26 +1393,58 @@ export declare const zTokenUpdateInput: z.ZodObject<{
1330
1393
  }, z.core.$strip>;
1331
1394
  export declare const zUsageFacets: z.ZodObject<{
1332
1395
  cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
1333
- product: z.ZodOptional<z.ZodArray<z.ZodString>>;
1396
+ product: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1397
+ cfke_controlplane_basic: "cfke_controlplane_basic";
1398
+ cfke_controlplane_pro: "cfke_controlplane_pro";
1399
+ cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
1400
+ cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
1401
+ cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
1402
+ cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
1403
+ cfcr_storage: "cfcr_storage";
1404
+ }>>>;
1334
1405
  }, z.core.$strip>;
1335
1406
  export declare const zUsageResponse: z.ZodObject<{
1336
1407
  data: z.ZodArray<z.ZodObject<{
1337
1408
  hour: z.ZodString;
1338
1409
  cluster_id: z.ZodString;
1339
- product: z.ZodString;
1410
+ product: z.ZodEnum<{
1411
+ cfke_controlplane_basic: "cfke_controlplane_basic";
1412
+ cfke_controlplane_pro: "cfke_controlplane_pro";
1413
+ cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
1414
+ cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
1415
+ cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
1416
+ cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
1417
+ cfcr_storage: "cfcr_storage";
1418
+ }>;
1340
1419
  value: z.ZodNumber;
1341
1420
  price: z.ZodNumber;
1342
1421
  total: z.ZodNumber;
1343
1422
  }, z.core.$strip>>;
1344
1423
  facets: z.ZodObject<{
1345
1424
  cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
1346
- product: z.ZodOptional<z.ZodArray<z.ZodString>>;
1425
+ product: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1426
+ cfke_controlplane_basic: "cfke_controlplane_basic";
1427
+ cfke_controlplane_pro: "cfke_controlplane_pro";
1428
+ cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
1429
+ cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
1430
+ cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
1431
+ cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
1432
+ cfcr_storage: "cfcr_storage";
1433
+ }>>>;
1347
1434
  }, z.core.$strip>;
1348
1435
  }, z.core.$strip>;
1349
1436
  export declare const zUsage: z.ZodObject<{
1350
1437
  hour: z.ZodString;
1351
1438
  cluster_id: z.ZodString;
1352
- product: z.ZodString;
1439
+ product: z.ZodEnum<{
1440
+ cfke_controlplane_basic: "cfke_controlplane_basic";
1441
+ cfke_controlplane_pro: "cfke_controlplane_pro";
1442
+ cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
1443
+ cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
1444
+ cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
1445
+ cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
1446
+ cfcr_storage: "cfcr_storage";
1447
+ }>;
1353
1448
  value: z.ZodNumber;
1354
1449
  price: z.ZodNumber;
1355
1450
  total: z.ZodNumber;
@@ -1389,630 +1484,693 @@ export declare const zUserUpdateInput: z.ZodObject<{
1389
1484
  inactive: "inactive";
1390
1485
  }>>;
1391
1486
  }, z.core.$strip>;
1392
- export declare const zGetUsageQuery: z.ZodObject<{
1393
- granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1394
- hourly: "hourly";
1395
- daily: "daily";
1396
- monthly: "monthly";
1397
- }>>>;
1487
+ export declare const zListUserOrganizationsPath: z.ZodObject<{
1488
+ email: z.ZodString;
1398
1489
  }, z.core.$strip>;
1399
1490
  /**
1400
- * Usage data with facets for filtering
1491
+ * An array of organizations the user belongs to.
1401
1492
  */
1402
- export declare const zGetUsageResponse: z.ZodObject<{
1403
- data: z.ZodArray<z.ZodObject<{
1404
- hour: z.ZodString;
1405
- cluster_id: z.ZodString;
1406
- product: z.ZodString;
1407
- value: z.ZodNumber;
1408
- price: z.ZodNumber;
1409
- total: z.ZodNumber;
1410
- }, z.core.$strip>>;
1411
- facets: z.ZodObject<{
1412
- cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
1413
- product: z.ZodOptional<z.ZodArray<z.ZodString>>;
1414
- }, z.core.$strip>;
1493
+ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
1494
+ realm: z.ZodOptional<z.ZodString>;
1495
+ displayName: z.ZodOptional<z.ZodString>;
1496
+ }, z.core.$strip>>;
1497
+ /**
1498
+ * An array of users
1499
+ */
1500
+ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
1501
+ email: z.ZodEmail;
1502
+ first_name: z.ZodString;
1503
+ last_name: z.ZodString;
1504
+ role: z.ZodEnum<{
1505
+ Administrator: "Administrator";
1506
+ User: "User";
1507
+ }>;
1508
+ status: z.ZodEnum<{
1509
+ active: "active";
1510
+ inactive: "inactive";
1511
+ }>;
1512
+ id: z.ZodUUID;
1513
+ date_created: z.ZodISODateTime;
1514
+ }, z.core.$strip>>;
1515
+ export declare const zCreateUserBody: z.ZodObject<{
1516
+ email: z.ZodEmail;
1517
+ first_name: z.ZodString;
1518
+ last_name: z.ZodString;
1519
+ code: z.ZodString;
1520
+ password: z.ZodString;
1415
1521
  }, z.core.$strip>;
1416
1522
  /**
1417
- * 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.
1418
- *
1523
+ * Successfully created. Returns created user details.
1419
1524
  */
1420
- export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
1421
- id: z.ZodOptional<z.ZodString>;
1525
+ export declare const zCreateUserResponse: z.ZodObject<{
1526
+ email: z.ZodEmail;
1527
+ first_name: z.ZodString;
1528
+ last_name: z.ZodString;
1529
+ role: z.ZodEnum<{
1530
+ Administrator: "Administrator";
1531
+ User: "User";
1532
+ }>;
1533
+ status: z.ZodEnum<{
1534
+ active: "active";
1535
+ inactive: "inactive";
1536
+ }>;
1537
+ id: z.ZodUUID;
1538
+ date_created: z.ZodISODateTime;
1539
+ }, z.core.$strip>;
1540
+ export declare const zDeleteUserPath: z.ZodObject<{
1541
+ user_id: z.ZodString;
1422
1542
  }, z.core.$strip>;
1423
1543
  /**
1424
- * An array of payment methods.
1544
+ * User profile information
1425
1545
  */
1426
- export declare const zListPaymentMethodsResponse: z.ZodArray<z.ZodObject<{
1427
- id: z.ZodString;
1428
- type: z.ZodEnum<{
1429
- card: "card";
1430
- sepa_debit: "sepa_debit";
1431
- bank_transfer: "bank_transfer";
1546
+ export declare const zDeleteUserResponse: z.ZodObject<{
1547
+ email: z.ZodEmail;
1548
+ first_name: z.ZodString;
1549
+ last_name: z.ZodString;
1550
+ role: z.ZodEnum<{
1551
+ Administrator: "Administrator";
1552
+ User: "User";
1432
1553
  }>;
1433
- last4: z.ZodString;
1434
- exp_month: z.ZodInt;
1435
- exp_year: z.ZodInt;
1436
- brand: z.ZodString;
1437
- iban: z.ZodString;
1438
- bic: z.ZodString;
1439
- account_holder_name: z.ZodString;
1440
- is_default: z.ZodBoolean;
1441
- }, z.core.$strip>>;
1442
- export declare const zSetDefaultPaymentMethodPath: z.ZodObject<{
1443
- paymentMethodId: z.ZodString;
1554
+ status: z.ZodEnum<{
1555
+ active: "active";
1556
+ inactive: "inactive";
1557
+ }>;
1558
+ id: z.ZodUUID;
1559
+ date_created: z.ZodISODateTime;
1560
+ }, z.core.$strip>;
1561
+ export declare const zGetUserPath: z.ZodObject<{
1562
+ user_id: z.ZodString;
1444
1563
  }, z.core.$strip>;
1445
1564
  /**
1446
- * Default payment method updated.
1565
+ * User profile information
1447
1566
  */
1448
- export declare const zSetDefaultPaymentMethodResponse: z.ZodVoid;
1449
- export declare const zDeletePaymentMethodPath: z.ZodObject<{
1450
- paymentMethodId: z.ZodString;
1567
+ export declare const zGetUserResponse: z.ZodObject<{
1568
+ email: z.ZodEmail;
1569
+ first_name: z.ZodString;
1570
+ last_name: z.ZodString;
1571
+ role: z.ZodEnum<{
1572
+ Administrator: "Administrator";
1573
+ User: "User";
1574
+ }>;
1575
+ status: z.ZodEnum<{
1576
+ active: "active";
1577
+ inactive: "inactive";
1578
+ }>;
1579
+ id: z.ZodUUID;
1580
+ date_created: z.ZodISODateTime;
1581
+ }, z.core.$strip>;
1582
+ export declare const zUpdateUserBody: z.ZodObject<{
1583
+ email: z.ZodOptional<z.ZodEmail>;
1584
+ first_name: z.ZodOptional<z.ZodString>;
1585
+ last_name: z.ZodOptional<z.ZodString>;
1586
+ role: z.ZodOptional<z.ZodEnum<{
1587
+ Administrator: "Administrator";
1588
+ User: "User";
1589
+ }>>;
1590
+ status: z.ZodOptional<z.ZodEnum<{
1591
+ active: "active";
1592
+ inactive: "inactive";
1593
+ }>>;
1594
+ }, z.core.$strip>;
1595
+ export declare const zUpdateUserPath: z.ZodObject<{
1596
+ user_id: z.ZodString;
1451
1597
  }, z.core.$strip>;
1452
1598
  /**
1453
- * Payment method deleted.
1599
+ * Successfully created. Returns created user details.
1454
1600
  */
1455
- export declare const zDeletePaymentMethodResponse: z.ZodVoid;
1601
+ export declare const zUpdateUserResponse: z.ZodObject<{
1602
+ email: z.ZodEmail;
1603
+ first_name: z.ZodString;
1604
+ last_name: z.ZodString;
1605
+ role: z.ZodEnum<{
1606
+ Administrator: "Administrator";
1607
+ User: "User";
1608
+ }>;
1609
+ status: z.ZodEnum<{
1610
+ active: "active";
1611
+ inactive: "inactive";
1612
+ }>;
1613
+ id: z.ZodUUID;
1614
+ date_created: z.ZodISODateTime;
1615
+ }, z.core.$strip>;
1456
1616
  /**
1457
- * An array of usage records.
1617
+ * Returns a list of access token details with masked secrets.
1458
1618
  */
1459
- export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
1619
+ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
1620
+ name: z.ZodString;
1621
+ role: z.ZodEnum<{
1622
+ Administrator: "Administrator";
1623
+ User: "User";
1624
+ }>;
1460
1625
  id: z.ZodOptional<z.ZodString>;
1461
- number: z.ZodOptional<z.ZodString>;
1462
- status: z.ZodOptional<z.ZodString>;
1463
- total: z.ZodOptional<z.ZodNumber>;
1464
- currency: z.ZodOptional<z.ZodString>;
1465
- created: z.ZodISODateTime;
1466
- period_start: z.ZodISODateTime;
1467
- period_end: z.ZodISODateTime;
1468
- invoice_pdf: z.ZodOptional<z.ZodString>;
1626
+ secret: z.ZodOptional<z.ZodString>;
1627
+ date_created: z.ZodISODateTime;
1469
1628
  }, z.core.$strip>>;
1629
+ export declare const zCreateTokenBody: z.ZodObject<{
1630
+ name: z.ZodString;
1631
+ role: z.ZodEnum<{
1632
+ Administrator: "Administrator";
1633
+ User: "User";
1634
+ }>;
1635
+ }, z.core.$strip>;
1470
1636
  /**
1471
- * Returns a single object containing organization contact and billing address details.
1637
+ * Successfully created. Returns created token details with unmasked/raw secret.
1472
1638
  */
1473
- export declare const zGetContactResponse: z.ZodObject<{
1474
- type: z.ZodEnum<{
1475
- business: "business";
1476
- personal: "personal";
1639
+ export declare const zCreateTokenResponse: z.ZodObject<{
1640
+ name: z.ZodString;
1641
+ role: z.ZodEnum<{
1642
+ Administrator: "Administrator";
1643
+ User: "User";
1477
1644
  }>;
1478
- company: z.ZodOptional<z.ZodString>;
1479
- address1: z.ZodOptional<z.ZodString>;
1480
- address2: z.ZodOptional<z.ZodString>;
1481
- postalCode: z.ZodOptional<z.ZodString>;
1482
- city: z.ZodOptional<z.ZodString>;
1483
- state: z.ZodOptional<z.ZodString>;
1484
- country: z.ZodOptional<z.ZodString>;
1485
- phone: z.ZodOptional<z.ZodString>;
1486
- email: z.ZodEmail;
1487
- individual_name: z.ZodString;
1488
- tax_id: z.ZodOptional<z.ZodString>;
1489
- tax_id_type: z.ZodOptional<z.ZodEnum<{
1490
- "": "";
1491
- ad_nrt: "ad_nrt";
1492
- ae_trn: "ae_trn";
1493
- al_tin: "al_tin";
1494
- am_tin: "am_tin";
1495
- ao_tin: "ao_tin";
1496
- ar_cuit: "ar_cuit";
1497
- at_vat: "at_vat";
1498
- au_abn: "au_abn";
1499
- au_arn: "au_arn";
1500
- ba_tin: "ba_tin";
1501
- bb_tin: "bb_tin";
1502
- be_vat: "be_vat";
1503
- bg_uic: "bg_uic";
1504
- bg_vat: "bg_vat";
1505
- bh_vat: "bh_vat";
1506
- bo_tin: "bo_tin";
1507
- br_cnpj: "br_cnpj";
1508
- br_cpf: "br_cpf";
1509
- bs_tin: "bs_tin";
1510
- by_tin: "by_tin";
1511
- ca_bn: "ca_bn";
1512
- ca_gst_hst: "ca_gst_hst";
1513
- ca_pst_bc: "ca_pst_bc";
1514
- ca_pst_mb: "ca_pst_mb";
1515
- ca_pst_sk: "ca_pst_sk";
1516
- ca_qst: "ca_qst";
1517
- cd_nif: "cd_nif";
1518
- ch_uid: "ch_uid";
1519
- ch_vat: "ch_vat";
1520
- cl_tin: "cl_tin";
1521
- cn_tin: "cn_tin";
1522
- co_nit: "co_nit";
1523
- cr_tin: "cr_tin";
1524
- cy_vat: "cy_vat";
1525
- cz_vat: "cz_vat";
1526
- de_stn: "de_stn";
1527
- de_vat: "de_vat";
1528
- dk_vat: "dk_vat";
1529
- do_rcn: "do_rcn";
1530
- ec_ruc: "ec_ruc";
1531
- ee_vat: "ee_vat";
1532
- eg_tin: "eg_tin";
1533
- es_cif: "es_cif";
1534
- es_vat: "es_vat";
1535
- eu_oss_vat: "eu_oss_vat";
1536
- fi_vat: "fi_vat";
1537
- fr_vat: "fr_vat";
1538
- gb_vat: "gb_vat";
1539
- ge_vat: "ge_vat";
1540
- gn_nif: "gn_nif";
1541
- gr_vat: "gr_vat";
1542
- hk_br: "hk_br";
1543
- hr_oib: "hr_oib";
1544
- hr_vat: "hr_vat";
1545
- hu_tin: "hu_tin";
1546
- hu_vat: "hu_vat";
1547
- id_npwp: "id_npwp";
1548
- ie_vat: "ie_vat";
1549
- il_vat: "il_vat";
1550
- in_gst: "in_gst";
1551
- is_vat: "is_vat";
1552
- it_vat: "it_vat";
1553
- jp_cn: "jp_cn";
1554
- jp_rn: "jp_rn";
1555
- jp_trn: "jp_trn";
1556
- ke_pin: "ke_pin";
1557
- kh_tin: "kh_tin";
1558
- kr_brn: "kr_brn";
1559
- kz_bin: "kz_bin";
1560
- li_uid: "li_uid";
1561
- li_vat: "li_vat";
1562
- lt_vat: "lt_vat";
1563
- lu_vat: "lu_vat";
1564
- lv_vat: "lv_vat";
1565
- ma_vat: "ma_vat";
1566
- md_vat: "md_vat";
1567
- me_pib: "me_pib";
1568
- mk_vat: "mk_vat";
1569
- mr_nif: "mr_nif";
1570
- mt_vat: "mt_vat";
1571
- mx_rfc: "mx_rfc";
1572
- my_frp: "my_frp";
1573
- my_itn: "my_itn";
1574
- my_sst: "my_sst";
1575
- ng_tin: "ng_tin";
1576
- nl_vat: "nl_vat";
1577
- no_vat: "no_vat";
1578
- no_voec: "no_voec";
1579
- np_pan: "np_pan";
1580
- nz_gst: "nz_gst";
1581
- om_vat: "om_vat";
1582
- pe_ruc: "pe_ruc";
1583
- ph_tin: "ph_tin";
1584
- pl_vat: "pl_vat";
1585
- pt_vat: "pt_vat";
1586
- ro_tin: "ro_tin";
1587
- ro_vat: "ro_vat";
1588
- rs_pib: "rs_pib";
1589
- ru_inn: "ru_inn";
1590
- ru_kpp: "ru_kpp";
1591
- sa_vat: "sa_vat";
1592
- se_vat: "se_vat";
1593
- sg_gst: "sg_gst";
1594
- sg_uen: "sg_uen";
1595
- si_tin: "si_tin";
1596
- si_vat: "si_vat";
1597
- sk_vat: "sk_vat";
1598
- sn_ninea: "sn_ninea";
1599
- sr_fin: "sr_fin";
1600
- sv_nit: "sv_nit";
1601
- th_vat: "th_vat";
1602
- tj_tin: "tj_tin";
1603
- tr_tin: "tr_tin";
1604
- tw_vat: "tw_vat";
1605
- tz_vat: "tz_vat";
1606
- ua_vat: "ua_vat";
1607
- ug_tin: "ug_tin";
1608
- us_ein: "us_ein";
1609
- uy_ruc: "uy_ruc";
1610
- uz_tin: "uz_tin";
1611
- uz_vat: "uz_vat";
1612
- ve_rif: "ve_rif";
1613
- vn_tin: "vn_tin";
1614
- xi_vat: "xi_vat";
1615
- za_vat: "za_vat";
1616
- zm_tin: "zm_tin";
1617
- zw_tin: "zw_tin";
1645
+ id: z.ZodOptional<z.ZodString>;
1646
+ secret: z.ZodOptional<z.ZodString>;
1647
+ date_created: z.ZodISODateTime;
1648
+ }, z.core.$strip>;
1649
+ export declare const zDeleteTokenPath: z.ZodObject<{
1650
+ token_id: z.ZodString;
1651
+ }, z.core.$strip>;
1652
+ export declare const zGetTokenPath: z.ZodObject<{
1653
+ token_id: z.ZodString;
1654
+ }, z.core.$strip>;
1655
+ /**
1656
+ * Returns access token details with masked secret.
1657
+ */
1658
+ export declare const zGetTokenResponse: z.ZodObject<{
1659
+ name: z.ZodString;
1660
+ role: z.ZodEnum<{
1661
+ Administrator: "Administrator";
1662
+ User: "User";
1663
+ }>;
1664
+ id: z.ZodOptional<z.ZodString>;
1665
+ secret: z.ZodOptional<z.ZodString>;
1666
+ date_created: z.ZodISODateTime;
1667
+ }, z.core.$strip>;
1668
+ export declare const zUpdateTokenBody: z.ZodObject<{
1669
+ name: z.ZodOptional<z.ZodString>;
1670
+ role: z.ZodOptional<z.ZodEnum<{
1671
+ Administrator: "Administrator";
1672
+ User: "User";
1618
1673
  }>>;
1619
1674
  }, z.core.$strip>;
1620
- export declare const zUpdateContactBody: z.ZodObject<{
1621
- type: z.ZodEnum<{
1622
- business: "business";
1623
- personal: "personal";
1675
+ export declare const zUpdateTokenPath: z.ZodObject<{
1676
+ token_id: z.ZodString;
1677
+ }, z.core.$strip>;
1678
+ /**
1679
+ * Successfully updated. Returns updated token details with masked secret.
1680
+ */
1681
+ export declare const zUpdateTokenResponse: z.ZodObject<{
1682
+ name: z.ZodString;
1683
+ role: z.ZodEnum<{
1684
+ Administrator: "Administrator";
1685
+ User: "User";
1624
1686
  }>;
1625
- company: z.ZodOptional<z.ZodString>;
1626
- address1: z.ZodOptional<z.ZodString>;
1627
- address2: z.ZodOptional<z.ZodString>;
1628
- postalCode: z.ZodOptional<z.ZodString>;
1629
- city: z.ZodOptional<z.ZodString>;
1630
- state: z.ZodOptional<z.ZodString>;
1631
- country: z.ZodOptional<z.ZodString>;
1632
- phone: z.ZodOptional<z.ZodString>;
1633
- email: z.ZodEmail;
1634
- individual_name: z.ZodString;
1635
- tax_id: z.ZodOptional<z.ZodString>;
1636
- tax_id_type: z.ZodOptional<z.ZodEnum<{
1637
- "": "";
1638
- ad_nrt: "ad_nrt";
1639
- ae_trn: "ae_trn";
1640
- al_tin: "al_tin";
1641
- am_tin: "am_tin";
1642
- ao_tin: "ao_tin";
1643
- ar_cuit: "ar_cuit";
1644
- at_vat: "at_vat";
1645
- au_abn: "au_abn";
1646
- au_arn: "au_arn";
1647
- ba_tin: "ba_tin";
1648
- bb_tin: "bb_tin";
1649
- be_vat: "be_vat";
1650
- bg_uic: "bg_uic";
1651
- bg_vat: "bg_vat";
1652
- bh_vat: "bh_vat";
1653
- bo_tin: "bo_tin";
1654
- br_cnpj: "br_cnpj";
1655
- br_cpf: "br_cpf";
1656
- bs_tin: "bs_tin";
1657
- by_tin: "by_tin";
1658
- ca_bn: "ca_bn";
1659
- ca_gst_hst: "ca_gst_hst";
1660
- ca_pst_bc: "ca_pst_bc";
1661
- ca_pst_mb: "ca_pst_mb";
1662
- ca_pst_sk: "ca_pst_sk";
1663
- ca_qst: "ca_qst";
1664
- cd_nif: "cd_nif";
1665
- ch_uid: "ch_uid";
1666
- ch_vat: "ch_vat";
1667
- cl_tin: "cl_tin";
1668
- cn_tin: "cn_tin";
1669
- co_nit: "co_nit";
1670
- cr_tin: "cr_tin";
1671
- cy_vat: "cy_vat";
1672
- cz_vat: "cz_vat";
1673
- de_stn: "de_stn";
1674
- de_vat: "de_vat";
1675
- dk_vat: "dk_vat";
1676
- do_rcn: "do_rcn";
1677
- ec_ruc: "ec_ruc";
1678
- ee_vat: "ee_vat";
1679
- eg_tin: "eg_tin";
1680
- es_cif: "es_cif";
1681
- es_vat: "es_vat";
1682
- eu_oss_vat: "eu_oss_vat";
1683
- fi_vat: "fi_vat";
1684
- fr_vat: "fr_vat";
1685
- gb_vat: "gb_vat";
1686
- ge_vat: "ge_vat";
1687
- gn_nif: "gn_nif";
1688
- gr_vat: "gr_vat";
1689
- hk_br: "hk_br";
1690
- hr_oib: "hr_oib";
1691
- hr_vat: "hr_vat";
1692
- hu_tin: "hu_tin";
1693
- hu_vat: "hu_vat";
1694
- id_npwp: "id_npwp";
1695
- ie_vat: "ie_vat";
1696
- il_vat: "il_vat";
1697
- in_gst: "in_gst";
1698
- is_vat: "is_vat";
1699
- it_vat: "it_vat";
1700
- jp_cn: "jp_cn";
1701
- jp_rn: "jp_rn";
1702
- jp_trn: "jp_trn";
1703
- ke_pin: "ke_pin";
1704
- kh_tin: "kh_tin";
1705
- kr_brn: "kr_brn";
1706
- kz_bin: "kz_bin";
1707
- li_uid: "li_uid";
1708
- li_vat: "li_vat";
1709
- lt_vat: "lt_vat";
1710
- lu_vat: "lu_vat";
1711
- lv_vat: "lv_vat";
1712
- ma_vat: "ma_vat";
1713
- md_vat: "md_vat";
1714
- me_pib: "me_pib";
1715
- mk_vat: "mk_vat";
1716
- mr_nif: "mr_nif";
1717
- mt_vat: "mt_vat";
1718
- mx_rfc: "mx_rfc";
1719
- my_frp: "my_frp";
1720
- my_itn: "my_itn";
1721
- my_sst: "my_sst";
1722
- ng_tin: "ng_tin";
1723
- nl_vat: "nl_vat";
1724
- no_vat: "no_vat";
1725
- no_voec: "no_voec";
1726
- np_pan: "np_pan";
1727
- nz_gst: "nz_gst";
1728
- om_vat: "om_vat";
1729
- pe_ruc: "pe_ruc";
1730
- ph_tin: "ph_tin";
1731
- pl_vat: "pl_vat";
1732
- pt_vat: "pt_vat";
1733
- ro_tin: "ro_tin";
1734
- ro_vat: "ro_vat";
1735
- rs_pib: "rs_pib";
1736
- ru_inn: "ru_inn";
1737
- ru_kpp: "ru_kpp";
1738
- sa_vat: "sa_vat";
1739
- se_vat: "se_vat";
1740
- sg_gst: "sg_gst";
1741
- sg_uen: "sg_uen";
1742
- si_tin: "si_tin";
1743
- si_vat: "si_vat";
1744
- sk_vat: "sk_vat";
1745
- sn_ninea: "sn_ninea";
1746
- sr_fin: "sr_fin";
1747
- sv_nit: "sv_nit";
1748
- th_vat: "th_vat";
1749
- tj_tin: "tj_tin";
1750
- tr_tin: "tr_tin";
1751
- tw_vat: "tw_vat";
1752
- tz_vat: "tz_vat";
1753
- ua_vat: "ua_vat";
1754
- ug_tin: "ug_tin";
1755
- us_ein: "us_ein";
1756
- uy_ruc: "uy_ruc";
1757
- uz_tin: "uz_tin";
1758
- uz_vat: "uz_vat";
1759
- ve_rif: "ve_rif";
1760
- vn_tin: "vn_tin";
1761
- xi_vat: "xi_vat";
1762
- za_vat: "za_vat";
1763
- zm_tin: "zm_tin";
1764
- zw_tin: "zw_tin";
1765
- }>>;
1687
+ id: z.ZodOptional<z.ZodString>;
1688
+ secret: z.ZodOptional<z.ZodString>;
1689
+ date_created: z.ZodISODateTime;
1690
+ }, z.core.$strip>;
1691
+ export declare const zRegenerateTokenPath: z.ZodObject<{
1692
+ token_id: z.ZodString;
1766
1693
  }, z.core.$strip>;
1767
1694
  /**
1768
- * Successfully updated. Returns updated organization details.
1695
+ * Successfully updated. Returns updated token details with unmasked / raw secret.
1769
1696
  */
1770
- export declare const zUpdateContactResponse: z.ZodObject<{
1771
- type: z.ZodEnum<{
1772
- business: "business";
1773
- personal: "personal";
1697
+ export declare const zRegenerateTokenResponse: z.ZodObject<{
1698
+ name: z.ZodString;
1699
+ role: z.ZodEnum<{
1700
+ Administrator: "Administrator";
1701
+ User: "User";
1774
1702
  }>;
1775
- company: z.ZodOptional<z.ZodString>;
1776
- address1: z.ZodOptional<z.ZodString>;
1777
- address2: z.ZodOptional<z.ZodString>;
1778
- postalCode: z.ZodOptional<z.ZodString>;
1779
- city: z.ZodOptional<z.ZodString>;
1780
- state: z.ZodOptional<z.ZodString>;
1781
- country: z.ZodOptional<z.ZodString>;
1782
- phone: z.ZodOptional<z.ZodString>;
1783
- email: z.ZodEmail;
1784
- individual_name: z.ZodString;
1785
- tax_id: z.ZodOptional<z.ZodString>;
1786
- tax_id_type: z.ZodOptional<z.ZodEnum<{
1787
- "": "";
1788
- ad_nrt: "ad_nrt";
1789
- ae_trn: "ae_trn";
1790
- al_tin: "al_tin";
1791
- am_tin: "am_tin";
1792
- ao_tin: "ao_tin";
1793
- ar_cuit: "ar_cuit";
1794
- at_vat: "at_vat";
1795
- au_abn: "au_abn";
1796
- au_arn: "au_arn";
1797
- ba_tin: "ba_tin";
1798
- bb_tin: "bb_tin";
1799
- be_vat: "be_vat";
1800
- bg_uic: "bg_uic";
1801
- bg_vat: "bg_vat";
1802
- bh_vat: "bh_vat";
1803
- bo_tin: "bo_tin";
1804
- br_cnpj: "br_cnpj";
1805
- br_cpf: "br_cpf";
1806
- bs_tin: "bs_tin";
1807
- by_tin: "by_tin";
1808
- ca_bn: "ca_bn";
1809
- ca_gst_hst: "ca_gst_hst";
1810
- ca_pst_bc: "ca_pst_bc";
1811
- ca_pst_mb: "ca_pst_mb";
1812
- ca_pst_sk: "ca_pst_sk";
1813
- ca_qst: "ca_qst";
1814
- cd_nif: "cd_nif";
1815
- ch_uid: "ch_uid";
1816
- ch_vat: "ch_vat";
1817
- cl_tin: "cl_tin";
1818
- cn_tin: "cn_tin";
1819
- co_nit: "co_nit";
1820
- cr_tin: "cr_tin";
1821
- cy_vat: "cy_vat";
1822
- cz_vat: "cz_vat";
1823
- de_stn: "de_stn";
1824
- de_vat: "de_vat";
1825
- dk_vat: "dk_vat";
1826
- do_rcn: "do_rcn";
1827
- ec_ruc: "ec_ruc";
1828
- ee_vat: "ee_vat";
1829
- eg_tin: "eg_tin";
1830
- es_cif: "es_cif";
1831
- es_vat: "es_vat";
1832
- eu_oss_vat: "eu_oss_vat";
1833
- fi_vat: "fi_vat";
1834
- fr_vat: "fr_vat";
1835
- gb_vat: "gb_vat";
1836
- ge_vat: "ge_vat";
1837
- gn_nif: "gn_nif";
1838
- gr_vat: "gr_vat";
1839
- hk_br: "hk_br";
1840
- hr_oib: "hr_oib";
1841
- hr_vat: "hr_vat";
1842
- hu_tin: "hu_tin";
1843
- hu_vat: "hu_vat";
1844
- id_npwp: "id_npwp";
1845
- ie_vat: "ie_vat";
1846
- il_vat: "il_vat";
1847
- in_gst: "in_gst";
1848
- is_vat: "is_vat";
1849
- it_vat: "it_vat";
1850
- jp_cn: "jp_cn";
1851
- jp_rn: "jp_rn";
1852
- jp_trn: "jp_trn";
1853
- ke_pin: "ke_pin";
1854
- kh_tin: "kh_tin";
1855
- kr_brn: "kr_brn";
1856
- kz_bin: "kz_bin";
1857
- li_uid: "li_uid";
1858
- li_vat: "li_vat";
1859
- lt_vat: "lt_vat";
1860
- lu_vat: "lu_vat";
1861
- lv_vat: "lv_vat";
1862
- ma_vat: "ma_vat";
1863
- md_vat: "md_vat";
1864
- me_pib: "me_pib";
1865
- mk_vat: "mk_vat";
1866
- mr_nif: "mr_nif";
1867
- mt_vat: "mt_vat";
1868
- mx_rfc: "mx_rfc";
1869
- my_frp: "my_frp";
1870
- my_itn: "my_itn";
1871
- my_sst: "my_sst";
1872
- ng_tin: "ng_tin";
1873
- nl_vat: "nl_vat";
1874
- no_vat: "no_vat";
1875
- no_voec: "no_voec";
1876
- np_pan: "np_pan";
1877
- nz_gst: "nz_gst";
1878
- om_vat: "om_vat";
1879
- pe_ruc: "pe_ruc";
1880
- ph_tin: "ph_tin";
1881
- pl_vat: "pl_vat";
1882
- pt_vat: "pt_vat";
1883
- ro_tin: "ro_tin";
1884
- ro_vat: "ro_vat";
1885
- rs_pib: "rs_pib";
1886
- ru_inn: "ru_inn";
1887
- ru_kpp: "ru_kpp";
1888
- sa_vat: "sa_vat";
1889
- se_vat: "se_vat";
1890
- sg_gst: "sg_gst";
1891
- sg_uen: "sg_uen";
1892
- si_tin: "si_tin";
1893
- si_vat: "si_vat";
1894
- sk_vat: "sk_vat";
1895
- sn_ninea: "sn_ninea";
1896
- sr_fin: "sr_fin";
1897
- sv_nit: "sv_nit";
1898
- th_vat: "th_vat";
1899
- tj_tin: "tj_tin";
1900
- tr_tin: "tr_tin";
1901
- tw_vat: "tw_vat";
1902
- tz_vat: "tz_vat";
1903
- ua_vat: "ua_vat";
1904
- ug_tin: "ug_tin";
1905
- us_ein: "us_ein";
1906
- uy_ruc: "uy_ruc";
1907
- uz_tin: "uz_tin";
1908
- uz_vat: "uz_vat";
1909
- ve_rif: "ve_rif";
1910
- vn_tin: "vn_tin";
1911
- xi_vat: "xi_vat";
1912
- za_vat: "za_vat";
1913
- zm_tin: "zm_tin";
1914
- zw_tin: "zw_tin";
1915
- }>>;
1703
+ id: z.ZodOptional<z.ZodString>;
1704
+ secret: z.ZodOptional<z.ZodString>;
1705
+ date_created: z.ZodISODateTime;
1916
1706
  }, z.core.$strip>;
1917
1707
  /**
1918
- * An array of the applied promotional credits records.
1708
+ * An array of tickets for the organization, newest first.
1919
1709
  */
1920
- export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
1921
- id: z.ZodOptional<z.ZodString>;
1922
- type: z.ZodEnum<{
1923
- credit: "credit";
1924
- discount: "discount";
1710
+ export declare const zListTicketsResponse: z.ZodArray<z.ZodObject<{
1711
+ id: z.ZodString;
1712
+ status: z.ZodEnum<{
1713
+ closed: "closed";
1714
+ waiting_on_us: "waiting_on_us";
1715
+ waiting_on_user: "waiting_on_user";
1925
1716
  }>;
1926
- date_start: z.ZodISODateTime;
1927
- date_end: z.ZodOptional<z.ZodISODateTime>;
1928
- code: z.ZodString;
1929
- description: z.ZodOptional<z.ZodString>;
1930
- value_total: z.ZodNumber;
1931
- value_remaining: z.ZodOptional<z.ZodNumber>;
1717
+ category: z.ZodEnum<{
1718
+ billing: "billing";
1719
+ technical: "technical";
1720
+ general: "general";
1721
+ }>;
1722
+ summary: z.ZodString;
1723
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1724
+ date_created: z.ZodISODateTime;
1725
+ date_updated: z.ZodISODateTime;
1726
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1727
+ id: z.ZodString;
1728
+ type: z.ZodEnum<{
1729
+ customer_reply: "customer_reply";
1730
+ agent_reply: "agent_reply";
1731
+ }>;
1732
+ body: z.ZodString;
1733
+ author_first_name: z.ZodOptional<z.ZodString>;
1734
+ author_last_name: z.ZodOptional<z.ZodString>;
1735
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1736
+ id: z.ZodString;
1737
+ filename: z.ZodString;
1738
+ content_type: z.ZodString;
1739
+ size: z.ZodInt;
1740
+ }, z.core.$strip>>>;
1741
+ date_created: z.ZodISODateTime;
1742
+ }, z.core.$strip>>>;
1932
1743
  }, z.core.$strip>>;
1933
- export declare const zRedeemCreditsBody: z.ZodObject<{
1934
- code: z.ZodOptional<z.ZodString>;
1935
- }, z.core.$strip>;
1936
- export declare const zListChartsPath: z.ZodObject<{
1937
- cluster_id: z.ZodString;
1744
+ export declare const zCreateTicketBody: z.ZodObject<{
1745
+ payload: z.ZodOptional<z.ZodString>;
1746
+ attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
1938
1747
  }, z.core.$strip>;
1939
1748
  /**
1940
- * An array of charts
1749
+ * Ticket created.
1941
1750
  */
1942
- export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
1943
- values: z.ZodString;
1944
- version_channel: z.ZodString;
1945
- name: z.ZodString;
1946
- namespace: z.ZodString;
1947
- chart: z.ZodString;
1948
- status: z.ZodString;
1949
- version_current: z.ZodString;
1950
- created_at: z.ZodString;
1951
- updated_at: z.ZodString;
1952
- ready: z.ZodBoolean;
1953
- }, z.core.$strip>>;
1954
- export declare const zCreateChartBody: z.ZodObject<{
1955
- values: z.ZodString;
1956
- version_channel: z.ZodString;
1957
- name: z.ZodString;
1958
- namespace: z.ZodString;
1959
- chart: z.ZodString;
1751
+ export declare const zCreateTicketResponse: z.ZodObject<{
1752
+ id: z.ZodString;
1753
+ status: z.ZodEnum<{
1754
+ closed: "closed";
1755
+ waiting_on_us: "waiting_on_us";
1756
+ waiting_on_user: "waiting_on_user";
1757
+ }>;
1758
+ category: z.ZodEnum<{
1759
+ billing: "billing";
1760
+ technical: "technical";
1761
+ general: "general";
1762
+ }>;
1763
+ summary: z.ZodString;
1764
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1765
+ date_created: z.ZodISODateTime;
1766
+ date_updated: z.ZodISODateTime;
1767
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1768
+ id: z.ZodString;
1769
+ type: z.ZodEnum<{
1770
+ customer_reply: "customer_reply";
1771
+ agent_reply: "agent_reply";
1772
+ }>;
1773
+ body: z.ZodString;
1774
+ author_first_name: z.ZodOptional<z.ZodString>;
1775
+ author_last_name: z.ZodOptional<z.ZodString>;
1776
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1777
+ id: z.ZodString;
1778
+ filename: z.ZodString;
1779
+ content_type: z.ZodString;
1780
+ size: z.ZodInt;
1781
+ }, z.core.$strip>>>;
1782
+ date_created: z.ZodISODateTime;
1783
+ }, z.core.$strip>>>;
1960
1784
  }, z.core.$strip>;
1961
- export declare const zCreateChartPath: z.ZodObject<{
1962
- cluster_id: z.ZodString;
1785
+ export declare const zCloseTicketPath: z.ZodObject<{
1786
+ ticket_id: z.ZodString;
1963
1787
  }, z.core.$strip>;
1964
1788
  /**
1965
- * Successfully created. Returns created Chart ID.
1789
+ * Ticket closed.
1966
1790
  */
1967
- export declare const zCreateChartResponse: z.ZodString;
1968
- export declare const zDeleteChartPath: z.ZodObject<{
1969
- cluster_id: z.ZodString;
1970
- chart_name: z.ZodString;
1791
+ export declare const zCloseTicketResponse: z.ZodObject<{
1792
+ id: z.ZodString;
1793
+ status: z.ZodEnum<{
1794
+ closed: "closed";
1795
+ waiting_on_us: "waiting_on_us";
1796
+ waiting_on_user: "waiting_on_user";
1797
+ }>;
1798
+ category: z.ZodEnum<{
1799
+ billing: "billing";
1800
+ technical: "technical";
1801
+ general: "general";
1802
+ }>;
1803
+ summary: z.ZodString;
1804
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1805
+ date_created: z.ZodISODateTime;
1806
+ date_updated: z.ZodISODateTime;
1807
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1808
+ id: z.ZodString;
1809
+ type: z.ZodEnum<{
1810
+ customer_reply: "customer_reply";
1811
+ agent_reply: "agent_reply";
1812
+ }>;
1813
+ body: z.ZodString;
1814
+ author_first_name: z.ZodOptional<z.ZodString>;
1815
+ author_last_name: z.ZodOptional<z.ZodString>;
1816
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1817
+ id: z.ZodString;
1818
+ filename: z.ZodString;
1819
+ content_type: z.ZodString;
1820
+ size: z.ZodInt;
1821
+ }, z.core.$strip>>>;
1822
+ date_created: z.ZodISODateTime;
1823
+ }, z.core.$strip>>>;
1824
+ }, z.core.$strip>;
1825
+ export declare const zGetTicketPath: z.ZodObject<{
1826
+ ticket_id: z.ZodString;
1971
1827
  }, z.core.$strip>;
1972
1828
  /**
1973
- * Successfully deleted.
1829
+ * Ticket with messages (internal notes excluded).
1974
1830
  */
1975
- export declare const zDeleteChartResponse: z.ZodString;
1976
- export declare const zGetChartPath: z.ZodObject<{
1977
- cluster_id: z.ZodString;
1978
- chart_name: z.ZodString;
1831
+ export declare const zGetTicketResponse: z.ZodObject<{
1832
+ id: z.ZodString;
1833
+ status: z.ZodEnum<{
1834
+ closed: "closed";
1835
+ waiting_on_us: "waiting_on_us";
1836
+ waiting_on_user: "waiting_on_user";
1837
+ }>;
1838
+ category: z.ZodEnum<{
1839
+ billing: "billing";
1840
+ technical: "technical";
1841
+ general: "general";
1842
+ }>;
1843
+ summary: z.ZodString;
1844
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1845
+ date_created: z.ZodISODateTime;
1846
+ date_updated: z.ZodISODateTime;
1847
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1848
+ id: z.ZodString;
1849
+ type: z.ZodEnum<{
1850
+ customer_reply: "customer_reply";
1851
+ agent_reply: "agent_reply";
1852
+ }>;
1853
+ body: z.ZodString;
1854
+ author_first_name: z.ZodOptional<z.ZodString>;
1855
+ author_last_name: z.ZodOptional<z.ZodString>;
1856
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1857
+ id: z.ZodString;
1858
+ filename: z.ZodString;
1859
+ content_type: z.ZodString;
1860
+ size: z.ZodInt;
1861
+ }, z.core.$strip>>>;
1862
+ date_created: z.ZodISODateTime;
1863
+ }, z.core.$strip>>>;
1864
+ }, z.core.$strip>;
1865
+ export declare const zReplyTicketBody: z.ZodObject<{
1866
+ payload: z.ZodOptional<z.ZodString>;
1867
+ attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
1868
+ }, z.core.$strip>;
1869
+ export declare const zReplyTicketPath: z.ZodObject<{
1870
+ ticket_id: z.ZodString;
1979
1871
  }, z.core.$strip>;
1980
1872
  /**
1981
- * Returns a single object containing chart details.
1873
+ * Reply appended.
1982
1874
  */
1983
- export declare const zGetChartResponse: z.ZodObject<{
1984
- values: z.ZodString;
1985
- version_channel: z.ZodString;
1986
- name: z.ZodString;
1987
- namespace: z.ZodString;
1988
- chart: z.ZodString;
1989
- status: z.ZodString;
1990
- version_current: z.ZodString;
1991
- created_at: z.ZodString;
1992
- updated_at: z.ZodString;
1993
- ready: z.ZodBoolean;
1994
- }, z.core.$strip>;
1995
- export declare const zUpdateChartBody: z.ZodObject<{
1996
- values: z.ZodString;
1997
- version_channel: z.ZodString;
1875
+ export declare const zReplyTicketResponse: z.ZodObject<{
1876
+ id: z.ZodString;
1877
+ type: z.ZodEnum<{
1878
+ customer_reply: "customer_reply";
1879
+ agent_reply: "agent_reply";
1880
+ }>;
1881
+ body: z.ZodString;
1882
+ author_first_name: z.ZodOptional<z.ZodString>;
1883
+ author_last_name: z.ZodOptional<z.ZodString>;
1884
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1885
+ id: z.ZodString;
1886
+ filename: z.ZodString;
1887
+ content_type: z.ZodString;
1888
+ size: z.ZodInt;
1889
+ }, z.core.$strip>>>;
1890
+ date_created: z.ZodISODateTime;
1998
1891
  }, z.core.$strip>;
1999
- export declare const zUpdateChartPath: z.ZodObject<{
2000
- cluster_id: z.ZodString;
2001
- chart_name: z.ZodString;
1892
+ export declare const zGetTicketAttachmentPath: z.ZodObject<{
1893
+ ticket_id: z.ZodString;
1894
+ attachment_id: z.ZodString;
2002
1895
  }, z.core.$strip>;
2003
1896
  /**
2004
- * Successfully updated.
1897
+ * Attachment binary stream.
2005
1898
  */
2006
- export declare const zUpdateChartResponse: z.ZodString;
2007
- export declare const zListFleetsPath: z.ZodObject<{
2008
- cluster_id: z.ZodString;
1899
+ export declare const zGetTicketAttachmentResponse: z.ZodString;
1900
+ /**
1901
+ * List of repositories
1902
+ */
1903
+ export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
1904
+ name: z.ZodString;
1905
+ region: z.ZodString;
1906
+ uri: z.ZodString;
1907
+ }, z.core.$strip>>;
1908
+ export declare const zListTagsPath: z.ZodObject<{
1909
+ region: z.ZodString;
1910
+ repository: z.ZodString;
2009
1911
  }, z.core.$strip>;
2010
1912
  /**
2011
- * An array of fleets
1913
+ * Repository with tags
2012
1914
  */
2013
- export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
2014
- limits: z.ZodOptional<z.ZodObject<{
2015
- cpu: z.ZodOptional<z.ZodInt>;
1915
+ export declare const zListTagsResponse: z.ZodObject<{
1916
+ name: z.ZodString;
1917
+ region: z.ZodString;
1918
+ uri: z.ZodString;
1919
+ tags: z.ZodArray<z.ZodObject<{
1920
+ name: z.ZodString;
1921
+ size: z.ZodNumber;
1922
+ mediaType: z.ZodOptional<z.ZodString>;
1923
+ platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
1924
+ }, z.core.$strip>>;
1925
+ totalSize: z.ZodNumber;
1926
+ }, z.core.$strip>;
1927
+ export declare const zDeleteTagPath: z.ZodObject<{
1928
+ region: z.ZodString;
1929
+ repository: z.ZodString;
1930
+ tag: z.ZodString;
1931
+ }, z.core.$strip>;
1932
+ export declare const zGetTagPath: z.ZodObject<{
1933
+ region: z.ZodString;
1934
+ repository: z.ZodString;
1935
+ tag: z.ZodString;
1936
+ }, z.core.$strip>;
1937
+ /**
1938
+ * Tag details
1939
+ */
1940
+ export declare const zGetTagResponse: z.ZodObject<{
1941
+ name: z.ZodString;
1942
+ digest: z.ZodString;
1943
+ mediaType: z.ZodOptional<z.ZodString>;
1944
+ config: z.ZodOptional<z.ZodObject<{
1945
+ size: z.ZodNumber;
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
+ manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
1952
+ digest: z.ZodString;
1953
+ platform: z.ZodOptional<z.ZodObject<{
1954
+ architecture: z.ZodString;
1955
+ os: z.ZodString;
1956
+ variant: z.ZodOptional<z.ZodString>;
1957
+ }, z.core.$strip>>;
1958
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1959
+ digest: z.ZodOptional<z.ZodString>;
1960
+ size: z.ZodNumber;
1961
+ }, z.core.$strip>>>;
1962
+ size: z.ZodOptional<z.ZodNumber>;
1963
+ }, z.core.$strip>>>;
1964
+ size: z.ZodNumber;
1965
+ region: z.ZodString;
1966
+ repository: z.ZodString;
1967
+ uri: z.ZodString;
1968
+ }, z.core.$strip>;
1969
+ /**
1970
+ * Returns a single object containing organization details.
1971
+ */
1972
+ export declare const zGetOrganizationResponse: z.ZodObject<{
1973
+ id: z.ZodUUID;
1974
+ name: z.ZodOptional<z.ZodString>;
1975
+ type: z.ZodEnum<{
1976
+ business: "business";
1977
+ personal: "personal";
1978
+ }>;
1979
+ date_created: z.ZodISODateTime;
1980
+ quota: z.ZodObject<{
1981
+ basic_clusters_max: z.ZodInt;
1982
+ basic_clusters_available: z.ZodInt;
1983
+ pro_clusters_max: z.ZodInt;
1984
+ pro_clusters_available: z.ZodInt;
1985
+ enterprise_clusters_max: z.ZodInt;
1986
+ enterprise_clusters_available: z.ZodInt;
1987
+ fleets_max: z.ZodInt;
1988
+ cluster_tiers: z.ZodArray<z.ZodString>;
1989
+ regions: z.ZodArray<z.ZodString>;
1990
+ versions: z.ZodArray<z.ZodObject<{
1991
+ id: z.ZodString;
1992
+ label: z.ZodString;
1993
+ }, z.core.$strip>>;
1994
+ cfcr_storage_gb: z.ZodInt;
1995
+ }, z.core.$strip>;
1996
+ status: z.ZodEnum<{
1997
+ active: "active";
1998
+ closed: "closed";
1999
+ suspended: "suspended";
2000
+ }>;
2001
+ verification: z.ZodEnum<{
2002
+ none: "none";
2003
+ submitted: "submitted";
2004
+ verified: "verified";
2005
+ }>;
2006
+ }, z.core.$strip>;
2007
+ export declare const zCreateOrganizationBody: z.ZodObject<{
2008
+ type: z.ZodEnum<{
2009
+ business: "business";
2010
+ personal: "personal";
2011
+ }>;
2012
+ email: z.ZodEmail;
2013
+ first_name: z.ZodString;
2014
+ last_name: z.ZodString;
2015
+ company_name: z.ZodString;
2016
+ password: z.ZodString;
2017
+ }, z.core.$strip>;
2018
+ /**
2019
+ * Organization signup accepted. Returns the generated organization id immediately; provisioning (billing, Keycloak realm, user) continues asynchronously in the background.
2020
+ *
2021
+ */
2022
+ export declare const zCreateOrganizationResponse: z.ZodObject<{
2023
+ id: z.ZodString;
2024
+ }, z.core.$strip>;
2025
+ /**
2026
+ * Returns the current consent status.
2027
+ */
2028
+ export declare const zGetBasicPriceConsentResponse: z.ZodObject<{
2029
+ status: z.ZodEnum<{
2030
+ pending: "pending";
2031
+ rejected: "rejected";
2032
+ accepted: "accepted";
2033
+ not_applicable: "not_applicable";
2034
+ }>;
2035
+ decided_at: z.ZodOptional<z.ZodISODateTime>;
2036
+ decided_by: z.ZodOptional<z.ZodString>;
2037
+ }, z.core.$strip>;
2038
+ export declare const zSetBasicPriceConsentBody: z.ZodObject<{
2039
+ decision: z.ZodEnum<{
2040
+ rejected: "rejected";
2041
+ accepted: "accepted";
2042
+ }>;
2043
+ }, z.core.$strip>;
2044
+ /**
2045
+ * Decision recorded. Returns the updated consent status.
2046
+ */
2047
+ export declare const zSetBasicPriceConsentResponse: z.ZodObject<{
2048
+ status: z.ZodEnum<{
2049
+ pending: "pending";
2050
+ rejected: "rejected";
2051
+ accepted: "accepted";
2052
+ not_applicable: "not_applicable";
2053
+ }>;
2054
+ decided_at: z.ZodOptional<z.ZodISODateTime>;
2055
+ decided_by: z.ZodOptional<z.ZodString>;
2056
+ }, z.core.$strip>;
2057
+ /**
2058
+ * JSON-RPC 2.0 request payload
2059
+ */
2060
+ export declare const zPostMcpBody: z.ZodObject<{
2061
+ jsonrpc: z.ZodOptional<z.ZodString>;
2062
+ method: z.ZodOptional<z.ZodString>;
2063
+ id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
2064
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2065
+ }, z.core.$strip>;
2066
+ /**
2067
+ * JSON-RPC 2.0 success or error response
2068
+ */
2069
+ export declare const zPostMcpResponse: z.ZodObject<{
2070
+ jsonrpc: z.ZodOptional<z.ZodString>;
2071
+ id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
2072
+ result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2073
+ error: z.ZodOptional<z.ZodObject<{
2074
+ code: z.ZodOptional<z.ZodInt>;
2075
+ message: z.ZodOptional<z.ZodString>;
2076
+ }, z.core.$strip>>;
2077
+ }, z.core.$strip>;
2078
+ /**
2079
+ * An array of chart listings in the marketplace.
2080
+ */
2081
+ export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
2082
+ name: z.ZodString;
2083
+ versions: z.ZodArray<z.ZodString>;
2084
+ version_channels: z.ZodArray<z.ZodString>;
2085
+ latestVersion: z.ZodString;
2086
+ metadata: z.ZodOptional<z.ZodObject<{
2087
+ name: z.ZodString;
2088
+ version: z.ZodString;
2089
+ description: z.ZodOptional<z.ZodString>;
2090
+ appVersion: z.ZodOptional<z.ZodString>;
2091
+ apiVersion: z.ZodOptional<z.ZodString>;
2092
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
2093
+ home: z.ZodOptional<z.ZodString>;
2094
+ icon: z.ZodOptional<z.ZodString>;
2095
+ sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
2096
+ maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
2097
+ name: z.ZodString;
2098
+ email: z.ZodOptional<z.ZodString>;
2099
+ }, z.core.$strip>>>;
2100
+ }, z.core.$strip>>;
2101
+ }, z.core.$strip>>;
2102
+ export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
2103
+ chart_name: z.ZodString;
2104
+ version_channel: z.ZodString;
2105
+ }, z.core.$strip>;
2106
+ /**
2107
+ * Returns an object containing the chart files for the latest matching version.
2108
+ */
2109
+ export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
2110
+ chartYaml: z.ZodOptional<z.ZodString>;
2111
+ valuesYaml: z.ZodOptional<z.ZodString>;
2112
+ valuesSchemaJson: z.ZodOptional<z.ZodString>;
2113
+ }, z.core.$strip>;
2114
+ /**
2115
+ * An array of invites
2116
+ */
2117
+ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
2118
+ id: z.ZodOptional<z.ZodString>;
2119
+ organization_id: z.ZodOptional<z.ZodUUID>;
2120
+ date_created: z.ZodISODateTime;
2121
+ email: z.ZodOptional<z.ZodEmail>;
2122
+ code: z.ZodOptional<z.ZodString>;
2123
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2124
+ Administrator: "Administrator";
2125
+ User: "User";
2126
+ }>>>;
2127
+ }, z.core.$strip>>;
2128
+ export declare const zCreateInviteBody: z.ZodObject<{
2129
+ email: z.ZodEmail;
2130
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2131
+ Administrator: "Administrator";
2132
+ User: "User";
2133
+ }>>>;
2134
+ }, z.core.$strip>;
2135
+ /**
2136
+ * Successfully created. Returns created invite details.
2137
+ */
2138
+ export declare const zCreateInviteResponse: z.ZodObject<{
2139
+ id: z.ZodOptional<z.ZodString>;
2140
+ organization_id: z.ZodOptional<z.ZodUUID>;
2141
+ date_created: z.ZodISODateTime;
2142
+ email: z.ZodOptional<z.ZodEmail>;
2143
+ code: z.ZodOptional<z.ZodString>;
2144
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2145
+ Administrator: "Administrator";
2146
+ User: "User";
2147
+ }>>>;
2148
+ }, z.core.$strip>;
2149
+ export declare const zGetInvitePath: z.ZodObject<{
2150
+ code: z.ZodString;
2151
+ }, z.core.$strip>;
2152
+ /**
2153
+ * The invitation code is valid. Returns the invited email and organization.
2154
+ */
2155
+ export declare const zGetInviteResponse: z.ZodObject<{
2156
+ email: z.ZodOptional<z.ZodEmail>;
2157
+ organization_id: z.ZodOptional<z.ZodString>;
2158
+ }, z.core.$strip>;
2159
+ export declare const zDeleteInvitePath: z.ZodObject<{
2160
+ email: z.ZodEmail;
2161
+ }, z.core.$strip>;
2162
+ export declare const zQueryClusterPath: z.ZodObject<{
2163
+ cluster_id: z.ZodString;
2164
+ }, z.core.$strip>;
2165
+ export declare const zListFleetsPath: z.ZodObject<{
2166
+ cluster_id: z.ZodString;
2167
+ }, z.core.$strip>;
2168
+ /**
2169
+ * An array of fleets
2170
+ */
2171
+ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
2172
+ limits: z.ZodOptional<z.ZodObject<{
2173
+ cpu: z.ZodOptional<z.ZodInt>;
2016
2174
  }, z.core.$strip>>;
2017
2175
  gcp: z.ZodOptional<z.ZodObject<{
2018
2176
  enabled: z.ZodBoolean;
@@ -2026,16 +2184,16 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
2026
2184
  enabled: z.ZodBoolean;
2027
2185
  controllerRoleArn: z.ZodOptional<z.ZodString>;
2028
2186
  }, z.core.$strip>>;
2029
- constraints: z.ZodOptional<z.ZodObject<{
2030
- 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2187
+ constraints: z.ZodDefault<z.ZodObject<{
2188
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
2031
2189
  "on-demand": "on-demand";
2032
2190
  spot: "spot";
2033
- }>>>>;
2034
- 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2191
+ }>>>;
2192
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
2035
2193
  amd64: "amd64";
2036
2194
  arm64: "arm64";
2037
- }>>>>;
2038
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2195
+ }>>>;
2196
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2039
2197
  p3: "p3";
2040
2198
  cx: "cx";
2041
2199
  h1: "h1";
@@ -2194,8 +2352,8 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
2194
2352
  x8g: "x8g";
2195
2353
  z1d: "z1d";
2196
2354
  z3: "z3";
2197
- }>>>;
2198
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2355
+ }>>>>;
2356
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2199
2357
  "africa-south1": "africa-south1";
2200
2358
  "ap-northeast-1": "ap-northeast-1";
2201
2359
  "ap-northeast-2": "ap-northeast-2";
@@ -2260,13 +2418,17 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
2260
2418
  "us-west2": "us-west2";
2261
2419
  "us-west3": "us-west3";
2262
2420
  "us-west4": "us-west4";
2263
- }>>>;
2421
+ }>>>>;
2264
2422
  }, z.core.$strip>>;
2265
2423
  scalingProfile: z.ZodDefault<z.ZodEnum<{
2266
2424
  aggressive: "aggressive";
2267
2425
  conservative: "conservative";
2268
2426
  }>>;
2269
2427
  id: z.ZodString;
2428
+ ready: z.ZodBoolean;
2429
+ status_message: z.ZodOptional<z.ZodString>;
2430
+ created_at: z.ZodString;
2431
+ updated_at: z.ZodString;
2270
2432
  }, z.core.$strip>>;
2271
2433
  export declare const zCreateFleetBody: z.ZodObject<{
2272
2434
  limits: z.ZodOptional<z.ZodObject<{
@@ -2284,7 +2446,7 @@ export declare const zCreateFleetBody: z.ZodObject<{
2284
2446
  enabled: z.ZodBoolean;
2285
2447
  controllerRoleArn: z.ZodOptional<z.ZodString>;
2286
2448
  }, z.core.$strip>>;
2287
- constraints: z.ZodOptional<z.ZodObject<{
2449
+ constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
2288
2450
  'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2289
2451
  "on-demand": "on-demand";
2290
2452
  spot: "spot";
@@ -2293,7 +2455,7 @@ export declare const zCreateFleetBody: z.ZodObject<{
2293
2455
  amd64: "amd64";
2294
2456
  arm64: "arm64";
2295
2457
  }>>>>;
2296
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2458
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2297
2459
  p3: "p3";
2298
2460
  cx: "cx";
2299
2461
  h1: "h1";
@@ -2452,8 +2614,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
2452
2614
  x8g: "x8g";
2453
2615
  z1d: "z1d";
2454
2616
  z3: "z3";
2455
- }>>>;
2456
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2617
+ }>>>>;
2618
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2457
2619
  "africa-south1": "africa-south1";
2458
2620
  "ap-northeast-1": "ap-northeast-1";
2459
2621
  "ap-northeast-2": "ap-northeast-2";
@@ -2518,8 +2680,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
2518
2680
  "us-west2": "us-west2";
2519
2681
  "us-west3": "us-west3";
2520
2682
  "us-west4": "us-west4";
2521
- }>>>;
2522
- }, z.core.$strip>>;
2683
+ }>>>>;
2684
+ }, z.core.$strip>>>;
2523
2685
  scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2524
2686
  aggressive: "aggressive";
2525
2687
  conservative: "conservative";
@@ -2564,16 +2726,16 @@ export declare const zGetFleetResponse: z.ZodObject<{
2564
2726
  enabled: z.ZodBoolean;
2565
2727
  controllerRoleArn: z.ZodOptional<z.ZodString>;
2566
2728
  }, z.core.$strip>>;
2567
- constraints: z.ZodOptional<z.ZodObject<{
2568
- 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2729
+ constraints: z.ZodDefault<z.ZodObject<{
2730
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
2569
2731
  "on-demand": "on-demand";
2570
2732
  spot: "spot";
2571
- }>>>>;
2572
- 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2733
+ }>>>;
2734
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
2573
2735
  amd64: "amd64";
2574
2736
  arm64: "arm64";
2575
- }>>>>;
2576
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2737
+ }>>>;
2738
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2577
2739
  p3: "p3";
2578
2740
  cx: "cx";
2579
2741
  h1: "h1";
@@ -2732,8 +2894,8 @@ export declare const zGetFleetResponse: z.ZodObject<{
2732
2894
  x8g: "x8g";
2733
2895
  z1d: "z1d";
2734
2896
  z3: "z3";
2735
- }>>>;
2736
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2897
+ }>>>>;
2898
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2737
2899
  "africa-south1": "africa-south1";
2738
2900
  "ap-northeast-1": "ap-northeast-1";
2739
2901
  "ap-northeast-2": "ap-northeast-2";
@@ -2798,13 +2960,17 @@ export declare const zGetFleetResponse: z.ZodObject<{
2798
2960
  "us-west2": "us-west2";
2799
2961
  "us-west3": "us-west3";
2800
2962
  "us-west4": "us-west4";
2801
- }>>>;
2963
+ }>>>>;
2802
2964
  }, z.core.$strip>>;
2803
2965
  scalingProfile: z.ZodDefault<z.ZodEnum<{
2804
2966
  aggressive: "aggressive";
2805
2967
  conservative: "conservative";
2806
2968
  }>>;
2807
2969
  id: z.ZodString;
2970
+ ready: z.ZodBoolean;
2971
+ status_message: z.ZodOptional<z.ZodString>;
2972
+ created_at: z.ZodString;
2973
+ updated_at: z.ZodString;
2808
2974
  }, z.core.$strip>;
2809
2975
  export declare const zUpdateFleetBody: z.ZodObject<{
2810
2976
  limits: z.ZodOptional<z.ZodObject<{
@@ -2822,16 +2988,16 @@ export declare const zUpdateFleetBody: z.ZodObject<{
2822
2988
  enabled: z.ZodBoolean;
2823
2989
  controllerRoleArn: z.ZodOptional<z.ZodString>;
2824
2990
  }, z.core.$strip>>;
2825
- constraints: z.ZodOptional<z.ZodObject<{
2826
- 'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2991
+ constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
2992
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2827
2993
  "on-demand": "on-demand";
2828
2994
  spot: "spot";
2829
- }>>>;
2830
- 'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2995
+ }>>>>;
2996
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2831
2997
  amd64: "amd64";
2832
2998
  arm64: "arm64";
2833
- }>>>;
2834
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2999
+ }>>>>;
3000
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2835
3001
  p3: "p3";
2836
3002
  cx: "cx";
2837
3003
  h1: "h1";
@@ -2990,8 +3156,8 @@ export declare const zUpdateFleetBody: z.ZodObject<{
2990
3156
  x8g: "x8g";
2991
3157
  z1d: "z1d";
2992
3158
  z3: "z3";
2993
- }>>>;
2994
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
3159
+ }>>>>;
3160
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2995
3161
  "africa-south1": "africa-south1";
2996
3162
  "ap-northeast-1": "ap-northeast-1";
2997
3163
  "ap-northeast-2": "ap-northeast-2";
@@ -3056,12 +3222,12 @@ export declare const zUpdateFleetBody: z.ZodObject<{
3056
3222
  "us-west2": "us-west2";
3057
3223
  "us-west3": "us-west3";
3058
3224
  "us-west4": "us-west4";
3059
- }>>>;
3060
- }, z.core.$strip>>;
3061
- scalingProfile: z.ZodEnum<{
3225
+ }>>>>;
3226
+ }, z.core.$strip>>>;
3227
+ scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3062
3228
  aggressive: "aggressive";
3063
3229
  conservative: "conservative";
3064
- }>;
3230
+ }>>>;
3065
3231
  }, z.core.$strip>;
3066
3232
  export declare const zUpdateFleetPath: z.ZodObject<{
3067
3233
  cluster_id: z.ZodString;
@@ -3071,24 +3237,112 @@ export declare const zUpdateFleetPath: z.ZodObject<{
3071
3237
  * Successfully updated.
3072
3238
  */
3073
3239
  export declare const zUpdateFleetResponse: z.ZodString;
3074
- export declare const zQueryClusterPath: z.ZodObject<{
3240
+ export declare const zListChartsPath: z.ZodObject<{
3241
+ cluster_id: z.ZodString;
3242
+ }, z.core.$strip>;
3243
+ /**
3244
+ * An array of charts
3245
+ */
3246
+ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
3247
+ values: z.ZodString;
3248
+ version_channel: z.ZodString;
3249
+ name: z.ZodString;
3250
+ namespace: z.ZodString;
3251
+ chart: z.ZodString;
3252
+ status: z.ZodString;
3253
+ version_current: z.ZodString;
3254
+ created_at: z.ZodString;
3255
+ updated_at: z.ZodString;
3256
+ ready: z.ZodBoolean;
3257
+ }, z.core.$strip>>;
3258
+ export declare const zCreateChartBody: z.ZodObject<{
3259
+ values: z.ZodString;
3260
+ version_channel: z.ZodString;
3261
+ name: z.ZodString;
3262
+ namespace: z.ZodString;
3263
+ chart: z.ZodString;
3264
+ }, z.core.$strip>;
3265
+ export declare const zCreateChartPath: z.ZodObject<{
3266
+ cluster_id: z.ZodString;
3267
+ }, z.core.$strip>;
3268
+ /**
3269
+ * Successfully created. Returns created Chart ID.
3270
+ */
3271
+ export declare const zCreateChartResponse: z.ZodString;
3272
+ export declare const zDeleteChartPath: z.ZodObject<{
3273
+ cluster_id: z.ZodString;
3274
+ chart_name: z.ZodString;
3275
+ }, z.core.$strip>;
3276
+ /**
3277
+ * Successfully deleted.
3278
+ */
3279
+ export declare const zDeleteChartResponse: z.ZodString;
3280
+ export declare const zGetChartPath: z.ZodObject<{
3281
+ cluster_id: z.ZodString;
3282
+ chart_name: z.ZodString;
3283
+ }, z.core.$strip>;
3284
+ /**
3285
+ * Returns a single object containing chart details.
3286
+ */
3287
+ export declare const zGetChartResponse: z.ZodObject<{
3288
+ values: z.ZodString;
3289
+ version_channel: z.ZodString;
3290
+ name: z.ZodString;
3291
+ namespace: z.ZodString;
3292
+ chart: z.ZodString;
3293
+ status: z.ZodString;
3294
+ version_current: z.ZodString;
3295
+ created_at: z.ZodString;
3296
+ updated_at: z.ZodString;
3297
+ ready: z.ZodBoolean;
3298
+ }, z.core.$strip>;
3299
+ export declare const zUpdateChartBody: z.ZodObject<{
3300
+ values: z.ZodString;
3301
+ version_channel: z.ZodString;
3302
+ }, z.core.$strip>;
3303
+ export declare const zUpdateChartPath: z.ZodObject<{
3075
3304
  cluster_id: z.ZodString;
3305
+ chart_name: z.ZodString;
3076
3306
  }, z.core.$strip>;
3307
+ /**
3308
+ * Successfully updated.
3309
+ */
3310
+ export declare const zUpdateChartResponse: z.ZodString;
3077
3311
  /**
3078
3312
  * An array of clusters
3079
3313
  */
3080
3314
  export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
3081
3315
  name: z.ZodString;
3082
- tier: z.ZodEnum<{
3316
+ tier: z.ZodDefault<z.ZodEnum<{
3083
3317
  basic: "basic";
3318
+ enterprise: "enterprise";
3084
3319
  pro: "pro";
3085
- }>;
3320
+ }>>;
3321
+ version_channel: z.ZodDefault<z.ZodString>;
3322
+ release_channel: z.ZodDefault<z.ZodEnum<{
3323
+ stable: "stable";
3324
+ rapid: "rapid";
3325
+ extended: "extended";
3326
+ }>>;
3327
+ features: z.ZodDefault<z.ZodObject<{
3328
+ gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
3329
+ none: "none";
3330
+ mps: "mps";
3331
+ time_slicing: "time_slicing";
3332
+ }>>;
3333
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
3334
+ cilium_socket_lb_host_namespace_only: z.ZodBoolean;
3335
+ }, z.core.$strip>>;
3086
3336
  region: z.ZodString;
3337
+ networking: z.ZodDefault<z.ZodObject<{
3338
+ pod_cidr: z.ZodDefault<z.ZodString>;
3339
+ service_cidr: z.ZodDefault<z.ZodString>;
3340
+ dual_stack: z.ZodBoolean;
3341
+ pod_cidr_v6: z.ZodDefault<z.ZodString>;
3342
+ service_cidr_v6: z.ZodDefault<z.ZodString>;
3343
+ }, z.core.$strip>>;
3087
3344
  id: z.ZodUUID;
3088
3345
  status: z.ZodEnum<{
3089
- deleted: "deleted";
3090
- failed: "failed";
3091
- active: "active";
3092
3346
  disabled: "disabled";
3093
3347
  creating: "creating";
3094
3348
  deployed: "deployed";
@@ -3104,17 +3358,38 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
3104
3358
  version_current: z.ZodOptional<z.ZodString>;
3105
3359
  created_at: z.ZodOptional<z.ZodString>;
3106
3360
  updated_at: z.ZodOptional<z.ZodString>;
3107
- ready: z.ZodOptional<z.ZodBoolean>;
3108
- version_channel: z.ZodOptional<z.ZodString>;
3361
+ ready: z.ZodBoolean;
3109
3362
  }, z.core.$strip>>;
3110
3363
  export declare const zCreateClusterBody: z.ZodObject<{
3111
3364
  name: z.ZodString;
3112
- tier: z.ZodEnum<{
3365
+ tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3113
3366
  basic: "basic";
3367
+ enterprise: "enterprise";
3114
3368
  pro: "pro";
3115
- }>;
3116
- region: z.ZodString;
3369
+ }>>>;
3117
3370
  version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3371
+ release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3372
+ stable: "stable";
3373
+ rapid: "rapid";
3374
+ extended: "extended";
3375
+ }>>>;
3376
+ features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
3377
+ gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3378
+ none: "none";
3379
+ mps: "mps";
3380
+ time_slicing: "time_slicing";
3381
+ }>>>;
3382
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
3383
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
3384
+ }, z.core.$strip>>>;
3385
+ region: z.ZodString;
3386
+ networking: z.ZodDefault<z.ZodOptional<z.ZodObject<{
3387
+ pod_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3388
+ service_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3389
+ dual_stack: z.ZodOptional<z.ZodBoolean>;
3390
+ pod_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3391
+ service_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3392
+ }, z.core.$strip>>>;
3118
3393
  }, z.core.$strip>;
3119
3394
  /**
3120
3395
  * Successfully created. Returns created Cluster ID.
@@ -3135,16 +3410,36 @@ export declare const zGetClusterPath: z.ZodObject<{
3135
3410
  */
3136
3411
  export declare const zGetClusterResponse: z.ZodObject<{
3137
3412
  name: z.ZodString;
3138
- tier: z.ZodEnum<{
3413
+ tier: z.ZodDefault<z.ZodEnum<{
3139
3414
  basic: "basic";
3415
+ enterprise: "enterprise";
3140
3416
  pro: "pro";
3141
- }>;
3417
+ }>>;
3418
+ version_channel: z.ZodDefault<z.ZodString>;
3419
+ release_channel: z.ZodDefault<z.ZodEnum<{
3420
+ stable: "stable";
3421
+ rapid: "rapid";
3422
+ extended: "extended";
3423
+ }>>;
3424
+ features: z.ZodDefault<z.ZodObject<{
3425
+ gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
3426
+ none: "none";
3427
+ mps: "mps";
3428
+ time_slicing: "time_slicing";
3429
+ }>>;
3430
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
3431
+ cilium_socket_lb_host_namespace_only: z.ZodBoolean;
3432
+ }, z.core.$strip>>;
3142
3433
  region: z.ZodString;
3434
+ networking: z.ZodDefault<z.ZodObject<{
3435
+ pod_cidr: z.ZodDefault<z.ZodString>;
3436
+ service_cidr: z.ZodDefault<z.ZodString>;
3437
+ dual_stack: z.ZodBoolean;
3438
+ pod_cidr_v6: z.ZodDefault<z.ZodString>;
3439
+ service_cidr_v6: z.ZodDefault<z.ZodString>;
3440
+ }, z.core.$strip>>;
3143
3441
  id: z.ZodUUID;
3144
3442
  status: z.ZodEnum<{
3145
- deleted: "deleted";
3146
- failed: "failed";
3147
- active: "active";
3148
3443
  disabled: "disabled";
3149
3444
  creating: "creating";
3150
3445
  deployed: "deployed";
@@ -3160,16 +3455,30 @@ export declare const zGetClusterResponse: z.ZodObject<{
3160
3455
  version_current: z.ZodOptional<z.ZodString>;
3161
3456
  created_at: z.ZodOptional<z.ZodString>;
3162
3457
  updated_at: z.ZodOptional<z.ZodString>;
3163
- ready: z.ZodOptional<z.ZodBoolean>;
3164
- version_channel: z.ZodOptional<z.ZodString>;
3458
+ ready: z.ZodBoolean;
3165
3459
  }, z.core.$strip>;
3166
3460
  export declare const zUpdateClusterBody: z.ZodObject<{
3167
- name: z.ZodOptional<z.ZodString>;
3168
- tier: z.ZodEnum<{
3461
+ name: z.ZodString;
3462
+ tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3169
3463
  basic: "basic";
3464
+ enterprise: "enterprise";
3170
3465
  pro: "pro";
3171
- }>;
3172
- version_channel: z.ZodOptional<z.ZodString>;
3466
+ }>>>;
3467
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3468
+ release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3469
+ stable: "stable";
3470
+ rapid: "rapid";
3471
+ extended: "extended";
3472
+ }>>>;
3473
+ features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
3474
+ gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3475
+ none: "none";
3476
+ mps: "mps";
3477
+ time_slicing: "time_slicing";
3478
+ }>>>;
3479
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
3480
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
3481
+ }, z.core.$strip>>>;
3173
3482
  }, z.core.$strip>;
3174
3483
  export declare const zUpdateClusterPath: z.ZodObject<{
3175
3484
  cluster_id: z.ZodString;
@@ -3179,16 +3488,36 @@ export declare const zUpdateClusterPath: z.ZodObject<{
3179
3488
  */
3180
3489
  export declare const zUpdateClusterResponse: z.ZodObject<{
3181
3490
  name: z.ZodString;
3182
- tier: z.ZodEnum<{
3491
+ tier: z.ZodDefault<z.ZodEnum<{
3183
3492
  basic: "basic";
3493
+ enterprise: "enterprise";
3184
3494
  pro: "pro";
3185
- }>;
3495
+ }>>;
3496
+ version_channel: z.ZodDefault<z.ZodString>;
3497
+ release_channel: z.ZodDefault<z.ZodEnum<{
3498
+ stable: "stable";
3499
+ rapid: "rapid";
3500
+ extended: "extended";
3501
+ }>>;
3502
+ features: z.ZodDefault<z.ZodObject<{
3503
+ gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
3504
+ none: "none";
3505
+ mps: "mps";
3506
+ time_slicing: "time_slicing";
3507
+ }>>;
3508
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
3509
+ cilium_socket_lb_host_namespace_only: z.ZodBoolean;
3510
+ }, z.core.$strip>>;
3186
3511
  region: z.ZodString;
3512
+ networking: z.ZodDefault<z.ZodObject<{
3513
+ pod_cidr: z.ZodDefault<z.ZodString>;
3514
+ service_cidr: z.ZodDefault<z.ZodString>;
3515
+ dual_stack: z.ZodBoolean;
3516
+ pod_cidr_v6: z.ZodDefault<z.ZodString>;
3517
+ service_cidr_v6: z.ZodDefault<z.ZodString>;
3518
+ }, z.core.$strip>>;
3187
3519
  id: z.ZodUUID;
3188
3520
  status: z.ZodEnum<{
3189
- deleted: "deleted";
3190
- failed: "failed";
3191
- active: "active";
3192
3521
  disabled: "disabled";
3193
3522
  creating: "creating";
3194
3523
  deployed: "deployed";
@@ -3204,8 +3533,7 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
3204
3533
  version_current: z.ZodOptional<z.ZodString>;
3205
3534
  created_at: z.ZodOptional<z.ZodString>;
3206
3535
  updated_at: z.ZodOptional<z.ZodString>;
3207
- ready: z.ZodOptional<z.ZodBoolean>;
3208
- version_channel: z.ZodOptional<z.ZodString>;
3536
+ ready: z.ZodBoolean;
3209
3537
  }, z.core.$strip>;
3210
3538
  export declare const zGetJoinInformationPath: z.ZodObject<{
3211
3539
  cluster_id: z.ZodString;
@@ -3219,6 +3547,7 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
3219
3547
  cluster_dns: z.ZodString;
3220
3548
  pod_cidr: z.ZodString;
3221
3549
  auth_key: z.ZodString;
3550
+ login_server: z.ZodString;
3222
3551
  bootstrap_token: z.ZodString;
3223
3552
  versions: z.ZodObject<{
3224
3553
  kubernetes: z.ZodString;
@@ -3232,647 +3561,564 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
3232
3561
  gcp_workload_identity_provider: z.ZodString;
3233
3562
  }, z.core.$strip>;
3234
3563
  }, z.core.$strip>;
3235
- /**
3236
- * An array of invites
3237
- */
3238
- export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
3239
- id: z.ZodOptional<z.ZodString>;
3240
- organization_id: z.ZodOptional<z.ZodUUID>;
3241
- date_created: z.ZodISODateTime;
3242
- email: z.ZodOptional<z.ZodEmail>;
3243
- code: z.ZodOptional<z.ZodString>;
3244
- role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3245
- Administrator: "Administrator";
3246
- User: "User";
3247
- }>>>;
3248
- }, z.core.$strip>>;
3249
- export declare const zCreateInviteBody: z.ZodObject<{
3250
- email: z.ZodEmail;
3251
- role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3252
- Administrator: "Administrator";
3253
- User: "User";
3564
+ export declare const zGetUsageQuery: z.ZodObject<{
3565
+ granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3566
+ hourly: "hourly";
3567
+ daily: "daily";
3568
+ monthly: "monthly";
3254
3569
  }>>>;
3255
3570
  }, z.core.$strip>;
3256
3571
  /**
3257
- * Successfully created. Returns created invite details.
3572
+ * Usage data with facets for filtering
3258
3573
  */
3259
- export declare const zCreateInviteResponse: z.ZodObject<{
3260
- id: z.ZodOptional<z.ZodString>;
3261
- organization_id: z.ZodOptional<z.ZodUUID>;
3262
- date_created: z.ZodISODateTime;
3263
- email: z.ZodOptional<z.ZodEmail>;
3264
- code: z.ZodOptional<z.ZodString>;
3265
- role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3266
- Administrator: "Administrator";
3267
- User: "User";
3268
- }>>>;
3269
- }, z.core.$strip>;
3270
- export declare const zGetInvitePath: z.ZodObject<{
3271
- code: z.ZodString;
3574
+ export declare const zGetUsageResponse: z.ZodObject<{
3575
+ data: z.ZodArray<z.ZodObject<{
3576
+ hour: z.ZodString;
3577
+ cluster_id: z.ZodString;
3578
+ product: z.ZodEnum<{
3579
+ cfke_controlplane_basic: "cfke_controlplane_basic";
3580
+ cfke_controlplane_pro: "cfke_controlplane_pro";
3581
+ cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
3582
+ cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
3583
+ cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
3584
+ cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
3585
+ cfcr_storage: "cfcr_storage";
3586
+ }>;
3587
+ value: z.ZodNumber;
3588
+ price: z.ZodNumber;
3589
+ total: z.ZodNumber;
3590
+ }, z.core.$strip>>;
3591
+ facets: z.ZodObject<{
3592
+ cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
3593
+ product: z.ZodOptional<z.ZodArray<z.ZodEnum<{
3594
+ cfke_controlplane_basic: "cfke_controlplane_basic";
3595
+ cfke_controlplane_pro: "cfke_controlplane_pro";
3596
+ cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
3597
+ cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
3598
+ cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
3599
+ cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
3600
+ cfcr_storage: "cfcr_storage";
3601
+ }>>>;
3602
+ }, z.core.$strip>;
3272
3603
  }, z.core.$strip>;
3273
3604
  /**
3274
- * The invitation code is valid. Returns the invited email and organization.
3605
+ * 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.
3606
+ *
3275
3607
  */
3276
- export declare const zGetInviteResponse: z.ZodObject<{
3277
- email: z.ZodOptional<z.ZodEmail>;
3278
- organization_id: z.ZodOptional<z.ZodString>;
3279
- }, z.core.$strip>;
3280
- export declare const zDeleteInvitePath: z.ZodObject<{
3281
- email: z.ZodEmail;
3608
+ export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
3609
+ id: z.ZodOptional<z.ZodString>;
3282
3610
  }, z.core.$strip>;
3283
3611
  /**
3284
- * An array of chart listings in the marketplace.
3612
+ * An array of payment methods.
3285
3613
  */
3286
- export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
3287
- name: z.ZodString;
3288
- versions: z.ZodArray<z.ZodString>;
3289
- version_channels: z.ZodArray<z.ZodString>;
3290
- latestVersion: z.ZodString;
3291
- metadata: z.ZodOptional<z.ZodObject<{
3292
- name: z.ZodString;
3293
- version: z.ZodString;
3294
- description: z.ZodOptional<z.ZodString>;
3295
- appVersion: z.ZodOptional<z.ZodString>;
3296
- apiVersion: z.ZodOptional<z.ZodString>;
3297
- keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
3298
- home: z.ZodOptional<z.ZodString>;
3299
- icon: z.ZodOptional<z.ZodString>;
3300
- sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
3301
- maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
3302
- name: z.ZodString;
3303
- email: z.ZodOptional<z.ZodString>;
3304
- }, z.core.$strip>>>;
3305
- }, z.core.$strip>>;
3614
+ export declare const zListPaymentMethodsResponse: z.ZodArray<z.ZodObject<{
3615
+ id: z.ZodString;
3616
+ type: z.ZodEnum<{
3617
+ card: "card";
3618
+ sepa_debit: "sepa_debit";
3619
+ bank_transfer: "bank_transfer";
3620
+ }>;
3621
+ last4: z.ZodString;
3622
+ exp_month: z.ZodInt;
3623
+ exp_year: z.ZodInt;
3624
+ brand: z.ZodString;
3625
+ iban: z.ZodString;
3626
+ bic: z.ZodString;
3627
+ account_holder_name: z.ZodString;
3628
+ is_default: z.ZodBoolean;
3306
3629
  }, z.core.$strip>>;
3307
- export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
3308
- chart_name: z.ZodString;
3309
- version_channel: z.ZodString;
3630
+ export declare const zSetDefaultPaymentMethodPath: z.ZodObject<{
3631
+ paymentMethodId: z.ZodString;
3310
3632
  }, z.core.$strip>;
3311
3633
  /**
3312
- * Returns an object containing the chart files for the latest matching version.
3634
+ * Default payment method updated.
3313
3635
  */
3314
- export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
3315
- chartYaml: z.ZodOptional<z.ZodString>;
3316
- valuesYaml: z.ZodOptional<z.ZodString>;
3317
- valuesSchemaJson: z.ZodOptional<z.ZodString>;
3636
+ export declare const zSetDefaultPaymentMethodResponse: z.ZodVoid;
3637
+ export declare const zDeletePaymentMethodPath: z.ZodObject<{
3638
+ paymentMethodId: z.ZodString;
3318
3639
  }, z.core.$strip>;
3319
3640
  /**
3320
- * JSON-RPC 2.0 request payload
3641
+ * Payment method deleted.
3321
3642
  */
3322
- export declare const zPostMcpBody: z.ZodObject<{
3323
- jsonrpc: z.ZodOptional<z.ZodString>;
3324
- method: z.ZodOptional<z.ZodString>;
3325
- id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
3326
- params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3327
- }, z.core.$strip>;
3643
+ export declare const zDeletePaymentMethodResponse: z.ZodVoid;
3328
3644
  /**
3329
- * JSON-RPC 2.0 success or error response
3645
+ * An array of usage records.
3330
3646
  */
3331
- export declare const zPostMcpResponse: z.ZodObject<{
3332
- jsonrpc: z.ZodOptional<z.ZodString>;
3333
- id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
3334
- result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3335
- error: z.ZodOptional<z.ZodObject<{
3336
- code: z.ZodOptional<z.ZodInt>;
3337
- message: z.ZodOptional<z.ZodString>;
3338
- }, z.core.$strip>>;
3339
- }, z.core.$strip>;
3647
+ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
3648
+ id: z.ZodOptional<z.ZodString>;
3649
+ number: z.ZodOptional<z.ZodString>;
3650
+ status: z.ZodOptional<z.ZodString>;
3651
+ total: z.ZodOptional<z.ZodNumber>;
3652
+ currency: z.ZodOptional<z.ZodString>;
3653
+ created: z.ZodISODateTime;
3654
+ period_start: z.ZodISODateTime;
3655
+ period_end: z.ZodISODateTime;
3656
+ invoice_pdf: z.ZodOptional<z.ZodString>;
3657
+ }, z.core.$strip>>;
3340
3658
  /**
3341
- * Returns a single object containing organization details.
3659
+ * Returns a single object containing organization contact and billing address details.
3342
3660
  */
3343
- export declare const zGetOrganizationResponse: z.ZodObject<{
3344
- id: z.ZodUUID;
3345
- name: z.ZodOptional<z.ZodString>;
3661
+ export declare const zGetContactResponse: z.ZodObject<{
3346
3662
  type: z.ZodEnum<{
3347
3663
  business: "business";
3348
3664
  personal: "personal";
3349
3665
  }>;
3350
- date_created: z.ZodISODateTime;
3351
- quota: z.ZodObject<{
3352
- basic_clusters_max: z.ZodInt;
3353
- basic_clusters_available: z.ZodInt;
3354
- pro_clusters_max: z.ZodInt;
3355
- pro_clusters_available: z.ZodInt;
3356
- fleets_max: z.ZodInt;
3357
- cluster_tiers: z.ZodArray<z.ZodString>;
3358
- regions: z.ZodArray<z.ZodString>;
3359
- versions: z.ZodArray<z.ZodObject<{
3360
- id: z.ZodString;
3361
- label: z.ZodString;
3362
- }, z.core.$strip>>;
3363
- cfcr_storage_gb: z.ZodInt;
3364
- }, z.core.$strip>;
3365
- status: z.ZodEnum<{
3366
- active: "active";
3367
- closed: "closed";
3368
- suspended: "suspended";
3369
- }>;
3370
- verification: z.ZodEnum<{
3371
- none: "none";
3372
- submitted: "submitted";
3373
- verified: "verified";
3374
- }>;
3666
+ company: z.ZodOptional<z.ZodString>;
3667
+ address1: z.ZodOptional<z.ZodString>;
3668
+ address2: z.ZodOptional<z.ZodString>;
3669
+ postalCode: z.ZodOptional<z.ZodString>;
3670
+ city: z.ZodOptional<z.ZodString>;
3671
+ state: z.ZodOptional<z.ZodString>;
3672
+ country: z.ZodOptional<z.ZodString>;
3673
+ phone: z.ZodOptional<z.ZodString>;
3674
+ email: z.ZodEmail;
3675
+ individual_name: z.ZodString;
3676
+ tax_id: z.ZodOptional<z.ZodString>;
3677
+ tax_id_type: z.ZodOptional<z.ZodEnum<{
3678
+ "": "";
3679
+ ad_nrt: "ad_nrt";
3680
+ ae_trn: "ae_trn";
3681
+ al_tin: "al_tin";
3682
+ am_tin: "am_tin";
3683
+ ao_tin: "ao_tin";
3684
+ ar_cuit: "ar_cuit";
3685
+ at_vat: "at_vat";
3686
+ au_abn: "au_abn";
3687
+ au_arn: "au_arn";
3688
+ ba_tin: "ba_tin";
3689
+ bb_tin: "bb_tin";
3690
+ be_vat: "be_vat";
3691
+ bg_uic: "bg_uic";
3692
+ bg_vat: "bg_vat";
3693
+ bh_vat: "bh_vat";
3694
+ bo_tin: "bo_tin";
3695
+ br_cnpj: "br_cnpj";
3696
+ br_cpf: "br_cpf";
3697
+ bs_tin: "bs_tin";
3698
+ by_tin: "by_tin";
3699
+ ca_bn: "ca_bn";
3700
+ ca_gst_hst: "ca_gst_hst";
3701
+ ca_pst_bc: "ca_pst_bc";
3702
+ ca_pst_mb: "ca_pst_mb";
3703
+ ca_pst_sk: "ca_pst_sk";
3704
+ ca_qst: "ca_qst";
3705
+ cd_nif: "cd_nif";
3706
+ ch_uid: "ch_uid";
3707
+ ch_vat: "ch_vat";
3708
+ cl_tin: "cl_tin";
3709
+ cn_tin: "cn_tin";
3710
+ co_nit: "co_nit";
3711
+ cr_tin: "cr_tin";
3712
+ cy_vat: "cy_vat";
3713
+ cz_vat: "cz_vat";
3714
+ de_stn: "de_stn";
3715
+ de_vat: "de_vat";
3716
+ dk_vat: "dk_vat";
3717
+ do_rcn: "do_rcn";
3718
+ ec_ruc: "ec_ruc";
3719
+ ee_vat: "ee_vat";
3720
+ eg_tin: "eg_tin";
3721
+ es_cif: "es_cif";
3722
+ es_vat: "es_vat";
3723
+ eu_oss_vat: "eu_oss_vat";
3724
+ fi_vat: "fi_vat";
3725
+ fr_vat: "fr_vat";
3726
+ gb_vat: "gb_vat";
3727
+ ge_vat: "ge_vat";
3728
+ gn_nif: "gn_nif";
3729
+ gr_vat: "gr_vat";
3730
+ hk_br: "hk_br";
3731
+ hr_oib: "hr_oib";
3732
+ hr_vat: "hr_vat";
3733
+ hu_tin: "hu_tin";
3734
+ hu_vat: "hu_vat";
3735
+ id_npwp: "id_npwp";
3736
+ ie_vat: "ie_vat";
3737
+ il_vat: "il_vat";
3738
+ in_gst: "in_gst";
3739
+ is_vat: "is_vat";
3740
+ it_vat: "it_vat";
3741
+ jp_cn: "jp_cn";
3742
+ jp_rn: "jp_rn";
3743
+ jp_trn: "jp_trn";
3744
+ ke_pin: "ke_pin";
3745
+ kh_tin: "kh_tin";
3746
+ kr_brn: "kr_brn";
3747
+ kz_bin: "kz_bin";
3748
+ li_uid: "li_uid";
3749
+ li_vat: "li_vat";
3750
+ lt_vat: "lt_vat";
3751
+ lu_vat: "lu_vat";
3752
+ lv_vat: "lv_vat";
3753
+ ma_vat: "ma_vat";
3754
+ md_vat: "md_vat";
3755
+ me_pib: "me_pib";
3756
+ mk_vat: "mk_vat";
3757
+ mr_nif: "mr_nif";
3758
+ mt_vat: "mt_vat";
3759
+ mx_rfc: "mx_rfc";
3760
+ my_frp: "my_frp";
3761
+ my_itn: "my_itn";
3762
+ my_sst: "my_sst";
3763
+ ng_tin: "ng_tin";
3764
+ nl_vat: "nl_vat";
3765
+ no_vat: "no_vat";
3766
+ no_voec: "no_voec";
3767
+ np_pan: "np_pan";
3768
+ nz_gst: "nz_gst";
3769
+ om_vat: "om_vat";
3770
+ pe_ruc: "pe_ruc";
3771
+ ph_tin: "ph_tin";
3772
+ pl_vat: "pl_vat";
3773
+ pt_vat: "pt_vat";
3774
+ ro_tin: "ro_tin";
3775
+ ro_vat: "ro_vat";
3776
+ rs_pib: "rs_pib";
3777
+ ru_inn: "ru_inn";
3778
+ ru_kpp: "ru_kpp";
3779
+ sa_vat: "sa_vat";
3780
+ se_vat: "se_vat";
3781
+ sg_gst: "sg_gst";
3782
+ sg_uen: "sg_uen";
3783
+ si_tin: "si_tin";
3784
+ si_vat: "si_vat";
3785
+ sk_vat: "sk_vat";
3786
+ sn_ninea: "sn_ninea";
3787
+ sr_fin: "sr_fin";
3788
+ sv_nit: "sv_nit";
3789
+ th_vat: "th_vat";
3790
+ tj_tin: "tj_tin";
3791
+ tr_tin: "tr_tin";
3792
+ tw_vat: "tw_vat";
3793
+ tz_vat: "tz_vat";
3794
+ ua_vat: "ua_vat";
3795
+ ug_tin: "ug_tin";
3796
+ us_ein: "us_ein";
3797
+ uy_ruc: "uy_ruc";
3798
+ uz_tin: "uz_tin";
3799
+ uz_vat: "uz_vat";
3800
+ ve_rif: "ve_rif";
3801
+ vn_tin: "vn_tin";
3802
+ xi_vat: "xi_vat";
3803
+ za_vat: "za_vat";
3804
+ zm_tin: "zm_tin";
3805
+ zw_tin: "zw_tin";
3806
+ }>>;
3375
3807
  }, z.core.$strip>;
3376
- export declare const zCreateOrganizationBody: z.ZodObject<{
3808
+ export declare const zUpdateContactBody: z.ZodObject<{
3377
3809
  type: z.ZodEnum<{
3378
3810
  business: "business";
3379
3811
  personal: "personal";
3380
3812
  }>;
3813
+ company: z.ZodOptional<z.ZodString>;
3814
+ address1: z.ZodOptional<z.ZodString>;
3815
+ address2: z.ZodOptional<z.ZodString>;
3816
+ postalCode: z.ZodOptional<z.ZodString>;
3817
+ city: z.ZodOptional<z.ZodString>;
3818
+ state: z.ZodOptional<z.ZodString>;
3819
+ country: z.ZodOptional<z.ZodString>;
3820
+ phone: z.ZodOptional<z.ZodString>;
3381
3821
  email: z.ZodEmail;
3382
- first_name: z.ZodString;
3383
- last_name: z.ZodString;
3384
- company_name: z.ZodString;
3385
- password: z.ZodString;
3386
- }, z.core.$strip>;
3387
- /**
3388
- * Organization signup accepted. Returns the generated organization id immediately; provisioning (billing, Keycloak realm, user) continues asynchronously in the background.
3389
- *
3390
- */
3391
- export declare const zCreateOrganizationResponse: z.ZodObject<{
3392
- id: z.ZodString;
3393
- }, z.core.$strip>;
3394
- /**
3395
- * List of repositories
3396
- */
3397
- export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
3398
- name: z.ZodString;
3399
- region: z.ZodString;
3400
- uri: z.ZodString;
3401
- }, z.core.$strip>>;
3402
- export declare const zListTagsPath: z.ZodObject<{
3403
- region: z.ZodString;
3404
- repository: z.ZodString;
3405
- }, z.core.$strip>;
3406
- /**
3407
- * Repository with tags
3408
- */
3409
- export declare const zListTagsResponse: z.ZodObject<{
3410
- name: z.ZodString;
3411
- region: z.ZodString;
3412
- uri: z.ZodString;
3413
- tags: z.ZodArray<z.ZodObject<{
3414
- name: z.ZodString;
3415
- size: z.ZodNumber;
3416
- mediaType: z.ZodOptional<z.ZodString>;
3417
- platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
3418
- }, z.core.$strip>>;
3419
- totalSize: z.ZodNumber;
3420
- }, z.core.$strip>;
3421
- export declare const zDeleteTagPath: z.ZodObject<{
3422
- region: z.ZodString;
3423
- repository: z.ZodString;
3424
- tag: z.ZodString;
3425
- }, z.core.$strip>;
3426
- export declare const zGetTagPath: z.ZodObject<{
3427
- region: z.ZodString;
3428
- repository: z.ZodString;
3429
- tag: z.ZodString;
3430
- }, z.core.$strip>;
3431
- /**
3432
- * Tag details
3433
- */
3434
- export declare const zGetTagResponse: z.ZodObject<{
3435
- name: z.ZodString;
3436
- digest: z.ZodString;
3437
- mediaType: z.ZodOptional<z.ZodString>;
3438
- config: z.ZodOptional<z.ZodObject<{
3439
- size: z.ZodNumber;
3440
- }, z.core.$strip>>;
3441
- layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
3442
- digest: z.ZodOptional<z.ZodString>;
3443
- size: z.ZodNumber;
3444
- }, z.core.$strip>>>;
3445
- manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
3446
- digest: z.ZodString;
3447
- platform: z.ZodOptional<z.ZodObject<{
3448
- architecture: z.ZodString;
3449
- os: z.ZodString;
3450
- variant: z.ZodOptional<z.ZodString>;
3451
- }, z.core.$strip>>;
3452
- layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
3453
- digest: z.ZodOptional<z.ZodString>;
3454
- size: z.ZodNumber;
3455
- }, z.core.$strip>>>;
3456
- size: z.ZodOptional<z.ZodNumber>;
3457
- }, z.core.$strip>>>;
3458
- size: z.ZodNumber;
3459
- region: z.ZodString;
3460
- repository: z.ZodString;
3461
- uri: z.ZodString;
3462
- }, z.core.$strip>;
3463
- /**
3464
- * Tickets for the organization.
3465
- */
3466
- export declare const zListTicketsResponse: z.ZodObject<{
3467
- items: z.ZodArray<z.ZodObject<{
3468
- id: z.ZodString;
3469
- status: z.ZodEnum<{
3470
- closed: "closed";
3471
- waiting_on_us: "waiting_on_us";
3472
- waiting_on_user: "waiting_on_user";
3473
- }>;
3474
- category: z.ZodEnum<{
3475
- billing: "billing";
3476
- technical: "technical";
3477
- general: "general";
3478
- }>;
3479
- summary: z.ZodString;
3480
- closed_at: z.ZodOptional<z.ZodISODateTime>;
3481
- date_created: z.ZodISODateTime;
3482
- date_updated: z.ZodISODateTime;
3483
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
3484
- id: z.ZodString;
3485
- type: z.ZodEnum<{
3486
- customer_reply: "customer_reply";
3487
- agent_reply: "agent_reply";
3488
- }>;
3489
- body: z.ZodString;
3490
- author_first_name: z.ZodOptional<z.ZodString>;
3491
- author_last_name: z.ZodOptional<z.ZodString>;
3492
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3493
- id: z.ZodString;
3494
- filename: z.ZodString;
3495
- content_type: z.ZodString;
3496
- size: z.ZodInt;
3497
- }, z.core.$strip>>>;
3498
- date_created: z.ZodISODateTime;
3499
- }, z.core.$strip>>>;
3500
- }, z.core.$strip>>;
3501
- }, z.core.$strip>;
3502
- export declare const zCreateTicketBody: z.ZodObject<{
3503
- payload: z.ZodOptional<z.ZodString>;
3504
- attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
3505
- }, z.core.$strip>;
3506
- /**
3507
- * Ticket created.
3508
- */
3509
- export declare const zCreateTicketResponse: z.ZodObject<{
3510
- id: z.ZodString;
3511
- status: z.ZodEnum<{
3512
- closed: "closed";
3513
- waiting_on_us: "waiting_on_us";
3514
- waiting_on_user: "waiting_on_user";
3515
- }>;
3516
- category: z.ZodEnum<{
3517
- billing: "billing";
3518
- technical: "technical";
3519
- general: "general";
3520
- }>;
3521
- summary: z.ZodString;
3522
- closed_at: z.ZodOptional<z.ZodISODateTime>;
3523
- date_created: z.ZodISODateTime;
3524
- date_updated: z.ZodISODateTime;
3525
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
3526
- id: z.ZodString;
3527
- type: z.ZodEnum<{
3528
- customer_reply: "customer_reply";
3529
- agent_reply: "agent_reply";
3530
- }>;
3531
- body: z.ZodString;
3532
- author_first_name: z.ZodOptional<z.ZodString>;
3533
- author_last_name: z.ZodOptional<z.ZodString>;
3534
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3535
- id: z.ZodString;
3536
- filename: z.ZodString;
3537
- content_type: z.ZodString;
3538
- size: z.ZodInt;
3539
- }, z.core.$strip>>>;
3540
- date_created: z.ZodISODateTime;
3541
- }, z.core.$strip>>>;
3542
- }, z.core.$strip>;
3543
- export declare const zCloseTicketPath: z.ZodObject<{
3544
- ticket_id: z.ZodString;
3545
- }, z.core.$strip>;
3546
- /**
3547
- * Ticket closed.
3548
- */
3549
- export declare const zCloseTicketResponse: z.ZodObject<{
3550
- id: z.ZodString;
3551
- status: z.ZodEnum<{
3552
- closed: "closed";
3553
- waiting_on_us: "waiting_on_us";
3554
- waiting_on_user: "waiting_on_user";
3555
- }>;
3556
- category: z.ZodEnum<{
3557
- billing: "billing";
3558
- technical: "technical";
3559
- general: "general";
3560
- }>;
3561
- summary: z.ZodString;
3562
- closed_at: z.ZodOptional<z.ZodISODateTime>;
3563
- date_created: z.ZodISODateTime;
3564
- date_updated: z.ZodISODateTime;
3565
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
3566
- id: z.ZodString;
3567
- type: z.ZodEnum<{
3568
- customer_reply: "customer_reply";
3569
- agent_reply: "agent_reply";
3570
- }>;
3571
- body: z.ZodString;
3572
- author_first_name: z.ZodOptional<z.ZodString>;
3573
- author_last_name: z.ZodOptional<z.ZodString>;
3574
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3575
- id: z.ZodString;
3576
- filename: z.ZodString;
3577
- content_type: z.ZodString;
3578
- size: z.ZodInt;
3579
- }, z.core.$strip>>>;
3580
- date_created: z.ZodISODateTime;
3581
- }, z.core.$strip>>>;
3582
- }, z.core.$strip>;
3583
- export declare const zGetTicketPath: z.ZodObject<{
3584
- ticket_id: z.ZodString;
3585
- }, z.core.$strip>;
3586
- /**
3587
- * Ticket with messages (internal notes excluded).
3588
- */
3589
- export declare const zGetTicketResponse: z.ZodObject<{
3590
- id: z.ZodString;
3591
- status: z.ZodEnum<{
3592
- closed: "closed";
3593
- waiting_on_us: "waiting_on_us";
3594
- waiting_on_user: "waiting_on_user";
3595
- }>;
3596
- category: z.ZodEnum<{
3597
- billing: "billing";
3598
- technical: "technical";
3599
- general: "general";
3600
- }>;
3601
- summary: z.ZodString;
3602
- closed_at: z.ZodOptional<z.ZodISODateTime>;
3603
- date_created: z.ZodISODateTime;
3604
- date_updated: z.ZodISODateTime;
3605
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
3606
- id: z.ZodString;
3607
- type: z.ZodEnum<{
3608
- customer_reply: "customer_reply";
3609
- agent_reply: "agent_reply";
3610
- }>;
3611
- body: z.ZodString;
3612
- author_first_name: z.ZodOptional<z.ZodString>;
3613
- author_last_name: z.ZodOptional<z.ZodString>;
3614
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3615
- id: z.ZodString;
3616
- filename: z.ZodString;
3617
- content_type: z.ZodString;
3618
- size: z.ZodInt;
3619
- }, z.core.$strip>>>;
3620
- date_created: z.ZodISODateTime;
3621
- }, z.core.$strip>>>;
3622
- }, z.core.$strip>;
3623
- export declare const zReplyTicketBody: z.ZodObject<{
3624
- payload: z.ZodOptional<z.ZodString>;
3625
- attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
3626
- }, z.core.$strip>;
3627
- export declare const zReplyTicketPath: z.ZodObject<{
3628
- ticket_id: z.ZodString;
3629
- }, z.core.$strip>;
3630
- /**
3631
- * Reply appended.
3632
- */
3633
- export declare const zReplyTicketResponse: z.ZodObject<{
3634
- id: z.ZodString;
3635
- type: z.ZodEnum<{
3636
- customer_reply: "customer_reply";
3637
- agent_reply: "agent_reply";
3638
- }>;
3639
- body: z.ZodString;
3640
- author_first_name: z.ZodOptional<z.ZodString>;
3641
- author_last_name: z.ZodOptional<z.ZodString>;
3642
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3643
- id: z.ZodString;
3644
- filename: z.ZodString;
3645
- content_type: z.ZodString;
3646
- size: z.ZodInt;
3647
- }, z.core.$strip>>>;
3648
- date_created: z.ZodISODateTime;
3649
- }, z.core.$strip>;
3650
- export declare const zGetTicketAttachmentPath: z.ZodObject<{
3651
- ticket_id: z.ZodString;
3652
- attachment_id: z.ZodString;
3653
- }, z.core.$strip>;
3654
- /**
3655
- * Attachment binary stream.
3656
- */
3657
- export declare const zGetTicketAttachmentResponse: z.ZodString;
3658
- /**
3659
- * Returns a list of access token details with masked secrets.
3660
- */
3661
- export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
3662
- name: z.ZodString;
3663
- role: z.ZodEnum<{
3664
- Administrator: "Administrator";
3665
- User: "User";
3666
- }>;
3667
- id: z.ZodOptional<z.ZodString>;
3668
- secret: z.ZodOptional<z.ZodString>;
3669
- date_created: z.ZodISODateTime;
3670
- }, z.core.$strip>>;
3671
- export declare const zCreateTokenBody: z.ZodObject<{
3672
- name: z.ZodString;
3673
- role: z.ZodEnum<{
3674
- Administrator: "Administrator";
3675
- User: "User";
3676
- }>;
3677
- }, z.core.$strip>;
3678
- /**
3679
- * Successfully created. Returns created token details with unmasked/raw secret.
3680
- */
3681
- export declare const zCreateTokenResponse: z.ZodObject<{
3682
- name: z.ZodString;
3683
- role: z.ZodEnum<{
3684
- Administrator: "Administrator";
3685
- User: "User";
3686
- }>;
3687
- id: z.ZodOptional<z.ZodString>;
3688
- secret: z.ZodOptional<z.ZodString>;
3689
- date_created: z.ZodISODateTime;
3690
- }, z.core.$strip>;
3691
- export declare const zDeleteTokenPath: z.ZodObject<{
3692
- token_id: z.ZodString;
3693
- }, z.core.$strip>;
3694
- export declare const zGetTokenPath: z.ZodObject<{
3695
- token_id: z.ZodString;
3696
- }, z.core.$strip>;
3697
- /**
3698
- * Returns access token details with masked secret.
3699
- */
3700
- export declare const zGetTokenResponse: z.ZodObject<{
3701
- name: z.ZodString;
3702
- role: z.ZodEnum<{
3703
- Administrator: "Administrator";
3704
- User: "User";
3705
- }>;
3706
- id: z.ZodOptional<z.ZodString>;
3707
- secret: z.ZodOptional<z.ZodString>;
3708
- date_created: z.ZodISODateTime;
3709
- }, z.core.$strip>;
3710
- export declare const zUpdateTokenBody: z.ZodObject<{
3711
- name: z.ZodOptional<z.ZodString>;
3712
- role: z.ZodOptional<z.ZodEnum<{
3713
- Administrator: "Administrator";
3714
- User: "User";
3715
- }>>;
3716
- }, z.core.$strip>;
3717
- export declare const zUpdateTokenPath: z.ZodObject<{
3718
- token_id: z.ZodString;
3719
- }, z.core.$strip>;
3720
- /**
3721
- * Successfully updated. Returns updated token details with masked secret.
3722
- */
3723
- export declare const zUpdateTokenResponse: z.ZodObject<{
3724
- name: z.ZodString;
3725
- role: z.ZodEnum<{
3726
- Administrator: "Administrator";
3727
- User: "User";
3728
- }>;
3729
- id: z.ZodOptional<z.ZodString>;
3730
- secret: z.ZodOptional<z.ZodString>;
3731
- date_created: z.ZodISODateTime;
3732
- }, z.core.$strip>;
3733
- export declare const zRegenerateTokenPath: z.ZodObject<{
3734
- token_id: z.ZodString;
3735
- }, z.core.$strip>;
3736
- /**
3737
- * Successfully updated. Returns updated token details with unmasked / raw secret.
3738
- */
3739
- export declare const zRegenerateTokenResponse: z.ZodObject<{
3740
- name: z.ZodString;
3741
- role: z.ZodEnum<{
3742
- Administrator: "Administrator";
3743
- User: "User";
3744
- }>;
3745
- id: z.ZodOptional<z.ZodString>;
3746
- secret: z.ZodOptional<z.ZodString>;
3747
- date_created: z.ZodISODateTime;
3748
- }, z.core.$strip>;
3749
- export declare const zListUserOrganizationsPath: z.ZodObject<{
3750
- email: z.ZodString;
3751
- }, z.core.$strip>;
3752
- /**
3753
- * An array of organizations the user belongs to.
3754
- */
3755
- export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
3756
- realm: z.ZodOptional<z.ZodString>;
3757
- displayName: z.ZodOptional<z.ZodString>;
3758
- }, z.core.$strip>>;
3759
- /**
3760
- * An array of users
3761
- */
3762
- export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
3763
- email: z.ZodEmail;
3764
- first_name: z.ZodString;
3765
- last_name: z.ZodString;
3766
- role: z.ZodEnum<{
3767
- Administrator: "Administrator";
3768
- User: "User";
3769
- }>;
3770
- status: z.ZodEnum<{
3771
- active: "active";
3772
- inactive: "inactive";
3773
- }>;
3774
- id: z.ZodUUID;
3775
- date_created: z.ZodISODateTime;
3776
- }, z.core.$strip>>;
3777
- export declare const zCreateUserBody: z.ZodObject<{
3778
- email: z.ZodEmail;
3779
- first_name: z.ZodString;
3780
- last_name: z.ZodString;
3781
- code: z.ZodString;
3782
- password: z.ZodString;
3783
- }, z.core.$strip>;
3784
- /**
3785
- * Successfully created. Returns created user details.
3786
- */
3787
- export declare const zCreateUserResponse: z.ZodObject<{
3788
- email: z.ZodEmail;
3789
- first_name: z.ZodString;
3790
- last_name: z.ZodString;
3791
- role: z.ZodEnum<{
3792
- Administrator: "Administrator";
3793
- User: "User";
3794
- }>;
3795
- status: z.ZodEnum<{
3796
- active: "active";
3797
- inactive: "inactive";
3798
- }>;
3799
- id: z.ZodUUID;
3800
- date_created: z.ZodISODateTime;
3801
- }, z.core.$strip>;
3802
- export declare const zDeleteUserPath: z.ZodObject<{
3803
- user_id: z.ZodString;
3822
+ individual_name: z.ZodString;
3823
+ tax_id: z.ZodOptional<z.ZodString>;
3824
+ tax_id_type: z.ZodOptional<z.ZodEnum<{
3825
+ "": "";
3826
+ ad_nrt: "ad_nrt";
3827
+ ae_trn: "ae_trn";
3828
+ al_tin: "al_tin";
3829
+ am_tin: "am_tin";
3830
+ ao_tin: "ao_tin";
3831
+ ar_cuit: "ar_cuit";
3832
+ at_vat: "at_vat";
3833
+ au_abn: "au_abn";
3834
+ au_arn: "au_arn";
3835
+ ba_tin: "ba_tin";
3836
+ bb_tin: "bb_tin";
3837
+ be_vat: "be_vat";
3838
+ bg_uic: "bg_uic";
3839
+ bg_vat: "bg_vat";
3840
+ bh_vat: "bh_vat";
3841
+ bo_tin: "bo_tin";
3842
+ br_cnpj: "br_cnpj";
3843
+ br_cpf: "br_cpf";
3844
+ bs_tin: "bs_tin";
3845
+ by_tin: "by_tin";
3846
+ ca_bn: "ca_bn";
3847
+ ca_gst_hst: "ca_gst_hst";
3848
+ ca_pst_bc: "ca_pst_bc";
3849
+ ca_pst_mb: "ca_pst_mb";
3850
+ ca_pst_sk: "ca_pst_sk";
3851
+ ca_qst: "ca_qst";
3852
+ cd_nif: "cd_nif";
3853
+ ch_uid: "ch_uid";
3854
+ ch_vat: "ch_vat";
3855
+ cl_tin: "cl_tin";
3856
+ cn_tin: "cn_tin";
3857
+ co_nit: "co_nit";
3858
+ cr_tin: "cr_tin";
3859
+ cy_vat: "cy_vat";
3860
+ cz_vat: "cz_vat";
3861
+ de_stn: "de_stn";
3862
+ de_vat: "de_vat";
3863
+ dk_vat: "dk_vat";
3864
+ do_rcn: "do_rcn";
3865
+ ec_ruc: "ec_ruc";
3866
+ ee_vat: "ee_vat";
3867
+ eg_tin: "eg_tin";
3868
+ es_cif: "es_cif";
3869
+ es_vat: "es_vat";
3870
+ eu_oss_vat: "eu_oss_vat";
3871
+ fi_vat: "fi_vat";
3872
+ fr_vat: "fr_vat";
3873
+ gb_vat: "gb_vat";
3874
+ ge_vat: "ge_vat";
3875
+ gn_nif: "gn_nif";
3876
+ gr_vat: "gr_vat";
3877
+ hk_br: "hk_br";
3878
+ hr_oib: "hr_oib";
3879
+ hr_vat: "hr_vat";
3880
+ hu_tin: "hu_tin";
3881
+ hu_vat: "hu_vat";
3882
+ id_npwp: "id_npwp";
3883
+ ie_vat: "ie_vat";
3884
+ il_vat: "il_vat";
3885
+ in_gst: "in_gst";
3886
+ is_vat: "is_vat";
3887
+ it_vat: "it_vat";
3888
+ jp_cn: "jp_cn";
3889
+ jp_rn: "jp_rn";
3890
+ jp_trn: "jp_trn";
3891
+ ke_pin: "ke_pin";
3892
+ kh_tin: "kh_tin";
3893
+ kr_brn: "kr_brn";
3894
+ kz_bin: "kz_bin";
3895
+ li_uid: "li_uid";
3896
+ li_vat: "li_vat";
3897
+ lt_vat: "lt_vat";
3898
+ lu_vat: "lu_vat";
3899
+ lv_vat: "lv_vat";
3900
+ ma_vat: "ma_vat";
3901
+ md_vat: "md_vat";
3902
+ me_pib: "me_pib";
3903
+ mk_vat: "mk_vat";
3904
+ mr_nif: "mr_nif";
3905
+ mt_vat: "mt_vat";
3906
+ mx_rfc: "mx_rfc";
3907
+ my_frp: "my_frp";
3908
+ my_itn: "my_itn";
3909
+ my_sst: "my_sst";
3910
+ ng_tin: "ng_tin";
3911
+ nl_vat: "nl_vat";
3912
+ no_vat: "no_vat";
3913
+ no_voec: "no_voec";
3914
+ np_pan: "np_pan";
3915
+ nz_gst: "nz_gst";
3916
+ om_vat: "om_vat";
3917
+ pe_ruc: "pe_ruc";
3918
+ ph_tin: "ph_tin";
3919
+ pl_vat: "pl_vat";
3920
+ pt_vat: "pt_vat";
3921
+ ro_tin: "ro_tin";
3922
+ ro_vat: "ro_vat";
3923
+ rs_pib: "rs_pib";
3924
+ ru_inn: "ru_inn";
3925
+ ru_kpp: "ru_kpp";
3926
+ sa_vat: "sa_vat";
3927
+ se_vat: "se_vat";
3928
+ sg_gst: "sg_gst";
3929
+ sg_uen: "sg_uen";
3930
+ si_tin: "si_tin";
3931
+ si_vat: "si_vat";
3932
+ sk_vat: "sk_vat";
3933
+ sn_ninea: "sn_ninea";
3934
+ sr_fin: "sr_fin";
3935
+ sv_nit: "sv_nit";
3936
+ th_vat: "th_vat";
3937
+ tj_tin: "tj_tin";
3938
+ tr_tin: "tr_tin";
3939
+ tw_vat: "tw_vat";
3940
+ tz_vat: "tz_vat";
3941
+ ua_vat: "ua_vat";
3942
+ ug_tin: "ug_tin";
3943
+ us_ein: "us_ein";
3944
+ uy_ruc: "uy_ruc";
3945
+ uz_tin: "uz_tin";
3946
+ uz_vat: "uz_vat";
3947
+ ve_rif: "ve_rif";
3948
+ vn_tin: "vn_tin";
3949
+ xi_vat: "xi_vat";
3950
+ za_vat: "za_vat";
3951
+ zm_tin: "zm_tin";
3952
+ zw_tin: "zw_tin";
3953
+ }>>;
3804
3954
  }, z.core.$strip>;
3805
3955
  /**
3806
- * User profile information
3956
+ * Successfully updated. Returns updated organization details.
3807
3957
  */
3808
- export declare const zDeleteUserResponse: z.ZodObject<{
3809
- email: z.ZodEmail;
3810
- first_name: z.ZodString;
3811
- last_name: z.ZodString;
3812
- role: z.ZodEnum<{
3813
- Administrator: "Administrator";
3814
- User: "User";
3815
- }>;
3816
- status: z.ZodEnum<{
3817
- active: "active";
3818
- inactive: "inactive";
3958
+ export declare const zUpdateContactResponse: z.ZodObject<{
3959
+ type: z.ZodEnum<{
3960
+ business: "business";
3961
+ personal: "personal";
3819
3962
  }>;
3820
- id: z.ZodUUID;
3821
- date_created: z.ZodISODateTime;
3822
- }, z.core.$strip>;
3823
- export declare const zGetUserPath: z.ZodObject<{
3824
- user_id: z.ZodString;
3825
- }, z.core.$strip>;
3826
- /**
3827
- * User profile information
3828
- */
3829
- export declare const zGetUserResponse: z.ZodObject<{
3963
+ company: z.ZodOptional<z.ZodString>;
3964
+ address1: z.ZodOptional<z.ZodString>;
3965
+ address2: z.ZodOptional<z.ZodString>;
3966
+ postalCode: z.ZodOptional<z.ZodString>;
3967
+ city: z.ZodOptional<z.ZodString>;
3968
+ state: z.ZodOptional<z.ZodString>;
3969
+ country: z.ZodOptional<z.ZodString>;
3970
+ phone: z.ZodOptional<z.ZodString>;
3830
3971
  email: z.ZodEmail;
3831
- first_name: z.ZodString;
3832
- last_name: z.ZodString;
3833
- role: z.ZodEnum<{
3834
- Administrator: "Administrator";
3835
- User: "User";
3836
- }>;
3837
- status: z.ZodEnum<{
3838
- active: "active";
3839
- inactive: "inactive";
3840
- }>;
3841
- id: z.ZodUUID;
3842
- date_created: z.ZodISODateTime;
3843
- }, z.core.$strip>;
3844
- export declare const zUpdateUserBody: z.ZodObject<{
3845
- email: z.ZodOptional<z.ZodEmail>;
3846
- first_name: z.ZodOptional<z.ZodString>;
3847
- last_name: z.ZodOptional<z.ZodString>;
3848
- role: z.ZodOptional<z.ZodEnum<{
3849
- Administrator: "Administrator";
3850
- User: "User";
3851
- }>>;
3852
- status: z.ZodOptional<z.ZodEnum<{
3853
- active: "active";
3854
- inactive: "inactive";
3972
+ individual_name: z.ZodString;
3973
+ tax_id: z.ZodOptional<z.ZodString>;
3974
+ tax_id_type: z.ZodOptional<z.ZodEnum<{
3975
+ "": "";
3976
+ ad_nrt: "ad_nrt";
3977
+ ae_trn: "ae_trn";
3978
+ al_tin: "al_tin";
3979
+ am_tin: "am_tin";
3980
+ ao_tin: "ao_tin";
3981
+ ar_cuit: "ar_cuit";
3982
+ at_vat: "at_vat";
3983
+ au_abn: "au_abn";
3984
+ au_arn: "au_arn";
3985
+ ba_tin: "ba_tin";
3986
+ bb_tin: "bb_tin";
3987
+ be_vat: "be_vat";
3988
+ bg_uic: "bg_uic";
3989
+ bg_vat: "bg_vat";
3990
+ bh_vat: "bh_vat";
3991
+ bo_tin: "bo_tin";
3992
+ br_cnpj: "br_cnpj";
3993
+ br_cpf: "br_cpf";
3994
+ bs_tin: "bs_tin";
3995
+ by_tin: "by_tin";
3996
+ ca_bn: "ca_bn";
3997
+ ca_gst_hst: "ca_gst_hst";
3998
+ ca_pst_bc: "ca_pst_bc";
3999
+ ca_pst_mb: "ca_pst_mb";
4000
+ ca_pst_sk: "ca_pst_sk";
4001
+ ca_qst: "ca_qst";
4002
+ cd_nif: "cd_nif";
4003
+ ch_uid: "ch_uid";
4004
+ ch_vat: "ch_vat";
4005
+ cl_tin: "cl_tin";
4006
+ cn_tin: "cn_tin";
4007
+ co_nit: "co_nit";
4008
+ cr_tin: "cr_tin";
4009
+ cy_vat: "cy_vat";
4010
+ cz_vat: "cz_vat";
4011
+ de_stn: "de_stn";
4012
+ de_vat: "de_vat";
4013
+ dk_vat: "dk_vat";
4014
+ do_rcn: "do_rcn";
4015
+ ec_ruc: "ec_ruc";
4016
+ ee_vat: "ee_vat";
4017
+ eg_tin: "eg_tin";
4018
+ es_cif: "es_cif";
4019
+ es_vat: "es_vat";
4020
+ eu_oss_vat: "eu_oss_vat";
4021
+ fi_vat: "fi_vat";
4022
+ fr_vat: "fr_vat";
4023
+ gb_vat: "gb_vat";
4024
+ ge_vat: "ge_vat";
4025
+ gn_nif: "gn_nif";
4026
+ gr_vat: "gr_vat";
4027
+ hk_br: "hk_br";
4028
+ hr_oib: "hr_oib";
4029
+ hr_vat: "hr_vat";
4030
+ hu_tin: "hu_tin";
4031
+ hu_vat: "hu_vat";
4032
+ id_npwp: "id_npwp";
4033
+ ie_vat: "ie_vat";
4034
+ il_vat: "il_vat";
4035
+ in_gst: "in_gst";
4036
+ is_vat: "is_vat";
4037
+ it_vat: "it_vat";
4038
+ jp_cn: "jp_cn";
4039
+ jp_rn: "jp_rn";
4040
+ jp_trn: "jp_trn";
4041
+ ke_pin: "ke_pin";
4042
+ kh_tin: "kh_tin";
4043
+ kr_brn: "kr_brn";
4044
+ kz_bin: "kz_bin";
4045
+ li_uid: "li_uid";
4046
+ li_vat: "li_vat";
4047
+ lt_vat: "lt_vat";
4048
+ lu_vat: "lu_vat";
4049
+ lv_vat: "lv_vat";
4050
+ ma_vat: "ma_vat";
4051
+ md_vat: "md_vat";
4052
+ me_pib: "me_pib";
4053
+ mk_vat: "mk_vat";
4054
+ mr_nif: "mr_nif";
4055
+ mt_vat: "mt_vat";
4056
+ mx_rfc: "mx_rfc";
4057
+ my_frp: "my_frp";
4058
+ my_itn: "my_itn";
4059
+ my_sst: "my_sst";
4060
+ ng_tin: "ng_tin";
4061
+ nl_vat: "nl_vat";
4062
+ no_vat: "no_vat";
4063
+ no_voec: "no_voec";
4064
+ np_pan: "np_pan";
4065
+ nz_gst: "nz_gst";
4066
+ om_vat: "om_vat";
4067
+ pe_ruc: "pe_ruc";
4068
+ ph_tin: "ph_tin";
4069
+ pl_vat: "pl_vat";
4070
+ pt_vat: "pt_vat";
4071
+ ro_tin: "ro_tin";
4072
+ ro_vat: "ro_vat";
4073
+ rs_pib: "rs_pib";
4074
+ ru_inn: "ru_inn";
4075
+ ru_kpp: "ru_kpp";
4076
+ sa_vat: "sa_vat";
4077
+ se_vat: "se_vat";
4078
+ sg_gst: "sg_gst";
4079
+ sg_uen: "sg_uen";
4080
+ si_tin: "si_tin";
4081
+ si_vat: "si_vat";
4082
+ sk_vat: "sk_vat";
4083
+ sn_ninea: "sn_ninea";
4084
+ sr_fin: "sr_fin";
4085
+ sv_nit: "sv_nit";
4086
+ th_vat: "th_vat";
4087
+ tj_tin: "tj_tin";
4088
+ tr_tin: "tr_tin";
4089
+ tw_vat: "tw_vat";
4090
+ tz_vat: "tz_vat";
4091
+ ua_vat: "ua_vat";
4092
+ ug_tin: "ug_tin";
4093
+ us_ein: "us_ein";
4094
+ uy_ruc: "uy_ruc";
4095
+ uz_tin: "uz_tin";
4096
+ uz_vat: "uz_vat";
4097
+ ve_rif: "ve_rif";
4098
+ vn_tin: "vn_tin";
4099
+ xi_vat: "xi_vat";
4100
+ za_vat: "za_vat";
4101
+ zm_tin: "zm_tin";
4102
+ zw_tin: "zw_tin";
3855
4103
  }>>;
3856
4104
  }, z.core.$strip>;
3857
- export declare const zUpdateUserPath: z.ZodObject<{
3858
- user_id: z.ZodString;
3859
- }, z.core.$strip>;
3860
4105
  /**
3861
- * Successfully created. Returns created user details.
4106
+ * An array of the applied promotional credits records.
3862
4107
  */
3863
- export declare const zUpdateUserResponse: z.ZodObject<{
3864
- email: z.ZodEmail;
3865
- first_name: z.ZodString;
3866
- last_name: z.ZodString;
3867
- role: z.ZodEnum<{
3868
- Administrator: "Administrator";
3869
- User: "User";
3870
- }>;
3871
- status: z.ZodEnum<{
3872
- active: "active";
3873
- inactive: "inactive";
4108
+ export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
4109
+ id: z.ZodOptional<z.ZodString>;
4110
+ type: z.ZodEnum<{
4111
+ credit: "credit";
4112
+ discount: "discount";
3874
4113
  }>;
3875
- id: z.ZodUUID;
3876
- date_created: z.ZodISODateTime;
4114
+ date_start: z.ZodISODateTime;
4115
+ date_end: z.ZodOptional<z.ZodISODateTime>;
4116
+ code: z.ZodString;
4117
+ description: z.ZodOptional<z.ZodString>;
4118
+ value_total: z.ZodNumber;
4119
+ value_remaining: z.ZodOptional<z.ZodNumber>;
4120
+ }, z.core.$strip>>;
4121
+ export declare const zRedeemCreditsBody: z.ZodObject<{
4122
+ code: z.ZodOptional<z.ZodString>;
3877
4123
  }, z.core.$strip>;
3878
4124
  //# sourceMappingURL=zod.gen.d.ts.map