@openbox/shared-types 0.2.69 → 0.2.70
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/Invoices/GetMany/Response.d.ts +1 -0
- package/lib/invoices/Invoices/MarkSingleAsPaid/Response.d.ts +2 -0
- package/lib/invoices/Invoices/MarkSingleAsPaid/Response.js +3 -0
- package/lib/invoices/Invoices/MarkSingleAsPaid/Response.js.map +1 -0
- package/lib/invoices/Invoices/index.d.ts +1 -0
- package/lib/invoices/Invoices/index.js +1 -0
- package/lib/invoices/Invoices/index.js.map +1 -1
- package/package.json +1 -1
- package/src/invoices/Invoices/GetMany/Response.ts +1 -1
- package/src/invoices/Invoices/MarkSingleAsPaid/Response.ts +3 -0
- package/src/invoices/Invoices/index.ts +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/invoices/Invoices/MarkSingleAsPaid/Response.ts"],"names":[],"mappings":""}
|
|
@@ -10,6 +10,7 @@ export * from './GetDocumentTypes/Response';
|
|
|
10
10
|
export * from './GetMany/Request';
|
|
11
11
|
export * from './GetMany/Response';
|
|
12
12
|
export * from './GetSingle/Response';
|
|
13
|
+
export * from './MarkSingleAsPaid/Response';
|
|
13
14
|
export * from './UpdateMany/Request';
|
|
14
15
|
export * from './UpdateMany/Response';
|
|
15
16
|
export * from './UpdateSingle/Request';
|
|
@@ -26,6 +26,7 @@ __exportStar(require("./GetDocumentTypes/Response"), exports);
|
|
|
26
26
|
__exportStar(require("./GetMany/Request"), exports);
|
|
27
27
|
__exportStar(require("./GetMany/Response"), exports);
|
|
28
28
|
__exportStar(require("./GetSingle/Response"), exports);
|
|
29
|
+
__exportStar(require("./MarkSingleAsPaid/Response"), exports);
|
|
29
30
|
__exportStar(require("./UpdateMany/Request"), exports);
|
|
30
31
|
__exportStar(require("./UpdateMany/Response"), exports);
|
|
31
32
|
__exportStar(require("./UpdateSingle/Request"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/invoices/Invoices/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uDAAoC;AACpC,wDAAqC;AACrC,2DAAwC;AACxC,4DAAyC;AACzC,yDAAsC;AACtC,0DAAuC;AACvC,wDAAqC;AACrC,0DAAuC;AACvC,8DAA2C;AAC3C,oDAAiC;AACjC,qDAAkC;AAClC,uDAAoC;AACpC,uDAAoC;AACpC,wDAAqC;AACrC,yDAAsC;AACtC,0DAAuC;AACvC,mDAAgC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/invoices/Invoices/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uDAAoC;AACpC,wDAAqC;AACrC,2DAAwC;AACxC,4DAAyC;AACzC,yDAAsC;AACtC,0DAAuC;AACvC,wDAAqC;AACrC,0DAAuC;AACvC,8DAA2C;AAC3C,oDAAiC;AACjC,qDAAkC;AAClC,uDAAoC;AACpC,8DAA2C;AAC3C,uDAAoC;AACpC,wDAAqC;AACrC,yDAAsC;AACtC,0DAAuC;AACvC,mDAAgC"}
|
package/package.json
CHANGED
|
@@ -2,5 +2,5 @@ import { GetManyResponse } from '../../../interfaces'
|
|
|
2
2
|
import { Invoices } from '../invoices.types'
|
|
3
3
|
|
|
4
4
|
export type InvoicesGetManyResponse = GetManyResponse & {
|
|
5
|
-
data: Array<Invoices & { index: number }>
|
|
5
|
+
data: Array<Invoices & { index: number; isLastInvoice: boolean }>
|
|
6
6
|
}
|
|
@@ -10,6 +10,7 @@ export * from './GetDocumentTypes/Response'
|
|
|
10
10
|
export * from './GetMany/Request'
|
|
11
11
|
export * from './GetMany/Response'
|
|
12
12
|
export * from './GetSingle/Response'
|
|
13
|
+
export * from './MarkSingleAsPaid/Response'
|
|
13
14
|
export * from './UpdateMany/Request'
|
|
14
15
|
export * from './UpdateMany/Response'
|
|
15
16
|
export * from './UpdateSingle/Request'
|