sailpoint-api-client 1.7.1 → 1.7.5

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.
Files changed (45) hide show
  1. package/beta/.openapi-generator/VERSION +1 -1
  2. package/beta/README.md +2 -2
  3. package/beta/api.ts +485 -56
  4. package/beta/common.ts +2 -2
  5. package/beta/package.json +1 -1
  6. package/dist/beta/api.d.ts +258 -39
  7. package/dist/beta/api.js +475 -28
  8. package/dist/beta/api.js.map +1 -1
  9. package/dist/beta/common.js +1 -1
  10. package/dist/index.spec.js +3 -3
  11. package/dist/index.spec.js.map +1 -1
  12. package/dist/v2024/api.d.ts +275 -69
  13. package/dist/v2024/api.js +497 -63
  14. package/dist/v2024/api.js.map +1 -1
  15. package/dist/v2024/common.js +1 -1
  16. package/dist/v2025/api.d.ts +848 -94
  17. package/dist/v2025/api.js +1224 -126
  18. package/dist/v2025/api.js.map +1 -1
  19. package/dist/v2025/common.js +1 -1
  20. package/dist/v2026/common.js +1 -1
  21. package/dist/v3/api.d.ts +21 -8
  22. package/dist/v3/api.js +9 -8
  23. package/dist/v3/api.js.map +1 -1
  24. package/dist/v3/common.js +1 -1
  25. package/index.spec.ts +3 -3
  26. package/package.json +15 -2
  27. package/v2024/.openapi-generator/VERSION +1 -1
  28. package/v2024/README.md +2 -2
  29. package/v2024/api.ts +509 -109
  30. package/v2024/common.ts +2 -2
  31. package/v2024/package.json +1 -1
  32. package/v2025/.openapi-generator/VERSION +1 -1
  33. package/v2025/README.md +2 -2
  34. package/v2025/api.ts +1436 -193
  35. package/v2025/common.ts +2 -2
  36. package/v2025/package.json +1 -1
  37. package/v2026/.openapi-generator/VERSION +1 -1
  38. package/v2026/README.md +2 -2
  39. package/v2026/common.ts +2 -2
  40. package/v2026/package.json +1 -1
  41. package/v3/.openapi-generator/VERSION +1 -1
  42. package/v3/README.md +2 -2
  43. package/v3/api.ts +22 -9
  44. package/v3/common.ts +2 -2
  45. package/v3/package.json +1 -1
package/v2025/common.ts CHANGED
@@ -147,9 +147,9 @@ export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxi
147
147
  return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
148
148
  axiosRetry(axios, configuration.retriesConfig)
149
149
  const headers = {
150
- ...{'User-Agent':'OpenAPI-Generator/1.7.1/ts'},
150
+ ...{'User-Agent':'OpenAPI-Generator/1.7.5/ts'},
151
151
  ...axiosArgs.axiosOptions.headers,
152
- ...{'X-SailPoint-SDK':'typescript-1.7.1'}
152
+ ...{'X-SailPoint-SDK':'typescript-1.7.5'}
153
153
  }
154
154
 
