@openbox/shared-types 0.4.23 → 0.4.25

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.
Files changed (41) hide show
  1. package/lib/accounting/Reports/CheckingBalance/Request.d.ts +4 -0
  2. package/lib/accounting/Reports/CheckingBalance/Request.js.map +1 -0
  3. package/lib/accounting/Reports/CheckingBalance/Response.d.ts +3 -0
  4. package/lib/accounting/Reports/CheckingBalance/Response.js.map +1 -0
  5. package/lib/accounting/Reports/CheckingBalancePreview/Request.d.ts +2 -0
  6. package/lib/accounting/Reports/CheckingBalancePreview/Request.js.map +1 -0
  7. package/lib/accounting/Reports/CheckingBalancePreview/Response.d.ts +3 -0
  8. package/lib/accounting/Reports/CheckingBalancePreview/Response.js.map +1 -0
  9. package/lib/accounting/Reports/index.d.ts +4 -4
  10. package/lib/accounting/Reports/index.js +4 -4
  11. package/lib/accounting/Reports/index.js.map +1 -1
  12. package/package.json +1 -1
  13. package/src/accounting/Reports/CheckingBalance/Request.ts +4 -0
  14. package/src/accounting/Reports/CheckingBalance/Response.ts +3 -0
  15. package/src/accounting/Reports/CheckingBalancePreview/Request.ts +6 -0
  16. package/src/accounting/Reports/CheckingBalancePreview/Response.ts +3 -0
  17. package/src/accounting/Reports/index.ts +4 -4
  18. package/lib/accounting/Reports/BalanceComprobacion/Request.d.ts +0 -4
  19. package/lib/accounting/Reports/BalanceComprobacion/Request.js.map +0 -1
  20. package/lib/accounting/Reports/BalanceComprobacion/Response.d.ts +0 -3
  21. package/lib/accounting/Reports/BalanceComprobacion/Response.js.map +0 -1
  22. package/lib/accounting/Reports/BalanceComprobacionPreview/BalanceComprobacion/Request.d.ts +0 -4
  23. package/lib/accounting/Reports/BalanceComprobacionPreview/BalanceComprobacion/Request.js.map +0 -1
  24. package/lib/accounting/Reports/BalanceComprobacionPreview/BalanceComprobacion/Response.d.ts +0 -3
  25. package/lib/accounting/Reports/BalanceComprobacionPreview/BalanceComprobacion/Response.js.map +0 -1
  26. package/lib/accounting/Reports/BalanceComprobacionPreview/Request.d.ts +0 -2
  27. package/lib/accounting/Reports/BalanceComprobacionPreview/Request.js +0 -3
  28. package/lib/accounting/Reports/BalanceComprobacionPreview/Request.js.map +0 -1
  29. package/lib/accounting/Reports/BalanceComprobacionPreview/Response.d.ts +0 -3
  30. package/lib/accounting/Reports/BalanceComprobacionPreview/Response.js +0 -3
  31. package/lib/accounting/Reports/BalanceComprobacionPreview/Response.js.map +0 -1
  32. package/src/accounting/Reports/BalanceComprobacion/Request.ts +0 -4
  33. package/src/accounting/Reports/BalanceComprobacion/Response.ts +0 -3
  34. package/src/accounting/Reports/BalanceComprobacionPreview/BalanceComprobacion/Request.ts +0 -4
  35. package/src/accounting/Reports/BalanceComprobacionPreview/BalanceComprobacion/Response.ts +0 -3
  36. package/src/accounting/Reports/BalanceComprobacionPreview/Request.ts +0 -6
  37. package/src/accounting/Reports/BalanceComprobacionPreview/Response.ts +0 -3
  38. /package/lib/accounting/Reports/{BalanceComprobacion → CheckingBalance}/Request.js +0 -0
  39. /package/lib/accounting/Reports/{BalanceComprobacion → CheckingBalance}/Response.js +0 -0
  40. /package/lib/accounting/Reports/{BalanceComprobacionPreview/BalanceComprobacion → CheckingBalancePreview}/Request.js +0 -0
  41. /package/lib/accounting/Reports/{BalanceComprobacionPreview/BalanceComprobacion → CheckingBalancePreview}/Response.js +0 -0
