sailpoint-api-client 1.8.16 → 1.8.18

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.16";
253
+ var userAgent = "SailPoint-SDK-TypeScript/1.8.18";
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.16' }), { 'User-Agent': userAgent });
258
+ var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.18' }), { '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.16";
253
+ var userAgent = "SailPoint-SDK-TypeScript/1.8.18";
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.16' }), { 'User-Agent': userAgent });
258
+ var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.18' }), { '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.16
1
+ ## sailpoint-nerm-sdk@1.8.18
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.16 --save
39
+ npm install sailpoint-nerm-sdk@1.8.18 --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.16`;
149
+ let userAgent = `SailPoint-SDK-TypeScript/1.8.18`;
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.16'},
157
+ ...{'X-SailPoint-SDK':'typescript-1.8.18'},
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.16",
3
+ "version": "1.8.18",
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.16
1
+ ## sailpoint-nerm-sdk@1.8.18
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.16 --save
39
+ npm install sailpoint-nerm-sdk@1.8.18 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -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.16`;
149
+ let userAgent = `SailPoint-SDK-TypeScript/1.8.18`;
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.16'},
157
+ ...{'X-SailPoint-SDK':'typescript-1.8.18'},
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.16",
3
+ "version": "1.8.18",
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.16",
3
+ "version": "1.8.18",
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.16
1
+ ## sailpoint-sdk@1.8.18
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.16 --save
39
+ npm install sailpoint-sdk@1.8.18 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/v2024/api.ts CHANGED
@@ -66776,11 +66776,13 @@ export const CustomFormsV2024ApiAxiosParamCreator = function (configuration?: Co
66776
66776
  /**
66777
66777
  * Returns a list of form instances for the tenant. Optionally filter by form definition ID.
66778
66778
  * @summary List form instances by tenant.
66779
+ * @param {number} [offset] Offset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). The offset value is record-based, not page-based, and the index starts at 0.
66780
+ * @param {number} [limit] Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). If it is not specified, a default limit is used.
66779
66781
  * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **formDefinitionId**: *eq*
66780
66782
  * @param {*} [axiosOptions] Override http request option.
66781
66783
  * @throws {RequiredError}
66782
66784
  */
66783
- searchFormInstancesByTenant: async (filters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
66785
+ searchFormInstancesByTenant: async (offset?: number, limit?: number, filters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
66784
66786
  const localVarPath = `/form-instances`;
66785
66787
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
66786
66788
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -66801,6 +66803,14 @@ export const CustomFormsV2024ApiAxiosParamCreator = function (configuration?: Co
66801
66803
  // oauth required
66802
66804
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
66803
66805
 
66806
+ if (offset !== undefined) {
66807
+ localVarQueryParameter['offset'] = offset;
66808
+ }
66809
+
66810
+ if (limit !== undefined) {
66811
+ localVarQueryParameter['limit'] = limit;
66812
+ }
66813
+
66804
66814
  if (filters !== undefined) {
66805
66815
  localVarQueryParameter['filters'] = filters;
66806
66816
  }
@@ -67138,12 +67148,14 @@ export const CustomFormsV2024ApiFp = function(configuration?: Configuration) {
67138
67148
  /**
67139
67149
  * Returns a list of form instances for the tenant. Optionally filter by form definition ID.
67140
67150
  * @summary List form instances by tenant.
67151
+ * @param {number} [offset] Offset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). The offset value is record-based, not page-based, and the index starts at 0.
67152
+ * @param {number} [limit] Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). If it is not specified, a default limit is used.
67141
67153
  * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **formDefinitionId**: *eq*
67142
67154
  * @param {*} [axiosOptions] Override http request option.
67143
67155
  * @throws {RequiredError}
67144
67156
  */
67145
- async searchFormInstancesByTenant(filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListFormInstancesByTenantResponseV2024>>> {
67146
- const localVarAxiosArgs = await localVarAxiosParamCreator.searchFormInstancesByTenant(filters, axiosOptions);
67157
+ async searchFormInstancesByTenant(offset?: number, limit?: number, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListFormInstancesByTenantResponseV2024>>> {
67158
+ const localVarAxiosArgs = await localVarAxiosParamCreator.searchFormInstancesByTenant(offset, limit, filters, axiosOptions);
67147
67159
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
67148
67160
  const localVarOperationServerBasePath = operationServerMap['CustomFormsV2024Api.searchFormInstancesByTenant']?.[localVarOperationServerIndex]?.url;
67149
67161
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -67345,7 +67357,7 @@ export const CustomFormsV2024ApiFactory = function (configuration?: Configuratio
67345
67357
  * @throws {RequiredError}
67346
67358
  */
67347
67359
  searchFormInstancesByTenant(requestParameters: CustomFormsV2024ApiSearchFormInstancesByTenantRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ListFormInstancesByTenantResponseV2024>> {
67348
- return localVarFp.searchFormInstancesByTenant(requestParameters.filters, axiosOptions).then((request) => request(axios, basePath));
67360
+ return localVarFp.searchFormInstancesByTenant(requestParameters.offset, requestParameters.limit, requestParameters.filters, axiosOptions).then((request) => request(axios, basePath));
67349
67361
  },
67350
67362
  /**
67351
67363
  * No parameters required.
@@ -67690,6 +67702,20 @@ export interface CustomFormsV2024ApiSearchFormElementDataByElementIDRequest {
67690
67702
  * @interface CustomFormsV2024ApiSearchFormInstancesByTenantRequest
67691
67703
  */
67692
67704
  export interface CustomFormsV2024ApiSearchFormInstancesByTenantRequest {
67705
+ /**
67706
+ * Offset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). The offset value is record-based, not page-based, and the index starts at 0.
67707
+ * @type {number}
67708
+ * @memberof CustomFormsV2024ApiSearchFormInstancesByTenant
67709
+ */
67710
+ readonly offset?: number
67711
+
67712
+ /**
67713
+ * Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). If it is not specified, a default limit is used.
67714
+ * @type {number}
67715
+ * @memberof CustomFormsV2024ApiSearchFormInstancesByTenant
67716
+ */
67717
+ readonly limit?: number
67718
+
67693
67719
  /**
67694
67720
  * Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **formDefinitionId**: *eq*
67695
67721
  * @type {string}
@@ -67936,7 +67962,7 @@ export class CustomFormsV2024Api extends BaseAPI {
67936
67962
  * @memberof CustomFormsV2024Api
67937
67963
  */
67938
67964
  public searchFormInstancesByTenant(requestParameters: CustomFormsV2024ApiSearchFormInstancesByTenantRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
67939
- return CustomFormsV2024ApiFp(this.configuration).searchFormInstancesByTenant(requestParameters.filters, axiosOptions).then((request) => request(this.axios, this.basePath));
67965
+ return CustomFormsV2024ApiFp(this.configuration).searchFormInstancesByTenant(requestParameters.offset, requestParameters.limit, requestParameters.filters, axiosOptions).then((request) => request(this.axios, this.basePath));
67940
67966
  }
67941
67967
 
67942
67968
  /**
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.16`;
149
+ let userAgent = `SailPoint-SDK-TypeScript/1.8.18`;
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.16'},
156
+ ...{'X-SailPoint-SDK':'typescript-1.8.18'},
157
157
  ...{'User-Agent': userAgent},
158
158
  }
159
159
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.8.16",
3
+ "version": "1.8.18",
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.16
1
+ ## sailpoint-sdk@1.8.18
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.16 --save
39
+ npm install sailpoint-sdk@1.8.18 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_