@scouterna/scoutnet 0.3.21 → 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 CHANGED
@@ -1,5 +1,14 @@
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
+
3
12
  ## [0.3.21](https://github.com/Scouterna/scoutnet-api/compare/scoutnet-v0.3.20...scoutnet-v0.3.21) (2026-01-12)
4
13
 
5
14
 
@@ -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;
@@ -536,9 +545,16 @@ export interface operations {
536
545
  [key: string]: components["schemas"]["form"];
537
546
  } | null;
538
547
  form?: components["schemas"]["form"] | null;
539
- questions?: {
548
+ questions?: ({
549
+ sections?: {
550
+ [key: string]: components["schemas"]["form_section"];
551
+ };
552
+ tabs?: {
553
+ [key: string]: components["schemas"]["form_tab"];
554
+ };
555
+ } & {
540
556
  [key: string]: components["schemas"]["question"];
541
- } | null;
557
+ }) | null;
542
558
  messages?: string[] | null;
543
559
  };
544
560
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scouterna/scoutnet",
3
- "version": "0.3.21",
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.7"
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;
@@ -562,9 +571,18 @@ export interface operations {
562
571
  [key: string]: components["schemas"]["form"];
563
572
  } | null;
564
573
  form?: components["schemas"]["form"] | null;
565
- questions?: {
566
- [key: string]: components["schemas"]["question"];
567
- } | null;
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;
568
586
  messages?: string[] | null;
569
587
  };
570
588
  };