@juhuu/sdk-ts 1.2.177 → 1.2.178
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 +10 -0
- package/dist/index.mjs +10 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -3387,6 +3387,7 @@ declare namespace JUHUU {
|
|
3387
3387
|
export namespace List {
|
3388
3388
|
type Params = {
|
3389
3389
|
propertyId?: string;
|
3390
|
+
parameterAnomalyGroupId?: string;
|
3390
3391
|
};
|
3391
3392
|
type Options = {
|
3392
3393
|
skip?: number;
|
@@ -3456,6 +3457,7 @@ declare namespace JUHUU {
|
|
3456
3457
|
namespace List {
|
3457
3458
|
type Params = {
|
3458
3459
|
propertyId?: string;
|
3460
|
+
parameterAnomalyGroupTrackerId?: string;
|
3459
3461
|
};
|
3460
3462
|
type Options = {
|
3461
3463
|
skip?: number;
|
package/dist/index.d.ts
CHANGED
@@ -3387,6 +3387,7 @@ declare namespace JUHUU {
|
|
3387
3387
|
export namespace List {
|
3388
3388
|
type Params = {
|
3389
3389
|
propertyId?: string;
|
3390
|
+
parameterAnomalyGroupId?: string;
|
3390
3391
|
};
|
3391
3392
|
type Options = {
|
3392
3393
|
skip?: number;
|
@@ -3456,6 +3457,7 @@ declare namespace JUHUU {
|
|
3456
3457
|
namespace List {
|
3457
3458
|
type Params = {
|
3458
3459
|
propertyId?: string;
|
3460
|
+
parameterAnomalyGroupTrackerId?: string;
|
3459
3461
|
};
|
3460
3462
|
type Options = {
|
3461
3463
|
skip?: number;
|
package/dist/index.js
CHANGED
@@ -2951,6 +2951,11 @@ var ParametersService = class extends Service {
|
|
2951
2951
|
}
|
2952
2952
|
async list(ParameterListParams, ParameterListOptions) {
|
2953
2953
|
const queryArray = [];
|
2954
|
+
if (ParameterListParams?.parameterAnomalyGroupId !== void 0) {
|
2955
|
+
queryArray.push(
|
2956
|
+
"parameterAnomalyGroupId=" + ParameterListParams.parameterAnomalyGroupId
|
2957
|
+
);
|
2958
|
+
}
|
2954
2959
|
if (ParameterListParams?.propertyId !== void 0) {
|
2955
2960
|
queryArray.push("propertyId=" + ParameterListParams.propertyId);
|
2956
2961
|
}
|
@@ -3227,6 +3232,11 @@ var ParameterAnomalyGroupsService = class extends Service {
|
|
3227
3232
|
}
|
3228
3233
|
async list(ParameterAnomalyGroupListParams, ParameterAnomalyGroupListOptions) {
|
3229
3234
|
const queryArray = [];
|
3235
|
+
if (ParameterAnomalyGroupListParams?.parameterAnomalyGroupTrackerId !== void 0) {
|
3236
|
+
queryArray.push(
|
3237
|
+
"parameterAnomalyGroupTrackerId=" + ParameterAnomalyGroupListParams.parameterAnomalyGroupTrackerId
|
3238
|
+
);
|
3239
|
+
}
|
3230
3240
|
if (ParameterAnomalyGroupListOptions?.limit !== void 0) {
|
3231
3241
|
queryArray.push("limit=" + ParameterAnomalyGroupListOptions.limit);
|
3232
3242
|
}
|
package/dist/index.mjs
CHANGED
@@ -2907,6 +2907,11 @@ var ParametersService = class extends Service {
|
|
2907
2907
|
}
|
2908
2908
|
async list(ParameterListParams, ParameterListOptions) {
|
2909
2909
|
const queryArray = [];
|
2910
|
+
if (ParameterListParams?.parameterAnomalyGroupId !== void 0) {
|
2911
|
+
queryArray.push(
|
2912
|
+
"parameterAnomalyGroupId=" + ParameterListParams.parameterAnomalyGroupId
|
2913
|
+
);
|
2914
|
+
}
|
2910
2915
|
if (ParameterListParams?.propertyId !== void 0) {
|
2911
2916
|
queryArray.push("propertyId=" + ParameterListParams.propertyId);
|
2912
2917
|
}
|
@@ -3183,6 +3188,11 @@ var ParameterAnomalyGroupsService = class extends Service {
|
|
3183
3188
|
}
|
3184
3189
|
async list(ParameterAnomalyGroupListParams, ParameterAnomalyGroupListOptions) {
|
3185
3190
|
const queryArray = [];
|
3191
|
+
if (ParameterAnomalyGroupListParams?.parameterAnomalyGroupTrackerId !== void 0) {
|
3192
|
+
queryArray.push(
|
3193
|
+
"parameterAnomalyGroupTrackerId=" + ParameterAnomalyGroupListParams.parameterAnomalyGroupTrackerId
|
3194
|
+
);
|
3195
|
+
}
|
3186
3196
|
if (ParameterAnomalyGroupListOptions?.limit !== void 0) {
|
3187
3197
|
queryArray.push("limit=" + ParameterAnomalyGroupListOptions.limit);
|
3188
3198
|
}
|