sailpoint-api-client 1.8.62 → 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.js +77 -7
- 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 +28 -0
- 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/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.63";
|
|
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.63' }), { '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.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-nerm-sdk@1.8.
|
|
39
|
+
npm install sailpoint-nerm-sdk@1.8.63 --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.63`;
|
|
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.63'},
|
|
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.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-nerm-sdk@1.8.
|
|
39
|
+
npm install sailpoint-nerm-sdk@1.8.63 --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.63`;
|
|
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.63'},
|
|
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.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/v2024/api.ts
CHANGED
|
@@ -85767,6 +85767,10 @@ export const IdentityProfilesV2024ApiAxiosParamCreator = function (configuration
|
|
|
85767
85767
|
// oauth required
|
|
85768
85768
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
85769
85769
|
|
|
85770
|
+
// authentication applicationAuth required
|
|
85771
|
+
// oauth required
|
|
85772
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
85773
|
+
|
|
85770
85774
|
|
|
85771
85775
|
|
|
85772
85776
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -85812,6 +85816,10 @@ export const IdentityProfilesV2024ApiAxiosParamCreator = function (configuration
|
|
|
85812
85816
|
// oauth required
|
|
85813
85817
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
85814
85818
|
|
|
85819
|
+
// authentication applicationAuth required
|
|
85820
|
+
// oauth required
|
|
85821
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
85822
|
+
|
|
85815
85823
|
|
|
85816
85824
|
|
|
85817
85825
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -85853,6 +85861,10 @@ export const IdentityProfilesV2024ApiAxiosParamCreator = function (configuration
|
|
|
85853
85861
|
// oauth required
|
|
85854
85862
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
85855
85863
|
|
|
85864
|
+
// authentication applicationAuth required
|
|
85865
|
+
// oauth required
|
|
85866
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
85867
|
+
|
|
85856
85868
|
|
|
85857
85869
|
|
|
85858
85870
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -85964,6 +85976,10 @@ export const IdentityProfilesV2024ApiAxiosParamCreator = function (configuration
|
|
|
85964
85976
|
// oauth required
|
|
85965
85977
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
85966
85978
|
|
|
85979
|
+
// authentication applicationAuth required
|
|
85980
|
+
// oauth required
|
|
85981
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
85982
|
+
|
|
85967
85983
|
|
|
85968
85984
|
|
|
85969
85985
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -86009,6 +86025,10 @@ export const IdentityProfilesV2024ApiAxiosParamCreator = function (configuration
|
|
|
86009
86025
|
// oauth required
|
|
86010
86026
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
86011
86027
|
|
|
86028
|
+
// authentication applicationAuth required
|
|
86029
|
+
// oauth required
|
|
86030
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
86031
|
+
|
|
86012
86032
|
|
|
86013
86033
|
|
|
86014
86034
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -86208,6 +86228,10 @@ export const IdentityProfilesV2024ApiAxiosParamCreator = function (configuration
|
|
|
86208
86228
|
// oauth required
|
|
86209
86229
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
86210
86230
|
|
|
86231
|
+
// authentication applicationAuth required
|
|
86232
|
+
// oauth required
|
|
86233
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
86234
|
+
|
|
86211
86235
|
|
|
86212
86236
|
|
|
86213
86237
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -86253,6 +86277,10 @@ export const IdentityProfilesV2024ApiAxiosParamCreator = function (configuration
|
|
|
86253
86277
|
// oauth required
|
|
86254
86278
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
86255
86279
|
|
|
86280
|
+
// authentication applicationAuth required
|
|
86281
|
+
// oauth required
|
|
86282
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
86283
|
+
|
|
86256
86284
|
|
|
86257
86285
|
|
|
86258
86286
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
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.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/v2024/package.json
CHANGED
package/v2025/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/v2025/api.ts
CHANGED
|
@@ -98683,6 +98683,10 @@ export const IdentityProfilesV2025ApiAxiosParamCreator = function (configuration
|
|
|
98683
98683
|
// oauth required
|
|
98684
98684
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98685
98685
|
|
|
98686
|
+
// authentication applicationAuth required
|
|
98687
|
+
// oauth required
|
|
98688
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
98689
|
+
|
|
98686
98690
|
|
|
98687
98691
|
|
|
98688
98692
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -98728,6 +98732,10 @@ export const IdentityProfilesV2025ApiAxiosParamCreator = function (configuration
|
|
|
98728
98732
|
// oauth required
|
|
98729
98733
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98730
98734
|
|
|
98735
|
+
// authentication applicationAuth required
|
|
98736
|
+
// oauth required
|
|
98737
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
98738
|
+
|
|
98731
98739
|
|
|
98732
98740
|
|
|
98733
98741
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -98769,6 +98777,10 @@ export const IdentityProfilesV2025ApiAxiosParamCreator = function (configuration
|
|
|
98769
98777
|
// oauth required
|
|
98770
98778
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98771
98779
|
|
|
98780
|
+
// authentication applicationAuth required
|
|
98781
|
+
// oauth required
|
|
98782
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
98783
|
+
|
|
98772
98784
|
|
|
98773
98785
|
|
|
98774
98786
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -98880,6 +98892,10 @@ export const IdentityProfilesV2025ApiAxiosParamCreator = function (configuration
|
|
|
98880
98892
|
// oauth required
|
|
98881
98893
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98882
98894
|
|
|
98895
|
+
// authentication applicationAuth required
|
|
98896
|
+
// oauth required
|
|
98897
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
98898
|
+
|
|
98883
98899
|
|
|
98884
98900
|
|
|
98885
98901
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -98925,6 +98941,10 @@ export const IdentityProfilesV2025ApiAxiosParamCreator = function (configuration
|
|
|
98925
98941
|
// oauth required
|
|
98926
98942
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98927
98943
|
|
|
98944
|
+
// authentication applicationAuth required
|
|
98945
|
+
// oauth required
|
|
98946
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
98947
|
+
|
|
98928
98948
|
|
|
98929
98949
|
|
|
98930
98950
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -99124,6 +99144,10 @@ export const IdentityProfilesV2025ApiAxiosParamCreator = function (configuration
|
|
|
99124
99144
|
// oauth required
|
|
99125
99145
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
99126
99146
|
|
|
99147
|
+
// authentication applicationAuth required
|
|
99148
|
+
// oauth required
|
|
99149
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
99150
|
+
|
|
99127
99151
|
|
|
99128
99152
|
|
|
99129
99153
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -99169,6 +99193,10 @@ export const IdentityProfilesV2025ApiAxiosParamCreator = function (configuration
|
|
|
99169
99193
|
// oauth required
|
|
99170
99194
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
99171
99195
|
|
|
99196
|
+
// authentication applicationAuth required
|
|
99197
|
+
// oauth required
|
|
99198
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
99199
|
+
|
|
99172
99200
|
|
|
99173
99201
|
|
|
99174
99202
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
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.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/v2025/package.json
CHANGED
package/v2026/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/v2026/api.ts
CHANGED
|
@@ -102777,6 +102777,10 @@ export const IdentityProfilesV2026ApiAxiosParamCreator = function (configuration
|
|
|
102777
102777
|
// oauth required
|
|
102778
102778
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
102779
102779
|
|
|
102780
|
+
// authentication applicationAuth required
|
|
102781
|
+
// oauth required
|
|
102782
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
102783
|
+
|
|
102780
102784
|
|
|
102781
102785
|
|
|
102782
102786
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -102822,6 +102826,10 @@ export const IdentityProfilesV2026ApiAxiosParamCreator = function (configuration
|
|
|
102822
102826
|
// oauth required
|
|
102823
102827
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
102824
102828
|
|
|
102829
|
+
// authentication applicationAuth required
|
|
102830
|
+
// oauth required
|
|
102831
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
102832
|
+
|
|
102825
102833
|
|
|
102826
102834
|
|
|
102827
102835
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -102863,6 +102871,10 @@ export const IdentityProfilesV2026ApiAxiosParamCreator = function (configuration
|
|
|
102863
102871
|
// oauth required
|
|
102864
102872
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
102865
102873
|
|
|
102874
|
+
// authentication applicationAuth required
|
|
102875
|
+
// oauth required
|
|
102876
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
102877
|
+
|
|
102866
102878
|
|
|
102867
102879
|
|
|
102868
102880
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -102974,6 +102986,10 @@ export const IdentityProfilesV2026ApiAxiosParamCreator = function (configuration
|
|
|
102974
102986
|
// oauth required
|
|
102975
102987
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
102976
102988
|
|
|
102989
|
+
// authentication applicationAuth required
|
|
102990
|
+
// oauth required
|
|
102991
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
102992
|
+
|
|
102977
102993
|
|
|
102978
102994
|
|
|
102979
102995
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -103019,6 +103035,10 @@ export const IdentityProfilesV2026ApiAxiosParamCreator = function (configuration
|
|
|
103019
103035
|
// oauth required
|
|
103020
103036
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103021
103037
|
|
|
103038
|
+
// authentication applicationAuth required
|
|
103039
|
+
// oauth required
|
|
103040
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
103041
|
+
|
|
103022
103042
|
|
|
103023
103043
|
|
|
103024
103044
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -103218,6 +103238,10 @@ export const IdentityProfilesV2026ApiAxiosParamCreator = function (configuration
|
|
|
103218
103238
|
// oauth required
|
|
103219
103239
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103220
103240
|
|
|
103241
|
+
// authentication applicationAuth required
|
|
103242
|
+
// oauth required
|
|
103243
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
103244
|
+
|
|
103221
103245
|
|
|
103222
103246
|
|
|
103223
103247
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -103263,6 +103287,10 @@ export const IdentityProfilesV2026ApiAxiosParamCreator = function (configuration
|
|
|
103263
103287
|
// oauth required
|
|
103264
103288
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103265
103289
|
|
|
103290
|
+
// authentication applicationAuth required
|
|
103291
|
+
// oauth required
|
|
103292
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
103293
|
+
|
|
103266
103294
|
|
|
103267
103295
|
|
|
103268
103296
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
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
|
|