sailpoint-api-client 1.8.22 → 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.
@@ -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.22";
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.22' }), { 'User-Agent': userAgent });
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.22";
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.22' }), { 'User-Agent': userAgent });
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.22
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.22 --save
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.22`;
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.22'},
157
+ ...{'X-SailPoint-SDK':'typescript-1.8.24'},
158
158
  ...{'User-Agent': userAgent},
159
159
  }
160
160
 
package/nerm/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-nerm-sdk",
3
- "version": "1.8.22",
3
+ "version": "1.8.24",
4
4
  "description": "OpenAPI client for sailpoint-nerm-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -1,4 +1,4 @@
1
- ## sailpoint-nerm-sdk@1.8.22
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.22 --save
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';
@@ -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.22`;
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.22'},
157
+ ...{'X-SailPoint-SDK':'typescript-1.8.24'},
158
158
  ...{'User-Agent': userAgent},
159
159
  }
160
160
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-nerm-sdk",
3
- "version": "1.8.22",
3
+ "version": "1.8.24",
4
4
  "description": "OpenAPI client for sailpoint-nerm-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-api-client",
3
- "version": "1.8.22",
3
+ "version": "1.8.24",
4
4
  "description": "Official library for using the SailPoint API",
5
5
  "author": "SailPoint DevOps",
6
6
  "repository": {
package/v2024/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-sdk@1.8.22
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.22 --save
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.22`;
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.22'},
156
+ ...{'X-SailPoint-SDK':'typescript-1.8.24'},
157
157
  ...{'User-Agent': userAgent},
158
158
  }
159
159
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.8.22",
3
+ "version": "1.8.24",
4
4
  "description": "OpenAPI client for sailpoint-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
package/v2025/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-sdk@1.8.22
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.22 --save
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.22`;
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.22'},
156
+ ...{'X-SailPoint-SDK':'typescript-1.8.24'},
157
157
  ...{'User-Agent': userAgent},
158
158
  }
159
159
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.8.22",
3
+ "version": "1.8.24",
4
4
  "description": "OpenAPI client for sailpoint-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
package/v2026/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-sdk@1.8.22
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.22 --save
39
+ npm install sailpoint-sdk@1.8.24 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_