@elliemae/pui-scripting-object 1.35.3 → 1.36.1
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.
|
@@ -55,6 +55,10 @@ export type LaunchCategoryOptions = {
|
|
|
55
55
|
* @example NavigationType.STANDARD_FORM
|
|
56
56
|
*/
|
|
57
57
|
targetType: NavigationType;
|
|
58
|
+
/**
|
|
59
|
+
* additional query parameters to be passed to the redirect location. For example, if rediret requested to services area with targetParams { "key1": "value1", "key2": "value2"}, the url will have querystring as services?query={"transactionId":123, "orderId":456, "key1": "value1", "key2": "value2"}
|
|
60
|
+
*/
|
|
61
|
+
targetParams?: Record<string, string>;
|
|
58
62
|
};
|
|
59
63
|
/**
|
|
60
64
|
* unique id of the existing service order transaction
|
|
@@ -97,6 +101,10 @@ export type LaunchServiceSetupOptions = {
|
|
|
97
101
|
* @example NavigationType.STANDARD_FORM
|
|
98
102
|
*/
|
|
99
103
|
targetType: NavigationType;
|
|
104
|
+
/**
|
|
105
|
+
* additional query parameters to be passed to the redirect location. For example, if rediret requested to services area with targetParams { "key1": "value1", "key2": "value2"}, the url will have querystring as services?query={"transactionId":123, "orderId":456, "key1": "value1", "key2": "value2"}
|
|
106
|
+
*/
|
|
107
|
+
targetParams?: Record<string, string>;
|
|
100
108
|
};
|
|
101
109
|
/**
|
|
102
110
|
* unique id of the existing service order transaction
|
|
@@ -139,6 +147,10 @@ export type LaunchProviderOptions = {
|
|
|
139
147
|
* @example NavigationType.STANDARD_FORM
|
|
140
148
|
*/
|
|
141
149
|
targetType: NavigationType;
|
|
150
|
+
/**
|
|
151
|
+
* additional query parameters to be passed to the redirect location. For example, if rediret requested to services area with targetParams { "key1": "value1", "key2": "value2"}, the url will have querystring as services?query={"transactionId":123, "orderId":456, "key1": "value1", "key2": "value2"}
|
|
152
|
+
*/
|
|
153
|
+
targetParams?: Record<string, string>;
|
|
142
154
|
};
|
|
143
155
|
/**
|
|
144
156
|
* unique id of the existing service order transaction
|
|
@@ -189,7 +201,7 @@ export interface IService extends IScriptingObject {
|
|
|
189
201
|
*
|
|
190
202
|
* After the integration flow is complete, user will be redirected to the location provided in the input parameter.
|
|
191
203
|
*
|
|
192
|
-
* Service order transaction id (transactionId) and service order id (orderId) will be appended as query parameters to the url incase of new order. For example, if rediret requested to services area, the url will have querystring as services?transactionId
|
|
204
|
+
* Service order transaction id (transactionId) and service order id (orderId) will be appended as query parameters to the url incase of new order. For example, if rediret requested to services area, the url will have querystring as services?query={"transactionId":123, "orderId":456}
|
|
193
205
|
*
|
|
194
206
|
* Supports EPC & EVP service order integrations
|
|
195
207
|
* @param category - name of the service category
|
|
@@ -211,7 +223,7 @@ export interface IService extends IScriptingObject {
|
|
|
211
223
|
*
|
|
212
224
|
* After the integration flow is complete, user will be redirected to the location provided in the input parameter.
|
|
213
225
|
*
|
|
214
|
-
* Service order transaction id (transactionId) and service order id (orderId) will be appended as query parameters to the url incase of new order. For example, if rediret requested to services area, the url will have querystring as services?transactionId
|
|
226
|
+
* Service order transaction id (transactionId) and service order id (orderId) will be appended as query parameters to the url incase of new order. For example, if rediret requested to services area, the url will have querystring as services?query={"transactionId":123, "orderId":456}
|
|
215
227
|
*
|
|
216
228
|
* Supports EPC & EVP service order integrations
|
|
217
229
|
* @param serviceSetupId - unique id of the service setup
|
|
@@ -233,7 +245,7 @@ export interface IService extends IScriptingObject {
|
|
|
233
245
|
*
|
|
234
246
|
* After the integration flow is complete, user will be redirected to the location provided in the input parameter.
|
|
235
247
|
*
|
|
236
|
-
* Service order transaction id (transactionId) and service order id (orderId) will be appended as query parameters to the url incase of new order. For example, if rediret requested to services area, the url will have querystring as services?transactionId
|
|
248
|
+
* Service order transaction id (transactionId) and service order id (orderId) will be appended as query parameters to the url incase of new order. For example, if rediret requested to services area, the url will have querystring as services?query={"transactionId":123, "orderId":456}
|
|
237
249
|
*
|
|
238
250
|
* Supports EPC & EVP service order integrations
|
|
239
251
|
* @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.36.1",
|
|
4
4
|
"description": "Typescript defintions for Scripting Objects",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.9.0",
|
|
70
|
-
"@elliemae/pui-cli": "~8.
|
|
70
|
+
"@elliemae/pui-cli": "~8.34.0",
|
|
71
71
|
"@elliemae/pui-doc-gen": "~2.0.1",
|
|
72
72
|
"@elliemae/pui-theme": "~2.9.3",
|
|
73
73
|
"@types/styled-components": "~5.1.34",
|