@openbox/shared-types 0.3.47 → 0.3.49
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/accounting/Catalogs/GetMany/Response.d.ts +1 -1
- package/lib/accounting/Catalogs/GetMany/Response.js +3 -3
- package/lib/accounting/Catalogs/GetMany/Response.js.map +1 -1
- package/lib/accounting/Entries/CreateSingle/Request.d.ts +9 -0
- package/lib/accounting/Entries/CreateSingle/Request.js +3 -0
- package/lib/accounting/Entries/CreateSingle/Request.js.map +1 -0
- package/lib/accounting/Entries/CreateSingle/Response.d.ts +2 -0
- package/lib/accounting/Entries/CreateSingle/Response.js +3 -0
- package/lib/accounting/Entries/CreateSingle/Response.js.map +1 -0
- package/lib/accounting/Entries/index.d.ts +2 -0
- package/lib/accounting/Entries/index.js +2 -0
- package/lib/accounting/Entries/index.js.map +1 -1
- package/lib/accounting/EntriesDetails/CreateSingle/Request.d.ts +4 -0
- package/lib/accounting/EntriesDetails/CreateSingle/Request.js +3 -0
- package/lib/accounting/EntriesDetails/CreateSingle/Request.js.map +1 -0
- package/lib/accounting/EntriesDetails/index.d.ts +1 -0
- package/lib/accounting/EntriesDetails/index.js +1 -0
- package/lib/accounting/EntriesDetails/index.js.map +1 -1
- package/package.json +1 -1
- package/src/accounting/Catalogs/GetMany/Response.ts +1 -1
- package/src/accounting/Entries/CreateSingle/Request.ts +13 -0
- package/src/accounting/Entries/CreateSingle/Response.ts +3 -0
- package/src/accounting/Entries/index.ts +2 -0
- package/src/accounting/EntriesDetails/CreateSingle/Request.ts +8 -0
- package/src/accounting/EntriesDetails/index.ts +1 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
class
|
|
3
|
+
exports.AccountingCatalogsGetManyResponse = void 0;
|
|
4
|
+
class AccountingCatalogsGetManyResponse {
|
|
5
5
|
}
|
|
6
|
-
exports.
|
|
6
|
+
exports.AccountingCatalogsGetManyResponse = AccountingCatalogsGetManyResponse;
|
|
7
7
|
//# sourceMappingURL=Response.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/accounting/Catalogs/GetMany/Response.ts"],"names":[],"mappings":";;;AAEA,MAAa,
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/accounting/Catalogs/GetMany/Response.ts"],"names":[],"mappings":";;;AAEA,MAAa,iCAAiC;CAE7C;AAFD,8EAEC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AccountingEntriesDetails } from '../../EntriesDetails';
|
|
2
|
+
import { AccountingEntries } from '../accounting.entries.types';
|
|
3
|
+
export type AccountingEntriesCreateSingleRequest = Omit<AccountingEntries, 'id' | 'origin' | 'type' | 'status' | 'details'> & {
|
|
4
|
+
type: number;
|
|
5
|
+
status: number;
|
|
6
|
+
details: (Omit<AccountingEntriesDetails, 'id' | 'accountingCatalog'> & {
|
|
7
|
+
accountingCatalog: string;
|
|
8
|
+
})[];
|
|
9
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../../src/accounting/Entries/CreateSingle/Request.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/accounting/Entries/CreateSingle/Response.ts"],"names":[],"mappings":""}
|
|
@@ -14,6 +14,8 @@ 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("./CreateSingle/Request"), exports);
|
|
18
|
+
__exportStar(require("./CreateSingle/Response"), exports);
|
|
17
19
|
__exportStar(require("./DeleteSingle/Response"), exports);
|
|
18
20
|
__exportStar(require("./GetMany/Request"), exports);
|
|
19
21
|
__exportStar(require("./GetMany/Response"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/accounting/Entries/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0DAAuC;AACvC,oDAAiC;AACjC,qDAAkC;AAClC,6DAA0C;AAC1C,uDAAoC;AACpC,6DAA0C"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/accounting/Entries/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAsC;AACtC,0DAAuC;AACvC,0DAAuC;AACvC,oDAAiC;AACjC,qDAAkC;AAClC,6DAA0C;AAC1C,uDAAoC;AACpC,6DAA0C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../../src/accounting/EntriesDetails/CreateSingle/Request.ts"],"names":[],"mappings":""}
|
|
@@ -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("./CreateSingle/Request"), exports);
|
|
17
18
|
__exportStar(require("./accounting.entries-details.types"), exports);
|
|
18
19
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/accounting/EntriesDetails/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qEAAkD"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/accounting/EntriesDetails/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAsC;AACtC,qEAAkD"}
|
package/package.json
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AccountingEntriesDetails } from '../../EntriesDetails'
|
|
2
|
+
import { AccountingEntries } from '../accounting.entries.types'
|
|
3
|
+
|
|
4
|
+
export type AccountingEntriesCreateSingleRequest = Omit<
|
|
5
|
+
AccountingEntries,
|
|
6
|
+
'id' | 'origin' | 'type' | 'status' | 'details'
|
|
7
|
+
> & {
|
|
8
|
+
type: number
|
|
9
|
+
status: number
|
|
10
|
+
details: (Omit<AccountingEntriesDetails, 'id' | 'accountingCatalog'> & {
|
|
11
|
+
accountingCatalog: string
|
|
12
|
+
})[]
|
|
13
|
+
}
|