@juhuu/sdk-ts 1.2.162 → 1.2.163
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 +3 -3
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -3143,12 +3143,12 @@ declare namespace JUHUU {
|
|
3143
3143
|
export namespace Create {
|
3144
3144
|
type Params = {
|
3145
3145
|
propertyId: string;
|
3146
|
-
description
|
3146
|
+
description?: JUHUU.Incident.Object["description"];
|
3147
3147
|
severity?: JUHUU.Incident.Object["severity"];
|
3148
3148
|
deviceId?: string;
|
3149
3149
|
locationId?: string;
|
3150
3150
|
incidentTepmlateId?: string;
|
3151
|
-
title
|
3151
|
+
title?: JUHUU.Incident.Object["title"];
|
3152
3152
|
type: JUHUU.Incident.Object["type"];
|
3153
3153
|
};
|
3154
3154
|
type Options = JUHUU.RequestOptions;
|
@@ -3210,7 +3210,7 @@ declare namespace JUHUU {
|
|
3210
3210
|
readonly object: "incidentTemplate";
|
3211
3211
|
name: string;
|
3212
3212
|
title: LocaleString;
|
3213
|
-
|
3213
|
+
severity: "low" | "medium" | "high";
|
3214
3214
|
description: LocaleString;
|
3215
3215
|
propertyId: string;
|
3216
3216
|
lastUpdatedAt: Date;
|
package/dist/index.d.ts
CHANGED
@@ -3143,12 +3143,12 @@ declare namespace JUHUU {
|
|
3143
3143
|
export namespace Create {
|
3144
3144
|
type Params = {
|
3145
3145
|
propertyId: string;
|
3146
|
-
description
|
3146
|
+
description?: JUHUU.Incident.Object["description"];
|
3147
3147
|
severity?: JUHUU.Incident.Object["severity"];
|
3148
3148
|
deviceId?: string;
|
3149
3149
|
locationId?: string;
|
3150
3150
|
incidentTepmlateId?: string;
|
3151
|
-
title
|
3151
|
+
title?: JUHUU.Incident.Object["title"];
|
3152
3152
|
type: JUHUU.Incident.Object["type"];
|
3153
3153
|
};
|
3154
3154
|
type Options = JUHUU.RequestOptions;
|
@@ -3210,7 +3210,7 @@ declare namespace JUHUU {
|
|
3210
3210
|
readonly object: "incidentTemplate";
|
3211
3211
|
name: string;
|
3212
3212
|
title: LocaleString;
|
3213
|
-
|
3213
|
+
severity: "low" | "medium" | "high";
|
3214
3214
|
description: LocaleString;
|
3215
3215
|
propertyId: string;
|
3216
3216
|
lastUpdatedAt: Date;
|