@rxap/schematics-open-api 19.0.0-dev.1 → 19.0.0-dev.3
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 +8 -0
- package/package.json +8 -8
- package/src/index.d.ts +10 -10
- package/src/index.js +14 -10
- package/src/index.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [19.0.0-dev.3](https://gitlab.com/rxap/packages/compare/@rxap/schematics-open-api@19.0.0-dev.2...@rxap/schematics-open-api@19.0.0-dev.3) (2025-01-04)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @rxap/schematics-open-api
|
|
9
|
+
|
|
10
|
+
# [19.0.0-dev.2](https://gitlab.com/rxap/packages/compare/@rxap/schematics-open-api@19.0.0-dev.1...@rxap/schematics-open-api@19.0.0-dev.2) (2025-01-03)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @rxap/schematics-open-api
|
|
13
|
+
|
|
6
14
|
# [19.0.0-dev.1](https://gitlab.com/rxap/packages/compare/@rxap/schematics-open-api@18.0.10-dev.0...@rxap/schematics-open-api@19.0.0-dev.1) (2024-12-11)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @rxap/schematics-open-api
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "19.0.0-dev.
|
|
2
|
+
"version": "19.0.0-dev.3",
|
|
3
3
|
"name": "@rxap/schematics-open-api",
|
|
4
4
|
"license": "GPL-3.0-or-later",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@angular-devkit/core": "19.0.4",
|
|
7
7
|
"@angular-devkit/schematics": "19.0.4",
|
|
8
8
|
"@nx/devkit": "20.2.1",
|
|
9
|
-
"@rxap/json-schema-to-typescript": "^16.0.12-dev.
|
|
10
|
-
"@rxap/schematics-ts-morph": "^19.0.0-dev.
|
|
11
|
-
"@rxap/schematics-utilities": "^19.0.0-dev.
|
|
12
|
-
"@rxap/ts-morph": "^1.5.2-dev.
|
|
13
|
-
"@rxap/utilities": "^16.4.1-dev.
|
|
14
|
-
"@rxap/workspace-utilities": "^19.
|
|
9
|
+
"@rxap/json-schema-to-typescript": "^16.0.12-dev.2",
|
|
10
|
+
"@rxap/schematics-ts-morph": "^19.0.0-dev.3",
|
|
11
|
+
"@rxap/schematics-utilities": "^19.0.0-dev.3",
|
|
12
|
+
"@rxap/ts-morph": "^1.5.2-dev.2",
|
|
13
|
+
"@rxap/utilities": "^16.4.1-dev.2",
|
|
14
|
+
"@rxap/workspace-utilities": "^19.6.0-dev.1",
|
|
15
15
|
"openapi-types": "^10.0.0",
|
|
16
16
|
"ts-morph": "18.0.0",
|
|
17
17
|
"tslib": "2.6.2"
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
},
|
|
44
44
|
"schematics": "./collection.json",
|
|
45
45
|
"type": "commonjs",
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "55344af69ec9e01dcd25f8795a6e7e31b2cf3920",
|
|
47
47
|
"types": "./src/index.d.ts",
|
|
48
48
|
"main": "./src/index.js"
|
|
49
49
|
}
|
package/src/index.d.ts
CHANGED
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
export * from './lib/clear-operation';
|
|
2
|
-
export * from './lib/config';
|
|
3
|
-
export * from './lib/generate-components';
|
|
4
|
-
export * from './lib/generate-index-exports';
|
|
5
|
-
export * from './lib/generate-operation';
|
|
6
|
-
export * from './lib/generate-parameters';
|
|
7
|
-
export * from './lib/generate-request-body';
|
|
8
|
-
export * from './lib/generate-response';
|
|
9
|
-
export * from './lib/load-open-api-config';
|
|
10
|
-
export * from './lib/types';
|
|
11
1
|
export * from './lib/utilities/any-schema-object';
|
|
12
2
|
export * from './lib/utilities/get-parameter-type';
|
|
13
3
|
export * from './lib/utilities/get-reqeust-body';
|
|
@@ -24,3 +14,13 @@ export * from './lib/utilities/is-open-api-schema-from-path';
|
|
|
24
14
|
export * from './lib/utilities/is-operation-object';
|
|
25
15
|
export * from './lib/utilities/is-reference-object';
|
|
26
16
|
export * from './lib/utilities/is-without-parameters';
|
|
17
|
+
export * from './lib/clear-operation';
|
|
18
|
+
export * from './lib/config';
|
|
19
|
+
export * from './lib/generate-components';
|
|
20
|
+
export * from './lib/generate-index-exports';
|
|
21
|
+
export * from './lib/generate-operation';
|
|
22
|
+
export * from './lib/generate-parameters';
|
|
23
|
+
export * from './lib/generate-request-body';
|
|
24
|
+
export * from './lib/generate-response';
|
|
25
|
+
export * from './lib/load-open-api-config';
|
|
26
|
+
export * from './lib/types';
|
package/src/index.js
CHANGED
|
@@ -1,16 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
|
-
|
|
5
|
-
tslib_1.__exportStar(require("./lib/config"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./lib/generate-components"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./lib/generate-index-exports"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./lib/generate-operation"), exports);
|
|
9
|
-
tslib_1.__exportStar(require("./lib/generate-parameters"), exports);
|
|
10
|
-
tslib_1.__exportStar(require("./lib/generate-request-body"), exports);
|
|
11
|
-
tslib_1.__exportStar(require("./lib/generate-response"), exports);
|
|
12
|
-
tslib_1.__exportStar(require("./lib/load-open-api-config"), exports);
|
|
13
|
-
tslib_1.__exportStar(require("./lib/types"), exports);
|
|
4
|
+
// region utilities
|
|
14
5
|
tslib_1.__exportStar(require("./lib/utilities/any-schema-object"), exports);
|
|
15
6
|
tslib_1.__exportStar(require("./lib/utilities/get-parameter-type"), exports);
|
|
16
7
|
tslib_1.__exportStar(require("./lib/utilities/get-reqeust-body"), exports);
|
|
@@ -27,4 +18,17 @@ tslib_1.__exportStar(require("./lib/utilities/is-open-api-schema-from-path"), ex
|
|
|
27
18
|
tslib_1.__exportStar(require("./lib/utilities/is-operation-object"), exports);
|
|
28
19
|
tslib_1.__exportStar(require("./lib/utilities/is-reference-object"), exports);
|
|
29
20
|
tslib_1.__exportStar(require("./lib/utilities/is-without-parameters"), exports);
|
|
21
|
+
// endregion
|
|
22
|
+
// region
|
|
23
|
+
tslib_1.__exportStar(require("./lib/clear-operation"), exports);
|
|
24
|
+
tslib_1.__exportStar(require("./lib/config"), exports);
|
|
25
|
+
tslib_1.__exportStar(require("./lib/generate-components"), exports);
|
|
26
|
+
tslib_1.__exportStar(require("./lib/generate-index-exports"), exports);
|
|
27
|
+
tslib_1.__exportStar(require("./lib/generate-operation"), exports);
|
|
28
|
+
tslib_1.__exportStar(require("./lib/generate-parameters"), exports);
|
|
29
|
+
tslib_1.__exportStar(require("./lib/generate-request-body"), exports);
|
|
30
|
+
tslib_1.__exportStar(require("./lib/generate-response"), exports);
|
|
31
|
+
tslib_1.__exportStar(require("./lib/load-open-api-config"), exports);
|
|
32
|
+
tslib_1.__exportStar(require("./lib/types"), exports);
|
|
33
|
+
// endregion
|
|
30
34
|
//# sourceMappingURL=index.js.map
|
package/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../packages/schematic/open-api/src/index.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../packages/schematic/open-api/src/index.ts"],"names":[],"mappings":";;;AAAA,mBAAmB;AACnB,4EAAkD;AAClD,6EAAmD;AACnD,2EAAiD;AACjD,gFAAsD;AACtD,4EAAkD;AAClD,uEAA6C;AAC7C,kFAAwD;AACxD,qFAA2D;AAC3D,uEAA6C;AAC7C,2EAAiD;AACjD,iFAAuD;AACvD,yEAA+C;AAC/C,uFAA6D;AAC7D,8EAAoD;AACpD,8EAAoD;AACpD,gFAAsD;AACtD,YAAY;AAEZ,UAAU;AACV,gEAAsC;AACtC,uDAA6B;AAC7B,oEAA0C;AAC1C,uEAA6C;AAC7C,mEAAyC;AACzC,oEAA0C;AAC1C,sEAA4C;AAC5C,kEAAwC;AACxC,qEAA2C;AAC3C,sDAA4B;AAC5B,YAAY"}
|