@juhuu/sdk-ts 1.2.303 → 1.2.305

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
@@ -4868,7 +4868,8 @@ declare namespace JUHUU {
4868
4868
  namespace Update {
4869
4869
  type Params = {
4870
4870
  parameterAnomalyGroupTrackerId: string;
4871
- name: string;
4871
+ name?: string;
4872
+ description?: string;
4872
4873
  };
4873
4874
  type Options = JUHUU.RequestOptions;
4874
4875
  type Response = {
package/dist/index.d.ts CHANGED
@@ -4868,7 +4868,8 @@ declare namespace JUHUU {
4868
4868
  namespace Update {
4869
4869
  type Params = {
4870
4870
  parameterAnomalyGroupTrackerId: string;
4871
- name: string;
4871
+ name?: string;
4872
+ description?: string;
4872
4873
  };
4873
4874
  type Options = JUHUU.RequestOptions;
4874
4875
  type Response = {
package/dist/index.js CHANGED
@@ -3546,7 +3546,8 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
3546
3546
  method: "POST",
3547
3547
  url: "parameterAnomalyGroupTrackers",
3548
3548
  body: {
3549
- propertyId: ParameterAnomalyGroupTrackerCreateParams.propertyId
3549
+ propertyId: ParameterAnomalyGroupTrackerCreateParams.propertyId,
3550
+ name: ParameterAnomalyGroupTrackerCreateParams.name
3550
3551
  },
3551
3552
  authenticationNotOptional: true
3552
3553
  },
@@ -3599,7 +3600,8 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
3599
3600
  method: "PATCH",
3600
3601
  url: "parameterAnomalyGroupTrackers/" + ParameterAnomalyGroupTrackerUpdateParams.parameterAnomalyGroupTrackerId,
3601
3602
  body: {
3602
- name: ParameterAnomalyGroupTrackerUpdateParams.name
3603
+ name: ParameterAnomalyGroupTrackerUpdateParams.name,
3604
+ description: ParameterAnomalyGroupTrackerUpdateParams.description
3603
3605
  },
3604
3606
  authenticationNotOptional: true
3605
3607
  },
package/dist/index.mjs CHANGED
@@ -3502,7 +3502,8 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
3502
3502
  method: "POST",
3503
3503
  url: "parameterAnomalyGroupTrackers",
3504
3504
  body: {
3505
- propertyId: ParameterAnomalyGroupTrackerCreateParams.propertyId
3505
+ propertyId: ParameterAnomalyGroupTrackerCreateParams.propertyId,
3506
+ name: ParameterAnomalyGroupTrackerCreateParams.name
3506
3507
  },
3507
3508
  authenticationNotOptional: true
3508
3509
  },
@@ -3555,7 +3556,8 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
3555
3556
  method: "PATCH",
3556
3557
  url: "parameterAnomalyGroupTrackers/" + ParameterAnomalyGroupTrackerUpdateParams.parameterAnomalyGroupTrackerId,
3557
3558
  body: {
3558
- name: ParameterAnomalyGroupTrackerUpdateParams.name
3559
+ name: ParameterAnomalyGroupTrackerUpdateParams.name,
3560
+ description: ParameterAnomalyGroupTrackerUpdateParams.description
3559
3561
  },
3560
3562
  authenticationNotOptional: true
3561
3563
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.303",
3
+ "version": "1.2.305",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",