@openbox/shared-types 0.4.10 → 0.4.12

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.
Files changed (56) hide show
  1. package/lib/accounting/EntriesDetails/GetMany/Request.d.ts +5 -0
  2. package/lib/{system/FOREIGNER/Fields/system.foreigner.fields.types.js → accounting/EntriesDetails/GetMany/Request.js} +1 -1
  3. package/lib/accounting/EntriesDetails/GetMany/Request.js.map +1 -0
  4. package/lib/accounting/EntriesDetails/GetMany/Response.d.ts +7 -0
  5. package/lib/accounting/EntriesDetails/GetMany/Response.js +3 -0
  6. package/lib/accounting/EntriesDetails/GetMany/Response.js.map +1 -0
  7. package/lib/accounting/EntriesDetails/GetSingle/Response.d.ts +2 -0
  8. package/lib/accounting/EntriesDetails/GetSingle/Response.js +3 -0
  9. package/lib/accounting/EntriesDetails/GetSingle/Response.js.map +1 -0
  10. package/lib/accounting/EntriesDetails/index.d.ts +3 -0
  11. package/lib/accounting/EntriesDetails/index.js +3 -0
  12. package/lib/accounting/EntriesDetails/index.js.map +1 -1
  13. package/lib/accounting/Reports/BalanceComprobacion/Request.d.ts +4 -0
  14. package/lib/accounting/Reports/BalanceComprobacion/Request.js +3 -0
  15. package/lib/accounting/Reports/BalanceComprobacion/Request.js.map +1 -0
  16. package/lib/accounting/Reports/BalanceComprobacion/Response.d.ts +3 -0
  17. package/lib/accounting/Reports/BalanceComprobacion/Response.js +3 -0
  18. package/lib/accounting/Reports/BalanceComprobacion/Response.js.map +1 -0
  19. package/lib/accounting/Reports/BalanceComprobacionPreview/Request.d.ts +2 -0
  20. package/lib/accounting/Reports/BalanceComprobacionPreview/Request.js +3 -0
  21. package/lib/accounting/Reports/BalanceComprobacionPreview/Request.js.map +1 -0
  22. package/lib/accounting/Reports/BalanceComprobacionPreview/Response.d.ts +3 -0
  23. package/lib/accounting/Reports/BalanceComprobacionPreview/Response.js +3 -0
  24. package/lib/accounting/Reports/BalanceComprobacionPreview/Response.js.map +1 -0
  25. package/lib/accounting/Reports/index.d.ts +4 -0
  26. package/lib/accounting/Reports/index.js +4 -0
  27. package/lib/accounting/Reports/index.js.map +1 -1
  28. package/lib/customers/Customers/customers.types.d.ts +7 -3
  29. package/lib/system/SV/Fields/system.sv.fields.types.d.ts +0 -3
  30. package/lib/system/index.d.ts +0 -1
  31. package/lib/system/index.js +0 -1
  32. package/lib/system/index.js.map +1 -1
  33. package/package.json +1 -1
  34. package/src/System/SV/Fields/system.sv.fields.types.ts +0 -3
  35. package/src/System/index.ts +0 -1
  36. package/src/accounting/EntriesDetails/GetMany/Request.ts +6 -0
  37. package/src/accounting/EntriesDetails/GetMany/Response.ts +6 -0
  38. package/src/accounting/EntriesDetails/GetSingle/Response.ts +3 -0
  39. package/src/accounting/EntriesDetails/index.ts +3 -0
  40. package/src/accounting/Reports/BalanceComprobacion/Request.ts +4 -0
  41. package/src/accounting/Reports/BalanceComprobacion/Response.ts +3 -0
  42. package/src/accounting/Reports/BalanceComprobacionPreview/Request.ts +6 -0
  43. package/src/accounting/Reports/BalanceComprobacionPreview/Response.ts +3 -0
  44. package/src/accounting/Reports/index.ts +4 -0
  45. package/src/customers/Customers/customers.types.ts +6 -4
  46. package/lib/system/FOREIGNER/Fields/index.d.ts +0 -1
  47. package/lib/system/FOREIGNER/Fields/index.js +0 -18
  48. package/lib/system/FOREIGNER/Fields/index.js.map +0 -1
  49. package/lib/system/FOREIGNER/Fields/system.foreigner.fields.types.d.ts +0 -8
  50. package/lib/system/FOREIGNER/Fields/system.foreigner.fields.types.js.map +0 -1
  51. package/lib/system/FOREIGNER/index.d.ts +0 -1
  52. package/lib/system/FOREIGNER/index.js +0 -18
  53. package/lib/system/FOREIGNER/index.js.map +0 -1
  54. package/src/System/FOREIGNER/Fields/index.ts +0 -1
  55. package/src/System/FOREIGNER/Fields/system.foreigner.fields.types.ts +0 -8
  56. package/src/System/FOREIGNER/index.ts +0 -1
