@openbox/shared-types 0.3.53 → 0.3.55
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/lib/accounting/Catalogs/CreateMany/Request.d.ts +2 -0
- package/lib/accounting/Catalogs/CreateMany/Request.js +3 -0
- package/lib/accounting/Catalogs/CreateMany/Request.js.map +1 -0
- package/lib/accounting/Catalogs/CreateMany/Response.d.ts +2 -0
- package/lib/accounting/Catalogs/CreateMany/Response.js +3 -0
- package/lib/accounting/Catalogs/CreateMany/Response.js.map +1 -0
- package/lib/accounting/Catalogs/CreateSingle/Request.d.ts +2 -0
- package/lib/accounting/Catalogs/CreateSingle/Request.js +3 -0
- package/lib/accounting/Catalogs/CreateSingle/Request.js.map +1 -0
- package/lib/accounting/Catalogs/CreateSingle/Response.d.ts +2 -0
- package/lib/accounting/Catalogs/CreateSingle/Response.js +3 -0
- package/lib/accounting/Catalogs/CreateSingle/Response.js.map +1 -0
- package/lib/accounting/Catalogs/accounting.catalogs.types.d.ts +1 -1
- package/lib/accounting/Catalogs/index.d.ts +4 -0
- package/lib/accounting/Catalogs/index.js +4 -0
- package/lib/accounting/Catalogs/index.js.map +1 -1
- package/package.json +1 -1
- package/src/accounting/Catalogs/CreateMany/Request.ts +3 -0
- package/src/accounting/Catalogs/CreateMany/Response.ts +3 -0
- package/src/accounting/Catalogs/CreateSingle/Request.ts +3 -0
- package/src/accounting/Catalogs/CreateSingle/Response.ts +3 -0
- package/src/accounting/Catalogs/accounting.catalogs.types.ts +1 -2
- package/src/accounting/Catalogs/index.ts +4 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../../src/accounting/Catalogs/CreateMany/Request.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/accounting/Catalogs/CreateMany/Response.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../../src/accounting/Catalogs/CreateSingle/Request.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/accounting/Catalogs/CreateSingle/Response.ts"],"names":[],"mappings":""}
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
export * from './CreateMany/Request';
|
|
2
|
+
export * from './CreateMany/Response';
|
|
3
|
+
export * from './CreateSingle/Request';
|
|
4
|
+
export * from './CreateSingle/Response';
|
|
1
5
|
export * from './GetMany/Request';
|
|
2
6
|
export * from './GetMany/Response';
|
|
3
7
|
export * from './GetSingle/Response';
|
|
@@ -14,6 +14,10 @@ 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
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./CreateMany/Request"), exports);
|
|
18
|
+
__exportStar(require("./CreateMany/Response"), exports);
|
|
19
|
+
__exportStar(require("./CreateSingle/Request"), exports);
|
|
20
|
+
__exportStar(require("./CreateSingle/Response"), exports);
|
|
17
21
|
__exportStar(require("./GetMany/Request"), exports);
|
|
18
22
|
__exportStar(require("./GetMany/Response"), exports);
|
|
19
23
|
__exportStar(require("./GetSingle/Response"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/accounting/Catalogs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAiC;AACjC,qDAAkC;AAClC,uDAAoC;AACpC,8DAA2C"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/accounting/Catalogs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uDAAoC;AACpC,wDAAqC;AACrC,yDAAsC;AACtC,0DAAuC;AACvC,oDAAiC;AACjC,qDAAkC;AAClC,uDAAoC;AACpC,8DAA2C"}
|
package/package.json
CHANGED
|
@@ -2,10 +2,9 @@ export type AccountingCatalogs = {
|
|
|
2
2
|
id: string
|
|
3
3
|
code: string
|
|
4
4
|
name: string
|
|
5
|
-
description: string
|
|
6
5
|
// level: number
|
|
7
6
|
isParent: boolean
|
|
8
7
|
isAcreedora: boolean
|
|
9
8
|
isBalance: boolean
|
|
10
|
-
|
|
9
|
+
parentCatalog: AccountingCatalogs
|
|
11
10
|
}
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
export * from './CreateMany/Request'
|
|
2
|
+
export * from './CreateMany/Response'
|
|
3
|
+
export * from './CreateSingle/Request'
|
|
4
|
+
export * from './CreateSingle/Response'
|
|
1
5
|
export * from './GetMany/Request'
|
|
2
6
|
export * from './GetMany/Response'
|
|
3
7
|
export * from './GetSingle/Response'
|