@openbox/shared-types 0.4.11 → 0.4.13
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/EntriesDetails/GetMany/Request.d.ts +5 -0
- package/lib/accounting/EntriesDetails/GetMany/Request.js +3 -0
- package/lib/accounting/EntriesDetails/GetMany/Request.js.map +1 -0
- package/lib/accounting/EntriesDetails/GetMany/Response.d.ts +7 -0
- package/lib/accounting/EntriesDetails/GetMany/Response.js +3 -0
- package/lib/accounting/EntriesDetails/GetMany/Response.js.map +1 -0
- package/lib/accounting/EntriesDetails/GetSingle/Response.d.ts +2 -0
- package/lib/accounting/EntriesDetails/GetSingle/Response.js +3 -0
- package/lib/accounting/EntriesDetails/GetSingle/Response.js.map +1 -0
- package/lib/accounting/EntriesDetails/index.d.ts +3 -0
- package/lib/accounting/EntriesDetails/index.js +3 -0
- package/lib/accounting/EntriesDetails/index.js.map +1 -1
- package/lib/invoices/Invoices/CreateSingle/Request.d.ts +1 -1
- package/lib/invoices/Invoices/invoices.types.d.ts +1 -1
- package/lib/invoices/Reports/SalesDetails/Request.d.ts +1 -0
- package/package.json +1 -1
- package/src/accounting/EntriesDetails/GetMany/Request.ts +6 -0
- package/src/accounting/EntriesDetails/GetMany/Response.ts +6 -0
- package/src/accounting/EntriesDetails/GetSingle/Response.ts +3 -0
- package/src/accounting/EntriesDetails/index.ts +3 -0
- package/src/invoices/Invoices/CreateSingle/Request.ts +1 -1
- package/src/invoices/Invoices/invoices.types.ts +1 -1
- package/src/invoices/Reports/SalesDetails/Request.ts +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../../src/accounting/EntriesDetails/GetMany/Request.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { GetManyResponse } from '../../../interfaces';
|
|
2
|
+
import { AccountingEntriesDetailsGetSingleResponse } from '../GetSingle/Response';
|
|
3
|
+
export type AccountingEntriesDetailsGetManyResponse = GetManyResponse & {
|
|
4
|
+
data: Array<AccountingEntriesDetailsGetSingleResponse & {
|
|
5
|
+
index: number;
|
|
6
|
+
}>;
|
|
7
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/accounting/EntriesDetails/GetMany/Response.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/accounting/EntriesDetails/GetSingle/Response.ts"],"names":[],"mappings":""}
|
|
@@ -15,6 +15,9 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./CreateSingle/Request"), exports);
|
|
18
|
+
__exportStar(require("./GetMany/Request"), exports);
|
|
19
|
+
__exportStar(require("./GetMany/Response"), exports);
|
|
20
|
+
__exportStar(require("./GetSingle/Response"), exports);
|
|
18
21
|
__exportStar(require("./UpdateSingle/Request"), exports);
|
|
19
22
|
__exportStar(require("./accounting.entries-details.types"), exports);
|
|
20
23
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/accounting/EntriesDetails/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAsC;AACtC,yDAAsC;AACtC,qEAAkD"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/accounting/EntriesDetails/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAsC;AACtC,oDAAiC;AACjC,qDAAkC;AAClC,uDAAoC;AACpC,yDAAsC;AACtC,qEAAkD"}
|
|
@@ -43,7 +43,7 @@ export type Invoices = {
|
|
|
43
43
|
NCDTotal: boolean;
|
|
44
44
|
customerBranch: Omit<CustomersBranches, 'customer'>;
|
|
45
45
|
customer: Customers;
|
|
46
|
-
|
|
46
|
+
paymentCondition: Pick<InvoicesPaymentConditions, 'id' | 'name'>;
|
|
47
47
|
invoicesSeller: Pick<InvoicesSellers, 'id' | 'name'>;
|
|
48
48
|
invoicesZone: Pick<InvoicesZones, 'id' | 'name'>;
|
|
49
49
|
status: Pick<InvoicesStatuses, 'id' | 'name'>;
|
package/package.json
CHANGED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { GetManyResponse } from '../../../interfaces'
|
|
2
|
+
import { AccountingEntriesDetailsGetSingleResponse } from '../GetSingle/Response'
|
|
3
|
+
|
|
4
|
+
export type AccountingEntriesDetailsGetManyResponse = GetManyResponse & {
|
|
5
|
+
data: Array<AccountingEntriesDetailsGetSingleResponse & { index: number }>
|
|
6
|
+
}
|
|
@@ -44,7 +44,7 @@ export type Invoices = {
|
|
|
44
44
|
NCDTotal: boolean
|
|
45
45
|
customerBranch: Omit<CustomersBranches, 'customer'>
|
|
46
46
|
customer: Customers
|
|
47
|
-
|
|
47
|
+
paymentCondition: Pick<InvoicesPaymentConditions, 'id' | 'name'>
|
|
48
48
|
invoicesSeller: Pick<InvoicesSellers, 'id' | 'name'>
|
|
49
49
|
invoicesZone: Pick<InvoicesZones, 'id' | 'name'>
|
|
50
50
|
status: Pick<InvoicesStatuses, 'id' | 'name'>
|