awf-test-lib 0.1.1 → 0.1.3

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 (218) hide show
  1. package/esm2020/awf-test-lib.mjs +5 -0
  2. package/esm2020/lib/core/core-routing.module.mjs +18 -0
  3. package/esm2020/lib/core/core.module.mjs +51 -0
  4. package/esm2020/lib/core/menu/menu.component.mjs +40 -0
  5. package/esm2020/lib/core/menu-consomer/menu-consomer.component.mjs +27 -0
  6. package/esm2020/lib/core/menu-ge-portal/menu-ge-portal.component.mjs +31 -0
  7. package/esm2020/lib/core/menu-warranty/menu-warranty.component.mjs +35 -0
  8. package/esm2020/lib/core/not-found/not-found.component.mjs +19 -0
  9. package/esm2020/lib/core/top-bar/top-bar.component.mjs +41 -0
  10. package/esm2020/lib/models/account.model.mjs +3 -0
  11. package/esm2020/lib/models/alternativeDate.model.mjs +3 -0
  12. package/esm2020/lib/models/applicationName.mjs +7 -0
  13. package/esm2020/lib/models/cancelPMMailRequest.model.mjs +4 -0
  14. package/esm2020/lib/models/customObject.model.mjs +3 -0
  15. package/esm2020/lib/models/detailedPmJob.model.mjs +3 -0
  16. package/esm2020/lib/models/emailStatus.mjs +6 -0
  17. package/esm2020/lib/models/emailType.mjs +15 -0
  18. package/esm2020/lib/models/eventStatus.mjs +9 -0
  19. package/esm2020/lib/models/field.mjs +9 -0
  20. package/esm2020/lib/models/language.mjs +6 -0
  21. package/esm2020/lib/models/mailRequest.model.mjs +3 -0
  22. package/esm2020/lib/models/pMGroupedJob.model.mjs +3 -0
  23. package/esm2020/lib/models/pmJob.model.mjs +3 -0
  24. package/esm2020/lib/models/pmJobRequest.model.mjs +3 -0
  25. package/esm2020/lib/models/pmJobStatus.mjs +17 -0
  26. package/esm2020/lib/models/reason.model.mjs +3 -0
  27. package/esm2020/lib/models/reasonCode.mjs +9 -0
  28. package/esm2020/lib/models/reasonContact.mjs +8 -0
  29. package/esm2020/lib/models/reportDateMailRequest.model.mjs +4 -0
  30. package/esm2020/lib/models/role.mjs +7 -0
  31. package/esm2020/lib/models/service.model.mjs +3 -0
  32. package/esm2020/lib/models/serviceName.mjs +12 -0
  33. package/esm2020/lib/models/socialLoginRequest.model.mjs +3 -0
  34. package/esm2020/lib/models/socialMadia.mjs +5 -0
  35. package/esm2020/lib/models/stingBoolean.mjs +6 -0
  36. package/esm2020/lib/models/system.mjs +3 -0
  37. package/esm2020/lib/models/theme.model.mjs +2 -0
  38. package/esm2020/lib/models/tokenStatus.mjs +7 -0
  39. package/esm2020/lib/models/warranty.mjs +3 -0
  40. package/esm2020/lib/pipes/pipes/pipes.module.mjs +21 -0
  41. package/esm2020/lib/pipes/subrtring-w.pipe.mjs +20 -0
  42. package/esm2020/lib/pipes/substring.pipe.mjs +16 -0
  43. package/esm2020/lib/shared/choose-another-date/choose-another-date.component.mjs +110 -0
  44. package/esm2020/lib/shared/confirm-dialog/confirm-dialog.component.mjs +44 -0
  45. package/esm2020/lib/shared/confirm-dialog-contact/confirm-dialog-contact.component.mjs +42 -0
  46. package/esm2020/lib/shared/confirmed-date-information/confirmed-date-information.component.mjs +35 -0
  47. package/esm2020/lib/shared/contact/contact.component.mjs +139 -0
  48. package/esm2020/lib/shared/contact-support/contact-support.component.mjs +161 -0
  49. package/esm2020/lib/shared/dashboard/dashboard.component.mjs +34 -0
  50. package/esm2020/lib/shared/maintenance-list/maintenance-list.component.mjs +360 -0
  51. package/esm2020/lib/shared/shared-routing.module.mjs +18 -0
  52. package/esm2020/lib/shared/shared.module.mjs +144 -0
  53. package/esm2020/lib/shared/show-links/show-links.component.mjs +81 -0
  54. package/esm2020/lib/shared/system-list/system-list.component.mjs +32 -0
  55. package/esm2020/public-api.mjs +48 -0
  56. package/fesm2015/awf-test-lib.mjs +1549 -0
  57. package/fesm2015/awf-test-lib.mjs.map +1 -0
  58. package/fesm2020/awf-test-lib.mjs +1545 -0
  59. package/fesm2020/awf-test-lib.mjs.map +1 -0
  60. package/index.d.ts +5 -0
  61. package/lib/core/core-routing.module.d.ts +7 -0
  62. package/lib/core/core.module.d.ts +15 -0
  63. package/lib/core/menu/menu.component.d.ts +17 -0
  64. package/lib/core/menu-consomer/menu-consomer.component.d.ts +12 -0
  65. package/lib/core/menu-ge-portal/menu-ge-portal.component.d.ts +13 -0
  66. package/lib/core/menu-warranty/menu-warranty.component.d.ts +15 -0
  67. package/lib/core/not-found/not-found.component.d.ts +10 -0
  68. package/lib/core/top-bar/top-bar.component.d.ts +13 -0
  69. package/{src/lib/models/account.model.ts → lib/models/account.model.d.ts} +3 -6
  70. package/lib/models/alternativeDate.model.d.ts +6 -0
  71. package/lib/models/applicationName.d.ts +5 -0
  72. package/{src/lib/models/cancelPMMailRequest.model.ts → lib/models/cancelPMMailRequest.model.d.ts} +1 -3
  73. package/lib/models/customObject.model.d.ts +3 -0
  74. package/lib/models/detailedPmJob.model.d.ts +22 -0
  75. package/lib/models/emailStatus.d.ts +4 -0
  76. package/lib/models/emailType.d.ts +13 -0
  77. package/lib/models/eventStatus.d.ts +7 -0
  78. package/lib/models/field.d.ts +7 -0
  79. package/lib/models/language.d.ts +4 -0
  80. package/{src/lib/models/mailRequest.model.ts → lib/models/mailRequest.model.d.ts} +1 -3
  81. package/lib/models/pMGroupedJob.model.d.ts +3 -0
  82. package/{src/lib/models/pmJob.model.ts → lib/models/pmJob.model.d.ts} +6 -7
  83. package/lib/models/pmJobRequest.model.d.ts +5 -0
  84. package/{src/lib/models/pmJobStatus.ts → lib/models/pmJobStatus.d.ts} +3 -8
  85. package/lib/models/reason.model.d.ts +4 -0
  86. package/lib/models/reasonCode.d.ts +7 -0
  87. package/lib/models/reasonContact.d.ts +6 -0
  88. package/{src/lib/models/reportDateMailRequest.model.ts → lib/models/reportDateMailRequest.model.d.ts} +1 -3
  89. package/lib/models/role.d.ts +5 -0
  90. package/lib/models/service.model.d.ts +8 -0
  91. package/lib/models/serviceName.d.ts +10 -0
  92. package/{src/lib/models/socialLoginRequest.model.ts → lib/models/socialLoginRequest.model.d.ts} +1 -1
  93. package/lib/models/socialMadia.d.ts +3 -0
  94. package/lib/models/stingBoolean.d.ts +4 -0
  95. package/lib/models/system.d.ts +14 -0
  96. package/{src/lib/models/theme.model.ts → lib/models/theme.model.d.ts} +11 -18
  97. package/lib/models/tokenStatus.d.ts +5 -0
  98. package/lib/models/warranty.d.ts +17 -0
  99. package/lib/pipes/pipes/pipes.module.d.ts +9 -0
  100. package/lib/pipes/subrtring-w.pipe.d.ts +7 -0
  101. package/lib/pipes/substring.pipe.d.ts +7 -0
  102. package/lib/shared/choose-another-date/choose-another-date.component.d.ts +33 -0
  103. package/lib/shared/confirm-dialog/confirm-dialog.component.d.ts +20 -0
  104. package/lib/shared/confirm-dialog-contact/confirm-dialog-contact.component.d.ts +19 -0
  105. package/lib/shared/confirmed-date-information/confirmed-date-information.component.d.ts +15 -0
  106. package/lib/shared/contact/contact.component.d.ts +38 -0
  107. package/lib/shared/contact-support/contact-support.component.d.ts +49 -0
  108. package/lib/shared/dashboard/dashboard.component.d.ts +17 -0
  109. package/lib/shared/maintenance-list/maintenance-list.component.d.ts +83 -0
  110. package/lib/shared/shared-routing.module.d.ts +7 -0
  111. package/lib/shared/shared.module.d.ts +40 -0
  112. package/lib/shared/show-links/show-links.component.d.ts +23 -0
  113. package/lib/shared/system-list/system-list.component.d.ts +15 -0
  114. package/package.json +30 -10
  115. package/{src/public-api.ts → public-api.d.ts} +1 -16
  116. package/karma.conf.js +0 -44
  117. package/ng-package.json +0 -7
  118. package/src/lib/core/core-routing.module.ts +0 -10
  119. package/src/lib/core/core.module.ts +0 -35
  120. package/src/lib/core/menu/menu.component.css +0 -18
  121. package/src/lib/core/menu/menu.component.html +0 -8
  122. package/src/lib/core/menu/menu.component.spec.ts +0 -23
  123. package/src/lib/core/menu/menu.component.ts +0 -27
  124. package/src/lib/core/menu-consomer/menu-consomer.component.html +0 -20
  125. package/src/lib/core/menu-consomer/menu-consomer.component.scss +0 -20
  126. package/src/lib/core/menu-consomer/menu-consomer.component.spec.ts +0 -25
  127. package/src/lib/core/menu-consomer/menu-consomer.component.ts +0 -21
  128. package/src/lib/core/menu-ge-portal/menu-ge-portal.component.html +0 -7
  129. package/src/lib/core/menu-ge-portal/menu-ge-portal.component.scss +0 -17
  130. package/src/lib/core/menu-ge-portal/menu-ge-portal.component.spec.ts +0 -25
  131. package/src/lib/core/menu-ge-portal/menu-ge-portal.component.ts +0 -24
  132. package/src/lib/core/menu-warranty/menu-warranty.component.html +0 -20
  133. package/src/lib/core/menu-warranty/menu-warranty.component.scss +0 -16
  134. package/src/lib/core/menu-warranty/menu-warranty.component.spec.ts +0 -25
  135. package/src/lib/core/menu-warranty/menu-warranty.component.ts +0 -31
  136. package/src/lib/core/not-found/not-found.component.css +0 -31
  137. package/src/lib/core/not-found/not-found.component.html +0 -6
  138. package/src/lib/core/not-found/not-found.component.spec.ts +0 -23
  139. package/src/lib/core/not-found/not-found.component.ts +0 -15
  140. package/src/lib/core/top-bar/top-bar.component.css +0 -116
  141. package/src/lib/core/top-bar/top-bar.component.html +0 -1
  142. package/src/lib/core/top-bar/top-bar.component.spec.ts +0 -23
  143. package/src/lib/core/top-bar/top-bar.component.ts +0 -39
  144. package/src/lib/models/alternativeDate.model.ts +0 -6
  145. package/src/lib/models/applicationName.ts +0 -6
  146. package/src/lib/models/customObject.model.ts +0 -4
  147. package/src/lib/models/detailedPmJob.model.ts +0 -24
  148. package/src/lib/models/emailStatus.ts +0 -4
  149. package/src/lib/models/emailType.ts +0 -17
  150. package/src/lib/models/eventStatus.ts +0 -8
  151. package/src/lib/models/field.ts +0 -7
  152. package/src/lib/models/language.ts +0 -4
  153. package/src/lib/models/pMGroupedJob.model.ts +0 -4
  154. package/src/lib/models/pmJobRequest.model.ts +0 -6
  155. package/src/lib/models/reason.model.ts +0 -7
  156. package/src/lib/models/reasonCode.ts +0 -9
  157. package/src/lib/models/reasonContact.ts +0 -7
  158. package/src/lib/models/role.ts +0 -5
  159. package/src/lib/models/service.model.ts +0 -8
  160. package/src/lib/models/serviceName.ts +0 -14
  161. package/src/lib/models/socialMadia.ts +0 -4
  162. package/src/lib/models/stingBoolean.ts +0 -7
  163. package/src/lib/models/system.ts +0 -15
  164. package/src/lib/models/tokenStatus.ts +0 -6
  165. package/src/lib/models/warranty.ts +0 -18
  166. package/src/lib/pipes/pipes/pipes.module.ts +0 -14
  167. package/src/lib/pipes/subrtring-w.pipe.spec.ts +0 -8
  168. package/src/lib/pipes/subrtring-w.pipe.ts +0 -16
  169. package/src/lib/pipes/substring.pipe.spec.ts +0 -8
  170. package/src/lib/pipes/substring.pipe.ts +0 -15
  171. package/src/lib/shared/choose-another-date/choose-another-date.component.html +0 -9
  172. package/src/lib/shared/choose-another-date/choose-another-date.component.scss +0 -4
  173. package/src/lib/shared/choose-another-date/choose-another-date.component.spec.ts +0 -25
  174. package/src/lib/shared/choose-another-date/choose-another-date.component.ts +0 -126
  175. package/src/lib/shared/confirm-dialog/confirm-dialog.component.html +0 -27
  176. package/src/lib/shared/confirm-dialog/confirm-dialog.component.scss +0 -0
  177. package/src/lib/shared/confirm-dialog/confirm-dialog.component.spec.ts +0 -25
  178. package/src/lib/shared/confirm-dialog/confirm-dialog.component.ts +0 -35
  179. package/src/lib/shared/confirm-dialog-contact/confirm-dialog-contact.component.css +0 -0
  180. package/src/lib/shared/confirm-dialog-contact/confirm-dialog-contact.component.html +0 -19
  181. package/src/lib/shared/confirm-dialog-contact/confirm-dialog-contact.component.spec.ts +0 -23
  182. package/src/lib/shared/confirm-dialog-contact/confirm-dialog-contact.component.ts +0 -36
  183. package/src/lib/shared/confirmed-date-information/confirmed-date-information.component.html +0 -25
  184. package/src/lib/shared/confirmed-date-information/confirmed-date-information.component.scss +0 -23
  185. package/src/lib/shared/confirmed-date-information/confirmed-date-information.component.spec.ts +0 -25
  186. package/src/lib/shared/confirmed-date-information/confirmed-date-information.component.ts +0 -25
  187. package/src/lib/shared/contact/contact.component.css +0 -144
  188. package/src/lib/shared/contact/contact.component.html +0 -124
  189. package/src/lib/shared/contact/contact.component.spec.ts +0 -23
  190. package/src/lib/shared/contact/contact.component.ts +0 -161
  191. package/src/lib/shared/contact-support/contact-support.component.html +0 -126
  192. package/src/lib/shared/contact-support/contact-support.component.scss +0 -10
  193. package/src/lib/shared/contact-support/contact-support.component.spec.ts +0 -25
  194. package/src/lib/shared/contact-support/contact-support.component.ts +0 -191
  195. package/src/lib/shared/dashboard/dashboard.component.html +0 -81
  196. package/src/lib/shared/dashboard/dashboard.component.scss +0 -5
  197. package/src/lib/shared/dashboard/dashboard.component.spec.ts +0 -23
  198. package/src/lib/shared/dashboard/dashboard.component.ts +0 -21
  199. package/src/lib/shared/maintenance-list/maintenance-list.component.html +0 -100
  200. package/src/lib/shared/maintenance-list/maintenance-list.component.scss +0 -26
  201. package/src/lib/shared/maintenance-list/maintenance-list.component.spec.ts +0 -25
  202. package/src/lib/shared/maintenance-list/maintenance-list.component.ts +0 -466
  203. package/src/lib/shared/shared-routing.module.ts +0 -10
  204. package/src/lib/shared/shared.module.ts +0 -84
  205. package/src/lib/shared/show-links/show-links.component.html +0 -48
  206. package/src/lib/shared/show-links/show-links.component.scss +0 -0
  207. package/src/lib/shared/show-links/show-links.component.spec.ts +0 -25
  208. package/src/lib/shared/show-links/show-links.component.ts +0 -80
  209. package/src/lib/shared/system-list/system-list.component.css +0 -0
  210. package/src/lib/shared/system-list/system-list.component.html +0 -40
  211. package/src/lib/shared/system-list/system-list.component.spec.ts +0 -23
  212. package/src/lib/shared/system-list/system-list.component.ts +0 -26
  213. package/src/test.ts +0 -27
  214. package/tsconfig.lib.dev.json +0 -10
  215. package/tsconfig.lib.json +0 -15
  216. package/tsconfig.lib.pp.json +0 -10
  217. package/tsconfig.lib.prod.json +0 -10
  218. package/tsconfig.spec.json +0 -17
