@juhuu/sdk-ts 1.2.312 → 1.2.313
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 +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -11,7 +11,7 @@ type ProximityStrategy = {
|
|
|
11
11
|
type: "location";
|
|
12
12
|
radius: number | null;
|
|
13
13
|
};
|
|
14
|
-
type KitStatus = "setupComplete" | "waitingForSetup";
|
|
14
|
+
type KitStatus = "setupComplete" | "waitingForAssignmentToProperty" | "waitingForSetup";
|
|
15
15
|
type Platform = "ios" | "android" | "windows" | "macos" | "web";
|
|
16
16
|
type DeviceStatus = "running" | "sleeping" | "shutdown";
|
|
17
17
|
type ExtractType<T> = T extends {
|
|
@@ -5215,7 +5215,7 @@ declare namespace JUHUU {
|
|
|
5215
5215
|
provider: "1nce" | null;
|
|
5216
5216
|
countryCode: CountryCode | null;
|
|
5217
5217
|
imei: string | null;
|
|
5218
|
-
propertyId: string;
|
|
5218
|
+
propertyId: string | null;
|
|
5219
5219
|
description: string | null;
|
|
5220
5220
|
name: string;
|
|
5221
5221
|
dataQuotaMax: number | null;
|
|
@@ -5839,6 +5839,7 @@ declare namespace JUHUU {
|
|
|
5839
5839
|
type Params = {
|
|
5840
5840
|
propertyId?: string;
|
|
5841
5841
|
userId?: string;
|
|
5842
|
+
text?: string;
|
|
5842
5843
|
};
|
|
5843
5844
|
type Options = {
|
|
5844
5845
|
limit?: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ type ProximityStrategy = {
|
|
|
11
11
|
type: "location";
|
|
12
12
|
radius: number | null;
|
|
13
13
|
};
|
|
14
|
-
type KitStatus = "setupComplete" | "waitingForSetup";
|
|
14
|
+
type KitStatus = "setupComplete" | "waitingForAssignmentToProperty" | "waitingForSetup";
|
|
15
15
|
type Platform = "ios" | "android" | "windows" | "macos" | "web";
|
|
16
16
|
type DeviceStatus = "running" | "sleeping" | "shutdown";
|
|
17
17
|
type ExtractType<T> = T extends {
|
|
@@ -5215,7 +5215,7 @@ declare namespace JUHUU {
|
|
|
5215
5215
|
provider: "1nce" | null;
|
|
5216
5216
|
countryCode: CountryCode | null;
|
|
5217
5217
|
imei: string | null;
|
|
5218
|
-
propertyId: string;
|
|
5218
|
+
propertyId: string | null;
|
|
5219
5219
|
description: string | null;
|
|
5220
5220
|
name: string;
|
|
5221
5221
|
dataQuotaMax: number | null;
|
|
@@ -5839,6 +5839,7 @@ declare namespace JUHUU {
|
|
|
5839
5839
|
type Params = {
|
|
5840
5840
|
propertyId?: string;
|
|
5841
5841
|
userId?: string;
|
|
5842
|
+
text?: string;
|
|
5842
5843
|
};
|
|
5843
5844
|
type Options = {
|
|
5844
5845
|
limit?: number;
|
package/dist/index.js
CHANGED
|
@@ -4714,6 +4714,9 @@ var BenefitCardsService = class extends Service {
|
|
|
4714
4714
|
if (params?.userId !== void 0) {
|
|
4715
4715
|
queryArray.push("userId=" + params.userId);
|
|
4716
4716
|
}
|
|
4717
|
+
if (params?.text !== void 0) {
|
|
4718
|
+
queryArray.push("text=" + params.text);
|
|
4719
|
+
}
|
|
4717
4720
|
if (options?.limit !== void 0) {
|
|
4718
4721
|
queryArray.push("limit=" + options.limit);
|
|
4719
4722
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -4670,6 +4670,9 @@ var BenefitCardsService = class extends Service {
|
|
|
4670
4670
|
if (params?.userId !== void 0) {
|
|
4671
4671
|
queryArray.push("userId=" + params.userId);
|
|
4672
4672
|
}
|
|
4673
|
+
if (params?.text !== void 0) {
|
|
4674
|
+
queryArray.push("text=" + params.text);
|
|
4675
|
+
}
|
|
4673
4676
|
if (options?.limit !== void 0) {
|
|
4674
4677
|
queryArray.push("limit=" + options.limit);
|
|
4675
4678
|
}
|