@juhuu/sdk-ts 1.2.205 → 1.2.207

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
@@ -2555,7 +2555,7 @@ declare namespace JUHUU {
2555
2555
  capturedAt: Date | null;
2556
2556
  capturedBy: "system" | "propertyAdmin" | null;
2557
2557
  capturedByUserId: string | null;
2558
- refundLevel: boolean;
2558
+ refundLevel: "none" | "partial" | "full";
2559
2559
  };
2560
2560
  namespace Retrieve {
2561
2561
  type Params = {
@@ -3295,7 +3295,6 @@ declare namespace JUHUU {
3295
3295
  name: string | null;
3296
3296
  propertyId: string;
3297
3297
  lastUpdatedAt: Date | null;
3298
- parameterAnomalyGroupIdArray: string[];
3299
3298
  createdAt: Date | null;
3300
3299
  reference: string | null;
3301
3300
  };
@@ -3409,6 +3408,7 @@ declare namespace JUHUU {
3409
3408
  id: string;
3410
3409
  readonly object: "parameterAnomalyGroup";
3411
3410
  parameterAnomalyGroupTrackerId: string | null;
3411
+ parameterIdArray: string[];
3412
3412
  propertyId: string;
3413
3413
  name: string;
3414
3414
  };
package/dist/index.d.ts CHANGED
@@ -2555,7 +2555,7 @@ declare namespace JUHUU {
2555
2555
  capturedAt: Date | null;
2556
2556
  capturedBy: "system" | "propertyAdmin" | null;
2557
2557
  capturedByUserId: string | null;
2558
- refundLevel: boolean;
2558
+ refundLevel: "none" | "partial" | "full";
2559
2559
  };
2560
2560
  namespace Retrieve {
2561
2561
  type Params = {
@@ -3295,7 +3295,6 @@ declare namespace JUHUU {
3295
3295
  name: string | null;
3296
3296
  propertyId: string;
3297
3297
  lastUpdatedAt: Date | null;
3298
- parameterAnomalyGroupIdArray: string[];
3299
3298
  createdAt: Date | null;
3300
3299
  reference: string | null;
3301
3300
  };
@@ -3409,6 +3408,7 @@ declare namespace JUHUU {
3409
3408
  id: string;
3410
3409
  readonly object: "parameterAnomalyGroup";
3411
3410
  parameterAnomalyGroupTrackerId: string | null;
3411
+ parameterIdArray: string[];
3412
3412
  propertyId: string;
3413
3413
  name: string;
3414
3414
  };
package/dist/index.js CHANGED
@@ -3276,7 +3276,7 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
3276
3276
  return await super.sendRequest(
3277
3277
  {
3278
3278
  method: "GET",
3279
- url: "articles?" + queryArray.join("&"),
3279
+ url: "parameterAnomalyGroupTrackers?" + queryArray.join("&"),
3280
3280
  body: void 0,
3281
3281
  authenticationNotOptional: false
3282
3282
  },
@@ -3293,7 +3293,7 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
3293
3293
  return await super.sendRequest(
3294
3294
  {
3295
3295
  method: "GET",
3296
- url: "articles/" + ParameterAnomalyGroupTrackerRetrieveParams.parameterAnomalyGroupTrackerId + "?" + queryArray.join("&"),
3296
+ url: "parameterAnomalyGroupTrackers/" + ParameterAnomalyGroupTrackerRetrieveParams.parameterAnomalyGroupTrackerId + "?" + queryArray.join("&"),
3297
3297
  body: void 0,
3298
3298
  authenticationNotOptional: false
3299
3299
  },
package/dist/index.mjs CHANGED
@@ -3232,7 +3232,7 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
3232
3232
  return await super.sendRequest(
3233
3233
  {
3234
3234
  method: "GET",
3235
- url: "articles?" + queryArray.join("&"),
3235
+ url: "parameterAnomalyGroupTrackers?" + queryArray.join("&"),
3236
3236
  body: void 0,
3237
3237
  authenticationNotOptional: false
3238
3238
  },
@@ -3249,7 +3249,7 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
3249
3249
  return await super.sendRequest(
3250
3250
  {
3251
3251
  method: "GET",
3252
- url: "articles/" + ParameterAnomalyGroupTrackerRetrieveParams.parameterAnomalyGroupTrackerId + "?" + queryArray.join("&"),
3252
+ url: "parameterAnomalyGroupTrackers/" + ParameterAnomalyGroupTrackerRetrieveParams.parameterAnomalyGroupTrackerId + "?" + queryArray.join("&"),
3253
3253
  body: void 0,
3254
3254
  authenticationNotOptional: false
3255
3255
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.205",
3
+ "version": "1.2.207",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",