@elliemae/pui-scripting-object 1.34.3 → 1.34.4
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.
|
@@ -163,7 +163,7 @@ export type LaunchProviderOptions = {
|
|
|
163
163
|
* #### Product Compatibility:
|
|
164
164
|
* | | Encompass | Encompass Web | TPO | Consumer Connect |
|
|
165
165
|
* :-----:|:-----: |:-----: |:-----: |:-----: |
|
|
166
|
-
* | all | ✖️ |
|
|
166
|
+
* | all | ✖️ | ✔ | ✖️ | ✖️ |
|
|
167
167
|
*/
|
|
168
168
|
export interface IService extends IScriptingObject {
|
|
169
169
|
/**
|
|
@@ -175,14 +175,20 @@ export interface IService extends IScriptingObject {
|
|
|
175
175
|
* #### Product Compatibility:
|
|
176
176
|
* | | Encompass | Encompass Web | TPO | Consumer Connect |
|
|
177
177
|
* :-----:|:-----: |:-----: |:-----: |:-----: |
|
|
178
|
-
* | all | ✖️ |
|
|
178
|
+
* | all | ✖️ | ✔ | ✖️ | ✖️ |
|
|
179
179
|
*/
|
|
180
180
|
getEligibleServices: (category: ServiceSetupCategory, providerId?: string) => Promise<Array<ServiceSetup>>;
|
|
181
181
|
/**
|
|
182
|
-
*
|
|
182
|
+
* Launch a service intergration for a specific category to place a new service order or view existing order.
|
|
183
|
+
*
|
|
184
|
+
* Commit all unsaved loan changes using loan.commit, before calling this method.
|
|
185
|
+
*
|
|
183
186
|
* This method will unload the current microapp and navigate to the service order integration
|
|
184
|
-
*
|
|
185
|
-
*
|
|
187
|
+
*
|
|
188
|
+
* After the integration flow is complete, user will be redirected back to the url provided in the options.
|
|
189
|
+
*
|
|
190
|
+
* Service order transaction id and service order id will be appended as query parameters to the redirect url incase of new order
|
|
191
|
+
*
|
|
186
192
|
* Supports EPC & EVP service order integrations
|
|
187
193
|
* @param category - name of the service category
|
|
188
194
|
* @param {LaunchCategoryOptions} options - options for launching the service order integration
|
|
@@ -191,14 +197,20 @@ export interface IService extends IScriptingObject {
|
|
|
191
197
|
* #### Product Compatibility:
|
|
192
198
|
* | | Encompass | Encompass Web | TPO | Consumer Connect |
|
|
193
199
|
* :-----:|:-----: |:-----: |:-----: |:-----: |
|
|
194
|
-
* | all | ✖️ |
|
|
200
|
+
* | all | ✖️ | ✔ | ✖️ | ✖️ |
|
|
195
201
|
*/
|
|
196
202
|
launchByCategory: (category: string, options: LaunchCategoryOptions) => Promise<void>;
|
|
197
203
|
/**
|
|
198
|
-
*
|
|
199
|
-
*
|
|
200
|
-
*
|
|
201
|
-
*
|
|
204
|
+
* Launch a service intergration for a specific service setup to place a new service order or view existing order.
|
|
205
|
+
*
|
|
206
|
+
* Commit all unsaved loan changes using loan.commit, before calling this method.
|
|
207
|
+
*
|
|
208
|
+
* This method will unload the current microapp and navigate to the service order integration.
|
|
209
|
+
*
|
|
210
|
+
* After the integration flow is complete, user will be redirected back to the url provided in the options.
|
|
211
|
+
*
|
|
212
|
+
* Service order transaction id and service order id will be appended as query parameters to the redirect url incase of new order
|
|
213
|
+
*
|
|
202
214
|
* Supports EPC & EVP service order integrations
|
|
203
215
|
* @param serviceSetupId - unique id of the service setup
|
|
204
216
|
* @param {LaunchServiceSetupOptions} options - options for launching the service order integration
|
|
@@ -207,14 +219,20 @@ export interface IService extends IScriptingObject {
|
|
|
207
219
|
* #### Product Compatibility:
|
|
208
220
|
* | | Encompass | Encompass Web | TPO | Consumer Connect |
|
|
209
221
|
* :-----:|:-----: |:-----: |:-----: |:-----: |
|
|
210
|
-
* | all | ✖️ |
|
|
222
|
+
* | all | ✖️ | ✔ | ✖️ | ✖️ |
|
|
211
223
|
*/
|
|
212
224
|
launchByServiceSetup: (serviceSetupId: string, options: LaunchServiceSetupOptions) => Promise<void>;
|
|
213
225
|
/**
|
|
214
|
-
*
|
|
226
|
+
* Launch a service intergration for a specific provider to place a new service order or view existing order
|
|
227
|
+
*
|
|
228
|
+
* Commit all unsaved loan changes using loan.commit, before calling this method.
|
|
229
|
+
*
|
|
215
230
|
* This method will unload the current microapp and navigate to the service order integration
|
|
216
|
-
*
|
|
217
|
-
*
|
|
231
|
+
*
|
|
232
|
+
* After the integration flow is complete, user will be redirected back to the url provided in the options.
|
|
233
|
+
*
|
|
234
|
+
* Service order transaction id and service order id will be appended as query parameters to the redirect url incase of new order
|
|
235
|
+
*
|
|
218
236
|
* Supports EPC & EVP service order integrations
|
|
219
237
|
* @param providerId - unique id of the service provider
|
|
220
238
|
* @param {LaunchProviderOptions} options - options for launching the service order integration
|