@juhuu/sdk-ts 1.2.304 → 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
  },
@@ -3546,7 +3548,8 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
3546
3548
  method: "POST",
3547
3549
  url: "parameterAnomalyGroupTrackers",
3548
3550
  body: {
3549
- propertyId: ParameterAnomalyGroupTrackerCreateParams.propertyId
3551
+ propertyId: ParameterAnomalyGroupTrackerCreateParams.propertyId,
3552
+ name: ParameterAnomalyGroupTrackerCreateParams.name
3550
3553
  },
3551
3554
  authenticationNotOptional: true
3552
3555
  },
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
  },
@@ -3502,7 +3504,8 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
3502
3504
  method: "POST",
3503
3505
  url: "parameterAnomalyGroupTrackers",
3504
3506
  body: {
3505
- propertyId: ParameterAnomalyGroupTrackerCreateParams.propertyId
3507
+ propertyId: ParameterAnomalyGroupTrackerCreateParams.propertyId,
3508
+ name: ParameterAnomalyGroupTrackerCreateParams.name
3506
3509
  },
3507
3510
  authenticationNotOptional: true
3508
3511
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.304",
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",