@juhuu/sdk-ts 1.2.162 → 1.2.164

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
@@ -2627,6 +2627,7 @@ declare namespace JUHUU {
2627
2627
  disabled: boolean;
2628
2628
  disabledBy: "propertyAdmin" | "deviceNodeArray" | null;
2629
2629
  visible: boolean;
2630
+ incidentTemplateIdArray: string[];
2630
2631
  };
2631
2632
  export interface RentableDeviceGroup extends Base {
2632
2633
  type: "rentableDeviceGroup";
@@ -2876,6 +2877,7 @@ declare namespace JUHUU {
2876
2877
  connectorParameter: string | null;
2877
2878
  disabled: boolean;
2878
2879
  disabledBy: "propertyAdmin" | "nodeArray" | null;
2880
+ incidentTemplateIdArray: string[];
2879
2881
  };
2880
2882
  namespace Create {
2881
2883
  type Params = {
@@ -3143,12 +3145,12 @@ declare namespace JUHUU {
3143
3145
  export namespace Create {
3144
3146
  type Params = {
3145
3147
  propertyId: string;
3146
- description: JUHUU.Incident.Object["description"];
3148
+ description?: JUHUU.Incident.Object["description"];
3147
3149
  severity?: JUHUU.Incident.Object["severity"];
3148
3150
  deviceId?: string;
3149
3151
  locationId?: string;
3150
3152
  incidentTepmlateId?: string;
3151
- title: JUHUU.Incident.Object["title"];
3153
+ title?: JUHUU.Incident.Object["title"];
3152
3154
  type: JUHUU.Incident.Object["type"];
3153
3155
  };
3154
3156
  type Options = JUHUU.RequestOptions;
@@ -3210,7 +3212,7 @@ declare namespace JUHUU {
3210
3212
  readonly object: "incidentTemplate";
3211
3213
  name: string;
3212
3214
  title: LocaleString;
3213
- subtitle: LocaleString;
3215
+ severity: "low" | "medium" | "high";
3214
3216
  description: LocaleString;
3215
3217
  propertyId: string;
3216
3218
  lastUpdatedAt: Date;
package/dist/index.d.ts CHANGED
@@ -2627,6 +2627,7 @@ declare namespace JUHUU {
2627
2627
  disabled: boolean;
2628
2628
  disabledBy: "propertyAdmin" | "deviceNodeArray" | null;
2629
2629
  visible: boolean;
2630
+ incidentTemplateIdArray: string[];
2630
2631
  };
2631
2632
  export interface RentableDeviceGroup extends Base {
2632
2633
  type: "rentableDeviceGroup";
@@ -2876,6 +2877,7 @@ declare namespace JUHUU {
2876
2877
  connectorParameter: string | null;
2877
2878
  disabled: boolean;
2878
2879
  disabledBy: "propertyAdmin" | "nodeArray" | null;
2880
+ incidentTemplateIdArray: string[];
2879
2881
  };
2880
2882
  namespace Create {
2881
2883
  type Params = {
@@ -3143,12 +3145,12 @@ declare namespace JUHUU {
3143
3145
  export namespace Create {
3144
3146
  type Params = {
3145
3147
  propertyId: string;
3146
- description: JUHUU.Incident.Object["description"];
3148
+ description?: JUHUU.Incident.Object["description"];
3147
3149
  severity?: JUHUU.Incident.Object["severity"];
3148
3150
  deviceId?: string;
3149
3151
  locationId?: string;
3150
3152
  incidentTepmlateId?: string;
3151
- title: JUHUU.Incident.Object["title"];
3153
+ title?: JUHUU.Incident.Object["title"];
3152
3154
  type: JUHUU.Incident.Object["type"];
3153
3155
  };
3154
3156
  type Options = JUHUU.RequestOptions;
@@ -3210,7 +3212,7 @@ declare namespace JUHUU {
3210
3212
  readonly object: "incidentTemplate";
3211
3213
  name: string;
3212
3214
  title: LocaleString;
3213
- subtitle: LocaleString;
3215
+ severity: "low" | "medium" | "high";
3214
3216
  description: LocaleString;
3215
3217
  propertyId: string;
3216
3218
  lastUpdatedAt: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.162",
3
+ "version": "1.2.164",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",