spitfirepm 23.9600.5 → 23.9600.7
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/dist/SwaggerClients.d.ts +46 -26
- package/dist/SwaggerClients.js +190 -121
- package/dist/SwaggerClients.js.map +1 -1
- package/dist/sfRESTClient.js +2 -2
- package/dist/sfRESTClient.js.map +1 -1
- package/package.json +1 -1
package/dist/SwaggerClients.d.ts
CHANGED
|
@@ -135,8 +135,8 @@ export declare class AlertsClient extends APIClientBase {
|
|
|
135
135
|
private processGetUserAlertListWithCallbacks;
|
|
136
136
|
protected processGetUserAlertList(xhr: any): UserAlert[] | null | null;
|
|
137
137
|
/**
|
|
138
|
-
* Creates
|
|
139
|
-
* @param theAlert Model
|
|
138
|
+
* Creates And stores an alert
|
|
139
|
+
* @param theAlert Model With New alert. Specify AlertText, Description. UserKey, DocMasterKey, Project, Source, SourceKey And Info1 are Optional;
|
|
140
140
|
*/
|
|
141
141
|
createAlert(theAlert: UserAlert): Promise<HttpStatusCode>;
|
|
142
142
|
private createAlertWithCallbacks;
|
|
@@ -152,17 +152,17 @@ export declare class AlertsClient extends APIClientBase {
|
|
|
152
152
|
private processGetUserAlertChangeListWithCallbacks;
|
|
153
153
|
protected processGetUserAlertChangeList(xhr: any): DataDifferential | null | null;
|
|
154
154
|
/**
|
|
155
|
-
* Removes a specific alert item
|
|
155
|
+
* Removes a specific alert item For the specified user
|
|
156
156
|
* @param id Alert Key
|
|
157
|
-
* @param forUserKey (optional) User Key (
|
|
157
|
+
* @param forUserKey (optional) User Key (For proxy) Or 00000000-0000-0000-0000-000000000000 For self
|
|
158
158
|
*/
|
|
159
159
|
deleteAlert(id: string | null, forUserKey?: string | undefined): Promise<HttpStatusCode>;
|
|
160
160
|
private deleteAlertWithCallbacks;
|
|
161
161
|
private processDeleteAlertWithCallbacks;
|
|
162
162
|
protected processDeleteAlert(xhr: any): HttpStatusCode | null;
|
|
163
163
|
/**
|
|
164
|
-
* Removes all alert item
|
|
165
|
-
* @param forUserKey (optional) User Key (
|
|
164
|
+
* Removes all alert item For the specified user
|
|
165
|
+
* @param forUserKey (optional) User Key (For proxy) Or 00000000-0000-0000-0000-000000000000 For self
|
|
166
166
|
*/
|
|
167
167
|
deleteAllAlerts(forUserKey?: string | undefined): Promise<HttpStatusCode>;
|
|
168
168
|
private deleteAllAlertsWithCallbacks;
|
|
@@ -1196,24 +1196,6 @@ export declare class DocumentToolsClient extends APIClientBase {
|
|
|
1196
1196
|
private addDocCommentsWithCallbacks;
|
|
1197
1197
|
private processAddDocCommentsWithCallbacks;
|
|
1198
1198
|
protected processAddDocComments(xhr: any): Comment | null | null;
|
|
1199
|
-
/**
|
|
1200
|
-
* Returns the compliance for the specified document
|
|
1201
|
-
* @param id Document Key
|
|
1202
|
-
*/
|
|
1203
|
-
getDocCompliance(id: string): Promise<DocCompliance[] | null>;
|
|
1204
|
-
private getDocComplianceWithCallbacks;
|
|
1205
|
-
private processGetDocComplianceWithCallbacks;
|
|
1206
|
-
protected processGetDocCompliance(xhr: any): DocCompliance[] | null | null;
|
|
1207
|
-
/**
|
|
1208
|
-
* Deletes the compliance on the specified document
|
|
1209
|
-
* @param id Document Key
|
|
1210
|
-
* @param complianceKeys Compliance Item Keys
|
|
1211
|
-
* @return Specified addresses not found
|
|
1212
|
-
*/
|
|
1213
|
-
deleteDocCompliance(id: string, complianceKeys: string[]): Promise<string>;
|
|
1214
|
-
private deleteDocComplianceWithCallbacks;
|
|
1215
|
-
private processDeleteDocComplianceWithCallbacks;
|
|
1216
|
-
protected processDeleteDocCompliance(xhr: any): string | null;
|
|
1217
1199
|
/**
|
|
1218
1200
|
* Updates the compliance on the specified document
|
|
1219
1201
|
* @param id Document Key
|
|
@@ -1233,6 +1215,24 @@ export declare class DocumentToolsClient extends APIClientBase {
|
|
|
1233
1215
|
private addDocComplianceWithCallbacks;
|
|
1234
1216
|
private processAddDocComplianceWithCallbacks;
|
|
1235
1217
|
protected processAddDocCompliance(xhr: any): DocCompliance | null | null;
|
|
1218
|
+
/**
|
|
1219
|
+
* Returns the compliance for the specified document
|
|
1220
|
+
* @param id Document Key
|
|
1221
|
+
*/
|
|
1222
|
+
getDocCompliance(id: string): Promise<DocCompliance[] | null>;
|
|
1223
|
+
private getDocComplianceWithCallbacks;
|
|
1224
|
+
private processGetDocComplianceWithCallbacks;
|
|
1225
|
+
protected processGetDocCompliance(xhr: any): DocCompliance[] | null | null;
|
|
1226
|
+
/**
|
|
1227
|
+
* Deletes the compliance on the specified document
|
|
1228
|
+
* @param id Document Key
|
|
1229
|
+
* @param complianceKeys Compliance Item Keys
|
|
1230
|
+
* @return Specified addresses not found
|
|
1231
|
+
*/
|
|
1232
|
+
deleteDocCompliance(id: string, complianceKeys: string[]): Promise<string>;
|
|
1233
|
+
private deleteDocComplianceWithCallbacks;
|
|
1234
|
+
private processDeleteDocComplianceWithCallbacks;
|
|
1235
|
+
protected processDeleteDocCompliance(xhr: any): string | null;
|
|
1236
1236
|
/**
|
|
1237
1237
|
* Returns the Project Details based on the specified document. Update using PatchDocData
|
|
1238
1238
|
* @param id Document Key
|
|
@@ -2587,6 +2587,17 @@ export declare class SystemClient extends APIClientBase {
|
|
|
2587
2587
|
private getBrandingWithCallbacks;
|
|
2588
2588
|
private processGetBrandingWithCallbacks;
|
|
2589
2589
|
protected processGetBranding(xhr: any): string | null | null;
|
|
2590
|
+
/**
|
|
2591
|
+
* Returns summary branding data
|
|
2592
|
+
*/
|
|
2593
|
+
getSystemBrandingInfo(): Promise<{
|
|
2594
|
+
[key: string]: any;
|
|
2595
|
+
} | null>;
|
|
2596
|
+
private getSystemBrandingInfoWithCallbacks;
|
|
2597
|
+
private processGetSystemBrandingInfoWithCallbacks;
|
|
2598
|
+
protected processGetSystemBrandingInfo(xhr: any): {
|
|
2599
|
+
[key: string]: any;
|
|
2600
|
+
} | null | null;
|
|
2590
2601
|
/**
|
|
2591
2602
|
* Reloads site configuration and settings
|
|
2592
2603
|
*/
|
|
@@ -5307,7 +5318,7 @@ export interface PasswordConfiguredOptions {
|
|
|
5307
5318
|
export interface PDSData extends APIData {
|
|
5308
5319
|
/** ID of data set */
|
|
5309
5320
|
PDSKey?: string | undefined;
|
|
5310
|
-
/** Type of change (put, set) */
|
|
5321
|
+
/** Type of change (put to persist, set for memory only) */
|
|
5311
5322
|
Mode?: string | undefined;
|
|
5312
5323
|
/** key or AK source (eg: AK/tdkeymapkey/TK/@xtsKeyMap.BlockOut/9c337885-0fb1-460c-960a-3bacc1d8e0)
|
|
5313
5324
|
*/
|
|
@@ -5538,7 +5549,9 @@ export interface ProjectAbstract {
|
|
|
5538
5549
|
actionsMenu?: MenuAction[] | undefined;
|
|
5539
5550
|
/** list of registers (includes link to project setup) */
|
|
5540
5551
|
registerMenu?: MenuAction[] | undefined;
|
|
5541
|
-
/**
|
|
5552
|
+
/** SOP Links by tool part */
|
|
5553
|
+
SOPMenu?: MenuAction[] | undefined;
|
|
5554
|
+
/** When true, Always Show Links Part and ignore ProjectConfig | ExcludedPart. Set from (undocumented) rule ProjectTypeConfig | LinksPart */
|
|
5542
5555
|
AlwaysShowLinks?: boolean;
|
|
5543
5556
|
/** When true, disable Note */
|
|
5544
5557
|
ExcludeNoteUI?: boolean;
|
|
@@ -6791,6 +6804,11 @@ export interface RouteActionInfo2 {
|
|
|
6791
6804
|
}
|
|
6792
6805
|
export interface RouteActionInfo extends RouteActionInfo2 {
|
|
6793
6806
|
}
|
|
6807
|
+
/** Concurrent-seat category. Web (named/concurrent browser + REST) seats and Spitfire Mobile Field seats are tracked as fully separate pools. */
|
|
6808
|
+
export declare enum SeatType {
|
|
6809
|
+
Web = 0,
|
|
6810
|
+
Mobile = 1
|
|
6811
|
+
}
|
|
6794
6812
|
/** Key value pair */
|
|
6795
6813
|
export interface SelectCodeNode {
|
|
6796
6814
|
/** the key */
|
|
@@ -7424,6 +7442,8 @@ export interface UserSessionInfo {
|
|
|
7424
7442
|
AgentSummary?: string | undefined;
|
|
7425
7443
|
/** Key of user */
|
|
7426
7444
|
UserKey?: string;
|
|
7445
|
+
/** Seat category consumed by this session (Web or Mobile Field) */
|
|
7446
|
+
SeatType?: SeatType;
|
|
7427
7447
|
}
|
|
7428
7448
|
export interface Version {
|
|
7429
7449
|
Major?: number;
|