@elliemae/pui-scripting-object 1.24.0 → 1.25.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.
|
@@ -242,5 +242,11 @@ export interface IApplication extends IScriptingObject {
|
|
|
242
242
|
* @param logLevel level of the log message
|
|
243
243
|
*/
|
|
244
244
|
log(message: string, logLevel: LogLevel): Promise<void>;
|
|
245
|
+
/**
|
|
246
|
+
* get company settings for a particular category
|
|
247
|
+
* @param category category name
|
|
248
|
+
* @returns company settings as key value pairs. Null if category is not found
|
|
249
|
+
*/
|
|
250
|
+
getCompanySettings(category: string): Promise<Record<string, any> | null>;
|
|
245
251
|
}
|
|
246
252
|
export {};
|
|
@@ -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
|
*/
|