@juhuu/sdk-ts 1.3.66 → 1.3.68

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.
@@ -17,11 +17,12 @@ jobs:
17
17
 
18
18
  - uses: actions/setup-node@v4
19
19
  with:
20
- node-version: '20'
20
+ node-version: '24'
21
21
  registry-url: 'https://registry.npmjs.org'
22
22
 
23
- - name: Install latest npm
24
- run: npm install -g npm@latest
23
+ # Node 24 bundles npm 11.x already, no need to update
24
+ - name: Check npm version
25
+ run: npm -v
25
26
 
26
27
  - run: npm ci
27
28
  - run: npm run build
package/dist/index.d.mts CHANGED
@@ -3162,6 +3162,7 @@ declare namespace JUHUU {
3162
3162
  name: string;
3163
3163
  type: "rentableDevice" | "rentableDeviceGroup" | "useableDevice";
3164
3164
  rentableDeviceGroupLocationId: string | null;
3165
+ disabled: boolean;
3165
3166
  };
3166
3167
  type Session = {
3167
3168
  id: string;
@@ -3173,6 +3174,7 @@ declare namespace JUHUU {
3173
3174
  locationGroupId: string | null;
3174
3175
  locationName: string | null;
3175
3176
  locationGroupName: string | null;
3177
+ isOwnSession: boolean;
3176
3178
  };
3177
3179
  type Response = {
3178
3180
  rangeStartAt: string;
package/dist/index.d.ts CHANGED
@@ -3162,6 +3162,7 @@ declare namespace JUHUU {
3162
3162
  name: string;
3163
3163
  type: "rentableDevice" | "rentableDeviceGroup" | "useableDevice";
3164
3164
  rentableDeviceGroupLocationId: string | null;
3165
+ disabled: boolean;
3165
3166
  };
3166
3167
  type Session = {
3167
3168
  id: string;
@@ -3173,6 +3174,7 @@ declare namespace JUHUU {
3173
3174
  locationGroupId: string | null;
3174
3175
  locationName: string | null;
3175
3176
  locationGroupName: string | null;
3177
+ isOwnSession: boolean;
3176
3178
  };
3177
3179
  type Response = {
3178
3180
  rangeStartAt: string;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "provenance": true
4
4
  },
5
5
  "name": "@juhuu/sdk-ts",
6
- "version": "1.3.66",
6
+ "version": "1.3.68",
7
7
  "description": "Typescript wrapper for JUHUU services",
8
8
  "main": "./dist/index.js",
9
9
  "module": "./dist/index.mjs",