@@ -0,0 +1,4 @@
1
+ export type AccountingReportsCheckingBalanceRequest = {
2
+ type: 'pdf' | 'xlsx';
3
+ date: Date;
4
+ };
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../../src/accounting/Reports/CheckingBalance/Request.ts"],"names":[],"mappings":""}
@@ -0,0 +1,3 @@
1
+ export type AccountingReportsCheckingBalanceResponse = {
2
+ url: string;
3
+ };
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/accounting/Reports/CheckingBalance/Response.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ import { AccountingReportsCheckingBalanceRequest } from '../CheckingBalance/Request';
2
+ export type AccountingReportsCheckingBalancePreviewRequest = Omit<AccountingReportsCheckingBalanceRequest, 'type'>;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../../src/accounting/Reports/CheckingBalancePreview/Request.ts"],"names":[],"mappings":""}
@@ -0,0 +1,3 @@
1
+ export type AccountingReportsCheckingBalancePreviewResponse = {
2
+ url: string;
3
+ };
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/accounting/Reports/CheckingBalancePreview/Response.ts"],"names":[],"mappings":""}
@@ -6,10 +6,10 @@ export * from './AccountsCatalog/Request';
6
6
  export * from './AccountsCatalog/Response';
7
7
  export * from './AccountsCatalogPreview/Request';
8
8
  export * from './AccountsCatalogPreview/Response';
9
- export * from './BalanceComprobacion/Request';
10
- export * from './BalanceComprobacion/Response';
11
- export * from './BalanceComprobacionPreview/Request';
12
- export * from './BalanceComprobacionPreview/Response';
9
+ export * from './CheckingBalance/Request';
10
+ export * from './CheckingBalance/Response';
11
+ export * from './CheckingBalancePreview/Request';
12
+ export * from './CheckingBalancePreview/Response';
13
13
  export * from './GeneralLedger/Request';
14
14
  export * from './GeneralLedger/Response';
15
15
  export * from './GeneralLedgerPreview/Request';
@@ -22,10 +22,10 @@ __exportStar(require("./AccountsCatalog/Request"), exports);
22
22
  __exportStar(require("./AccountsCatalog/Response"), exports);
23
23
  __exportStar(require("./AccountsCatalogPreview/Request"), exports);
24
24
  __exportStar(require("./AccountsCatalogPreview/Response"), exports);
25
- __exportStar(require("./BalanceComprobacion/Request"), exports);
26
- __exportStar(require("./BalanceComprobacion/Response"), exports);
27
- __exportStar(require("./BalanceComprobacionPreview/Request"), exports);
28
- __exportStar(require("./BalanceComprobacionPreview/Response"), exports);
25
+ __exportStar(require("./CheckingBalance/Request"), exports);
26
+ __exportStar(require("./CheckingBalance/Response"), exports);
27
+ __exportStar(require("./CheckingBalancePreview/Request"), exports);
28
+ __exportStar(require("./CheckingBalancePreview/Response"), exports);
29
29
  __exportStar(require("./GeneralLedger/Request"), exports);
30
30
  __exportStar(require("./GeneralLedger/Response"), exports);
