sailpoint-api-client 1.8.61 → 1.8.63
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.js +99 -9
- 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.js +77 -7
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/api.js +77 -7
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/api.d.ts +740 -13
- package/dist/v2026/api.js +726 -24
- package/dist/v2026/api.js.map +1 -1
- package/dist/v2026/common.js +2 -2
- package/dist/v3/api.js +77 -7
- 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 +28 -0
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +28 -0
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +1086 -13
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +32 -4
- 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.63`;
|
|
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.63'},
|
|
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.63
|
|
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.63 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/v3/api.ts
CHANGED
|
@@ -39047,7 +39047,7 @@ export class GlobalTenantSecuritySettingsApi extends BaseAPI {
|
|
|
39047
39047
|
export const IdentityProfilesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
39048
39048
|
return {
|
|
39049
39049
|
/**
|
|
39050
|
-
* Creates an identity profile.
|
|
39050
|
+
* Creates an identity profile.
|
|
39051
39051
|
* @summary Create identity profile
|
|
39052
39052
|
* @param {IdentityProfile} identityProfile
|
|
39053
39053
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -39076,6 +39076,10 @@ export const IdentityProfilesApiAxiosParamCreator = function (configuration?: Co
|
|
|
39076
39076
|
// oauth required
|
|
39077
39077
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
39078
39078
|
|
|
39079
|
+
// authentication applicationAuth required
|
|
39080
|
+
// oauth required
|
|
39081
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
39082
|
+
|
|
39079
39083
|
|
|
39080
39084
|
|
|
39081
39085
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -39121,6 +39125,10 @@ export const IdentityProfilesApiAxiosParamCreator = function (configuration?: Co
|
|
|
39121
39125
|
// oauth required
|
|
39122
39126
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
39123
39127
|
|
|
39128
|
+
// authentication applicationAuth required
|
|
39129
|
+
// oauth required
|
|
39130
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
39131
|
+
|
|
39124
39132
|
|
|
39125
39133
|
|
|
39126
39134
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -39162,6 +39170,10 @@ export const IdentityProfilesApiAxiosParamCreator = function (configuration?: Co
|
|
|
39162
39170
|
// oauth required
|
|
39163
39171
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
39164
39172
|
|
|
39173
|
+
// authentication applicationAuth required
|
|
39174
|
+
// oauth required
|
|
39175
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
39176
|
+
|
|
39165
39177
|
|
|
39166
39178
|
|
|
39167
39179
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -39274,6 +39286,10 @@ export const IdentityProfilesApiAxiosParamCreator = function (configuration?: Co
|
|
|
39274
39286
|
// oauth required
|
|
39275
39287
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
39276
39288
|
|
|
39289
|
+
// authentication applicationAuth required
|
|
39290
|
+
// oauth required
|
|
39291
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
39292
|
+
|
|
39277
39293
|
|
|
39278
39294
|
|
|
39279
39295
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -39472,6 +39488,10 @@ export const IdentityProfilesApiAxiosParamCreator = function (configuration?: Co
|
|
|
39472
39488
|
// oauth required
|
|
39473
39489
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
39474
39490
|
|
|
39491
|
+
// authentication applicationAuth required
|
|
39492
|
+
// oauth required
|
|
39493
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
39494
|
+
|
|
39475
39495
|
|
|
39476
39496
|
|
|
39477
39497
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -39517,6 +39537,10 @@ export const IdentityProfilesApiAxiosParamCreator = function (configuration?: Co
|
|
|
39517
39537
|
// oauth required
|
|
39518
39538
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
39519
39539
|
|
|
39540
|
+
// authentication applicationAuth required
|
|
39541
|
+
// oauth required
|
|
39542
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
39543
|
+
|
|
39520
39544
|
|
|
39521
39545
|
|
|
39522
39546
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -39562,6 +39586,10 @@ export const IdentityProfilesApiAxiosParamCreator = function (configuration?: Co
|
|
|
39562
39586
|
// oauth required
|
|
39563
39587
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
39564
39588
|
|
|
39589
|
+
// authentication applicationAuth required
|
|
39590
|
+
// oauth required
|
|
39591
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
39592
|
+
|
|
39565
39593
|
|
|
39566
39594
|
|
|
39567
39595
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -39587,7 +39615,7 @@ export const IdentityProfilesApiFp = function(configuration?: Configuration) {
|
|
|
39587
39615
|
const localVarAxiosParamCreator = IdentityProfilesApiAxiosParamCreator(configuration)
|
|
39588
39616
|
return {
|
|
39589
39617
|
/**
|
|
39590
|
-
* Creates an identity profile.
|
|
39618
|
+
* Creates an identity profile.
|
|
39591
39619
|
* @summary Create identity profile
|
|
39592
39620
|
* @param {IdentityProfile} identityProfile
|
|
39593
39621
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -39749,7 +39777,7 @@ export const IdentityProfilesApiFactory = function (configuration?: Configuratio
|
|
|
39749
39777
|
const localVarFp = IdentityProfilesApiFp(configuration)
|
|
39750
39778
|
return {
|
|
39751
39779
|
/**
|
|
39752
|
-
* Creates an identity profile.
|
|
39780
|
+
* Creates an identity profile.
|
|
39753
39781
|
* @summary Create identity profile
|
|
39754
39782
|
* @param {IdentityProfilesApiCreateIdentityProfileRequest} requestParameters Request parameters.
|
|
39755
39783
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40086,7 +40114,7 @@ export interface IdentityProfilesApiUpdateIdentityProfileRequest {
|
|
|
40086
40114
|
*/
|
|
40087
40115
|
export class IdentityProfilesApi extends BaseAPI {
|
|
40088
40116
|
/**
|
|
40089
|
-
* Creates an identity profile.
|
|
40117
|
+
* Creates an identity profile.
|
|
40090
40118
|
* @summary Create identity profile
|
|
40091
40119
|
* @param {IdentityProfilesApiCreateIdentityProfileRequest} requestParameters Request parameters.
|
|
40092
40120
|
* @param {*} [axiosOptions] Override http request option.
|
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.63`;
|
|
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.63'},
|
|
157
157
|
...{'User-Agent': userAgent},
|
|
158
158
|
}
|
|
159
159
|
|