sailpoint-api-client 1.8.17 → 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.
- package/beta/README.md +2 -2
- package/beta/api.ts +42 -7
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +29 -4
- package/dist/beta/api.js +21 -7
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/nerm/common.js +2 -2
- package/dist/nermv2025/common.js +2 -2
- package/dist/v2024/api.d.ts +18 -2
- package/dist/v2024/api.js +15 -5
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/api.d.ts +100 -72
- package/dist/v2025/api.js +97 -73
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/api.d.ts +174 -103
- package/dist/v2026/api.js +215 -113
- package/dist/v2026/api.js.map +1 -1
- 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/common.ts +2 -2
- package/nermv2025/package.json +1 -1
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +31 -5
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +122 -78
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +254 -142
- 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.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.
|
|
39
|
+
npm install sailpoint-sdk@1.8.18 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/beta/api.ts
CHANGED
|
@@ -48479,10 +48479,12 @@ export const CustomFormsBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
48479
48479
|
/**
|
|
48480
48480
|
* No parameters required.
|
|
48481
48481
|
* @summary List form instances by tenant.
|
|
48482
|
+
* @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.
|
|
48483
|
+
* @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.
|
|
48482
48484
|
* @param {*} [axiosOptions] Override http request option.
|
|
48483
48485
|
* @throws {RequiredError}
|
|
48484
48486
|
*/
|
|
48485
|
-
searchFormInstancesByTenant: async (axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
48487
|
+
searchFormInstancesByTenant: async (offset?: number, limit?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
48486
48488
|
const localVarPath = `/form-instances`;
|
|
48487
48489
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
48488
48490
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -48503,6 +48505,14 @@ export const CustomFormsBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
48503
48505
|
// oauth required
|
|
48504
48506
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
48505
48507
|
|
|
48508
|
+
if (offset !== undefined) {
|
|
48509
|
+
localVarQueryParameter['offset'] = offset;
|
|
48510
|
+
}
|
|
48511
|
+
|
|
48512
|
+
if (limit !== undefined) {
|
|
48513
|
+
localVarQueryParameter['limit'] = limit;
|
|
48514
|
+
}
|
|
48515
|
+
|
|
48506
48516
|
|
|
48507
48517
|
|
|
48508
48518
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -48849,11 +48859,13 @@ export const CustomFormsBetaApiFp = function(configuration?: Configuration) {
|
|
|
48849
48859
|
/**
|
|
48850
48860
|
* No parameters required.
|
|
48851
48861
|
* @summary List form instances by tenant.
|
|
48862
|
+
* @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.
|
|
48863
|
+
* @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.
|
|
48852
48864
|
* @param {*} [axiosOptions] Override http request option.
|
|
48853
48865
|
* @throws {RequiredError}
|
|
48854
48866
|
*/
|
|
48855
|
-
async searchFormInstancesByTenant(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FormInstanceResponseBeta>>> {
|
|
48856
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.searchFormInstancesByTenant(axiosOptions);
|
|
48867
|
+
async searchFormInstancesByTenant(offset?: number, limit?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FormInstanceResponseBeta>>> {
|
|
48868
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.searchFormInstancesByTenant(offset, limit, axiosOptions);
|
|
48857
48869
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
48858
48870
|
const localVarOperationServerBasePath = operationServerMap['CustomFormsBetaApi.searchFormInstancesByTenant']?.[localVarOperationServerIndex]?.url;
|
|
48859
48871
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -49060,11 +49072,12 @@ export const CustomFormsBetaApiFactory = function (configuration?: Configuration
|
|
|
49060
49072
|
/**
|
|
49061
49073
|
* No parameters required.
|
|
49062
49074
|
* @summary List form instances by tenant.
|
|
49075
|
+
* @param {CustomFormsBetaApiSearchFormInstancesByTenantRequest} requestParameters Request parameters.
|
|
49063
49076
|
* @param {*} [axiosOptions] Override http request option.
|
|
49064
49077
|
* @throws {RequiredError}
|
|
49065
49078
|
*/
|
|
49066
|
-
searchFormInstancesByTenant(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<FormInstanceResponseBeta>> {
|
|
49067
|
-
return localVarFp.searchFormInstancesByTenant(axiosOptions).then((request) => request(axios, basePath));
|
|
49079
|
+
searchFormInstancesByTenant(requestParameters: CustomFormsBetaApiSearchFormInstancesByTenantRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<FormInstanceResponseBeta>> {
|
|
49080
|
+
return localVarFp.searchFormInstancesByTenant(requestParameters.offset, requestParameters.limit, axiosOptions).then((request) => request(axios, basePath));
|
|
49068
49081
|
},
|
|
49069
49082
|
/**
|
|
49070
49083
|
* No parameters required.
|
|
@@ -49417,6 +49430,27 @@ export interface CustomFormsBetaApiSearchFormElementDataByElementIDRequest {
|
|
|
49417
49430
|
readonly query?: string
|
|
49418
49431
|
}
|
|
49419
49432
|
|
|
49433
|
+
/**
|
|
49434
|
+
* Request parameters for searchFormInstancesByTenant operation in CustomFormsBetaApi.
|
|
49435
|
+
* @export
|
|
49436
|
+
* @interface CustomFormsBetaApiSearchFormInstancesByTenantRequest
|
|
49437
|
+
*/
|
|
49438
|
+
export interface CustomFormsBetaApiSearchFormInstancesByTenantRequest {
|
|
49439
|
+
/**
|
|
49440
|
+
* 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.
|
|
49441
|
+
* @type {number}
|
|
49442
|
+
* @memberof CustomFormsBetaApiSearchFormInstancesByTenant
|
|
49443
|
+
*/
|
|
49444
|
+
readonly offset?: number
|
|
49445
|
+
|
|
49446
|
+
/**
|
|
49447
|
+
* 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.
|
|
49448
|
+
* @type {number}
|
|
49449
|
+
* @memberof CustomFormsBetaApiSearchFormInstancesByTenant
|
|
49450
|
+
*/
|
|
49451
|
+
readonly limit?: number
|
|
49452
|
+
}
|
|
49453
|
+
|
|
49420
49454
|
/**
|
|
49421
49455
|
* Request parameters for showPreviewDataSource operation in CustomFormsBetaApi.
|
|
49422
49456
|
* @export
|
|
@@ -49661,12 +49695,13 @@ export class CustomFormsBetaApi extends BaseAPI {
|
|
|
49661
49695
|
/**
|
|
49662
49696
|
* No parameters required.
|
|
49663
49697
|
* @summary List form instances by tenant.
|
|
49698
|
+
* @param {CustomFormsBetaApiSearchFormInstancesByTenantRequest} requestParameters Request parameters.
|
|
49664
49699
|
* @param {*} [axiosOptions] Override http request option.
|
|
49665
49700
|
* @throws {RequiredError}
|
|
49666
49701
|
* @memberof CustomFormsBetaApi
|
|
49667
49702
|
*/
|
|
49668
|
-
public searchFormInstancesByTenant(axiosOptions?: RawAxiosRequestConfig) {
|
|
49669
|
-
return CustomFormsBetaApiFp(this.configuration).searchFormInstancesByTenant(axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
49703
|
+
public searchFormInstancesByTenant(requestParameters: CustomFormsBetaApiSearchFormInstancesByTenantRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
49704
|
+
return CustomFormsBetaApiFp(this.configuration).searchFormInstancesByTenant(requestParameters.offset, requestParameters.limit, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
49670
49705
|
}
|
|
49671
49706
|
|
|
49672
49707
|
/**
|
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.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.
|
|
156
|
+
...{'X-SailPoint-SDK':'typescript-1.8.18'},
|
|
157
157
|
...{'User-Agent': userAgent},
|
|
158
158
|
}
|
|
159
159
|
|
package/beta/package.json
CHANGED
package/dist/beta/api.d.ts
CHANGED
|
@@ -40756,10 +40756,12 @@ export declare const CustomFormsBetaApiAxiosParamCreator: (configuration?: Confi
|
|
|
40756
40756
|
/**
|
|
40757
40757
|
* No parameters required.
|
|
40758
40758
|
* @summary List form instances by tenant.
|
|
40759
|
+
* @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.
|
|
40760
|
+
* @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.
|
|
40759
40761
|
* @param {*} [axiosOptions] Override http request option.
|
|
40760
40762
|
* @throws {RequiredError}
|
|
40761
40763
|
*/
|
|
40762
|
-
searchFormInstancesByTenant: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
40764
|
+
searchFormInstancesByTenant: (offset?: number, limit?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
40763
40765
|
/**
|
|
40764
40766
|
* No parameters required.
|
|
40765
40767
|
* @summary List predefined select options.
|
|
@@ -40935,10 +40937,12 @@ export declare const CustomFormsBetaApiFp: (configuration?: Configuration) => {
|
|
|
40935
40937
|
/**
|
|
40936
40938
|
* No parameters required.
|
|
40937
40939
|
* @summary List form instances by tenant.
|
|
40940
|
+
* @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.
|
|
40941
|
+
* @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.
|
|
40938
40942
|
* @param {*} [axiosOptions] Override http request option.
|
|
40939
40943
|
* @throws {RequiredError}
|
|
40940
40944
|
*/
|
|
40941
|
-
searchFormInstancesByTenant(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FormInstanceResponseBeta>>>;
|
|
40945
|
+
searchFormInstancesByTenant(offset?: number, limit?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FormInstanceResponseBeta>>>;
|
|
40942
40946
|
/**
|
|
40943
40947
|
* No parameters required.
|
|
40944
40948
|
* @summary List predefined select options.
|
|
@@ -41095,10 +41099,11 @@ export declare const CustomFormsBetaApiFactory: (configuration?: Configuration,
|
|
|
41095
41099
|
/**
|
|
41096
41100
|
* No parameters required.
|
|
41097
41101
|
* @summary List form instances by tenant.
|
|
41102
|
+
* @param {CustomFormsBetaApiSearchFormInstancesByTenantRequest} requestParameters Request parameters.
|
|
41098
41103
|
* @param {*} [axiosOptions] Override http request option.
|
|
41099
41104
|
* @throws {RequiredError}
|
|
41100
41105
|
*/
|
|
41101
|
-
searchFormInstancesByTenant(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<FormInstanceResponseBeta>>;
|
|
41106
|
+
searchFormInstancesByTenant(requestParameters?: CustomFormsBetaApiSearchFormInstancesByTenantRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<FormInstanceResponseBeta>>;
|
|
41102
41107
|
/**
|
|
41103
41108
|
* No parameters required.
|
|
41104
41109
|
* @summary List predefined select options.
|
|
@@ -41417,6 +41422,25 @@ export interface CustomFormsBetaApiSearchFormElementDataByElementIDRequest {
|
|
|
41417
41422
|
*/
|
|
41418
41423
|
readonly query?: string;
|
|
41419
41424
|
}
|
|
41425
|
+
/**
|
|
41426
|
+
* Request parameters for searchFormInstancesByTenant operation in CustomFormsBetaApi.
|
|
41427
|
+
* @export
|
|
41428
|
+
* @interface CustomFormsBetaApiSearchFormInstancesByTenantRequest
|
|
41429
|
+
*/
|
|
41430
|
+
export interface CustomFormsBetaApiSearchFormInstancesByTenantRequest {
|
|
41431
|
+
/**
|
|
41432
|
+
* 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.
|
|
41433
|
+
* @type {number}
|
|
41434
|
+
* @memberof CustomFormsBetaApiSearchFormInstancesByTenant
|
|
41435
|
+
*/
|
|
41436
|
+
readonly offset?: number;
|
|
41437
|
+
/**
|
|
41438
|
+
* 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.
|
|
41439
|
+
* @type {number}
|
|
41440
|
+
* @memberof CustomFormsBetaApiSearchFormInstancesByTenant
|
|
41441
|
+
*/
|
|
41442
|
+
readonly limit?: number;
|
|
41443
|
+
}
|
|
41420
41444
|
/**
|
|
41421
41445
|
* Request parameters for showPreviewDataSource operation in CustomFormsBetaApi.
|
|
41422
41446
|
* @export
|
|
@@ -41608,11 +41632,12 @@ export declare class CustomFormsBetaApi extends BaseAPI {
|
|
|
41608
41632
|
/**
|
|
41609
41633
|
* No parameters required.
|
|
41610
41634
|
* @summary List form instances by tenant.
|
|
41635
|
+
* @param {CustomFormsBetaApiSearchFormInstancesByTenantRequest} requestParameters Request parameters.
|
|
41611
41636
|
* @param {*} [axiosOptions] Override http request option.
|
|
41612
41637
|
* @throws {RequiredError}
|
|
41613
41638
|
* @memberof CustomFormsBetaApi
|
|
41614
41639
|
*/
|
|
41615
|
-
searchFormInstancesByTenant(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FormInstanceResponseBeta[], any>>;
|
|
41640
|
+
searchFormInstancesByTenant(requestParameters?: CustomFormsBetaApiSearchFormInstancesByTenantRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FormInstanceResponseBeta[], any>>;
|
|
41616
41641
|
/**
|
|
41617
41642
|
* No parameters required.
|
|
41618
41643
|
* @summary List predefined select options.
|
package/dist/beta/api.js
CHANGED
|
@@ -16286,10 +16286,12 @@ var CustomFormsBetaApiAxiosParamCreator = function (configuration) {
|
|
|
16286
16286
|
/**
|
|
16287
16287
|
* No parameters required.
|
|
16288
16288
|
* @summary List form instances by tenant.
|
|
16289
|
+
* @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.
|
|
16290
|
+
* @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.
|
|
16289
16291
|
* @param {*} [axiosOptions] Override http request option.
|
|
16290
16292
|
* @throws {RequiredError}
|
|
16291
16293
|
*/
|
|
16292
|
-
searchFormInstancesByTenant: function (axiosOptions) {
|
|
16294
|
+
searchFormInstancesByTenant: function (offset, limit, axiosOptions) {
|
|
16293
16295
|
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
16294
16296
|
return __awaiter(_this, void 0, void 0, function () {
|
|
16295
16297
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -16321,6 +16323,12 @@ var CustomFormsBetaApiAxiosParamCreator = function (configuration) {
|
|
|
16321
16323
|
// authentication userAuth required
|
|
16322
16324
|
// oauth required
|
|
16323
16325
|
_a.sent();
|
|
16326
|
+
if (offset !== undefined) {
|
|
16327
|
+
localVarQueryParameter['offset'] = offset;
|
|
16328
|
+
}
|
|
16329
|
+
if (limit !== undefined) {
|
|
16330
|
+
localVarQueryParameter['limit'] = limit;
|
|
16331
|
+
}
|
|
16324
16332
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
16325
16333
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
16326
16334
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
@@ -16845,16 +16853,18 @@ var CustomFormsBetaApiFp = function (configuration) {
|
|
|
16845
16853
|
/**
|
|
16846
16854
|
* No parameters required.
|
|
16847
16855
|
* @summary List form instances by tenant.
|
|
16856
|
+
* @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.
|
|
16857
|
+
* @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.
|
|
16848
16858
|
* @param {*} [axiosOptions] Override http request option.
|
|
16849
16859
|
* @throws {RequiredError}
|
|
16850
16860
|
*/
|
|
16851
|
-
searchFormInstancesByTenant: function (axiosOptions) {
|
|
16861
|
+
searchFormInstancesByTenant: function (offset, limit, axiosOptions) {
|
|
16852
16862
|
var _a, _b, _c;
|
|
16853
16863
|
return __awaiter(this, void 0, void 0, function () {
|
|
16854
16864
|
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
16855
16865
|
return __generator(this, function (_d) {
|
|
16856
16866
|
switch (_d.label) {
|
|
16857
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.searchFormInstancesByTenant(axiosOptions)];
|
|
16867
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.searchFormInstancesByTenant(offset, limit, axiosOptions)];
|
|
16858
16868
|
case 1:
|
|
16859
16869
|
localVarAxiosArgs = _d.sent();
|
|
16860
16870
|
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
@@ -17093,11 +17103,13 @@ var CustomFormsBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
17093
17103
|
/**
|
|
17094
17104
|
* No parameters required.
|
|
17095
17105
|
* @summary List form instances by tenant.
|
|
17106
|
+
* @param {CustomFormsBetaApiSearchFormInstancesByTenantRequest} requestParameters Request parameters.
|
|
17096
17107
|
* @param {*} [axiosOptions] Override http request option.
|
|
17097
17108
|
* @throws {RequiredError}
|
|
17098
17109
|
*/
|
|
17099
|
-
searchFormInstancesByTenant: function (axiosOptions) {
|
|
17100
|
-
|
|
17110
|
+
searchFormInstancesByTenant: function (requestParameters, axiosOptions) {
|
|
17111
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
17112
|
+
return localVarFp.searchFormInstancesByTenant(requestParameters.offset, requestParameters.limit, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
17101
17113
|
},
|
|
17102
17114
|
/**
|
|
17103
17115
|
* No parameters required.
|
|
@@ -17334,13 +17346,15 @@ var CustomFormsBetaApi = /** @class */ (function (_super) {
|
|
|
17334
17346
|
/**
|
|
17335
17347
|
* No parameters required.
|
|
17336
17348
|
* @summary List form instances by tenant.
|
|
17349
|
+
* @param {CustomFormsBetaApiSearchFormInstancesByTenantRequest} requestParameters Request parameters.
|
|
17337
17350
|
* @param {*} [axiosOptions] Override http request option.
|
|
17338
17351
|
* @throws {RequiredError}
|
|
17339
17352
|
* @memberof CustomFormsBetaApi
|
|
17340
17353
|
*/
|
|
17341
|
-
CustomFormsBetaApi.prototype.searchFormInstancesByTenant = function (axiosOptions) {
|
|
17354
|
+
CustomFormsBetaApi.prototype.searchFormInstancesByTenant = function (requestParameters, axiosOptions) {
|
|
17342
17355
|
var _this = this;
|
|
17343
|
-
|
|
17356
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
17357
|
+
return (0, exports.CustomFormsBetaApiFp)(this.configuration).searchFormInstancesByTenant(requestParameters.offset, requestParameters.limit, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
17344
17358
|
};
|
|
17345
17359
|
/**
|
|
17346
17360
|
* No parameters required.
|