@@ -0,0 +1,10 @@
1
+ import { OnChanges } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class NotFoundComponent implements OnChanges {
4
+ translate: any;
5
+ applicationName: any;
6
+ constructor();
7
+ ngOnChanges(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotFoundComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<NotFoundComponent, "awf-not-found", never, { "translate": "translate"; "applicationName": "applicationName"; }, {}, never, never, false>;
10
+ }
@@ -0,0 +1,13 @@
1
+ import { OnChanges, EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TopBarComponent implements OnChanges {
4
+ translate: any;
5
+ applicationName: any;
6
+ logOutClick: EventEmitter<any>;
7
+ items: any[];
8
+ constructor();
9
+ ngOnChanges(): void;
10
+ logout(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<TopBarComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<TopBarComponent, "awf-top-bar", never, { "translate": "translate"; "applicationName": "applicationName"; }, { "logOutClick": "logOutClick"; }, never, never, false>;
13
+ }
@@ -1,14 +1,11 @@
1
-
2
-
3
- export class Account {
1
+ export declare class Account {
4
2
  id?: string;
5
3
  title?: string;
6
4
  firstName?: string;
7
5
  lastName?: string;
8
6
  email?: string;
9
- language?:string;
10
- isVerified?:boolean;
11
-
7
+ language?: string;
8
+ isVerified?: boolean;
12
9
  role?: string;
13
10
  accessToken?: string;
14
11
  refreshToken?: string;
@@ -0,0 +1,6 @@
1
+ export declare class AlternativeDate {
2
+ startDateTime: string;
3
+ endDateTime: string;
4
+ fseSSO?: string[];
5
+ selected?: string;
6
+ }
@@ -0,0 +1,5 @@
1
+ export declare enum ApplicationName {
2
+ ConsomerPortal = "ConsomerPortal",
3
+ WarrantyPortal = "WarrantyPortal",
4
+ GEPortal = "GEPortal"
5
+ }
@@ -1,7 +1,5 @@
1
1
  import { MailRequest } from "./mailRequest.model";
2
-
3
- export class CancelPMMailRequest extends MailRequest
4
- {
2
+ export declare class CancelPMMailRequest extends MailRequest {
5
3
  pm_Number?: string;
6
4
  motive?: string;
7
5
  }
@@ -0,0 +1,3 @@
1
+ export declare class CustomObject {
2
+ customerWaiting?: string;
3
+ }
@@ -0,0 +1,22 @@
1
+ import { PmJob } from "./pmJob.model";
2
+ export declare class DetailedPmJob {
3
+ systemId?: string;
4
+ systemName?: string;
5
+ status: string;
6
+ siteName?: string;
7
+ siteCity?: string;
8
+ language?: string;
9
+ pmJob: PmJob;
10
+ comment?: string;
11
+ name?: string;
12
+ email?: string;
13
+ phone?: string;
14
+ reason?: string;
15
+ reasonContact?: string;
16
+ futureStatus?: string;
17
+ selectedDate?: string;
18
+ toUpdate?: boolean;
19
+ WorkorderNumberSelected?: string;
20
+ sitePostalCode?: string;
21
+ room?: string;
22
+ }
@@ -0,0 +1,4 @@
1
+ export declare enum EmailStatus {
2
+ Verifying = 0,
3
+ Failed = 1
4
+ }
@@ -0,0 +1,13 @@
1
+ export declare enum EmailType {
2
+ Accepted_Clients = "Accepted_Clients",
3
+ Accepted_CSC = "Accepted_CSC",
4
+ CancelPM_Clients = "CancelPM_Clients",
5
+ CancelPM_CSC = "CancelPM_CSC",
6
+ ContactMe_Clients = "ContactMe_Clients",
7
+ ContactMe_CSC = "ContactMe_CSC",
8
+ ReportDate_Clients = "ReportDate_Clients",
9
+ ReportDate_CSC = "ReportDate_CSC",
10
+ SendNewDates_Clients = "SendNewDates_Clients",
11
+ SendNewDates_CSC = "SendNewDates_CSC",
12
+ DesynchroPM_CSC = "DesynchroPM_CSC"
13
+ }
@@ -0,0 +1,7 @@
1
+ export declare enum EventStatus {
2
+ ASSIGNEDANC = "Assigned ANC",
3
+ ASSIGNED = "Assigned",
4
+ ASSIGNEDPINNED = "Assigned Pinned",
5
+ COMPLETE = "Complete",
6
+ INCOMPLETE = "Incomplete"
7
+ }
@@ -0,0 +1,7 @@
1
+ export declare enum Field {
2
+ Textbox = "textbox",
3
+ File = "file",
4
+ Dropdown = "dropdown",
5
+ Radio = "radio",
6
+ Checkbox = "checkbox"
7
+ }
@@ -0,0 +1,4 @@
1
+ export declare enum Language {
2
+ FR = "fr-FR",
3
+ EN = "en-US"
4
+ }
@@ -1,6 +1,4 @@
1
- import { System } from "./system";
2
-
3
- export class MailRequest {
1
+ export declare class MailRequest {
4
2
  sr_Number?: string;
5
3
  facility_name?: string;
6
4
  city?: string;
@@ -0,0 +1,3 @@
1
+ export declare class PMGroupedJob {
2
+ workorderId: string;
3
+ }
@@ -1,8 +1,7 @@
1
1
  import { AlternativeDate } from "./alternativeDate.model";
2
2
  import { PMGroupedJob } from "./pMGroupedJob.model";
3
3
  import { CustomObject } from "./customObject.model";
4
-
5
- export class PmJob {
4
+ export declare class PmJob {
6
5
  caseId?: string;
7
6
  caseNumber?: string;
8
7
  workorderId?: string;
@@ -10,16 +9,16 @@ export class PmJob {
10
9
  workorderStatus?: string;
11
10
  eventId?: string;
12
11
  eventStatus?: string;
13
- startDateTime!: string;
14
- endDateTime!: string;
12
+ startDateTime: string;
13
+ endDateTime: string;
15
14
  caseType?: string;
16
15
  caseCategory?: string;
17
16
  levelOfService?: string;
18
17
  fseSSO?: string;
19
18
  customerAccepted?: string;
20
- alternativeDates!: AlternativeDate[];
21
- groupList!: PMGroupedJob[];
22
- customObject!:CustomObject ;
19
+ alternativeDates: AlternativeDate[];
20
+ groupList: PMGroupedJob[];
21
+ customObject: CustomObject;
23
22
  caseDescription?: string;
24
23
  fseName?: string;
25
24
  caseStatus?: string;
@@ -0,0 +1,5 @@
1
+ import { PmJob } from "./pmJob.model";
2
+ export declare class PmJobRequest {
3
+ countrymodule?: string;
4
+ pmJob?: PmJob;
5
+ }
@@ -1,5 +1,5 @@
1
- export enum PmJobStatus {
2
- NEW = 'new',
1
+ export declare enum PmJobStatus {
2
+ NEW = "new",
3
3
  ACCEPTED = "accepted",
4
4
  CLOSED = "closed",
5
5
  Late = "late",
@@ -7,13 +7,8 @@ export enum PmJobStatus {
7
7
  WAITING = "waiting",
8
8
  DONE = "done",
9
9
  VALIDATED = "validated",
10
- // statues if i select reason in contact page
11
10
  DESINSTALLED = "desinstalled",
12
11
  REPORTED = "reported",
13
12
  CANCELLED = "cancelled",
14
- OTHER = "other",
15
-
16
-
13
+ OTHER = "other"
17
14
  }
18
-
19
-
@@ -0,0 +1,4 @@
1
+ export declare class Reason {
2
+ name: string;
3
+ code: string;
4
+ }
@@ -0,0 +1,7 @@
1
+ export declare enum ReasonCode {
2
+ MPM = "MPM",
3
+ RPM = "RPM",
4
+ CPM = "CPM",
5
+ SDI = "SDI",
6
+ OTH = "OTH"
7
+ }
@@ -0,0 +1,6 @@
1
+ export declare enum ReasonContact {
2
+ MoreDatesFormPm = "MoreDatesFormPm",
3
+ ContactFormPm = "ContactFormPm",
4
+ CancelFormPm = "CancelFormPm",
5
+ Contact = "Contact"
6
+ }
@@ -1,7 +1,5 @@
1
1
  import { MailRequest } from "./mailRequest.model";
2
-
3
- export class ReportDateMailRequest extends MailRequest
4
- {
2
+ export declare class ReportDateMailRequest extends MailRequest {
5
3
  pm_Number?: string;
6
4
  date?: string;
7
5
  }
@@ -0,0 +1,5 @@
1
+ export declare enum Role {
2
+ User = "BasicUser",
3
+ Admin = "Admin",
4
+ RGPDUser = "RGPDUser"
5
+ }
@@ -0,0 +1,8 @@
1
+ export declare class Service {
2
+ id?: string;
3
+ label: string;
4
+ name: string;
5
+ routerLink: string;
6
+ description: string;
7
+ display: boolean;
8
+ }
@@ -0,0 +1,10 @@
1
+ export declare enum ServiceName {
2
+ Repairer = "repairer",
3
+ WarrantyContract = "warrantyContract",
4
+ Devices = "devices",
5
+ TrackRepairs = "trackRepairs",
6
+ ExtendedWarranty = "extendedWarranty",
7
+ ScheduleAppointment = "scheduleAppointment",
8
+ Documentation = "documentation",
9
+ RepairabilityIndex = "repairabilityIndex"
10
+ }
@@ -1,4 +1,4 @@
1
- export class SocialLoginRequest {
1
+ export declare class SocialLoginRequest {
2
2
  acessToken?: string;
3
3
  userName?: string;
4
4
  applicationName?: string;
@@ -0,0 +1,3 @@
1
+ export declare enum SocialMadia {
2
+ Gmail = "Gmail"
3
+ }
@@ -0,0 +1,4 @@
1
+ export declare enum StingBoolean {
2
+ YES = "Yes",
3
+ NO = "No"
4
+ }
@@ -0,0 +1,14 @@
1
+ import { PmJob } from "./pmJob.model";
2
+ export declare class System {
3
+ id: string;
4
+ systemId: string;
5
+ name: string;
6
+ modality?: string;
7
+ installDate?: string;
8
+ siteName?: string;
9
+ siteCity?: string;
10
+ pmJobs: PmJob[];
11
+ description?: string;
12
+ sitePostalCode?: string;
13
+ room?: string;
14
+ }
@@ -1,4 +1,3 @@
1
-
2
1
  export interface Theme {
3
2
  cardColor: string;
4
3
  cardBackground: string;
@@ -11,35 +10,29 @@ export interface Theme {
11
10
  headerColor: string;
12
11
  primarycolor: string;
13
12
  secondarycolor: string;
14
- primarycolorwhite:string;
15
- navBackground:string;
16
- navColor:string;
13
+ primarycolorwhite: string;
14
+ navBackground: string;
15
+ navColor: string;
17
16
  borderbutton: string;
18
- borderraduis :string;
19
- bordercolor : string;
17
+ borderraduis: string;
18
+ bordercolor: string;
20
19
  fontsizeH1: string;
21
- fontsizeH2 :string;
22
- fontsizeH3 : string;
20
+ fontsizeH2: string;
21
+ fontsizeH3: string;
23
22
  fontsizeH4: string;
24
- fontsizeH5 :string;
25
- fontsizeH6 : string;
26
- fontsizeP : string;
23
+ fontsizeH5: string;
24
+ fontsizeH6: string;
25
+ fontsizeP: string;
27
26
  font: string;
28
-
29
27
  verySmallscreen: string;
30
28
  tinyscreen: string;
31
29
  smallscreen: string;
32
30
  smscreen: string;
33
31
  mediumscreen: string;
34
32
  largescreen: string;
35
-
36
- //primarycolor: string;
37
- ligthprimarycolor:string;
33
+ ligthprimarycolor: string;
38
34
  Dangercolor: string;
39
35
  Successcolor: string;
40
36
  Warnigcolor: string;
41
37
  Infocolor: string;
42
38
  }
43
-
44
-
45
-
@@ -0,0 +1,5 @@
1
+ export declare enum TokenStatus {
2
+ Validating = 0,
3
+ Valid = 1,
4
+ Invalid = 2
5
+ }
@@ -0,0 +1,17 @@
1
+ export declare class Warranty {
2
+ manufacturerId: number;
3
+ contractId: number;
4
+ contractProductId?: number;
5
+ contractProductParentId?: number;
6
+ contractCode: string;
7
+ saleDate?: Date;
8
+ brand: string;
9
+ family: string;
10
+ commercialReference: string;
11
+ technicalReference: string;
12
+ productDescription: string;
13
+ startDate?: Date;
14
+ endDate?: Date;
15
+ PdfLink?: string;
16
+ consId?: number;
17
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "../substring.pipe";
3
+ import * as i2 from "../subrtring-w.pipe";
4
+ import * as i3 from "@angular/common";
5
+ export declare class PipesModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<PipesModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PipesModule, [typeof i1.SubstringPipe, typeof i2.SubrtringWPipe], [typeof i3.CommonModule], [typeof i1.SubstringPipe, typeof i2.SubrtringWPipe]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<PipesModule>;
9
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class SubrtringWPipe implements PipeTransform {
4
+ transform(brand: string, manufacturerId: number): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<SubrtringWPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<SubrtringWPipe, "subrtringW", false>;
7
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class SubstringPipe implements PipeTransform {
4
+ transform(time: string, arg1: number, arg2: number): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<SubstringPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<SubstringPipe, "substring", false>;
7
+ }
@@ -0,0 +1,33 @@
1
+ import { EventEmitter, OnChanges, OnInit } from '@angular/core';
2
+ import { MessageService } from 'primeng/api';
3
+ import { Calendar } from 'primeng/calendar';
4
+ import { AlternativeDate } from '../../models/alternativeDate.model';
5
+ import * as i0 from "@angular/core";
6
+ export declare class ChooseAnotherDateComponent implements OnChanges, OnInit {
7
+ private messageService;
8
+ displayAnotherDate: boolean;
9
+ globaltranslate: any;
10
+ translate: any;
11
+ alternativeDatesList: AlternativeDate[];
12
+ closeAnotherDate: EventEmitter<boolean>;
13
+ acceptDate: EventEmitter<AlternativeDate[]>;
14
+ calendar: Calendar;
15
+ dates: Date[];
16
+ datesRef: Date[];
17
+ selectedDate: any;
18
+ show: boolean;
19
+ dateslength: number;
20
+ indexSelectedDate: number;
21
+ constructor(messageService: MessageService);
22
+ ngOnInit(): void;
23
+ ngOnChanges(): void;
24
+ close(): void;
25
+ accept(): void;
26
+ askDate(): void;
27
+ controlAlternativeDates(): void;
28
+ loadDates(): void;
29
+ onSelect(): void;
30
+ arrdiff(a1: any, a2: any): string[];
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChooseAnotherDateComponent, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChooseAnotherDateComponent, "app-choose-another-date", never, { "displayAnotherDate": "displayAnotherDate"; "globaltranslate": "globaltranslate"; "translate": "translate"; "alternativeDatesList": "alternativeDatesList"; }, { "closeAnotherDate": "closeAnotherDate"; "acceptDate": "acceptDate"; }, never, never, false>;
33
+ }
@@ -0,0 +1,20 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { MessageService } from 'primeng/api';
3
+ import { DetailedPmJob } from '../../models/detailedPmJob.model';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ConfirmDialogComponent {
6
+ private messageService;
7
+ displayConfirmDialog: boolean;
8
+ startDateTime: any;
9
+ endDateTime: any;
10
+ globaltranslate: any;
11
+ translate: any;
12
+ isProposedDate: boolean;
13
+ detailedPmJobLinkedList: DetailedPmJob[];
14
+ closeConfirmDialog: EventEmitter<boolean>;
15
+ constructor(messageService: MessageService);
16
+ rejectDate(): void;
17
+ confirmDate(): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmDialogComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmDialogComponent, "app-confirm-dialog", never, { "displayConfirmDialog": "displayConfirmDialog"; "startDateTime": "startDateTime"; "endDateTime": "endDateTime"; "globaltranslate": "globaltranslate"; "translate": "translate"; "isProposedDate": "isProposedDate"; "detailedPmJobLinkedList": "detailedPmJobLinkedList"; }, { "closeConfirmDialog": "closeConfirmDialog"; }, never, never, false>;
20
+ }
@@ -0,0 +1,19 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { MessageService } from 'primeng/api';
3
+ import { DetailedPmJob } from '../../models/detailedPmJob.model';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ConfirmDialogContactComponent {
6
+ private messageService;
7
+ displayConfirmDialogContact: boolean;
8
+ startDateTime: any;
9
+ endDateTime: any;
10
+ globaltranslate: any;
11
+ translate: any;
12
+ detailedPmJobLinkedList: DetailedPmJob[];
13
+ closeConfirmDialogContact: EventEmitter<boolean>;
14
+ constructor(messageService: MessageService);
15
+ rejectDate(): void;
16
+ confirmDate(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmDialogContactComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmDialogContactComponent, "app-confirm-dialog-contact", never, { "displayConfirmDialogContact": "displayConfirmDialogContact"; "startDateTime": "startDateTime"; "endDateTime": "endDateTime"; "globaltranslate": "globaltranslate"; "translate": "translate"; "detailedPmJobLinkedList": "detailedPmJobLinkedList"; }, { "closeConfirmDialogContact": "closeConfirmDialogContact"; }, never, never, false>;
19
+ }
@@ -0,0 +1,15 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ConfirmedDateInformationComponent {
4
+ displayConfirmedDateInfo: boolean;
5
+ startDateTime: any;
6
+ endDateTime: any;
7
+ globaltranslate: any;
8
+ translate: any;
9
+ moreDates: boolean;
10
+ closeConfirmedDateInfo: EventEmitter<boolean>;
11
+ constructor();
12
+ confirmDate(): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmedDateInformationComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmedDateInformationComponent, "app-confirmed-date-information", never, { "displayConfirmedDateInfo": "displayConfirmedDateInfo"; "startDateTime": "startDateTime"; "endDateTime": "endDateTime"; "globaltranslate": "globaltranslate"; "translate": "translate"; "moreDates": "moreDates"; }, { "closeConfirmedDateInfo": "closeConfirmedDateInfo"; }, never, never, false>;
15
+ }
@@ -0,0 +1,38 @@
1
+ import { OnChanges, EventEmitter } from '@angular/core';
2
+ import { FormBuilder, FormGroup } from '@angular/forms';
3
+ import { MessageService } from 'primeng/api';
4
+ import { PmJob } from '../../models/pmJob.model';
5
+ import { PmJobStatus } from '../../models/pmJobStatus';
6
+ import { Reason } from '../../models/reason.model';
7
+ import { System } from '../../models/system';
8
+ import * as i0 from "@angular/core";
9
+ export declare class ContactComponent implements OnChanges {
10
+ private formBuilder;
11
+ private messageService;
12
+ loading: boolean;
13
+ submitted: boolean;
14
+ systems: System[];
15
+ selectedSystems: System[];
16
+ translate: any;
17
+ reasons: Reason[];
18
+ sendForm: EventEmitter<any>;
19
+ form: FormGroup;
20
+ selectedReason: any;
21
+ selectedSystem: System;
22
+ selectedPm: any;
23
+ pmJobs: PmJob[];
24
+ systemContainPm: boolean;
25
+ showPm: boolean;
26
+ constructor(formBuilder: FormBuilder, messageService: MessageService);
27
+ ngOnChanges(): void;
28
+ get f(): {
29
+ [key: string]: import("@angular/forms").AbstractControl<any, any>;
30
+ };
31
+ preventStringKeypress(event: any): void;
32
+ onSubmit(): void;
33
+ slectsFutureStatus(status: any): PmJobStatus.WAITING | PmJobStatus.DESINSTALLED | PmJobStatus.REPORTED | PmJobStatus.CANCELLED | PmJobStatus.OTHER | "Erreur";
34
+ loadForm(): void;
35
+ selectPM(selectedSystem: any): void;
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContactComponent, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContactComponent, "awf-contact", never, { "loading": "loading"; "submitted": "submitted"; "systems": "systems"; "selectedSystems": "selectedSystems"; "translate": "translate"; "reasons": "reasons"; }, { "sendForm": "sendForm"; }, never, never, false>;
38
+ }
@@ -0,0 +1,49 @@
1
+ import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
+ import { FormBuilder, FormGroup } from '@angular/forms';
3
+ import { MessageService } from 'primeng/api';
4
+ import { DetailedPmJob } from '../../models/detailedPmJob.model';
5
+ import { PmJobStatus } from '../../models/pmJobStatus';
6
+ import { Reason } from '../../models/reason.model';
7
+ import * as i0 from "@angular/core";
8
+ export declare class ContactSupportComponent implements OnInit, OnChanges {
9
+ private messageService;
10
+ private formBuilder;
11
+ displaycontactSupport: boolean;
12
+ globaltranslate: any;
13
+ translate: any;
14
+ showDate: boolean;
15
+ detailedPmJob: DetailedPmJob;
16
+ reasonContact: string;
17
+ reasons: Reason[];
18
+ sendDetailedPm: EventEmitter<any>;
19
+ sendForm: EventEmitter<any>;
20
+ closeContactSupport: EventEmitter<boolean>;
21
+ form: FormGroup;
22
+ dates: Date[];
23
+ loading: boolean;
24
+ submitted: boolean;
25
+ minDate: Date;
26
+ maxDate: Date;
27
+ displayNumber: boolean;
28
+ selectedReason: Reason;
29
+ constructor(messageService: MessageService, formBuilder: FormBuilder);
30
+ ngOnChanges(changes: SimpleChanges): void;
31
+ ngOnInit(): void;
32
+ loadDatas(): void;
33
+ filterReasons(): void;
34
+ cancelContactSupport(): void;
35
+ get f(): {
36
+ [key: string]: import("@angular/forms").AbstractControl<any, any>;
37
+ };
38
+ setDateRules(): void;
39
+ loadForm(): void;
40
+ contacted(): void;
41
+ contact(): void;
42
+ closeNumber(): void;
43
+ sendContactMeEmailMethode(): void;
44
+ slectsFutureStatus(status: any): PmJobStatus.WAITING | PmJobStatus.DESINSTALLED | PmJobStatus.REPORTED | PmJobStatus.CANCELLED | PmJobStatus.OTHER | "Erreur";
45
+ onSubmit(): void;
46
+ preventStringKeypress(event: any): void;
47
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContactSupportComponent, never>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContactSupportComponent, "app-contact-support", never, { "displaycontactSupport": "displaycontactSupport"; "globaltranslate": "globaltranslate"; "translate": "translate"; "showDate": "showDate"; "detailedPmJob": "detailedPmJob"; "reasonContact": "reasonContact"; "reasons": "reasons"; }, { "sendDetailedPm": "sendDetailedPm"; "sendForm": "sendForm"; "closeContactSupport": "closeContactSupport"; }, never, never, false>;
49
+ }
@@ -0,0 +1,17 @@
1
+ import { OnChanges, SimpleChanges } from '@angular/core';
2
+ import { DetailedPmJob } from '../../models/detailedPmJob.model';
3
+ import { System } from '../../models/system';
4
+ import * as i0 from "@angular/core";
5
+ export declare class DashboardComponent implements OnChanges {
6
+ name: string;
7
+ email: string;
8
+ number: string;
9
+ systems: System[];
10
+ toBeScheduledMaintenanceList: DetailedPmJob[];
11
+ alreadyScheduledMaintenanceList: DetailedPmJob[];
12
+ translate: any;
13
+ constructor();
14
+ ngOnChanges(changes: SimpleChanges): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<DashboardComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<DashboardComponent, "awf-dashboard", never, { "name": "name"; "email": "email"; "number": "number"; "systems": "systems"; "toBeScheduledMaintenanceList": "toBeScheduledMaintenanceList"; "alreadyScheduledMaintenanceList": "alreadyScheduledMaintenanceList"; "translate": "translate"; }, {}, never, never, false>;
17
+ }