@elliemae/pui-scripting-object 1.34.4 → 1.35.0
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.
|
@@ -9,6 +9,9 @@ export type User = {
|
|
|
9
9
|
* unique identifier for the user
|
|
10
10
|
*/
|
|
11
11
|
id: string;
|
|
12
|
+
/**
|
|
13
|
+
* legacy tenant id
|
|
14
|
+
*/
|
|
12
15
|
realm: string;
|
|
13
16
|
/**
|
|
14
17
|
* user's first name
|
|
@@ -54,6 +57,10 @@ export type User = {
|
|
|
54
57
|
* NMLS number
|
|
55
58
|
*/
|
|
56
59
|
nmlsOriginatorId: string;
|
|
60
|
+
/**
|
|
61
|
+
* instance id
|
|
62
|
+
*/
|
|
63
|
+
instanceId: string;
|
|
57
64
|
};
|
|
58
65
|
/**
|
|
59
66
|
* token type
|
|
@@ -187,7 +187,7 @@ export interface IService extends IScriptingObject {
|
|
|
187
187
|
*
|
|
188
188
|
* After the integration flow is complete, user will be redirected back to the url provided in the options.
|
|
189
189
|
*
|
|
190
|
-
* Service order transaction id and service order id will be appended as query parameters to the redirect url incase of new order
|
|
190
|
+
* Service order transaction id (transactionId) and service order id (orderId) will be appended as query parameters to the redirect url incase of new order. For example, if redirectUrl is services, the final url will be services?transactionId=123&orderId=456
|
|
191
191
|
*
|
|
192
192
|
* Supports EPC & EVP service order integrations
|
|
193
193
|
* @param category - name of the service category
|
|
@@ -209,7 +209,7 @@ export interface IService extends IScriptingObject {
|
|
|
209
209
|
*
|
|
210
210
|
* After the integration flow is complete, user will be redirected back to the url provided in the options.
|
|
211
211
|
*
|
|
212
|
-
* Service order transaction id and service order id will be appended as query parameters to the redirect url incase of new order
|
|
212
|
+
* Service order transaction id (transactionId) and service order id (orderId) will be appended as query parameters to the redirect url incase of new order. For example, if redirectUrl is services, the final url will be services?transactionId=123&orderId=456
|
|
213
213
|
*
|
|
214
214
|
* Supports EPC & EVP service order integrations
|
|
215
215
|
* @param serviceSetupId - unique id of the service setup
|
|
@@ -231,7 +231,7 @@ export interface IService extends IScriptingObject {
|
|
|
231
231
|
*
|
|
232
232
|
* After the integration flow is complete, user will be redirected back to the url provided in the options.
|
|
233
233
|
*
|
|
234
|
-
* Service order transaction id and service order id will be appended as query parameters to the redirect url incase of new order
|
|
234
|
+
* Service order transaction id (transactionId) and service order id (orderId) will be appended as query parameters to the redirect url incase of new order. For example, if redirectUrl is services, the final url will be services?transactionId=123&orderId=456
|
|
235
235
|
*
|
|
236
236
|
* Supports EPC & EVP service order integrations
|
|
237
237
|
* @param providerId - unique id of the service provider
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/pui-scripting-object",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.35.0",
|
|
4
4
|
"description": "Typescript defintions for Scripting Objects",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -63,8 +63,7 @@
|
|
|
63
63
|
"jestSonar": {
|
|
64
64
|
"reportPath": "reports",
|
|
65
65
|
"reportFile": "tests.xml",
|
|
66
|
-
"indent": 4
|
|
67
|
-
"sonar56x": true
|
|
66
|
+
"indent": 4
|
|
68
67
|
},
|
|
69
68
|
"devDependencies": {
|
|
70
69
|
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.9.0",
|