@cloudfleet/sdk 0.0.1-da678d2 → 0.0.1-dc16042
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/@tanstack/react-query.gen.d.ts +1125 -0
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -0
- package/dist/@tanstack/react-query.gen.js +1129 -0
- package/dist/@tanstack/react-query.gen.js.map +1 -0
- package/dist/client/client.gen.d.ts.map +1 -1
- package/dist/client/client.gen.js +108 -123
- package/dist/client/client.gen.js.map +1 -1
- package/dist/client/types.gen.d.ts +7 -4
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.d.ts +5 -1
- package/dist/client/utils.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.js +1 -1
- package/dist/client/utils.gen.js.map +1 -1
- package/dist/client.gen.d.ts +1 -1
- package/dist/client.gen.d.ts.map +1 -1
- package/dist/core/bodySerializer.gen.d.ts +4 -4
- package/dist/core/bodySerializer.gen.d.ts.map +1 -1
- package/dist/core/bodySerializer.gen.js.map +1 -1
- package/dist/core/serverSentEvents.gen.d.ts +1 -1
- package/dist/core/serverSentEvents.gen.d.ts.map +1 -1
- package/dist/core/serverSentEvents.gen.js +3 -4
- package/dist/core/serverSentEvents.gen.js.map +1 -1
- package/dist/core/types.gen.d.ts +1 -1
- package/dist/core/utils.gen.js +1 -1
- package/dist/core/utils.gen.js.map +1 -1
- package/dist/schemas.gen.d.ts +415 -27
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +503 -29
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +41 -3
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +67 -0
- package/dist/sdk.gen.js.map +1 -1
- package/dist/services/kubernetes/api.d.ts +8 -8
- package/dist/types.gen.d.ts +358 -16
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +672 -568
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +251 -312
- package/dist/zod.gen.js.map +1 -1
- package/package.json +23 -4
package/dist/zod.gen.d.ts
CHANGED
|
@@ -199,18 +199,18 @@ export declare const zClusterCreateInput: z.ZodObject<{
|
|
|
199
199
|
basic: "basic";
|
|
200
200
|
pro: "pro";
|
|
201
201
|
}>;
|
|
202
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
202
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
203
203
|
"staging-1a": "staging-1a";
|
|
204
204
|
"northamerica-central-1": "northamerica-central-1";
|
|
205
205
|
"europe-central-1a": "europe-central-1a";
|
|
206
206
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
207
|
-
}
|
|
208
|
-
version_channel: z.ZodOptional<z.ZodEnum<{
|
|
207
|
+
}>>>;
|
|
208
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
209
209
|
"1.x.x-cfke.x": "1.x.x-cfke.x";
|
|
210
210
|
"1.31.x-cfke.x": "1.31.x-cfke.x";
|
|
211
211
|
"1.32.x-cfke.x": "1.32.x-cfke.x";
|
|
212
212
|
"1.33.x-cfke.x": "1.33.x-cfke.x";
|
|
213
|
-
}
|
|
213
|
+
}>>>;
|
|
214
214
|
}, z.core.$strip>;
|
|
215
215
|
export declare const zClusterJoinInformation: z.ZodObject<{
|
|
216
216
|
certificate_authority: z.ZodString;
|
|
@@ -236,12 +236,12 @@ export declare const zCluster: z.ZodObject<{
|
|
|
236
236
|
basic: "basic";
|
|
237
237
|
pro: "pro";
|
|
238
238
|
}>;
|
|
239
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
239
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
240
240
|
"staging-1a": "staging-1a";
|
|
241
241
|
"northamerica-central-1": "northamerica-central-1";
|
|
242
242
|
"europe-central-1a": "europe-central-1a";
|
|
243
243
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
244
|
-
}
|
|
244
|
+
}>>>;
|
|
245
245
|
id: z.ZodUUID;
|
|
246
246
|
status: z.ZodEnum<{
|
|
247
247
|
deleted: "deleted";
|
|
@@ -255,6 +255,9 @@ export declare const zCluster: z.ZodObject<{
|
|
|
255
255
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
256
256
|
"": "";
|
|
257
257
|
}>]>>;
|
|
258
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
259
|
+
"": "";
|
|
260
|
+
}>]>>;
|
|
258
261
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
259
262
|
version_current: z.ZodOptional<z.ZodString>;
|
|
260
263
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -390,8 +393,6 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
390
393
|
id: z.ZodString;
|
|
391
394
|
label: z.ZodString;
|
|
392
395
|
}, z.core.$strip>>;
|
|
393
|
-
copilot_user_hourly_tokens: z.ZodInt;
|
|
394
|
-
copilot_organization_hourly_tokens: z.ZodInt;
|
|
395
396
|
cfcr_storage_gb: z.ZodInt;
|
|
396
397
|
}, z.core.$strip>;
|
|
397
398
|
status: z.ZodEnum<{
|
|
@@ -433,8 +434,6 @@ export declare const zPlatformQuota: z.ZodObject<{
|
|
|
433
434
|
id: z.ZodString;
|
|
434
435
|
label: z.ZodString;
|
|
435
436
|
}, z.core.$strip>>;
|
|
436
|
-
copilot_user_hourly_tokens: z.ZodInt;
|
|
437
|
-
copilot_organization_hourly_tokens: z.ZodInt;
|
|
438
437
|
cfcr_storage_gb: z.ZodInt;
|
|
439
438
|
}, z.core.$strip>;
|
|
440
439
|
export declare const zRegistryRepository: z.ZodObject<{
|
|
@@ -483,6 +482,111 @@ export declare const zRegistryTag: z.ZodObject<{
|
|
|
483
482
|
repository: z.ZodString;
|
|
484
483
|
uri: z.ZodString;
|
|
485
484
|
}, z.core.$strip>;
|
|
485
|
+
export declare const zTicketAttachment: z.ZodObject<{
|
|
486
|
+
id: z.ZodString;
|
|
487
|
+
filename: z.ZodString;
|
|
488
|
+
content_type: z.ZodString;
|
|
489
|
+
size: z.ZodInt;
|
|
490
|
+
}, z.core.$strip>;
|
|
491
|
+
export declare const zTicketCreateInput: z.ZodObject<{
|
|
492
|
+
category: z.ZodEnum<{
|
|
493
|
+
billing: "billing";
|
|
494
|
+
technical: "technical";
|
|
495
|
+
general: "general";
|
|
496
|
+
}>;
|
|
497
|
+
body: z.ZodString;
|
|
498
|
+
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
499
|
+
}, z.core.$strip>;
|
|
500
|
+
export declare const zTicketListResponse: z.ZodObject<{
|
|
501
|
+
items: z.ZodArray<z.ZodObject<{
|
|
502
|
+
id: z.ZodString;
|
|
503
|
+
status: z.ZodEnum<{
|
|
504
|
+
closed: "closed";
|
|
505
|
+
waiting_on_us: "waiting_on_us";
|
|
506
|
+
waiting_on_user: "waiting_on_user";
|
|
507
|
+
}>;
|
|
508
|
+
category: z.ZodEnum<{
|
|
509
|
+
billing: "billing";
|
|
510
|
+
technical: "technical";
|
|
511
|
+
general: "general";
|
|
512
|
+
}>;
|
|
513
|
+
summary: z.ZodString;
|
|
514
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
515
|
+
date_created: z.ZodISODateTime;
|
|
516
|
+
date_updated: z.ZodISODateTime;
|
|
517
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
518
|
+
id: z.ZodString;
|
|
519
|
+
type: z.ZodEnum<{
|
|
520
|
+
customer_reply: "customer_reply";
|
|
521
|
+
agent_reply: "agent_reply";
|
|
522
|
+
}>;
|
|
523
|
+
body: z.ZodString;
|
|
524
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
525
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
526
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
527
|
+
id: z.ZodString;
|
|
528
|
+
filename: z.ZodString;
|
|
529
|
+
content_type: z.ZodString;
|
|
530
|
+
size: z.ZodInt;
|
|
531
|
+
}, z.core.$strip>>>;
|
|
532
|
+
date_created: z.ZodISODateTime;
|
|
533
|
+
}, z.core.$strip>>>;
|
|
534
|
+
}, z.core.$strip>>;
|
|
535
|
+
}, z.core.$strip>;
|
|
536
|
+
export declare const zTicketMessageInput: z.ZodObject<{
|
|
537
|
+
body: z.ZodString;
|
|
538
|
+
}, z.core.$strip>;
|
|
539
|
+
export declare const zTicketMessage: z.ZodObject<{
|
|
540
|
+
id: z.ZodString;
|
|
541
|
+
type: z.ZodEnum<{
|
|
542
|
+
customer_reply: "customer_reply";
|
|
543
|
+
agent_reply: "agent_reply";
|
|
544
|
+
}>;
|
|
545
|
+
body: z.ZodString;
|
|
546
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
547
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
548
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
549
|
+
id: z.ZodString;
|
|
550
|
+
filename: z.ZodString;
|
|
551
|
+
content_type: z.ZodString;
|
|
552
|
+
size: z.ZodInt;
|
|
553
|
+
}, z.core.$strip>>>;
|
|
554
|
+
date_created: z.ZodISODateTime;
|
|
555
|
+
}, z.core.$strip>;
|
|
556
|
+
export declare const zTicket: z.ZodObject<{
|
|
557
|
+
id: z.ZodString;
|
|
558
|
+
status: z.ZodEnum<{
|
|
559
|
+
closed: "closed";
|
|
560
|
+
waiting_on_us: "waiting_on_us";
|
|
561
|
+
waiting_on_user: "waiting_on_user";
|
|
562
|
+
}>;
|
|
563
|
+
category: z.ZodEnum<{
|
|
564
|
+
billing: "billing";
|
|
565
|
+
technical: "technical";
|
|
566
|
+
general: "general";
|
|
567
|
+
}>;
|
|
568
|
+
summary: z.ZodString;
|
|
569
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
570
|
+
date_created: z.ZodISODateTime;
|
|
571
|
+
date_updated: z.ZodISODateTime;
|
|
572
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
573
|
+
id: z.ZodString;
|
|
574
|
+
type: z.ZodEnum<{
|
|
575
|
+
customer_reply: "customer_reply";
|
|
576
|
+
agent_reply: "agent_reply";
|
|
577
|
+
}>;
|
|
578
|
+
body: z.ZodString;
|
|
579
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
580
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
581
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
582
|
+
id: z.ZodString;
|
|
583
|
+
filename: z.ZodString;
|
|
584
|
+
content_type: z.ZodString;
|
|
585
|
+
size: z.ZodInt;
|
|
586
|
+
}, z.core.$strip>>>;
|
|
587
|
+
date_created: z.ZodISODateTime;
|
|
588
|
+
}, z.core.$strip>>>;
|
|
589
|
+
}, z.core.$strip>;
|
|
486
590
|
export declare const zTokenCreateInput: z.ZodObject<{
|
|
487
591
|
name: z.ZodString;
|
|
488
592
|
role: z.ZodEnum<{
|
|
@@ -576,16 +680,12 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
576
680
|
inactive: "inactive";
|
|
577
681
|
}>>;
|
|
578
682
|
}, z.core.$strip>;
|
|
579
|
-
export declare const
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
daily: "daily";
|
|
586
|
-
monthly: "monthly";
|
|
587
|
-
}>>;
|
|
588
|
-
}, z.core.$strip>>;
|
|
683
|
+
export declare const zGetUsageQuery: z.ZodObject<{
|
|
684
|
+
granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
685
|
+
hourly: "hourly";
|
|
686
|
+
daily: "daily";
|
|
687
|
+
monthly: "monthly";
|
|
688
|
+
}>>>;
|
|
589
689
|
}, z.core.$strip>;
|
|
590
690
|
/**
|
|
591
691
|
* Usage data with facets for filtering
|
|
@@ -604,11 +704,6 @@ export declare const zGetUsageResponse: z.ZodObject<{
|
|
|
604
704
|
product: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
605
705
|
}, z.core.$strip>;
|
|
606
706
|
}, z.core.$strip>;
|
|
607
|
-
export declare const zGetPaymentMethodData: z.ZodObject<{
|
|
608
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
609
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
610
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
611
|
-
}, z.core.$strip>;
|
|
612
707
|
/**
|
|
613
708
|
* Redacted payment card information.
|
|
614
709
|
*/
|
|
@@ -633,11 +728,6 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
633
728
|
visa: "visa";
|
|
634
729
|
}>;
|
|
635
730
|
}, z.core.$strip>;
|
|
636
|
-
export declare const zGetPaymentMethodSecretData: z.ZodObject<{
|
|
637
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
638
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
639
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
640
|
-
}, z.core.$strip>;
|
|
641
731
|
/**
|
|
642
732
|
* The client secret. Used for client-side retrieval using a publishable key. The client secret can be used to complete a payment from your frontend. It should not be stored, logged, or exposed to anyone other than the customer. Make sure that you have TLS enabled on any page that includes the client secret.
|
|
643
733
|
*
|
|
@@ -645,11 +735,6 @@ export declare const zGetPaymentMethodSecretData: z.ZodObject<{
|
|
|
645
735
|
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
646
736
|
id: z.ZodOptional<z.ZodString>;
|
|
647
737
|
}, z.core.$strip>;
|
|
648
|
-
export declare const zListInvoicesData: z.ZodObject<{
|
|
649
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
650
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
651
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
652
|
-
}, z.core.$strip>;
|
|
653
738
|
/**
|
|
654
739
|
* An array of usage records.
|
|
655
740
|
*/
|
|
@@ -664,11 +749,6 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
664
749
|
period_end: z.ZodISODateTime;
|
|
665
750
|
invoice_pdf: z.ZodOptional<z.ZodString>;
|
|
666
751
|
}, z.core.$strip>>;
|
|
667
|
-
export declare const zGetContactData: z.ZodObject<{
|
|
668
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
669
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
670
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
671
|
-
}, z.core.$strip>;
|
|
672
752
|
/**
|
|
673
753
|
* Returns a single object containing organization contact and billing address details.
|
|
674
754
|
*/
|
|
@@ -815,152 +895,148 @@ export declare const zGetContactResponse: z.ZodObject<{
|
|
|
815
895
|
zw_tin: "zw_tin";
|
|
816
896
|
}>>;
|
|
817
897
|
}, z.core.$strip>;
|
|
818
|
-
export declare const
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
}>>;
|
|
961
|
-
}, z.core.$strip>;
|
|
962
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
963
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
898
|
+
export declare const zUpdateContactBody: z.ZodObject<{
|
|
899
|
+
company: z.ZodOptional<z.ZodString>;
|
|
900
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
901
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
902
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
903
|
+
city: z.ZodOptional<z.ZodString>;
|
|
904
|
+
state: z.ZodOptional<z.ZodString>;
|
|
905
|
+
country: z.ZodOptional<z.ZodString>;
|
|
906
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
907
|
+
email: z.ZodEmail;
|
|
908
|
+
individual_name: z.ZodString;
|
|
909
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
910
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
911
|
+
"": "";
|
|
912
|
+
ad_nrt: "ad_nrt";
|
|
913
|
+
ae_trn: "ae_trn";
|
|
914
|
+
al_tin: "al_tin";
|
|
915
|
+
am_tin: "am_tin";
|
|
916
|
+
ao_tin: "ao_tin";
|
|
917
|
+
ar_cuit: "ar_cuit";
|
|
918
|
+
at_vat: "at_vat";
|
|
919
|
+
au_abn: "au_abn";
|
|
920
|
+
au_arn: "au_arn";
|
|
921
|
+
ba_tin: "ba_tin";
|
|
922
|
+
bb_tin: "bb_tin";
|
|
923
|
+
be_vat: "be_vat";
|
|
924
|
+
bg_uic: "bg_uic";
|
|
925
|
+
bg_vat: "bg_vat";
|
|
926
|
+
bh_vat: "bh_vat";
|
|
927
|
+
bo_tin: "bo_tin";
|
|
928
|
+
br_cnpj: "br_cnpj";
|
|
929
|
+
br_cpf: "br_cpf";
|
|
930
|
+
bs_tin: "bs_tin";
|
|
931
|
+
by_tin: "by_tin";
|
|
932
|
+
ca_bn: "ca_bn";
|
|
933
|
+
ca_gst_hst: "ca_gst_hst";
|
|
934
|
+
ca_pst_bc: "ca_pst_bc";
|
|
935
|
+
ca_pst_mb: "ca_pst_mb";
|
|
936
|
+
ca_pst_sk: "ca_pst_sk";
|
|
937
|
+
ca_qst: "ca_qst";
|
|
938
|
+
cd_nif: "cd_nif";
|
|
939
|
+
ch_uid: "ch_uid";
|
|
940
|
+
ch_vat: "ch_vat";
|
|
941
|
+
cl_tin: "cl_tin";
|
|
942
|
+
cn_tin: "cn_tin";
|
|
943
|
+
co_nit: "co_nit";
|
|
944
|
+
cr_tin: "cr_tin";
|
|
945
|
+
cy_vat: "cy_vat";
|
|
946
|
+
cz_vat: "cz_vat";
|
|
947
|
+
de_stn: "de_stn";
|
|
948
|
+
de_vat: "de_vat";
|
|
949
|
+
dk_vat: "dk_vat";
|
|
950
|
+
do_rcn: "do_rcn";
|
|
951
|
+
ec_ruc: "ec_ruc";
|
|
952
|
+
ee_vat: "ee_vat";
|
|
953
|
+
eg_tin: "eg_tin";
|
|
954
|
+
es_cif: "es_cif";
|
|
955
|
+
es_vat: "es_vat";
|
|
956
|
+
eu_oss_vat: "eu_oss_vat";
|
|
957
|
+
fi_vat: "fi_vat";
|
|
958
|
+
fr_vat: "fr_vat";
|
|
959
|
+
gb_vat: "gb_vat";
|
|
960
|
+
ge_vat: "ge_vat";
|
|
961
|
+
gn_nif: "gn_nif";
|
|
962
|
+
gr_vat: "gr_vat";
|
|
963
|
+
hk_br: "hk_br";
|
|
964
|
+
hr_oib: "hr_oib";
|
|
965
|
+
hr_vat: "hr_vat";
|
|
966
|
+
hu_tin: "hu_tin";
|
|
967
|
+
hu_vat: "hu_vat";
|
|
968
|
+
id_npwp: "id_npwp";
|
|
969
|
+
ie_vat: "ie_vat";
|
|
970
|
+
il_vat: "il_vat";
|
|
971
|
+
in_gst: "in_gst";
|
|
972
|
+
is_vat: "is_vat";
|
|
973
|
+
it_vat: "it_vat";
|
|
974
|
+
jp_cn: "jp_cn";
|
|
975
|
+
jp_rn: "jp_rn";
|
|
976
|
+
jp_trn: "jp_trn";
|
|
977
|
+
ke_pin: "ke_pin";
|
|
978
|
+
kh_tin: "kh_tin";
|
|
979
|
+
kr_brn: "kr_brn";
|
|
980
|
+
kz_bin: "kz_bin";
|
|
981
|
+
li_uid: "li_uid";
|
|
982
|
+
li_vat: "li_vat";
|
|
983
|
+
lt_vat: "lt_vat";
|
|
984
|
+
lu_vat: "lu_vat";
|
|
985
|
+
lv_vat: "lv_vat";
|
|
986
|
+
ma_vat: "ma_vat";
|
|
987
|
+
md_vat: "md_vat";
|
|
988
|
+
me_pib: "me_pib";
|
|
989
|
+
mk_vat: "mk_vat";
|
|
990
|
+
mr_nif: "mr_nif";
|
|
991
|
+
mt_vat: "mt_vat";
|
|
992
|
+
mx_rfc: "mx_rfc";
|
|
993
|
+
my_frp: "my_frp";
|
|
994
|
+
my_itn: "my_itn";
|
|
995
|
+
my_sst: "my_sst";
|
|
996
|
+
ng_tin: "ng_tin";
|
|
997
|
+
nl_vat: "nl_vat";
|
|
998
|
+
no_vat: "no_vat";
|
|
999
|
+
no_voec: "no_voec";
|
|
1000
|
+
np_pan: "np_pan";
|
|
1001
|
+
nz_gst: "nz_gst";
|
|
1002
|
+
om_vat: "om_vat";
|
|
1003
|
+
pe_ruc: "pe_ruc";
|
|
1004
|
+
ph_tin: "ph_tin";
|
|
1005
|
+
pl_vat: "pl_vat";
|
|
1006
|
+
pt_vat: "pt_vat";
|
|
1007
|
+
ro_tin: "ro_tin";
|
|
1008
|
+
ro_vat: "ro_vat";
|
|
1009
|
+
rs_pib: "rs_pib";
|
|
1010
|
+
ru_inn: "ru_inn";
|
|
1011
|
+
ru_kpp: "ru_kpp";
|
|
1012
|
+
sa_vat: "sa_vat";
|
|
1013
|
+
se_vat: "se_vat";
|
|
1014
|
+
sg_gst: "sg_gst";
|
|
1015
|
+
sg_uen: "sg_uen";
|
|
1016
|
+
si_tin: "si_tin";
|
|
1017
|
+
si_vat: "si_vat";
|
|
1018
|
+
sk_vat: "sk_vat";
|
|
1019
|
+
sn_ninea: "sn_ninea";
|
|
1020
|
+
sr_fin: "sr_fin";
|
|
1021
|
+
sv_nit: "sv_nit";
|
|
1022
|
+
th_vat: "th_vat";
|
|
1023
|
+
tj_tin: "tj_tin";
|
|
1024
|
+
tr_tin: "tr_tin";
|
|
1025
|
+
tw_vat: "tw_vat";
|
|
1026
|
+
tz_vat: "tz_vat";
|
|
1027
|
+
ua_vat: "ua_vat";
|
|
1028
|
+
ug_tin: "ug_tin";
|
|
1029
|
+
us_ein: "us_ein";
|
|
1030
|
+
uy_ruc: "uy_ruc";
|
|
1031
|
+
uz_tin: "uz_tin";
|
|
1032
|
+
uz_vat: "uz_vat";
|
|
1033
|
+
ve_rif: "ve_rif";
|
|
1034
|
+
vn_tin: "vn_tin";
|
|
1035
|
+
xi_vat: "xi_vat";
|
|
1036
|
+
za_vat: "za_vat";
|
|
1037
|
+
zm_tin: "zm_tin";
|
|
1038
|
+
zw_tin: "zw_tin";
|
|
1039
|
+
}>>;
|
|
964
1040
|
}, z.core.$strip>;
|
|
965
1041
|
/**
|
|
966
1042
|
* Successfully updated. Returns updated organization details.
|
|
@@ -1108,11 +1184,6 @@ export declare const zUpdateContactResponse: z.ZodObject<{
|
|
|
1108
1184
|
zw_tin: "zw_tin";
|
|
1109
1185
|
}>>;
|
|
1110
1186
|
}, z.core.$strip>;
|
|
1111
|
-
export declare const zGetCreditsData: z.ZodObject<{
|
|
1112
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1113
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1114
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1115
|
-
}, z.core.$strip>;
|
|
1116
1187
|
/**
|
|
1117
1188
|
* An array of the applied promotional credits records.
|
|
1118
1189
|
*/
|
|
@@ -1129,19 +1200,11 @@ export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1129
1200
|
value_total: z.ZodNumber;
|
|
1130
1201
|
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
1131
1202
|
}, z.core.$strip>>;
|
|
1132
|
-
export declare const
|
|
1133
|
-
|
|
1134
|
-
code: z.ZodOptional<z.ZodString>;
|
|
1135
|
-
}, z.core.$strip>;
|
|
1136
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1137
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1203
|
+
export declare const zRedeemCreditsBody: z.ZodObject<{
|
|
1204
|
+
code: z.ZodOptional<z.ZodString>;
|
|
1138
1205
|
}, z.core.$strip>;
|
|
1139
|
-
export declare const
|
|
1140
|
-
|
|
1141
|
-
path: z.ZodObject<{
|
|
1142
|
-
cluster_id: z.ZodString;
|
|
1143
|
-
}, z.core.$strip>;
|
|
1144
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1206
|
+
export declare const zListChartsPath: z.ZodObject<{
|
|
1207
|
+
cluster_id: z.ZodString;
|
|
1145
1208
|
}, z.core.$strip>;
|
|
1146
1209
|
/**
|
|
1147
1210
|
* An array of charts
|
|
@@ -1173,42 +1236,31 @@ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1173
1236
|
updated_at: z.ZodString;
|
|
1174
1237
|
ready: z.ZodBoolean;
|
|
1175
1238
|
}, z.core.$strip>>;
|
|
1176
|
-
export declare const
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
cluster_id: z.ZodString;
|
|
1186
|
-
}, z.core.$strip>;
|
|
1187
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1239
|
+
export declare const zCreateChartBody: z.ZodObject<{
|
|
1240
|
+
values: z.ZodString;
|
|
1241
|
+
version_channel: z.ZodString;
|
|
1242
|
+
name: z.ZodString;
|
|
1243
|
+
namespace: z.ZodString;
|
|
1244
|
+
chart: z.ZodString;
|
|
1245
|
+
}, z.core.$strip>;
|
|
1246
|
+
export declare const zCreateChartPath: z.ZodObject<{
|
|
1247
|
+
cluster_id: z.ZodString;
|
|
1188
1248
|
}, z.core.$strip>;
|
|
1189
1249
|
/**
|
|
1190
1250
|
* Successfully created. Returns created Chart ID.
|
|
1191
1251
|
*/
|
|
1192
1252
|
export declare const zCreateChartResponse: z.ZodString;
|
|
1193
|
-
export declare const
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
cluster_id: z.ZodString;
|
|
1197
|
-
chart_name: z.ZodString;
|
|
1198
|
-
}, z.core.$strip>;
|
|
1199
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1253
|
+
export declare const zDeleteChartPath: z.ZodObject<{
|
|
1254
|
+
cluster_id: z.ZodString;
|
|
1255
|
+
chart_name: z.ZodString;
|
|
1200
1256
|
}, z.core.$strip>;
|
|
1201
1257
|
/**
|
|
1202
1258
|
* Successfully deleted.
|
|
1203
1259
|
*/
|
|
1204
1260
|
export declare const zDeleteChartResponse: z.ZodString;
|
|
1205
|
-
export declare const
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
cluster_id: z.ZodString;
|
|
1209
|
-
chart_name: z.ZodString;
|
|
1210
|
-
}, z.core.$strip>;
|
|
1211
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1261
|
+
export declare const zGetChartPath: z.ZodObject<{
|
|
1262
|
+
cluster_id: z.ZodString;
|
|
1263
|
+
chart_name: z.ZodString;
|
|
1212
1264
|
}, z.core.$strip>;
|
|
1213
1265
|
/**
|
|
1214
1266
|
* Returns a single object containing chart details.
|
|
@@ -1240,27 +1292,20 @@ export declare const zGetChartResponse: z.ZodObject<{
|
|
|
1240
1292
|
updated_at: z.ZodString;
|
|
1241
1293
|
ready: z.ZodBoolean;
|
|
1242
1294
|
}, z.core.$strip>;
|
|
1243
|
-
export declare const
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
chart_name: z.ZodString;
|
|
1251
|
-
}, z.core.$strip>;
|
|
1252
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1295
|
+
export declare const zUpdateChartBody: z.ZodObject<{
|
|
1296
|
+
values: z.ZodString;
|
|
1297
|
+
version_channel: z.ZodString;
|
|
1298
|
+
}, z.core.$strip>;
|
|
1299
|
+
export declare const zUpdateChartPath: z.ZodObject<{
|
|
1300
|
+
cluster_id: z.ZodString;
|
|
1301
|
+
chart_name: z.ZodString;
|
|
1253
1302
|
}, z.core.$strip>;
|
|
1254
1303
|
/**
|
|
1255
1304
|
* Successfully updated.
|
|
1256
1305
|
*/
|
|
1257
1306
|
export declare const zUpdateChartResponse: z.ZodString;
|
|
1258
|
-
export declare const
|
|
1259
|
-
|
|
1260
|
-
path: z.ZodObject<{
|
|
1261
|
-
cluster_id: z.ZodString;
|
|
1262
|
-
}, z.core.$strip>;
|
|
1263
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1307
|
+
export declare const zListFleetsPath: z.ZodObject<{
|
|
1308
|
+
cluster_id: z.ZodString;
|
|
1264
1309
|
}, z.core.$strip>;
|
|
1265
1310
|
/**
|
|
1266
1311
|
* An array of fleets
|
|
@@ -1283,53 +1328,42 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1283
1328
|
}, z.core.$strip>>;
|
|
1284
1329
|
id: z.ZodString;
|
|
1285
1330
|
}, z.core.$strip>>;
|
|
1286
|
-
export declare const
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
cluster_id: z.ZodString;
|
|
1307
|
-
}, z.core.$strip>;
|
|
1308
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1331
|
+
export declare const zCreateFleetBody: z.ZodObject<{
|
|
1332
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
1333
|
+
cpu: z.ZodNumber;
|
|
1334
|
+
}, z.core.$strip>>;
|
|
1335
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
1336
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1337
|
+
project: z.ZodString;
|
|
1338
|
+
}, z.core.$strip>>;
|
|
1339
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1340
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1341
|
+
apiKey: z.ZodString;
|
|
1342
|
+
}, z.core.$strip>>;
|
|
1343
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
1344
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1345
|
+
controllerRoleArn: z.ZodString;
|
|
1346
|
+
}, z.core.$strip>>;
|
|
1347
|
+
id: z.ZodString;
|
|
1348
|
+
}, z.core.$strip>;
|
|
1349
|
+
export declare const zCreateFleetPath: z.ZodObject<{
|
|
1350
|
+
cluster_id: z.ZodString;
|
|
1309
1351
|
}, z.core.$strip>;
|
|
1310
1352
|
/**
|
|
1311
1353
|
* Successfully created. Returns created Fleet ID.
|
|
1312
1354
|
*/
|
|
1313
1355
|
export declare const zCreateFleetResponse: z.ZodString;
|
|
1314
|
-
export declare const
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
cluster_id: z.ZodString;
|
|
1318
|
-
fleet_name: z.ZodString;
|
|
1319
|
-
}, z.core.$strip>;
|
|
1320
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1356
|
+
export declare const zDeleteFleetPath: z.ZodObject<{
|
|
1357
|
+
cluster_id: z.ZodString;
|
|
1358
|
+
fleet_name: z.ZodString;
|
|
1321
1359
|
}, z.core.$strip>;
|
|
1322
1360
|
/**
|
|
1323
1361
|
* Successfully deleted.
|
|
1324
1362
|
*/
|
|
1325
1363
|
export declare const zDeleteFleetResponse: z.ZodString;
|
|
1326
|
-
export declare const
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
cluster_id: z.ZodString;
|
|
1330
|
-
fleet_name: z.ZodString;
|
|
1331
|
-
}, z.core.$strip>;
|
|
1332
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1364
|
+
export declare const zGetFleetPath: z.ZodObject<{
|
|
1365
|
+
cluster_id: z.ZodString;
|
|
1366
|
+
fleet_name: z.ZodString;
|
|
1333
1367
|
}, z.core.$strip>;
|
|
1334
1368
|
/**
|
|
1335
1369
|
* Returns a single object containing fleet details.
|
|
@@ -1352,45 +1386,33 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1352
1386
|
}, z.core.$strip>>;
|
|
1353
1387
|
id: z.ZodString;
|
|
1354
1388
|
}, z.core.$strip>;
|
|
1355
|
-
export declare const
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
fleet_name: z.ZodString;
|
|
1376
|
-
}, z.core.$strip>;
|
|
1377
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1389
|
+
export declare const zUpdateFleetBody: z.ZodObject<{
|
|
1390
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
1391
|
+
cpu: z.ZodNumber;
|
|
1392
|
+
}, z.core.$strip>>;
|
|
1393
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
1394
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1395
|
+
project: z.ZodString;
|
|
1396
|
+
}, z.core.$strip>>;
|
|
1397
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1398
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1399
|
+
apiKey: z.ZodString;
|
|
1400
|
+
}, z.core.$strip>>;
|
|
1401
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
1402
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1403
|
+
controllerRoleArn: z.ZodString;
|
|
1404
|
+
}, z.core.$strip>>;
|
|
1405
|
+
}, z.core.$strip>;
|
|
1406
|
+
export declare const zUpdateFleetPath: z.ZodObject<{
|
|
1407
|
+
cluster_id: z.ZodString;
|
|
1408
|
+
fleet_name: z.ZodString;
|
|
1378
1409
|
}, z.core.$strip>;
|
|
1379
1410
|
/**
|
|
1380
1411
|
* Successfully updated.
|
|
1381
1412
|
*/
|
|
1382
1413
|
export declare const zUpdateFleetResponse: z.ZodString;
|
|
1383
|
-
export declare const
|
|
1384
|
-
|
|
1385
|
-
path: z.ZodObject<{
|
|
1386
|
-
cluster_id: z.ZodString;
|
|
1387
|
-
}, z.core.$strip>;
|
|
1388
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1389
|
-
}, z.core.$strip>;
|
|
1390
|
-
export declare const zListClustersData: z.ZodObject<{
|
|
1391
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1392
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1393
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1414
|
+
export declare const zQueryClusterPath: z.ZodObject<{
|
|
1415
|
+
cluster_id: z.ZodString;
|
|
1394
1416
|
}, z.core.$strip>;
|
|
1395
1417
|
/**
|
|
1396
1418
|
* An array of clusters
|
|
@@ -1401,12 +1423,12 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1401
1423
|
basic: "basic";
|
|
1402
1424
|
pro: "pro";
|
|
1403
1425
|
}>;
|
|
1404
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
1426
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1405
1427
|
"staging-1a": "staging-1a";
|
|
1406
1428
|
"northamerica-central-1": "northamerica-central-1";
|
|
1407
1429
|
"europe-central-1a": "europe-central-1a";
|
|
1408
1430
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1409
|
-
}
|
|
1431
|
+
}>>>;
|
|
1410
1432
|
id: z.ZodUUID;
|
|
1411
1433
|
status: z.ZodEnum<{
|
|
1412
1434
|
deleted: "deleted";
|
|
@@ -1420,6 +1442,9 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1420
1442
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1421
1443
|
"": "";
|
|
1422
1444
|
}>]>>;
|
|
1445
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1446
|
+
"": "";
|
|
1447
|
+
}>]>>;
|
|
1423
1448
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
1424
1449
|
version_current: z.ZodOptional<z.ZodString>;
|
|
1425
1450
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -1427,50 +1452,38 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1427
1452
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1428
1453
|
version_channel: z.ZodOptional<z.ZodString>;
|
|
1429
1454
|
}, z.core.$strip>>;
|
|
1430
|
-
export declare const
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
}>>;
|
|
1449
|
-
}, z.core.$strip>;
|
|
1450
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1451
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1455
|
+
export declare const zCreateClusterBody: z.ZodObject<{
|
|
1456
|
+
name: z.ZodString;
|
|
1457
|
+
tier: z.ZodEnum<{
|
|
1458
|
+
basic: "basic";
|
|
1459
|
+
pro: "pro";
|
|
1460
|
+
}>;
|
|
1461
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1462
|
+
"staging-1a": "staging-1a";
|
|
1463
|
+
"northamerica-central-1": "northamerica-central-1";
|
|
1464
|
+
"europe-central-1a": "europe-central-1a";
|
|
1465
|
+
"northamerica-central-1a": "northamerica-central-1a";
|
|
1466
|
+
}>>>;
|
|
1467
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1468
|
+
"1.x.x-cfke.x": "1.x.x-cfke.x";
|
|
1469
|
+
"1.31.x-cfke.x": "1.31.x-cfke.x";
|
|
1470
|
+
"1.32.x-cfke.x": "1.32.x-cfke.x";
|
|
1471
|
+
"1.33.x-cfke.x": "1.33.x-cfke.x";
|
|
1472
|
+
}>>>;
|
|
1452
1473
|
}, z.core.$strip>;
|
|
1453
1474
|
/**
|
|
1454
1475
|
* Successfully created. Returns created Cluster ID.
|
|
1455
1476
|
*/
|
|
1456
1477
|
export declare const zCreateClusterResponse: z.ZodString;
|
|
1457
|
-
export declare const
|
|
1458
|
-
|
|
1459
|
-
path: z.ZodObject<{
|
|
1460
|
-
cluster_id: z.ZodString;
|
|
1461
|
-
}, z.core.$strip>;
|
|
1462
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1478
|
+
export declare const zDeleteClusterPath: z.ZodObject<{
|
|
1479
|
+
cluster_id: z.ZodString;
|
|
1463
1480
|
}, z.core.$strip>;
|
|
1464
1481
|
/**
|
|
1465
1482
|
* Successfully deleted.
|
|
1466
1483
|
*/
|
|
1467
1484
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
1468
|
-
export declare const
|
|
1469
|
-
|
|
1470
|
-
path: z.ZodObject<{
|
|
1471
|
-
cluster_id: z.ZodString;
|
|
1472
|
-
}, z.core.$strip>;
|
|
1473
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1485
|
+
export declare const zGetClusterPath: z.ZodObject<{
|
|
1486
|
+
cluster_id: z.ZodString;
|
|
1474
1487
|
}, z.core.$strip>;
|
|
1475
1488
|
/**
|
|
1476
1489
|
* Returns a single object containing cluster details.
|
|
@@ -1481,12 +1494,12 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1481
1494
|
basic: "basic";
|
|
1482
1495
|
pro: "pro";
|
|
1483
1496
|
}>;
|
|
1484
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
1497
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1485
1498
|
"staging-1a": "staging-1a";
|
|
1486
1499
|
"northamerica-central-1": "northamerica-central-1";
|
|
1487
1500
|
"europe-central-1a": "europe-central-1a";
|
|
1488
1501
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1489
|
-
}
|
|
1502
|
+
}>>>;
|
|
1490
1503
|
id: z.ZodUUID;
|
|
1491
1504
|
status: z.ZodEnum<{
|
|
1492
1505
|
deleted: "deleted";
|
|
@@ -1500,6 +1513,9 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1500
1513
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1501
1514
|
"": "";
|
|
1502
1515
|
}>]>>;
|
|
1516
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1517
|
+
"": "";
|
|
1518
|
+
}>]>>;
|
|
1503
1519
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
1504
1520
|
version_current: z.ZodOptional<z.ZodString>;
|
|
1505
1521
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -1507,19 +1523,16 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1507
1523
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1508
1524
|
version_channel: z.ZodOptional<z.ZodString>;
|
|
1509
1525
|
}, z.core.$strip>;
|
|
1510
|
-
export declare const
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
cluster_id: z.ZodString;
|
|
1521
|
-
}, z.core.$strip>;
|
|
1522
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1526
|
+
export declare const zUpdateClusterBody: z.ZodObject<{
|
|
1527
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1528
|
+
tier: z.ZodEnum<{
|
|
1529
|
+
basic: "basic";
|
|
1530
|
+
pro: "pro";
|
|
1531
|
+
}>;
|
|
1532
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
1533
|
+
}, z.core.$strip>;
|
|
1534
|
+
export declare const zUpdateClusterPath: z.ZodObject<{
|
|
1535
|
+
cluster_id: z.ZodString;
|
|
1523
1536
|
}, z.core.$strip>;
|
|
1524
1537
|
/**
|
|
1525
1538
|
* Successfully updated. Returns updated cluster details.
|
|
@@ -1530,12 +1543,12 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1530
1543
|
basic: "basic";
|
|
1531
1544
|
pro: "pro";
|
|
1532
1545
|
}>;
|
|
1533
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
1546
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1534
1547
|
"staging-1a": "staging-1a";
|
|
1535
1548
|
"northamerica-central-1": "northamerica-central-1";
|
|
1536
1549
|
"europe-central-1a": "europe-central-1a";
|
|
1537
1550
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1538
|
-
}
|
|
1551
|
+
}>>>;
|
|
1539
1552
|
id: z.ZodUUID;
|
|
1540
1553
|
status: z.ZodEnum<{
|
|
1541
1554
|
deleted: "deleted";
|
|
@@ -1549,6 +1562,9 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1549
1562
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1550
1563
|
"": "";
|
|
1551
1564
|
}>]>>;
|
|
1565
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1566
|
+
"": "";
|
|
1567
|
+
}>]>>;
|
|
1552
1568
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
1553
1569
|
version_current: z.ZodOptional<z.ZodString>;
|
|
1554
1570
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -1556,12 +1572,8 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1556
1572
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1557
1573
|
version_channel: z.ZodOptional<z.ZodString>;
|
|
1558
1574
|
}, z.core.$strip>;
|
|
1559
|
-
export declare const
|
|
1560
|
-
|
|
1561
|
-
path: z.ZodObject<{
|
|
1562
|
-
cluster_id: z.ZodString;
|
|
1563
|
-
}, z.core.$strip>;
|
|
1564
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1575
|
+
export declare const zGetJoinInformationPath: z.ZodObject<{
|
|
1576
|
+
cluster_id: z.ZodString;
|
|
1565
1577
|
}, z.core.$strip>;
|
|
1566
1578
|
/**
|
|
1567
1579
|
* An object of cluster join information
|
|
@@ -1584,11 +1596,6 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1584
1596
|
gcp_workload_identity_provider: z.ZodString;
|
|
1585
1597
|
}, z.core.$strip>;
|
|
1586
1598
|
}, z.core.$strip>;
|
|
1587
|
-
export declare const zListInvitesData: z.ZodObject<{
|
|
1588
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1589
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1590
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1591
|
-
}, z.core.$strip>;
|
|
1592
1599
|
/**
|
|
1593
1600
|
* An array of invites
|
|
1594
1601
|
*/
|
|
@@ -1599,12 +1606,8 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1599
1606
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1600
1607
|
code: z.ZodOptional<z.ZodString>;
|
|
1601
1608
|
}, z.core.$strip>>;
|
|
1602
|
-
export declare const
|
|
1603
|
-
|
|
1604
|
-
email: z.ZodOptional<z.ZodString>;
|
|
1605
|
-
}, z.core.$strip>;
|
|
1606
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1607
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1609
|
+
export declare const zCreateInviteBody: z.ZodObject<{
|
|
1610
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1608
1611
|
}, z.core.$strip>;
|
|
1609
1612
|
/**
|
|
1610
1613
|
* Successfully created. Returns created invite details.
|
|
@@ -1616,12 +1619,8 @@ export declare const zCreateInviteResponse: z.ZodObject<{
|
|
|
1616
1619
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1617
1620
|
code: z.ZodOptional<z.ZodString>;
|
|
1618
1621
|
}, z.core.$strip>;
|
|
1619
|
-
export declare const
|
|
1620
|
-
|
|
1621
|
-
path: z.ZodObject<{
|
|
1622
|
-
code: z.ZodString;
|
|
1623
|
-
}, z.core.$strip>;
|
|
1624
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1622
|
+
export declare const zGetInvitePath: z.ZodObject<{
|
|
1623
|
+
code: z.ZodString;
|
|
1625
1624
|
}, z.core.$strip>;
|
|
1626
1625
|
/**
|
|
1627
1626
|
* Returns a single object containing invite details.
|
|
@@ -1633,17 +1632,8 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
1633
1632
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1634
1633
|
code: z.ZodOptional<z.ZodString>;
|
|
1635
1634
|
}, z.core.$strip>;
|
|
1636
|
-
export declare const
|
|
1637
|
-
|
|
1638
|
-
path: z.ZodObject<{
|
|
1639
|
-
email: z.ZodString;
|
|
1640
|
-
}, z.core.$strip>;
|
|
1641
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1642
|
-
}, z.core.$strip>;
|
|
1643
|
-
export declare const zListMarketplaceChartsData: z.ZodObject<{
|
|
1644
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1645
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1646
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1635
|
+
export declare const zDeleteInvitePath: z.ZodObject<{
|
|
1636
|
+
email: z.ZodString;
|
|
1647
1637
|
}, z.core.$strip>;
|
|
1648
1638
|
/**
|
|
1649
1639
|
* An array of chart listings in the marketplace.
|
|
@@ -1669,13 +1659,9 @@ export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1669
1659
|
}, z.core.$strip>>>;
|
|
1670
1660
|
}, z.core.$strip>>;
|
|
1671
1661
|
}, z.core.$strip>>;
|
|
1672
|
-
export declare const
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
chart_name: z.ZodString;
|
|
1676
|
-
version_channel: z.ZodString;
|
|
1677
|
-
}, z.core.$strip>;
|
|
1678
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1662
|
+
export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
|
|
1663
|
+
chart_name: z.ZodString;
|
|
1664
|
+
version_channel: z.ZodString;
|
|
1679
1665
|
}, z.core.$strip>;
|
|
1680
1666
|
/**
|
|
1681
1667
|
* Returns an object containing the chart files for the latest matching version.
|
|
@@ -1685,15 +1671,14 @@ export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
|
|
|
1685
1671
|
valuesYaml: z.ZodOptional<z.ZodString>;
|
|
1686
1672
|
valuesSchemaJson: z.ZodOptional<z.ZodString>;
|
|
1687
1673
|
}, z.core.$strip>;
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1674
|
+
/**
|
|
1675
|
+
* JSON-RPC 2.0 request payload
|
|
1676
|
+
*/
|
|
1677
|
+
export declare const zPostMcpBody: z.ZodObject<{
|
|
1678
|
+
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
1679
|
+
method: z.ZodOptional<z.ZodString>;
|
|
1680
|
+
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
1681
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1697
1682
|
}, z.core.$strip>;
|
|
1698
1683
|
/**
|
|
1699
1684
|
* JSON-RPC 2.0 success or error response
|
|
@@ -1707,11 +1692,6 @@ export declare const zPostMcpResponse: z.ZodObject<{
|
|
|
1707
1692
|
message: z.ZodOptional<z.ZodString>;
|
|
1708
1693
|
}, z.core.$strip>>;
|
|
1709
1694
|
}, z.core.$strip>;
|
|
1710
|
-
export declare const zGetOrganizationData: z.ZodObject<{
|
|
1711
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1712
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1713
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1714
|
-
}, z.core.$strip>;
|
|
1715
1695
|
/**
|
|
1716
1696
|
* Returns a single object containing organization details.
|
|
1717
1697
|
*/
|
|
@@ -1731,8 +1711,6 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
1731
1711
|
id: z.ZodString;
|
|
1732
1712
|
label: z.ZodString;
|
|
1733
1713
|
}, z.core.$strip>>;
|
|
1734
|
-
copilot_user_hourly_tokens: z.ZodInt;
|
|
1735
|
-
copilot_organization_hourly_tokens: z.ZodInt;
|
|
1736
1714
|
cfcr_storage_gb: z.ZodInt;
|
|
1737
1715
|
}, z.core.$strip>;
|
|
1738
1716
|
status: z.ZodEnum<{
|
|
@@ -1741,21 +1719,12 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
1741
1719
|
suspended: "suspended";
|
|
1742
1720
|
}>;
|
|
1743
1721
|
}, z.core.$strip>;
|
|
1744
|
-
export declare const
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
password: z.ZodString;
|
|
1751
|
-
}, z.core.$strip>;
|
|
1752
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1753
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1754
|
-
}, z.core.$strip>;
|
|
1755
|
-
export declare const zListRepositoriesData: z.ZodObject<{
|
|
1756
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1757
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1758
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1722
|
+
export declare const zCreateOrganizationBody: z.ZodObject<{
|
|
1723
|
+
email: z.ZodEmail;
|
|
1724
|
+
first_name: z.ZodString;
|
|
1725
|
+
last_name: z.ZodString;
|
|
1726
|
+
company_name: z.ZodString;
|
|
1727
|
+
password: z.ZodString;
|
|
1759
1728
|
}, z.core.$strip>;
|
|
1760
1729
|
/**
|
|
1761
1730
|
* List of repositories
|
|
@@ -1765,13 +1734,9 @@ export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1765
1734
|
region: z.ZodString;
|
|
1766
1735
|
uri: z.ZodString;
|
|
1767
1736
|
}, z.core.$strip>>;
|
|
1768
|
-
export declare const
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
region: z.ZodString;
|
|
1772
|
-
repository: z.ZodString;
|
|
1773
|
-
}, z.core.$strip>;
|
|
1774
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1737
|
+
export declare const zListTagsPath: z.ZodObject<{
|
|
1738
|
+
region: z.ZodString;
|
|
1739
|
+
repository: z.ZodString;
|
|
1775
1740
|
}, z.core.$strip>;
|
|
1776
1741
|
/**
|
|
1777
1742
|
* Repository with tags
|
|
@@ -1788,23 +1753,15 @@ export declare const zListTagsResponse: z.ZodObject<{
|
|
|
1788
1753
|
}, z.core.$strip>>;
|
|
1789
1754
|
totalSize: z.ZodNumber;
|
|
1790
1755
|
}, z.core.$strip>;
|
|
1791
|
-
export declare const
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
export declare const zGetTagData: z.ZodObject<{
|
|
1801
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1802
|
-
path: z.ZodObject<{
|
|
1803
|
-
region: z.ZodString;
|
|
1804
|
-
repository: z.ZodString;
|
|
1805
|
-
tag: z.ZodString;
|
|
1806
|
-
}, z.core.$strip>;
|
|
1807
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1756
|
+
export declare const zDeleteTagPath: z.ZodObject<{
|
|
1757
|
+
region: z.ZodString;
|
|
1758
|
+
repository: z.ZodString;
|
|
1759
|
+
tag: z.ZodString;
|
|
1760
|
+
}, z.core.$strip>;
|
|
1761
|
+
export declare const zGetTagPath: z.ZodObject<{
|
|
1762
|
+
region: z.ZodString;
|
|
1763
|
+
repository: z.ZodString;
|
|
1764
|
+
tag: z.ZodString;
|
|
1808
1765
|
}, z.core.$strip>;
|
|
1809
1766
|
/**
|
|
1810
1767
|
* Tag details
|
|
@@ -1838,11 +1795,201 @@ export declare const zGetTagResponse: z.ZodObject<{
|
|
|
1838
1795
|
repository: z.ZodString;
|
|
1839
1796
|
uri: z.ZodString;
|
|
1840
1797
|
}, z.core.$strip>;
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1798
|
+
/**
|
|
1799
|
+
* Tickets for the organization.
|
|
1800
|
+
*/
|
|
1801
|
+
export declare const zListTicketsResponse: z.ZodObject<{
|
|
1802
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1803
|
+
id: z.ZodString;
|
|
1804
|
+
status: z.ZodEnum<{
|
|
1805
|
+
closed: "closed";
|
|
1806
|
+
waiting_on_us: "waiting_on_us";
|
|
1807
|
+
waiting_on_user: "waiting_on_user";
|
|
1808
|
+
}>;
|
|
1809
|
+
category: z.ZodEnum<{
|
|
1810
|
+
billing: "billing";
|
|
1811
|
+
technical: "technical";
|
|
1812
|
+
general: "general";
|
|
1813
|
+
}>;
|
|
1814
|
+
summary: z.ZodString;
|
|
1815
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1816
|
+
date_created: z.ZodISODateTime;
|
|
1817
|
+
date_updated: z.ZodISODateTime;
|
|
1818
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1819
|
+
id: z.ZodString;
|
|
1820
|
+
type: z.ZodEnum<{
|
|
1821
|
+
customer_reply: "customer_reply";
|
|
1822
|
+
agent_reply: "agent_reply";
|
|
1823
|
+
}>;
|
|
1824
|
+
body: z.ZodString;
|
|
1825
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1826
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1827
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1828
|
+
id: z.ZodString;
|
|
1829
|
+
filename: z.ZodString;
|
|
1830
|
+
content_type: z.ZodString;
|
|
1831
|
+
size: z.ZodInt;
|
|
1832
|
+
}, z.core.$strip>>>;
|
|
1833
|
+
date_created: z.ZodISODateTime;
|
|
1834
|
+
}, z.core.$strip>>>;
|
|
1835
|
+
}, z.core.$strip>>;
|
|
1836
|
+
}, z.core.$strip>;
|
|
1837
|
+
export declare const zCreateTicketBody: z.ZodObject<{
|
|
1838
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
1839
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1840
|
+
}, z.core.$strip>;
|
|
1841
|
+
/**
|
|
1842
|
+
* Ticket created.
|
|
1843
|
+
*/
|
|
1844
|
+
export declare const zCreateTicketResponse: z.ZodObject<{
|
|
1845
|
+
id: z.ZodString;
|
|
1846
|
+
status: z.ZodEnum<{
|
|
1847
|
+
closed: "closed";
|
|
1848
|
+
waiting_on_us: "waiting_on_us";
|
|
1849
|
+
waiting_on_user: "waiting_on_user";
|
|
1850
|
+
}>;
|
|
1851
|
+
category: z.ZodEnum<{
|
|
1852
|
+
billing: "billing";
|
|
1853
|
+
technical: "technical";
|
|
1854
|
+
general: "general";
|
|
1855
|
+
}>;
|
|
1856
|
+
summary: z.ZodString;
|
|
1857
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1858
|
+
date_created: z.ZodISODateTime;
|
|
1859
|
+
date_updated: z.ZodISODateTime;
|
|
1860
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1861
|
+
id: z.ZodString;
|
|
1862
|
+
type: z.ZodEnum<{
|
|
1863
|
+
customer_reply: "customer_reply";
|
|
1864
|
+
agent_reply: "agent_reply";
|
|
1865
|
+
}>;
|
|
1866
|
+
body: z.ZodString;
|
|
1867
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1868
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1869
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1870
|
+
id: z.ZodString;
|
|
1871
|
+
filename: z.ZodString;
|
|
1872
|
+
content_type: z.ZodString;
|
|
1873
|
+
size: z.ZodInt;
|
|
1874
|
+
}, z.core.$strip>>>;
|
|
1875
|
+
date_created: z.ZodISODateTime;
|
|
1876
|
+
}, z.core.$strip>>>;
|
|
1877
|
+
}, z.core.$strip>;
|
|
1878
|
+
export declare const zCloseTicketPath: z.ZodObject<{
|
|
1879
|
+
ticket_id: z.ZodString;
|
|
1845
1880
|
}, z.core.$strip>;
|
|
1881
|
+
/**
|
|
1882
|
+
* Ticket closed.
|
|
1883
|
+
*/
|
|
1884
|
+
export declare const zCloseTicketResponse: z.ZodObject<{
|
|
1885
|
+
id: z.ZodString;
|
|
1886
|
+
status: z.ZodEnum<{
|
|
1887
|
+
closed: "closed";
|
|
1888
|
+
waiting_on_us: "waiting_on_us";
|
|
1889
|
+
waiting_on_user: "waiting_on_user";
|
|
1890
|
+
}>;
|
|
1891
|
+
category: z.ZodEnum<{
|
|
1892
|
+
billing: "billing";
|
|
1893
|
+
technical: "technical";
|
|
1894
|
+
general: "general";
|
|
1895
|
+
}>;
|
|
1896
|
+
summary: z.ZodString;
|
|
1897
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1898
|
+
date_created: z.ZodISODateTime;
|
|
1899
|
+
date_updated: z.ZodISODateTime;
|
|
1900
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1901
|
+
id: z.ZodString;
|
|
1902
|
+
type: z.ZodEnum<{
|
|
1903
|
+
customer_reply: "customer_reply";
|
|
1904
|
+
agent_reply: "agent_reply";
|
|
1905
|
+
}>;
|
|
1906
|
+
body: z.ZodString;
|
|
1907
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1908
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1909
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1910
|
+
id: z.ZodString;
|
|
1911
|
+
filename: z.ZodString;
|
|
1912
|
+
content_type: z.ZodString;
|
|
1913
|
+
size: z.ZodInt;
|
|
1914
|
+
}, z.core.$strip>>>;
|
|
1915
|
+
date_created: z.ZodISODateTime;
|
|
1916
|
+
}, z.core.$strip>>>;
|
|
1917
|
+
}, z.core.$strip>;
|
|
1918
|
+
export declare const zGetTicketPath: z.ZodObject<{
|
|
1919
|
+
ticket_id: z.ZodString;
|
|
1920
|
+
}, z.core.$strip>;
|
|
1921
|
+
/**
|
|
1922
|
+
* Ticket with messages (internal notes excluded).
|
|
1923
|
+
*/
|
|
1924
|
+
export declare const zGetTicketResponse: z.ZodObject<{
|
|
1925
|
+
id: z.ZodString;
|
|
1926
|
+
status: z.ZodEnum<{
|
|
1927
|
+
closed: "closed";
|
|
1928
|
+
waiting_on_us: "waiting_on_us";
|
|
1929
|
+
waiting_on_user: "waiting_on_user";
|
|
1930
|
+
}>;
|
|
1931
|
+
category: z.ZodEnum<{
|
|
1932
|
+
billing: "billing";
|
|
1933
|
+
technical: "technical";
|
|
1934
|
+
general: "general";
|
|
1935
|
+
}>;
|
|
1936
|
+
summary: z.ZodString;
|
|
1937
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1938
|
+
date_created: z.ZodISODateTime;
|
|
1939
|
+
date_updated: z.ZodISODateTime;
|
|
1940
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1941
|
+
id: z.ZodString;
|
|
1942
|
+
type: z.ZodEnum<{
|
|
1943
|
+
customer_reply: "customer_reply";
|
|
1944
|
+
agent_reply: "agent_reply";
|
|
1945
|
+
}>;
|
|
1946
|
+
body: z.ZodString;
|
|
1947
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1948
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1949
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1950
|
+
id: z.ZodString;
|
|
1951
|
+
filename: z.ZodString;
|
|
1952
|
+
content_type: z.ZodString;
|
|
1953
|
+
size: z.ZodInt;
|
|
1954
|
+
}, z.core.$strip>>>;
|
|
1955
|
+
date_created: z.ZodISODateTime;
|
|
1956
|
+
}, z.core.$strip>>>;
|
|
1957
|
+
}, z.core.$strip>;
|
|
1958
|
+
export declare const zReplyTicketBody: z.ZodObject<{
|
|
1959
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
1960
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1961
|
+
}, z.core.$strip>;
|
|
1962
|
+
export declare const zReplyTicketPath: z.ZodObject<{
|
|
1963
|
+
ticket_id: z.ZodString;
|
|
1964
|
+
}, z.core.$strip>;
|
|
1965
|
+
/**
|
|
1966
|
+
* Reply appended.
|
|
1967
|
+
*/
|
|
1968
|
+
export declare const zReplyTicketResponse: z.ZodObject<{
|
|
1969
|
+
id: z.ZodString;
|
|
1970
|
+
type: z.ZodEnum<{
|
|
1971
|
+
customer_reply: "customer_reply";
|
|
1972
|
+
agent_reply: "agent_reply";
|
|
1973
|
+
}>;
|
|
1974
|
+
body: z.ZodString;
|
|
1975
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1976
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1977
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1978
|
+
id: z.ZodString;
|
|
1979
|
+
filename: z.ZodString;
|
|
1980
|
+
content_type: z.ZodString;
|
|
1981
|
+
size: z.ZodInt;
|
|
1982
|
+
}, z.core.$strip>>>;
|
|
1983
|
+
date_created: z.ZodISODateTime;
|
|
1984
|
+
}, z.core.$strip>;
|
|
1985
|
+
export declare const zGetTicketAttachmentPath: z.ZodObject<{
|
|
1986
|
+
ticket_id: z.ZodString;
|
|
1987
|
+
attachment_id: z.ZodString;
|
|
1988
|
+
}, z.core.$strip>;
|
|
1989
|
+
/**
|
|
1990
|
+
* Attachment binary stream.
|
|
1991
|
+
*/
|
|
1992
|
+
export declare const zGetTicketAttachmentResponse: z.ZodString;
|
|
1846
1993
|
/**
|
|
1847
1994
|
* Returns a list of access token details with masked secrets.
|
|
1848
1995
|
*/
|
|
@@ -1856,16 +2003,12 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
1856
2003
|
secret: z.ZodOptional<z.ZodString>;
|
|
1857
2004
|
date_created: z.ZodISODateTime;
|
|
1858
2005
|
}, z.core.$strip>>;
|
|
1859
|
-
export declare const
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
}>;
|
|
1866
|
-
}, z.core.$strip>;
|
|
1867
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1868
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2006
|
+
export declare const zCreateTokenBody: z.ZodObject<{
|
|
2007
|
+
name: z.ZodString;
|
|
2008
|
+
role: z.ZodEnum<{
|
|
2009
|
+
Administrator: "Administrator";
|
|
2010
|
+
User: "User";
|
|
2011
|
+
}>;
|
|
1869
2012
|
}, z.core.$strip>;
|
|
1870
2013
|
/**
|
|
1871
2014
|
* Successfully created. Returns created token details with unmasked/raw secret.
|
|
@@ -1880,19 +2023,11 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
1880
2023
|
secret: z.ZodOptional<z.ZodString>;
|
|
1881
2024
|
date_created: z.ZodISODateTime;
|
|
1882
2025
|
}, z.core.$strip>;
|
|
1883
|
-
export declare const
|
|
1884
|
-
|
|
1885
|
-
path: z.ZodObject<{
|
|
1886
|
-
token_id: z.ZodString;
|
|
1887
|
-
}, z.core.$strip>;
|
|
1888
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2026
|
+
export declare const zDeleteTokenPath: z.ZodObject<{
|
|
2027
|
+
token_id: z.ZodString;
|
|
1889
2028
|
}, z.core.$strip>;
|
|
1890
|
-
export declare const
|
|
1891
|
-
|
|
1892
|
-
path: z.ZodObject<{
|
|
1893
|
-
token_id: z.ZodString;
|
|
1894
|
-
}, z.core.$strip>;
|
|
1895
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2029
|
+
export declare const zGetTokenPath: z.ZodObject<{
|
|
2030
|
+
token_id: z.ZodString;
|
|
1896
2031
|
}, z.core.$strip>;
|
|
1897
2032
|
/**
|
|
1898
2033
|
* Returns access token details with masked secret.
|
|
@@ -1907,18 +2042,15 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
1907
2042
|
secret: z.ZodOptional<z.ZodString>;
|
|
1908
2043
|
date_created: z.ZodISODateTime;
|
|
1909
2044
|
}, z.core.$strip>;
|
|
1910
|
-
export declare const
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
token_id: z.ZodString;
|
|
1920
|
-
}, z.core.$strip>;
|
|
1921
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2045
|
+
export declare const zUpdateTokenBody: z.ZodObject<{
|
|
2046
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2047
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
2048
|
+
Administrator: "Administrator";
|
|
2049
|
+
User: "User";
|
|
2050
|
+
}>>;
|
|
2051
|
+
}, z.core.$strip>;
|
|
2052
|
+
export declare const zUpdateTokenPath: z.ZodObject<{
|
|
2053
|
+
token_id: z.ZodString;
|
|
1922
2054
|
}, z.core.$strip>;
|
|
1923
2055
|
/**
|
|
1924
2056
|
* Successfully updated. Returns updated token details with masked secret.
|
|
@@ -1933,12 +2065,8 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
1933
2065
|
secret: z.ZodOptional<z.ZodString>;
|
|
1934
2066
|
date_created: z.ZodISODateTime;
|
|
1935
2067
|
}, z.core.$strip>;
|
|
1936
|
-
export declare const
|
|
1937
|
-
|
|
1938
|
-
path: z.ZodObject<{
|
|
1939
|
-
token_id: z.ZodString;
|
|
1940
|
-
}, z.core.$strip>;
|
|
1941
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2068
|
+
export declare const zRegenerateTokenPath: z.ZodObject<{
|
|
2069
|
+
token_id: z.ZodString;
|
|
1942
2070
|
}, z.core.$strip>;
|
|
1943
2071
|
/**
|
|
1944
2072
|
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
@@ -1953,12 +2081,8 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
1953
2081
|
secret: z.ZodOptional<z.ZodString>;
|
|
1954
2082
|
date_created: z.ZodISODateTime;
|
|
1955
2083
|
}, z.core.$strip>;
|
|
1956
|
-
export declare const
|
|
1957
|
-
|
|
1958
|
-
path: z.ZodObject<{
|
|
1959
|
-
email: z.ZodString;
|
|
1960
|
-
}, z.core.$strip>;
|
|
1961
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2084
|
+
export declare const zListUserOrganizationsPath: z.ZodObject<{
|
|
2085
|
+
email: z.ZodString;
|
|
1962
2086
|
}, z.core.$strip>;
|
|
1963
2087
|
/**
|
|
1964
2088
|
* An array of organizations the user belongs to.
|
|
@@ -1967,11 +2091,6 @@ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1967
2091
|
realm: z.ZodOptional<z.ZodString>;
|
|
1968
2092
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1969
2093
|
}, z.core.$strip>>;
|
|
1970
|
-
export declare const zListUsersData: z.ZodObject<{
|
|
1971
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1972
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1973
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1974
|
-
}, z.core.$strip>;
|
|
1975
2094
|
/**
|
|
1976
2095
|
* An array of users
|
|
1977
2096
|
*/
|
|
@@ -1990,24 +2109,20 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1990
2109
|
id: z.ZodUUID;
|
|
1991
2110
|
date_created: z.ZodISODateTime;
|
|
1992
2111
|
}, z.core.$strip>>;
|
|
1993
|
-
export declare const
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
}>>;
|
|
2008
|
-
}, z.core.$strip>;
|
|
2009
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
2010
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2112
|
+
export declare const zCreateUserBody: z.ZodObject<{
|
|
2113
|
+
email: z.ZodEmail;
|
|
2114
|
+
first_name: z.ZodString;
|
|
2115
|
+
last_name: z.ZodString;
|
|
2116
|
+
code: z.ZodString;
|
|
2117
|
+
password: z.ZodString;
|
|
2118
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
2119
|
+
active: "active";
|
|
2120
|
+
inactive: "inactive";
|
|
2121
|
+
}>>;
|
|
2122
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
2123
|
+
Administrator: "Administrator";
|
|
2124
|
+
User: "User";
|
|
2125
|
+
}>>;
|
|
2011
2126
|
}, z.core.$strip>;
|
|
2012
2127
|
/**
|
|
2013
2128
|
* Successfully created. Returns created user details.
|
|
@@ -2027,12 +2142,8 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
2027
2142
|
id: z.ZodUUID;
|
|
2028
2143
|
date_created: z.ZodISODateTime;
|
|
2029
2144
|
}, z.core.$strip>;
|
|
2030
|
-
export declare const
|
|
2031
|
-
|
|
2032
|
-
path: z.ZodObject<{
|
|
2033
|
-
user_id: z.ZodString;
|
|
2034
|
-
}, z.core.$strip>;
|
|
2035
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2145
|
+
export declare const zDeleteUserPath: z.ZodObject<{
|
|
2146
|
+
user_id: z.ZodString;
|
|
2036
2147
|
}, z.core.$strip>;
|
|
2037
2148
|
/**
|
|
2038
2149
|
* User profile information
|
|
@@ -2052,12 +2163,8 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2052
2163
|
id: z.ZodUUID;
|
|
2053
2164
|
date_created: z.ZodISODateTime;
|
|
2054
2165
|
}, z.core.$strip>;
|
|
2055
|
-
export declare const
|
|
2056
|
-
|
|
2057
|
-
path: z.ZodObject<{
|
|
2058
|
-
user_id: z.ZodString;
|
|
2059
|
-
}, z.core.$strip>;
|
|
2060
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2166
|
+
export declare const zGetUserPath: z.ZodObject<{
|
|
2167
|
+
user_id: z.ZodString;
|
|
2061
2168
|
}, z.core.$strip>;
|
|
2062
2169
|
/**
|
|
2063
2170
|
* User profile information
|
|
@@ -2077,24 +2184,21 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2077
2184
|
id: z.ZodUUID;
|
|
2078
2185
|
date_created: z.ZodISODateTime;
|
|
2079
2186
|
}, z.core.$strip>;
|
|
2080
|
-
export declare const
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
user_id: z.ZodString;
|
|
2096
|
-
}, z.core.$strip>;
|
|
2097
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2187
|
+
export declare const zUpdateUserBody: z.ZodObject<{
|
|
2188
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
2189
|
+
first_name: z.ZodOptional<z.ZodString>;
|
|
2190
|
+
last_name: z.ZodOptional<z.ZodString>;
|
|
2191
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
2192
|
+
Administrator: "Administrator";
|
|
2193
|
+
User: "User";
|
|
2194
|
+
}>>;
|
|
2195
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
2196
|
+
active: "active";
|
|
2197
|
+
inactive: "inactive";
|
|
2198
|
+
}>>;
|
|
2199
|
+
}, z.core.$strip>;
|
|
2200
|
+
export declare const zUpdateUserPath: z.ZodObject<{
|
|
2201
|
+
user_id: z.ZodString;
|
|
2098
2202
|
}, z.core.$strip>;
|
|
2099
2203
|
/**
|
|
2100
2204
|
* Successfully created. Returns created user details.
|