@openbox/shared-types 0.3.44 → 0.3.46

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.
@@ -0,0 +1,4 @@
1
+ import { AccountingCatalogsGetSingleResponse } from '../GetSingle/Response';
2
+ export declare class AccountingCatalogGetManyResponse {
3
+ data: Array<AccountingCatalogsGetSingleResponse>;
4
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AccountingCatalogGetManyResponse = void 0;
4
+ class AccountingCatalogGetManyResponse {
5
+ }
6
+ exports.AccountingCatalogGetManyResponse = AccountingCatalogGetManyResponse;
7
+ //# sourceMappingURL=Response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/accounting/Catalogs/GetMany/Response.ts"],"names":[],"mappings":";;;AAEA,MAAa,gCAAgC;CAE5C;AAFD,4EAEC"}
@@ -0,0 +1,2 @@
1
+ import { AccountingCatalogs } from '../accounting.catalogs.types';
2
+ export type AccountingCatalogsGetSingleResponse = AccountingCatalogs;
@@ -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/GetSingle/Response.ts"],"names":[],"mappings":""}
@@ -1 +1,2 @@
1
+ export * from './GetMany/Response';
1
2
  export * from './accounting.catalogs.types';
@@ -14,5 +14,6 @@ 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("./GetMany/Response"), exports);
17
18
  __exportStar(require("./accounting.catalogs.types"), exports);
18
19
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/accounting/Catalogs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA2C"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/accounting/Catalogs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAkC;AAClC,8DAA2C"}
@@ -1,3 +1,3 @@
1
1
  export type AccountingEntriesGetNextSequenceResponse = {
2
- data: string;
2
+ data: number;
3
3
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.3.44",
3
+ "version": "0.3.46",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -0,0 +1,5 @@
1
+ import { AccountingCatalogsGetSingleResponse } from '../GetSingle/Response'
2
+
3
+ export class AccountingCatalogGetManyResponse {
4
+ data: Array<AccountingCatalogsGetSingleResponse>
5
+ }
@@ -0,0 +1,3 @@
1
+ import { AccountingCatalogs } from '../accounting.catalogs.types'
2
+
3
+ export type AccountingCatalogsGetSingleResponse = AccountingCatalogs
@@ -1 +1,2 @@
1
+ export * from './GetMany/Response'
1
2
  export * from './accounting.catalogs.types'
@@ -1,3 +1,3 @@
1
1
  export type AccountingEntriesGetNextSequenceResponse = {
2
- data: string
2
+ data: number
3
3
  }