@juhuu/sdk-ts 1.2.117 → 1.2.118
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 +4 -10
- package/dist/index.d.ts +4 -10
- package/dist/index.js +0 -1
- package/dist/index.mjs +0 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -1125,7 +1125,10 @@ declare namespace JUHUU {
|
|
1125
1125
|
defaultPaymentMethodId: string | null;
|
1126
1126
|
defaultPaymentMethodProvider: "stripe" | "not_set";
|
1127
1127
|
acceptedTermIdArray: string[];
|
1128
|
-
licenseArray:
|
1128
|
+
licenseArray: {
|
1129
|
+
validUntil: Date | null;
|
1130
|
+
licenseTemplateId: string;
|
1131
|
+
}[];
|
1129
1132
|
languageCode: LanguageCode | null;
|
1130
1133
|
billingAddress: DeepNullable<Address>;
|
1131
1134
|
billingEmail: string | null;
|
@@ -1186,7 +1189,6 @@ declare namespace JUHUU {
|
|
1186
1189
|
type Params = {
|
1187
1190
|
userId: string;
|
1188
1191
|
name?: string;
|
1189
|
-
licenseArray?: string[];
|
1190
1192
|
platform?: Platform;
|
1191
1193
|
languageCode?: LanguageCode;
|
1192
1194
|
appVersion?: string;
|
@@ -2574,14 +2576,6 @@ declare namespace JUHUU {
|
|
2574
2576
|
}
|
2575
2577
|
export { };
|
2576
2578
|
}
|
2577
|
-
namespace License {
|
2578
|
-
type Object = {
|
2579
|
-
id: string;
|
2580
|
-
validUntil: Date | null;
|
2581
|
-
licenseTemplateId: string | null;
|
2582
|
-
version: number;
|
2583
|
-
};
|
2584
|
-
}
|
2585
2579
|
namespace Device {
|
2586
2580
|
type Object = {
|
2587
2581
|
id: string;
|
package/dist/index.d.ts
CHANGED
@@ -1125,7 +1125,10 @@ declare namespace JUHUU {
|
|
1125
1125
|
defaultPaymentMethodId: string | null;
|
1126
1126
|
defaultPaymentMethodProvider: "stripe" | "not_set";
|
1127
1127
|
acceptedTermIdArray: string[];
|
1128
|
-
licenseArray:
|
1128
|
+
licenseArray: {
|
1129
|
+
validUntil: Date | null;
|
1130
|
+
licenseTemplateId: string;
|
1131
|
+
}[];
|
1129
1132
|
languageCode: LanguageCode | null;
|
1130
1133
|
billingAddress: DeepNullable<Address>;
|
1131
1134
|
billingEmail: string | null;
|
@@ -1186,7 +1189,6 @@ declare namespace JUHUU {
|
|
1186
1189
|
type Params = {
|
1187
1190
|
userId: string;
|
1188
1191
|
name?: string;
|
1189
|
-
licenseArray?: string[];
|
1190
1192
|
platform?: Platform;
|
1191
1193
|
languageCode?: LanguageCode;
|
1192
1194
|
appVersion?: string;
|
@@ -2574,14 +2576,6 @@ declare namespace JUHUU {
|
|
2574
2576
|
}
|
2575
2577
|
export { };
|
2576
2578
|
}
|
2577
|
-
namespace License {
|
2578
|
-
type Object = {
|
2579
|
-
id: string;
|
2580
|
-
validUntil: Date | null;
|
2581
|
-
licenseTemplateId: string | null;
|
2582
|
-
version: number;
|
2583
|
-
};
|
2584
|
-
}
|
2585
2579
|
namespace Device {
|
2586
2580
|
type Object = {
|
2587
2581
|
id: string;
|
package/dist/index.js
CHANGED
@@ -637,7 +637,6 @@ var UsersService = class extends Service {
|
|
637
637
|
url: "users/" + UserUpdateParams.userId,
|
638
638
|
body: {
|
639
639
|
name: UserUpdateParams?.name,
|
640
|
-
licenseArray: UserUpdateParams?.licenseArray,
|
641
640
|
platform: UserUpdateParams?.platform,
|
642
641
|
languageCode: UserUpdateParams?.languageCode,
|
643
642
|
appVersion: UserUpdateParams?.appVersion,
|
package/dist/index.mjs
CHANGED
@@ -593,7 +593,6 @@ var UsersService = class extends Service {
|
|
593
593
|
url: "users/" + UserUpdateParams.userId,
|
594
594
|
body: {
|
595
595
|
name: UserUpdateParams?.name,
|
596
|
-
licenseArray: UserUpdateParams?.licenseArray,
|
597
596
|
platform: UserUpdateParams?.platform,
|
598
597
|
languageCode: UserUpdateParams?.languageCode,
|
599
598
|
appVersion: UserUpdateParams?.appVersion,
|