@juhuu/sdk-ts 1.2.210 → 1.2.212

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
@@ -2228,6 +2228,9 @@ declare namespace JUHUU {
2228
2228
  roundToMidnight?: boolean;
2229
2229
  autoRenewManualEnabled?: boolean;
2230
2230
  manualTerminationEnabled?: boolean;
2231
+ salesTaxPercentage?: number;
2232
+ shortDescription?: LocaleString | null;
2233
+ longDescription?: LocaleString | null;
2231
2234
  };
2232
2235
  type Options = JUHUU.RequestOptions;
2233
2236
  type Response = {
@@ -3536,6 +3539,10 @@ declare namespace JUHUU {
3536
3539
  name: string;
3537
3540
  anomalyScore: number | null;
3538
3541
  isOutlier: boolean;
3542
+ featureReferenceParameterIdArray: Array<{
3543
+ parameterId: string;
3544
+ featureReference: string;
3545
+ }>;
3539
3546
  };
3540
3547
  namespace Create {
3541
3548
  type Params = {
@@ -3599,6 +3606,7 @@ declare namespace JUHUU {
3599
3606
  nextRunAt: Date | null;
3600
3607
  name: string;
3601
3608
  propertyId: string;
3609
+ featureReferenceArray: string[];
3602
3610
  };
3603
3611
  namespace Create {
3604
3612
  type Params = {
@@ -3676,7 +3684,7 @@ declare namespace JUHUU {
3676
3684
  parameterId: string;
3677
3685
  shapAnomalyArray: Array<{
3678
3686
  parameterAnomalyGroupId: string;
3679
- shapScore: number;
3687
+ shapScore: number | null;
3680
3688
  }>;
3681
3689
  };
3682
3690
  export interface Text extends Base {
package/dist/index.d.ts CHANGED
@@ -2228,6 +2228,9 @@ declare namespace JUHUU {
2228
2228
  roundToMidnight?: boolean;
2229
2229
  autoRenewManualEnabled?: boolean;
2230
2230
  manualTerminationEnabled?: boolean;
2231
+ salesTaxPercentage?: number;
2232
+ shortDescription?: LocaleString | null;
2233
+ longDescription?: LocaleString | null;
2231
2234
  };
2232
2235
  type Options = JUHUU.RequestOptions;
2233
2236
  type Response = {
@@ -3536,6 +3539,10 @@ declare namespace JUHUU {
3536
3539
  name: string;
3537
3540
  anomalyScore: number | null;
3538
3541
  isOutlier: boolean;
3542
+ featureReferenceParameterIdArray: Array<{
3543
+ parameterId: string;
3544
+ featureReference: string;
3545
+ }>;
3539
3546
  };
3540
3547
  namespace Create {
3541
3548
  type Params = {
@@ -3599,6 +3606,7 @@ declare namespace JUHUU {
3599
3606
  nextRunAt: Date | null;
3600
3607
  name: string;
3601
3608
  propertyId: string;
3609
+ featureReferenceArray: string[];
3602
3610
  };
3603
3611
  namespace Create {
3604
3612
  type Params = {
@@ -3676,7 +3684,7 @@ declare namespace JUHUU {
3676
3684
  parameterId: string;
3677
3685
  shapAnomalyArray: Array<{
3678
3686
  parameterAnomalyGroupId: string;
3679
- shapScore: number;
3687
+ shapScore: number | null;
3680
3688
  }>;
3681
3689
  };
3682
3690
  export interface Text extends Base {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.210",
3
+ "version": "1.2.212",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",