dodopayments 2.30.0 → 2.31.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 +1 -1
- package/resources/entitlements/entitlements.d.mts +173 -35
- package/resources/entitlements/entitlements.d.mts.map +1 -1
- package/resources/entitlements/entitlements.d.ts +173 -35
- package/resources/entitlements/entitlements.d.ts.map +1 -1
- package/resources/entitlements/entitlements.js.map +1 -1
- package/resources/entitlements/entitlements.mjs.map +1 -1
- package/resources/entitlements/files.d.mts +4 -11
- package/resources/entitlements/files.d.mts.map +1 -1
- package/resources/entitlements/files.d.ts +4 -11
- package/resources/entitlements/files.d.ts.map +1 -1
- package/resources/entitlements/files.js +2 -9
- package/resources/entitlements/files.js.map +1 -1
- package/resources/entitlements/files.mjs +2 -9
- package/resources/entitlements/files.mjs.map +1 -1
- package/resources/entitlements/grants.d.mts +80 -13
- package/resources/entitlements/grants.d.mts.map +1 -1
- package/resources/entitlements/grants.d.ts +80 -13
- package/resources/entitlements/grants.d.ts.map +1 -1
- package/resources/entitlements/grants.js +2 -4
- package/resources/entitlements/grants.js.map +1 -1
- package/resources/entitlements/grants.mjs +2 -4
- package/resources/entitlements/grants.mjs.map +1 -1
- package/resources/products/products.d.mts +36 -12
- package/resources/products/products.d.mts.map +1 -1
- package/resources/products/products.d.ts +36 -12
- package/resources/products/products.d.ts.map +1 -1
- package/resources/products/products.js.map +1 -1
- package/resources/products/products.mjs.map +1 -1
- package/resources/webhook-events.d.mts +4 -0
- package/resources/webhook-events.d.mts.map +1 -1
- package/resources/webhook-events.d.ts +4 -0
- package/resources/webhook-events.d.ts.map +1 -1
- package/resources/webhooks/webhooks.d.mts +32 -0
- package/resources/webhooks/webhooks.d.mts.map +1 -1
- package/resources/webhooks/webhooks.d.ts +32 -0
- package/resources/webhooks/webhooks.d.ts.map +1 -1
- package/resources/webhooks/webhooks.js.map +1 -1
- package/resources/webhooks/webhooks.mjs.map +1 -1
- package/src/resources/entitlements/entitlements.ts +172 -37
- package/src/resources/entitlements/files.ts +4 -11
- package/src/resources/entitlements/grants.ts +78 -14
- package/src/resources/products/products.ts +36 -12
- package/src/resources/webhook-events.ts +4 -0
- package/src/resources/webhooks/webhooks.ts +32 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -672,6 +672,10 @@ export interface EntitlementGrantCreatedWebhookEvent {
|
|
|
672
672
|
*/
|
|
673
673
|
business_id: string;
|
|
674
674
|
|
|
675
|
+
/**
|
|
676
|
+
* Detailed view of a single entitlement grant: who it's for, its lifecycle state,
|
|
677
|
+
* and any integration-specific delivery payload.
|
|
678
|
+
*/
|
|
675
679
|
data: GrantsAPI.EntitlementGrant;
|
|
676
680
|
|
|
677
681
|
/**
|
|
@@ -691,6 +695,10 @@ export interface EntitlementGrantDeliveredWebhookEvent {
|
|
|
691
695
|
*/
|
|
692
696
|
business_id: string;
|
|
693
697
|
|
|
698
|
+
/**
|
|
699
|
+
* Detailed view of a single entitlement grant: who it's for, its lifecycle state,
|
|
700
|
+
* and any integration-specific delivery payload.
|
|
701
|
+
*/
|
|
694
702
|
data: GrantsAPI.EntitlementGrant;
|
|
695
703
|
|
|
696
704
|
/**
|
|
@@ -710,6 +718,10 @@ export interface EntitlementGrantFailedWebhookEvent {
|
|
|
710
718
|
*/
|
|
711
719
|
business_id: string;
|
|
712
720
|
|
|
721
|
+
/**
|
|
722
|
+
* Detailed view of a single entitlement grant: who it's for, its lifecycle state,
|
|
723
|
+
* and any integration-specific delivery payload.
|
|
724
|
+
*/
|
|
713
725
|
data: GrantsAPI.EntitlementGrant;
|
|
714
726
|
|
|
715
727
|
/**
|
|
@@ -729,6 +741,10 @@ export interface EntitlementGrantRevokedWebhookEvent {
|
|
|
729
741
|
*/
|
|
730
742
|
business_id: string;
|
|
731
743
|
|
|
744
|
+
/**
|
|
745
|
+
* Detailed view of a single entitlement grant: who it's for, its lifecycle state,
|
|
746
|
+
* and any integration-specific delivery payload.
|
|
747
|
+
*/
|
|
732
748
|
data: GrantsAPI.EntitlementGrant;
|
|
733
749
|
|
|
734
750
|
/**
|
|
@@ -1579,6 +1595,10 @@ export interface EntitlementGrantCreatedWebhookEvent {
|
|
|
1579
1595
|
*/
|
|
1580
1596
|
business_id: string;
|
|
1581
1597
|
|
|
1598
|
+
/**
|
|
1599
|
+
* Detailed view of a single entitlement grant: who it's for, its lifecycle state,
|
|
1600
|
+
* and any integration-specific delivery payload.
|
|
1601
|
+
*/
|
|
1582
1602
|
data: GrantsAPI.EntitlementGrant;
|
|
1583
1603
|
|
|
1584
1604
|
/**
|
|
@@ -1598,6 +1618,10 @@ export interface EntitlementGrantDeliveredWebhookEvent {
|
|
|
1598
1618
|
*/
|
|
1599
1619
|
business_id: string;
|
|
1600
1620
|
|
|
1621
|
+
/**
|
|
1622
|
+
* Detailed view of a single entitlement grant: who it's for, its lifecycle state,
|
|
1623
|
+
* and any integration-specific delivery payload.
|
|
1624
|
+
*/
|
|
1601
1625
|
data: GrantsAPI.EntitlementGrant;
|
|
1602
1626
|
|
|
1603
1627
|
/**
|
|
@@ -1617,6 +1641,10 @@ export interface EntitlementGrantFailedWebhookEvent {
|
|
|
1617
1641
|
*/
|
|
1618
1642
|
business_id: string;
|
|
1619
1643
|
|
|
1644
|
+
/**
|
|
1645
|
+
* Detailed view of a single entitlement grant: who it's for, its lifecycle state,
|
|
1646
|
+
* and any integration-specific delivery payload.
|
|
1647
|
+
*/
|
|
1620
1648
|
data: GrantsAPI.EntitlementGrant;
|
|
1621
1649
|
|
|
1622
1650
|
/**
|
|
@@ -1636,6 +1664,10 @@ export interface EntitlementGrantRevokedWebhookEvent {
|
|
|
1636
1664
|
*/
|
|
1637
1665
|
business_id: string;
|
|
1638
1666
|
|
|
1667
|
+
/**
|
|
1668
|
+
* Detailed view of a single entitlement grant: who it's for, its lifecycle state,
|
|
1669
|
+
* and any integration-specific delivery payload.
|
|
1670
|
+
*/
|
|
1639
1671
|
data: GrantsAPI.EntitlementGrant;
|
|
1640
1672
|
|
|
1641
1673
|
/**
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '2.
|
|
1
|
+
export const VERSION = '2.31.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "2.
|
|
1
|
+
export declare const VERSION = "2.31.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "2.
|
|
1
|
+
export declare const VERSION = "2.31.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '2.
|
|
1
|
+
export const VERSION = '2.31.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|