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
  }
@@ -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({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.16' }), { 'User-Agent': userAgent });
258
+ var headers = __assign(__assign(__assign({ 'Accept': 'application/json' }, 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
  }
@@ -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({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.16' }), { 'User-Agent': userAgent });
258
+ var headers = __assign(__assign(__assign({ 'Accept': 'application/json' }, 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
  }
@@ -55333,11 +55333,13 @@ export declare const CustomFormsV2024ApiAxiosParamCreator: (configuration?: Conf
55333
55333
  /**
55334
55334
  * Returns a list of form instances for the tenant. Optionally filter by form definition ID.
55335
55335
  * @summary List form instances by tenant.
55336
+ * @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.
55337
+ * @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.
55336
55338
  * @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*
55337
55339
  * @param {*} [axiosOptions] Override http request option.
55338
55340
  * @throws {RequiredError}
55339
55341
  */
55340
- searchFormInstancesByTenant: (filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
55342
+ searchFormInstancesByTenant: (offset?: number, limit?: number, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
55341
55343
  /**
55342
55344
  * No parameters required.
55343
55345
  * @summary List predefined select options.
@@ -55505,11 +55507,13 @@ export declare const CustomFormsV2024ApiFp: (configuration?: Configuration) => {
55505
55507
  /**
55506
55508
  * Returns a list of form instances for the tenant. Optionally filter by form definition ID.
55507
55509
  * @summary List form instances by tenant.
55510
+ * @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.
55511
+ * @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.
55508
55512
  * @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*
55509
55513
  * @param {*} [axiosOptions] Override http request option.
55510
55514
  * @throws {RequiredError}
55511
55515
  */
55512
- searchFormInstancesByTenant(filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListFormInstancesByTenantResponseV2024>>>;
55516
+ searchFormInstancesByTenant(offset?: number, limit?: number, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListFormInstancesByTenantResponseV2024>>>;
55513
55517
  /**
55514
55518
  * No parameters required.
55515
55519
  * @summary List predefined select options.
@@ -55974,6 +55978,18 @@ export interface CustomFormsV2024ApiSearchFormElementDataByElementIDRequest {
55974
55978
  * @interface CustomFormsV2024ApiSearchFormInstancesByTenantRequest
55975
55979
  */
55976
55980
  export interface CustomFormsV2024ApiSearchFormInstancesByTenantRequest {
55981
+ /**
55982
+ * 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.
55983
+ * @type {number}
55984
+ * @memberof CustomFormsV2024ApiSearchFormInstancesByTenant
55985
+ */
55986
+ readonly offset?: number;
55987
+ /**
55988
+ * 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.
55989
+ * @type {number}
55990
+ * @memberof CustomFormsV2024ApiSearchFormInstancesByTenant
55991
+ */
55992
+ readonly limit?: number;
55977
55993
  /**
55978
55994
  * 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*
55979
55995
  * @type {string}
package/dist/v2024/api.js CHANGED
@@ -24051,11 +24051,13 @@ var CustomFormsV2024ApiAxiosParamCreator = function (configuration) {
24051
24051
  /**
24052
24052
  * Returns a list of form instances for the tenant. Optionally filter by form definition ID.
24053
24053
  * @summary List form instances by tenant.
24054
+ * @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.
24055
+ * @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.
24054
24056
  * @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*
24055
24057
  * @param {*} [axiosOptions] Override http request option.
24056
24058
  * @throws {RequiredError}
24057
24059
  */
24058
- searchFormInstancesByTenant: function (filters, axiosOptions) {
24060
+ searchFormInstancesByTenant: function (offset, limit, filters, axiosOptions) {
24059
24061
  if (axiosOptions === void 0) { axiosOptions = {}; }
24060
24062
  return __awaiter(_this, void 0, void 0, function () {
24061
24063
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -24087,6 +24089,12 @@ var CustomFormsV2024ApiAxiosParamCreator = function (configuration) {
24087
24089
  // authentication userAuth required
24088
24090
  // oauth required
24089
24091
  _a.sent();
24092
+ if (offset !== undefined) {
24093
+ localVarQueryParameter['offset'] = offset;
24094
+ }
24095
+ if (limit !== undefined) {
24096
+ localVarQueryParameter['limit'] = limit;
24097
+ }
24090
24098
  if (filters !== undefined) {
24091
24099
  localVarQueryParameter['filters'] = filters;
24092
24100
  }
@@ -24591,17 +24599,19 @@ var CustomFormsV2024ApiFp = function (configuration) {
24591
24599
  /**
24592
24600
  * Returns a list of form instances for the tenant. Optionally filter by form definition ID.
24593
24601
  * @summary List form instances by tenant.
24602
+ * @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.
24603
+ * @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.
24594
24604
  * @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*
24595
24605
  * @param {*} [axiosOptions] Override http request option.
24596
24606
  * @throws {RequiredError}
24597
24607
  */
24598
- searchFormInstancesByTenant: function (filters, axiosOptions) {
24608
+ searchFormInstancesByTenant: function (offset, limit, filters, axiosOptions) {
24599
24609
  var _a, _b, _c;
24600
24610
  return __awaiter(this, void 0, void 0, function () {
24601
24611
  var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
24602
24612
  return __generator(this, function (_d) {
24603
24613
  switch (_d.label) {
24604
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.searchFormInstancesByTenant(filters, axiosOptions)];
24614
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.searchFormInstancesByTenant(offset, limit, filters, axiosOptions)];
24605
24615
  case 1:
24606
24616
  localVarAxiosArgs = _d.sent();
24607
24617
  localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
@@ -24835,7 +24845,7 @@ var CustomFormsV2024ApiFactory = function (configuration, basePath, axios) {
24835
24845
  */
24836
24846
  searchFormInstancesByTenant: function (requestParameters, axiosOptions) {
24837
24847
  if (requestParameters === void 0) { requestParameters = {}; }
24838
- return localVarFp.searchFormInstancesByTenant(requestParameters.filters, axiosOptions).then(function (request) { return request(axios, basePath); });
24848
+ return localVarFp.searchFormInstancesByTenant(requestParameters.offset, requestParameters.limit, requestParameters.filters, axiosOptions).then(function (request) { return request(axios, basePath); });
24839
24849
  },
24840
24850
  /**
24841
24851
  * No parameters required.
@@ -25067,7 +25077,7 @@ var CustomFormsV2024Api = /** @class */ (function (_super) {
25067
25077
  CustomFormsV2024Api.prototype.searchFormInstancesByTenant = function (requestParameters, axiosOptions) {
25068
25078
  var _this = this;
25069
25079
  if (requestParameters === void 0) { requestParameters = {}; }
25070
- return (0, exports.CustomFormsV2024ApiFp)(this.configuration).searchFormInstancesByTenant(requestParameters.filters, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
25080
+ return (0, exports.CustomFormsV2024ApiFp)(this.configuration).searchFormInstancesByTenant(requestParameters.offset, requestParameters.limit, requestParameters.filters, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
25071
25081
  };
25072
25082
  /**
25073
25083
  * No parameters required.