@@ -0,0 +1,5 @@
1
+ import { GetManyRequest } from '../../../interfaces';
2
+ export type AccountingEntriesDetailsGetManyRequest = GetManyRequest & {
3
+ startDate?: Date;
4
+ endDate?: Date;
5
+ };
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=system.foreigner.fields.types.js.map
3
+ //# sourceMappingURL=Request.js.map
@@ -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,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/accounting/EntriesDetails/GetMany/Response.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ import { AccountingEntriesDetails } from '../accounting.entries-details.types';
2
+ export type AccountingEntriesDetailsGetSingleResponse = AccountingEntriesDetails;
@@ -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/accounting/EntriesDetails/GetSingle/Response.ts"],"names":[],"mappings":""}
@@ -1,3 +1,6 @@
1
1
  export * from './CreateSingle/Request';
2
+ export * from './GetMany/Request';
3
+ export * from './GetMany/Response';
4
+ export * from './GetSingle/Response';
2
5
  export * from './UpdateSingle/Request';
3
6
  export * from './accounting.entries-details.types';
@@ -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"}
@@ -0,0 +1,4 @@
1
+ export type AccountingReportsBalanceComprobacionRequest = {
2
+ type: 'pdf' | 'xlsx';
3
+ date: Date;
4
+ };
@@ -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/accounting/Reports/BalanceComprobacion/Request.ts"],"names":[],"mappings":""}
@@ -0,0 +1,3 @@
1
+ export type AccountingReportsBalanceComprobacionResponse = {
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/accounting/Reports/BalanceComprobacion/Response.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ import { AccountingReportsBalanceComprobacionRequest } from '../BalanceComprobacion/Request';
2
+ export type AccountingReportsBalanceComprobacionPreviewRequest = Omit<AccountingReportsBalanceComprobacionRequest, 'type'>;
@@ -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/accounting/Reports/BalanceComprobacionPreview/Request.ts"],"names":[],"mappings":""}
@@ -0,0 +1,3 @@
1
+ export type AccountingReportsBalanceComprobacionPreviewResponse = {
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/accounting/Reports/BalanceComprobacionPreview/Response.ts"],"names":[],"mappings":""}
@@ -2,3 +2,7 @@ export * from './AccountsCatalog/Request';
2
2
  export * from './AccountsCatalog/Response';
3
3
  export * from './AccountsCatalogPreview/Request';
4
4
  export * from './AccountsCatalogPreview/Response';
5
+ export * from './BalanceComprobacion/Request';
6
+ export * from './BalanceComprobacion/Response';
7
+ export * from './BalanceComprobacionPreview/Request';
8
+ export * from './BalanceComprobacionPreview/Response';
@@ -18,4 +18,8 @@ __exportStar(require("./AccountsCatalog/Request"), exports);
18
18
  __exportStar(require("./AccountsCatalog/Response"), exports);
19
19
  __exportStar(require("./AccountsCatalogPreview/Request"), exports);
20
20
  __exportStar(require("./AccountsCatalogPreview/Response"), exports);
21
+ __exportStar(require("./BalanceComprobacion/Request"), exports);
22
+ __exportStar(require("./BalanceComprobacion/Response"), exports);
23
+ __exportStar(require("./BalanceComprobacionPreview/Request"), exports);
24
+ __exportStar(require("./BalanceComprobacionPreview/Response"), exports);
21
25
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/accounting/Reports/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4DAAyC;AACzC,6DAA0C;AAC1C,mEAAgD;AAChD,oEAAiD"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/accounting/Reports/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4DAAyC;AACzC,6DAA0C;AAC1C,mEAAgD;AAChD,oEAAiD;AACjD,gEAA6C;AAC7C,iEAA8C;AAC9C,uEAAoD;AACpD,wEAAqD"}
@@ -1,4 +1,4 @@
1
- import { SystemDirectoryCreateSingleRequest, SystemForeignerFields, SystemForeignerFieldsRequest, SystemSvFields, SystemSvFieldsRequest } from '../../system';
1
+ import { SystemDirectoryCreateSingleRequest, SystemSvFields, SystemSvFieldsRequest } from '../../system';
2
2
  import { SystemDirectoryResponse } from '../../system/Directory/system.directory.types';
3
3
  import { SystemNaturalTypesGetSingleResponse } from '../../system/NaturalTypes/GetSingle/Response';
4
4
  import { SystemPersonTypeGetSingleResponse } from '../../system/PersonTypes/GetSingle/Response';
@@ -14,14 +14,19 @@ export type Customers = {
14
14
  lastname2?: string;
15
15
  lastname3?: string;
16
16
  shortName: string;
17
+ passport?: string;
17
18
  active?: boolean;
19
+ passportIssuedDate?: Date;
20
+ passportExpirationDate?: Date;
18
21
  profession?: string;
22
+ duiIssuedDate?: Date;
23
+ duiExpirationDate?: Date;
24
+ nitIssuedDate?: Date;
19
25
  type: SystemSellingTypeGetSingleResponse;
20
26
  personType: SystemPersonTypeGetSingleResponse;
21
27
  personTypeNatural: SystemNaturalTypesGetSingleResponse;
22
28
  directory: SystemDirectoryResponse[];
23
29
  svFields: SystemSvFields;
24
- foreignerFields: SystemForeignerFields;
25
30
  };
26
31
  export type CustomersRequest = Omit<Customers, 'id' | 'taxerType' | 'personType' | 'type' | 'personTypeNatural' | 'directory' | 'svFields'> & {
27
32
  type: number;
@@ -30,6 +35,5 @@ export type CustomersRequest = Omit<Customers, 'id' | 'taxerType' | 'personType'
30
35
  branch: CustomersBranchesCreateSingleRequest;
31
36
  directory?: Omit<SystemDirectoryCreateSingleRequest, 'entityType' | 'entityId'>[];
32
37
  svFields: SystemSvFieldsRequest;
33
- foreignerFields: SystemForeignerFieldsRequest;
34
38
  };
35
39
  export type CustomersResponse = Customers;
@@ -4,10 +4,7 @@ export type SystemSvFields = {
4
4
  id: string;
5
5
  nrc?: string;
6
6
  nit?: string;
7
- nitIssuedDate?: Date;
8
7
  dui?: string;
9
- duiIssuedDate?: Date;
10
- duiExpirationDate?: Date;
11
8
  taxerType?: SystemTaxerTypes;
12
9
  economicActivity?: SystemSvEconomicActivities;
13
10
  };
@@ -1,7 +1,6 @@
1
1
  export * from './Cities/';
2
2
  export * from './Countries/';
3
3
  export * from './Directory/';
4
- export * from './FOREIGNER/';
5
4
  export * from './Logs/';
6
5
  export * from './NaturalTypes';
7
6
  export * from './PersonTypes/';
@@ -17,7 +17,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./Cities/"), exports);
18
18
  __exportStar(require("./Countries/"), exports);
19
19
  __exportStar(require("./Directory/"), exports);
20
- __exportStar(require("./FOREIGNER/"), exports);
21
20
  __exportStar(require("./Logs/"), exports);
22
21
  __exportStar(require("./NaturalTypes"), exports);
23
22
  __exportStar(require("./PersonTypes/"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/system/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAAyB;AACzB,+CAA4B;AAC5B,+CAA4B;AAC5B,+CAA4B;AAC5B,0CAAuB;AACvB,iDAA8B;AAC9B,iDAA8B;AAC9B,wCAAqB;AACrB,kDAA+B;AAC/B,4CAAyB;AACzB,gDAA6B;AAC7B,iDAA8B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/system/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAAyB;AACzB,+CAA4B;AAC5B,+CAA4B;AAC5B,0CAAuB;AACvB,iDAA8B;AAC9B,iDAA8B;AAC9B,wCAAqB;AACrB,kDAA+B;AAC/B,4CAAyB;AACzB,gDAA6B;AAC7B,iDAA8B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.4.10",
3
+ "version": "0.4.12",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -5,10 +5,7 @@ export type SystemSvFields = {
5
5
  id: string
6
6
  nrc?: string
7
7
  nit?: string
8
- nitIssuedDate?: Date
9
8
  dui?: string
10
- duiIssuedDate?: Date
11
- duiExpirationDate?: Date
12
9
  taxerType?: SystemTaxerTypes
13
10
  economicActivity?: SystemSvEconomicActivities
14
11
  }
@@ -1,7 +1,6 @@
1
1
  export * from './Cities/'
2
2
  export * from './Countries/'
3
3
  export * from './Directory/'
4
- export * from './FOREIGNER/'
5
4
  export * from './Logs/'
6
5
  export * from './NaturalTypes'
7
6
  export * from './PersonTypes/'
@@ -0,0 +1,6 @@
1
+ import { GetManyRequest } from '../../../interfaces'
2
+
3
+ export type AccountingEntriesDetailsGetManyRequest = GetManyRequest & {
4
+ startDate?: Date
5
+ endDate?: Date
6
+ }
@@ -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
+ }
@@ -0,0 +1,3 @@
1
+ import { AccountingEntriesDetails } from '../accounting.entries-details.types'
2
+
3
+ export type AccountingEntriesDetailsGetSingleResponse = AccountingEntriesDetails
@@ -1,3 +1,6 @@
1
1
  export * from './CreateSingle/Request'
2
+ export * from './GetMany/Request'
3
+ export * from './GetMany/Response'
4
+ export * from './GetSingle/Response'
2
5
  export * from './UpdateSingle/Request'
3
6
  export * from './accounting.entries-details.types'
@@ -0,0 +1,4 @@
1
+ export type AccountingReportsBalanceComprobacionRequest = {
2
+ type: 'pdf' | 'xlsx'
3
+ date: Date
4
+ }
@@ -0,0 +1,3 @@
1
+ export type AccountingReportsBalanceComprobacionResponse = {
2
+ url: string
3
+ }
@@ -0,0 +1,6 @@
1
+ import { AccountingReportsBalanceComprobacionRequest } from '../BalanceComprobacion/Request'
2
+
3
+ export type AccountingReportsBalanceComprobacionPreviewRequest = Omit<
4
+ AccountingReportsBalanceComprobacionRequest,
5
+ 'type'
6
+ >
@@ -0,0 +1,3 @@
1
+ export type AccountingReportsBalanceComprobacionPreviewResponse = {
2
+ url: string
3
+ }
@@ -2,3 +2,7 @@ export * from './AccountsCatalog/Request'
2
2
  export * from './AccountsCatalog/Response'
3
3
  export * from './AccountsCatalogPreview/Request'
4
4
  export * from './AccountsCatalogPreview/Response'
5
+ export * from './BalanceComprobacion/Request'
6
+ export * from './BalanceComprobacion/Response'
7
+ export * from './BalanceComprobacionPreview/Request'
8
+ export * from './BalanceComprobacionPreview/Response'
@@ -1,7 +1,5 @@
1
1
  import {
2
2
  SystemDirectoryCreateSingleRequest,
3
- SystemForeignerFields,
4
- SystemForeignerFieldsRequest,
5
3
  SystemSvFields,
6
4
  SystemSvFieldsRequest,
7
5
  } from '../../system'
@@ -21,14 +19,19 @@ export type Customers = {
21
19
  lastname2?: string
22
20
  lastname3?: string
23
21
  shortName: string
22
+ passport?: string
24
23
  active?: boolean
24
+ passportIssuedDate?: Date
25
+ passportExpirationDate?: Date
25
26
  profession?: string
27
+ duiIssuedDate?: Date
28
+ duiExpirationDate?: Date
29
+ nitIssuedDate?: Date
26
30
  type: SystemSellingTypeGetSingleResponse
27
31
  personType: SystemPersonTypeGetSingleResponse
28
32
  personTypeNatural: SystemNaturalTypesGetSingleResponse
29
33
  directory: SystemDirectoryResponse[]
30
34
  svFields: SystemSvFields
31
- foreignerFields: SystemForeignerFields
32
35
  }
33
36
  export type CustomersRequest = Omit<
34
37
  Customers,
@@ -40,6 +43,5 @@ export type CustomersRequest = Omit<
40
43
  branch: CustomersBranchesCreateSingleRequest
41
44
  directory?: Omit<SystemDirectoryCreateSingleRequest, 'entityType' | 'entityId'>[]
42
45
  svFields: SystemSvFieldsRequest
43
- foreignerFields: SystemForeignerFieldsRequest
44
46
  }
45
47
  export type CustomersResponse = Customers
@@ -1 +0,0 @@
1
- export * from './system.foreigner.fields.types';
@@ -1,18 +0,0 @@
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
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./system.foreigner.fields.types"), exports);
18
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/system/FOREIGNER/Fields/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kEAA+C"}
@@ -1,8 +0,0 @@
1
- export type SystemForeignerFields = {
2
- id: string;
3
- passport?: string;
4
- passportIssuedDate?: Date;
5
- passportExpirationDate?: Date;
6
- economicAcivity?: string;
7
- };
8
- export type SystemForeignerFieldsRequest = Omit<SystemForeignerFields, 'id'>;
@@ -1 +0,0 @@
1
- {"version":3,"file":"system.foreigner.fields.types.js","sourceRoot":"","sources":["../../../../src/system/FOREIGNER/Fields/system.foreigner.fields.types.ts"],"names":[],"mappings":""}
@@ -1 +0,0 @@
1
- export * from './Fields';
@@ -1,18 +0,0 @@
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
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./Fields"), exports);
18
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/system/FOREIGNER/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAwB"}
@@ -1 +0,0 @@
1
- export * from './system.foreigner.fields.types'
@@ -1,8 +0,0 @@
1
- export type SystemForeignerFields = {
2
- id: string
3
- passport?: string
4
- passportIssuedDate?: Date
5
- passportExpirationDate?: Date
6
- economicAcivity?: string
7
- }
8
- export type SystemForeignerFieldsRequest = Omit<SystemForeignerFields, 'id'>
@@ -1 +0,0 @@
1
- export * from './Fields'