@scouterna/scoutnet 0.3.20 → 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,14 @@
|
|
|
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
|
+
|
|
3
12
|
## [0.3.20](https://github.com/Scouterna/scoutnet-api/compare/scoutnet-v0.3.19...scoutnet-v0.3.20) (2026-01-11)
|
|
4
13
|
|
|
5
14
|
|
|
@@ -512,7 +512,12 @@ export interface operations {
|
|
|
512
512
|
};
|
|
513
513
|
getProjectFormts: {
|
|
514
514
|
parameters: {
|
|
515
|
-
query?:
|
|
515
|
+
query?: {
|
|
516
|
+
/** @description If provided, details of the specific form will be included in the
|
|
517
|
+
* response.
|
|
518
|
+
* */
|
|
519
|
+
form_id?: number;
|
|
520
|
+
};
|
|
516
521
|
header?: never;
|
|
517
522
|
path?: never;
|
|
518
523
|
cookie?: never;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scouterna/scoutnet",
|
|
3
|
-
"version": "0.3.
|
|
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.
|
|
30
|
+
"@scouterna/scoutnet-openapi": "^0.3.7"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"openapi-fetch": "^0.13.4"
|
|
@@ -538,7 +538,12 @@ export interface operations {
|
|
|
538
538
|
};
|
|
539
539
|
getProjectFormts: {
|
|
540
540
|
parameters: {
|
|
541
|
-
query?:
|
|
541
|
+
query?: {
|
|
542
|
+
/** @description If provided, details of the specific form will be included in the
|
|
543
|
+
* response.
|
|
544
|
+
* */
|
|
545
|
+
form_id?: number;
|
|
546
|
+
};
|
|
542
547
|
header?: never;
|
|
543
548
|
path?: never;
|
|
544
549
|
cookie?: never;
|