@scouterna/scoutnet 0.3.22 → 0.3.23
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/CHANGELOG.md +9 -0
- package/dist/generated/api-types.d.ts +19 -18
- package/package.json +2 -2
- package/src/generated/api-types.ts +20 -21
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.3.23](https://github.com/Scouterna/scoutnet-api/compare/scoutnet-v0.3.22...scoutnet-v0.3.23) (2026-01-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* The following workspace dependencies were updated
|
|
9
|
+
* devDependencies
|
|
10
|
+
* @scouterna/scoutnet-openapi bumped to 0.3.9
|
|
11
|
+
|
|
3
12
|
## [0.3.22](https://github.com/Scouterna/scoutnet-api/compare/scoutnet-v0.3.21...scoutnet-v0.3.22) (2026-01-12)
|
|
4
13
|
|
|
5
14
|
|
|
@@ -261,6 +261,8 @@ export interface components {
|
|
|
261
261
|
checked_in?: boolean | null;
|
|
262
262
|
attended?: boolean | null;
|
|
263
263
|
cancelled?: boolean | null;
|
|
264
|
+
confirmed?: boolean | null;
|
|
265
|
+
confirmed_at?: string | null;
|
|
264
266
|
member_status?: number | null;
|
|
265
267
|
member_no?: number | null;
|
|
266
268
|
group_registration?: boolean | null;
|
|
@@ -365,15 +367,6 @@ export interface components {
|
|
|
365
367
|
/** @description A direct, authenticated URL to access the full form data. */
|
|
366
368
|
endpoint_url?: string | null;
|
|
367
369
|
};
|
|
368
|
-
form_section: {
|
|
369
|
-
id?: number | null;
|
|
370
|
-
title?: string | null;
|
|
371
|
-
};
|
|
372
|
-
form_tab: {
|
|
373
|
-
id?: number | null;
|
|
374
|
-
title?: string | null;
|
|
375
|
-
description?: string | null;
|
|
376
|
-
};
|
|
377
370
|
question_choice: {
|
|
378
371
|
/** @description The choice ID. */
|
|
379
372
|
value?: number | null;
|
|
@@ -399,6 +392,15 @@ export interface components {
|
|
|
399
392
|
[key: string]: components["schemas"]["question_choice"];
|
|
400
393
|
} | null;
|
|
401
394
|
};
|
|
395
|
+
form_tab: {
|
|
396
|
+
id?: number | null;
|
|
397
|
+
title?: string | null;
|
|
398
|
+
description?: string | null;
|
|
399
|
+
};
|
|
400
|
+
form_section: {
|
|
401
|
+
id?: number | null;
|
|
402
|
+
title?: string | null;
|
|
403
|
+
};
|
|
402
404
|
};
|
|
403
405
|
responses: {
|
|
404
406
|
/** @description When unauthorized there will be no response body. */
|
|
@@ -545,16 +547,15 @@ export interface operations {
|
|
|
545
547
|
[key: string]: components["schemas"]["form"];
|
|
546
548
|
} | null;
|
|
547
549
|
form?: components["schemas"]["form"] | null;
|
|
548
|
-
questions?:
|
|
549
|
-
sections?: {
|
|
550
|
-
[key: string]: components["schemas"]["form_section"];
|
|
551
|
-
};
|
|
552
|
-
tabs?: {
|
|
553
|
-
[key: string]: components["schemas"]["form_tab"];
|
|
554
|
-
};
|
|
555
|
-
} & {
|
|
550
|
+
questions?: {
|
|
556
551
|
[key: string]: components["schemas"]["question"];
|
|
557
|
-
}
|
|
552
|
+
} | null;
|
|
553
|
+
tabs?: {
|
|
554
|
+
[key: string]: components["schemas"]["form_tab"];
|
|
555
|
+
} | null;
|
|
556
|
+
sections?: {
|
|
557
|
+
[key: string]: components["schemas"]["form_section"];
|
|
558
|
+
} | null;
|
|
558
559
|
messages?: string[] | null;
|
|
559
560
|
};
|
|
560
561
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scouterna/scoutnet",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.23",
|
|
4
4
|
"description": "API client for the Scoutnet API.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"scouterna",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@types/node": "^24.10.7",
|
|
28
28
|
"openapi-typescript": "^7.6.0",
|
|
29
29
|
"typescript": "~5.6.2",
|
|
30
|
-
"@scouterna/scoutnet-openapi": "^0.3.
|
|
30
|
+
"@scouterna/scoutnet-openapi": "^0.3.9"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"openapi-fetch": "^0.13.4"
|
|
@@ -269,6 +269,8 @@ export interface components {
|
|
|
269
269
|
checked_in?: boolean | null;
|
|
270
270
|
attended?: boolean | null;
|
|
271
271
|
cancelled?: boolean | null;
|
|
272
|
+
confirmed?: boolean | null;
|
|
273
|
+
confirmed_at?: string | null;
|
|
272
274
|
member_status?: number | null;
|
|
273
275
|
member_no?: number | null;
|
|
274
276
|
group_registration?: boolean | null;
|
|
@@ -383,15 +385,6 @@ export interface components {
|
|
|
383
385
|
/** @description A direct, authenticated URL to access the full form data. */
|
|
384
386
|
endpoint_url?: string | null;
|
|
385
387
|
};
|
|
386
|
-
form_section: {
|
|
387
|
-
id?: number | null;
|
|
388
|
-
title?: string | null;
|
|
389
|
-
};
|
|
390
|
-
form_tab: {
|
|
391
|
-
id?: number | null;
|
|
392
|
-
title?: string | null;
|
|
393
|
-
description?: string | null;
|
|
394
|
-
};
|
|
395
388
|
question_choice: {
|
|
396
389
|
/** @description The choice ID. */
|
|
397
390
|
value?: number | null;
|
|
@@ -417,6 +410,15 @@ export interface components {
|
|
|
417
410
|
[key: string]: components["schemas"]["question_choice"];
|
|
418
411
|
} | null;
|
|
419
412
|
};
|
|
413
|
+
form_tab: {
|
|
414
|
+
id?: number | null;
|
|
415
|
+
title?: string | null;
|
|
416
|
+
description?: string | null;
|
|
417
|
+
};
|
|
418
|
+
form_section: {
|
|
419
|
+
id?: number | null;
|
|
420
|
+
title?: string | null;
|
|
421
|
+
};
|
|
420
422
|
};
|
|
421
423
|
responses: {
|
|
422
424
|
/** @description When unauthorized there will be no response body. */
|
|
@@ -571,18 +573,15 @@ export interface operations {
|
|
|
571
573
|
[key: string]: components["schemas"]["form"];
|
|
572
574
|
} | null;
|
|
573
575
|
form?: components["schemas"]["form"] | null;
|
|
574
|
-
questions?:
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
[key: string]: components["schemas"]["question"];
|
|
584
|
-
})
|
|
585
|
-
| null;
|
|
576
|
+
questions?: {
|
|
577
|
+
[key: string]: components["schemas"]["question"];
|
|
578
|
+
} | null;
|
|
579
|
+
tabs?: {
|
|
580
|
+
[key: string]: components["schemas"]["form_tab"];
|
|
581
|
+
} | null;
|
|
582
|
+
sections?: {
|
|
583
|
+
[key: string]: components["schemas"]["form_section"];
|
|
584
|
+
} | null;
|
|
586
585
|
messages?: string[] | null;
|
|
587
586
|
};
|
|
588
587
|
};
|