@ama-sdk/schematics 12.3.0-prerelease.71 → 12.3.0-prerelease.73
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/README.md
CHANGED
|
@@ -137,9 +137,12 @@ your own serialization methods if the ones provided do not meet your requirement
|
|
|
137
137
|
> API to prepare the URL. You can do so by using the serialization method that we provide (`serializeQueryParams`) or your own serialization method. The value of the query
|
|
138
138
|
> parameters returned by the `RequestPlugin` will be forwarded to the next plugin and the last value will be directly added to the URL.
|
|
139
139
|
|
|
140
|
+
We also provide the methods `deserializeQueryParams` and `deserializePathParams` to deserialize the values of query and path parameters based on their serialization
|
|
141
|
+
(`explode` and `style`) and type (`primitive`, `array`, or `object`). This method can be used as a tool to better visualize the values of the parameters during development.
|
|
142
|
+
|
|
140
143
|
> [!NOTE]
|
|
141
144
|
> It is important to note that special characters have to be encoded, as required by RFC6570 and RFC3986. Please take this into account if you choose to use your own
|
|
142
|
-
> serialization methods.
|
|
145
|
+
> serialization or deserialization methods.
|
|
143
146
|
|
|
144
147
|
#### Light SDK
|
|
145
148
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ama-sdk/schematics",
|
|
3
|
-
"version": "12.3.0-prerelease.
|
|
3
|
+
"version": "12.3.0-prerelease.73",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -62,12 +62,12 @@
|
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
|
-
"@ama-sdk/core": "^12.3.0-prerelease.
|
|
65
|
+
"@ama-sdk/core": "^12.3.0-prerelease.73",
|
|
66
66
|
"@angular-devkit/core": "^19.0.0",
|
|
67
67
|
"@angular-devkit/schematics-cli": "^19.0.0",
|
|
68
68
|
"@angular/cli": "^19.0.0",
|
|
69
|
-
"@o3r/schematics": "^12.3.0-prerelease.
|
|
70
|
-
"@o3r/telemetry": "^12.3.0-prerelease.
|
|
69
|
+
"@o3r/schematics": "^12.3.0-prerelease.73",
|
|
70
|
+
"@o3r/telemetry": "^12.3.0-prerelease.73",
|
|
71
71
|
"@openapitools/openapi-generator-cli": "^2.15.0",
|
|
72
72
|
"openapi-types": "^12.0.0",
|
|
73
73
|
"ts-node": "~10.9.2",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"dependencies": {
|
|
77
77
|
"@angular-devkit/core": "~19.2.0",
|
|
78
78
|
"@angular-devkit/schematics": "~19.2.0",
|
|
79
|
-
"@o3r/schematics": "^12.3.0-prerelease.
|
|
79
|
+
"@o3r/schematics": "^12.3.0-prerelease.73",
|
|
80
80
|
"chokidar": "^4.0.3",
|
|
81
81
|
"globby": "^11.1.0",
|
|
82
82
|
"js-yaml": "^4.1.0",
|
|
@@ -87,16 +87,16 @@
|
|
|
87
87
|
"tslib": "^2.6.2"
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
|
-
"@ama-sdk/core": "^12.3.0-prerelease.
|
|
90
|
+
"@ama-sdk/core": "^12.3.0-prerelease.73",
|
|
91
91
|
"@angular-devkit/schematics-cli": "~19.2.0",
|
|
92
92
|
"@angular/cli": "~19.2.0",
|
|
93
93
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.0",
|
|
94
94
|
"@nx/eslint-plugin": "~20.8.0",
|
|
95
95
|
"@nx/jest": "~20.8.0",
|
|
96
|
-
"@o3r/build-helpers": "^12.3.0-prerelease.
|
|
97
|
-
"@o3r/eslint-plugin": "^12.3.0-prerelease.
|
|
98
|
-
"@o3r/telemetry": "^12.3.0-prerelease.
|
|
99
|
-
"@o3r/test-helpers": "^12.3.0-prerelease.
|
|
96
|
+
"@o3r/build-helpers": "^12.3.0-prerelease.73",
|
|
97
|
+
"@o3r/eslint-plugin": "^12.3.0-prerelease.73",
|
|
98
|
+
"@o3r/telemetry": "^12.3.0-prerelease.73",
|
|
99
|
+
"@o3r/test-helpers": "^12.3.0-prerelease.73",
|
|
100
100
|
"@openapitools/openapi-generator-cli": "~2.20.0",
|
|
101
101
|
"@schematics/angular": "~19.2.0",
|
|
102
102
|
"@stylistic/eslint-plugin": "~3.1.0",
|
|
@@ -159,6 +159,7 @@
|
|
|
159
159
|
"engines": {
|
|
160
160
|
"node": "^20.11.1 || >=22.0.0"
|
|
161
161
|
},
|
|
162
|
+
"preferUnplugged": true,
|
|
162
163
|
"contributors": [
|
|
163
164
|
{
|
|
164
165
|
"name": "Yannick Adam",
|
|
Binary file
|