sailpoint-api-client 1.8.53 → 1.8.55

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 (49) hide show
  1. package/beta/README.md +2 -2
  2. package/beta/api.ts +51 -10
  3. package/beta/common.ts +2 -2
  4. package/beta/package.json +1 -1
  5. package/dist/beta/api.d.ts +49 -8
  6. package/dist/beta/api.js +13 -2
  7. package/dist/beta/api.js.map +1 -1
  8. package/dist/beta/common.js +2 -2
  9. package/dist/nerm/common.js +2 -2
  10. package/dist/nermv2025/common.js +2 -2
  11. package/dist/v2024/api.d.ts +50 -9
  12. package/dist/v2024/api.js +13 -2
  13. package/dist/v2024/api.js.map +1 -1
  14. package/dist/v2024/common.js +2 -2
  15. package/dist/v2025/api.d.ts +49 -8
  16. package/dist/v2025/api.js +13 -2
  17. package/dist/v2025/api.js.map +1 -1
  18. package/dist/v2025/common.js +2 -2
  19. package/dist/v2026/api.d.ts +245 -9
  20. package/dist/v2026/api.js +239 -2
  21. package/dist/v2026/api.js.map +1 -1
  22. package/dist/v2026/common.js +2 -2
  23. package/dist/v3/api.d.ts +31 -8
  24. package/dist/v3/api.js +13 -2
  25. package/dist/v3/api.js.map +1 -1
  26. package/dist/v3/common.js +2 -2
  27. package/nerm/README.md +2 -2
  28. package/nerm/common.ts +2 -2
  29. package/nerm/package.json +1 -1
  30. package/nermv2025/README.md +2 -2
  31. package/nermv2025/common.ts +2 -2
  32. package/nermv2025/package.json +1 -1
  33. package/package.json +1 -1
  34. package/v2024/README.md +2 -2
  35. package/v2024/api.ts +52 -11
  36. package/v2024/common.ts +2 -2
  37. package/v2024/package.json +1 -1
  38. package/v2025/README.md +2 -2
  39. package/v2025/api.ts +51 -10
  40. package/v2025/common.ts +2 -2
  41. package/v2025/package.json +1 -1
  42. package/v2026/README.md +2 -2
  43. package/v2026/api.ts +355 -11
  44. package/v2026/common.ts +2 -2
  45. package/v2026/package.json +1 -1
  46. package/v3/README.md +2 -2
  47. package/v3/api.ts +33 -10
  48. package/v3/common.ts +2 -2
  49. package/v3/package.json +1 -1
