spitfirepm 23.9600.13 → 23.9600.14
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 +3 -3
- package/dist/SwaggerClients.js +21 -21
- package/dist/SwaggerClients.js.map +1 -1
- package/dist/sfRESTClient.js +1 -1
- package/package.json +1 -1
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}
|
package/dist/SwaggerClients.js
CHANGED
|
@@ -16,7 +16,7 @@ class AccountClient extends APIClientBase_1.APIClientBase {
|
|
|
16
16
|
jsonParseReviver = undefined;
|
|
17
17
|
constructor(baseUrl) {
|
|
18
18
|
super();
|
|
19
|
-
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/
|
|
19
|
+
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/SFPMS");
|
|
20
20
|
}
|
|
21
21
|
/**
|
|
22
22
|
* Authenticates a session and generates a FormsAuthenticationTicket and cookie
|
|
@@ -657,7 +657,7 @@ class ActionItemsClient extends APIClientBase_1.APIClientBase {
|
|
|
657
657
|
jsonParseReviver = undefined;
|
|
658
658
|
constructor(baseUrl) {
|
|
659
659
|
super();
|
|
660
|
-
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/
|
|
660
|
+
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/SFPMS");
|
|
661
661
|
}
|
|
662
662
|
/**
|
|
663
663
|
* Returns action items for specified User
|
|
@@ -1106,7 +1106,7 @@ class AlertsClient extends APIClientBase_1.APIClientBase {
|
|
|
1106
1106
|
jsonParseReviver = undefined;
|
|
1107
1107
|
constructor(baseUrl) {
|
|
1108
1108
|
super();
|
|
1109
|
-
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/
|
|
1109
|
+
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/SFPMS");
|
|
1110
1110
|
}
|
|
1111
1111
|
/**
|
|
1112
1112
|
* Returns alert items for a specified user
|
|
@@ -1516,7 +1516,7 @@ class LookupClient extends APIClientBase_1.APIClientBase {
|
|
|
1516
1516
|
jsonParseReviver = undefined;
|
|
1517
1517
|
constructor(baseUrl) {
|
|
1518
1518
|
super();
|
|
1519
|
-
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/
|
|
1519
|
+
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/SFPMS");
|
|
1520
1520
|
}
|
|
1521
1521
|
/**
|
|
1522
1522
|
* Returns list of alerts that are recorded about the specified source key
|
|
@@ -2928,10 +2928,10 @@ class ARRClient extends APIClientBase_1.APIClientBase {
|
|
|
2928
2928
|
jsonParseReviver = undefined;
|
|
2929
2929
|
constructor(baseUrl) {
|
|
2930
2930
|
super();
|
|
2931
|
-
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/
|
|
2931
|
+
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/SFPMS");
|
|
2932
2932
|
}
|
|
2933
2933
|
/**
|
|
2934
|
-
*
|
|
2934
|
+
* Queue the routed-content download package build
|
|
2935
2935
|
* @param data download request {RouteID}
|
|
2936
2936
|
*/
|
|
2937
2937
|
getContent(data) {
|
|
@@ -3001,7 +3001,7 @@ class ARRClient extends APIClientBase_1.APIClientBase {
|
|
|
3001
3001
|
const _responseText = xhr.responseText;
|
|
3002
3002
|
let result500 = null;
|
|
3003
3003
|
result500 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
3004
|
-
return throwException("Could not
|
|
3004
|
+
return throwException("Could not queue package build; see response", status, _responseText, _headers, result500);
|
|
3005
3005
|
}
|
|
3006
3006
|
else if (status !== 200 && status !== 204) {
|
|
3007
3007
|
const _responseText = xhr.responseText;
|
|
@@ -3181,7 +3181,7 @@ class CatalogClient extends APIClientBase_1.APIClientBase {
|
|
|
3181
3181
|
jsonParseReviver = undefined;
|
|
3182
3182
|
constructor(baseUrl) {
|
|
3183
3183
|
super();
|
|
3184
|
-
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/
|
|
3184
|
+
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/SFPMS");
|
|
3185
3185
|
}
|
|
3186
3186
|
/**
|
|
3187
3187
|
* Releases a resource, usually a PDF of a report or export
|
|
@@ -6564,7 +6564,7 @@ class ConfigClient extends APIClientBase_1.APIClientBase {
|
|
|
6564
6564
|
jsonParseReviver = undefined;
|
|
6565
6565
|
constructor(baseUrl) {
|
|
6566
6566
|
super();
|
|
6567
|
-
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/
|
|
6567
|
+
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/SFPMS");
|
|
6568
6568
|
}
|
|
6569
6569
|
/**
|
|
6570
6570
|
* Updates a flex key by name and segment number. Returns the new definition.
|
|
@@ -13254,7 +13254,7 @@ class ContactClient extends APIClientBase_1.APIClientBase {
|
|
|
13254
13254
|
jsonParseReviver = undefined;
|
|
13255
13255
|
constructor(baseUrl) {
|
|
13256
13256
|
super();
|
|
13257
|
-
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/
|
|
13257
|
+
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/SFPMS");
|
|
13258
13258
|
}
|
|
13259
13259
|
/**
|
|
13260
13260
|
* Adds the contact
|
|
@@ -13565,7 +13565,7 @@ class DocumentToolsClient extends APIClientBase_1.APIClientBase {
|
|
|
13565
13565
|
jsonParseReviver = undefined;
|
|
13566
13566
|
constructor(baseUrl) {
|
|
13567
13567
|
super();
|
|
13568
|
-
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/
|
|
13568
|
+
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/SFPMS");
|
|
13569
13569
|
}
|
|
13570
13570
|
/**
|
|
13571
13571
|
* Returns the header Of the specified document, including a Document Session Key
|
|
@@ -22290,7 +22290,7 @@ class ExcelToolsClient extends APIClientBase_1.APIClientBase {
|
|
|
22290
22290
|
jsonParseReviver = undefined;
|
|
22291
22291
|
constructor(baseUrl) {
|
|
22292
22292
|
super();
|
|
22293
|
-
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/
|
|
22293
|
+
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/SFPMS");
|
|
22294
22294
|
}
|
|
22295
22295
|
/**
|
|
22296
22296
|
* Returns a financial snapshot
|
|
@@ -23081,7 +23081,7 @@ class ProjectToolsClient extends APIClientBase_1.APIClientBase {
|
|
|
23081
23081
|
jsonParseReviver = undefined;
|
|
23082
23082
|
constructor(baseUrl) {
|
|
23083
23083
|
super();
|
|
23084
|
-
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/
|
|
23084
|
+
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/SFPMS");
|
|
23085
23085
|
}
|
|
23086
23086
|
/**
|
|
23087
23087
|
* Removes/clears a Project Budget and optionally the entire Project (if uncommitted)
|
|
@@ -25282,7 +25282,7 @@ class ProjectDocListClient extends APIClientBase_1.APIClientBase {
|
|
|
25282
25282
|
jsonParseReviver = undefined;
|
|
25283
25283
|
constructor(baseUrl) {
|
|
25284
25284
|
super();
|
|
25285
|
-
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/
|
|
25285
|
+
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/SFPMS");
|
|
25286
25286
|
}
|
|
25287
25287
|
/**
|
|
25288
25288
|
* Returns full list of documents on a project that match the requested document type
|
|
@@ -25606,7 +25606,7 @@ class ProjectKPIClient extends APIClientBase_1.APIClientBase {
|
|
|
25606
25606
|
jsonParseReviver = undefined;
|
|
25607
25607
|
constructor(baseUrl) {
|
|
25608
25608
|
super();
|
|
25609
|
-
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/
|
|
25609
|
+
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/SFPMS");
|
|
25610
25610
|
}
|
|
25611
25611
|
/**
|
|
25612
25612
|
* Returns list of KPI facts for the specified project
|
|
@@ -25689,7 +25689,7 @@ class ProjectTeamClient extends APIClientBase_1.APIClientBase {
|
|
|
25689
25689
|
jsonParseReviver = undefined;
|
|
25690
25690
|
constructor(baseUrl) {
|
|
25691
25691
|
super();
|
|
25692
|
-
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/
|
|
25692
|
+
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/SFPMS");
|
|
25693
25693
|
}
|
|
25694
25694
|
/**
|
|
25695
25695
|
* Returns members of the specified project team
|
|
@@ -26219,7 +26219,7 @@ class ProjectsClient extends APIClientBase_1.APIClientBase {
|
|
|
26219
26219
|
jsonParseReviver = undefined;
|
|
26220
26220
|
constructor(baseUrl) {
|
|
26221
26221
|
super();
|
|
26222
|
-
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/
|
|
26222
|
+
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/SFPMS");
|
|
26223
26223
|
}
|
|
26224
26224
|
/**
|
|
26225
26225
|
* Returns projects that match User and hidden filter
|
|
@@ -26745,7 +26745,7 @@ class SessionClient extends APIClientBase_1.APIClientBase {
|
|
|
26745
26745
|
jsonParseReviver = undefined;
|
|
26746
26746
|
constructor(baseUrl) {
|
|
26747
26747
|
super();
|
|
26748
|
-
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/
|
|
26748
|
+
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/SFPMS");
|
|
26749
26749
|
}
|
|
26750
26750
|
/**
|
|
26751
26751
|
* Removes a specific users session; see also api/system/users/idle to auto-prune
|
|
@@ -28867,7 +28867,7 @@ class SystemClient extends APIClientBase_1.APIClientBase {
|
|
|
28867
28867
|
jsonParseReviver = undefined;
|
|
28868
28868
|
constructor(baseUrl) {
|
|
28869
28869
|
super();
|
|
28870
|
-
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/
|
|
28870
|
+
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/SFPMS");
|
|
28871
28871
|
}
|
|
28872
28872
|
/**
|
|
28873
28873
|
* Returns site branding label
|
|
@@ -30611,7 +30611,7 @@ class UICFGClient extends APIClientBase_1.APIClientBase {
|
|
|
30611
30611
|
jsonParseReviver = undefined;
|
|
30612
30612
|
constructor(baseUrl) {
|
|
30613
30613
|
super();
|
|
30614
|
-
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/
|
|
30614
|
+
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/SFPMS");
|
|
30615
30615
|
}
|
|
30616
30616
|
/**
|
|
30617
30617
|
* Returns Live UI CFG data for this user for the requested part
|
|
@@ -31080,7 +31080,7 @@ class XTSClient extends APIClientBase_1.APIClientBase {
|
|
|
31080
31080
|
jsonParseReviver = undefined;
|
|
31081
31081
|
constructor(baseUrl) {
|
|
31082
31082
|
super();
|
|
31083
|
-
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/
|
|
31083
|
+
this.baseUrl = baseUrl ?? this.getBaseUrl("https://dev.spitfirepm.com:8443/SFPMS");
|
|
31084
31084
|
}
|
|
31085
31085
|
/**
|
|
31086
31086
|
* Requests the document be requeued for cloud sync
|