@juhuu/sdk-ts 1.2.303 → 1.2.304
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 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
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
|
|
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
|
|
4871
|
+
name?: string;
|
|
4872
|
+
description?: string;
|
|
4872
4873
|
};
|
|
4873
4874
|
type Options = JUHUU.RequestOptions;
|
|
4874
4875
|
type Response = {
|
package/dist/index.js
CHANGED
|
@@ -3599,7 +3599,8 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
|
|
|
3599
3599
|
method: "PATCH",
|
|
3600
3600
|
url: "parameterAnomalyGroupTrackers/" + ParameterAnomalyGroupTrackerUpdateParams.parameterAnomalyGroupTrackerId,
|
|
3601
3601
|
body: {
|
|
3602
|
-
name: ParameterAnomalyGroupTrackerUpdateParams.name
|
|
3602
|
+
name: ParameterAnomalyGroupTrackerUpdateParams.name,
|
|
3603
|
+
description: ParameterAnomalyGroupTrackerUpdateParams.description
|
|
3603
3604
|
},
|
|
3604
3605
|
authenticationNotOptional: true
|
|
3605
3606
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -3555,7 +3555,8 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
|
|
|
3555
3555
|
method: "PATCH",
|
|
3556
3556
|
url: "parameterAnomalyGroupTrackers/" + ParameterAnomalyGroupTrackerUpdateParams.parameterAnomalyGroupTrackerId,
|
|
3557
3557
|
body: {
|
|
3558
|
-
name: ParameterAnomalyGroupTrackerUpdateParams.name
|
|
3558
|
+
name: ParameterAnomalyGroupTrackerUpdateParams.name,
|
|
3559
|
+
description: ParameterAnomalyGroupTrackerUpdateParams.description
|
|
3559
3560
|
},
|
|
3560
3561
|
authenticationNotOptional: true
|
|
3561
3562
|
},
|