@scouterna/scoutnet 0.3.19 → 0.3.21

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,23 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.3.21](https://github.com/Scouterna/scoutnet-api/compare/scoutnet-v0.3.20...scoutnet-v0.3.21) (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.7
11
+
12
+ ## [0.3.20](https://github.com/Scouterna/scoutnet-api/compare/scoutnet-v0.3.19...scoutnet-v0.3.20) (2026-01-11)
13
+
14
+
15
+ ### Dependencies
16
+
17
+ * The following workspace dependencies were updated
18
+ * devDependencies
19
+ * @scouterna/scoutnet-openapi bumped to 0.3.6
20
+
3
21
  ## [0.3.19](https://github.com/Scouterna/scoutnet-api/compare/scoutnet-v0.3.18...scoutnet-v0.3.19) (2026-01-11)
4
22
 
5
23
 
@@ -295,8 +295,9 @@ export interface components {
295
295
  district_name?: string | null;
296
296
  patrol_name?: string | null;
297
297
  } | unknown[]) | null;
298
- /** @description NOT YET DOCUMENTED */
299
- questions?: unknown | null;
298
+ questions?: {
299
+ [key: string]: string;
300
+ } | null;
300
301
  contact_info?: {
301
302
  [key: string]: string;
302
303
  } | null;
@@ -511,7 +512,12 @@ export interface operations {
511
512
  };
512
513
  getProjectFormts: {
513
514
  parameters: {
514
- query?: never;
515
+ query?: {
516
+ /** @description If provided, details of the specific form will be included in the
517
+ * response.
518
+ * */
519
+ form_id?: number;
520
+ };
515
521
  header?: never;
516
522
  path?: never;
517
523
  cookie?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scouterna/scoutnet",
3
- "version": "0.3.19",
3
+ "version": "0.3.21",
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.5"
30
+ "@scouterna/scoutnet-openapi": "^0.3.7"
31
31
  },
32
32
  "dependencies": {
33
33
  "openapi-fetch": "^0.13.4"
@@ -313,8 +313,9 @@ export interface components {
313
313
  | unknown[]
314
314
  )
315
315
  | null;
316
- /** @description NOT YET DOCUMENTED */
317
- questions?: unknown | null;
316
+ questions?: {
317
+ [key: string]: string;
318
+ } | null;
318
319
  contact_info?: {
319
320
  [key: string]: string;
320
321
  } | null;
@@ -537,7 +538,12 @@ export interface operations {
537
538
  };
538
539
  getProjectFormts: {
539
540
  parameters: {
540
- query?: never;
541
+ query?: {
542
+ /** @description If provided, details of the specific form will be included in the
543
+ * response.
544
+ * */
545
+ form_id?: number;
546
+ };
541
547
  header?: never;
542
548
  path?: never;
543
549
  cookie?: never;