@scouterna/scoutnet 0.3.19 → 0.3.20
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.20](https://github.com/Scouterna/scoutnet-api/compare/scoutnet-v0.3.19...scoutnet-v0.3.20) (2026-01-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* The following workspace dependencies were updated
|
|
9
|
+
* devDependencies
|
|
10
|
+
* @scouterna/scoutnet-openapi bumped to 0.3.6
|
|
11
|
+
|
|
3
12
|
## [0.3.19](https://github.com/Scouterna/scoutnet-api/compare/scoutnet-v0.3.18...scoutnet-v0.3.19) (2026-01-11)
|
|
4
13
|
|
|
5
14
|
|
|
@@ -295,8 +295,9 @@ export interface components {
|
|
|
295
295
|
district_name?: string | null;
|
|
296
296
|
patrol_name?: string | null;
|
|
297
297
|
} | unknown[]) | null;
|
|
298
|
-
|
|
299
|
-
|
|
298
|
+
questions?: {
|
|
299
|
+
[key: string]: string;
|
|
300
|
+
} | null;
|
|
300
301
|
contact_info?: {
|
|
301
302
|
[key: string]: string;
|
|
302
303
|
} | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scouterna/scoutnet",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.20",
|
|
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.6"
|
|
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
|
-
|
|
317
|
-
|
|
316
|
+
questions?: {
|
|
317
|
+
[key: string]: string;
|
|
318
|
+
} | null;
|
|
318
319
|
contact_info?: {
|
|
319
320
|
[key: string]: string;
|
|
320
321
|
} | null;
|