@juhuu/sdk-ts 1.3.67 → 1.3.69

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;
@@ -4389,6 +4390,7 @@ declare namespace JUHUU {
4389
4390
  interval: number;
4390
4391
  duration: number;
4391
4392
  roundToMidnight: boolean;
4393
+ roundToMorning: boolean;
4392
4394
  manualTerminationEnabled: boolean;
4393
4395
  salesTaxPercentage: number;
4394
4396
  serviceFeePercentage: number;
@@ -4456,6 +4458,7 @@ declare namespace JUHUU {
4456
4458
  name?: LocaleString;
4457
4459
  duration?: number;
4458
4460
  roundToMidnight?: boolean;
4461
+ roundToMorning?: boolean;
4459
4462
  manualTerminationEnabled?: boolean;
4460
4463
  salesTaxPercentage?: number;
4461
4464
  shortDescription?: LocaleString | null;
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;
@@ -4389,6 +4390,7 @@ declare namespace JUHUU {
4389
4390
  interval: number;
4390
4391
  duration: number;
4391
4392
  roundToMidnight: boolean;
4393
+ roundToMorning: boolean;
4392
4394
  manualTerminationEnabled: boolean;
4393
4395
  salesTaxPercentage: number;
4394
4396
  serviceFeePercentage: number;
@@ -4456,6 +4458,7 @@ declare namespace JUHUU {
4456
4458
  name?: LocaleString;
4457
4459
  duration?: number;
4458
4460
  roundToMidnight?: boolean;
4461
+ roundToMorning?: boolean;
4459
4462
  manualTerminationEnabled?: boolean;
4460
4463
  salesTaxPercentage?: number;
4461
4464
  shortDescription?: LocaleString | null;
package/dist/index.js CHANGED
@@ -2592,6 +2592,7 @@ var TariffsService = class extends Service {
2592
2592
  duration: TariffUpdateParams.duration,
2593
2593
  name: TariffUpdateParams.name,
2594
2594
  roundToMidnight: TariffUpdateParams.roundToMidnight,
2595
+ roundToMorning: TariffUpdateParams.roundToMorning,
2595
2596
  manualTerminationEnabled: TariffUpdateParams.manualTerminationEnabled
2596
2597
  },
2597
2598
  authenticationNotOptional: true
package/dist/index.mjs CHANGED
@@ -2548,6 +2548,7 @@ var TariffsService = class extends Service {
2548
2548
  duration: TariffUpdateParams.duration,
2549
2549
  name: TariffUpdateParams.name,
2550
2550
  roundToMidnight: TariffUpdateParams.roundToMidnight,
2551
+ roundToMorning: TariffUpdateParams.roundToMorning,
2551
2552
  manualTerminationEnabled: TariffUpdateParams.manualTerminationEnabled
2552
2553
  },
2553
2554
  authenticationNotOptional: true
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "provenance": true
4
4
  },
5
5
  "name": "@juhuu/sdk-ts",
6
- "version": "1.3.67",
6
+ "version": "1.3.69",
7
7
  "description": "Typescript wrapper for JUHUU services",
8
8
  "main": "./dist/index.js",
9
9
  "module": "./dist/index.mjs",