@cloudfleet/sdk 0.6.27 → 0.6.29
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/schemas.gen.d.ts +41 -345
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +43 -359
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +46 -14
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +45 -23
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +27 -277
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +31 -1208
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +15 -627
- package/dist/zod.gen.js.map +1 -1
- package/package.json +2 -2
package/dist/schemas.gen.d.ts
CHANGED
|
@@ -57,15 +57,10 @@ export declare const BillingContactSchema: {
|
|
|
57
57
|
readonly description: "Email address used for billing as a string.";
|
|
58
58
|
readonly example: "email@example.com";
|
|
59
59
|
};
|
|
60
|
-
readonly
|
|
61
|
-
readonly type: "string";
|
|
62
|
-
readonly description: "First name of the billing contact person.";
|
|
63
|
-
readonly example: "John";
|
|
64
|
-
};
|
|
65
|
-
readonly last_name: {
|
|
60
|
+
readonly individual_name: {
|
|
66
61
|
readonly type: "string";
|
|
67
|
-
readonly description: "
|
|
68
|
-
readonly example: "Doe";
|
|
62
|
+
readonly description: "Name of the billing contact person.";
|
|
63
|
+
readonly example: "John Doe";
|
|
69
64
|
};
|
|
70
65
|
readonly tax_id: {
|
|
71
66
|
readonly type: "string";
|
|
@@ -81,7 +76,7 @@ export declare const BillingContactSchema: {
|
|
|
81
76
|
readonly enum: readonly ["ad_nrt", "ae_trn", "al_tin", "am_tin", "ao_tin", "ar_cuit", "at_vat", "au_abn", "au_arn", "ba_tin", "bb_tin", "be_vat", "bg_uic", "bg_vat", "bh_vat", "bo_tin", "br_cnpj", "br_cpf", "bs_tin", "by_tin", "ca_bn", "ca_gst_hst", "ca_pst_bc", "ca_pst_mb", "ca_pst_sk", "ca_qst", "cd_nif", "ch_uid", "ch_vat", "cl_tin", "cn_tin", "co_nit", "cr_tin", "cy_vat", "cz_vat", "de_stn", "de_vat", "dk_vat", "do_rcn", "ec_ruc", "ee_vat", "eg_tin", "es_cif", "es_vat", "eu_oss_vat", "fi_vat", "fr_vat", "gb_vat", "ge_vat", "gn_nif", "gr_vat", "hk_br", "hr_oib", "hr_vat", "hu_tin", "hu_vat", "id_npwp", "ie_vat", "il_vat", "in_gst", "is_vat", "it_vat", "jp_cn", "jp_rn", "jp_trn", "ke_pin", "kh_tin", "kr_brn", "kz_bin", "li_uid", "li_vat", "lt_vat", "lu_vat", "lv_vat", "ma_vat", "md_vat", "me_pib", "mk_vat", "mr_nif", "mt_vat", "mx_rfc", "my_frp", "my_itn", "my_sst", "ng_tin", "nl_vat", "no_vat", "no_voec", "np_pan", "nz_gst", "om_vat", "pe_ruc", "ph_tin", "pl_vat", "pt_vat", "ro_tin", "ro_vat", "rs_pib", "ru_inn", "ru_kpp", "sa_vat", "se_vat", "sg_gst", "sg_uen", "si_tin", "si_vat", "sk_vat", "sn_ninea", "sr_fin", "sv_nit", "th_vat", "tj_tin", "tr_tin", "tw_vat", "tz_vat", "ua_vat", "ug_tin", "us_ein", "uy_ruc", "uz_tin", "uz_vat", "ve_rif", "vn_tin", "xi_vat", "za_vat", "zm_tin", "zw_tin", ""];
|
|
82
77
|
};
|
|
83
78
|
};
|
|
84
|
-
readonly required: readonly ["email", "
|
|
79
|
+
readonly required: readonly ["email", "individual_name"];
|
|
85
80
|
readonly additionalProperties: false;
|
|
86
81
|
};
|
|
87
82
|
export declare const BillingCreditsSchema: {
|
|
@@ -92,10 +87,22 @@ export declare const BillingCreditsSchema: {
|
|
|
92
87
|
readonly description: "Generated unique identifier of the promotional code.";
|
|
93
88
|
readonly example: "7kUZnH7nnKUFfvc4NK2KQF";
|
|
94
89
|
};
|
|
95
|
-
readonly
|
|
90
|
+
readonly type: {
|
|
91
|
+
readonly type: "string";
|
|
92
|
+
readonly description: "Type of the promotional code.";
|
|
93
|
+
readonly example: "credit";
|
|
94
|
+
readonly enum: readonly ["credit", "discount"];
|
|
95
|
+
};
|
|
96
|
+
readonly date_start: {
|
|
96
97
|
readonly type: "string";
|
|
97
98
|
readonly format: "date-time";
|
|
98
|
-
readonly description: "
|
|
99
|
+
readonly description: "Timestamp when the credit becomes active. ISO 8601 date string in the UTC timezone.";
|
|
100
|
+
readonly example: "2023-12-20T13:53:32.000Z";
|
|
101
|
+
};
|
|
102
|
+
readonly date_end: {
|
|
103
|
+
readonly type: "string";
|
|
104
|
+
readonly format: "date-time";
|
|
105
|
+
readonly description: "Timestamp when the credit expires or becomes inactive. ISO 8601 date string in the UTC timezone.";
|
|
99
106
|
readonly example: "2023-12-20T13:53:32.000Z";
|
|
100
107
|
};
|
|
101
108
|
readonly code: {
|
|
@@ -108,40 +115,20 @@ export declare const BillingCreditsSchema: {
|
|
|
108
115
|
readonly description: "Description of the promotional code.";
|
|
109
116
|
readonly example: "10% off on all products";
|
|
110
117
|
};
|
|
111
|
-
readonly
|
|
112
|
-
readonly type: "array";
|
|
113
|
-
readonly items: {
|
|
114
|
-
readonly type: "string";
|
|
115
|
-
};
|
|
116
|
-
readonly description: "List of product SKUs that the promotional code can be used on.";
|
|
117
|
-
readonly example: readonly ["cfke_controlplane", "cfke_connected_nodes", "infra_compute", "infra_storage", "infra_loadbalancing", "infra_traffic", "cfcr_storage"];
|
|
118
|
-
};
|
|
119
|
-
readonly type: {
|
|
120
|
-
readonly type: "string";
|
|
121
|
-
readonly description: "Type of the promotional code.";
|
|
122
|
-
readonly example: "credit";
|
|
123
|
-
readonly enum: readonly ["credit", "discount"];
|
|
124
|
-
};
|
|
125
|
-
readonly value: {
|
|
118
|
+
readonly value_total: {
|
|
126
119
|
readonly type: "number";
|
|
127
120
|
readonly format: "float";
|
|
128
|
-
readonly description: "
|
|
121
|
+
readonly description: "Total value of the promotional code.";
|
|
129
122
|
readonly example: 10;
|
|
130
123
|
};
|
|
131
|
-
readonly billing_period: {
|
|
132
|
-
readonly type: "string";
|
|
133
|
-
readonly format: "date-time";
|
|
134
|
-
readonly description: "Date of the billing cycle. An ISO 8601 date string in the UTC timezone.";
|
|
135
|
-
readonly example: "2023-12-20T13:53:32.000Z";
|
|
136
|
-
};
|
|
137
124
|
readonly value_remaining: {
|
|
138
125
|
readonly type: "number";
|
|
139
126
|
readonly format: "float";
|
|
140
|
-
readonly description: "
|
|
141
|
-
readonly example:
|
|
127
|
+
readonly description: "Remaining value of the promotional code.";
|
|
128
|
+
readonly example: 8;
|
|
142
129
|
};
|
|
143
130
|
};
|
|
144
|
-
readonly required: readonly ["
|
|
131
|
+
readonly required: readonly ["type", "date_start", "code", "value_total"];
|
|
145
132
|
readonly additionalProperties: false;
|
|
146
133
|
};
|
|
147
134
|
export declare const ChartCreateInputSchema: {
|
|
@@ -750,19 +737,15 @@ export declare const InvoiceSchema: {
|
|
|
750
737
|
readonly description: "Unique identifier of the invoice. UUID v4 string in canonical form";
|
|
751
738
|
readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
|
|
752
739
|
};
|
|
753
|
-
readonly
|
|
740
|
+
readonly number: {
|
|
754
741
|
readonly type: "string";
|
|
755
|
-
readonly format: "uuid";
|
|
756
|
-
readonly description: "Unique identifier of the organization. UUID v4 string in canonical form";
|
|
757
|
-
readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
|
|
758
742
|
};
|
|
759
743
|
readonly status: {
|
|
760
744
|
readonly type: "string";
|
|
761
745
|
readonly description: "Status of the invoice";
|
|
762
|
-
readonly example: "
|
|
763
|
-
readonly enum: readonly ["DRAFT", "COMMITTED", "VOID"];
|
|
746
|
+
readonly example: "paid";
|
|
764
747
|
};
|
|
765
|
-
readonly
|
|
748
|
+
readonly total: {
|
|
766
749
|
readonly type: "number";
|
|
767
750
|
readonly format: "float";
|
|
768
751
|
readonly description: "Total amount of the invoice";
|
|
@@ -771,318 +754,31 @@ export declare const InvoiceSchema: {
|
|
|
771
754
|
readonly currency: {
|
|
772
755
|
readonly type: "string";
|
|
773
756
|
readonly description: "Currency of the invoice";
|
|
774
|
-
readonly example: "
|
|
775
|
-
readonly enum: readonly ["AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYR", "BZD", "CAD", "CDF", "CHF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SOS", "SPL", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TVD", "TWD", "TZS", "UAH", "UGX", "USD", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMW", "ZWD", "BTC"];
|
|
776
|
-
};
|
|
777
|
-
readonly creditAdj: {
|
|
778
|
-
readonly type: "number";
|
|
779
|
-
readonly format: "float";
|
|
780
|
-
readonly description: "Total amount of credit adjustments";
|
|
781
|
-
readonly example: 0;
|
|
782
|
-
};
|
|
783
|
-
readonly refundAdj: {
|
|
784
|
-
readonly type: "number";
|
|
785
|
-
readonly format: "float";
|
|
786
|
-
readonly description: "Total amount of refund adjustments";
|
|
787
|
-
readonly example: 0;
|
|
757
|
+
readonly example: "usd";
|
|
788
758
|
};
|
|
789
|
-
readonly
|
|
759
|
+
readonly created: {
|
|
790
760
|
readonly type: "string";
|
|
791
|
-
readonly
|
|
792
|
-
readonly
|
|
761
|
+
readonly format: "date-time";
|
|
762
|
+
readonly description: "Timestamp when the invoice was issued. ISO 8601 date string in the UTC timezone.";
|
|
763
|
+
readonly example: "2023-12-20T13:53:32.000Z";
|
|
793
764
|
};
|
|
794
|
-
readonly
|
|
765
|
+
readonly period_start: {
|
|
795
766
|
readonly type: "string";
|
|
796
|
-
readonly
|
|
797
|
-
readonly
|
|
767
|
+
readonly format: "date-time";
|
|
768
|
+
readonly description: "Billing period start timestamp. ISO 8601 date string in the UTC timezone.";
|
|
769
|
+
readonly example: "2023-12-20T13:53:32.000Z";
|
|
798
770
|
};
|
|
799
|
-
readonly
|
|
771
|
+
readonly period_end: {
|
|
800
772
|
readonly type: "string";
|
|
801
|
-
readonly
|
|
802
|
-
readonly
|
|
803
|
-
|
|
804
|
-
readonly balance: {
|
|
805
|
-
readonly type: "number";
|
|
806
|
-
readonly format: "float";
|
|
807
|
-
readonly description: "Balance of the invoice";
|
|
808
|
-
readonly example: 100;
|
|
773
|
+
readonly format: "date-time";
|
|
774
|
+
readonly description: "Billing period end timestamp. ISO 8601 date string in the UTC timezone.";
|
|
775
|
+
readonly example: "2023-12-20T13:53:32.000Z";
|
|
809
776
|
};
|
|
810
|
-
readonly
|
|
777
|
+
readonly invoice_pdf: {
|
|
811
778
|
readonly type: "string";
|
|
812
|
-
readonly description: "Bundle keys of the invoice";
|
|
813
|
-
readonly example: "bundleKey1,bundleKey2";
|
|
814
|
-
};
|
|
815
|
-
readonly credits: {
|
|
816
|
-
readonly type: "array";
|
|
817
|
-
readonly items: {
|
|
818
|
-
readonly type: "object";
|
|
819
|
-
readonly properties: {
|
|
820
|
-
readonly id: {
|
|
821
|
-
readonly type: "string";
|
|
822
|
-
readonly format: "uuid";
|
|
823
|
-
readonly description: "Unique identifier of the invoice item. UUID v4 string in canonical form";
|
|
824
|
-
readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
|
|
825
|
-
};
|
|
826
|
-
readonly linkedInvoiceItemId: {
|
|
827
|
-
readonly type: "string";
|
|
828
|
-
readonly format: "uuid";
|
|
829
|
-
readonly description: "Unique identifier of the linked invoice item. UUID v4 string in canonical form";
|
|
830
|
-
readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
|
|
831
|
-
};
|
|
832
|
-
readonly productName: {
|
|
833
|
-
readonly type: "string";
|
|
834
|
-
readonly description: "Name of the product";
|
|
835
|
-
readonly example: "Research team";
|
|
836
|
-
};
|
|
837
|
-
readonly planName: {
|
|
838
|
-
readonly type: "string";
|
|
839
|
-
readonly description: "Name of the plan";
|
|
840
|
-
readonly example: "Plan A";
|
|
841
|
-
};
|
|
842
|
-
readonly phaseName: {
|
|
843
|
-
readonly type: "string";
|
|
844
|
-
readonly description: "Name of the phase";
|
|
845
|
-
readonly example: "Phase A";
|
|
846
|
-
};
|
|
847
|
-
readonly usageName: {
|
|
848
|
-
readonly type: "string";
|
|
849
|
-
readonly description: "Name of the usage";
|
|
850
|
-
readonly example: "Usage A";
|
|
851
|
-
};
|
|
852
|
-
readonly prettyProductName: {
|
|
853
|
-
readonly type: "string";
|
|
854
|
-
readonly description: "Pretty name of the product";
|
|
855
|
-
readonly example: "Research team";
|
|
856
|
-
};
|
|
857
|
-
readonly prettyPlanName: {
|
|
858
|
-
readonly type: "string";
|
|
859
|
-
readonly description: "Pretty name of the plan";
|
|
860
|
-
readonly example: "Plan A";
|
|
861
|
-
};
|
|
862
|
-
readonly prettyPhaseName: {
|
|
863
|
-
readonly type: "string";
|
|
864
|
-
readonly description: "Pretty name of the phase";
|
|
865
|
-
readonly example: "Phase A";
|
|
866
|
-
};
|
|
867
|
-
readonly prettyUsageName: {
|
|
868
|
-
readonly type: "string";
|
|
869
|
-
readonly description: "Pretty name of the usage";
|
|
870
|
-
readonly example: "Usage A";
|
|
871
|
-
};
|
|
872
|
-
readonly itemType: {
|
|
873
|
-
readonly type: "string";
|
|
874
|
-
readonly description: "Type of the invoice item";
|
|
875
|
-
readonly example: "EXTERNAL_CHARGE";
|
|
876
|
-
readonly enum: readonly ["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"];
|
|
877
|
-
};
|
|
878
|
-
readonly description: {
|
|
879
|
-
readonly type: "string";
|
|
880
|
-
readonly description: "Description of the invoice item";
|
|
881
|
-
readonly example: "Description of the invoice item";
|
|
882
|
-
};
|
|
883
|
-
readonly startDate: {
|
|
884
|
-
readonly type: "string";
|
|
885
|
-
readonly description: "Start date of the invoice item";
|
|
886
|
-
readonly example: "2019-01-01T00:00:00.000Z";
|
|
887
|
-
};
|
|
888
|
-
readonly endDate: {
|
|
889
|
-
readonly type: "string";
|
|
890
|
-
readonly description: "End date of the invoice item";
|
|
891
|
-
readonly example: "2019-01-01T00:00:00.000Z";
|
|
892
|
-
};
|
|
893
|
-
readonly amount: {
|
|
894
|
-
readonly type: "number";
|
|
895
|
-
readonly format: "float";
|
|
896
|
-
readonly description: "Amount of the invoice item";
|
|
897
|
-
readonly example: 100;
|
|
898
|
-
};
|
|
899
|
-
readonly rate: {
|
|
900
|
-
readonly type: "number";
|
|
901
|
-
readonly format: "float";
|
|
902
|
-
readonly description: "Rate of the invoice item";
|
|
903
|
-
readonly example: 100;
|
|
904
|
-
};
|
|
905
|
-
readonly currency: {
|
|
906
|
-
readonly type: "string";
|
|
907
|
-
readonly description: "Currency of the invoice item";
|
|
908
|
-
readonly example: "USD";
|
|
909
|
-
readonly enum: readonly ["AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYR", "BZD", "CAD", "CDF", "CHF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SOS", "SPL", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TVD", "TWD", "TZS", "UAH", "UGX", "USD", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMW", "ZWD", "BTC"];
|
|
910
|
-
};
|
|
911
|
-
readonly quantity: {
|
|
912
|
-
readonly type: "number";
|
|
913
|
-
readonly format: "float";
|
|
914
|
-
readonly description: "Quantity of the invoice item";
|
|
915
|
-
readonly example: 1;
|
|
916
|
-
};
|
|
917
|
-
readonly itemDetails: {
|
|
918
|
-
readonly type: "string";
|
|
919
|
-
readonly description: "Details of the invoice item";
|
|
920
|
-
readonly example: "Details of the invoice item";
|
|
921
|
-
};
|
|
922
|
-
readonly catalogEffectiveDate: {
|
|
923
|
-
readonly type: "string";
|
|
924
|
-
readonly description: "Effective date of the catalog";
|
|
925
|
-
readonly example: "2019-01-01T00:00:00.000Z";
|
|
926
|
-
};
|
|
927
|
-
readonly childItems: {
|
|
928
|
-
readonly type: "array";
|
|
929
|
-
readonly items: {
|
|
930
|
-
readonly oneOf: readonly [{
|
|
931
|
-
readonly type: "array";
|
|
932
|
-
}, {
|
|
933
|
-
readonly type: "boolean";
|
|
934
|
-
}, {
|
|
935
|
-
readonly type: "number";
|
|
936
|
-
}, {
|
|
937
|
-
readonly type: "object";
|
|
938
|
-
readonly additionalProperties: true;
|
|
939
|
-
}, {
|
|
940
|
-
readonly type: "string";
|
|
941
|
-
}];
|
|
942
|
-
};
|
|
943
|
-
readonly description: "Child items of the invoice item";
|
|
944
|
-
};
|
|
945
|
-
};
|
|
946
|
-
readonly additionalProperties: false;
|
|
947
|
-
};
|
|
948
|
-
readonly description: "Credits of the invoice";
|
|
949
|
-
};
|
|
950
|
-
readonly items: {
|
|
951
|
-
readonly type: "array";
|
|
952
|
-
readonly items: {
|
|
953
|
-
readonly type: "object";
|
|
954
|
-
readonly properties: {
|
|
955
|
-
readonly id: {
|
|
956
|
-
readonly type: "string";
|
|
957
|
-
readonly format: "uuid";
|
|
958
|
-
readonly description: "Unique identifier of the invoice item. UUID v4 string in canonical form";
|
|
959
|
-
readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
|
|
960
|
-
};
|
|
961
|
-
readonly linkedInvoiceItemId: {
|
|
962
|
-
readonly type: "string";
|
|
963
|
-
readonly format: "uuid";
|
|
964
|
-
readonly description: "Unique identifier of the linked invoice item. UUID v4 string in canonical form";
|
|
965
|
-
readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
|
|
966
|
-
};
|
|
967
|
-
readonly productName: {
|
|
968
|
-
readonly type: "string";
|
|
969
|
-
readonly description: "Name of the product";
|
|
970
|
-
readonly example: "Research team";
|
|
971
|
-
};
|
|
972
|
-
readonly planName: {
|
|
973
|
-
readonly type: "string";
|
|
974
|
-
readonly description: "Name of the plan";
|
|
975
|
-
readonly example: "Plan A";
|
|
976
|
-
};
|
|
977
|
-
readonly phaseName: {
|
|
978
|
-
readonly type: "string";
|
|
979
|
-
readonly description: "Name of the phase";
|
|
980
|
-
readonly example: "Phase A";
|
|
981
|
-
};
|
|
982
|
-
readonly usageName: {
|
|
983
|
-
readonly type: "string";
|
|
984
|
-
readonly description: "Name of the usage";
|
|
985
|
-
readonly example: "Usage A";
|
|
986
|
-
};
|
|
987
|
-
readonly prettyProductName: {
|
|
988
|
-
readonly type: "string";
|
|
989
|
-
readonly description: "Pretty name of the product";
|
|
990
|
-
readonly example: "Research team";
|
|
991
|
-
};
|
|
992
|
-
readonly prettyPlanName: {
|
|
993
|
-
readonly type: "string";
|
|
994
|
-
readonly description: "Pretty name of the plan";
|
|
995
|
-
readonly example: "Plan A";
|
|
996
|
-
};
|
|
997
|
-
readonly prettyPhaseName: {
|
|
998
|
-
readonly type: "string";
|
|
999
|
-
readonly description: "Pretty name of the phase";
|
|
1000
|
-
readonly example: "Phase A";
|
|
1001
|
-
};
|
|
1002
|
-
readonly prettyUsageName: {
|
|
1003
|
-
readonly type: "string";
|
|
1004
|
-
readonly description: "Pretty name of the usage";
|
|
1005
|
-
readonly example: "Usage A";
|
|
1006
|
-
};
|
|
1007
|
-
readonly itemType: {
|
|
1008
|
-
readonly type: "string";
|
|
1009
|
-
readonly description: "Type of the invoice item";
|
|
1010
|
-
readonly example: "EXTERNAL_CHARGE";
|
|
1011
|
-
readonly enum: readonly ["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"];
|
|
1012
|
-
};
|
|
1013
|
-
readonly description: {
|
|
1014
|
-
readonly type: "string";
|
|
1015
|
-
readonly description: "Description of the invoice item";
|
|
1016
|
-
readonly example: "Description of the invoice item";
|
|
1017
|
-
};
|
|
1018
|
-
readonly startDate: {
|
|
1019
|
-
readonly type: "string";
|
|
1020
|
-
readonly description: "Start date of the invoice item";
|
|
1021
|
-
readonly example: "2019-01-01T00:00:00.000Z";
|
|
1022
|
-
};
|
|
1023
|
-
readonly endDate: {
|
|
1024
|
-
readonly type: "string";
|
|
1025
|
-
readonly description: "End date of the invoice item";
|
|
1026
|
-
readonly example: "2019-01-01T00:00:00.000Z";
|
|
1027
|
-
};
|
|
1028
|
-
readonly amount: {
|
|
1029
|
-
readonly type: "number";
|
|
1030
|
-
readonly format: "float";
|
|
1031
|
-
readonly description: "Amount of the invoice item";
|
|
1032
|
-
readonly example: 100;
|
|
1033
|
-
};
|
|
1034
|
-
readonly rate: {
|
|
1035
|
-
readonly type: "number";
|
|
1036
|
-
readonly format: "float";
|
|
1037
|
-
readonly description: "Rate of the invoice item";
|
|
1038
|
-
readonly example: 100;
|
|
1039
|
-
};
|
|
1040
|
-
readonly currency: {
|
|
1041
|
-
readonly type: "string";
|
|
1042
|
-
readonly description: "Currency of the invoice item";
|
|
1043
|
-
readonly example: "USD";
|
|
1044
|
-
readonly enum: readonly ["AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYR", "BZD", "CAD", "CDF", "CHF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SOS", "SPL", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TVD", "TWD", "TZS", "UAH", "UGX", "USD", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMW", "ZWD", "BTC"];
|
|
1045
|
-
};
|
|
1046
|
-
readonly quantity: {
|
|
1047
|
-
readonly type: "number";
|
|
1048
|
-
readonly format: "float";
|
|
1049
|
-
readonly description: "Quantity of the invoice item";
|
|
1050
|
-
readonly example: 1;
|
|
1051
|
-
};
|
|
1052
|
-
readonly itemDetails: {
|
|
1053
|
-
readonly type: "string";
|
|
1054
|
-
readonly description: "Details of the invoice item";
|
|
1055
|
-
readonly example: "Details of the invoice item";
|
|
1056
|
-
};
|
|
1057
|
-
readonly catalogEffectiveDate: {
|
|
1058
|
-
readonly type: "string";
|
|
1059
|
-
readonly description: "Effective date of the catalog";
|
|
1060
|
-
readonly example: "2019-01-01T00:00:00.000Z";
|
|
1061
|
-
};
|
|
1062
|
-
readonly childItems: {
|
|
1063
|
-
readonly type: "array";
|
|
1064
|
-
readonly items: {
|
|
1065
|
-
readonly oneOf: readonly [{
|
|
1066
|
-
readonly type: "array";
|
|
1067
|
-
}, {
|
|
1068
|
-
readonly type: "boolean";
|
|
1069
|
-
}, {
|
|
1070
|
-
readonly type: "number";
|
|
1071
|
-
}, {
|
|
1072
|
-
readonly type: "object";
|
|
1073
|
-
readonly additionalProperties: true;
|
|
1074
|
-
}, {
|
|
1075
|
-
readonly type: "string";
|
|
1076
|
-
}];
|
|
1077
|
-
};
|
|
1078
|
-
readonly description: "Child items of the invoice item";
|
|
1079
|
-
};
|
|
1080
|
-
};
|
|
1081
|
-
readonly additionalProperties: false;
|
|
1082
|
-
};
|
|
1083
|
-
readonly description: "Items of the invoice";
|
|
1084
779
|
};
|
|
1085
780
|
};
|
|
781
|
+
readonly required: readonly ["created", "period_start", "period_end"];
|
|
1086
782
|
readonly additionalProperties: false;
|
|
1087
783
|
};
|
|
1088
784
|
export declare const MarketplaceListingSchema: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"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"}
|