@openbox/shared-types 0.1.84 → 0.1.85

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/README.md CHANGED
@@ -14,7 +14,7 @@ Instalar Yarn globalmente
14
14
  ```bash
15
15
  npm install -g yarn
16
16
  ```
17
- Instalar dependencias
17
+ Instalar dependencias y inicializar hooks
18
18
  ```bash
19
- $ yarn install
19
+ $ yarn install && yarn husky install
20
20
  ```
@@ -1,4 +1,7 @@
1
1
  export * from './System';
2
+ export * from './accounting';
2
3
  export * from './auth';
3
4
  export * from './customers';
5
+ export * from './invoices';
6
+ export * from './providers';
4
7
  export * from './services';
package/lib/src/index.js CHANGED
@@ -15,7 +15,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./System"), exports);
18
+ __exportStar(require("./accounting"), exports);
18
19
  __exportStar(require("./auth"), exports);
19
20
  __exportStar(require("./customers"), exports);
21
+ __exportStar(require("./invoices"), exports);
22
+ __exportStar(require("./providers"), exports);
20
23
  __exportStar(require("./services"), exports);
21
24
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAwB;AACxB,yCAAsB;AACtB,8CAA2B;AAC3B,6CAA0B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAwB;AACxB,+CAA4B;AAC5B,yCAAsB;AACtB,8CAA2B;AAC3B,6CAA0B;AAC1B,8CAA2B;AAC3B,6CAA0B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.1.84",
3
+ "version": "0.1.85",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -16,7 +16,7 @@
16
16
  "lint": "eslint --ext .ts,.tsx --ignore-path .gitignore .",
17
17
  "lint:fix": "npm run lint -- --fix",
18
18
  "commit-msg": "ts-node ./scripts/commit-msg.script.ts",
19
- "postinstall": "husky install",
19
+ "prepare": "npm run build",
20
20
  "format": "prettier --write \"src/**/*.ts\"",
21
21
  "format:check": "yarn format --check",
22
22
  "format:write": "yarn format --write"
package/src/index.ts CHANGED
@@ -1,4 +1,7 @@
1
1
  export * from './System'
2
+ export * from './accounting'
2
3
  export * from './auth'
3
4
  export * from './customers'
5
+ export * from './invoices'
6
+ export * from './providers'
4
7
  export * from './services'