@intelact/driveup 2.1.7 → 2.1.8

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 (66) hide show
  1. package/lib/index.d.ts +1 -0
  2. package/lib/index.js +1 -0
  3. package/lib/index.js.map +1 -1
  4. package/lib/public/contac-us.dto.d.ts +6 -0
  5. package/lib/{bank/account.model.js → public/contac-us.dto.js} +16 -34
  6. package/lib/public/contac-us.dto.js.map +1 -0
  7. package/lib/public/contact-sales.dto.d.ts +9 -0
  8. package/lib/public/{contact.dto.js → contact-sales.dto.js} +23 -49
  9. package/lib/public/contact-sales.dto.js.map +1 -0
  10. package/lib/public/country-support.dto.d.ts +6 -0
  11. package/lib/public/country-support.dto.js +47 -0
  12. package/lib/public/country-support.dto.js.map +1 -0
  13. package/lib/public/index.d.ts +3 -5
  14. package/lib/public/index.js +3 -5
  15. package/lib/public/index.js.map +1 -1
  16. package/lib/tsconfig.tsbuildinfo +1 -1
  17. package/package.json +1 -1
  18. package/lib/bank/account.model.d.ts +0 -9
  19. package/lib/bank/account.model.js.map +0 -1
  20. package/lib/bank/index.d.ts +0 -1
  21. package/lib/bank/index.js +0 -18
  22. package/lib/bank/index.js.map +0 -1
  23. package/lib/common/identity.d.ts +0 -27
  24. package/lib/common/identity.js +0 -3
  25. package/lib/common/identity.js.map +0 -1
  26. package/lib/common/person.d.ts +0 -17
  27. package/lib/common/person.js +0 -82
  28. package/lib/common/person.js.map +0 -1
  29. package/lib/feedback/feedback.model.d.ts +0 -10
  30. package/lib/feedback/feedback.model.js +0 -66
  31. package/lib/feedback/feedback.model.js.map +0 -1
  32. package/lib/feedback/index.d.ts +0 -1
  33. package/lib/feedback/index.js +0 -18
  34. package/lib/feedback/index.js.map +0 -1
  35. package/lib/geo/address.model.d.ts +0 -11
  36. package/lib/geo/address.model.js +0 -53
  37. package/lib/geo/address.model.js.map +0 -1
  38. package/lib/geo/coordinate.model.d.ts +0 -4
  39. package/lib/geo/coordinate.model.js +0 -41
  40. package/lib/geo/coordinate.model.js.map +0 -1
  41. package/lib/link/index.d.ts +0 -1
  42. package/lib/link/index.js +0 -18
  43. package/lib/link/index.js.map +0 -1
  44. package/lib/link/link.model.d.ts +0 -55
  45. package/lib/link/link.model.js +0 -75
  46. package/lib/link/link.model.js.map +0 -1
  47. package/lib/note/index.d.ts +0 -1
  48. package/lib/note/index.js +0 -18
  49. package/lib/note/index.js.map +0 -1
  50. package/lib/note/note.model.d.ts +0 -9
  51. package/lib/note/note.model.js +0 -57
  52. package/lib/note/note.model.js.map +0 -1
  53. package/lib/public/contact.dto.d.ts +0 -18
  54. package/lib/public/contact.dto.js.map +0 -1
  55. package/lib/public/faq.model.d.ts +0 -6
  56. package/lib/public/faq.model.js +0 -36
  57. package/lib/public/faq.model.js.map +0 -1
  58. package/lib/public/feature.model.d.ts +0 -179
  59. package/lib/public/feature.model.js +0 -349
  60. package/lib/public/feature.model.js.map +0 -1
  61. package/lib/public/learning.model.d.ts +0 -21
  62. package/lib/public/learning.model.js +0 -59
  63. package/lib/public/learning.model.js.map +0 -1
  64. package/lib/public/testimonials.mapper.d.ts +0 -23
  65. package/lib/public/testimonials.mapper.js +0 -60
  66. package/lib/public/testimonials.mapper.js.map +0 -1
