@juhuu/sdk-ts 1.2.124 → 1.2.125
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/index.d.mts +13 -0
- package/dist/index.d.ts +13 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -1933,6 +1933,19 @@ declare namespace JUHUU {
|
|
1933
1933
|
* Email only used for Stripe
|
1934
1934
|
*/
|
1935
1935
|
stripeEmail: string | null;
|
1936
|
+
/**
|
1937
|
+
* Timestamp of the next subscription update
|
1938
|
+
* A subscription update retrieves all the information of
|
1939
|
+
* a property that it will be charged for and then updates
|
1940
|
+
* the stripe subscription with the new information.
|
1941
|
+
*/
|
1942
|
+
nextSubscriptionUpdateAt: Date | null;
|
1943
|
+
/**
|
1944
|
+
* ID of the subscription from stripe
|
1945
|
+
* If null, the property is not subscribed to a plan
|
1946
|
+
*/
|
1947
|
+
stripeSubscriptionId: string | null;
|
1948
|
+
subscriptionStatus: "inactive" | "waitingForActivationConfirmation" | "active" | "waitingForExpiry";
|
1936
1949
|
}
|
1937
1950
|
export interface External extends Base {
|
1938
1951
|
type: "external";
|
package/dist/index.d.ts
CHANGED
@@ -1933,6 +1933,19 @@ declare namespace JUHUU {
|
|
1933
1933
|
* Email only used for Stripe
|
1934
1934
|
*/
|
1935
1935
|
stripeEmail: string | null;
|
1936
|
+
/**
|
1937
|
+
* Timestamp of the next subscription update
|
1938
|
+
* A subscription update retrieves all the information of
|
1939
|
+
* a property that it will be charged for and then updates
|
1940
|
+
* the stripe subscription with the new information.
|
1941
|
+
*/
|
1942
|
+
nextSubscriptionUpdateAt: Date | null;
|
1943
|
+
/**
|
1944
|
+
* ID of the subscription from stripe
|
1945
|
+
* If null, the property is not subscribed to a plan
|
1946
|
+
*/
|
1947
|
+
stripeSubscriptionId: string | null;
|
1948
|
+
subscriptionStatus: "inactive" | "waitingForActivationConfirmation" | "active" | "waitingForExpiry";
|
1936
1949
|
}
|
1937
1950
|
export interface External extends Base {
|
1938
1951
|
type: "external";
|