@sailpoint/api-client 2.2.8 → 2.2.10
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/dist/access_requests/api.d.ts +3 -3
- package/dist/access_requests/api.js.map +1 -1
- package/dist/entitlements/api.d.ts +3 -3
- package/dist/entitlements/api.js.map +1 -1
- package/dist/esm/nerm/common.js +2 -2
- package/dist/esm/nermv2025/common.js +2 -2
- package/dist/esm/sources/api.js +20 -21
- package/dist/esm/triggers/api.js +70 -0
- package/dist/esm/work_reassignment/api.js +19 -9
- package/dist/nerm/common.js +2 -2
- package/dist/nerm/common.js.map +1 -1
- package/dist/nermv2025/common.js +2 -2
- package/dist/nermv2025/common.js.map +1 -1
- package/dist/sources/api.d.ts +126 -127
- package/dist/sources/api.js +21 -22
- package/dist/sources/api.js.map +1 -1
- package/dist/triggers/api.d.ts +813 -0
- package/dist/triggers/api.js +72 -2
- package/dist/triggers/api.js.map +1 -1
- package/dist/ui_metadata/api.d.ts +36 -0
- package/dist/ui_metadata/api.js.map +1 -1
- package/dist/work_reassignment/api.d.ts +22 -6
- package/dist/work_reassignment/api.js +19 -9
- package/dist/work_reassignment/api.js.map +1 -1
- package/package.json +1 -1
|
@@ -337,13 +337,13 @@ export type EntitlementAccessRequestConfigMaxPermittedAccessDurationTimeUnitEnum
|
|
|
337
337
|
*/
|
|
338
338
|
export interface EntitlementApprovalScheme {
|
|
339
339
|
/**
|
|
340
|
-
* Describes the individual or group that is responsible for an approval step. Values are as follows. **ENTITLEMENT_OWNER**: Owner of the associated Entitlement **SOURCE_OWNER**: Owner of the associated Source **MANAGER**: Manager of the Identity for whom the request is being made **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field **WORKFLOW**: A Workflow, the ID of which is specified by the **approverId** field
|
|
340
|
+
* Describes the individual or group that is responsible for an approval step. Values are as follows. **ENTITLEMENT_OWNER**: Owner of the associated Entitlement **SOURCE_OWNER**: Owner of the associated Source **MANAGER**: Manager of the Identity for whom the request is being made **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field **WORKFLOW**: A Workflow, the ID of which is specified by the **approverId** field. A workflow approver has these requirements. - The Adaptive Approvals feature must be enabled for the tenant. - The workflow given in **approverId** must use the `idn:access-request-trigger` trigger. - `WORKFLOW` is exclusive of the other approver types. If you use it, it must be the only entry in **approvalSchemes**. - `WORKFLOW` is supported only in entitlement-level configuration. The source-level [Update source entitlement request configuration](https://developer.sailpoint.com/docs/api/update-source-entitlement-request-config-v-1) endpoint rejects it with a 400.
|
|
341
341
|
* @type {string}
|
|
342
342
|
* @memberof EntitlementApprovalScheme
|
|
343
343
|
*/
|
|
344
344
|
'approverType'?: EntitlementApprovalSchemeApproverTypeEnum;
|
|
345
345
|
/**
|
|
346
|
-
* Id of the specific approver, used only when approverType is GOVERNANCE_GROUP or WORKFLOW
|
|
346
|
+
* Id of the specific approver, used only when approverType is GOVERNANCE_GROUP or WORKFLOW. For WORKFLOW this is the ID of the workflow to run.
|
|
347
347
|
* @type {string}
|
|
348
348
|
* @memberof EntitlementApprovalScheme
|
|
349
349
|
*/
|
|
@@ -467,7 +467,7 @@ export interface EntitlementRequestConfig {
|
|
|
467
467
|
*/
|
|
468
468
|
export interface EntitlementRevocationRequestConfig {
|
|
469
469
|
/**
|
|
470
|
-
* Ordered list of approval steps for the
|
|
470
|
+
* Ordered list of approval steps for the revocation request. Empty when no approval is required.
|
|
471
471
|
* @type {Array<EntitlementApprovalScheme>}
|
|
472
472
|
* @memberof EntitlementRevocationRequestConfig
|
|
473
473
|
*/
|