@scouterna/scoutnet 0.3.20 → 0.3.22
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 +24 -3
- package/package.json +2 -2
- package/src/generated/api-types.ts +27 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.3.22](https://github.com/Scouterna/scoutnet-api/compare/scoutnet-v0.3.21...scoutnet-v0.3.22) (2026-01-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* The following workspace dependencies were updated
|
|
9
|
+
* devDependencies
|
|
10
|
+
* @scouterna/scoutnet-openapi bumped to 0.3.8
|
|
11
|
+
|
|
12
|
+
## [0.3.21](https://github.com/Scouterna/scoutnet-api/compare/scoutnet-v0.3.20...scoutnet-v0.3.21) (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.7
|
|
20
|
+
|
|
3
21
|
## [0.3.20](https://github.com/Scouterna/scoutnet-api/compare/scoutnet-v0.3.19...scoutnet-v0.3.20) (2026-01-11)
|
|
4
22
|
|
|
5
23
|
|
|
@@ -365,6 +365,15 @@ export interface components {
|
|
|
365
365
|
/** @description A direct, authenticated URL to access the full form data. */
|
|
366
366
|
endpoint_url?: string | null;
|
|
367
367
|
};
|
|
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
|
+
};
|
|
368
377
|
question_choice: {
|
|
369
378
|
/** @description The choice ID. */
|
|
370
379
|
value?: number | null;
|
|
@@ -512,7 +521,12 @@ export interface operations {
|
|
|
512
521
|
};
|
|
513
522
|
getProjectFormts: {
|
|
514
523
|
parameters: {
|
|
515
|
-
query?:
|
|
524
|
+
query?: {
|
|
525
|
+
/** @description If provided, details of the specific form will be included in the
|
|
526
|
+
* response.
|
|
527
|
+
* */
|
|
528
|
+
form_id?: number;
|
|
529
|
+
};
|
|
516
530
|
header?: never;
|
|
517
531
|
path?: never;
|
|
518
532
|
cookie?: never;
|
|
@@ -531,9 +545,16 @@ export interface operations {
|
|
|
531
545
|
[key: string]: components["schemas"]["form"];
|
|
532
546
|
} | null;
|
|
533
547
|
form?: components["schemas"]["form"] | null;
|
|
534
|
-
questions?: {
|
|
548
|
+
questions?: ({
|
|
549
|
+
sections?: {
|
|
550
|
+
[key: string]: components["schemas"]["form_section"];
|
|
551
|
+
};
|
|
552
|
+
tabs?: {
|
|
553
|
+
[key: string]: components["schemas"]["form_tab"];
|
|
554
|
+
};
|
|
555
|
+
} & {
|
|
535
556
|
[key: string]: components["schemas"]["question"];
|
|
536
|
-
} | null;
|
|
557
|
+
}) | null;
|
|
537
558
|
messages?: string[] | null;
|
|
538
559
|
};
|
|
539
560
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scouterna/scoutnet",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.22",
|
|
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.8"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"openapi-fetch": "^0.13.4"
|
|
@@ -383,6 +383,15 @@ export interface components {
|
|
|
383
383
|
/** @description A direct, authenticated URL to access the full form data. */
|
|
384
384
|
endpoint_url?: string | null;
|
|
385
385
|
};
|
|
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
|
+
};
|
|
386
395
|
question_choice: {
|
|
387
396
|
/** @description The choice ID. */
|
|
388
397
|
value?: number | null;
|
|
@@ -538,7 +547,12 @@ export interface operations {
|
|
|
538
547
|
};
|
|
539
548
|
getProjectFormts: {
|
|
540
549
|
parameters: {
|
|
541
|
-
query?:
|
|
550
|
+
query?: {
|
|
551
|
+
/** @description If provided, details of the specific form will be included in the
|
|
552
|
+
* response.
|
|
553
|
+
* */
|
|
554
|
+
form_id?: number;
|
|
555
|
+
};
|
|
542
556
|
header?: never;
|
|
543
557
|
path?: never;
|
|
544
558
|
cookie?: never;
|
|
@@ -557,9 +571,18 @@ export interface operations {
|
|
|
557
571
|
[key: string]: components["schemas"]["form"];
|
|
558
572
|
} | null;
|
|
559
573
|
form?: components["schemas"]["form"] | null;
|
|
560
|
-
questions?:
|
|
561
|
-
|
|
562
|
-
|
|
574
|
+
questions?:
|
|
575
|
+
| ({
|
|
576
|
+
sections?: {
|
|
577
|
+
[key: string]: components["schemas"]["form_section"];
|
|
578
|
+
};
|
|
579
|
+
tabs?: {
|
|
580
|
+
[key: string]: components["schemas"]["form_tab"];
|
|
581
|
+
};
|
|
582
|
+
} & {
|
|
583
|
+
[key: string]: components["schemas"]["question"];
|
|
584
|
+
})
|
|
585
|
+
| null;
|
|
563
586
|
messages?: string[] | null;
|
|
564
587
|
};
|
|
565
588
|
};
|