sailpoint-api-client 1.8.19 → 1.8.21

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 (52) hide show
  1. package/beta/README.md +2 -2
  2. package/beta/api.ts +11 -9
  3. package/beta/common.ts +2 -2
  4. package/beta/package.json +1 -1
  5. package/dist/beta/api.d.ts +10 -8
  6. package/dist/beta/api.js +11 -9
  7. package/dist/beta/api.js.map +1 -1
  8. package/dist/beta/common.js +2 -2
  9. package/dist/nerm/api.d.ts +30 -0
  10. package/dist/nerm/api.js.map +1 -1
  11. package/dist/nerm/common.js +2 -2
  12. package/dist/nermv2025/common.js +2 -2
  13. package/dist/v2024/api.d.ts +20 -16
  14. package/dist/v2024/api.js +17 -13
  15. package/dist/v2024/api.js.map +1 -1
  16. package/dist/v2024/common.js +2 -2
  17. package/dist/v2025/api.d.ts +20 -16
  18. package/dist/v2025/api.js +17 -13
  19. package/dist/v2025/api.js.map +1 -1
  20. package/dist/v2025/common.js +2 -2
  21. package/dist/v2026/api.d.ts +238 -16
  22. package/dist/v2026/api.js +358 -32
  23. package/dist/v2026/api.js.map +1 -1
  24. package/dist/v2026/common.js +2 -2
  25. package/dist/v3/api.d.ts +12 -8
  26. package/dist/v3/api.js +9 -5
  27. package/dist/v3/api.js.map +1 -1
  28. package/dist/v3/common.js +2 -2
  29. package/nerm/README.md +2 -2
  30. package/nerm/api.ts +30 -0
  31. package/nerm/common.ts +2 -2
  32. package/nerm/package.json +1 -1
  33. package/nermv2025/README.md +2 -2
  34. package/nermv2025/common.ts +2 -2
  35. package/nermv2025/package.json +1 -1
  36. package/package.json +1 -1
  37. package/v2024/README.md +2 -2
  38. package/v2024/api.ts +23 -19
  39. package/v2024/common.ts +2 -2
  40. package/v2024/package.json +1 -1
  41. package/v2025/README.md +2 -2
  42. package/v2025/api.ts +23 -19
  43. package/v2025/common.ts +2 -2
  44. package/v2025/package.json +1 -1
  45. package/v2026/README.md +2 -2
  46. package/v2026/api.ts +392 -19
  47. package/v2026/common.ts +2 -2
  48. package/v2026/package.json +1 -1
  49. package/v3/README.md +2 -2
  50. package/v3/api.ts +15 -11
  51. package/v3/common.ts +2 -2
  52. package/v3/package.json +1 -1
