ng-openapi 0.1.13-pr-22-http-params-builder-e72d48f.0 → 0.1.13-pr-22-http-params-builder-af90d92.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/cli.cjs +4 -1
- package/index.js +4 -1
- package/package.json +1 -1
package/cli.cjs
CHANGED
|
@@ -1445,6 +1445,9 @@ var MainIndexGenerator = class {
|
|
|
1445
1445
|
sourceFile.addExportDeclaration({
|
|
1446
1446
|
moduleSpecifier: "./utils/file-download"
|
|
1447
1447
|
});
|
|
1448
|
+
sourceFile.addExportDeclaration({
|
|
1449
|
+
moduleSpecifier: "./utils/http-params-builder"
|
|
1450
|
+
});
|
|
1448
1451
|
if (this.config.options.dateType === "Date") {
|
|
1449
1452
|
sourceFile.addExportDeclaration({
|
|
1450
1453
|
moduleSpecifier: "./utils/date-transformer"
|
|
@@ -2560,7 +2563,7 @@ var ServiceGenerator = class {
|
|
|
2560
2563
|
namedImports: [
|
|
2561
2564
|
"HttpParamsBuilder"
|
|
2562
2565
|
],
|
|
2563
|
-
moduleSpecifier: "../
|
|
2566
|
+
moduleSpecifier: "../index"
|
|
2564
2567
|
}
|
|
2565
2568
|
]);
|
|
2566
2569
|
if (usedTypes.size > 0) {
|
package/index.js
CHANGED
|
@@ -1553,6 +1553,9 @@ var _MainIndexGenerator = class _MainIndexGenerator {
|
|
|
1553
1553
|
sourceFile.addExportDeclaration({
|
|
1554
1554
|
moduleSpecifier: "./utils/file-download"
|
|
1555
1555
|
});
|
|
1556
|
+
sourceFile.addExportDeclaration({
|
|
1557
|
+
moduleSpecifier: "./utils/http-params-builder"
|
|
1558
|
+
});
|
|
1556
1559
|
if (this.config.options.dateType === "Date") {
|
|
1557
1560
|
sourceFile.addExportDeclaration({
|
|
1558
1561
|
moduleSpecifier: "./utils/date-transformer"
|
|
@@ -2678,7 +2681,7 @@ var _ServiceGenerator = class _ServiceGenerator {
|
|
|
2678
2681
|
namedImports: [
|
|
2679
2682
|
"HttpParamsBuilder"
|
|
2680
2683
|
],
|
|
2681
|
-
moduleSpecifier: "../
|
|
2684
|
+
moduleSpecifier: "../index"
|
|
2682
2685
|
}
|
|
2683
2686
|
]);
|
|
2684
2687
|
if (usedTypes.size > 0) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ng-openapi",
|
|
3
|
-
"version": "0.1.13-pr-22-http-params-builder-
|
|
3
|
+
"version": "0.1.13-pr-22-http-params-builder-af90d92.0",
|
|
4
4
|
"description": "Generate Angular services and TypeScript types from OpenAPI/Swagger specifications",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ng-openapi",
|