@openbox/shared-types 0.2.52 → 0.2.54
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/invoices/index.d.ts +1 -0
- package/lib/invoices/index.js +1 -0
- package/lib/invoices/index.js.map +1 -1
- package/lib/invoices/invoices.enum.d.ts +15 -0
- package/lib/invoices/invoices.enum.js +21 -0
- package/lib/invoices/invoices.enum.js.map +1 -0
- package/lib/system/system.enums.d.ts +42 -0
- package/lib/system/system.enums.js +13 -1
- package/lib/system/system.enums.js.map +1 -1
- package/package.json +1 -1
- package/src/invoices/index.ts +1 -0
- package/src/invoices/invoices.enum.ts +16 -0
- package/src/system/system.enums.ts +13 -0
- package/tsconfig.json +1 -1
package/lib/invoices/index.d.ts
CHANGED
package/lib/invoices/index.js
CHANGED
|
@@ -22,4 +22,5 @@ __exportStar(require("./PaymentConditions"), exports);
|
|
|
22
22
|
__exportStar(require("./Sellers/"), exports);
|
|
23
23
|
__exportStar(require("./Statuses/"), exports);
|
|
24
24
|
__exportStar(require("./Zones/"), exports);
|
|
25
|
+
__exportStar(require("./invoices.enum"), exports);
|
|
25
26
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/invoices/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iDAA8B;AAC9B,mDAAgC;AAChC,+CAA4B;AAC5B,8CAA2B;AAC3B,sDAAmC;AACnC,6CAA0B;AAC1B,8CAA2B;AAC3B,2CAAwB"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/invoices/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iDAA8B;AAC9B,mDAAgC;AAChC,+CAA4B;AAC5B,8CAA2B;AAC3B,sDAAmC;AACnC,6CAA0B;AAC1B,8CAA2B;AAC3B,2CAAwB;AACxB,kDAA+B"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.InvoicesStatuses = exports.InvoicesDocumentTypes = void 0;
|
|
4
|
+
var InvoicesDocumentTypes;
|
|
5
|
+
(function (InvoicesDocumentTypes) {
|
|
6
|
+
InvoicesDocumentTypes[InvoicesDocumentTypes["FCF"] = 1] = "FCF";
|
|
7
|
+
InvoicesDocumentTypes[InvoicesDocumentTypes["CCF"] = 2] = "CCF";
|
|
8
|
+
InvoicesDocumentTypes[InvoicesDocumentTypes["FEX"] = 3] = "FEX";
|
|
9
|
+
InvoicesDocumentTypes[InvoicesDocumentTypes["NC"] = 4] = "NC";
|
|
10
|
+
InvoicesDocumentTypes[InvoicesDocumentTypes["ND"] = 5] = "ND";
|
|
11
|
+
InvoicesDocumentTypes[InvoicesDocumentTypes["FC"] = 6] = "FC";
|
|
12
|
+
})(InvoicesDocumentTypes = exports.InvoicesDocumentTypes || (exports.InvoicesDocumentTypes = {}));
|
|
13
|
+
var InvoicesStatuses;
|
|
14
|
+
(function (InvoicesStatuses) {
|
|
15
|
+
InvoicesStatuses[InvoicesStatuses["Emitida"] = 1] = "Emitida";
|
|
16
|
+
InvoicesStatuses[InvoicesStatuses["Impresa"] = 2] = "Impresa";
|
|
17
|
+
InvoicesStatuses[InvoicesStatuses["Anulada"] = 3] = "Anulada";
|
|
18
|
+
InvoicesStatuses[InvoicesStatuses["Reservada"] = 4] = "Reservada";
|
|
19
|
+
InvoicesStatuses[InvoicesStatuses["Pagada"] = 5] = "Pagada";
|
|
20
|
+
})(InvoicesStatuses = exports.InvoicesStatuses || (exports.InvoicesStatuses = {}));
|
|
21
|
+
//# sourceMappingURL=invoices.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"invoices.enum.js","sourceRoot":"","sources":["../../src/invoices/invoices.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,qBAOX;AAPD,WAAY,qBAAqB;IAC/B,+DAAO,CAAA;IACP,+DAAO,CAAA;IACP,+DAAO,CAAA;IACP,6DAAM,CAAA;IACN,6DAAM,CAAA;IACN,6DAAM,CAAA;AACR,CAAC,EAPW,qBAAqB,GAArB,6BAAqB,KAArB,6BAAqB,QAOhC;AAED,IAAY,gBAMX;AAND,WAAY,gBAAgB;IAC1B,6DAAW,CAAA;IACX,6DAAW,CAAA;IACX,6DAAW,CAAA;IACX,iEAAa,CAAA;IACb,2DAAU,CAAA;AACZ,CAAC,EANW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAM3B"}
|
|
@@ -1,3 +1,45 @@
|
|
|
1
|
+
export declare const SystemModules: {
|
|
2
|
+
Invoices: {
|
|
3
|
+
id: string;
|
|
4
|
+
name: string;
|
|
5
|
+
};
|
|
6
|
+
Accounting: {
|
|
7
|
+
id: string;
|
|
8
|
+
name: string;
|
|
9
|
+
};
|
|
10
|
+
Services: {
|
|
11
|
+
id: string;
|
|
12
|
+
name: string;
|
|
13
|
+
};
|
|
14
|
+
Providers: {
|
|
15
|
+
id: string;
|
|
16
|
+
name: string;
|
|
17
|
+
};
|
|
18
|
+
Customers: {
|
|
19
|
+
id: string;
|
|
20
|
+
name: string;
|
|
21
|
+
};
|
|
22
|
+
Taxes: {
|
|
23
|
+
id: string;
|
|
24
|
+
name: string;
|
|
25
|
+
};
|
|
26
|
+
Echarges: {
|
|
27
|
+
id: string;
|
|
28
|
+
name: string;
|
|
29
|
+
};
|
|
30
|
+
Purchases: {
|
|
31
|
+
id: string;
|
|
32
|
+
name: string;
|
|
33
|
+
};
|
|
34
|
+
Receibable: {
|
|
35
|
+
id: string;
|
|
36
|
+
name: string;
|
|
37
|
+
};
|
|
38
|
+
Legal: {
|
|
39
|
+
id: string;
|
|
40
|
+
name: string;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
1
43
|
export declare enum SystemTaxerTypes {
|
|
2
44
|
Small = 1,
|
|
3
45
|
Medium = 2,
|
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SystemSellingTypes = exports.SystemNaturalTypes = exports.SystemPersonTypes = exports.SystemTaxerTypes = void 0;
|
|
3
|
+
exports.SystemSellingTypes = exports.SystemNaturalTypes = exports.SystemPersonTypes = exports.SystemTaxerTypes = exports.SystemModules = void 0;
|
|
4
|
+
exports.SystemModules = {
|
|
5
|
+
Invoices: { id: 'cfb8addb-541b-482f-8fa1-dfe5db03fdf4', name: 'Invoices' },
|
|
6
|
+
Accounting: { id: 'a98b98e6-b2d5-42a3-853d-9516f64eade8', name: 'Accounting' },
|
|
7
|
+
Services: { id: '0f88f2ea-aae9-44ad-8df0-0ee3debbf167', name: 'Services' },
|
|
8
|
+
Providers: { id: 'f6000cbb-1e6d-4f7d-a7cc-cadd78d23076', name: 'Providers' },
|
|
9
|
+
Customers: { id: '9ff0b6f4-9c58-475b-b2dd-5eea6d7b66aa', name: 'Customers' },
|
|
10
|
+
Taxes: { id: '53a36e54-bab2-4824-9e43-b40efab8bab9', name: 'Taxes' },
|
|
11
|
+
Echarges: { id: '09a5c668-ab54-441e-9fb2-d24b36ae202e', name: 'Echarges' },
|
|
12
|
+
Purchases: { id: 'cf5e4b29-f09c-438a-8d82-2ef482a9a461', name: 'Purchases' },
|
|
13
|
+
Receibable: { id: '9c5dbbf2-ba8a-443d-b1ac-8bf23ea9a8e5', name: 'Receibable' },
|
|
14
|
+
Legal: { id: '2f39ef4d-768f-4c15-9472-9055c6c4a2ae', name: 'Legal' },
|
|
15
|
+
};
|
|
4
16
|
var SystemTaxerTypes;
|
|
5
17
|
(function (SystemTaxerTypes) {
|
|
6
18
|
SystemTaxerTypes[SystemTaxerTypes["Small"] = 1] = "Small";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"system.enums.js","sourceRoot":"","sources":["../../src/system/system.enums.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"system.enums.js","sourceRoot":"","sources":["../../src/system/system.enums.ts"],"names":[],"mappings":";;;AAAa,QAAA,aAAa,GAAG;IAC3B,QAAQ,EAAE,EAAE,EAAE,EAAE,sCAAsC,EAAE,IAAI,EAAE,UAAU,EAAE;IAC1E,UAAU,EAAE,EAAE,EAAE,EAAE,sCAAsC,EAAE,IAAI,EAAE,YAAY,EAAE;IAC9E,QAAQ,EAAE,EAAE,EAAE,EAAE,sCAAsC,EAAE,IAAI,EAAE,UAAU,EAAE;IAC1E,SAAS,EAAE,EAAE,EAAE,EAAE,sCAAsC,EAAE,IAAI,EAAE,WAAW,EAAE;IAC5E,SAAS,EAAE,EAAE,EAAE,EAAE,sCAAsC,EAAE,IAAI,EAAE,WAAW,EAAE;IAC5E,KAAK,EAAE,EAAE,EAAE,EAAE,sCAAsC,EAAE,IAAI,EAAE,OAAO,EAAE;IACpE,QAAQ,EAAE,EAAE,EAAE,EAAE,sCAAsC,EAAE,IAAI,EAAE,UAAU,EAAE;IAC1E,SAAS,EAAE,EAAE,EAAE,EAAE,sCAAsC,EAAE,IAAI,EAAE,WAAW,EAAE;IAC5E,UAAU,EAAE,EAAE,EAAE,EAAE,sCAAsC,EAAE,IAAI,EAAE,YAAY,EAAE;IAC9E,KAAK,EAAE,EAAE,EAAE,EAAE,sCAAsC,EAAE,IAAI,EAAE,OAAO,EAAE;CACrE,CAAA;AAED,IAAY,gBAIX;AAJD,WAAY,gBAAgB;IAC1B,yDAAS,CAAA;IACT,2DAAU,CAAA;IACV,yDAAS,CAAA;AACX,CAAC,EAJW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAI3B;AAED,IAAY,iBAIX;AAJD,WAAY,iBAAiB;IAC3B,iEAAY,CAAA;IACZ,+DAAW,CAAA;IACX,qEAAc,CAAA;AAChB,CAAC,EAJW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAI5B;AAED,IAAY,kBAGX;AAHD,WAAY,kBAAkB;IAC5B,2EAAgB,CAAA;IAChB,uEAAc,CAAA;AAChB,CAAC,EAHW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAG7B;AAED,IAAY,kBAIX;AAJD,WAAY,kBAAkB;IAC5B,mEAAY,CAAA;IACZ,+DAAU,CAAA;IACV,iEAAW,CAAA;AACb,CAAC,EAJW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAI7B"}
|
package/package.json
CHANGED
package/src/invoices/index.ts
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
export const SystemModules = {
|
|
2
|
+
Invoices: { id: 'cfb8addb-541b-482f-8fa1-dfe5db03fdf4', name: 'Invoices' },
|
|
3
|
+
Accounting: { id: 'a98b98e6-b2d5-42a3-853d-9516f64eade8', name: 'Accounting' },
|
|
4
|
+
Services: { id: '0f88f2ea-aae9-44ad-8df0-0ee3debbf167', name: 'Services' },
|
|
5
|
+
Providers: { id: 'f6000cbb-1e6d-4f7d-a7cc-cadd78d23076', name: 'Providers' },
|
|
6
|
+
Customers: { id: '9ff0b6f4-9c58-475b-b2dd-5eea6d7b66aa', name: 'Customers' },
|
|
7
|
+
Taxes: { id: '53a36e54-bab2-4824-9e43-b40efab8bab9', name: 'Taxes' },
|
|
8
|
+
Echarges: { id: '09a5c668-ab54-441e-9fb2-d24b36ae202e', name: 'Echarges' },
|
|
9
|
+
Purchases: { id: 'cf5e4b29-f09c-438a-8d82-2ef482a9a461', name: 'Purchases' },
|
|
10
|
+
Receibable: { id: '9c5dbbf2-ba8a-443d-b1ac-8bf23ea9a8e5', name: 'Receibable' },
|
|
11
|
+
Legal: { id: '2f39ef4d-768f-4c15-9472-9055c6c4a2ae', name: 'Legal' },
|
|
12
|
+
}
|
|
13
|
+
|
|
1
14
|
export enum SystemTaxerTypes {
|
|
2
15
|
Small = 1,
|
|
3
16
|
Medium = 2,
|