@rangertechnologies/ngnxt 2.0.27 → 2.0.28

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 (54) hide show
  1. package/README.md +24 -24
  2. package/esm2022/lib/components/custom-date-picker/custom-date-picker.component.mjs +33 -33
  3. package/esm2022/lib/components/custom-dropdown/custom-dropdown.component.mjs +82 -73
  4. package/esm2022/lib/components/custom-input/custom-input.component.mjs +75 -46
  5. package/esm2022/lib/components/custom-table/custom-table.component.mjs +51 -51
  6. package/esm2022/lib/components/custom-text-area/custom-text-area.component.mjs +34 -34
  7. package/esm2022/lib/components/dropdown-with-flag/dropdown-with-flag.component.mjs +34 -34
  8. package/esm2022/lib/components/pick-location/pick-location.component.mjs +134 -134
  9. package/esm2022/lib/components/search-box/search-box.component.mjs +84 -84
  10. package/esm2022/lib/interfaces/actionMeta.mjs +2 -0
  11. package/esm2022/lib/interfaces/apimeta.mjs +2 -2
  12. package/esm2022/lib/interfaces/dependencyMeta.mjs +2 -0
  13. package/esm2022/lib/model/changeWrapper.mjs +8 -0
  14. package/esm2022/lib/nxt-app.component.mjs +22 -22
  15. package/esm2022/lib/nxt-app.module.mjs +262 -262
  16. package/esm2022/lib/nxt-app.service.mjs +14 -14
  17. package/esm2022/lib/pages/booklet/booklet.component.mjs +89 -79
  18. package/esm2022/lib/pages/questionnaire/questionnaire.component.mjs +2139 -2131
  19. package/esm2022/lib/sample.mjs +432 -432
  20. package/esm2022/lib/services/change.service.mjs +33 -0
  21. package/esm2022/lib/services/data.service.mjs +40 -40
  22. package/esm2022/lib/services/salesforce.service.mjs +46 -46
  23. package/esm2022/lib/wrapper.mjs +165 -165
  24. package/esm2022/public-api.mjs +10 -10
  25. package/esm2022/rangertechnologies-ngnxt.mjs +4 -4
  26. package/fesm2022/rangertechnologies-ngnxt.mjs +3643 -3552
  27. package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
  28. package/index.d.ts +5 -5
  29. package/lib/components/custom-date-picker/custom-date-picker.component.d.ts +14 -14
  30. package/lib/components/custom-dropdown/custom-dropdown.component.d.ts +26 -23
  31. package/lib/components/custom-input/custom-input.component.d.ts +26 -18
  32. package/lib/components/custom-table/custom-table.component.d.ts +23 -23
  33. package/lib/components/custom-text-area/custom-text-area.component.d.ts +14 -14
  34. package/lib/components/dropdown-with-flag/dropdown-with-flag.component.d.ts +14 -14
  35. package/lib/components/pick-location/pick-location.component.d.ts +38 -38
  36. package/lib/components/search-box/search-box.component.d.ts +34 -34
  37. package/lib/interfaces/actionMeta.d.ts +5 -0
  38. package/lib/interfaces/apimeta.d.ts +5 -5
  39. package/lib/interfaces/dependencyMeta.d.ts +5 -0
  40. package/lib/model/changeWrapper.d.ts +7 -0
  41. package/lib/nxt-app.component.d.ts +8 -8
  42. package/lib/nxt-app.module.d.ts +26 -26
  43. package/lib/nxt-app.service.d.ts +6 -6
  44. package/lib/pages/booklet/booklet.component.d.ts +33 -29
  45. package/lib/pages/questionnaire/questionnaire.component.d.ts +209 -207
  46. package/lib/sample.d.ts +10 -10
  47. package/lib/services/change.service.d.ts +13 -0
  48. package/lib/services/data.service.d.ts +9 -9
  49. package/lib/services/salesforce.service.d.ts +11 -11
  50. package/lib/wrapper.d.ts +164 -164
  51. package/package.json +1 -1
  52. package/public-api.d.ts +6 -6
  53. package/rangertechnologies-ngnxt-2.0.28.tgz +0 -0
  54. package/rangertechnologies-ngnxt-2.0.27.tgz +0 -0
