@juhuu/sdk-ts 1.2.289 → 1.2.290
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 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -6223,6 +6223,7 @@ declare namespace JUHUU {
|
|
|
6223
6223
|
mqttTopicId: string;
|
|
6224
6224
|
signalStrengthPercentage: number;
|
|
6225
6225
|
teltonikaSerialNumber: string;
|
|
6226
|
+
flowIdArray: string[];
|
|
6226
6227
|
};
|
|
6227
6228
|
type TapkeyV1 = BaseKit & {
|
|
6228
6229
|
type: "tapkeyV1";
|
|
@@ -6299,6 +6300,7 @@ declare namespace JUHUU {
|
|
|
6299
6300
|
type Params = {
|
|
6300
6301
|
kitId: string;
|
|
6301
6302
|
name?: string;
|
|
6303
|
+
flowIdArray?: string[];
|
|
6302
6304
|
};
|
|
6303
6305
|
type Options = JUHUU.RequestOptions;
|
|
6304
6306
|
type Response = {
|
package/dist/index.d.ts
CHANGED
|
@@ -6223,6 +6223,7 @@ declare namespace JUHUU {
|
|
|
6223
6223
|
mqttTopicId: string;
|
|
6224
6224
|
signalStrengthPercentage: number;
|
|
6225
6225
|
teltonikaSerialNumber: string;
|
|
6226
|
+
flowIdArray: string[];
|
|
6226
6227
|
};
|
|
6227
6228
|
type TapkeyV1 = BaseKit & {
|
|
6228
6229
|
type: "tapkeyV1";
|
|
@@ -6299,6 +6300,7 @@ declare namespace JUHUU {
|
|
|
6299
6300
|
type Params = {
|
|
6300
6301
|
kitId: string;
|
|
6301
6302
|
name?: string;
|
|
6303
|
+
flowIdArray?: string[];
|
|
6302
6304
|
};
|
|
6303
6305
|
type Options = JUHUU.RequestOptions;
|
|
6304
6306
|
type Response = {
|
package/dist/index.js
CHANGED
|
@@ -5123,7 +5123,8 @@ var KitsService = class extends Service {
|
|
|
5123
5123
|
method: "PATCH",
|
|
5124
5124
|
url: "kits/" + params.kitId,
|
|
5125
5125
|
body: {
|
|
5126
|
-
name: params.name
|
|
5126
|
+
name: params.name,
|
|
5127
|
+
flowIdArray: params.flowIdArray
|
|
5127
5128
|
},
|
|
5128
5129
|
authenticationNotOptional: true
|
|
5129
5130
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -5079,7 +5079,8 @@ var KitsService = class extends Service {
|
|
|
5079
5079
|
method: "PATCH",
|
|
5080
5080
|
url: "kits/" + params.kitId,
|
|
5081
5081
|
body: {
|
|
5082
|
-
name: params.name
|
|
5082
|
+
name: params.name,
|
|
5083
|
+
flowIdArray: params.flowIdArray
|
|
5083
5084
|
},
|
|
5084
5085
|
authenticationNotOptional: true
|
|
5085
5086
|
},
|