@juhuu/sdk-ts 1.2.134 → 1.2.135
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 +9 -1
- package/dist/index.d.ts +9 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -2042,7 +2042,15 @@ declare namespace JUHUU {
|
|
2042
2042
|
stripeSubscriptionId: string | null;
|
2043
2043
|
subscriptionStatus: "manual" | "inactive" | "waitingForActivationConfirmation" | "active" | "waitingForExpiry";
|
2044
2044
|
capabilityArray: Capability[];
|
2045
|
-
agreement:
|
2045
|
+
agreement: {
|
2046
|
+
isAccepted: boolean;
|
2047
|
+
currentAgreement: string | null;
|
2048
|
+
previousAgreements: string[];
|
2049
|
+
acceptedAt: Date | null;
|
2050
|
+
acceptedByUserId: string | null;
|
2051
|
+
acceptedByUserEmail: string | null;
|
2052
|
+
acceptedByUserName: string | null;
|
2053
|
+
};
|
2046
2054
|
}
|
2047
2055
|
export interface External extends Base {
|
2048
2056
|
type: "external";
|
package/dist/index.d.ts
CHANGED
@@ -2042,7 +2042,15 @@ declare namespace JUHUU {
|
|
2042
2042
|
stripeSubscriptionId: string | null;
|
2043
2043
|
subscriptionStatus: "manual" | "inactive" | "waitingForActivationConfirmation" | "active" | "waitingForExpiry";
|
2044
2044
|
capabilityArray: Capability[];
|
2045
|
-
agreement:
|
2045
|
+
agreement: {
|
2046
|
+
isAccepted: boolean;
|
2047
|
+
currentAgreement: string | null;
|
2048
|
+
previousAgreements: string[];
|
2049
|
+
acceptedAt: Date | null;
|
2050
|
+
acceptedByUserId: string | null;
|
2051
|
+
acceptedByUserEmail: string | null;
|
2052
|
+
acceptedByUserName: string | null;
|
2053
|
+
};
|
2046
2054
|
}
|
2047
2055
|
export interface External extends Base {
|
2048
2056
|
type: "external";
|