@openbox/shared-types 0.3.60 → 0.3.62

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 (25) hide show
  1. package/lib/accounting/Catalogs/DeleteSingle/Response.d.ts +2 -0
  2. package/lib/accounting/Catalogs/DeleteSingle/Response.js +3 -0
  3. package/lib/accounting/Catalogs/DeleteSingle/Response.js.map +1 -0
  4. package/lib/accounting/Catalogs/SwitchSingleAccountType/Request.d.ts +3 -0
  5. package/lib/accounting/Catalogs/SwitchSingleAccountType/Request.js +3 -0
  6. package/lib/accounting/Catalogs/SwitchSingleAccountType/Request.js.map +1 -0
  7. package/lib/accounting/Catalogs/SwitchSingleAccountType/Response.d.ts +2 -0
  8. package/lib/accounting/Catalogs/SwitchSingleAccountType/Response.js +3 -0
  9. package/lib/accounting/Catalogs/SwitchSingleAccountType/Response.js.map +1 -0
  10. package/lib/accounting/Catalogs/SwitchSingleBalanceType/Request.d.ts +3 -0
  11. package/lib/accounting/Catalogs/SwitchSingleBalanceType/Request.js +3 -0
  12. package/lib/accounting/Catalogs/SwitchSingleBalanceType/Request.js.map +1 -0
  13. package/lib/accounting/Catalogs/SwitchSingleBalanceType/Response.d.ts +2 -0
  14. package/lib/accounting/Catalogs/SwitchSingleBalanceType/Response.js +3 -0
  15. package/lib/accounting/Catalogs/SwitchSingleBalanceType/Response.js.map +1 -0
  16. package/lib/accounting/Catalogs/index.d.ts +5 -0
  17. package/lib/accounting/Catalogs/index.js +5 -0
  18. package/lib/accounting/Catalogs/index.js.map +1 -1
  19. package/package.json +1 -1
  20. package/src/accounting/Catalogs/DeleteSingle/Response.ts +3 -0
  21. package/src/accounting/Catalogs/SwitchSingleAccountType/Request.ts +3 -0
  22. package/src/accounting/Catalogs/SwitchSingleAccountType/Response.ts +3 -0
  23. package/src/accounting/Catalogs/SwitchSingleBalanceType/Request.ts +3 -0
  24. package/src/accounting/Catalogs/SwitchSingleBalanceType/Response.ts +3 -0
  25. package/src/accounting/Catalogs/index.ts +5 -0
