@juhuu/sdk-ts 1.2.248 → 1.2.250

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
@@ -295,6 +295,7 @@ declare namespace Layout {
295
295
  icon: string;
296
296
  title: LocaleString;
297
297
  buttonName: string;
298
+ flowId: string | null | undefined;
298
299
  };
299
300
  export namespace Text {
300
301
  interface TextBlock extends Block {
@@ -321,6 +322,7 @@ declare namespace Layout {
321
322
  interface General extends Block {
322
323
  text: LocaleString;
323
324
  buttonName: string;
325
+ flowId: string | null | undefined;
324
326
  }
325
327
  interface Small extends General {
326
328
  type: "button.small";
@@ -358,6 +360,7 @@ declare namespace Layout {
358
360
  type: "card";
359
361
  elementArray: Array<CardElement>;
360
362
  buttonName: string | null;
363
+ flowId: string | null | undefined;
361
364
  }
362
365
  export type CardElement = {
363
366
  type: "text.plain";
@@ -365,9 +368,7 @@ declare namespace Layout {
365
368
  };
366
369
  export interface Toggle extends FormElementBlock {
367
370
  type: "toggle";
368
- onButtonName: string;
369
- offButtonName: string;
370
- defaultValueParameterName: string;
371
+ parameterId: string | null;
371
372
  }
372
373
  export { };
373
374
  }
@@ -4398,12 +4399,14 @@ declare namespace JUHUU {
4398
4399
  name: string;
4399
4400
  anomalyScore: number | null;
4400
4401
  isOutlier: boolean;
4402
+ incidentId: string | null;
4401
4403
  featureReferenceParameterIdArray: Array<{
4402
4404
  parameterId: string;
4403
4405
  featureReference: string;
4404
4406
  shapValues: [number, number, number] | null;
4405
4407
  isOutlier: boolean;
4406
4408
  }>;
4409
+ anomalyDescription: string | null;
4407
4410
  };
4408
4411
  namespace Create {
4409
4412
  type Params = {
@@ -4470,6 +4473,7 @@ declare namespace JUHUU {
4470
4473
  name: string;
4471
4474
  propertyId: string;
4472
4475
  featureReferenceArray: string[];
4476
+ description: null | string;
4473
4477
  };
4474
4478
  namespace Create {
4475
4479
  type Params = {
@@ -5969,7 +5973,7 @@ declare namespace JUHUU {
5969
5973
  }
5970
5974
  }
5971
5975
  namespace Kit {
5972
- type KitType = "controlKitV1" | "tapkeyV1" | "emzV1" | "survisionNanopakTotemV1";
5976
+ type KitType = "controlKitV1" | "tapkeyV1" | "emzV1";
5973
5977
  type BaseKit = {
5974
5978
  id: string;
5975
5979
  readonly object: "kit";
@@ -5995,11 +5999,7 @@ declare namespace JUHUU {
5995
5999
  username: string;
5996
6000
  password: string;
5997
6001
  };
5998
- type SurvisionNanopakTotemV1 = BaseKit & {
5999
- type: "survisionNanopakTotemV1";
6000
- anpr: string;
6001
- };
6002
- type Object = ControlKitV1 | TapkeyV1 | EmzV1 | SurvisionNanopakTotemV1;
6002
+ type Object = ControlKitV1 | TapkeyV1 | EmzV1;
6003
6003
  namespace Create {
6004
6004
  type Params = {
6005
6005
  name?: string;
@@ -6020,9 +6020,6 @@ declare namespace JUHUU {
6020
6020
  userId: string;
6021
6021
  username: string;
6022
6022
  password: string;
6023
- } | {
6024
- type: "survisionNanopakTotemV1";
6025
- anpr: string;
6026
6023
  };
6027
6024
  };
6028
6025
  type Options = JUHUU.RequestOptions;
package/dist/index.d.ts CHANGED
@@ -295,6 +295,7 @@ declare namespace Layout {
295
295
  icon: string;
296
296
  title: LocaleString;
297
297
  buttonName: string;
298
+ flowId: string | null | undefined;
298
299
  };
299
300
  export namespace Text {
300
301
  interface TextBlock extends Block {
@@ -321,6 +322,7 @@ declare namespace Layout {
321
322
  interface General extends Block {
322
323
  text: LocaleString;
323
324
  buttonName: string;
325
+ flowId: string | null | undefined;
324
326
  }
325
327
  interface Small extends General {
326
328
  type: "button.small";
@@ -358,6 +360,7 @@ declare namespace Layout {
358
360
  type: "card";
359
361
  elementArray: Array<CardElement>;
360
362
  buttonName: string | null;
363
+ flowId: string | null | undefined;
361
364
  }
362
365
  export type CardElement = {
363
366
  type: "text.plain";
@@ -365,9 +368,7 @@ declare namespace Layout {
365
368
  };
366
369
  export interface Toggle extends FormElementBlock {
367
370
  type: "toggle";
368
- onButtonName: string;
369
- offButtonName: string;
370
- defaultValueParameterName: string;
371
+ parameterId: string | null;
371
372
  }
372
373
  export { };
373
374
  }
@@ -4398,12 +4399,14 @@ declare namespace JUHUU {
4398
4399
  name: string;
4399
4400
  anomalyScore: number | null;
4400
4401
  isOutlier: boolean;
4402
+ incidentId: string | null;
4401
4403
  featureReferenceParameterIdArray: Array<{
4402
4404
  parameterId: string;
4403
4405
  featureReference: string;
4404
4406
  shapValues: [number, number, number] | null;
4405
4407
  isOutlier: boolean;
4406
4408
  }>;
4409
+ anomalyDescription: string | null;
4407
4410
  };
4408
4411
  namespace Create {
4409
4412
  type Params = {
@@ -4470,6 +4473,7 @@ declare namespace JUHUU {
4470
4473
  name: string;
4471
4474
  propertyId: string;
4472
4475
  featureReferenceArray: string[];
4476
+ description: null | string;
4473
4477
  };
4474
4478
  namespace Create {
4475
4479
  type Params = {
@@ -5969,7 +5973,7 @@ declare namespace JUHUU {
5969
5973
  }
5970
5974
  }
5971
5975
  namespace Kit {
5972
- type KitType = "controlKitV1" | "tapkeyV1" | "emzV1" | "survisionNanopakTotemV1";
5976
+ type KitType = "controlKitV1" | "tapkeyV1" | "emzV1";
5973
5977
  type BaseKit = {
5974
5978
  id: string;
5975
5979
  readonly object: "kit";
@@ -5995,11 +5999,7 @@ declare namespace JUHUU {
5995
5999
  username: string;
5996
6000
  password: string;
5997
6001
  };
5998
- type SurvisionNanopakTotemV1 = BaseKit & {
5999
- type: "survisionNanopakTotemV1";
6000
- anpr: string;
6001
- };
6002
- type Object = ControlKitV1 | TapkeyV1 | EmzV1 | SurvisionNanopakTotemV1;
6002
+ type Object = ControlKitV1 | TapkeyV1 | EmzV1;
6003
6003
  namespace Create {
6004
6004
  type Params = {
6005
6005
  name?: string;
@@ -6020,9 +6020,6 @@ declare namespace JUHUU {
6020
6020
  userId: string;
6021
6021
  username: string;
6022
6022
  password: string;
6023
- } | {
6024
- type: "survisionNanopakTotemV1";
6025
- anpr: string;
6026
6023
  };
6027
6024
  };
6028
6025
  type Options = JUHUU.RequestOptions;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.248",
3
+ "version": "1.2.250",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",