@juhuu/sdk-ts 1.2.167 → 1.2.169

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
@@ -3123,7 +3123,7 @@ declare namespace JUHUU {
3123
3123
  id: string;
3124
3124
  readonly object: "incident";
3125
3125
  severity: "low" | "medium" | "high";
3126
- issuedBy: "propertyAdmin" | "system" | "user" | "nodeArray";
3126
+ createdBy: "propertyAdmin" | "system" | "user" | "nodeArray";
3127
3127
  propertyId: string;
3128
3128
  createdByUserId: string | null;
3129
3129
  status: "waitingForPropertyConfirmation" | "waitingForResolvement" | "rejected" | "resolved";
package/dist/index.d.ts CHANGED
@@ -3123,7 +3123,7 @@ declare namespace JUHUU {
3123
3123
  id: string;
3124
3124
  readonly object: "incident";
3125
3125
  severity: "low" | "medium" | "high";
3126
- issuedBy: "propertyAdmin" | "system" | "user" | "nodeArray";
3126
+ createdBy: "propertyAdmin" | "system" | "user" | "nodeArray";
3127
3127
  propertyId: string;
3128
3128
  createdByUserId: string | null;
3129
3129
  status: "waitingForPropertyConfirmation" | "waitingForResolvement" | "rejected" | "resolved";
package/dist/index.js CHANGED
@@ -3124,14 +3124,14 @@ var IncidentsService = class extends Service {
3124
3124
  body: {
3125
3125
  propertyId: IncidentCreateParams.propertyId,
3126
3126
  title: IncidentCreateParams.title,
3127
- subtitle: IncidentCreateParams.description,
3127
+ description: IncidentCreateParams.description,
3128
3128
  type: IncidentCreateParams.type,
3129
3129
  deviceId: IncidentCreateParams.deviceId,
3130
3130
  locationId: IncidentCreateParams.locationId,
3131
3131
  incidentTemplateId: IncidentCreateParams.incidentTemplateId,
3132
3132
  severity: IncidentCreateParams.severity
3133
3133
  },
3134
- authenticationNotOptional: true
3134
+ authenticationNotOptional: false
3135
3135
  },
3136
3136
  IncidentCreateOptions
3137
3137
  );
package/dist/index.mjs CHANGED
@@ -3080,14 +3080,14 @@ var IncidentsService = class extends Service {
3080
3080
  body: {
3081
3081
  propertyId: IncidentCreateParams.propertyId,
3082
3082
  title: IncidentCreateParams.title,
3083
- subtitle: IncidentCreateParams.description,
3083
+ description: IncidentCreateParams.description,
3084
3084
  type: IncidentCreateParams.type,
3085
3085
  deviceId: IncidentCreateParams.deviceId,
3086
3086
  locationId: IncidentCreateParams.locationId,
3087
3087
  incidentTemplateId: IncidentCreateParams.incidentTemplateId,
3088
3088
  severity: IncidentCreateParams.severity
3089
3089
  },
3090
- authenticationNotOptional: true
3090
+ authenticationNotOptional: false
3091
3091
  },
3092
3092
  IncidentCreateOptions
3093
3093
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.167",
3
+ "version": "1.2.169",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",