@scouterna/scoutnet 0.3.21 → 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 +18 -0
- package/dist/generated/api-types.d.ts +17 -0
- package/package.json +2 -2
- package/src/generated/api-types.ts +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
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
|
+
|
|
12
|
+
## [0.3.22](https://github.com/Scouterna/scoutnet-api/compare/scoutnet-v0.3.21...scoutnet-v0.3.22) (2026-01-12)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Dependencies
|
|
16
|
+
|
|
17
|
+
* The following workspace dependencies were updated
|
|
18
|
+
* devDependencies
|
|
19
|
+
* @scouterna/scoutnet-openapi bumped to 0.3.8
|
|
20
|
+
|
|
3
21
|
## [0.3.21](https://github.com/Scouterna/scoutnet-api/compare/scoutnet-v0.3.20...scoutnet-v0.3.21) (2026-01-12)
|
|
4
22
|
|
|
5
23
|
|
|
@@ -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;
|
|
@@ -390,6 +392,15 @@ export interface components {
|
|
|
390
392
|
[key: string]: components["schemas"]["question_choice"];
|
|
391
393
|
} | null;
|
|
392
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
|
+
};
|
|
393
404
|
};
|
|
394
405
|
responses: {
|
|
395
406
|
/** @description When unauthorized there will be no response body. */
|
|
@@ -539,6 +550,12 @@ export interface operations {
|
|
|
539
550
|
questions?: {
|
|
540
551
|
[key: string]: components["schemas"]["question"];
|
|
541
552
|
} | null;
|
|
553
|
+
tabs?: {
|
|
554
|
+
[key: string]: components["schemas"]["form_tab"];
|
|
555
|
+
} | null;
|
|
556
|
+
sections?: {
|
|
557
|
+
[key: string]: components["schemas"]["form_section"];
|
|
558
|
+
} | null;
|
|
542
559
|
messages?: string[] | null;
|
|
543
560
|
};
|
|
544
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;
|
|
@@ -408,6 +410,15 @@ export interface components {
|
|
|
408
410
|
[key: string]: components["schemas"]["question_choice"];
|
|
409
411
|
} | null;
|
|
410
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
|
+
};
|
|
411
422
|
};
|
|
412
423
|
responses: {
|
|
413
424
|
/** @description When unauthorized there will be no response body. */
|
|
@@ -565,6 +576,12 @@ export interface operations {
|
|
|
565
576
|
questions?: {
|
|
566
577
|
[key: string]: components["schemas"]["question"];
|
|
567
578
|
} | null;
|
|
579
|
+
tabs?: {
|
|
580
|
+
[key: string]: components["schemas"]["form_tab"];
|
|
581
|
+
} | null;
|
|
582
|
+
sections?: {
|
|
583
|
+
[key: string]: components["schemas"]["form_section"];
|
|
584
|
+
} | null;
|
|
568
585
|
messages?: string[] | null;
|
|
569
586
|
};
|
|
570
587
|
};
|