rebilly-js-sdk 56.48.0 → 56.49.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 +2 -2
- package/dist/rebilly-js-sdk.d.ts +33 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [56.
|
|
1
|
+
## [56.49.0](https://github.com/Rebilly/rebilly/compare/rebilly-js-sdk-v56.48.0...rebilly-js-sdk-v56.49.0) (2024-08-20)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Features
|
|
5
5
|
|
|
6
|
-
* **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#
|
|
6
|
+
* **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#7083](https://github.com/Rebilly/rebilly/issues/7083)) ([726d5ce](https://github.com/Rebilly/rebilly/commit/726d5cedb649c2701366667eca8ad05cd17d1f61))
|
package/dist/rebilly-js-sdk.d.ts
CHANGED
|
@@ -7006,6 +7006,7 @@ export interface coreComponents {
|
|
|
7006
7006
|
| "order-paid-early"
|
|
7007
7007
|
| "order-reactivated"
|
|
7008
7008
|
| "order-renewed"
|
|
7009
|
+
| "order-trial-ended"
|
|
7009
7010
|
| "order-upgraded"
|
|
7010
7011
|
| "payment-card-expiration-was-modified"
|
|
7011
7012
|
| "payment-card-expired"
|
|
@@ -13252,9 +13253,11 @@ export interface coreComponents {
|
|
|
13252
13253
|
| "order-renewal-time-changed"
|
|
13253
13254
|
| "order-renewed"
|
|
13254
13255
|
| "order-risk-metadata-changed"
|
|
13256
|
+
| "order-trial-ended"
|
|
13255
13257
|
| "order-upgraded"
|
|
13256
13258
|
| "order-voided"
|
|
13257
13259
|
| "order-abandoned"
|
|
13260
|
+
| "quote-accepted"
|
|
13258
13261
|
| "subscription-paused"
|
|
13259
13262
|
| "subscription-pause-created"
|
|
13260
13263
|
| "subscription-pause-modified"
|
|
@@ -19386,6 +19389,14 @@ export interface coreComponents {
|
|
|
19386
19389
|
billing?: {
|
|
19387
19390
|
/** Length of time, in ISO-8601 durations format, before which a pending order is automatically abandoned. */
|
|
19388
19391
|
pendingOrderTtl?: string | null;
|
|
19392
|
+
/**
|
|
19393
|
+
* Length of time, in ISO-8601 durations format,
|
|
19394
|
+
* which is added to the due time of the order when setting the delinquency time for all related invoices.
|
|
19395
|
+
* When the delinquency time of an invoice is reached, the order is automatically canceled.
|
|
19396
|
+
*
|
|
19397
|
+
* If the provided value is `null`, the order does not change state.
|
|
19398
|
+
*/
|
|
19399
|
+
orderDelinquencyPeriod?: string | null;
|
|
19389
19400
|
} | null;
|
|
19390
19401
|
/**
|
|
19391
19402
|
* Additional organization addresses where a merchant may want to collect taxes using the `taxjar` tax calculator.
|
|
@@ -40841,6 +40852,7 @@ export interface storefrontComponents {
|
|
|
40841
40852
|
| "order-paid-early"
|
|
40842
40853
|
| "order-reactivated"
|
|
40843
40854
|
| "order-renewed"
|
|
40855
|
+
| "order-trial-ended"
|
|
40844
40856
|
| "order-upgraded"
|
|
40845
40857
|
| "payment-card-expiration-was-modified"
|
|
40846
40858
|
| "payment-card-expired"
|
|
@@ -47087,9 +47099,11 @@ export interface storefrontComponents {
|
|
|
47087
47099
|
| "order-renewal-time-changed"
|
|
47088
47100
|
| "order-renewed"
|
|
47089
47101
|
| "order-risk-metadata-changed"
|
|
47102
|
+
| "order-trial-ended"
|
|
47090
47103
|
| "order-upgraded"
|
|
47091
47104
|
| "order-voided"
|
|
47092
47105
|
| "order-abandoned"
|
|
47106
|
+
| "quote-accepted"
|
|
47093
47107
|
| "subscription-paused"
|
|
47094
47108
|
| "subscription-pause-created"
|
|
47095
47109
|
| "subscription-pause-modified"
|
|
@@ -53221,6 +53235,14 @@ export interface storefrontComponents {
|
|
|
53221
53235
|
billing?: {
|
|
53222
53236
|
/** Length of time, in ISO-8601 durations format, before which a pending order is automatically abandoned. */
|
|
53223
53237
|
pendingOrderTtl?: string | null;
|
|
53238
|
+
/**
|
|
53239
|
+
* Length of time, in ISO-8601 durations format,
|
|
53240
|
+
* which is added to the due time of the order when setting the delinquency time for all related invoices.
|
|
53241
|
+
* When the delinquency time of an invoice is reached, the order is automatically canceled.
|
|
53242
|
+
*
|
|
53243
|
+
* If the provided value is `null`, the order does not change state.
|
|
53244
|
+
*/
|
|
53245
|
+
orderDelinquencyPeriod?: string | null;
|
|
53224
53246
|
} | null;
|
|
53225
53247
|
/**
|
|
53226
53248
|
* Additional organization addresses where a merchant may want to collect taxes using the `taxjar` tax calculator.
|
|
@@ -63542,6 +63564,7 @@ export interface reportsComponents {
|
|
|
63542
63564
|
| "order-paid-early"
|
|
63543
63565
|
| "order-reactivated"
|
|
63544
63566
|
| "order-renewed"
|
|
63567
|
+
| "order-trial-ended"
|
|
63545
63568
|
| "order-upgraded"
|
|
63546
63569
|
| "payment-card-expiration-was-modified"
|
|
63547
63570
|
| "payment-card-expired"
|
|
@@ -69788,9 +69811,11 @@ export interface reportsComponents {
|
|
|
69788
69811
|
| "order-renewal-time-changed"
|
|
69789
69812
|
| "order-renewed"
|
|
69790
69813
|
| "order-risk-metadata-changed"
|
|
69814
|
+
| "order-trial-ended"
|
|
69791
69815
|
| "order-upgraded"
|
|
69792
69816
|
| "order-voided"
|
|
69793
69817
|
| "order-abandoned"
|
|
69818
|
+
| "quote-accepted"
|
|
69794
69819
|
| "subscription-paused"
|
|
69795
69820
|
| "subscription-pause-created"
|
|
69796
69821
|
| "subscription-pause-modified"
|
|
@@ -75922,6 +75947,14 @@ export interface reportsComponents {
|
|
|
75922
75947
|
billing?: {
|
|
75923
75948
|
/** Length of time, in ISO-8601 durations format, before which a pending order is automatically abandoned. */
|
|
75924
75949
|
pendingOrderTtl?: string | null;
|
|
75950
|
+
/**
|
|
75951
|
+
* Length of time, in ISO-8601 durations format,
|
|
75952
|
+
* which is added to the due time of the order when setting the delinquency time for all related invoices.
|
|
75953
|
+
* When the delinquency time of an invoice is reached, the order is automatically canceled.
|
|
75954
|
+
*
|
|
75955
|
+
* If the provided value is `null`, the order does not change state.
|
|
75956
|
+
*/
|
|
75957
|
+
orderDelinquencyPeriod?: string | null;
|
|
75925
75958
|
} | null;
|
|
75926
75959
|
/**
|
|
75927
75960
|
* Additional organization addresses where a merchant may want to collect taxes using the `taxjar` tax calculator.
|