@juhuu/sdk-ts 1.2.305 → 1.2.306

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 CHANGED
@@ -4804,6 +4804,9 @@ declare namespace JUHUU {
4804
4804
  namespace Update {
4805
4805
  type Params = {
4806
4806
  parameterAnomalyGroupId: string;
4807
+ parameterAnomalyGroupTrackerId?: string;
4808
+ name?: string;
4809
+ featureReferenceParameterIdArray?: JUHUU.ParameterAnomalyGroup.Object["featureReferenceParameterIdArray"];
4807
4810
  };
4808
4811
  type Options = JUHUU.RequestOptions;
4809
4812
  type Response = {
package/dist/index.d.ts CHANGED
@@ -4804,6 +4804,9 @@ declare namespace JUHUU {
4804
4804
  namespace Update {
4805
4805
  type Params = {
4806
4806
  parameterAnomalyGroupId: string;
4807
+ parameterAnomalyGroupTrackerId?: string;
4808
+ name?: string;
4809
+ featureReferenceParameterIdArray?: JUHUU.ParameterAnomalyGroup.Object["featureReferenceParameterIdArray"];
4807
4810
  };
4808
4811
  type Options = JUHUU.RequestOptions;
4809
4812
  type Response = {
package/dist/index.js CHANGED
@@ -3515,7 +3515,9 @@ var ParameterAnomalyGroupsService = class extends Service {
3515
3515
  method: "PATCH",
3516
3516
  url: "parameterAnomalyGroups/" + ParameterAnomalyGroupUpdateParams.parameterAnomalyGroupId,
3517
3517
  body: {
3518
- parameterAnomalyGroupId: ParameterAnomalyGroupUpdateParams.parameterAnomalyGroupId
3518
+ parameterAnomalyGroupTrackerId: ParameterAnomalyGroupUpdateParams.parameterAnomalyGroupTrackerId,
3519
+ name: ParameterAnomalyGroupUpdateParams.name,
3520
+ featureReferenceParameterIdArray: ParameterAnomalyGroupUpdateParams.featureReferenceParameterIdArray
3519
3521
  },
3520
3522
  authenticationNotOptional: true
3521
3523
  },
package/dist/index.mjs CHANGED
@@ -3471,7 +3471,9 @@ var ParameterAnomalyGroupsService = class extends Service {
3471
3471
  method: "PATCH",
3472
3472
  url: "parameterAnomalyGroups/" + ParameterAnomalyGroupUpdateParams.parameterAnomalyGroupId,
3473
3473
  body: {
3474
- parameterAnomalyGroupId: ParameterAnomalyGroupUpdateParams.parameterAnomalyGroupId
3474
+ parameterAnomalyGroupTrackerId: ParameterAnomalyGroupUpdateParams.parameterAnomalyGroupTrackerId,
3475
+ name: ParameterAnomalyGroupUpdateParams.name,
3476
+ featureReferenceParameterIdArray: ParameterAnomalyGroupUpdateParams.featureReferenceParameterIdArray
3475
3477
  },
3476
3478
  authenticationNotOptional: true
3477
3479
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.305",
3
+ "version": "1.2.306",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",