spitfirepm 23.9600.13 → 23.9600.15
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.
- package/README.md +1 -0
- package/dist/SwaggerClients.d.ts +44 -11
- package/dist/SwaggerClients.js +284 -75
- package/dist/SwaggerClients.js.map +1 -1
- package/dist/sfRESTClient.js +41 -34
- package/dist/sfRESTClient.js.map +1 -1
- package/dist/version.d.ts +1 -0
- package/dist/version.js +6 -0
- package/dist/version.js.map +1 -0
- package/package.json +2 -1
package/README.md
CHANGED
package/dist/SwaggerClients.d.ts
CHANGED
|
@@ -384,13 +384,13 @@ export declare class ARRClient extends APIClientBase {
|
|
|
384
384
|
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
385
385
|
constructor(baseUrl?: string);
|
|
386
386
|
/**
|
|
387
|
-
*
|
|
387
|
+
* Queue the routed-content download package build
|
|
388
388
|
* @param data download request {RouteID}
|
|
389
389
|
*/
|
|
390
|
-
getContent(data: ArrResponseData): Promise<string
|
|
390
|
+
getContent(data: ArrResponseData): Promise<string>;
|
|
391
391
|
private getContentWithCallbacks;
|
|
392
392
|
private processGetContentWithCallbacks;
|
|
393
|
-
protected processGetContent(xhr: any): string | null
|
|
393
|
+
protected processGetContent(xhr: any): string | null;
|
|
394
394
|
/**
|
|
395
395
|
* Open a route-response link
|
|
396
396
|
* @param request open request {StepKey, RouteID}
|
|
@@ -1228,6 +1228,14 @@ export declare class ConfigClient extends APIClientBase {
|
|
|
1228
1228
|
private deleteEventSubscriptionsWithCallbacks;
|
|
1229
1229
|
private processDeleteEventSubscriptionsWithCallbacks;
|
|
1230
1230
|
protected processDeleteEventSubscriptions(xhr: any): number | null;
|
|
1231
|
+
/**
|
|
1232
|
+
* Returns a named dashboard tool menu
|
|
1233
|
+
* @param menuId The DropDownMenu name, e.g. ManagerToolMenu or AdminToolMenu
|
|
1234
|
+
*/
|
|
1235
|
+
getToolsMenu(menuId: string | null): Promise<MenuAction[] | null>;
|
|
1236
|
+
private getToolsMenuWithCallbacks;
|
|
1237
|
+
private processGetToolsMenuWithCallbacks;
|
|
1238
|
+
protected processGetToolsMenu(xhr: any): MenuAction[] | null | null;
|
|
1231
1239
|
/**
|
|
1232
1240
|
* Returns the Manage dashboard tool menu
|
|
1233
1241
|
*/
|
|
@@ -1390,6 +1398,31 @@ export declare class ConfigClient extends APIClientBase {
|
|
|
1390
1398
|
private deleteScopedCodeSetValuesWithCallbacks;
|
|
1391
1399
|
private processDeleteScopedCodeSetValuesWithCallbacks;
|
|
1392
1400
|
protected processDeleteScopedCodeSetValues(xhr: any): number | null;
|
|
1401
|
+
/**
|
|
1402
|
+
* Returns the current user's settings
|
|
1403
|
+
*/
|
|
1404
|
+
getUserSettings(): Promise<{
|
|
1405
|
+
[key: string]: any;
|
|
1406
|
+
} | null>;
|
|
1407
|
+
private getUserSettingsWithCallbacks;
|
|
1408
|
+
private processGetUserSettingsWithCallbacks;
|
|
1409
|
+
protected processGetUserSettings(xhr: any): {
|
|
1410
|
+
[key: string]: any;
|
|
1411
|
+
} | null | null;
|
|
1412
|
+
/**
|
|
1413
|
+
* Updates the current user's settings
|
|
1414
|
+
* @param settings Settings to merge
|
|
1415
|
+
*/
|
|
1416
|
+
patchUserSettings(settings: {
|
|
1417
|
+
[key: string]: any;
|
|
1418
|
+
}): Promise<{
|
|
1419
|
+
[key: string]: any;
|
|
1420
|
+
} | null>;
|
|
1421
|
+
private patchUserSettingsWithCallbacks;
|
|
1422
|
+
private processPatchUserSettingsWithCallbacks;
|
|
1423
|
+
protected processPatchUserSettings(xhr: any): {
|
|
1424
|
+
[key: string]: any;
|
|
1425
|
+
} | null | null;
|
|
1393
1426
|
/**
|
|
1394
1427
|
* Returns the list of workflow scripts
|
|
1395
1428
|
*/
|
|
@@ -1469,14 +1502,6 @@ export declare class DocumentToolsClient extends APIClientBase {
|
|
|
1469
1502
|
beforeSend: any;
|
|
1470
1503
|
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1471
1504
|
constructor(baseUrl?: string);
|
|
1472
|
-
/**
|
|
1473
|
-
* Returns the header Of the specified document, including a Document Session Key
|
|
1474
|
-
* @param id Document Key
|
|
1475
|
-
*/
|
|
1476
|
-
getDocHeader(id: string): Promise<DocMasterDetail | null>;
|
|
1477
|
-
private getDocHeaderWithCallbacks;
|
|
1478
|
-
private processGetDocHeaderWithCallbacks;
|
|
1479
|
-
protected processGetDocHeader(xhr: any): DocMasterDetail | null | null;
|
|
1480
1505
|
/**
|
|
1481
1506
|
* Deletes the specified document
|
|
1482
1507
|
* @param id Document Key
|
|
@@ -1494,6 +1519,14 @@ export declare class DocumentToolsClient extends APIClientBase {
|
|
|
1494
1519
|
private updateDocHeaderWithCallbacks;
|
|
1495
1520
|
private processUpdateDocHeaderWithCallbacks;
|
|
1496
1521
|
protected processUpdateDocHeader(xhr: any): any | null;
|
|
1522
|
+
/**
|
|
1523
|
+
* Returns the header Of the specified document, including a Document Session Key
|
|
1524
|
+
* @param id Document Key
|
|
1525
|
+
*/
|
|
1526
|
+
getDocHeader(id: string): Promise<DocMasterDetail | null>;
|
|
1527
|
+
private getDocHeaderWithCallbacks;
|
|
1528
|
+
private processGetDocHeaderWithCallbacks;
|
|
1529
|
+
protected processGetDocHeader(xhr: any): DocMasterDetail | null | null;
|
|
1497
1530
|
/**
|
|
1498
1531
|
* Updates a Single field On the header Of the specified document
|
|
1499
1532
|
* @param id Document Key
|