package/beta/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-sdk@1.8.53
1
+ ## sailpoint-sdk@1.8.55
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.53 --save
39
+ npm install sailpoint-sdk@1.8.55 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/beta/api.ts CHANGED
@@ -1020,13 +1020,13 @@ export interface AccessItemRoleResponseBeta {
1020
1020
  */
1021
1021
  export interface AccessProfileApprovalSchemeBeta {
1022
1022
  /**
1023
- * Describes the individual or group that is responsible for an approval step. These are the possible values: **APP_OWNER**: The owner of the Application **OWNER**: Owner of the associated Access Profile or Role **SOURCE_OWNER**: Owner of the Source associated with an Access Profile **MANAGER**: Manager of the Identity making the request **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. Workflow is exclusive to other types of approvals and License required.
1023
+ * Describes the individual or group that is responsible for an approval step. These are the possible values: **APP_OWNER**: The owner of the Application **OWNER**: Owner of the associated Access Profile or Role **SOURCE_OWNER**: Owner of the Source associated with an Access Profile **MANAGER**: Manager of the Identity making the request **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. Workflow is exclusive to other types of approvals and License required. **ALL_OWNERS**: All owners of the Access Profile, including the primary owner and any secondary owners **ADDITIONAL_OWNER**: An additional owner of the Access Profile, the ID of which is specified by the **approverId** field **ADDITIONAL_GOVERNANCE_GROUP**: An additional Governance Group, the ID of which is specified by the **approverId** field
1024
1024
  * @type {string}
1025
1025
  * @memberof AccessProfileApprovalSchemeBeta
1026
1026
  */
1027
1027
  'approverType'?: AccessProfileApprovalSchemeBetaApproverTypeBeta;
1028
1028
  /**
1029
- * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
1029
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP, WORKFLOW, or ADDITIONAL_GOVERNANCE_GROUP.
1030
1030
  * @type {string}
1031
1031
  * @memberof AccessProfileApprovalSchemeBeta
1032
1032
  */
@@ -1039,7 +1039,10 @@ export const AccessProfileApprovalSchemeBetaApproverTypeBeta = {
1039
1039
  SourceOwner: 'SOURCE_OWNER',
1040
1040
  Manager: 'MANAGER',
1041
1041
  GovernanceGroup: 'GOVERNANCE_GROUP',
1042
- Workflow: 'WORKFLOW'
1042
+ Workflow: 'WORKFLOW',
1043
+ AllOwners: 'ALL_OWNERS',
1044
+ AdditionalOwner: 'ADDITIONAL_OWNER',
1045
+ AdditionalGovernanceGroup: 'ADDITIONAL_GOVERNANCE_GROUP'
1043
1046
  } as const;
1044
1047
 
1045
1048
  export type AccessProfileApprovalSchemeBetaApproverTypeBeta = typeof AccessProfileApprovalSchemeBetaApproverTypeBeta[keyof typeof AccessProfileApprovalSchemeBetaApproverTypeBeta];
@@ -4671,13 +4674,13 @@ export type ApprovalSchemeBeta = typeof ApprovalSchemeBeta[keyof typeof Approval
4671
4674
  */
4672
4675
  export interface ApprovalSchemeForRoleBeta {
4673
4676
  /**
4674
- * Describes the individual or group that is responsible for an approval step. Values are as follows. **OWNER**: Owner of the associated Role **MANAGER**: Manager of the Identity making the request **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. Workflow is exclusive to other types of approvals and License required.
4677
+ * Describes the individual or group that is responsible for an approval step. Values are as follows. **OWNER**: Owner of the associated Role **MANAGER**: Manager of the Identity making the request **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. Workflow is exclusive to other types of approvals and License required. **ALL_OWNERS**: All owners of the Role, including the primary owner and any secondary owners **ADDITIONAL_OWNER**: An additional owner of the Role, the ID of which is specified by the **approverId** field **ADDITIONAL_GOVERNANCE_GROUP**: An additional Governance Group, the ID of which is specified by the **approverId** field
4675
4678
  * @type {string}
4676
4679
  * @memberof ApprovalSchemeForRoleBeta
4677
4680
  */
4678
4681
  'approverType'?: ApprovalSchemeForRoleBetaApproverTypeBeta;
4679
4682
  /**
4680
- * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
4683
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP, WORKFLOW, or ADDITIONAL_GOVERNANCE_GROUP.
4681
4684
  * @type {string}
4682
4685
  * @memberof ApprovalSchemeForRoleBeta
4683
4686
  */
@@ -4688,7 +4691,10 @@ export const ApprovalSchemeForRoleBetaApproverTypeBeta = {
4688
4691
  Owner: 'OWNER',
4689
4692
  Manager: 'MANAGER',
4690
4693
  GovernanceGroup: 'GOVERNANCE_GROUP',
4691
- Workflow: 'WORKFLOW'
4694
+ Workflow: 'WORKFLOW',
4695
+ AllOwners: 'ALL_OWNERS',
4696
+ AdditionalOwner: 'ADDITIONAL_OWNER',
4697
+ AdditionalGovernanceGroup: 'ADDITIONAL_GOVERNANCE_GROUP'
4692
4698
  } as const;
4693
4699
 
4694
4700
  export type ApprovalSchemeForRoleBetaApproverTypeBeta = typeof ApprovalSchemeForRoleBetaApproverTypeBeta[keyof typeof ApprovalSchemeForRoleBetaApproverTypeBeta];
@@ -13273,6 +13279,12 @@ export interface GetRoleAssignments200ResponseInnerBeta {
13273
13279
  * @memberof GetRoleAssignments200ResponseInnerBeta
13274
13280
  */
13275
13281
  'addedDate'?: string;
13282
+ /**
13283
+ * Date when assignment will be active, if access was requested with a future start date. If null, assignment is active immediately
13284
+ * @type {string}
13285
+ * @memberof GetRoleAssignments200ResponseInnerBeta
13286
+ */
13287
+ 'startDate'?: string | null;
13276
13288
  /**
13277
13289
  * Date that the assignment will be removed
13278
13290
  * @type {string}
@@ -23308,6 +23320,12 @@ export interface RequestabilityForRoleBeta {
23308
23320
  * @memberof RequestabilityForRoleBeta
23309
23321
  */
23310
23322
  'approvalSchemes'?: Array<ApprovalSchemeForRoleBeta>;
23323
+ /**
23324
+ * The ID of the form definition used for the access request. If specified, the form is presented to the requester during the access request process.
23325
+ * @type {string}
23326
+ * @memberof RequestabilityForRoleBeta
23327
+ */
23328
+ 'formDefinitionId'?: string | null;
23311
23329
  }
23312
23330
  /**
23313
23331
  *
@@ -24351,6 +24369,12 @@ export interface RoleAssignmentDtoBeta {
24351
24369
  * @memberof RoleAssignmentDtoBeta
24352
24370
  */
24353
24371
  'accountTargets'?: Array<RoleTargetDtoBeta>;
24372
+ /**
24373
+ * Date when assignment will be active, if access was requested with a future start date. If null, assignment is active immediately
24374
+ * @type {string}
24375
+ * @memberof RoleAssignmentDtoBeta
24376
+ */
24377
+ 'startDate'?: string | null;
24354
24378
  /**
24355
24379
  * Date that the assignment will be removed
24356
24380
  * @type {string}
@@ -24388,6 +24412,12 @@ export interface RoleAssignmentRefBeta {
24388
24412
  * @memberof RoleAssignmentRefBeta
24389
24413
  */
24390
24414
  'addedDate'?: string;
24415
+ /**
24416
+ * Date when assignment will be active, if requested with a future date. If null, assignment is active immediately
24417
+ * @type {string}
24418
+ * @memberof RoleAssignmentRefBeta
24419
+ */
24420
+ 'startDate'?: string | null;
24391
24421
  /**
24392
24422
  * Date that the assignment will be removed
24393
24423
  * @type {string}
@@ -24529,6 +24559,12 @@ export interface RoleBeta {
24529
24559
  * @memberof RoleBeta
24530
24560
  */
24531
24561
  'accessModelMetadata'?: AttributeDTOListBeta;
24562
+ /**
24563
+ * The privilege level of the role, if applicable.
24564
+ * @type {string}
24565
+ * @memberof RoleBeta
24566
+ */
24567
+ 'privilegeLevel'?: string | null;
24532
24568
  }
24533
24569
  /**
24534
24570
  *
@@ -24604,7 +24640,7 @@ export interface RoleCriteriaLevel1Beta {
24604
24640
  */
24605
24641
  'key'?: RoleCriteriaKeyBeta | null;
24606
24642
  /**
24607
- * String value to test the Identity attribute, Account attribute, or Entitlement specified in the key w/r/t the specified operation. If this criteria is a leaf node, that is, if the operation is one of EQUALS, NOT_EQUALS, CONTAINS, STARTS_WITH, or ENDS_WITH, this field is required. Otherwise, specifying it is an error.
24643
+ * String value to test the Identity attribute, Account attribute, or Entitlement specified in the key w/r/t the specified operation. If this criteria is a leaf node, that is, if the operation is one of EQUALS, NOT_EQUALS, CONTAINS, DOES_NOT_CONTAIN, STARTS_WITH, or ENDS_WITH, this field is required. Otherwise, specifying it is an error.
24608
24644
  * @type {string}
24609
24645
  * @memberof RoleCriteriaLevel1Beta
24610
24646
  */
@@ -24637,7 +24673,7 @@ export interface RoleCriteriaLevel2Beta {
24637
24673
  */
24638
24674
  'key'?: RoleCriteriaKeyBeta | null;
24639
24675
  /**
24640
- * String value to test the Identity attribute, Account attribute, or Entitlement specified in the key w/r/t the specified operation. If this criteria is a leaf node, that is, if the operation is one of EQUALS, NOT_EQUALS, CONTAINS, STARTS_WITH, or ENDS_WITH, this field is required. Otherwise, specifying it is an error.
24676
+ * String value to test the Identity attribute, Account attribute, or Entitlement specified in the key w/r/t the specified operation. If this criteria is a leaf node, that is, if the operation is one of EQUALS, NOT_EQUALS, CONTAINS, DOES_NOT_CONTAIN, STARTS_WITH, or ENDS_WITH, this field is required. Otherwise, specifying it is an error.
24641
24677
  * @type {string}
24642
24678
  * @memberof RoleCriteriaLevel2Beta
24643
24679
  */
@@ -24670,11 +24706,11 @@ export interface RoleCriteriaLevel3Beta {
24670
24706
  */
24671
24707
  'key'?: RoleCriteriaKeyBeta | null;
24672
24708
  /**
24673
- * String value to test the Identity attribute, Account attribute, or Entitlement specified in the key w/r/t the specified operation. If this criteria is a leaf node, that is, if the operation is one of EQUALS, NOT_EQUALS, CONTAINS, STARTS_WITH, or ENDS_WITH, this field is required. Otherwise, specifying it is an error.
24709
+ * String value to test the Identity attribute, Account attribute, or Entitlement specified in the key w/r/t the specified operation. If this criteria is a leaf node, that is, if the operation is one of EQUALS, NOT_EQUALS, CONTAINS, DOES_NOT_CONTAIN, STARTS_WITH, or ENDS_WITH, this field is required. Otherwise, specifying it is an error.
24674
24710
  * @type {string}
24675
24711
  * @memberof RoleCriteriaLevel3Beta
24676
24712
  */
24677
- 'stringValue'?: string;
24713
+ 'stringValue'?: string | null;
24678
24714
  }
24679
24715
 
24680
24716
 
@@ -24688,8 +24724,13 @@ export const RoleCriteriaOperationBeta = {
24688
24724
  Equals: 'EQUALS',
24689
24725
  NotEquals: 'NOT_EQUALS',
24690
24726
  Contains: 'CONTAINS',
24727
+ DoesNotContain: 'DOES_NOT_CONTAIN',
24691
24728
  StartsWith: 'STARTS_WITH',
24692
24729
  EndsWith: 'ENDS_WITH',
24730
+ GreaterThan: 'GREATER_THAN',
24731
+ LessThan: 'LESS_THAN',
24732
+ GreaterThanEquals: 'GREATER_THAN_EQUALS',
24733
+ LessThanEquals: 'LESS_THAN_EQUALS',
24693
24734
  And: 'AND',
24694
24735
  Or: 'OR'
24695
24736
  } as const;
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.53`;
149
+ let userAgent = `SailPoint-SDK-TypeScript/1.8.55`;
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.53'},
156
+ ...{'X-SailPoint-SDK':'typescript-1.8.55'},
157
157
  ...{'User-Agent': userAgent},
158
158
  }
159
159
 
package/beta/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.8.53",
3
+ "version": "1.8.55",
4
4
  "description": "OpenAPI client for sailpoint-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -964,13 +964,13 @@ export interface AccessItemRoleResponseBeta {
964
964
  */
965
965
  export interface AccessProfileApprovalSchemeBeta {
966
966
  /**
967
- * Describes the individual or group that is responsible for an approval step. These are the possible values: **APP_OWNER**: The owner of the Application **OWNER**: Owner of the associated Access Profile or Role **SOURCE_OWNER**: Owner of the Source associated with an Access Profile **MANAGER**: Manager of the Identity making the request **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. Workflow is exclusive to other types of approvals and License required.
967
+ * Describes the individual or group that is responsible for an approval step. These are the possible values: **APP_OWNER**: The owner of the Application **OWNER**: Owner of the associated Access Profile or Role **SOURCE_OWNER**: Owner of the Source associated with an Access Profile **MANAGER**: Manager of the Identity making the request **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. Workflow is exclusive to other types of approvals and License required. **ALL_OWNERS**: All owners of the Access Profile, including the primary owner and any secondary owners **ADDITIONAL_OWNER**: An additional owner of the Access Profile, the ID of which is specified by the **approverId** field **ADDITIONAL_GOVERNANCE_GROUP**: An additional Governance Group, the ID of which is specified by the **approverId** field
968
968
  * @type {string}
969
969
  * @memberof AccessProfileApprovalSchemeBeta
970
970
  */
971
971
  'approverType'?: AccessProfileApprovalSchemeBetaApproverTypeBeta;
972
972
  /**
973
- * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
973
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP, WORKFLOW, or ADDITIONAL_GOVERNANCE_GROUP.
974
974
  * @type {string}
975
975
  * @memberof AccessProfileApprovalSchemeBeta
976
976
  */
@@ -983,6 +983,9 @@ export declare const AccessProfileApprovalSchemeBetaApproverTypeBeta: {
983
983
  readonly Manager: "MANAGER";
984
984
  readonly GovernanceGroup: "GOVERNANCE_GROUP";
985
985
  readonly Workflow: "WORKFLOW";
986
+ readonly AllOwners: "ALL_OWNERS";
987
+ readonly AdditionalOwner: "ADDITIONAL_OWNER";
988
+ readonly AdditionalGovernanceGroup: "ADDITIONAL_GOVERNANCE_GROUP";
986
989
  };
987
990
  export type AccessProfileApprovalSchemeBetaApproverTypeBeta = typeof AccessProfileApprovalSchemeBetaApproverTypeBeta[keyof typeof AccessProfileApprovalSchemeBetaApproverTypeBeta];
988
991
  /**
@@ -4479,13 +4482,13 @@ export type ApprovalSchemeBeta = typeof ApprovalSchemeBeta[keyof typeof Approval
4479
4482
  */
4480
4483
  export interface ApprovalSchemeForRoleBeta {
4481
4484
  /**
4482
- * Describes the individual or group that is responsible for an approval step. Values are as follows. **OWNER**: Owner of the associated Role **MANAGER**: Manager of the Identity making the request **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. Workflow is exclusive to other types of approvals and License required.
4485
+ * Describes the individual or group that is responsible for an approval step. Values are as follows. **OWNER**: Owner of the associated Role **MANAGER**: Manager of the Identity making the request **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. Workflow is exclusive to other types of approvals and License required. **ALL_OWNERS**: All owners of the Role, including the primary owner and any secondary owners **ADDITIONAL_OWNER**: An additional owner of the Role, the ID of which is specified by the **approverId** field **ADDITIONAL_GOVERNANCE_GROUP**: An additional Governance Group, the ID of which is specified by the **approverId** field
4483
4486
  * @type {string}
4484
4487
  * @memberof ApprovalSchemeForRoleBeta
4485
4488
  */
4486
4489
  'approverType'?: ApprovalSchemeForRoleBetaApproverTypeBeta;
4487
4490
  /**
4488
- * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
4491
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP, WORKFLOW, or ADDITIONAL_GOVERNANCE_GROUP.
4489
4492
  * @type {string}
4490
4493
  * @memberof ApprovalSchemeForRoleBeta
4491
4494
  */
@@ -4496,6 +4499,9 @@ export declare const ApprovalSchemeForRoleBetaApproverTypeBeta: {
4496
4499
  readonly Manager: "MANAGER";
4497
4500
  readonly GovernanceGroup: "GOVERNANCE_GROUP";
4498
4501
  readonly Workflow: "WORKFLOW";
4502
+ readonly AllOwners: "ALL_OWNERS";
4503
+ readonly AdditionalOwner: "ADDITIONAL_OWNER";
4504
+ readonly AdditionalGovernanceGroup: "ADDITIONAL_GOVERNANCE_GROUP";
4499
4505
  };
4500
4506
  export type ApprovalSchemeForRoleBetaApproverTypeBeta = typeof ApprovalSchemeForRoleBetaApproverTypeBeta[keyof typeof ApprovalSchemeForRoleBetaApproverTypeBeta];
4501
4507
  /**
@@ -12787,6 +12793,12 @@ export interface GetRoleAssignments200ResponseInnerBeta {
12787
12793
  * @memberof GetRoleAssignments200ResponseInnerBeta
12788
12794
  */
12789
12795
  'addedDate'?: string;
12796
+ /**
12797
+ * Date when assignment will be active, if access was requested with a future start date. If null, assignment is active immediately
12798
+ * @type {string}
12799
+ * @memberof GetRoleAssignments200ResponseInnerBeta
12800
+ */
12801
+ 'startDate'?: string | null;
12790
12802
  /**
12791
12803
  * Date that the assignment will be removed
12792
12804
  * @type {string}
@@ -22536,6 +22548,12 @@ export interface RequestabilityForRoleBeta {
22536
22548
  * @memberof RequestabilityForRoleBeta
22537
22549
  */
22538
22550
  'approvalSchemes'?: Array<ApprovalSchemeForRoleBeta>;
22551
+ /**
22552
+ * The ID of the form definition used for the access request. If specified, the form is presented to the requester during the access request process.
22553
+ * @type {string}
22554
+ * @memberof RequestabilityForRoleBeta
22555
+ */
22556
+ 'formDefinitionId'?: string | null;
22539
22557
  }
22540
22558
  /**
22541
22559
  *
@@ -23542,6 +23560,12 @@ export interface RoleAssignmentDtoBeta {
23542
23560
  * @memberof RoleAssignmentDtoBeta
23543
23561
  */
23544
23562
  'accountTargets'?: Array<RoleTargetDtoBeta>;
23563
+ /**
23564
+ * Date when assignment will be active, if access was requested with a future start date. If null, assignment is active immediately
23565
+ * @type {string}
23566
+ * @memberof RoleAssignmentDtoBeta
23567
+ */
23568
+ 'startDate'?: string | null;
23545
23569
  /**
23546
23570
  * Date that the assignment will be removed
23547
23571
  * @type {string}
@@ -23579,6 +23603,12 @@ export interface RoleAssignmentRefBeta {
23579
23603
  * @memberof RoleAssignmentRefBeta
23580
23604
  */
23581
23605
  'addedDate'?: string;
23606
+ /**
23607
+ * Date when assignment will be active, if requested with a future date. If null, assignment is active immediately
23608
+ * @type {string}
23609
+ * @memberof RoleAssignmentRefBeta
23610
+ */
23611
+ 'startDate'?: string | null;
23582
23612
  /**
23583
23613
  * Date that the assignment will be removed
23584
23614
  * @type {string}
@@ -23718,6 +23748,12 @@ export interface RoleBeta {
23718
23748
  * @memberof RoleBeta
23719
23749
  */
23720
23750
  'accessModelMetadata'?: AttributeDTOListBeta;
23751
+ /**
23752
+ * The privilege level of the role, if applicable.
23753
+ * @type {string}
23754
+ * @memberof RoleBeta
23755
+ */
23756
+ 'privilegeLevel'?: string | null;
23721
23757
  }
23722
23758
  /**
23723
23759
  *
@@ -23787,7 +23823,7 @@ export interface RoleCriteriaLevel1Beta {
23787
23823
  */
23788
23824
  'key'?: RoleCriteriaKeyBeta | null;
23789
23825
  /**
23790
- * String value to test the Identity attribute, Account attribute, or Entitlement specified in the key w/r/t the specified operation. If this criteria is a leaf node, that is, if the operation is one of EQUALS, NOT_EQUALS, CONTAINS, STARTS_WITH, or ENDS_WITH, this field is required. Otherwise, specifying it is an error.
23826
+ * String value to test the Identity attribute, Account attribute, or Entitlement specified in the key w/r/t the specified operation. If this criteria is a leaf node, that is, if the operation is one of EQUALS, NOT_EQUALS, CONTAINS, DOES_NOT_CONTAIN, STARTS_WITH, or ENDS_WITH, this field is required. Otherwise, specifying it is an error.
23791
23827
  * @type {string}
23792
23828
  * @memberof RoleCriteriaLevel1Beta
23793
23829
  */
@@ -23818,7 +23854,7 @@ export interface RoleCriteriaLevel2Beta {
23818
23854
  */
23819
23855
  'key'?: RoleCriteriaKeyBeta | null;
23820
23856
  /**
23821
- * String value to test the Identity attribute, Account attribute, or Entitlement specified in the key w/r/t the specified operation. If this criteria is a leaf node, that is, if the operation is one of EQUALS, NOT_EQUALS, CONTAINS, STARTS_WITH, or ENDS_WITH, this field is required. Otherwise, specifying it is an error.
23857
+ * String value to test the Identity attribute, Account attribute, or Entitlement specified in the key w/r/t the specified operation. If this criteria is a leaf node, that is, if the operation is one of EQUALS, NOT_EQUALS, CONTAINS, DOES_NOT_CONTAIN, STARTS_WITH, or ENDS_WITH, this field is required. Otherwise, specifying it is an error.
23822
23858
  * @type {string}
23823
23859
  * @memberof RoleCriteriaLevel2Beta
23824
23860
  */
@@ -23849,11 +23885,11 @@ export interface RoleCriteriaLevel3Beta {
23849
23885
  */
23850
23886
  'key'?: RoleCriteriaKeyBeta | null;
23851
23887
  /**
23852
- * String value to test the Identity attribute, Account attribute, or Entitlement specified in the key w/r/t the specified operation. If this criteria is a leaf node, that is, if the operation is one of EQUALS, NOT_EQUALS, CONTAINS, STARTS_WITH, or ENDS_WITH, this field is required. Otherwise, specifying it is an error.
23888
+ * String value to test the Identity attribute, Account attribute, or Entitlement specified in the key w/r/t the specified operation. If this criteria is a leaf node, that is, if the operation is one of EQUALS, NOT_EQUALS, CONTAINS, DOES_NOT_CONTAIN, STARTS_WITH, or ENDS_WITH, this field is required. Otherwise, specifying it is an error.
23853
23889
  * @type {string}
23854
23890
  * @memberof RoleCriteriaLevel3Beta
23855
23891
  */
23856
- 'stringValue'?: string;
23892
+ 'stringValue'?: string | null;
23857
23893
  }
23858
23894
  /**
23859
23895
  * An operation
@@ -23864,8 +23900,13 @@ export declare const RoleCriteriaOperationBeta: {
23864
23900
  readonly Equals: "EQUALS";
23865
23901
  readonly NotEquals: "NOT_EQUALS";
23866
23902
  readonly Contains: "CONTAINS";
23903
+ readonly DoesNotContain: "DOES_NOT_CONTAIN";
23867
23904
  readonly StartsWith: "STARTS_WITH";
23868
23905
  readonly EndsWith: "ENDS_WITH";
23906
+ readonly GreaterThan: "GREATER_THAN";
23907
+ readonly LessThan: "LESS_THAN";
23908
+ readonly GreaterThanEquals: "GREATER_THAN_EQUALS";
23909
+ readonly LessThanEquals: "LESS_THAN_EQUALS";
23869
23910
  readonly And: "AND";
23870
23911
  readonly Or: "OR";
23871
23912
  };
package/dist/beta/api.js CHANGED
@@ -170,7 +170,10 @@ exports.AccessProfileApprovalSchemeBetaApproverTypeBeta = {
170
170
  SourceOwner: 'SOURCE_OWNER',
171
171
  Manager: 'MANAGER',
172
172
  GovernanceGroup: 'GOVERNANCE_GROUP',
173
- Workflow: 'WORKFLOW'
173
+ Workflow: 'WORKFLOW',
174
+ AllOwners: 'ALL_OWNERS',
175
+ AdditionalOwner: 'ADDITIONAL_OWNER',
176
+ AdditionalGovernanceGroup: 'ADDITIONAL_GOVERNANCE_GROUP'
174
177
  };
175
178
  exports.AccessProfileRefBetaTypeBeta = {
176
179
  AccessProfile: 'ACCESS_PROFILE'
@@ -405,7 +408,10 @@ exports.ApprovalSchemeForRoleBetaApproverTypeBeta = {
405
408
  Owner: 'OWNER',
406
409
  Manager: 'MANAGER',
407
410
  GovernanceGroup: 'GOVERNANCE_GROUP',
408
- Workflow: 'WORKFLOW'
411
+ Workflow: 'WORKFLOW',
412
+ AllOwners: 'ALL_OWNERS',
413
+ AdditionalOwner: 'ADDITIONAL_OWNER',
414
+ AdditionalGovernanceGroup: 'ADDITIONAL_GOVERNANCE_GROUP'
409
415
  };
410
416
  /**
411
417
  * Enum representing the non-employee request approval status
@@ -1964,8 +1970,13 @@ exports.RoleCriteriaOperationBeta = {
1964
1970
  Equals: 'EQUALS',
1965
1971
  NotEquals: 'NOT_EQUALS',
1966
1972
  Contains: 'CONTAINS',
1973
+ DoesNotContain: 'DOES_NOT_CONTAIN',
1967
1974
  StartsWith: 'STARTS_WITH',
1968
1975
  EndsWith: 'ENDS_WITH',
1976
+ GreaterThan: 'GREATER_THAN',
1977
+ LessThan: 'LESS_THAN',
1978
+ GreaterThanEquals: 'GREATER_THAN_EQUALS',
1979
+ LessThanEquals: 'LESS_THAN_EQUALS',
1969
1980
  And: 'AND',
1970
1981
  Or: 'OR'
1971
1982
  };