155
155
  if(!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.7.1",
3
+ "version": "1.7.5",
4
4
  "description": "OpenAPI client for sailpoint-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -1 +1 @@
1
- 7.11.0
1
+ 7.12.0
package/v2026/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-sdk@1.7.1
1
+ ## sailpoint-sdk@1.7.5
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.7.1 --save
39
+ npm install sailpoint-sdk@1.7.5 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/v2026/common.ts CHANGED
@@ -147,9 +147,9 @@ export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxi
147
147
  return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
148
148
  axiosRetry(axios, configuration.retriesConfig)
149
149
  const headers = {
150
- ...{'User-Agent':'OpenAPI-Generator/1.7.1/ts'},
150
+ ...{'User-Agent':'OpenAPI-Generator/1.7.5/ts'},
151
151
  ...axiosArgs.axiosOptions.headers,
152
- ...{'X-SailPoint-SDK':'typescript-1.7.1'}
152
+ ...{'X-SailPoint-SDK':'typescript-1.7.5'}
153
153
  }
154
154
 
155
155
  if(!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.7.1",
3
+ "version": "1.7.5",
4
4
  "description": "OpenAPI client for sailpoint-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -1 +1 @@
1
- 7.11.0
1
+ 7.12.0
package/v3/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-sdk@1.7.1
1
+ ## sailpoint-sdk@1.7.5
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.7.1 --save
39
+ npm install sailpoint-sdk@1.7.5 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/v3/api.ts CHANGED
@@ -1454,14 +1454,15 @@ export interface AccessRequestTracking {
1454
1454
  'accessRequestIds'?: Array<string>;
1455
1455
  }
1456
1456
  /**
1457
- * Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field.
1457
+ * Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field. MODIFY_ACCESS type is used for updating access expiration dates or other access modifications.
1458
1458
  * @export
1459
1459
  * @enum {string}
1460
1460
  */
1461
1461
 
1462
1462
  export const AccessRequestType = {
1463
1463
  GrantAccess: 'GRANT_ACCESS',
1464
- RevokeAccess: 'REVOKE_ACCESS'
1464
+ RevokeAccess: 'REVOKE_ACCESS',
1465
+ ModifyAccess: 'MODIFY_ACCESS'
1465
1466
  } as const;
1466
1467
 
1467
1468
  export type AccessRequestType = typeof AccessRequestType[keyof typeof AccessRequestType];
@@ -17485,6 +17486,18 @@ export interface RequestabilityForRole {
17485
17486
  * @memberof RequestabilityForRole
17486
17487
  */
17487
17488
  'reauthorizationRequired'?: boolean | null;
17489
+ /**
17490
+ * Indicates whether the requester of the containing object must provide access end date.
17491
+ * @type {boolean}
17492
+ * @memberof RequestabilityForRole
17493
+ */
17494
+ 'requireEndDate'?: boolean;
17495
+ /**
17496
+ *
17497
+ * @type {AccessDuration}
17498
+ * @memberof RequestabilityForRole
17499
+ */
17500
+ 'maxPermittedAccessDuration'?: AccessDuration | null;
17488
17501
  /**
17489
17502
  * List describing the steps in approving the request
17490
17503
  * @type {Array<ApprovalSchemeForRole>}
@@ -27444,7 +27457,7 @@ export const AccessRequestsApiAxiosParamCreator = function (configuration?: Conf
27444
27457
  * @param {boolean} [count] If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored.
27445
27458
  * @param {number} [limit] Max number of results to return.
27446
27459
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
27447
- * @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: **accessRequestId**: *eq, in, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
27460
+ * @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: **accessRequestId**: *eq, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, ne, sw* **created**: *eq, ge, gt, le, lt, ne*
27448
27461
  * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name**
27449
27462
  * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
27450
27463
  * @param {*} [axiosOptions] Override http request option.
@@ -27624,7 +27637,7 @@ export const AccessRequestsApiFp = function(configuration?: Configuration) {
27624
27637
  * @param {boolean} [count] If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored.
27625
27638
  * @param {number} [limit] Max number of results to return.
27626
27639
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
27627
- * @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: **accessRequestId**: *eq, in, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
27640
+ * @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: **accessRequestId**: *eq, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, ne, sw* **created**: *eq, ge, gt, le, lt, ne*
27628
27641
  * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name**
27629
27642
  * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
27630
27643
  * @param {*} [axiosOptions] Override http request option.
@@ -27795,7 +27808,7 @@ export interface AccessRequestsApiListAccessRequestStatusRequest {
27795
27808
  readonly offset?: number
27796
27809
 
27797
27810
  /**
27798
- * 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: **accessRequestId**: *eq, in, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
27811
+ * 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: **accessRequestId**: *eq, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, ne, sw* **created**: *eq, ge, gt, le, lt, ne*
27799
27812
  * @type {string}
27800
27813
  * @memberof AccessRequestsApiListAccessRequestStatus
27801
27814
  */
@@ -55306,7 +55319,7 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
55306
55319
  };
55307
55320
  },
55308
55321
  /**
55309
- * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
55322
+ * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
55310
55323
  * @summary Perform search
55311
55324
  * @param {Search} search
55312
55325
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
@@ -55422,7 +55435,7 @@ export const SearchApiFp = function(configuration?: Configuration) {
55422
55435
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
55423
55436
  },
55424
55437
  /**
55425
- * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
55438
+ * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
55426
55439
  * @summary Perform search
55427
55440
  * @param {Search} search
55428
55441
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
@@ -55478,7 +55491,7 @@ export const SearchApiFactory = function (configuration?: Configuration, basePat
55478
55491
  return localVarFp.searchGet(requestParameters.index, requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
55479
55492
  },
55480
55493
  /**
55481
- * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
55494
+ * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
55482
55495
  * @summary Perform search
55483
55496
  * @param {SearchApiSearchPostRequest} requestParameters Request parameters.
55484
55497
  * @param {*} [axiosOptions] Override http request option.
@@ -55639,7 +55652,7 @@ export class SearchApi extends BaseAPI {
55639
55652
  }
55640
55653
 
55641
55654
  /**
55642
- * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
55655
+ * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
55643
55656
  * @summary Perform search
55644
55657
  * @param {SearchApiSearchPostRequest} requestParameters Request parameters.
55645
55658
  * @param {*} [axiosOptions] Override http request option.
package/v3/common.ts CHANGED
@@ -147,9 +147,9 @@ export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxi
147
147
  return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
148
148
  axiosRetry(axios, configuration.retriesConfig)
149
149
  const headers = {
150
- ...{'User-Agent':'OpenAPI-Generator/1.7.1/ts'},
150
+ ...{'User-Agent':'OpenAPI-Generator/1.7.5/ts'},
151
151
  ...axiosArgs.axiosOptions.headers,
152
- ...{'X-SailPoint-SDK':'typescript-1.7.1'}
152
+ ...{'X-SailPoint-SDK':'typescript-1.7.5'}
153
153
  }
154
154
 
155
155
  if(!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
package/v3/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.7.1",
3
+ "version": "1.7.5",
4
4
  "description": "OpenAPI client for sailpoint-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {