sailpoint-api-client 1.8.23 → 1.8.24
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/api.js +205 -105
- package/dist/nermv2025/api.js.map +1 -1
- package/dist/nermv2025/common.js +2 -2
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/common.js +2 -2
- 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/api.ts +40 -0
- 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/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/beta/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-sdk@1.8.
|
|
1
|
+
## sailpoint-sdk@1.8.24
|
|
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.24 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/beta/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.24`;
|
|
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.24'},
|
|
157
157
|
...{'User-Agent': userAgent},
|
|
158
158
|
}
|
|
159
159
|
|
package/beta/package.json
CHANGED
package/dist/beta/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.24";
|
|
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.24' }), { '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/nerm/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.24";
|
|
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({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.24' }), { '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/nermv2025/api.js
CHANGED
|
@@ -109,39 +109,59 @@ var DelegationsNERMV2025ApiAxiosParamCreator = function (configuration) {
|
|
|
109
109
|
return __awaiter(_this, void 0, void 0, function () {
|
|
110
110
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
111
111
|
return __generator(this, function (_a) {
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
112
|
+
switch (_a.label) {
|
|
113
|
+
case 0:
|
|
114
|
+
localVarPath = "/delegations";
|
|
115
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
116
|
+
if (configuration) {
|
|
117
|
+
baseOptions = configuration.baseOptions;
|
|
118
|
+
}
|
|
119
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), axiosOptions);
|
|
120
|
+
localVarHeaderParameter = {};
|
|
121
|
+
localVarQueryParameter = {};
|
|
122
|
+
// authentication userAuth required
|
|
123
|
+
// oauth required
|
|
124
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)
|
|
125
|
+
// authentication userAuth required
|
|
126
|
+
// oauth required
|
|
127
|
+
];
|
|
128
|
+
case 1:
|
|
129
|
+
// authentication userAuth required
|
|
130
|
+
// oauth required
|
|
131
|
+
_a.sent();
|
|
132
|
+
// authentication userAuth required
|
|
133
|
+
// oauth required
|
|
134
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)];
|
|
135
|
+
case 2:
|
|
136
|
+
// authentication userAuth required
|
|
137
|
+
// oauth required
|
|
138
|
+
_a.sent();
|
|
139
|
+
if (delegateId !== undefined) {
|
|
140
|
+
localVarQueryParameter['delegate_id'] = delegateId;
|
|
141
|
+
}
|
|
142
|
+
if (delegatorId !== undefined) {
|
|
143
|
+
localVarQueryParameter['delegator_id'] = delegatorId;
|
|
144
|
+
}
|
|
145
|
+
if (expired !== undefined) {
|
|
146
|
+
localVarQueryParameter['expired'] = expired;
|
|
147
|
+
}
|
|
148
|
+
if (limit !== undefined) {
|
|
149
|
+
localVarQueryParameter['limit'] = limit;
|
|
150
|
+
}
|
|
151
|
+
if (offset !== undefined) {
|
|
152
|
+
localVarQueryParameter['offset'] = offset;
|
|
153
|
+
}
|
|
154
|
+
if (include !== undefined) {
|
|
155
|
+
localVarQueryParameter['include'] = include;
|
|
156
|
+
}
|
|
157
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
158
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
159
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
160
|
+
return [2 /*return*/, {
|
|
161
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
162
|
+
axiosOptions: localVarRequestOptions,
|
|
163
|
+
}];
|
|
137
164
|
}
|
|
138
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
139
|
-
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
140
|
-
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
141
|
-
return [2 /*return*/, {
|
|
142
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
143
|
-
axiosOptions: localVarRequestOptions,
|
|
144
|
-
}];
|
|
145
165
|
});
|
|
146
166
|
});
|
|
147
167
|
},
|
|
@@ -157,24 +177,44 @@ var DelegationsNERMV2025ApiAxiosParamCreator = function (configuration) {
|
|
|
157
177
|
return __awaiter(_this, void 0, void 0, function () {
|
|
158
178
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
159
179
|
return __generator(this, function (_a) {
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
180
|
+
switch (_a.label) {
|
|
181
|
+
case 0:
|
|
182
|
+
// verify required parameter 'id' is not null or undefined
|
|
183
|
+
(0, common_1.assertParamExists)('delegationsIdDelete', 'id', id);
|
|
184
|
+
localVarPath = "/delegations/{id}"
|
|
185
|
+
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
186
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
187
|
+
if (configuration) {
|
|
188
|
+
baseOptions = configuration.baseOptions;
|
|
189
|
+
}
|
|
190
|
+
localVarRequestOptions = __assign(__assign({ method: 'DELETE' }, baseOptions), axiosOptions);
|
|
191
|
+
localVarHeaderParameter = {};
|
|
192
|
+
localVarQueryParameter = {};
|
|
193
|
+
// authentication userAuth required
|
|
194
|
+
// oauth required
|
|
195
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)
|
|
196
|
+
// authentication userAuth required
|
|
197
|
+
// oauth required
|
|
198
|
+
];
|
|
199
|
+
case 1:
|
|
200
|
+
// authentication userAuth required
|
|
201
|
+
// oauth required
|
|
202
|
+
_a.sent();
|
|
203
|
+
// authentication userAuth required
|
|
204
|
+
// oauth required
|
|
205
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)];
|
|
206
|
+
case 2:
|
|
207
|
+
// authentication userAuth required
|
|
208
|
+
// oauth required
|
|
209
|
+
_a.sent();
|
|
210
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
211
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
212
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
213
|
+
return [2 /*return*/, {
|
|
214
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
215
|
+
axiosOptions: localVarRequestOptions,
|
|
216
|
+
}];
|
|
167
217
|
}
|
|
168
|
-
localVarRequestOptions = __assign(__assign({ method: 'DELETE' }, baseOptions), axiosOptions);
|
|
169
|
-
localVarHeaderParameter = {};
|
|
170
|
-
localVarQueryParameter = {};
|
|
171
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
172
|
-
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
173
|
-
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
174
|
-
return [2 /*return*/, {
|
|
175
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
176
|
-
axiosOptions: localVarRequestOptions,
|
|
177
|
-
}];
|
|
178
218
|
});
|
|
179
219
|
});
|
|
180
220
|
},
|
|
@@ -190,24 +230,44 @@ var DelegationsNERMV2025ApiAxiosParamCreator = function (configuration) {
|
|
|
190
230
|
return __awaiter(_this, void 0, void 0, function () {
|
|
191
231
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
192
232
|
return __generator(this, function (_a) {
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
233
|
+
switch (_a.label) {
|
|
234
|
+
case 0:
|
|
235
|
+
// verify required parameter 'id' is not null or undefined
|
|
236
|
+
(0, common_1.assertParamExists)('delegationsIdGet', 'id', id);
|
|
237
|
+
localVarPath = "/delegations/{id}"
|
|
238
|
+
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
239
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
240
|
+
if (configuration) {
|
|
241
|
+
baseOptions = configuration.baseOptions;
|
|
242
|
+
}
|
|
243
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), axiosOptions);
|
|
244
|
+
localVarHeaderParameter = {};
|
|
245
|
+
localVarQueryParameter = {};
|
|
246
|
+
// authentication userAuth required
|
|
247
|
+
// oauth required
|
|
248
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)
|
|
249
|
+
// authentication userAuth required
|
|
250
|
+
// oauth required
|
|
251
|
+
];
|
|
252
|
+
case 1:
|
|
253
|
+
// authentication userAuth required
|
|
254
|
+
// oauth required
|
|
255
|
+
_a.sent();
|
|
256
|
+
// authentication userAuth required
|
|
257
|
+
// oauth required
|
|
258
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)];
|
|
259
|
+
case 2:
|
|
260
|
+
// authentication userAuth required
|
|
261
|
+
// oauth required
|
|
262
|
+
_a.sent();
|
|
263
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
264
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
265
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
266
|
+
return [2 /*return*/, {
|
|
267
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
268
|
+
axiosOptions: localVarRequestOptions,
|
|
269
|
+
}];
|
|
200
270
|
}
|
|
201
|
-
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), axiosOptions);
|
|
202
|
-
localVarHeaderParameter = {};
|
|
203
|
-
localVarQueryParameter = {};
|
|
204
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
205
|
-
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
206
|
-
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
207
|
-
return [2 /*return*/, {
|
|
208
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
209
|
-
axiosOptions: localVarRequestOptions,
|
|
210
|
-
}];
|
|
211
271
|
});
|
|
212
272
|
});
|
|
213
273
|
},
|
|
@@ -224,28 +284,48 @@ var DelegationsNERMV2025ApiAxiosParamCreator = function (configuration) {
|
|
|
224
284
|
return __awaiter(_this, void 0, void 0, function () {
|
|
225
285
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
226
286
|
return __generator(this, function (_a) {
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
287
|
+
switch (_a.label) {
|
|
288
|
+
case 0:
|
|
289
|
+
// verify required parameter 'id' is not null or undefined
|
|
290
|
+
(0, common_1.assertParamExists)('delegationsIdPatch', 'id', id);
|
|
291
|
+
// verify required parameter 'delegationsPostRequestNERMV2025' is not null or undefined
|
|
292
|
+
(0, common_1.assertParamExists)('delegationsIdPatch', 'delegationsPostRequestNERMV2025', delegationsPostRequestNERMV2025);
|
|
293
|
+
localVarPath = "/delegations/{id}"
|
|
294
|
+
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
295
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
296
|
+
if (configuration) {
|
|
297
|
+
baseOptions = configuration.baseOptions;
|
|
298
|
+
}
|
|
299
|
+
localVarRequestOptions = __assign(__assign({ method: 'PATCH' }, baseOptions), axiosOptions);
|
|
300
|
+
localVarHeaderParameter = {};
|
|
301
|
+
localVarQueryParameter = {};
|
|
302
|
+
// authentication userAuth required
|
|
303
|
+
// oauth required
|
|
304
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)
|
|
305
|
+
// authentication userAuth required
|
|
306
|
+
// oauth required
|
|
307
|
+
];
|
|
308
|
+
case 1:
|
|
309
|
+
// authentication userAuth required
|
|
310
|
+
// oauth required
|
|
311
|
+
_a.sent();
|
|
312
|
+
// authentication userAuth required
|
|
313
|
+
// oauth required
|
|
314
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)];
|
|
315
|
+
case 2:
|
|
316
|
+
// authentication userAuth required
|
|
317
|
+
// oauth required
|
|
318
|
+
_a.sent();
|
|
319
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
320
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
321
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
322
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
323
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(delegationsPostRequestNERMV2025, localVarRequestOptions, configuration);
|
|
324
|
+
return [2 /*return*/, {
|
|
325
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
326
|
+
axiosOptions: localVarRequestOptions,
|
|
327
|
+
}];
|
|
236
328
|
}
|
|
237
|
-
localVarRequestOptions = __assign(__assign({ method: 'PATCH' }, baseOptions), axiosOptions);
|
|
238
|
-
localVarHeaderParameter = {};
|
|
239
|
-
localVarQueryParameter = {};
|
|
240
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
241
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
242
|
-
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
243
|
-
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
244
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(delegationsPostRequestNERMV2025, localVarRequestOptions, configuration);
|
|
245
|
-
return [2 /*return*/, {
|
|
246
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
247
|
-
axiosOptions: localVarRequestOptions,
|
|
248
|
-
}];
|
|
249
329
|
});
|
|
250
330
|
});
|
|
251
331
|
},
|
|
@@ -261,25 +341,45 @@ var DelegationsNERMV2025ApiAxiosParamCreator = function (configuration) {
|
|
|
261
341
|
return __awaiter(_this, void 0, void 0, function () {
|
|
262
342
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
263
343
|
return __generator(this, function (_a) {
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
344
|
+
switch (_a.label) {
|
|
345
|
+
case 0:
|
|
346
|
+
// verify required parameter 'delegationsPostRequestNERMV2025' is not null or undefined
|
|
347
|
+
(0, common_1.assertParamExists)('delegationsPost', 'delegationsPostRequestNERMV2025', delegationsPostRequestNERMV2025);
|
|
348
|
+
localVarPath = "/delegations";
|
|
349
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
350
|
+
if (configuration) {
|
|
351
|
+
baseOptions = configuration.baseOptions;
|
|
352
|
+
}
|
|
353
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), axiosOptions);
|
|
354
|
+
localVarHeaderParameter = {};
|
|
355
|
+
localVarQueryParameter = {};
|
|
356
|
+
// authentication userAuth required
|
|
357
|
+
// oauth required
|
|
358
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)
|
|
359
|
+
// authentication userAuth required
|
|
360
|
+
// oauth required
|
|
361
|
+
];
|
|
362
|
+
case 1:
|
|
363
|
+
// authentication userAuth required
|
|
364
|
+
// oauth required
|
|
365
|
+
_a.sent();
|
|
366
|
+
// authentication userAuth required
|
|
367
|
+
// oauth required
|
|
368
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)];
|
|
369
|
+
case 2:
|
|
370
|
+
// authentication userAuth required
|
|
371
|
+
// oauth required
|
|
372
|
+
_a.sent();
|
|
373
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
374
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
375
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
376
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
377
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(delegationsPostRequestNERMV2025, localVarRequestOptions, configuration);
|
|
378
|
+
return [2 /*return*/, {
|
|
379
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
380
|
+
axiosOptions: localVarRequestOptions,
|
|
381
|
+
}];
|
|
270
382
|
}
|
|
271
|
-
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), axiosOptions);
|
|
272
|
-
localVarHeaderParameter = {};
|
|
273
|
-
localVarQueryParameter = {};
|
|
274
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
275
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
276
|
-
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
277
|
-
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
278
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(delegationsPostRequestNERMV2025, localVarRequestOptions, configuration);
|
|
279
|
-
return [2 /*return*/, {
|
|
280
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
281
|
-
axiosOptions: localVarRequestOptions,
|
|
282
|
-
}];
|
|
283
383
|
});
|
|
284
384
|
});
|
|
285
385
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../nermv2025/api.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../nermv2025/api.ts"],"names":[],"mappings":"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"}
|
package/dist/nermv2025/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.24";
|
|
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({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.24' }), { '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/v2024/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.24";
|
|
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.24' }), { '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/v2025/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.24";
|
|
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.24' }), { '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/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.24";
|
|
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.24' }), { '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.24";
|
|
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.24' }), { '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.24
|
|
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.24 --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.24`;
|
|
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.24'},
|
|
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.24
|
|
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.24 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/nermv2025/api.ts
CHANGED
|
@@ -389,6 +389,14 @@ export const DelegationsNERMV2025ApiAxiosParamCreator = function (configuration?
|
|
|
389
389
|
const localVarHeaderParameter = {} as any;
|
|
390
390
|
const localVarQueryParameter = {} as any;
|
|
391
391
|
|
|
392
|
+
// authentication userAuth required
|
|
393
|
+
// oauth required
|
|
394
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
395
|
+
|
|
396
|
+
// authentication userAuth required
|
|
397
|
+
// oauth required
|
|
398
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
399
|
+
|
|
392
400
|
if (delegateId !== undefined) {
|
|
393
401
|
localVarQueryParameter['delegate_id'] = delegateId;
|
|
394
402
|
}
|
|
@@ -447,6 +455,14 @@ export const DelegationsNERMV2025ApiAxiosParamCreator = function (configuration?
|
|
|
447
455
|
const localVarHeaderParameter = {} as any;
|
|
448
456
|
const localVarQueryParameter = {} as any;
|
|
449
457
|
|
|
458
|
+
// authentication userAuth required
|
|
459
|
+
// oauth required
|
|
460
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
461
|
+
|
|
462
|
+
// authentication userAuth required
|
|
463
|
+
// oauth required
|
|
464
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
465
|
+
|
|
450
466
|
|
|
451
467
|
|
|
452
468
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -481,6 +497,14 @@ export const DelegationsNERMV2025ApiAxiosParamCreator = function (configuration?
|
|
|
481
497
|
const localVarHeaderParameter = {} as any;
|
|
482
498
|
const localVarQueryParameter = {} as any;
|
|
483
499
|
|
|
500
|
+
// authentication userAuth required
|
|
501
|
+
// oauth required
|
|
502
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
503
|
+
|
|
504
|
+
// authentication userAuth required
|
|
505
|
+
// oauth required
|
|
506
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
507
|
+
|
|
484
508
|
|
|
485
509
|
|
|
486
510
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -518,6 +542,14 @@ export const DelegationsNERMV2025ApiAxiosParamCreator = function (configuration?
|
|
|
518
542
|
const localVarHeaderParameter = {} as any;
|
|
519
543
|
const localVarQueryParameter = {} as any;
|
|
520
544
|
|
|
545
|
+
// authentication userAuth required
|
|
546
|
+
// oauth required
|
|
547
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
548
|
+
|
|
549
|
+
// authentication userAuth required
|
|
550
|
+
// oauth required
|
|
551
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
552
|
+
|
|
521
553
|
|
|
522
554
|
|
|
523
555
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -554,6 +586,14 @@ export const DelegationsNERMV2025ApiAxiosParamCreator = function (configuration?
|
|
|
554
586
|
const localVarHeaderParameter = {} as any;
|
|
555
587
|
const localVarQueryParameter = {} as any;
|
|
556
588
|
|
|
589
|
+
// authentication userAuth required
|
|
590
|
+
// oauth required
|
|
591
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
592
|
+
|
|
593
|
+
// authentication userAuth required
|
|
594
|
+
// oauth required
|
|
595
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
596
|
+
|
|
557
597
|
|
|
558
598
|
|
|
559
599
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
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.24`;
|
|
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.24'},
|
|
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.24
|
|
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.24 --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.24`;
|
|
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.24'},
|
|
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.24
|
|
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.24 --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.24`;
|
|
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.24'},
|
|
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.24
|
|
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.24 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
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.24`;
|
|
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.24'},
|
|
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.24
|
|
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.24 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
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.24`;
|
|
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.24'},
|
|
157
157
|
...{'User-Agent': userAgent},
|
|
158
158
|
}
|
|
159
159
|
|