@@ -1,59 +0,0 @@
1
- "use strict";
2
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
- return c > 3 && r && Object.defineProperty(target, key, r), r;
7
- };
8
- var __metadata = (this && this.__metadata) || function (k, v) {
9
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
- };
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.PublicLearningHubItem = void 0;
13
- const class_transformer_1 = require("class-transformer");
14
- class PublicLearningHubItem {
15
- /**
16
- * Learning item title
17
- */
18
- title;
19
- /**
20
- * Learning item description
21
- */
22
- description;
23
- /** The type of the property will be change to ProfileType after migration branch merge */
24
- profile;
25
- /**
26
- * Sort order
27
- */
28
- sort;
29
- /**
30
- * Media URL (image, video, pdf, etc)
31
- */
32
- media;
33
- constructor(props) {
34
- Object.assign(this, props);
35
- }
36
- }
37
- exports.PublicLearningHubItem = PublicLearningHubItem;
38
- __decorate([
39
- (0, class_transformer_1.Expose)(),
40
- __metadata("design:type", String)
41
- ], PublicLearningHubItem.prototype, "title", void 0);
42
- __decorate([
43
- (0, class_transformer_1.Expose)(),
44
- __metadata("design:type", String)
45
- ], PublicLearningHubItem.prototype, "description", void 0);
46
- __decorate([
47
- (0, class_transformer_1.Expose)(),
48
- __metadata("design:type", String)
49
- ], PublicLearningHubItem.prototype, "profile", void 0);
50
- __decorate([
51
- (0, class_transformer_1.Expose)(),
52
- (0, class_transformer_1.Type)(() => Number),
53
- __metadata("design:type", Number)
54
- ], PublicLearningHubItem.prototype, "sort", void 0);
55
- __decorate([
56
- (0, class_transformer_1.Expose)(),
57
- __metadata("design:type", String)
58
- ], PublicLearningHubItem.prototype, "media", void 0);
59
- //# sourceMappingURL=learning.model.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"learning.model.js","sourceRoot":"","sources":["../../src/public/learning.model.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAAiD;AAEjD,MAAa,qBAAqB;IACjC;;OAEG;IAEH,KAAK,CAAS;IAEd;;OAEG;IAEH,WAAW,CAAS;IAEpB,0FAA0F;IAE1F,OAAO,CAAS;IAEhB;;OAEG;IAGH,IAAI,CAAS;IAEb;;OAEG;IAEH,KAAK,CAAS;IAEd,YAAY,KAAsC;QACjD,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;IAC5B,CAAC;CACD;AAjCD,sDAiCC;AA5BA;IADC,IAAA,0BAAM,GAAE;;oDACK;AAMd;IADC,IAAA,0BAAM,GAAE;;0DACW;AAIpB;IADC,IAAA,0BAAM,GAAE;;sDACO;AAOhB;IAFC,IAAA,0BAAM,GAAE;IACR,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;mDACN;AAMb;IADC,IAAA,0BAAM,GAAE;;oDACK"}
@@ -1,23 +0,0 @@
1
- export declare class PublicTestimonial {
2
- /**
3
- * Testimonial title
4
- */
5
- title: string;
6
- /**
7
- * User feedback
8
- */
9
- feedback: string;
10
- /**
11
- * User image/avatar
12
- */
13
- image: string;
14
- /**
15
- * User name
16
- */
17
- name: string;
18
- /**
19
- * User position/job title
20
- */
21
- position: string;
22
- constructor(partial: Partial<PublicTestimonial>);
23
- }
@@ -1,60 +0,0 @@
1
- "use strict";
2
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
- return c > 3 && r && Object.defineProperty(target, key, r), r;
7
- };
8
- var __metadata = (this && this.__metadata) || function (k, v) {
9
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
- };
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.PublicTestimonial = void 0;
13
- const class_transformer_1 = require("class-transformer");
14
- class PublicTestimonial {
15
- /**
16
- * Testimonial title
17
- */
18
- title;
19
- /**
20
- * User feedback
21
- */
22
- feedback;
23
- /**
24
- * User image/avatar
25
- */
26
- image;
27
- /**
28
- * User name
29
- */
30
- name;
31
- /**
32
- * User position/job title
33
- */
34
- position;
35
- constructor(partial) {
36
- Object.assign(this, partial);
37
- }
38
- }
39
- exports.PublicTestimonial = PublicTestimonial;
40
- __decorate([
41
- (0, class_transformer_1.Expose)(),
42
- __metadata("design:type", String)
43
- ], PublicTestimonial.prototype, "title", void 0);
44
- __decorate([
45
- (0, class_transformer_1.Expose)(),
46
- __metadata("design:type", String)
47
- ], PublicTestimonial.prototype, "feedback", void 0);
48
- __decorate([
49
- (0, class_transformer_1.Expose)(),
50
- __metadata("design:type", String)
51
- ], PublicTestimonial.prototype, "image", void 0);
52
- __decorate([
53
- (0, class_transformer_1.Expose)(),
54
- __metadata("design:type", String)
55
- ], PublicTestimonial.prototype, "name", void 0);
56
- __decorate([
57
- (0, class_transformer_1.Expose)(),
58
- __metadata("design:type", String)
59
- ], PublicTestimonial.prototype, "position", void 0);
60
- //# sourceMappingURL=testimonials.mapper.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"testimonials.mapper.js","sourceRoot":"","sources":["../../src/public/testimonials.mapper.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAE3C,MAAa,iBAAiB;IAC7B;;OAEG;IAEH,KAAK,CAAS;IAEd;;OAEG;IAEH,QAAQ,CAAS;IAEjB;;OAEG;IAEH,KAAK,CAAS;IAEd;;OAEG;IAEH,IAAI,CAAS;IAEb;;OAEG;IAEH,QAAQ,CAAS;IAEjB,YAAY,OAAmC;QAC9C,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IAC9B,CAAC;CACD;AAlCD,8CAkCC;AA7BA;IADC,IAAA,0BAAM,GAAE;;gDACK;AAMd;IADC,IAAA,0BAAM,GAAE;;mDACQ;AAMjB;IADC,IAAA,0BAAM,GAAE;;gDACK;AAMd;IADC,IAAA,0BAAM,GAAE;;+CACI;AAMb;IADC,IAAA,0BAAM,GAAE;;mDACQ"}