@openbox/shared-types 0.2.41 → 0.2.43

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.
@@ -0,0 +1,4 @@
1
+ import { CustomersTaxerTypeGetSingleResponse } from '../GetSingle/Response';
2
+ export type CustomersTaxerTypeGetManyResponse = {
3
+ data: Array<CustomersTaxerTypeGetSingleResponse>;
4
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=Response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/customers/TaxerType/GetMany/Response.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ import { CustomersTaxerTypeResponse } from '../customers.taxer-type.types';
2
+ export type CustomersTaxerTypeGetSingleResponse = CustomersTaxerTypeResponse;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=Response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/customers/TaxerType/GetSingle/Response.ts"],"names":[],"mappings":""}
@@ -0,0 +1,4 @@
1
+ import { SystemTaxerTypes } from '../../system/TaxerTypes/system.taxer-types.types';
2
+ export type CustomersTaxerType = SystemTaxerTypes;
3
+ export type CustomersTaxerTypeRequest = Omit<CustomersTaxerType, 'id'>;
4
+ export type CustomersTaxerTypeResponse = CustomersTaxerType;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=customers.taxer-type.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"customers.taxer-type.types.js","sourceRoot":"","sources":["../../../src/customers/TaxerType/customers.taxer-type.types.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ export * from './GetMany/Response';
2
+ export * from './GetSingle/Response';
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./GetMany/Response"), exports);
18
+ __exportStar(require("./GetSingle/Response"), exports);
19
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/customers/TaxerType/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAkC;AAClC,uDAAoC"}
@@ -2,4 +2,5 @@ export * from './Branches';
2
2
  export * from './Customers';
3
3
  export * from './PersonType';
4
4
  export * from './PersonTypeNatural';
5
+ export * from './TaxerType';
5
6
  export * from './Type';
@@ -18,5 +18,6 @@ __exportStar(require("./Branches"), exports);
18
18
  __exportStar(require("./Customers"), exports);
19
19
  __exportStar(require("./PersonType"), exports);
20
20
  __exportStar(require("./PersonTypeNatural"), exports);
21
+ __exportStar(require("./TaxerType"), exports);
21
22
  __exportStar(require("./Type"), exports);
22
23
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/customers/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA0B;AAC1B,8CAA2B;AAC3B,+CAA4B;AAC5B,sDAAmC;AACnC,yCAAsB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/customers/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA0B;AAC1B,8CAA2B;AAC3B,+CAA4B;AAC5B,sDAAmC;AACnC,8CAA2B;AAC3B,yCAAsB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.2.41",
3
+ "version": "0.2.43",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -0,0 +1,5 @@
1
+ import { CustomersTaxerTypeGetSingleResponse } from '../GetSingle/Response'
2
+
3
+ export type CustomersTaxerTypeGetManyResponse = {
4
+ data: Array<CustomersTaxerTypeGetSingleResponse>
5
+ }
@@ -0,0 +1,3 @@
1
+ import { CustomersTaxerTypeResponse } from '../customers.taxer-type.types'
2
+
3
+ export type CustomersTaxerTypeGetSingleResponse = CustomersTaxerTypeResponse
@@ -0,0 +1,6 @@
1
+ import { SystemTaxerTypes } from '../../system/TaxerTypes/system.taxer-types.types'
2
+
3
+ export type CustomersTaxerType = SystemTaxerTypes
4
+
5
+ export type CustomersTaxerTypeRequest = Omit<CustomersTaxerType, 'id'>
6
+ export type CustomersTaxerTypeResponse = CustomersTaxerType
@@ -0,0 +1,2 @@
1
+ export * from './GetMany/Response'
2
+ export * from './GetSingle/Response'
@@ -2,4 +2,5 @@ export * from './Branches'
2
2
  export * from './Customers'
3
3
  export * from './PersonType'
4
4
  export * from './PersonTypeNatural'
5
+ export * from './TaxerType'
5
6
  export * from './Type'