@openbox/shared-types 0.3.62 → 0.3.64
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/Settings/GetGenerals/Response.d.ts +2 -0
- package/lib/accounting/Settings/GetGenerals/Response.js +3 -0
- package/lib/accounting/Settings/GetGenerals/Response.js.map +1 -0
- package/lib/accounting/Settings/UpdateGenerals/Request.d.ts +2 -0
- package/lib/accounting/Settings/UpdateGenerals/Request.js +3 -0
- package/lib/accounting/Settings/UpdateGenerals/Request.js.map +1 -0
- package/lib/accounting/Settings/UpdateGenerals/Response.d.ts +3 -0
- package/lib/accounting/Settings/UpdateGenerals/Response.js +3 -0
- package/lib/accounting/Settings/UpdateGenerals/Response.js.map +1 -0
- package/lib/accounting/Settings/accounting.settings.types.d.ts +13 -0
- package/lib/accounting/Settings/accounting.settings.types.js +3 -0
- package/lib/accounting/Settings/accounting.settings.types.js.map +1 -0
- package/lib/accounting/Settings/index.d.ts +3 -0
- package/lib/accounting/Settings/index.js +20 -0
- package/lib/accounting/Settings/index.js.map +1 -0
- package/lib/accounting/index.d.ts +1 -0
- package/lib/accounting/index.js +1 -0
- package/lib/accounting/index.js.map +1 -1
- package/package.json +1 -1
- package/src/accounting/Settings/GetGenerals/Response.ts +6 -0
- package/src/accounting/Settings/UpdateGenerals/Request.ts +3 -0
- package/src/accounting/Settings/UpdateGenerals/Response.ts +3 -0
- package/src/accounting/Settings/accounting.settings.types.ts +14 -0
- package/src/accounting/Settings/index.ts +3 -0
- package/src/accounting/index.ts +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/accounting/Settings/GetGenerals/Response.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../../src/accounting/Settings/UpdateGenerals/Request.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/accounting/Settings/UpdateGenerals/Response.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AccountingCatalogs } from '../Catalogs';
|
|
2
|
+
export type AccountingSettings = {
|
|
3
|
+
id: string;
|
|
4
|
+
balanceGeneral: JSON;
|
|
5
|
+
estadoResultados: JSON;
|
|
6
|
+
periodStart: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
7
|
+
peridoEnd: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
8
|
+
legal: string;
|
|
9
|
+
accountant: string;
|
|
10
|
+
auditor: string;
|
|
11
|
+
accountingDebitCatalog: AccountingCatalogs;
|
|
12
|
+
accountingCreditCatalog: AccountingCatalogs;
|
|
13
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"accounting.settings.types.js","sourceRoot":"","sources":["../../../src/accounting/Settings/accounting.settings.types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,20 @@
|
|
|
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("./UpdateGenerals/Request"), exports);
|
|
18
|
+
__exportStar(require("./UpdateGenerals/Response"), exports);
|
|
19
|
+
__exportStar(require("./accounting.settings.types"), exports);
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/accounting/Settings/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAwC;AACxC,4DAAyC;AACzC,8DAA2C"}
|
package/lib/accounting/index.js
CHANGED
|
@@ -19,5 +19,6 @@ __exportStar(require("./Entries"), exports);
|
|
|
19
19
|
__exportStar(require("./EntriesDetails"), exports);
|
|
20
20
|
__exportStar(require("./EntriesStatuses"), exports);
|
|
21
21
|
__exportStar(require("./EntriesTypes"), exports);
|
|
22
|
+
__exportStar(require("./Settings"), exports);
|
|
22
23
|
__exportStar(require("./accounting.enums"), exports);
|
|
23
24
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/accounting/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA0B;AAC1B,4CAAyB;AACzB,mDAAgC;AAChC,oDAAiC;AACjC,iDAA8B;AAC9B,qDAAkC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/accounting/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA0B;AAC1B,4CAAyB;AACzB,mDAAgC;AAChC,oDAAiC;AACjC,iDAA8B;AAC9B,6CAA0B;AAC1B,qDAAkC"}
|
package/package.json
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { AccountingCatalogs } from '../Catalogs'
|
|
2
|
+
|
|
3
|
+
export type AccountingSettings = {
|
|
4
|
+
id: string
|
|
5
|
+
balanceGeneral: JSON
|
|
6
|
+
estadoResultados: JSON
|
|
7
|
+
periodStart: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12
|
|
8
|
+
peridoEnd: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12
|
|
9
|
+
legal: string
|
|
10
|
+
accountant: string
|
|
11
|
+
auditor: string
|
|
12
|
+
accountingDebitCatalog: AccountingCatalogs
|
|
13
|
+
accountingCreditCatalog: AccountingCatalogs
|
|
14
|
+
}
|