@epilot/erp-integration-client 0.12.0 → 0.13.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/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export type { OpenAPIClient, OpenAPIClientAxios, Document } from 'openapi-client-axios';
2
2
  export * from './client';
3
3
  export * from './openapi';
4
+ export { default as openApiSpec } from './openapi.json';
package/dist/index.js CHANGED
@@ -13,6 +13,13 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
13
13
  var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
+ var __importDefault = (this && this.__importDefault) || function (mod) {
17
+ return (mod && mod.__esModule) ? mod : { "default": mod };
18
+ };
16
19
  Object.defineProperty(exports, "__esModule", { value: true });
20
+ exports.openApiSpec = void 0;
17
21
  __exportStar(require("./client"), exports);
22
+ // Export the full OpenAPI specification
23
+ var openapi_json_1 = require("./openapi.json");
24
+ Object.defineProperty(exports, "openApiSpec", { enumerable: true, get: function () { return __importDefault(openapi_json_1).default; } });
18
25
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/erp-integration-client",
3
- "version": "0.12.0",
3
+ "version": "0.13.0",
4
4
  "description": "Client library for ePilot ERP Integration API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",