@juhuu/sdk-ts 1.2.134 → 1.2.136
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 +10 -1
- package/dist/index.d.ts +10 -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";
|
@@ -2759,6 +2767,7 @@ declare namespace JUHUU {
|
|
2759
2767
|
statusArray?: DeviceStatus[];
|
2760
2768
|
propertyId?: string;
|
2761
2769
|
deviceTemplateId?: string;
|
2770
|
+
acceptTerms?: boolean;
|
2762
2771
|
};
|
2763
2772
|
type Options = {
|
2764
2773
|
limit?: number;
|
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";
|
@@ -2759,6 +2767,7 @@ declare namespace JUHUU {
|
|
2759
2767
|
statusArray?: DeviceStatus[];
|
2760
2768
|
propertyId?: string;
|
2761
2769
|
deviceTemplateId?: string;
|
2770
|
+
acceptTerms?: boolean;
|
2762
2771
|
};
|
2763
2772
|
type Options = {
|
2764
2773
|
limit?: number;
|