@elliemae/pui-scripting-object 1.23.0 → 1.24.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.
@@ -44,6 +44,14 @@ export type LaunchOptions = {
44
44
  * unique id of the partner
45
45
  */
46
46
  partnerId: string;
47
+ /**
48
+ * unique id of the service provider
49
+ */
50
+ providerId: string;
51
+ /**
52
+ * name of the product
53
+ */
54
+ productName: string;
47
55
  /**
48
56
  * unique id of the existing service order transaction
49
57
  */
@@ -52,10 +60,19 @@ export type LaunchOptions = {
52
60
  * unique id of the existing service order
53
61
  */
54
62
  serviceOrderId?: string;
63
+ /**
64
+ * settings to be passed to the service order integration
65
+ */
66
+ settings?: any;
67
+ /**
68
+ * additional data needed for the service order integration
69
+ */
70
+ additionalData?: any;
55
71
  };
56
72
  /**
57
73
  * Scripting object to work with service orders, such as launching a service order integration etc.,
58
74
  * Enables applications to place service orders, independent of SLP (Service Landing Page) application
75
+ * Errors thrown by the service order integration will be returned to the caller of this Scripting Object method
59
76
  *
60
77
  * #### Product Compatibility:
61
78
  * | | Encompass | Encompass Web | TPO | Consumer Connect |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/pui-scripting-object",
3
- "version": "1.23.0",
3
+ "version": "1.24.1",
4
4
  "description": "Typescript defintions for Scripting Objects",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/cjs/index.js",