@@ -0,0 +1,2 @@
1
+ import { SingleResponse } from '../../../interfaces';
2
+ export type AccountingCatalogsDeleteSingleResponse = SingleResponse;
@@ -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/accounting/Catalogs/DeleteSingle/Response.ts"],"names":[],"mappings":""}
@@ -0,0 +1,3 @@
1
+ export type AccountingCatalogSwitchSingleAccountTypeRequest = {
2
+ isAcreedora: boolean;
3
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=Request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../../src/accounting/Catalogs/SwitchSingleAccountType/Request.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ import { SingleResponse } from '../../../interfaces';
2
+ export type AccountingCatalogSwitchSingleAccountTypeResponse = SingleResponse;
@@ -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/accounting/Catalogs/SwitchSingleAccountType/Response.ts"],"names":[],"mappings":""}
@@ -0,0 +1,3 @@
1
+ export type AccountingCatalogSwitchSingleBalanceTypeRequest = {
2
+ isBalance: boolean;
3
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=Request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../../src/accounting/Catalogs/SwitchSingleBalanceType/Request.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ import { SingleResponse } from '../../../interfaces';
2
+ export type AccountingCatalogSwitchSingleBalanceTypeResponse = SingleResponse;
@@ -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/accounting/Catalogs/SwitchSingleBalanceType/Response.ts"],"names":[],"mappings":""}
@@ -2,9 +2,14 @@ export * from './CreateMany/Request';
2
2
  export * from './CreateMany/Response';
3
3
  export * from './CreateSingle/Request';
4
4
  export * from './CreateSingle/Response';
5
+ export * from './DeleteSingle/Response';
5
6
  export * from './GetMany/Request';
6
7
  export * from './GetMany/Response';
7
8
  export * from './GetSingle/Response';
9
+ export * from './SwitchSingleAccountType/Request';
10
+ export * from './SwitchSingleAccountType/Response';
11
+ export * from './SwitchSingleBalanceType/Request';
12
+ export * from './SwitchSingleBalanceType/Response';
8
13
  export * from './UpdateSingle/Request';
9
14
  export * from './UpdateSingle/Response';
10
15
  export * from './accounting.catalogs.types';
@@ -18,9 +18,14 @@ __exportStar(require("./CreateMany/Request"), exports);
18
18
  __exportStar(require("./CreateMany/Response"), exports);
19
19
  __exportStar(require("./CreateSingle/Request"), exports);
20
20
  __exportStar(require("./CreateSingle/Response"), exports);
21
+ __exportStar(require("./DeleteSingle/Response"), exports);
21
22
  __exportStar(require("./GetMany/Request"), exports);
22
23
  __exportStar(require("./GetMany/Response"), exports);
23
24
  __exportStar(require("./GetSingle/Response"), exports);
25
+ __exportStar(require("./SwitchSingleAccountType/Request"), exports);
26
+ __exportStar(require("./SwitchSingleAccountType/Response"), exports);
27
+ __exportStar(require("./SwitchSingleBalanceType/Request"), exports);
28
+ __exportStar(require("./SwitchSingleBalanceType/Response"), exports);
24
29
  __exportStar(require("./UpdateSingle/Request"), exports);
25
30
  __exportStar(require("./UpdateSingle/Response"), exports);
26
31
  __exportStar(require("./accounting.catalogs.types"), exports);
@@ -1 +1 @@
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,yDAAsC;AACtC,0DAAuC;AACvC,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,0DAAuC;AACvC,oDAAiC;AACjC,qDAAkC;AAClC,uDAAoC;AACpC,oEAAiD;AACjD,qEAAkD;AAClD,oEAAiD;AACjD,qEAAkD;AAClD,yDAAsC;AACtC,0DAAuC;AACvC,8DAA2C"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.3.60",
3
+ "version": "0.3.62",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -0,0 +1,3 @@
1
+ import { SingleResponse } from '../../../interfaces'
2
+
3
+ export type AccountingCatalogsDeleteSingleResponse = SingleResponse
@@ -0,0 +1,3 @@
1
+ export type AccountingCatalogSwitchSingleAccountTypeRequest = {
2
+ isAcreedora: boolean
3
+ }
@@ -0,0 +1,3 @@
1
+ import { SingleResponse } from '../../../interfaces'
2
+
3
+ export type AccountingCatalogSwitchSingleAccountTypeResponse = SingleResponse
@@ -0,0 +1,3 @@
1
+ export type AccountingCatalogSwitchSingleBalanceTypeRequest = {
2
+ isBalance: boolean
3
+ }
@@ -0,0 +1,3 @@
1
+ import { SingleResponse } from '../../../interfaces'
2
+
3
+ export type AccountingCatalogSwitchSingleBalanceTypeResponse = SingleResponse
@@ -2,9 +2,14 @@ export * from './CreateMany/Request'
2
2
  export * from './CreateMany/Response'
3
3
  export * from './CreateSingle/Request'
4
4
  export * from './CreateSingle/Response'
5
+ export * from './DeleteSingle/Response'
5
6
  export * from './GetMany/Request'
6
7
  export * from './GetMany/Response'
7
8
  export * from './GetSingle/Response'
9
+ export * from './SwitchSingleAccountType/Request'
10
+ export * from './SwitchSingleAccountType/Response'
11
+ export * from './SwitchSingleBalanceType/Request'
12
+ export * from './SwitchSingleBalanceType/Response'
8
13
  export * from './UpdateSingle/Request'
9
14
  export * from './UpdateSingle/Response'
10
15
  export * from './accounting.catalogs.types'