sailpoint-api-client 1.8.53 → 1.8.54
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/common.ts +2 -2
- package/beta/package.json +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/common.js +2 -2
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/api.d.ts +196 -1
- package/dist/v2026/api.js +226 -0
- package/dist/v2026/api.js.map +1 -1
- package/dist/v2026/common.js +2 -2
- 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/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +304 -1
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- 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.54";
|
|
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.54' }), { '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/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.54";
|
|
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.54' }), { '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/nerm/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-nerm-sdk@1.8.
|
|
1
|
+
## sailpoint-nerm-sdk@1.8.54
|
|
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-nerm-sdk@1.8.
|
|
39
|
+
npm install sailpoint-nerm-sdk@1.8.54 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/nerm/common.ts
CHANGED
|
@@ -146,7 +146,7 @@ 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.54`;
|
|
150
150
|
if (configuration?.consumerIdentifier && configuration?.consumerVersion) {
|
|
151
151
|
userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;
|
|
152
152
|
}
|
|
@@ -154,7 +154,7 @@ export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxi
|
|
|
154
154
|
const headers = {
|
|
155
155
|
...{'Accept': 'application/json'},
|
|
156
156
|
...axiosArgs.axiosOptions.headers,
|
|
157
|
-
...{'X-SailPoint-SDK':'typescript-1.8.
|
|
157
|
+
...{'X-SailPoint-SDK':'typescript-1.8.54'},
|
|
158
158
|
...{'User-Agent': userAgent},
|
|
159
159
|
}
|
|
160
160
|
|
package/nerm/package.json
CHANGED
package/nermv2025/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-nerm-sdk@1.8.
|
|
1
|
+
## sailpoint-nerm-sdk@1.8.54
|
|
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-nerm-sdk@1.8.
|
|
39
|
+
npm install sailpoint-nerm-sdk@1.8.54 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/nermv2025/common.ts
CHANGED
|
@@ -146,7 +146,7 @@ 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.54`;
|
|
150
150
|
if (configuration?.consumerIdentifier && configuration?.consumerVersion) {
|
|
151
151
|
userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;
|
|
152
152
|
}
|
|
@@ -154,7 +154,7 @@ export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxi
|
|
|
154
154
|
const headers = {
|
|
155
155
|
...{'Accept': 'application/json'},
|
|
156
156
|
...axiosArgs.axiosOptions.headers,
|
|
157
|
-
...{'X-SailPoint-SDK':'typescript-1.8.
|
|
157
|
+
...{'X-SailPoint-SDK':'typescript-1.8.54'},
|
|
158
158
|
...{'User-Agent': userAgent},
|
|
159
159
|
}
|
|
160
160
|
|
package/nermv2025/package.json
CHANGED
package/package.json
CHANGED
package/v2024/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-sdk@1.8.
|
|
1
|
+
## sailpoint-sdk@1.8.54
|
|
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.54 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/v2024/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.54`;
|
|
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.54'},
|
|
157
157
|
...{'User-Agent': userAgent},
|
|
158
158
|
}
|
|
159
159
|
|
package/v2024/package.json
CHANGED
package/v2025/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-sdk@1.8.
|
|
1
|
+
## sailpoint-sdk@1.8.54
|
|
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.54 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/v2025/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.54`;
|
|
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.54'},
|
|
157
157
|
...{'User-Agent': userAgent},
|
|
158
158
|
}
|
|
159
159
|
|
package/v2025/package.json
CHANGED
package/v2026/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-sdk@1.8.
|
|
1
|
+
## sailpoint-sdk@1.8.54
|
|
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.54 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/v2026/api.ts
CHANGED
|
@@ -26902,6 +26902,12 @@ export interface IntelIdentityLinksV2026 {
|
|
|
26902
26902
|
* @memberof IntelIdentityLinksV2026
|
|
26903
26903
|
*/
|
|
26904
26904
|
'access': IntelHrefV2026;
|
|
26905
|
+
/**
|
|
26906
|
+
* Hyperlink to the Intelligence Package risk document for this identity.
|
|
26907
|
+
* @type {IntelHrefV2026}
|
|
26908
|
+
* @memberof IntelIdentityLinksV2026
|
|
26909
|
+
*/
|
|
26910
|
+
'risk': IntelHrefV2026;
|
|
26905
26911
|
/**
|
|
26906
26912
|
* Hyperlink to the Intelligence Package access history document for this identity.
|
|
26907
26913
|
* @type {IntelHrefV2026}
|
|
@@ -26936,7 +26942,7 @@ export const IntelIdentityNotFoundBodyV2026DetailCodeV2026 = {
|
|
|
26936
26942
|
export type IntelIdentityNotFoundBodyV2026DetailCodeV2026 = typeof IntelIdentityNotFoundBodyV2026DetailCodeV2026[keyof typeof IntelIdentityNotFoundBodyV2026DetailCodeV2026];
|
|
26937
26943
|
|
|
26938
26944
|
/**
|
|
26939
|
-
* HUMAN responses include human, top-level subtype (NERM classification: Employee, Non Employee, or Cannot Determine), and _links (access and accessHistory
|
|
26945
|
+
* HUMAN responses include human, top-level subtype (NERM classification: Employee, Non Employee, or Cannot Determine), and _links (access, risk, and accessHistory). MACHINE responses include machine and top-level subtype (connector subtype string); _links is omitted.
|
|
26940
26946
|
* @export
|
|
26941
26947
|
* @interface IntelIdentityResponseV2026
|
|
26942
26948
|
*/
|
|
@@ -27016,6 +27022,31 @@ export const IntelIdentityResponseV2026TypeV2026 = {
|
|
|
27016
27022
|
|
|
27017
27023
|
export type IntelIdentityResponseV2026TypeV2026 = typeof IntelIdentityResponseV2026TypeV2026[keyof typeof IntelIdentityResponseV2026TypeV2026];
|
|
27018
27024
|
|
|
27025
|
+
/**
|
|
27026
|
+
* Shared response envelope for risk endpoints.
|
|
27027
|
+
* @export
|
|
27028
|
+
* @interface IntelIdentityRiskBodyV2026
|
|
27029
|
+
*/
|
|
27030
|
+
export interface IntelIdentityRiskBodyV2026 {
|
|
27031
|
+
/**
|
|
27032
|
+
* Page of outlier access-items associated with the resolved identity outlier.
|
|
27033
|
+
* @type {Array<IntelOutlierAccessItemV2026>}
|
|
27034
|
+
* @memberof IntelIdentityRiskBodyV2026
|
|
27035
|
+
*/
|
|
27036
|
+
'outliers': Array<IntelOutlierAccessItemV2026>;
|
|
27037
|
+
/**
|
|
27038
|
+
* Total available outlier access-item count from upstream.
|
|
27039
|
+
* @type {number}
|
|
27040
|
+
* @memberof IntelIdentityRiskBodyV2026
|
|
27041
|
+
*/
|
|
27042
|
+
'outliersTotal': number | null;
|
|
27043
|
+
/**
|
|
27044
|
+
* Continuation links map; omitted when no additional page exists.
|
|
27045
|
+
* @type {IntelRiskLinksV2026}
|
|
27046
|
+
* @memberof IntelIdentityRiskBodyV2026
|
|
27047
|
+
*/
|
|
27048
|
+
'_links'?: IntelRiskLinksV2026 | null;
|
|
27049
|
+
}
|
|
27019
27050
|
/**
|
|
27020
27051
|
*
|
|
27021
27052
|
* @export
|
|
@@ -27133,6 +27164,49 @@ export interface IntelMachineV2026 {
|
|
|
27133
27164
|
*/
|
|
27134
27165
|
'userEntitlements'?: Array<object>;
|
|
27135
27166
|
}
|
|
27167
|
+
/**
|
|
27168
|
+
* One outlier access-item row.
|
|
27169
|
+
* @export
|
|
27170
|
+
* @interface IntelOutlierAccessItemV2026
|
|
27171
|
+
*/
|
|
27172
|
+
export interface IntelOutlierAccessItemV2026 {
|
|
27173
|
+
/**
|
|
27174
|
+
* Stable identifier of the outlier access-item row.
|
|
27175
|
+
* @type {string}
|
|
27176
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
27177
|
+
*/
|
|
27178
|
+
'id': string;
|
|
27179
|
+
/**
|
|
27180
|
+
* Display label of the risky access item.
|
|
27181
|
+
* @type {string}
|
|
27182
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
27183
|
+
*/
|
|
27184
|
+
'displayName': string;
|
|
27185
|
+
/**
|
|
27186
|
+
* Optional descriptive text for the risky access item.
|
|
27187
|
+
* @type {string}
|
|
27188
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
27189
|
+
*/
|
|
27190
|
+
'description'?: string | null;
|
|
27191
|
+
/**
|
|
27192
|
+
* Access item type (for example ENTITLEMENT, ROLE, ACCESS_PROFILE, ACCOUNT, or APP).
|
|
27193
|
+
* @type {string}
|
|
27194
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
27195
|
+
*/
|
|
27196
|
+
'accessType': string;
|
|
27197
|
+
/**
|
|
27198
|
+
* Source name where the risky access item exists.
|
|
27199
|
+
* @type {string}
|
|
27200
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
27201
|
+
*/
|
|
27202
|
+
'sourceName': string;
|
|
27203
|
+
/**
|
|
27204
|
+
* Indicates whether analytics marked this item as extremely rare.
|
|
27205
|
+
* @type {boolean}
|
|
27206
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
27207
|
+
*/
|
|
27208
|
+
'extremelyRare': boolean;
|
|
27209
|
+
}
|
|
27136
27210
|
/**
|
|
27137
27211
|
* Source metadata associated with the privileged access item when present.
|
|
27138
27212
|
* @export
|
|
@@ -27213,6 +27287,19 @@ export interface IntelPrivilegedAccessItemWireV2026 {
|
|
|
27213
27287
|
*/
|
|
27214
27288
|
'value'?: string;
|
|
27215
27289
|
}
|
|
27290
|
+
/**
|
|
27291
|
+
* Continuation links for risk responses.
|
|
27292
|
+
* @export
|
|
27293
|
+
* @interface IntelRiskLinksV2026
|
|
27294
|
+
*/
|
|
27295
|
+
export interface IntelRiskLinksV2026 {
|
|
27296
|
+
/**
|
|
27297
|
+
* Link to fetch the next outlier page for the same identity.
|
|
27298
|
+
* @type {IntelHrefV2026}
|
|
27299
|
+
* @memberof IntelRiskLinksV2026
|
|
27300
|
+
*/
|
|
27301
|
+
'outliers'?: IntelHrefV2026;
|
|
27302
|
+
}
|
|
27216
27303
|
/**
|
|
27217
27304
|
*
|
|
27218
27305
|
* @export
|
|
@@ -103463,6 +103550,108 @@ export const IntelligencePackageV2026ApiAxiosParamCreator = function (configurat
|
|
|
103463
103550
|
|
|
103464
103551
|
|
|
103465
103552
|
|
|
103553
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
103554
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
103555
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
103556
|
+
|
|
103557
|
+
return {
|
|
103558
|
+
url: toPathString(localVarUrlObj),
|
|
103559
|
+
axiosOptions: localVarRequestOptions,
|
|
103560
|
+
};
|
|
103561
|
+
},
|
|
103562
|
+
/**
|
|
103563
|
+
* Risk snapshot envelope for the identity. The service resolves the first matching outlier for identityID and returns one page of access-items plus an optional continuation link for additional pages. Clients should continue paging using _links.outliers.href when provided. Requires tenant license idn:response-and-remediation.
|
|
103564
|
+
* @summary Identity risk snapshot
|
|
103565
|
+
* @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
103566
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
103567
|
+
* @throws {RequiredError}
|
|
103568
|
+
*/
|
|
103569
|
+
getIntelIdentityRisk: async (identityID: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
103570
|
+
// verify required parameter 'identityID' is not null or undefined
|
|
103571
|
+
assertParamExists('getIntelIdentityRisk', 'identityID', identityID)
|
|
103572
|
+
const localVarPath = `/intelligence/identities/{identityID}/risk`
|
|
103573
|
+
.replace(`{${"identityID"}}`, encodeURIComponent(String(identityID)));
|
|
103574
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
103575
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
103576
|
+
let baseOptions;
|
|
103577
|
+
if (configuration) {
|
|
103578
|
+
baseOptions = configuration.baseOptions;
|
|
103579
|
+
}
|
|
103580
|
+
|
|
103581
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
103582
|
+
const localVarHeaderParameter = {} as any;
|
|
103583
|
+
const localVarQueryParameter = {} as any;
|
|
103584
|
+
|
|
103585
|
+
// authentication userAuth required
|
|
103586
|
+
// oauth required
|
|
103587
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103588
|
+
|
|
103589
|
+
// authentication userAuth required
|
|
103590
|
+
// oauth required
|
|
103591
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103592
|
+
|
|
103593
|
+
// authentication applicationAuth required
|
|
103594
|
+
// oauth required
|
|
103595
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
103596
|
+
|
|
103597
|
+
|
|
103598
|
+
|
|
103599
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
103600
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
103601
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
103602
|
+
|
|
103603
|
+
return {
|
|
103604
|
+
url: toPathString(localVarUrlObj),
|
|
103605
|
+
axiosOptions: localVarRequestOptions,
|
|
103606
|
+
};
|
|
103607
|
+
},
|
|
103608
|
+
/**
|
|
103609
|
+
* Continuation endpoint for risk outlier access-items. Returns one page based on the supplied limit and offset values and includes an optional continuation link when more rows remain. Requires tenant license idn:response-and-remediation.
|
|
103610
|
+
* @summary Risk outliers continuation paging
|
|
103611
|
+
* @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
103612
|
+
* @param {number} [limit] Maximum number of outlier rows to return for this page.
|
|
103613
|
+
* @param {number} [offset] Zero-based row index for the first returned outlier item.
|
|
103614
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
103615
|
+
* @throws {RequiredError}
|
|
103616
|
+
*/
|
|
103617
|
+
getIntelIdentityRiskOutliers: async (identityID: string, limit?: number, offset?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
103618
|
+
// verify required parameter 'identityID' is not null or undefined
|
|
103619
|
+
assertParamExists('getIntelIdentityRiskOutliers', 'identityID', identityID)
|
|
103620
|
+
const localVarPath = `/intelligence/identities/{identityID}/risk/outliers`
|
|
103621
|
+
.replace(`{${"identityID"}}`, encodeURIComponent(String(identityID)));
|
|
103622
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
103623
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
103624
|
+
let baseOptions;
|
|
103625
|
+
if (configuration) {
|
|
103626
|
+
baseOptions = configuration.baseOptions;
|
|
103627
|
+
}
|
|
103628
|
+
|
|
103629
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
103630
|
+
const localVarHeaderParameter = {} as any;
|
|
103631
|
+
const localVarQueryParameter = {} as any;
|
|
103632
|
+
|
|
103633
|
+
// authentication userAuth required
|
|
103634
|
+
// oauth required
|
|
103635
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103636
|
+
|
|
103637
|
+
// authentication userAuth required
|
|
103638
|
+
// oauth required
|
|
103639
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103640
|
+
|
|
103641
|
+
// authentication applicationAuth required
|
|
103642
|
+
// oauth required
|
|
103643
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
103644
|
+
|
|
103645
|
+
if (limit !== undefined) {
|
|
103646
|
+
localVarQueryParameter['limit'] = limit;
|
|
103647
|
+
}
|
|
103648
|
+
|
|
103649
|
+
if (offset !== undefined) {
|
|
103650
|
+
localVarQueryParameter['offset'] = offset;
|
|
103651
|
+
}
|
|
103652
|
+
|
|
103653
|
+
|
|
103654
|
+
|
|
103466
103655
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
103467
103656
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
103468
103657
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -103560,6 +103749,34 @@ export const IntelligencePackageV2026ApiFp = function(configuration?: Configurat
|
|
|
103560
103749
|
const localVarOperationServerBasePath = operationServerMap['IntelligencePackageV2026Api.getIntelIdentityAccessHistory']?.[localVarOperationServerIndex]?.url;
|
|
103561
103750
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
103562
103751
|
},
|
|
103752
|
+
/**
|
|
103753
|
+
* Risk snapshot envelope for the identity. The service resolves the first matching outlier for identityID and returns one page of access-items plus an optional continuation link for additional pages. Clients should continue paging using _links.outliers.href when provided. Requires tenant license idn:response-and-remediation.
|
|
103754
|
+
* @summary Identity risk snapshot
|
|
103755
|
+
* @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
103756
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
103757
|
+
* @throws {RequiredError}
|
|
103758
|
+
*/
|
|
103759
|
+
async getIntelIdentityRisk(identityID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityRiskBodyV2026>> {
|
|
103760
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getIntelIdentityRisk(identityID, axiosOptions);
|
|
103761
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
103762
|
+
const localVarOperationServerBasePath = operationServerMap['IntelligencePackageV2026Api.getIntelIdentityRisk']?.[localVarOperationServerIndex]?.url;
|
|
103763
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
103764
|
+
},
|
|
103765
|
+
/**
|
|
103766
|
+
* Continuation endpoint for risk outlier access-items. Returns one page based on the supplied limit and offset values and includes an optional continuation link when more rows remain. Requires tenant license idn:response-and-remediation.
|
|
103767
|
+
* @summary Risk outliers continuation paging
|
|
103768
|
+
* @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
103769
|
+
* @param {number} [limit] Maximum number of outlier rows to return for this page.
|
|
103770
|
+
* @param {number} [offset] Zero-based row index for the first returned outlier item.
|
|
103771
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
103772
|
+
* @throws {RequiredError}
|
|
103773
|
+
*/
|
|
103774
|
+
async getIntelIdentityRiskOutliers(identityID: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityRiskBodyV2026>> {
|
|
103775
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getIntelIdentityRiskOutliers(identityID, limit, offset, axiosOptions);
|
|
103776
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
103777
|
+
const localVarOperationServerBasePath = operationServerMap['IntelligencePackageV2026Api.getIntelIdentityRiskOutliers']?.[localVarOperationServerIndex]?.url;
|
|
103778
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
103779
|
+
},
|
|
103563
103780
|
/**
|
|
103564
103781
|
* Requires tenant license idn:response-and-remediation. Returns the Intelligence Package envelope for the identity that matches the SCIM-style filters expression. Supported queryable fields are id and email only. A single match returns HTTP 200 with IntelIdentityResponse. Zero matches returns HTTP 404 with detailCode IDC_IDENTITY_NOT_FOUND. Multiple matches returns HTTP 409 with detailCode IDC_IDENTITY_AMBIGUOUS and candidates listing each match.
|
|
103565
103782
|
* @summary Resolve one identity by filter
|
|
@@ -103603,6 +103820,26 @@ export const IntelligencePackageV2026ApiFactory = function (configuration?: Conf
|
|
|
103603
103820
|
getIntelIdentityAccessHistory(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityAccessHistoryBodyV2026> {
|
|
103604
103821
|
return localVarFp.getIntelIdentityAccessHistory(requestParameters.identityID, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));
|
|
103605
103822
|
},
|
|
103823
|
+
/**
|
|
103824
|
+
* Risk snapshot envelope for the identity. The service resolves the first matching outlier for identityID and returns one page of access-items plus an optional continuation link for additional pages. Clients should continue paging using _links.outliers.href when provided. Requires tenant license idn:response-and-remediation.
|
|
103825
|
+
* @summary Identity risk snapshot
|
|
103826
|
+
* @param {IntelligencePackageV2026ApiGetIntelIdentityRiskRequest} requestParameters Request parameters.
|
|
103827
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
103828
|
+
* @throws {RequiredError}
|
|
103829
|
+
*/
|
|
103830
|
+
getIntelIdentityRisk(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityRiskBodyV2026> {
|
|
103831
|
+
return localVarFp.getIntelIdentityRisk(requestParameters.identityID, axiosOptions).then((request) => request(axios, basePath));
|
|
103832
|
+
},
|
|
103833
|
+
/**
|
|
103834
|
+
* Continuation endpoint for risk outlier access-items. Returns one page based on the supplied limit and offset values and includes an optional continuation link when more rows remain. Requires tenant license idn:response-and-remediation.
|
|
103835
|
+
* @summary Risk outliers continuation paging
|
|
103836
|
+
* @param {IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest} requestParameters Request parameters.
|
|
103837
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
103838
|
+
* @throws {RequiredError}
|
|
103839
|
+
*/
|
|
103840
|
+
getIntelIdentityRiskOutliers(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityRiskBodyV2026> {
|
|
103841
|
+
return localVarFp.getIntelIdentityRiskOutliers(requestParameters.identityID, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(axios, basePath));
|
|
103842
|
+
},
|
|
103606
103843
|
/**
|
|
103607
103844
|
* Requires tenant license idn:response-and-remediation. Returns the Intelligence Package envelope for the identity that matches the SCIM-style filters expression. Supported queryable fields are id and email only. A single match returns HTTP 200 with IntelIdentityResponse. Zero matches returns HTTP 404 with detailCode IDC_IDENTITY_NOT_FOUND. Multiple matches returns HTTP 409 with detailCode IDC_IDENTITY_AMBIGUOUS and candidates listing each match.
|
|
103608
103845
|
* @summary Resolve one identity by filter
|
|
@@ -103665,6 +103902,48 @@ export interface IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest
|
|
|
103665
103902
|
readonly count?: boolean
|
|
103666
103903
|
}
|
|
103667
103904
|
|
|
103905
|
+
/**
|
|
103906
|
+
* Request parameters for getIntelIdentityRisk operation in IntelligencePackageV2026Api.
|
|
103907
|
+
* @export
|
|
103908
|
+
* @interface IntelligencePackageV2026ApiGetIntelIdentityRiskRequest
|
|
103909
|
+
*/
|
|
103910
|
+
export interface IntelligencePackageV2026ApiGetIntelIdentityRiskRequest {
|
|
103911
|
+
/**
|
|
103912
|
+
* Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
103913
|
+
* @type {string}
|
|
103914
|
+
* @memberof IntelligencePackageV2026ApiGetIntelIdentityRisk
|
|
103915
|
+
*/
|
|
103916
|
+
readonly identityID: string
|
|
103917
|
+
}
|
|
103918
|
+
|
|
103919
|
+
/**
|
|
103920
|
+
* Request parameters for getIntelIdentityRiskOutliers operation in IntelligencePackageV2026Api.
|
|
103921
|
+
* @export
|
|
103922
|
+
* @interface IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest
|
|
103923
|
+
*/
|
|
103924
|
+
export interface IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest {
|
|
103925
|
+
/**
|
|
103926
|
+
* Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
103927
|
+
* @type {string}
|
|
103928
|
+
* @memberof IntelligencePackageV2026ApiGetIntelIdentityRiskOutliers
|
|
103929
|
+
*/
|
|
103930
|
+
readonly identityID: string
|
|
103931
|
+
|
|
103932
|
+
/**
|
|
103933
|
+
* Maximum number of outlier rows to return for this page.
|
|
103934
|
+
* @type {number}
|
|
103935
|
+
* @memberof IntelligencePackageV2026ApiGetIntelIdentityRiskOutliers
|
|
103936
|
+
*/
|
|
103937
|
+
readonly limit?: number
|
|
103938
|
+
|
|
103939
|
+
/**
|
|
103940
|
+
* Zero-based row index for the first returned outlier item.
|
|
103941
|
+
* @type {number}
|
|
103942
|
+
* @memberof IntelligencePackageV2026ApiGetIntelIdentityRiskOutliers
|
|
103943
|
+
*/
|
|
103944
|
+
readonly offset?: number
|
|
103945
|
+
}
|
|
103946
|
+
|
|
103668
103947
|
/**
|
|
103669
103948
|
* Request parameters for searchIntelIdentities operation in IntelligencePackageV2026Api.
|
|
103670
103949
|
* @export
|
|
@@ -103710,6 +103989,30 @@ export class IntelligencePackageV2026Api extends BaseAPI {
|
|
|
103710
103989
|
return IntelligencePackageV2026ApiFp(this.configuration).getIntelIdentityAccessHistory(requestParameters.identityID, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
103711
103990
|
}
|
|
103712
103991
|
|
|
103992
|
+
/**
|
|
103993
|
+
* Risk snapshot envelope for the identity. The service resolves the first matching outlier for identityID and returns one page of access-items plus an optional continuation link for additional pages. Clients should continue paging using _links.outliers.href when provided. Requires tenant license idn:response-and-remediation.
|
|
103994
|
+
* @summary Identity risk snapshot
|
|
103995
|
+
* @param {IntelligencePackageV2026ApiGetIntelIdentityRiskRequest} requestParameters Request parameters.
|
|
103996
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
103997
|
+
* @throws {RequiredError}
|
|
103998
|
+
* @memberof IntelligencePackageV2026Api
|
|
103999
|
+
*/
|
|
104000
|
+
public getIntelIdentityRisk(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
104001
|
+
return IntelligencePackageV2026ApiFp(this.configuration).getIntelIdentityRisk(requestParameters.identityID, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
104002
|
+
}
|
|
104003
|
+
|
|
104004
|
+
/**
|
|
104005
|
+
* Continuation endpoint for risk outlier access-items. Returns one page based on the supplied limit and offset values and includes an optional continuation link when more rows remain. Requires tenant license idn:response-and-remediation.
|
|
104006
|
+
* @summary Risk outliers continuation paging
|
|
104007
|
+
* @param {IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest} requestParameters Request parameters.
|
|
104008
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
104009
|
+
* @throws {RequiredError}
|
|
104010
|
+
* @memberof IntelligencePackageV2026Api
|
|
104011
|
+
*/
|
|
104012
|
+
public getIntelIdentityRiskOutliers(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
104013
|
+
return IntelligencePackageV2026ApiFp(this.configuration).getIntelIdentityRiskOutliers(requestParameters.identityID, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
104014
|
+
}
|
|
104015
|
+
|
|
103713
104016
|
/**
|
|
103714
104017
|
* Requires tenant license idn:response-and-remediation. Returns the Intelligence Package envelope for the identity that matches the SCIM-style filters expression. Supported queryable fields are id and email only. A single match returns HTTP 200 with IntelIdentityResponse. Zero matches returns HTTP 404 with detailCode IDC_IDENTITY_NOT_FOUND. Multiple matches returns HTTP 409 with detailCode IDC_IDENTITY_AMBIGUOUS and candidates listing each match.
|
|
103715
104018
|
* @summary Resolve one identity by filter
|
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.54`;
|
|
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.54'},
|
|
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.54
|
|
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.54 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|