31
31
  __exportStar(require("./GeneralLedgerPreview/Request"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/accounting/Reports/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6DAA0C;AAC1C,8DAA2C;AAC3C,oEAAiD;AACjD,qEAAkD;AAClD,4DAAyC;AACzC,6DAA0C;AAC1C,mEAAgD;AAChD,oEAAiD;AACjD,gEAA6C;AAC7C,iEAA8C;AAC9C,uEAAoD;AACpD,wEAAqD;AACrD,0DAAuC;AACvC,2DAAwC;AACxC,iEAA8C;AAC9C,kEAA+C;AAC/C,6DAA0C;AAC1C,8DAA2C;AAC3C,oEAAiD;AACjD,qEAAkD"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/accounting/Reports/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6DAA0C;AAC1C,8DAA2C;AAC3C,oEAAiD;AACjD,qEAAkD;AAClD,4DAAyC;AACzC,6DAA0C;AAC1C,mEAAgD;AAChD,oEAAiD;AACjD,4DAAyC;AACzC,6DAA0C;AAC1C,mEAAgD;AAChD,oEAAiD;AACjD,0DAAuC;AACvC,2DAAwC;AACxC,iEAA8C;AAC9C,kEAA+C;AAC/C,6DAA0C;AAC1C,8DAA2C;AAC3C,oEAAiD;AACjD,qEAAkD"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.4.23",
3
+ "version": "0.4.25",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -0,0 +1,4 @@
1
+ export type AccountingReportsCheckingBalanceRequest = {
2
+ type: 'pdf' | 'xlsx'
3
+ date: Date
4
+ }
@@ -0,0 +1,3 @@
1
+ export type AccountingReportsCheckingBalanceResponse = {
2
+ url: string
3
+ }
@@ -0,0 +1,6 @@
1
+ import { AccountingReportsCheckingBalanceRequest } from '../CheckingBalance/Request'
2
+
3
+ export type AccountingReportsCheckingBalancePreviewRequest = Omit<
4
+ AccountingReportsCheckingBalanceRequest,
5
+ 'type'
6
+ >
@@ -0,0 +1,3 @@
1
+ export type AccountingReportsCheckingBalancePreviewResponse = {
2
+ url: string
3
+ }
@@ -6,10 +6,10 @@ export * from './AccountsCatalog/Request'
6
6
  export * from './AccountsCatalog/Response'
7
7
  export * from './AccountsCatalogPreview/Request'
8
8
  export * from './AccountsCatalogPreview/Response'
9
- export * from './BalanceComprobacion/Request'
10
- export * from './BalanceComprobacion/Response'
11
- export * from './BalanceComprobacionPreview/Request'
12
- export * from './BalanceComprobacionPreview/Response'
9
+ export * from './CheckingBalance/Request'
10
+ export * from './CheckingBalance/Response'
11
+ export * from './CheckingBalancePreview/Request'
12
+ export * from './CheckingBalancePreview/Response'
13
13
  export * from './GeneralLedger/Request'
14
14
  export * from './GeneralLedger/Response'
15
15
  export * from './GeneralLedgerPreview/Request'
@@ -1,4 +0,0 @@
1
- export type AccountingReportsBalanceComprobacionRequest = {
2
- type: 'pdf' | 'xlsx';
3
- date: Date;
4
- };
@@ -1 +0,0 @@
1
- {"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../../src/accounting/Reports/BalanceComprobacion/Request.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- export type AccountingReportsBalanceComprobacionResponse = {
2
- url: string;
3
- };
@@ -1 +0,0 @@
1
- {"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/accounting/Reports/BalanceComprobacion/Response.ts"],"names":[],"mappings":""}
@@ -1,4 +0,0 @@
1
- export type AccountingReportsBalanceComprobacionRequest = {
2
- type: 'pdf' | 'xlsx';
3
- date: Date;
4
- };
@@ -1 +0,0 @@
1
- {"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../../../src/accounting/Reports/BalanceComprobacionPreview/BalanceComprobacion/Request.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- export type AccountingReportsBalanceComprobacionResponse = {
2
- url: string;
3
- };
@@ -1 +0,0 @@
1
- {"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../../src/accounting/Reports/BalanceComprobacionPreview/BalanceComprobacion/Response.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- import { AccountingReportsBalanceComprobacionRequest } from '../BalanceComprobacion/Request';
2
- export type AccountingReportsBalanceComprobacionPreviewRequest = Omit<AccountingReportsBalanceComprobacionRequest, 'type'>;
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=Request.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../../src/accounting/Reports/BalanceComprobacionPreview/Request.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- export type AccountingReportsBalanceComprobacionPreviewResponse = {
2
- url: string;
3
- };
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=Response.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/accounting/Reports/BalanceComprobacionPreview/Response.ts"],"names":[],"mappings":""}
@@ -1,4 +0,0 @@
1
- export type AccountingReportsBalanceComprobacionRequest = {
2
- type: 'pdf' | 'xlsx'
3
- date: Date
4
- }
@@ -1,3 +0,0 @@
1
- export type AccountingReportsBalanceComprobacionResponse = {
2
- url: string
3
- }
@@ -1,4 +0,0 @@
1
- export type AccountingReportsBalanceComprobacionRequest = {
2
- type: 'pdf' | 'xlsx'
3
- date: Date
4
- }
@@ -1,3 +0,0 @@
1
- export type AccountingReportsBalanceComprobacionResponse = {
2
- url: string
3
- }
@@ -1,6 +0,0 @@
1
- import { AccountingReportsBalanceComprobacionRequest } from '../BalanceComprobacion/Request'
2
-
3
- export type AccountingReportsBalanceComprobacionPreviewRequest = Omit<
4
- AccountingReportsBalanceComprobacionRequest,
5
- 'type'
6
- >
@@ -1,3 +0,0 @@
1
- export type AccountingReportsBalanceComprobacionPreviewResponse = {
2
- url: string
3
- }