@juhuu/sdk-ts 1.2.128 → 1.2.129
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 +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -1967,7 +1967,8 @@ declare namespace JUHUU {
|
|
1967
1967
|
* If null, the property is not subscribed to a plan
|
1968
1968
|
*/
|
1969
1969
|
stripeSubscriptionId: string | null;
|
1970
|
-
subscriptionStatus: "inactive" | "waitingForActivationConfirmation" | "active" | "waitingForExpiry";
|
1970
|
+
subscriptionStatus: "manual" | "inactive" | "waitingForActivationConfirmation" | "active" | "waitingForExpiry";
|
1971
|
+
capabilityArray: Capability[];
|
1971
1972
|
}
|
1972
1973
|
export interface External extends Base {
|
1973
1974
|
type: "external";
|
package/dist/index.d.ts
CHANGED
@@ -1967,7 +1967,8 @@ declare namespace JUHUU {
|
|
1967
1967
|
* If null, the property is not subscribed to a plan
|
1968
1968
|
*/
|
1969
1969
|
stripeSubscriptionId: string | null;
|
1970
|
-
subscriptionStatus: "inactive" | "waitingForActivationConfirmation" | "active" | "waitingForExpiry";
|
1970
|
+
subscriptionStatus: "manual" | "inactive" | "waitingForActivationConfirmation" | "active" | "waitingForExpiry";
|
1971
|
+
capabilityArray: Capability[];
|
1971
1972
|
}
|
1972
1973
|
export interface External extends Base {
|
1973
1974
|
type: "external";
|