@juhuu/sdk-ts 1.2.173 → 1.2.174

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
@@ -3549,6 +3549,7 @@ declare namespace JUHUU {
3549
3549
  namespace List {
3550
3550
  type Params = {
3551
3551
  propertyId?: string;
3552
+ parameterId?: string;
3552
3553
  };
3553
3554
  type Options = {
3554
3555
  skip?: number;
package/dist/index.d.ts CHANGED
@@ -3549,6 +3549,7 @@ declare namespace JUHUU {
3549
3549
  namespace List {
3550
3550
  type Params = {
3551
3551
  propertyId?: string;
3552
+ parameterId?: string;
3552
3553
  };
3553
3554
  type Options = {
3554
3555
  skip?: number;
package/dist/index.js CHANGED
@@ -2818,12 +2818,15 @@ var ParameterHistoriesService = class extends Service {
2818
2818
  }
2819
2819
  async list(ParameterHistoryListParams, ParameterHistoryListOptions) {
2820
2820
  const queryArray = [];
2821
- if (ParameterHistoryListOptions?.limit !== void 0) {
2822
- queryArray.push("limit=" + ParameterHistoryListOptions.limit);
2823
- }
2824
2821
  if (ParameterHistoryListParams?.propertyId !== void 0) {
2825
2822
  queryArray.push("propertyId=" + ParameterHistoryListParams.propertyId);
2826
2823
  }
2824
+ if (ParameterHistoryListParams?.parameterId !== void 0) {
2825
+ queryArray.push("parameterId=" + ParameterHistoryListParams.parameterId);
2826
+ }
2827
+ if (ParameterHistoryListOptions?.limit !== void 0) {
2828
+ queryArray.push("limit=" + ParameterHistoryListOptions.limit);
2829
+ }
2827
2830
  if (ParameterHistoryListOptions?.skip !== void 0) {
2828
2831
  queryArray.push("skip=" + ParameterHistoryListOptions.skip);
2829
2832
  }
package/dist/index.mjs CHANGED
@@ -2774,12 +2774,15 @@ var ParameterHistoriesService = class extends Service {
2774
2774
  }
2775
2775
  async list(ParameterHistoryListParams, ParameterHistoryListOptions) {
2776
2776
  const queryArray = [];
2777
- if (ParameterHistoryListOptions?.limit !== void 0) {
2778
- queryArray.push("limit=" + ParameterHistoryListOptions.limit);
2779
- }
2780
2777
  if (ParameterHistoryListParams?.propertyId !== void 0) {
2781
2778
  queryArray.push("propertyId=" + ParameterHistoryListParams.propertyId);
2782
2779
  }
2780
+ if (ParameterHistoryListParams?.parameterId !== void 0) {
2781
+ queryArray.push("parameterId=" + ParameterHistoryListParams.parameterId);
2782
+ }
2783
+ if (ParameterHistoryListOptions?.limit !== void 0) {
2784
+ queryArray.push("limit=" + ParameterHistoryListOptions.limit);
2785
+ }
2783
2786
  if (ParameterHistoryListOptions?.skip !== void 0) {
2784
2787
  queryArray.push("skip=" + ParameterHistoryListOptions.skip);
2785
2788
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.173",
3
+ "version": "1.2.174",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",