@openbox/shared-types 0.3.16 → 0.3.18
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/invoices/Calculation/CalculateSingle/Request.d.ts +1 -0
- package/lib/invoices/Calculation/CalculateSingle/Response.d.ts +1 -0
- package/lib/invoices/Invoices/CreateSingle/Request.d.ts +0 -1
- package/lib/invoices/Invoices/UpdateSingle/Request.d.ts +3 -1
- package/package.json +1 -1
- package/src/invoices/Calculation/CalculateSingle/Request.ts +1 -0
- package/src/invoices/Calculation/CalculateSingle/Response.ts +1 -0
- package/src/invoices/Invoices/CreateSingle/Request.ts +0 -1
- package/src/invoices/Invoices/UpdateSingle/Request.ts +3 -1
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { InvoicesCreateSingleDetail, InvoicesCreateSingleHeader, InvoicesCreateSingleTotals } from '../CreateSingle/Request';
|
|
2
2
|
export type InvoicesUpdateSingleHeader = Omit<InvoicesCreateSingleHeader, 'document' | 'authorization' | 'sequence'>;
|
|
3
3
|
export type InvoicesUpdateSingleTotals = InvoicesCreateSingleTotals;
|
|
4
|
-
export type InvoicesUpdateSingleDetail = InvoicesCreateSingleDetail
|
|
4
|
+
export type InvoicesUpdateSingleDetail = InvoicesCreateSingleDetail & {
|
|
5
|
+
id: string;
|
|
6
|
+
};
|
|
5
7
|
export type InvoicesUpdateSingleRequest = {
|
|
6
8
|
header: InvoicesUpdateSingleHeader;
|
|
7
9
|
totals: InvoicesUpdateSingleTotals;
|
package/package.json
CHANGED
|
@@ -11,7 +11,9 @@ export type InvoicesUpdateSingleHeader = Omit<
|
|
|
11
11
|
|
|
12
12
|
export type InvoicesUpdateSingleTotals = InvoicesCreateSingleTotals
|
|
13
13
|
|
|
14
|
-
export type InvoicesUpdateSingleDetail = InvoicesCreateSingleDetail
|
|
14
|
+
export type InvoicesUpdateSingleDetail = InvoicesCreateSingleDetail & {
|
|
15
|
+
id: string
|
|
16
|
+
}
|
|
15
17
|
|
|
16
18
|
export type InvoicesUpdateSingleRequest = {
|
|
17
19
|
header: InvoicesUpdateSingleHeader
|