@epilot/blueprint-manifest-client 2.2.3 → 2.2.4
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/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/openapi.d.ts +12 -1
- package/package.json +3 -4
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -15,4 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./client"), exports);
|
|
18
|
+
__exportStar(require("./openapi"), exports);
|
|
18
19
|
//# sourceMappingURL=index.js.map
|
package/dist/openapi.d.ts
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
|
+
|
|
2
3
|
import type {
|
|
3
4
|
OpenAPIClient,
|
|
4
5
|
Parameters,
|
|
5
6
|
UnknownParamsObject,
|
|
6
7
|
OperationResponse,
|
|
7
8
|
AxiosRequestConfig,
|
|
8
|
-
} from 'openapi-client-axios';
|
|
9
|
+
} from 'openapi-client-axios';
|
|
9
10
|
|
|
10
11
|
declare namespace Components {
|
|
11
12
|
namespace Parameters {
|
|
@@ -440,3 +441,13 @@ export interface PathsDictionary {
|
|
|
440
441
|
}
|
|
441
442
|
|
|
442
443
|
export type Client = OpenAPIClient<OperationMethods, PathsDictionary>
|
|
444
|
+
|
|
445
|
+
export type Job = Components.Schemas.Job;
|
|
446
|
+
export type JobID = Components.Schemas.JobID;
|
|
447
|
+
export type JobStatus = Components.Schemas.JobStatus;
|
|
448
|
+
export type ResourceNode = Components.Schemas.ResourceNode;
|
|
449
|
+
export type ResourceNodeType = Components.Schemas.ResourceNodeType;
|
|
450
|
+
export type RootResourceNode = Components.Schemas.RootResourceNode;
|
|
451
|
+
export type S3Reference = Components.Schemas.S3Reference;
|
|
452
|
+
export type UploadFilePayload = Components.Schemas.UploadFilePayload;
|
|
453
|
+
export type VirtualResourceNodeGroup = Components.Schemas.VirtualResourceNodeGroup;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epilot/blueprint-manifest-client",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.4",
|
|
4
4
|
"description": "Client for epilot Terraform Blueprint Manifest API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"bundle-definition": "webpack",
|
|
27
27
|
"openapi": "node ../../scripts/update-openapi.js https://docs.api.epilot.io/blueprint-manifest.yaml",
|
|
28
28
|
"openapi:local": "node ../../scripts/update-openapi.js ../../../blueprint-manifest-api/lambda/TerraformHandlerFunction/openapi.yml",
|
|
29
|
-
"typegen": "
|
|
29
|
+
"typegen": "openapi typegen src/openapi.json --client -b '/* eslint-disable */' > src/openapi.d.ts",
|
|
30
30
|
"build": "tsc && npm run bundle-definition",
|
|
31
31
|
"build:watch": "npm run build && tsc -w",
|
|
32
32
|
"prepublishOnly": "npm run typegen && npm run build",
|
|
@@ -63,8 +63,7 @@
|
|
|
63
63
|
"copy-webpack-plugin": "^7.0.0",
|
|
64
64
|
"jest": "^26.6.3",
|
|
65
65
|
"json-loader": "^0.5.7",
|
|
66
|
-
"
|
|
67
|
-
"openapicmd": "^2.1.0",
|
|
66
|
+
"openapicmd": "^2.6.0",
|
|
68
67
|
"ts-jest": "^26.5.0",
|
|
69
68
|
"ts-loader": "^8.0.14",
|
|
70
69
|
"ts-node": "^10.9.1",
|