@aws/nx-plugin 0.14.2 → 0.16.0
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/LICENSE-THIRD-PARTY +2 -2
- package/package.json +2 -2
- package/src/open-api/ts-client/__snapshots__/generator.additional-properties.spec.ts.snap +2236 -0
- package/src/open-api/ts-client/__snapshots__/generator.complex-types.spec.ts.snap +2307 -0
- package/src/open-api/ts-client/__snapshots__/generator.composite-types.spec.ts.snap +1495 -0
- package/src/open-api/ts-client/__snapshots__/generator.primitive-types.spec.ts.snap +1470 -0
- package/src/open-api/ts-client/__snapshots__/generator.request.spec.ts.snap +1138 -0
- package/src/open-api/ts-client/__snapshots__/generator.response.spec.ts.snap +732 -0
- package/src/open-api/ts-client/__snapshots__/generator.tags.spec.ts.snap +743 -0
- package/src/open-api/ts-client/files/client.gen.ts.template +52 -15
- package/src/open-api/ts-client/files/types.gen.ts.template +5 -0
- package/src/open-api/ts-hooks/__snapshots__/generator.spec.tsx.snap +1092 -0
- package/src/open-api/ts-hooks/files/options-proxy.gen.ts.template +210 -0
- package/src/open-api/ts-hooks/generator.d.ts +5 -0
- package/src/open-api/ts-hooks/generator.js +15 -2
- package/src/open-api/ts-hooks/generator.js.map +1 -1
- package/src/open-api/ts-hooks/generator.spec.tsx +1787 -0
- package/src/open-api/utils/codegen-data/types.d.ts +25 -0
- package/src/open-api/utils/codegen-data/types.js +26 -1
- package/src/open-api/utils/codegen-data/types.js.map +1 -1
- package/src/open-api/utils/codegen-data.js +187 -79
- package/src/open-api/utils/codegen-data.js.map +1 -1
- package/src/open-api/utils/normalise.js +11 -1
- package/src/open-api/utils/normalise.js.map +1 -1
- package/src/py/fast-api/__snapshots__/generator.spec.ts.snap +21 -6
- package/src/py/fast-api/files/app/__name__/init.py.template +11 -2
- package/src/py/fast-api/files/app/__name__/main.py.template +8 -3
- package/src/py/fast-api/react/__snapshots__/generator.spec.ts.snap +120 -10
- package/src/py/fast-api/react/files/website/components/__apiNameClassName__Provider.tsx.template +40 -0
- package/src/py/fast-api/react/files/website/hooks/use__apiNameClassName__.tsx.template +13 -18
- package/src/py/fast-api/react/files/website/hooks/use__apiNameClassName__Client.tsx.template +13 -0
- package/src/py/fast-api/react/generator.js +35 -9
- package/src/py/fast-api/react/generator.js.map +1 -1
- package/src/py/project/generator.js +5 -0
- package/src/py/project/generator.js.map +1 -1
- package/src/trpc/backend/__snapshots__/generator.spec.ts.snap +7 -9
- package/src/utils/files/http-api/common/constructs/src/core/http-api.ts.template +7 -9
- package/src/open-api/ts-client/__snapshots__/generator.spec.ts.snap +0 -7880
package/LICENSE-THIRD-PARTY
CHANGED
|
@@ -3190,7 +3190,7 @@ THE SOFTWARE.
|
|
|
3190
3190
|
|
|
3191
3191
|
---
|
|
3192
3192
|
|
|
3193
|
-
The following software may be included in this product: @hey-api/json-schema-ref-parser (1.0.
|
|
3193
|
+
The following software may be included in this product: @hey-api/json-schema-ref-parser (1.0.3)
|
|
3194
3194
|
This software contains the following license and notice below:
|
|
3195
3195
|
|
|
3196
3196
|
MIT License
|
|
@@ -3217,7 +3217,7 @@ SOFTWARE.
|
|
|
3217
3217
|
|
|
3218
3218
|
---
|
|
3219
3219
|
|
|
3220
|
-
The following software may be included in this product: @hey-api/openapi-ts (0.64.
|
|
3220
|
+
The following software may be included in this product: @hey-api/openapi-ts (0.64.13)
|
|
3221
3221
|
This software contains the following license and notice below:
|
|
3222
3222
|
|
|
3223
3223
|
MIT License
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws/nx-plugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/awslabs/nx-plugin-for-aws.git",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@apidevtools/swagger-parser": "^10.1.1",
|
|
24
|
-
"@hey-api/openapi-ts": "0.64.
|
|
24
|
+
"@hey-api/openapi-ts": "0.64.13",
|
|
25
25
|
"@iarna/toml": "^2.2.5",
|
|
26
26
|
"@nx/devkit": "20.4.6",
|
|
27
27
|
"@nx/eslint": "20.4.6",
|