package/v3/api.ts CHANGED
@@ -5535,7 +5535,9 @@ export type CampaignReferenceTypeV3 = typeof CampaignReferenceTypeV3[keyof typeo
5535
5535
  export const CampaignReferenceCampaignTypeV3 = {
5536
5536
  Manager: 'MANAGER',
5537
5537
  SourceOwner: 'SOURCE_OWNER',
5538
- Search: 'SEARCH'
5538
+ Search: 'SEARCH',
5539
+ RoleComposition: 'ROLE_COMPOSITION',
5540
+ MachineAccount: 'MACHINE_ACCOUNT'
5539
5541
  } as const;
5540
5542
 
5541
5543
  export type CampaignReferenceCampaignTypeV3 = typeof CampaignReferenceCampaignTypeV3[keyof typeof CampaignReferenceCampaignTypeV3];
@@ -18697,11 +18699,11 @@ export interface Reviewer {
18697
18699
  */
18698
18700
  'name'?: string;
18699
18701
  /**
18700
- * The email of the reviewing identity.
18702
+ * The email of the reviewing identity. This is only applicable to reviewers of the `IDENTITY` type.
18701
18703
  * @type {string}
18702
18704
  * @memberof Reviewer
18703
18705
  */
18704
- 'email'?: string;
18706
+ 'email'?: string | null;
18705
18707
  /**
18706
18708
  * The type of the reviewing identity.
18707
18709
  * @type {string}
@@ -18723,7 +18725,8 @@ export interface Reviewer {
18723
18725
  }
18724
18726
 
18725
18727
  export const ReviewerTypeV3 = {
18726
- Identity: 'IDENTITY'
18728
+ Identity: 'IDENTITY',
18729
+ GovernanceGroup: 'GOVERNANCE_GROUP'
18727
18730
  } as const;
18728
18731
 
18729
18732
  export type ReviewerTypeV3 = typeof ReviewerTypeV3[keyof typeof ReviewerTypeV3];
@@ -25546,19 +25549,19 @@ export interface WorkflowLibraryTrigger {
25546
25549
  */
25547
25550
  'type'?: WorkflowLibraryTriggerTypeV3;
25548
25551
  /**
25549
- *
25552
+ * Whether the trigger is deprecated.
25550
25553
  * @type {boolean}
25551
25554
  * @memberof WorkflowLibraryTrigger
25552
25555
  */
25553
25556
  'deprecated'?: boolean;
25554
25557
  /**
25555
- *
25558
+ * Date the trigger was deprecated, if applicable.
25556
25559
  * @type {string}
25557
25560
  * @memberof WorkflowLibraryTrigger
25558
25561
  */
25559
25562
  'deprecatedBy'?: string;
25560
25563
  /**
25561
- *
25564
+ * Whether the trigger can be simulated.
25562
25565
  * @type {boolean}
25563
25566
  * @memberof WorkflowLibraryTrigger
25564
25567
  */
@@ -25604,7 +25607,8 @@ export interface WorkflowLibraryTrigger {
25604
25607
  export const WorkflowLibraryTriggerTypeV3 = {
25605
25608
  Event: 'EVENT',
25606
25609
  Scheduled: 'SCHEDULED',
25607
- External: 'EXTERNAL'
25610
+ External: 'EXTERNAL',
25611
+ AccessRequestTrigger: 'AccessRequestTrigger'
25608
25612
  } as const;
25609
25613
 
25610
25614
  export type WorkflowLibraryTriggerTypeV3 = typeof WorkflowLibraryTriggerTypeV3[keyof typeof WorkflowLibraryTriggerTypeV3];
@@ -64555,7 +64559,7 @@ export const WorkflowsApiAxiosParamCreator = function (configuration?: Configura
64555
64559
  * @summary List workflow library triggers
64556
64560
  * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
64557
64561
  * @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.
64558
- * @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: **id**: *eq*
64562
+ * @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: **id**: *eq* **name**: *eq* **type**: *eq*
64559
64563
  * @param {*} [axiosOptions] Override http request option.
64560
64564
  * @throws {RequiredError}
64561
64565
  */
@@ -65034,7 +65038,7 @@ export const WorkflowsApiFp = function(configuration?: Configuration) {
65034
65038
  * @summary List workflow library triggers
65035
65039
  * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
65036
65040
  * @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.
65037
- * @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: **id**: *eq*
65041
+ * @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: **id**: *eq* **name**: *eq* **type**: *eq*
65038
65042
  * @param {*} [axiosOptions] Override http request option.
65039
65043
  * @throws {RequiredError}
65040
65044
  */
@@ -65540,7 +65544,7 @@ export interface WorkflowsApiListWorkflowLibraryTriggersRequest {
65540
65544
  readonly offset?: number
65541
65545
 
65542
65546
  /**
65543
- * 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: **id**: *eq*
65547
+ * 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: **id**: *eq* **name**: *eq* **type**: *eq*
65544
65548
  * @type {string}
65545
65549
  * @memberof WorkflowsApiListWorkflowLibraryTriggers
65546
65550
  */
package/v3/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.19`;
149
+ let userAgent = `SailPoint-SDK-TypeScript/1.8.21`;
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.19'},
156
+ ...{'X-SailPoint-SDK':'typescript-1.8.21'},
157
157
  ...{'User-Agent': userAgent},
158
158
  }
159
159
 
package/v3/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.8.19",
3
+ "version": "1.8.21",
4
4
  "description": "OpenAPI client for sailpoint-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {