sailpoint-api-client 1.8.58 → 1.8.60
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/beta/README.md +2 -2
- package/beta/api.ts +36 -0
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +36 -0
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/nerm/common.js +2 -2
- package/dist/nermv2025/common.js +2 -2
- package/dist/v2024/api.d.ts +36 -0
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/api.d.ts +60 -0
- package/dist/v2025/api.js +24 -0
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/api.d.ts +443 -176
- package/dist/v2026/api.js +694 -391
- package/dist/v2026/api.js.map +1 -1
- package/dist/v2026/common.js +2 -2
- package/dist/v3/api.d.ts +36 -0
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +2 -2
- package/nerm/README.md +2 -2
- package/nerm/common.ts +2 -2
- package/nerm/package.json +1 -1
- package/nermv2025/README.md +2 -2
- package/nermv2025/common.ts +2 -2
- package/nermv2025/package.json +1 -1
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +36 -0
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +60 -0
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +790 -362
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +36 -0
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/v2026/common.js
CHANGED
|
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
250
250
|
if (axios === void 0) { axios = globalAxios; }
|
|
251
251
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
252
252
|
(0, axios_retry_1.default)(axios, configuration.retriesConfig);
|
|
253
|
-
var userAgent = "SailPoint-SDK-TypeScript/1.8.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.60";
|
|
254
254
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
255
255
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
256
256
|
}
|
|
257
257
|
userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
|
|
258
|
-
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.60' }), { 'User-Agent': userAgent });
|
|
259
259
|
if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
|
260
260
|
throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
|
|
261
261
|
}
|
package/dist/v3/api.d.ts
CHANGED
|
@@ -6212,6 +6212,24 @@ export interface CompletedApproval {
|
|
|
6212
6212
|
* @memberof CompletedApproval
|
|
6213
6213
|
*/
|
|
6214
6214
|
'currentRemoveDate'?: string | null;
|
|
6215
|
+
/**
|
|
6216
|
+
* The date the role or access profile or entitlement is/will assigned to the specified identity.
|
|
6217
|
+
* @type {string}
|
|
6218
|
+
* @memberof CompletedApproval
|
|
6219
|
+
*/
|
|
6220
|
+
'startDate'?: string;
|
|
6221
|
+
/**
|
|
6222
|
+
* If true, then the request is to change the start date or sunrise date.
|
|
6223
|
+
* @type {boolean}
|
|
6224
|
+
* @memberof CompletedApproval
|
|
6225
|
+
*/
|
|
6226
|
+
'startUpdateRequested'?: boolean;
|
|
6227
|
+
/**
|
|
6228
|
+
* The start date or sunrise date that was assigned at the time of the request.
|
|
6229
|
+
* @type {string}
|
|
6230
|
+
* @memberof CompletedApproval
|
|
6231
|
+
*/
|
|
6232
|
+
'currentStartDate'?: string;
|
|
6215
6233
|
/**
|
|
6216
6234
|
*
|
|
6217
6235
|
* @type {SodViolationContextCheckCompleted}
|
|
@@ -15654,6 +15672,24 @@ export interface PendingApproval {
|
|
|
15654
15672
|
* @memberof PendingApproval
|
|
15655
15673
|
*/
|
|
15656
15674
|
'currentRemoveDate'?: string;
|
|
15675
|
+
/**
|
|
15676
|
+
* The date the role or access profile or entitlement is/will assigned to the specified identity.
|
|
15677
|
+
* @type {string}
|
|
15678
|
+
* @memberof PendingApproval
|
|
15679
|
+
*/
|
|
15680
|
+
'startDate'?: string;
|
|
15681
|
+
/**
|
|
15682
|
+
* If true, then the request is to change the start date or sunrise date.
|
|
15683
|
+
* @type {boolean}
|
|
15684
|
+
* @memberof PendingApproval
|
|
15685
|
+
*/
|
|
15686
|
+
'startUpdateRequested'?: boolean;
|
|
15687
|
+
/**
|
|
15688
|
+
* The start date or sunrise date that was assigned at the time of the request.
|
|
15689
|
+
* @type {string}
|
|
15690
|
+
* @memberof PendingApproval
|
|
15691
|
+
*/
|
|
15692
|
+
'currentStartDate'?: string;
|
|
15657
15693
|
/**
|
|
15658
15694
|
*
|
|
15659
15695
|
* @type {SodViolationContextCheckCompleted}
|