@@ -1,207 +1,209 @@
1
- import { OnInit, EventEmitter, ElementRef } from "@angular/core";
2
- import { ActivatedRoute, Params } from "@angular/router";
3
- import { SalesforceService } from "../../services/salesforce.service";
4
- import { IMyDateModel, IMyDpOptions } from "mydatepicker";
5
- import { DomSanitizer, SafeHtml } from "@angular/platform-browser";
6
- import { UntypedFormBuilder } from "@angular/forms";
7
- import { NgxSpinnerService } from "ngx-spinner";
8
- import { DeviceDetectorService } from 'ngx-device-detector';
9
- import { DataService } from '../../services/data.service';
10
- import { Question, QuestionBook, AnswerBook, AnswerWrapper, OptionValue, LocalQuestion } from "../../wrapper";
11
- import * as i0 from "@angular/core";
12
- export declare class QuestionnaireComponent implements OnInit {
13
- private sfService;
14
- private dataService;
15
- private route;
16
- private sanitizer;
17
- private spinner;
18
- private _formBuilder;
19
- private deviceService;
20
- qbId: string;
21
- insuranceStartDate: string;
22
- serv: string;
23
- tkn: string;
24
- handleEvent: EventEmitter<any>;
25
- handlePage: EventEmitter<any>;
26
- params: Params;
27
- deviceInfo: any;
28
- abItem: AnswerBook;
29
- qbItem: QuestionBook;
30
- questionItem: Question;
31
- answerWrap: AnswerWrapper;
32
- radioFlag: boolean;
33
- dataFlag: boolean;
34
- dropdownFlag: boolean;
35
- checkboxFlag: boolean;
36
- textFlag: boolean;
37
- taFlag: boolean;
38
- dtFlag: boolean;
39
- timeFlag: boolean;
40
- dateFlag: boolean;
41
- fileFlag: boolean;
42
- emailFlag: boolean;
43
- numberFlag: boolean;
44
- alphanumericFlag: boolean;
45
- bookFlag: boolean;
46
- listFlag: boolean;
47
- backButtonFlag: boolean;
48
- optionValues: OptionValue[];
49
- subQuestions: Question[];
50
- inpValue: string;
51
- answerMap: Map<any, any>;
52
- dateMap: Map<any, any>;
53
- selectedhourMap: Map<any, any>;
54
- selectedminuteMap: Map<any, any>;
55
- attachmentsMap: Map<any, any>;
56
- sqOptions: Map<any, any>;
57
- subAnsMap: Map<any, any>;
58
- localSubQuestions: LocalQuestion[];
59
- questionStack: any[];
60
- questionName: any[];
61
- attachments: any[];
62
- attachmentIdList: any[];
63
- attachmentId: string;
64
- attachment: any;
65
- allowedFileExtension: string[];
66
- fileExceededLimit: boolean;
67
- fileTypeIncorrect: boolean;
68
- back: boolean;
69
- backicon: boolean;
70
- check: boolean;
71
- pop: boolean;
72
- localDate: string;
73
- currentName: string;
74
- pathquestion: number;
75
- percent: number;
76
- count: number;
77
- taFocusOut: boolean;
78
- notValidAccNum: boolean;
79
- splCCBackClick: boolean;
80
- summary: any[];
81
- localSubQMap: Map<any, any>;
82
- keyIndex: number;
83
- selDate: any;
84
- selectDate: string;
85
- private today;
86
- private el;
87
- innerhtml: any;
88
- possibilities: any;
89
- innerhtml1: any;
90
- summaryData: any[];
91
- tableData1: any[];
92
- tableData2: any[];
93
- hours: any[];
94
- minutes: string[];
95
- selectedHour: string;
96
- selectedMinute: string;
97
- selectedMeridiem: string;
98
- valueName: string;
99
- valueName1: string;
100
- bookFlagAccept: string[];
101
- recordId: string;
102
- currentQuestionId: string;
103
- spinnerType: string;
104
- spinnerName: string;
105
- nextValue: string;
106
- start_date?: any;
107
- tempoAddress: any[];
108
- selectedValue: string;
109
- selectedPostalcode: string;
110
- selectedProvince: string;
111
- selectedCity: string;
112
- selectedArea: string;
113
- localaddress: any[];
114
- allAddress: any[];
115
- PostalCode: string;
116
- places: any[];
117
- province: any[];
118
- progressStyle: string;
119
- answerCount: number;
120
- indexCount: number;
121
- addFlag: boolean;
122
- myDatePickerOptions: IMyDpOptions;
123
- individualBookButton: boolean;
124
- constructor(sfService: SalesforceService, dataService: DataService, route: ActivatedRoute, sanitizer: DomSanitizer, spinner: NgxSpinnerService, _formBuilder: UntypedFormBuilder, deviceService: DeviceDetectorService, el: ElementRef);
125
- onDateChanged(event: IMyDateModel): void;
126
- ngOnInit(): void;
127
- ngOnChanges(): void;
128
- date_TimeMap(): void;
129
- day(): void;
130
- change(): void;
131
- processQB(): void;
132
- trimLastDummy(input: string): string;
133
- getProperTime(def: string, input: string): string;
134
- handleEditClick(value: string): void;
135
- handleNextClick(): void;
136
- AnswerSave(): void;
137
- next(): void;
138
- getText(value: any): SafeHtml;
139
- handleBackClick(): void;
140
- handleBackClickNew(): void;
141
- private updateAnswerBook;
142
- private successupdateAB;
143
- private failureupdateAB;
144
- private readQuestionBook;
145
- private successReadBook;
146
- private failureReadBook;
147
- private readAnswerbook;
148
- private successAnswerBookRead;
149
- private failureAnswerBookRead;
150
- private readQuestion;
151
- private successRead;
152
- trackId(): void;
153
- private failureRead;
154
- private saveAnswer;
155
- htmlDecode(input: any): string;
156
- private successSave;
157
- private failureSave;
158
- private processQuestion;
159
- setFlag(typ: any): void;
160
- resetFlag(typ: any): void;
161
- setOptions(records: any): void;
162
- Dropdown(event: any, ques?: any): void;
163
- setSubQuestions(records: any): void;
164
- optionChange(selValue: any): void;
165
- clearError(): void;
166
- clearLocalSubQuesError(quesId: any): void;
167
- inputValidate(e: any): boolean;
168
- CCOnChange(inpValue: string): void;
169
- isNotValidAccNumber(s: string): boolean;
170
- clearSQError(quesId: any): void;
171
- uploadFile(event: any, ques?: any): void;
172
- private successAttachmentCreate;
173
- private successAttachmentDelete;
174
- private failureAttachmentCreate;
175
- private failureAttachmentDelete;
176
- handleSubmitClick(): void;
177
- handleCancelClick(): void;
178
- private createAttachment;
179
- deleteAttachment(attachmentId: string): void;
180
- private deleteSFAttachment;
181
- getFileName(fileNamewithIdandType: any): any;
182
- fileUI(): void;
183
- updateProgress(): void;
184
- townName(area: any): void;
185
- getTownLocal(): void;
186
- clearList(): void;
187
- setSearchListWidth(): void;
188
- getCode(): void;
189
- getPostalcode(value: any): void;
190
- closeDropdown(): void;
191
- structLocalSubQuestion(ques: LocalQuestion): void;
192
- addInputBox(question: LocalQuestion, index: number): void;
193
- removeAddress(quesUniqueId: string, qName: string): void;
194
- getLocalSubQuestions(id: String): any;
195
- Add(question: LocalQuestion): void;
196
- handleLocationSelected(location: any, ques: any): void;
197
- selectedInput(input: any, ques: any): void;
198
- handleTextareaValueChange(value: string): void;
199
- getData(data: any): void;
200
- dependentChange(value: any): void;
201
- displayDate(dateSelected: any, ques: any): void;
202
- getKey(item: any): any;
203
- getValue(item: any): any;
204
- getTableData(ques: any): any[];
205
- static ɵfac: i0.ɵɵFactoryDeclaration<QuestionnaireComponent, never>;
206
- static ɵcmp: i0.ɵɵComponentDeclaration<QuestionnaireComponent, "lib-questionnaire", never, { "qbId": "qbId"; "insuranceStartDate": "insuranceStartDate"; "serv": "serv"; "tkn": "tkn"; }, { "handleEvent": "handleEvent"; "handlePage": "handlePage"; }, never, never, false>;
207
- }
1
+ import { OnInit, EventEmitter, ElementRef } from "@angular/core";
2
+ import { ActivatedRoute, Params } from "@angular/router";
3
+ import { SalesforceService } from "../../services/salesforce.service";
4
+ import { IMyDateModel, IMyDpOptions } from "mydatepicker";
5
+ import { DomSanitizer, SafeHtml } from "@angular/platform-browser";
6
+ import { UntypedFormBuilder } from "@angular/forms";
7
+ import { NgxSpinnerService } from "ngx-spinner";
8
+ import { DeviceDetectorService } from 'ngx-device-detector';
9
+ import { DataService } from '../../services/data.service';
10
+ import { ChangeService } from '../../services/change.service';
11
+ import { Question, QuestionBook, AnswerBook, AnswerWrapper, OptionValue, LocalQuestion } from "../../wrapper";
12
+ import * as i0 from "@angular/core";
13
+ export declare class QuestionnaireComponent implements OnInit {
14
+ private sfService;
15
+ private dataService;
16
+ private changeService;
17
+ private route;
18
+ private sanitizer;
19
+ private spinner;
20
+ private _formBuilder;
21
+ private deviceService;
22
+ qbId: string;
23
+ insuranceStartDate: string;
24
+ serv: string;
25
+ tkn: string;
26
+ handleEvent: EventEmitter<any>;
27
+ handlePage: EventEmitter<any>;
28
+ params: Params;
29
+ deviceInfo: any;
30
+ abItem: AnswerBook;
31
+ qbItem: QuestionBook;
32
+ questionItem: Question;
33
+ answerWrap: AnswerWrapper;
34
+ radioFlag: boolean;
35
+ dataFlag: boolean;
36
+ dropdownFlag: boolean;
37
+ checkboxFlag: boolean;
38
+ textFlag: boolean;
39
+ taFlag: boolean;
40
+ dtFlag: boolean;
41
+ timeFlag: boolean;
42
+ dateFlag: boolean;
43
+ fileFlag: boolean;
44
+ emailFlag: boolean;
45
+ numberFlag: boolean;
46
+ alphanumericFlag: boolean;
47
+ bookFlag: boolean;
48
+ listFlag: boolean;
49
+ backButtonFlag: boolean;
50
+ optionValues: OptionValue[];
51
+ subQuestions: Question[];
52
+ inpValue: string;
53
+ answerMap: Map<any, any>;
54
+ dateMap: Map<any, any>;
55
+ selectedhourMap: Map<any, any>;
56
+ selectedminuteMap: Map<any, any>;
57
+ attachmentsMap: Map<any, any>;
58
+ sqOptions: Map<any, any>;
59
+ subAnsMap: Map<any, any>;
60
+ localSubQuestions: LocalQuestion[];
61
+ questionStack: any[];
62
+ questionName: any[];
63
+ attachments: any[];
64
+ attachmentIdList: any[];
65
+ attachmentId: string;
66
+ attachment: any;
67
+ allowedFileExtension: string[];
68
+ fileExceededLimit: boolean;
69
+ fileTypeIncorrect: boolean;
70
+ back: boolean;
71
+ backicon: boolean;
72
+ check: boolean;
73
+ pop: boolean;
74
+ localDate: string;
75
+ currentName: string;
76
+ pathquestion: number;
77
+ percent: number;
78
+ count: number;
79
+ taFocusOut: boolean;
80
+ notValidAccNum: boolean;
81
+ splCCBackClick: boolean;
82
+ summary: any[];
83
+ localSubQMap: Map<any, any>;
84
+ keyIndex: number;
85
+ selDate: any;
86
+ selectDate: string;
87
+ private today;
88
+ private el;
89
+ innerhtml: any;
90
+ possibilities: any;
91
+ innerhtml1: any;
92
+ summaryData: any[];
93
+ tableData1: any[];
94
+ tableData2: any[];
95
+ hours: any[];
96
+ minutes: string[];
97
+ selectedHour: string;
98
+ selectedMinute: string;
99
+ selectedMeridiem: string;
100
+ valueName: string;
101
+ valueName1: string;
102
+ bookFlagAccept: string[];
103
+ recordId: string;
104
+ currentQuestionId: string;
105
+ spinnerType: string;
106
+ spinnerName: string;
107
+ nextValue: string;
108
+ start_date?: any;
109
+ tempoAddress: any[];
110
+ selectedValue: string;
111
+ selectedPostalcode: string;
112
+ selectedProvince: string;
113
+ selectedCity: string;
114
+ selectedArea: string;
115
+ localaddress: any[];
116
+ allAddress: any[];
117
+ PostalCode: string;
118
+ places: any[];
119
+ province: any[];
120
+ progressStyle: string;
121
+ answerCount: number;
122
+ indexCount: number;
123
+ addFlag: boolean;
124
+ myDatePickerOptions: IMyDpOptions;
125
+ individualBookButton: boolean;
126
+ constructor(sfService: SalesforceService, dataService: DataService, changeService: ChangeService, route: ActivatedRoute, sanitizer: DomSanitizer, spinner: NgxSpinnerService, _formBuilder: UntypedFormBuilder, deviceService: DeviceDetectorService, el: ElementRef);
127
+ onDateChanged(event: IMyDateModel): void;
128
+ ngOnInit(): void;
129
+ ngOnChanges(): void;
130
+ date_TimeMap(): void;
131
+ day(): void;
132
+ change(): void;
133
+ processQB(): void;
134
+ trimLastDummy(input: string): string;
135
+ getProperTime(def: string, input: string): string;
136
+ handleEditClick(value: string): void;
137
+ handleNextClick(): void;
138
+ AnswerSave(): void;
139
+ next(): void;
140
+ getText(value: any): SafeHtml;
141
+ handleBackClick(): void;
142
+ handleBackClickNew(): void;
143
+ private updateAnswerBook;
144
+ private successupdateAB;
145
+ private failureupdateAB;
146
+ private readQuestionBook;
147
+ private successReadBook;
148
+ private failureReadBook;
149
+ private readAnswerbook;
150
+ private successAnswerBookRead;
151
+ private failureAnswerBookRead;
152
+ private readQuestion;
153
+ private successRead;
154
+ trackId(): void;
155
+ private failureRead;
156
+ private saveAnswer;
157
+ htmlDecode(input: any): string;
158
+ private successSave;
159
+ private failureSave;
160
+ private processQuestion;
161
+ setFlag(typ: any): void;
162
+ resetFlag(typ: any): void;
163
+ setOptions(records: any): void;
164
+ childEventCapture(event: any, ques?: any): void;
165
+ setSubQuestions(records: any): void;
166
+ optionChange(selValue: any): void;
167
+ clearError(): void;
168
+ clearLocalSubQuesError(quesId: any): void;
169
+ inputValidate(e: any): boolean;
170
+ CCOnChange(inpValue: string): void;
171
+ isNotValidAccNumber(s: string): boolean;
172
+ clearSQError(quesId: any): void;
173
+ uploadFile(event: any, ques?: any): void;
174
+ private successAttachmentCreate;
175
+ private successAttachmentDelete;
176
+ private failureAttachmentCreate;
177
+ private failureAttachmentDelete;
178
+ handleSubmitClick(): void;
179
+ handleCancelClick(): void;
180
+ private createAttachment;
181
+ deleteAttachment(attachmentId: string): void;
182
+ private deleteSFAttachment;
183
+ getFileName(fileNamewithIdandType: any): any;
184
+ fileUI(): void;
185
+ updateProgress(): void;
186
+ townName(area: any): void;
187
+ getTownLocal(): void;
188
+ clearList(): void;
189
+ setSearchListWidth(): void;
190
+ getCode(): void;
191
+ getPostalcode(value: any): void;
192
+ closeDropdown(): void;
193
+ structLocalSubQuestion(ques: LocalQuestion): void;
194
+ addInputBox(question: LocalQuestion, index: number): void;
195
+ removeAddress(quesUniqueId: string, qName: string): void;
196
+ getLocalSubQuestions(id: String): any;
197
+ Add(question: LocalQuestion): void;
198
+ handleLocationSelected(location: any, ques: any): void;
199
+ selectedInput(input: any, ques: any): void;
200
+ handleTextareaValueChange(value: string): void;
201
+ getData(data: any): void;
202
+ dependentChange(value: any): void;
203
+ displayDate(dateSelected: any, ques: any): void;
204
+ getKey(item: any): any;
205
+ getValue(item: any): any;
206
+ getTableData(ques: any): any[];
207
+ static ɵfac: i0.ɵɵFactoryDeclaration<QuestionnaireComponent, never>;
208
+ static ɵcmp: i0.ɵɵComponentDeclaration<QuestionnaireComponent, "lib-questionnaire", never, { "qbId": "qbId"; "insuranceStartDate": "insuranceStartDate"; "serv": "serv"; "tkn": "tkn"; }, { "handleEvent": "handleEvent"; "handlePage": "handlePage"; }, never, never, false>;
209
+ }
package/lib/sample.d.ts CHANGED
@@ -1,10 +1,10 @@
1
- import { Question, QuestionBook } from "./wrapper";
2
- export declare const TESTQB: QuestionBook;
3
- export declare const TESTQUESTION: Question;
4
- export declare const DTQUESTION: Question;
5
- export declare const FILEQUESTION: Question;
6
- export declare const TAQUESTION: Question;
7
- export declare const RADIOQUESTION: Question;
8
- export declare const CHECKQUESTION: Question;
9
- export declare const GOOGLE_MAP_API_KEY = "AIzaSyA18odJnD-pDsu7EVJ7WiXVM5sVvpjAQxw";
10
- export declare const BOOKQUESTION: Question;
1
+ import { Question, QuestionBook } from "./wrapper";
2
+ export declare const TESTQB: QuestionBook;
3
+ export declare const TESTQUESTION: Question;
4
+ export declare const DTQUESTION: Question;
5
+ export declare const FILEQUESTION: Question;
6
+ export declare const TAQUESTION: Question;
7
+ export declare const RADIOQUESTION: Question;
8
+ export declare const CHECKQUESTION: Question;
9
+ export declare const GOOGLE_MAP_API_KEY = "AIzaSyA18odJnD-pDsu7EVJ7WiXVM5sVvpjAQxw";
10
+ export declare const BOOKQUESTION: Question;
@@ -0,0 +1,13 @@
1
+ import { ChangeWrapper } from '../model/changeWrapper';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ChangeService {
4
+ constructor();
5
+ private changeAnnouncedSource;
6
+ private changeConfirmedSource;
7
+ changeAnnounced$: import("rxjs").Observable<ChangeWrapper>;
8
+ changeConfirmed$: import("rxjs").Observable<string>;
9
+ announceChange(changeValue: ChangeWrapper): void;
10
+ confirmChange(childQuestion: string): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChangeService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<ChangeService>;
13
+ }
@@ -1,9 +1,9 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import * as i0 from "@angular/core";
3
- export declare class DataService {
4
- private http;
5
- constructor(http: HttpClient);
6
- getAPIData(tkn: string, params: string[], resolve: any, reject: any, config?: any): void;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<DataService, never>;
8
- static ɵprov: i0.ɵɵInjectableDeclaration<DataService>;
9
- }
1
+ import { HttpClient } from '@angular/common/http';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DataService {
4
+ private http;
5
+ constructor(http: HttpClient);
6
+ getAPIData(tkn: string, params: string[], resolve: any, reject: any, config?: any): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<DataService, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<DataService>;
9
+ }
@@ -1,11 +1,11 @@
1
- import { Router } from '@angular/router';
2
- import * as i0 from "@angular/core";
3
- export declare class SalesforceService {
4
- private _router;
5
- getSFResource: (path: string) => string;
6
- getRNXTMethodName: () => string;
7
- remoteAction(methodName: string, params: string[], resolve: any, reject: any, config?: any): void;
8
- constructor(_router: Router);
9
- static ɵfac: i0.ɵɵFactoryDeclaration<SalesforceService, never>;
10
- static ɵprov: i0.ɵɵInjectableDeclaration<SalesforceService>;
11
- }
1
+ import { Router } from '@angular/router';
2
+ import * as i0 from "@angular/core";
3
+ export declare class SalesforceService {
4
+ private _router;
5
+ getSFResource: (path: string) => string;
6
+ getRNXTMethodName: () => string;
7
+ remoteAction(methodName: string, params: string[], resolve: any, reject: any, config?: any): void;
8
+ constructor(_router: Router);
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<SalesforceService, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<SalesforceService>;
11
+ }