@openbox/shared-types 0.3.69 → 0.3.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.
@@ -0,0 +1,10 @@
1
+ export type InvoicesReportsSalesDetailsRequest = {
2
+ startDate: string;
3
+ endDate: string;
4
+ customer?: string;
5
+ service?: string;
6
+ documentType?: string;
7
+ status?: string;
8
+ seller?: string;
9
+ zone?: string;
10
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=Request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../../src/invoices/Reports/SalesDetails/Request.ts"],"names":[],"mappings":""}
@@ -0,0 +1,3 @@
1
+ export type InvoicesReportsSalesDetailsResponse = {
2
+ url: string;
3
+ };
@@ -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/invoices/Reports/SalesDetails/Response.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ import { InvoicesReportsSalesDetailsRequest } from '../SalesDetails/Request';
2
+ export type InvoicesReportsSalesDetailsPreviewRequest = InvoicesReportsSalesDetailsRequest;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=Request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../../src/invoices/Reports/SalesDetailsPreview/Request.ts"],"names":[],"mappings":""}
@@ -0,0 +1,3 @@
1
+ export type InvoicesReportsSalesDetailsPreviewResponse = {
2
+ url: string;
3
+ };
@@ -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/invoices/Reports/SalesDetailsPreview/Response.ts"],"names":[],"mappings":""}
@@ -1,16 +1,4 @@
1
- export type InvoicesReportsSalesDetailsRequest = {
2
- startDate: string;
3
- endDate: string;
4
- customer?: string;
5
- service?: string;
6
- documentType?: string;
7
- status?: string;
8
- seller?: string;
9
- zone?: string;
10
- };
11
- export type InvoicesReportsSalesListRequest = {
12
- startDate: string;
13
- endDate: string;
14
- customer?: string;
15
- documentType?: string;
16
- };
1
+ export * from './SalesDetails/Request';
2
+ export * from './SalesDetails/Response';
3
+ export * from './SalesDetailsPreview/Request';
4
+ export * from './SalesDetailsPreview/Response';
@@ -1,3 +1,21 @@
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("./SalesDetails/Request"), exports);
18
+ __exportStar(require("./SalesDetails/Response"), exports);
19
+ __exportStar(require("./SalesDetailsPreview/Request"), exports);
20
+ __exportStar(require("./SalesDetailsPreview/Response"), exports);
3
21
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/invoices/Reports/index.ts"],"names":[],"mappings":""}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/invoices/Reports/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAsC;AACtC,0DAAuC;AACvC,gEAA6C;AAC7C,iEAA8C"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.3.69",
3
+ "version": "0.3.70",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -0,0 +1,10 @@
1
+ export type InvoicesReportsSalesDetailsRequest = {
2
+ startDate: string
3
+ endDate: string
4
+ customer?: string
5
+ service?: string
6
+ documentType?: string
7
+ status?: string
8
+ seller?: string
9
+ zone?: string
10
+ }
@@ -0,0 +1,3 @@
1
+ export type InvoicesReportsSalesDetailsResponse = {
2
+ url: string
3
+ }
@@ -0,0 +1,3 @@
1
+ import { InvoicesReportsSalesDetailsRequest } from '../SalesDetails/Request'
2
+
3
+ export type InvoicesReportsSalesDetailsPreviewRequest = InvoicesReportsSalesDetailsRequest
@@ -0,0 +1,3 @@
1
+ export type InvoicesReportsSalesDetailsPreviewResponse = {
2
+ url: string
3
+ }
@@ -1,17 +1,4 @@
1
- export type InvoicesReportsSalesDetailsRequest = {
2
- startDate: string
3
- endDate: string
4
- customer?: string
5
- service?: string
6
- documentType?: string
7
- status?: string
8
- seller?: string
9
- zone?: string
10
- }
11
-
12
- export type InvoicesReportsSalesListRequest = {
13
- startDate: string
14
- endDate: string
15
- customer?: string
16
- documentType?: string
17
- }
1
+ export * from './SalesDetails/Request'
2
+ export * from './SalesDetails/Response'
3
+ export * from './SalesDetailsPreview/Request'
4
+ export * from './SalesDetailsPreview/Response'