@openbox/shared-types 0.3.29 → 0.3.30

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 { AccountingEntriesTypes } from '../accounting.entries-types.types';
2
+ export type AccountingEntriesTypesGetManyResponse = {
3
+ data: Array<AccountingEntriesTypes>;
4
+ };
@@ -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/EntriesTypes/GetMany/Response.ts"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ export type AccountingEntriesTypes = {
2
+ id: number;
3
+ name: string;
4
+ code: string;
5
+ private: boolean;
6
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=accounting.entries-types.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"accounting.entries-types.types.js","sourceRoot":"","sources":["../../../src/accounting/EntriesTypes/accounting.entries-types.types.ts"],"names":[],"mappings":""}
@@ -1,6 +1,2 @@
1
- export type AccountingEntriesTypes = {
2
- id: number;
3
- name: string;
4
- code: string;
5
- private: boolean;
6
- };
1
+ export * from './GetMany/Response';
2
+ export * from './accounting.entries-types.types';
@@ -1,3 +1,19 @@
1
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
+ };
2
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./GetMany/Response"), exports);
18
+ __exportStar(require("./accounting.entries-types.types"), exports);
3
19
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/accounting/EntriesTypes/index.ts"],"names":[],"mappings":""}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/accounting/EntriesTypes/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAkC;AAClC,mEAAgD"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.3.29",
3
+ "version": "0.3.30",
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 { AccountingEntriesTypes } from '../accounting.entries-types.types'
2
+
3
+ export type AccountingEntriesTypesGetManyResponse = {
4
+ data: Array<AccountingEntriesTypes>
5
+ }
@@ -0,0 +1,6 @@
1
+ export type AccountingEntriesTypes = {
2
+ id: number
3
+ name: string
4
+ code: string
5
+ private: boolean
6
+ }
@@ -1,6 +1,2 @@
1
- export type AccountingEntriesTypes = {
2
- id: number
3
- name: string
4
- code: string
5
- private: boolean
6
- }
1
+ export * from './GetMany/Response'
2
+ export * from './accounting.entries-types.types'