orb-billing 3.2.0 → 4.0.0
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/CHANGELOG.md +13 -0
- package/package.json +2 -2
- package/resources/alerts.d.ts +9 -9
- package/resources/alerts.d.ts.map +1 -1
- package/resources/alerts.js.map +1 -1
- package/resources/alerts.mjs.map +1 -1
- package/resources/customers/customers.d.ts +0 -7
- package/resources/customers/customers.d.ts.map +1 -1
- package/resources/customers/customers.js +0 -3
- package/resources/customers/customers.js.map +1 -1
- package/resources/customers/customers.mjs +0 -3
- package/resources/customers/customers.mjs.map +1 -1
- package/resources/customers/index.d.ts +0 -1
- package/resources/customers/index.d.ts.map +1 -1
- package/resources/customers/index.js +1 -3
- package/resources/customers/index.js.map +1 -1
- package/resources/customers/index.mjs +0 -1
- package/resources/customers/index.mjs.map +1 -1
- package/resources/events/events.d.ts +11 -2
- package/resources/events/events.d.ts.map +1 -1
- package/resources/events/events.js +11 -2
- package/resources/events/events.js.map +1 -1
- package/resources/events/events.mjs +11 -2
- package/resources/events/events.mjs.map +1 -1
- package/resources/plans/plans.d.ts +15 -15
- package/resources/plans/plans.d.ts.map +1 -1
- package/resources/prices/prices.d.ts +108 -18
- package/resources/prices/prices.d.ts.map +1 -1
- package/resources/prices/prices.js.map +1 -1
- package/resources/prices/prices.mjs.map +1 -1
- package/resources/subscriptions.d.ts +18 -28
- package/resources/subscriptions.d.ts.map +1 -1
- package/resources/subscriptions.js.map +1 -1
- package/resources/subscriptions.mjs.map +1 -1
- package/src/resources/alerts.ts +24 -9
- package/src/resources/customers/customers.ts +0 -7
- package/src/resources/customers/index.ts +0 -7
- package/src/resources/events/events.ts +11 -2
- package/src/resources/plans/plans.ts +15 -15
- package/src/resources/prices/prices.ts +162 -18
- package/src/resources/subscriptions.ts +18 -30
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
- package/resources/customers/usage.d.ts +0 -326
- package/resources/customers/usage.d.ts.map +0 -1
- package/resources/customers/usage.js +0 -227
- package/resources/customers/usage.js.map +0 -1
- package/resources/customers/usage.mjs +0 -223
- package/resources/customers/usage.mjs.map +0 -1
- package/src/resources/customers/usage.ts +0 -372
|
@@ -315,6 +315,7 @@ export declare namespace Price {
|
|
|
315
315
|
interface UnitPrice {
|
|
316
316
|
id: string;
|
|
317
317
|
billable_metric: UnitPrice.BillableMetric | null;
|
|
318
|
+
billing_cycle_configuration: UnitPrice.BillingCycleConfiguration | null;
|
|
318
319
|
cadence: 'one_time' | 'monthly' | 'quarterly' | 'semi_annual' | 'annual' | 'custom';
|
|
319
320
|
conversion_rate: number | null;
|
|
320
321
|
created_at: string;
|
|
@@ -345,6 +346,10 @@ export declare namespace Price {
|
|
|
345
346
|
interface BillableMetric {
|
|
346
347
|
id: string;
|
|
347
348
|
}
|
|
349
|
+
interface BillingCycleConfiguration {
|
|
350
|
+
duration: number;
|
|
351
|
+
duration_unit: 'day' | 'month';
|
|
352
|
+
}
|
|
348
353
|
interface CreditAllocation {
|
|
349
354
|
allows_rollover: boolean;
|
|
350
355
|
currency: string;
|
|
@@ -385,6 +390,7 @@ export declare namespace Price {
|
|
|
385
390
|
interface PackagePrice {
|
|
386
391
|
id: string;
|
|
387
392
|
billable_metric: PackagePrice.BillableMetric | null;
|
|
393
|
+
billing_cycle_configuration: PackagePrice.BillingCycleConfiguration | null;
|
|
388
394
|
cadence: 'one_time' | 'monthly' | 'quarterly' | 'semi_annual' | 'annual' | 'custom';
|
|
389
395
|
conversion_rate: number | null;
|
|
390
396
|
created_at: string;
|
|
@@ -415,6 +421,10 @@ export declare namespace Price {
|
|
|
415
421
|
interface BillableMetric {
|
|
416
422
|
id: string;
|
|
417
423
|
}
|
|
424
|
+
interface BillingCycleConfiguration {
|
|
425
|
+
duration: number;
|
|
426
|
+
duration_unit: 'day' | 'month';
|
|
427
|
+
}
|
|
418
428
|
interface CreditAllocation {
|
|
419
429
|
allows_rollover: boolean;
|
|
420
430
|
currency: string;
|
|
@@ -460,6 +470,7 @@ export declare namespace Price {
|
|
|
460
470
|
interface MatrixPrice {
|
|
461
471
|
id: string;
|
|
462
472
|
billable_metric: MatrixPrice.BillableMetric | null;
|
|
473
|
+
billing_cycle_configuration: MatrixPrice.BillingCycleConfiguration | null;
|
|
463
474
|
cadence: 'one_time' | 'monthly' | 'quarterly' | 'semi_annual' | 'annual' | 'custom';
|
|
464
475
|
conversion_rate: number | null;
|
|
465
476
|
created_at: string;
|
|
@@ -490,6 +501,10 @@ export declare namespace Price {
|
|
|
490
501
|
interface BillableMetric {
|
|
491
502
|
id: string;
|
|
492
503
|
}
|
|
504
|
+
interface BillingCycleConfiguration {
|
|
505
|
+
duration: number;
|
|
506
|
+
duration_unit: 'day' | 'month';
|
|
507
|
+
}
|
|
493
508
|
interface CreditAllocation {
|
|
494
509
|
allows_rollover: boolean;
|
|
495
510
|
currency: string;
|
|
@@ -552,6 +567,7 @@ export declare namespace Price {
|
|
|
552
567
|
interface TieredPrice {
|
|
553
568
|
id: string;
|
|
554
569
|
billable_metric: TieredPrice.BillableMetric | null;
|
|
570
|
+
billing_cycle_configuration: TieredPrice.BillingCycleConfiguration | null;
|
|
555
571
|
cadence: 'one_time' | 'monthly' | 'quarterly' | 'semi_annual' | 'annual' | 'custom';
|
|
556
572
|
conversion_rate: number | null;
|
|
557
573
|
created_at: string;
|
|
@@ -582,6 +598,10 @@ export declare namespace Price {
|
|
|
582
598
|
interface BillableMetric {
|
|
583
599
|
id: string;
|
|
584
600
|
}
|
|
601
|
+
interface BillingCycleConfiguration {
|
|
602
|
+
duration: number;
|
|
603
|
+
duration_unit: 'day' | 'month';
|
|
604
|
+
}
|
|
585
605
|
interface CreditAllocation {
|
|
586
606
|
allows_rollover: boolean;
|
|
587
607
|
currency: string;
|
|
@@ -638,6 +658,7 @@ export declare namespace Price {
|
|
|
638
658
|
interface TieredBpsPrice {
|
|
639
659
|
id: string;
|
|
640
660
|
billable_metric: TieredBpsPrice.BillableMetric | null;
|
|
661
|
+
billing_cycle_configuration: TieredBpsPrice.BillingCycleConfiguration | null;
|
|
641
662
|
cadence: 'one_time' | 'monthly' | 'quarterly' | 'semi_annual' | 'annual' | 'custom';
|
|
642
663
|
conversion_rate: number | null;
|
|
643
664
|
created_at: string;
|
|
@@ -668,6 +689,10 @@ export declare namespace Price {
|
|
|
668
689
|
interface BillableMetric {
|
|
669
690
|
id: string;
|
|
670
691
|
}
|
|
692
|
+
interface BillingCycleConfiguration {
|
|
693
|
+
duration: number;
|
|
694
|
+
duration_unit: 'day' | 'month';
|
|
695
|
+
}
|
|
671
696
|
interface CreditAllocation {
|
|
672
697
|
allows_rollover: boolean;
|
|
673
698
|
currency: string;
|
|
@@ -729,6 +754,7 @@ export declare namespace Price {
|
|
|
729
754
|
interface BpsPrice {
|
|
730
755
|
id: string;
|
|
731
756
|
billable_metric: BpsPrice.BillableMetric | null;
|
|
757
|
+
billing_cycle_configuration: BpsPrice.BillingCycleConfiguration | null;
|
|
732
758
|
bps_config: BpsPrice.BpsConfig;
|
|
733
759
|
cadence: 'one_time' | 'monthly' | 'quarterly' | 'semi_annual' | 'annual' | 'custom';
|
|
734
760
|
conversion_rate: number | null;
|
|
@@ -759,6 +785,10 @@ export declare namespace Price {
|
|
|
759
785
|
interface BillableMetric {
|
|
760
786
|
id: string;
|
|
761
787
|
}
|
|
788
|
+
interface BillingCycleConfiguration {
|
|
789
|
+
duration: number;
|
|
790
|
+
duration_unit: 'day' | 'month';
|
|
791
|
+
}
|
|
762
792
|
interface BpsConfig {
|
|
763
793
|
/**
|
|
764
794
|
* Basis point take rate per event
|
|
@@ -803,6 +833,7 @@ export declare namespace Price {
|
|
|
803
833
|
interface BulkBpsPrice {
|
|
804
834
|
id: string;
|
|
805
835
|
billable_metric: BulkBpsPrice.BillableMetric | null;
|
|
836
|
+
billing_cycle_configuration: BulkBpsPrice.BillingCycleConfiguration | null;
|
|
806
837
|
bulk_bps_config: BulkBpsPrice.BulkBpsConfig;
|
|
807
838
|
cadence: 'one_time' | 'monthly' | 'quarterly' | 'semi_annual' | 'annual' | 'custom';
|
|
808
839
|
conversion_rate: number | null;
|
|
@@ -833,6 +864,10 @@ export declare namespace Price {
|
|
|
833
864
|
interface BillableMetric {
|
|
834
865
|
id: string;
|
|
835
866
|
}
|
|
867
|
+
interface BillingCycleConfiguration {
|
|
868
|
+
duration: number;
|
|
869
|
+
duration_unit: 'day' | 'month';
|
|
870
|
+
}
|
|
836
871
|
interface BulkBpsConfig {
|
|
837
872
|
/**
|
|
838
873
|
* Tiers for a bulk BPS pricing model where all usage is aggregated to a single
|
|
@@ -890,6 +925,7 @@ export declare namespace Price {
|
|
|
890
925
|
interface BulkPrice {
|
|
891
926
|
id: string;
|
|
892
927
|
billable_metric: BulkPrice.BillableMetric | null;
|
|
928
|
+
billing_cycle_configuration: BulkPrice.BillingCycleConfiguration | null;
|
|
893
929
|
bulk_config: BulkPrice.BulkConfig;
|
|
894
930
|
cadence: 'one_time' | 'monthly' | 'quarterly' | 'semi_annual' | 'annual' | 'custom';
|
|
895
931
|
conversion_rate: number | null;
|
|
@@ -920,6 +956,10 @@ export declare namespace Price {
|
|
|
920
956
|
interface BillableMetric {
|
|
921
957
|
id: string;
|
|
922
958
|
}
|
|
959
|
+
interface BillingCycleConfiguration {
|
|
960
|
+
duration: number;
|
|
961
|
+
duration_unit: 'day' | 'month';
|
|
962
|
+
}
|
|
923
963
|
interface BulkConfig {
|
|
924
964
|
/**
|
|
925
965
|
* Bulk tiers for rating based on total usage volume
|
|
@@ -972,6 +1012,7 @@ export declare namespace Price {
|
|
|
972
1012
|
interface ThresholdTotalAmountPrice {
|
|
973
1013
|
id: string;
|
|
974
1014
|
billable_metric: ThresholdTotalAmountPrice.BillableMetric | null;
|
|
1015
|
+
billing_cycle_configuration: ThresholdTotalAmountPrice.BillingCycleConfiguration | null;
|
|
975
1016
|
cadence: 'one_time' | 'monthly' | 'quarterly' | 'semi_annual' | 'annual' | 'custom';
|
|
976
1017
|
conversion_rate: number | null;
|
|
977
1018
|
created_at: string;
|
|
@@ -1002,6 +1043,10 @@ export declare namespace Price {
|
|
|
1002
1043
|
interface BillableMetric {
|
|
1003
1044
|
id: string;
|
|
1004
1045
|
}
|
|
1046
|
+
interface BillingCycleConfiguration {
|
|
1047
|
+
duration: number;
|
|
1048
|
+
duration_unit: 'day' | 'month';
|
|
1049
|
+
}
|
|
1005
1050
|
interface CreditAllocation {
|
|
1006
1051
|
allows_rollover: boolean;
|
|
1007
1052
|
currency: string;
|
|
@@ -1036,6 +1081,7 @@ export declare namespace Price {
|
|
|
1036
1081
|
interface TieredPackagePrice {
|
|
1037
1082
|
id: string;
|
|
1038
1083
|
billable_metric: TieredPackagePrice.BillableMetric | null;
|
|
1084
|
+
billing_cycle_configuration: TieredPackagePrice.BillingCycleConfiguration | null;
|
|
1039
1085
|
cadence: 'one_time' | 'monthly' | 'quarterly' | 'semi_annual' | 'annual' | 'custom';
|
|
1040
1086
|
conversion_rate: number | null;
|
|
1041
1087
|
created_at: string;
|
|
@@ -1066,6 +1112,10 @@ export declare namespace Price {
|
|
|
1066
1112
|
interface BillableMetric {
|
|
1067
1113
|
id: string;
|
|
1068
1114
|
}
|
|
1115
|
+
interface BillingCycleConfiguration {
|
|
1116
|
+
duration: number;
|
|
1117
|
+
duration_unit: 'day' | 'month';
|
|
1118
|
+
}
|
|
1069
1119
|
interface CreditAllocation {
|
|
1070
1120
|
allows_rollover: boolean;
|
|
1071
1121
|
currency: string;
|
|
@@ -1100,6 +1150,7 @@ export declare namespace Price {
|
|
|
1100
1150
|
interface GroupedTieredPrice {
|
|
1101
1151
|
id: string;
|
|
1102
1152
|
billable_metric: GroupedTieredPrice.BillableMetric | null;
|
|
1153
|
+
billing_cycle_configuration: GroupedTieredPrice.BillingCycleConfiguration | null;
|
|
1103
1154
|
cadence: 'one_time' | 'monthly' | 'quarterly' | 'semi_annual' | 'annual' | 'custom';
|
|
1104
1155
|
conversion_rate: number | null;
|
|
1105
1156
|
created_at: string;
|
|
@@ -1130,6 +1181,10 @@ export declare namespace Price {
|
|
|
1130
1181
|
interface BillableMetric {
|
|
1131
1182
|
id: string;
|
|
1132
1183
|
}
|
|
1184
|
+
interface BillingCycleConfiguration {
|
|
1185
|
+
duration: number;
|
|
1186
|
+
duration_unit: 'day' | 'month';
|
|
1187
|
+
}
|
|
1133
1188
|
interface CreditAllocation {
|
|
1134
1189
|
allows_rollover: boolean;
|
|
1135
1190
|
currency: string;
|
|
@@ -1164,6 +1219,7 @@ export declare namespace Price {
|
|
|
1164
1219
|
interface TieredWithMinimumPrice {
|
|
1165
1220
|
id: string;
|
|
1166
1221
|
billable_metric: TieredWithMinimumPrice.BillableMetric | null;
|
|
1222
|
+
billing_cycle_configuration: TieredWithMinimumPrice.BillingCycleConfiguration | null;
|
|
1167
1223
|
cadence: 'one_time' | 'monthly' | 'quarterly' | 'semi_annual' | 'annual' | 'custom';
|
|
1168
1224
|
conversion_rate: number | null;
|
|
1169
1225
|
created_at: string;
|
|
@@ -1194,6 +1250,10 @@ export declare namespace Price {
|
|
|
1194
1250
|
interface BillableMetric {
|
|
1195
1251
|
id: string;
|
|
1196
1252
|
}
|
|
1253
|
+
interface BillingCycleConfiguration {
|
|
1254
|
+
duration: number;
|
|
1255
|
+
duration_unit: 'day' | 'month';
|
|
1256
|
+
}
|
|
1197
1257
|
interface CreditAllocation {
|
|
1198
1258
|
allows_rollover: boolean;
|
|
1199
1259
|
currency: string;
|
|
@@ -1228,6 +1288,7 @@ export declare namespace Price {
|
|
|
1228
1288
|
interface TieredPackageWithMinimumPrice {
|
|
1229
1289
|
id: string;
|
|
1230
1290
|
billable_metric: TieredPackageWithMinimumPrice.BillableMetric | null;
|
|
1291
|
+
billing_cycle_configuration: TieredPackageWithMinimumPrice.BillingCycleConfiguration | null;
|
|
1231
1292
|
cadence: 'one_time' | 'monthly' | 'quarterly' | 'semi_annual' | 'annual' | 'custom';
|
|
1232
1293
|
conversion_rate: number | null;
|
|
1233
1294
|
created_at: string;
|
|
@@ -1258,6 +1319,10 @@ export declare namespace Price {
|
|
|
1258
1319
|
interface BillableMetric {
|
|
1259
1320
|
id: string;
|
|
1260
1321
|
}
|
|
1322
|
+
interface BillingCycleConfiguration {
|
|
1323
|
+
duration: number;
|
|
1324
|
+
duration_unit: 'day' | 'month';
|
|
1325
|
+
}
|
|
1261
1326
|
interface CreditAllocation {
|
|
1262
1327
|
allows_rollover: boolean;
|
|
1263
1328
|
currency: string;
|
|
@@ -1292,6 +1357,7 @@ export declare namespace Price {
|
|
|
1292
1357
|
interface PackageWithAllocationPrice {
|
|
1293
1358
|
id: string;
|
|
1294
1359
|
billable_metric: PackageWithAllocationPrice.BillableMetric | null;
|
|
1360
|
+
billing_cycle_configuration: PackageWithAllocationPrice.BillingCycleConfiguration | null;
|
|
1295
1361
|
cadence: 'one_time' | 'monthly' | 'quarterly' | 'semi_annual' | 'annual' | 'custom';
|
|
1296
1362
|
conversion_rate: number | null;
|
|
1297
1363
|
created_at: string;
|
|
@@ -1322,6 +1388,10 @@ export declare namespace Price {
|
|
|
1322
1388
|
interface BillableMetric {
|
|
1323
1389
|
id: string;
|
|
1324
1390
|
}
|
|
1391
|
+
interface BillingCycleConfiguration {
|
|
1392
|
+
duration: number;
|
|
1393
|
+
duration_unit: 'day' | 'month';
|
|
1394
|
+
}
|
|
1325
1395
|
interface CreditAllocation {
|
|
1326
1396
|
allows_rollover: boolean;
|
|
1327
1397
|
currency: string;
|
|
@@ -1356,6 +1426,7 @@ export declare namespace Price {
|
|
|
1356
1426
|
interface UnitWithPercentPrice {
|
|
1357
1427
|
id: string;
|
|
1358
1428
|
billable_metric: UnitWithPercentPrice.BillableMetric | null;
|
|
1429
|
+
billing_cycle_configuration: UnitWithPercentPrice.BillingCycleConfiguration | null;
|
|
1359
1430
|
cadence: 'one_time' | 'monthly' | 'quarterly' | 'semi_annual' | 'annual' | 'custom';
|
|
1360
1431
|
conversion_rate: number | null;
|
|
1361
1432
|
created_at: string;
|
|
@@ -1386,6 +1457,10 @@ export declare namespace Price {
|
|
|
1386
1457
|
interface BillableMetric {
|
|
1387
1458
|
id: string;
|
|
1388
1459
|
}
|
|
1460
|
+
interface BillingCycleConfiguration {
|
|
1461
|
+
duration: number;
|
|
1462
|
+
duration_unit: 'day' | 'month';
|
|
1463
|
+
}
|
|
1389
1464
|
interface CreditAllocation {
|
|
1390
1465
|
allows_rollover: boolean;
|
|
1391
1466
|
currency: string;
|
|
@@ -1420,6 +1495,7 @@ export declare namespace Price {
|
|
|
1420
1495
|
interface MatrixWithAllocationPrice {
|
|
1421
1496
|
id: string;
|
|
1422
1497
|
billable_metric: MatrixWithAllocationPrice.BillableMetric | null;
|
|
1498
|
+
billing_cycle_configuration: MatrixWithAllocationPrice.BillingCycleConfiguration | null;
|
|
1423
1499
|
cadence: 'one_time' | 'monthly' | 'quarterly' | 'semi_annual' | 'annual' | 'custom';
|
|
1424
1500
|
conversion_rate: number | null;
|
|
1425
1501
|
created_at: string;
|
|
@@ -1450,6 +1526,10 @@ export declare namespace Price {
|
|
|
1450
1526
|
interface BillableMetric {
|
|
1451
1527
|
id: string;
|
|
1452
1528
|
}
|
|
1529
|
+
interface BillingCycleConfiguration {
|
|
1530
|
+
duration: number;
|
|
1531
|
+
duration_unit: 'day' | 'month';
|
|
1532
|
+
}
|
|
1453
1533
|
interface CreditAllocation {
|
|
1454
1534
|
allows_rollover: boolean;
|
|
1455
1535
|
currency: string;
|
|
@@ -1516,6 +1596,7 @@ export declare namespace Price {
|
|
|
1516
1596
|
interface TieredWithProrationPrice {
|
|
1517
1597
|
id: string;
|
|
1518
1598
|
billable_metric: TieredWithProrationPrice.BillableMetric | null;
|
|
1599
|
+
billing_cycle_configuration: TieredWithProrationPrice.BillingCycleConfiguration | null;
|
|
1519
1600
|
cadence: 'one_time' | 'monthly' | 'quarterly' | 'semi_annual' | 'annual' | 'custom';
|
|
1520
1601
|
conversion_rate: number | null;
|
|
1521
1602
|
created_at: string;
|
|
@@ -1546,6 +1627,10 @@ export declare namespace Price {
|
|
|
1546
1627
|
interface BillableMetric {
|
|
1547
1628
|
id: string;
|
|
1548
1629
|
}
|
|
1630
|
+
interface BillingCycleConfiguration {
|
|
1631
|
+
duration: number;
|
|
1632
|
+
duration_unit: 'day' | 'month';
|
|
1633
|
+
}
|
|
1549
1634
|
interface CreditAllocation {
|
|
1550
1635
|
allows_rollover: boolean;
|
|
1551
1636
|
currency: string;
|
|
@@ -1580,6 +1665,7 @@ export declare namespace Price {
|
|
|
1580
1665
|
interface UnitWithProrationPrice {
|
|
1581
1666
|
id: string;
|
|
1582
1667
|
billable_metric: UnitWithProrationPrice.BillableMetric | null;
|
|
1668
|
+
billing_cycle_configuration: UnitWithProrationPrice.BillingCycleConfiguration | null;
|
|
1583
1669
|
cadence: 'one_time' | 'monthly' | 'quarterly' | 'semi_annual' | 'annual' | 'custom';
|
|
1584
1670
|
conversion_rate: number | null;
|
|
1585
1671
|
created_at: string;
|
|
@@ -1610,6 +1696,10 @@ export declare namespace Price {
|
|
|
1610
1696
|
interface BillableMetric {
|
|
1611
1697
|
id: string;
|
|
1612
1698
|
}
|
|
1699
|
+
interface BillingCycleConfiguration {
|
|
1700
|
+
duration: number;
|
|
1701
|
+
duration_unit: 'day' | 'month';
|
|
1702
|
+
}
|
|
1613
1703
|
interface CreditAllocation {
|
|
1614
1704
|
allows_rollover: boolean;
|
|
1615
1705
|
currency: string;
|
|
@@ -1651,7 +1741,7 @@ export declare namespace PriceCreateParams {
|
|
|
1651
1741
|
/**
|
|
1652
1742
|
* The cadence to bill for this price on.
|
|
1653
1743
|
*/
|
|
1654
|
-
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time';
|
|
1744
|
+
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom';
|
|
1655
1745
|
/**
|
|
1656
1746
|
* An ISO 4217 currency string for which this price is billed in.
|
|
1657
1747
|
*/
|
|
@@ -1712,7 +1802,7 @@ export declare namespace PriceCreateParams {
|
|
|
1712
1802
|
/**
|
|
1713
1803
|
* The cadence to bill for this price on.
|
|
1714
1804
|
*/
|
|
1715
|
-
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time';
|
|
1805
|
+
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom';
|
|
1716
1806
|
/**
|
|
1717
1807
|
* An ISO 4217 currency string for which this price is billed in.
|
|
1718
1808
|
*/
|
|
@@ -1778,7 +1868,7 @@ export declare namespace PriceCreateParams {
|
|
|
1778
1868
|
/**
|
|
1779
1869
|
* The cadence to bill for this price on.
|
|
1780
1870
|
*/
|
|
1781
|
-
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time';
|
|
1871
|
+
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom';
|
|
1782
1872
|
/**
|
|
1783
1873
|
* An ISO 4217 currency string for which this price is billed in.
|
|
1784
1874
|
*/
|
|
@@ -1861,7 +1951,7 @@ export declare namespace PriceCreateParams {
|
|
|
1861
1951
|
/**
|
|
1862
1952
|
* The cadence to bill for this price on.
|
|
1863
1953
|
*/
|
|
1864
|
-
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time';
|
|
1954
|
+
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom';
|
|
1865
1955
|
/**
|
|
1866
1956
|
* An ISO 4217 currency string for which this price is billed in.
|
|
1867
1957
|
*/
|
|
@@ -1948,7 +2038,7 @@ export declare namespace PriceCreateParams {
|
|
|
1948
2038
|
/**
|
|
1949
2039
|
* The cadence to bill for this price on.
|
|
1950
2040
|
*/
|
|
1951
|
-
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time';
|
|
2041
|
+
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom';
|
|
1952
2042
|
/**
|
|
1953
2043
|
* An ISO 4217 currency string for which this price is billed in.
|
|
1954
2044
|
*/
|
|
@@ -2025,7 +2115,7 @@ export declare namespace PriceCreateParams {
|
|
|
2025
2115
|
/**
|
|
2026
2116
|
* The cadence to bill for this price on.
|
|
2027
2117
|
*/
|
|
2028
|
-
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time';
|
|
2118
|
+
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom';
|
|
2029
2119
|
/**
|
|
2030
2120
|
* An ISO 4217 currency string for which this price is billed in.
|
|
2031
2121
|
*/
|
|
@@ -2108,7 +2198,7 @@ export declare namespace PriceCreateParams {
|
|
|
2108
2198
|
/**
|
|
2109
2199
|
* The cadence to bill for this price on.
|
|
2110
2200
|
*/
|
|
2111
|
-
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time';
|
|
2201
|
+
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom';
|
|
2112
2202
|
/**
|
|
2113
2203
|
* An ISO 4217 currency string for which this price is billed in.
|
|
2114
2204
|
*/
|
|
@@ -2173,7 +2263,7 @@ export declare namespace PriceCreateParams {
|
|
|
2173
2263
|
/**
|
|
2174
2264
|
* The cadence to bill for this price on.
|
|
2175
2265
|
*/
|
|
2176
|
-
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time';
|
|
2266
|
+
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom';
|
|
2177
2267
|
/**
|
|
2178
2268
|
* An ISO 4217 currency string for which this price is billed in.
|
|
2179
2269
|
*/
|
|
@@ -2251,7 +2341,7 @@ export declare namespace PriceCreateParams {
|
|
|
2251
2341
|
/**
|
|
2252
2342
|
* The cadence to bill for this price on.
|
|
2253
2343
|
*/
|
|
2254
|
-
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time';
|
|
2344
|
+
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom';
|
|
2255
2345
|
/**
|
|
2256
2346
|
* An ISO 4217 currency string for which this price is billed in.
|
|
2257
2347
|
*/
|
|
@@ -2323,7 +2413,7 @@ export declare namespace PriceCreateParams {
|
|
|
2323
2413
|
/**
|
|
2324
2414
|
* The cadence to bill for this price on.
|
|
2325
2415
|
*/
|
|
2326
|
-
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time';
|
|
2416
|
+
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom';
|
|
2327
2417
|
/**
|
|
2328
2418
|
* An ISO 4217 currency string for which this price is billed in.
|
|
2329
2419
|
*/
|
|
@@ -2376,7 +2466,7 @@ export declare namespace PriceCreateParams {
|
|
|
2376
2466
|
/**
|
|
2377
2467
|
* The cadence to bill for this price on.
|
|
2378
2468
|
*/
|
|
2379
|
-
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time';
|
|
2469
|
+
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom';
|
|
2380
2470
|
/**
|
|
2381
2471
|
* An ISO 4217 currency string for which this price is billed in.
|
|
2382
2472
|
*/
|
|
@@ -2429,7 +2519,7 @@ export declare namespace PriceCreateParams {
|
|
|
2429
2519
|
/**
|
|
2430
2520
|
* The cadence to bill for this price on.
|
|
2431
2521
|
*/
|
|
2432
|
-
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time';
|
|
2522
|
+
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom';
|
|
2433
2523
|
/**
|
|
2434
2524
|
* An ISO 4217 currency string for which this price is billed in.
|
|
2435
2525
|
*/
|
|
@@ -2482,7 +2572,7 @@ export declare namespace PriceCreateParams {
|
|
|
2482
2572
|
/**
|
|
2483
2573
|
* The cadence to bill for this price on.
|
|
2484
2574
|
*/
|
|
2485
|
-
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time';
|
|
2575
|
+
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom';
|
|
2486
2576
|
/**
|
|
2487
2577
|
* An ISO 4217 currency string for which this price is billed in.
|
|
2488
2578
|
*/
|
|
@@ -2535,7 +2625,7 @@ export declare namespace PriceCreateParams {
|
|
|
2535
2625
|
/**
|
|
2536
2626
|
* The cadence to bill for this price on.
|
|
2537
2627
|
*/
|
|
2538
|
-
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time';
|
|
2628
|
+
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom';
|
|
2539
2629
|
/**
|
|
2540
2630
|
* An ISO 4217 currency string for which this price is billed in.
|
|
2541
2631
|
*/
|
|
@@ -2588,7 +2678,7 @@ export declare namespace PriceCreateParams {
|
|
|
2588
2678
|
/**
|
|
2589
2679
|
* The cadence to bill for this price on.
|
|
2590
2680
|
*/
|
|
2591
|
-
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time';
|
|
2681
|
+
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom';
|
|
2592
2682
|
/**
|
|
2593
2683
|
* An ISO 4217 currency string for which this price is billed in.
|
|
2594
2684
|
*/
|
|
@@ -2641,7 +2731,7 @@ export declare namespace PriceCreateParams {
|
|
|
2641
2731
|
/**
|
|
2642
2732
|
* The cadence to bill for this price on.
|
|
2643
2733
|
*/
|
|
2644
|
-
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time';
|
|
2734
|
+
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom';
|
|
2645
2735
|
/**
|
|
2646
2736
|
* An ISO 4217 currency string for which this price is billed in.
|
|
2647
2737
|
*/
|
|
@@ -2694,7 +2784,7 @@ export declare namespace PriceCreateParams {
|
|
|
2694
2784
|
/**
|
|
2695
2785
|
* The cadence to bill for this price on.
|
|
2696
2786
|
*/
|
|
2697
|
-
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time';
|
|
2787
|
+
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom';
|
|
2698
2788
|
/**
|
|
2699
2789
|
* An ISO 4217 currency string for which this price is billed in.
|
|
2700
2790
|
*/
|
|
@@ -2747,7 +2837,7 @@ export declare namespace PriceCreateParams {
|
|
|
2747
2837
|
/**
|
|
2748
2838
|
* The cadence to bill for this price on.
|
|
2749
2839
|
*/
|
|
2750
|
-
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time';
|
|
2840
|
+
cadence: 'annual' | 'semi_annual' | 'monthly' | 'quarterly' | 'one_time' | 'custom';
|
|
2751
2841
|
/**
|
|
2752
2842
|
* An ISO 4217 currency string for which this price is billed in.
|
|
2753
2843
|
*/
|