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/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):_
|