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/v2026/common.ts
CHANGED
|
@@ -146,14 +146,14 @@ export const toPathString = function (url: URL) {
|
|
|
146
146
|
export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {
|
|
147
147
|
return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
148
148
|
axiosRetry(axios, configuration.retriesConfig)
|
|
149
|
-
let userAgent = `SailPoint-SDK-TypeScript/1.8.
|
|
149
|
+
let userAgent = `SailPoint-SDK-TypeScript/1.8.60`;
|
|
150
150
|
if (configuration?.consumerIdentifier && configuration?.consumerVersion) {
|
|
151
151
|
userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;
|
|
152
152
|
}
|
|
153
153
|
userAgent += ` (${process.platform}; ${process.arch}) Node/${process.versions.node} (openapi-generator/7.12.0)`;
|
|
154
154
|
const headers = {
|
|
155
155
|
...axiosArgs.axiosOptions.headers,
|
|
156
|
-
...{'X-SailPoint-SDK':'typescript-1.8.
|
|
156
|
+
...{'X-SailPoint-SDK':'typescript-1.8.60'},
|
|
157
157
|
...{'User-Agent': userAgent},
|
|
158
158
|
}
|
|
159
159
|
|
package/v2026/package.json
CHANGED
package/v3/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-sdk@1.8.
|
|
1
|
+
## sailpoint-sdk@1.8.60
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install sailpoint-sdk@1.8.
|
|
39
|
+
npm install sailpoint-sdk@1.8.60 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/v3/api.ts
CHANGED
|
@@ -6440,6 +6440,24 @@ export interface CompletedApproval {
|
|
|
6440
6440
|
* @memberof CompletedApproval
|
|
6441
6441
|
*/
|
|
6442
6442
|
'currentRemoveDate'?: string | null;
|
|
6443
|
+
/**
|
|
6444
|
+
* The date the role or access profile or entitlement is/will assigned to the specified identity.
|
|
6445
|
+
* @type {string}
|
|
6446
|
+
* @memberof CompletedApproval
|
|
6447
|
+
*/
|
|
6448
|
+
'startDate'?: string;
|
|
6449
|
+
/**
|
|
6450
|
+
* If true, then the request is to change the start date or sunrise date.
|
|
6451
|
+
* @type {boolean}
|
|
6452
|
+
* @memberof CompletedApproval
|
|
6453
|
+
*/
|
|
6454
|
+
'startUpdateRequested'?: boolean;
|
|
6455
|
+
/**
|
|
6456
|
+
* The start date or sunrise date that was assigned at the time of the request.
|
|
6457
|
+
* @type {string}
|
|
6458
|
+
* @memberof CompletedApproval
|
|
6459
|
+
*/
|
|
6460
|
+
'currentStartDate'?: string;
|
|
6443
6461
|
/**
|
|
6444
6462
|
*
|
|
6445
6463
|
* @type {SodViolationContextCheckCompleted}
|
|
@@ -16073,6 +16091,24 @@ export interface PendingApproval {
|
|
|
16073
16091
|
* @memberof PendingApproval
|
|
16074
16092
|
*/
|
|
16075
16093
|
'currentRemoveDate'?: string;
|
|
16094
|
+
/**
|
|
16095
|
+
* The date the role or access profile or entitlement is/will assigned to the specified identity.
|
|
16096
|
+
* @type {string}
|
|
16097
|
+
* @memberof PendingApproval
|
|
16098
|
+
*/
|
|
16099
|
+
'startDate'?: string;
|
|
16100
|
+
/**
|
|
16101
|
+
* If true, then the request is to change the start date or sunrise date.
|
|
16102
|
+
* @type {boolean}
|
|
16103
|
+
* @memberof PendingApproval
|
|
16104
|
+
*/
|
|
16105
|
+
'startUpdateRequested'?: boolean;
|
|
16106
|
+
/**
|
|
16107
|
+
* The start date or sunrise date that was assigned at the time of the request.
|
|
16108
|
+
* @type {string}
|
|
16109
|
+
* @memberof PendingApproval
|
|
16110
|
+
*/
|
|
16111
|
+
'currentStartDate'?: string;
|
|
16076
16112
|
/**
|
|
16077
16113
|
*
|
|
16078
16114
|
* @type {SodViolationContextCheckCompleted}
|
package/v3/common.ts
CHANGED
|
@@ -146,14 +146,14 @@ export const toPathString = function (url: URL) {
|
|
|
146
146
|
export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {
|
|
147
147
|
return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
148
148
|
axiosRetry(axios, configuration.retriesConfig)
|
|
149
|
-
let userAgent = `SailPoint-SDK-TypeScript/1.8.
|
|
149
|
+
let userAgent = `SailPoint-SDK-TypeScript/1.8.60`;
|
|
150
150
|
if (configuration?.consumerIdentifier && configuration?.consumerVersion) {
|
|
151
151
|
userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;
|
|
152
152
|
}
|
|
153
153
|
userAgent += ` (${process.platform}; ${process.arch}) Node/${process.versions.node} (openapi-generator/7.12.0)`;
|
|
154
154
|
const headers = {
|
|
155
155
|
...axiosArgs.axiosOptions.headers,
|
|
156
|
-
...{'X-SailPoint-SDK':'typescript-1.8.
|
|
156
|
+
...{'X-SailPoint-SDK':'typescript-1.8.60'},
|
|
157
157
|
...{'User-Agent': userAgent},
|
|
158
158
|
}
|
|
159
159
|
|