@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.
- package/.github/workflows/publish.yml +4 -3
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -17,11 +17,12 @@ jobs:
|
|
|
17
17
|
|
|
18
18
|
- uses: actions/setup-node@v4
|
|
19
19
|
with:
|
|
20
|
-
node-version: '
|
|
20
|
+
node-version: '24'
|
|
21
21
|
registry-url: 'https://registry.npmjs.org'
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
|
|
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;
|