@juhuu/sdk-ts 1.2.307 → 1.2.308

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
@@ -2331,6 +2331,7 @@ declare namespace JUHUU {
2331
2331
  sessionType: Object["type"];
2332
2332
  isOffSession: boolean;
2333
2333
  userId: string;
2334
+ propertyId?: string;
2334
2335
  };
2335
2336
  type Options = JUHUU.RequestOptions;
2336
2337
  type Response = {
@@ -4476,6 +4477,8 @@ declare namespace JUHUU {
4476
4477
  description: string;
4477
4478
  imageUrlArray: string[];
4478
4479
  incidentTemplateId: string | null;
4480
+ responsiblesNotified: boolean;
4481
+ affectedNotified: boolean;
4479
4482
  };
4480
4483
  export interface Location extends Base {
4481
4484
  type: "location";
package/dist/index.d.ts CHANGED
@@ -2331,6 +2331,7 @@ declare namespace JUHUU {
2331
2331
  sessionType: Object["type"];
2332
2332
  isOffSession: boolean;
2333
2333
  userId: string;
2334
+ propertyId?: string;
2334
2335
  };
2335
2336
  type Options = JUHUU.RequestOptions;
2336
2337
  type Response = {
@@ -4476,6 +4477,8 @@ declare namespace JUHUU {
4476
4477
  description: string;
4477
4478
  imageUrlArray: string[];
4478
4479
  incidentTemplateId: string | null;
4480
+ responsiblesNotified: boolean;
4481
+ affectedNotified: boolean;
4479
4482
  };
4480
4483
  export interface Location extends Base {
4481
4484
  type: "location";
package/dist/index.js CHANGED
@@ -530,7 +530,8 @@ var SessionService = class extends Service {
530
530
  autoRenew: SessionCreateParams.autoRenew,
531
531
  type: SessionCreateParams.sessionType,
532
532
  isOffSession: SessionCreateParams.isOffSession,
533
- userId: SessionCreateParams.userId
533
+ userId: SessionCreateParams.userId,
534
+ propertyId: SessionCreateParams.propertyId
534
535
  },
535
536
  authenticationNotOptional: true
536
537
  },
package/dist/index.mjs CHANGED
@@ -486,7 +486,8 @@ var SessionService = class extends Service {
486
486
  autoRenew: SessionCreateParams.autoRenew,
487
487
  type: SessionCreateParams.sessionType,
488
488
  isOffSession: SessionCreateParams.isOffSession,
489
- userId: SessionCreateParams.userId
489
+ userId: SessionCreateParams.userId,
490
+ propertyId: SessionCreateParams.propertyId
490
491
  },
491
492
  authenticationNotOptional: true
492
493
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.307",
3
+ "version": "1.2.308",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",