sailpoint-api-client 1.8.54 → 1.8.56

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 +49 -8
  20. package/dist/v2026/api.js +13 -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 +51 -10
  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
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
250
250
  if (axios === void 0) { axios = globalAxios; }
251
251
  if (basePath === void 0) { basePath = BASE_PATH; }
252
252
  (0, axios_retry_1.default)(axios, configuration.retriesConfig);
253
- var userAgent = "SailPoint-SDK-TypeScript/1.8.54";
253
+ var userAgent = "SailPoint-SDK-TypeScript/1.8.56";
254
254
  if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
255
255
  userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
256
256
  }
257
257
  userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
258
- var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.54' }), { 'User-Agent': userAgent });
258
+ var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.56' }), { 'User-Agent': userAgent });
259
259
  if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
260
260
  throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
261
261
  }
@@ -1109,13 +1109,13 @@ export interface AccessModelMetadataValuesInnerV2025 {
1109
1109
  */
1110
1110
  export interface AccessProfileApprovalSchemeV2025 {
1111
1111
  /**
1112
- * 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.
1112
+ * 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
1113
1113
  * @type {string}
1114
1114
  * @memberof AccessProfileApprovalSchemeV2025
1115
1115
  */
1116
1116
  'approverType'?: AccessProfileApprovalSchemeV2025ApproverTypeV2025;
1117
1117
  /**
1118
- * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
1118
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP, WORKFLOW, or ADDITIONAL_GOVERNANCE_GROUP.
1119
1119
  * @type {string}
1120
1120
  * @memberof AccessProfileApprovalSchemeV2025
1121
1121
  */
@@ -1128,6 +1128,9 @@ export declare const AccessProfileApprovalSchemeV2025ApproverTypeV2025: {
1128
1128
  readonly Manager: "MANAGER";
1129
1129
  readonly GovernanceGroup: "GOVERNANCE_GROUP";
1130
1130
  readonly Workflow: "WORKFLOW";
1131
+ readonly AllOwners: "ALL_OWNERS";
1132
+ readonly AdditionalOwner: "ADDITIONAL_OWNER";
1133
+ readonly AdditionalGovernanceGroup: "ADDITIONAL_GOVERNANCE_GROUP";
1131
1134
  };
1132
1135
  export type AccessProfileApprovalSchemeV2025ApproverTypeV2025 = typeof AccessProfileApprovalSchemeV2025ApproverTypeV2025[keyof typeof AccessProfileApprovalSchemeV2025ApproverTypeV2025];
1133
1136
  /**
@@ -8071,13 +8074,13 @@ export interface ApprovalRequestedTargetV2025 {
8071
8074
  */
8072
8075
  export interface ApprovalSchemeForRoleV2025 {
8073
8076
  /**
8074
- * 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.
8077
+ * 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
8075
8078
  * @type {string}
8076
8079
  * @memberof ApprovalSchemeForRoleV2025
8077
8080
  */
8078
8081
  'approverType'?: ApprovalSchemeForRoleV2025ApproverTypeV2025;
8079
8082
  /**
8080
- * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
8083
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP, WORKFLOW, or ADDITIONAL_GOVERNANCE_GROUP.
8081
8084
  * @type {string}
8082
8085
  * @memberof ApprovalSchemeForRoleV2025
8083
8086
  */
@@ -8088,6 +8091,9 @@ export declare const ApprovalSchemeForRoleV2025ApproverTypeV2025: {
8088
8091
  readonly Manager: "MANAGER";
8089
8092
  readonly GovernanceGroup: "GOVERNANCE_GROUP";
8090
8093
  readonly Workflow: "WORKFLOW";
8094
+ readonly AllOwners: "ALL_OWNERS";
8095
+ readonly AdditionalOwner: "ADDITIONAL_OWNER";
8096
+ readonly AdditionalGovernanceGroup: "ADDITIONAL_GOVERNANCE_GROUP";
8091
8097
  };
8092
8098
  export type ApprovalSchemeForRoleV2025ApproverTypeV2025 = typeof ApprovalSchemeForRoleV2025ApproverTypeV2025[keyof typeof ApprovalSchemeForRoleV2025ApproverTypeV2025];
8093
8099
  /**
@@ -21198,6 +21204,12 @@ export interface GetRoleAssignments200ResponseInnerV2025 {
21198
21204
  * @memberof GetRoleAssignments200ResponseInnerV2025
21199
21205
  */
21200
21206
  'addedDate'?: string;
21207
+ /**
21208
+ * Date when assignment will be active, if access was requested with a future start date. If null, assignment is active immediately
21209
+ * @type {string}
21210
+ * @memberof GetRoleAssignments200ResponseInnerV2025
21211
+ */
21212
+ 'startDate'?: string | null;
21201
21213
  /**
21202
21214
  * Date that the assignment will be removed
21203
21215
  * @type {string}
@@ -35661,6 +35673,12 @@ export interface RequestabilityForRoleV2025 {
35661
35673
  * @memberof RequestabilityForRoleV2025
35662
35674
  */
35663
35675
  'dimensionSchema'?: DimensionSchemaV2025;
35676
+ /**
35677
+ * 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.
35678
+ * @type {string}
35679
+ * @memberof RequestabilityForRoleV2025
35680
+ */
35681
+ 'formDefinitionId'?: string | null;
35664
35682
  }
35665
35683
  /**
35666
35684
  *
@@ -37306,6 +37324,12 @@ export interface RoleAssignmentDtoV2025 {
37306
37324
  * @memberof RoleAssignmentDtoV2025
37307
37325
  */
37308
37326
  'accountTargets'?: Array<RoleTargetDtoV2025>;
37327
+ /**
37328
+ * Date when assignment will be active, if access was requested with a future start date. If null, assignment is active immediately
37329
+ * @type {string}
37330
+ * @memberof RoleAssignmentDtoV2025
37331
+ */
37332
+ 'startDate'?: string | null;
37309
37333
  /**
37310
37334
  * Date that the assignment will be removed
37311
37335
  * @type {string}
@@ -37343,6 +37367,12 @@ export interface RoleAssignmentRefV2025 {
37343
37367
  * @memberof RoleAssignmentRefV2025
37344
37368
  */
37345
37369
  'addedDate'?: string;
37370
+ /**
37371
+ * Date when assignment will be active, if requested with a future date. If null, assignment is active immediately
37372
+ * @type {string}
37373
+ * @memberof RoleAssignmentRefV2025
37374
+ */
37375
+ 'startDate'?: string | null;
37346
37376
  /**
37347
37377
  * Date that the assignment will be removed
37348
37378
  * @type {string}
@@ -37469,7 +37499,7 @@ export interface RoleCriteriaLevel1V2025 {
37469
37499
  */
37470
37500
  'key'?: RoleCriteriaKeyV2025 | null;
37471
37501
  /**
37472
- * 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.
37502
+ * 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.
37473
37503
  * @type {string}
37474
37504
  * @memberof RoleCriteriaLevel1V2025
37475
37505
  */
@@ -37500,7 +37530,7 @@ export interface RoleCriteriaLevel2V2025 {
37500
37530
  */
37501
37531
  'key'?: RoleCriteriaKeyV2025 | null;
37502
37532
  /**
37503
- * 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.
37533
+ * 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.
37504
37534
  * @type {string}
37505
37535
  * @memberof RoleCriteriaLevel2V2025
37506
37536
  */
@@ -37531,11 +37561,11 @@ export interface RoleCriteriaLevel3V2025 {
37531
37561
  */
37532
37562
  'key'?: RoleCriteriaKeyV2025 | null;
37533
37563
  /**
37534
- * 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.
37564
+ * 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.
37535
37565
  * @type {string}
37536
37566
  * @memberof RoleCriteriaLevel3V2025
37537
37567
  */
37538
- 'stringValue'?: string;
37568
+ 'stringValue'?: string | null;
37539
37569
  }
37540
37570
  /**
37541
37571
  * An operation
@@ -37546,8 +37576,13 @@ export declare const RoleCriteriaOperationV2025: {
37546
37576
  readonly Equals: "EQUALS";
37547
37577
  readonly NotEquals: "NOT_EQUALS";
37548
37578
  readonly Contains: "CONTAINS";
37579
+ readonly DoesNotContain: "DOES_NOT_CONTAIN";
37549
37580
  readonly StartsWith: "STARTS_WITH";
37550
37581
  readonly EndsWith: "ENDS_WITH";
37582
+ readonly GreaterThan: "GREATER_THAN";
37583
+ readonly LessThan: "LESS_THAN";
37584
+ readonly GreaterThanEquals: "GREATER_THAN_EQUALS";
37585
+ readonly LessThanEquals: "LESS_THAN_EQUALS";
37551
37586
  readonly And: "AND";
37552
37587
  readonly Or: "OR";
37553
37588
  };
@@ -40277,6 +40312,12 @@ export interface RoleV2025 {
40277
40312
  * @memberof RoleV2025
40278
40313
  */
40279
40314
  'accessModelMetadata'?: AttributeDTOListV2025;
40315
+ /**
40316
+ * The privilege level of the role, if applicable.
40317
+ * @type {string}
40318
+ * @memberof RoleV2025
40319
+ */
40320
+ 'privilegeLevel'?: string | null;
40280
40321
  }
40281
40322
  /**
40282
40323
  * @type RuleV2025
package/dist/v2025/api.js CHANGED
@@ -184,7 +184,10 @@ exports.AccessProfileApprovalSchemeV2025ApproverTypeV2025 = {
184
184
  SourceOwner: 'SOURCE_OWNER',
185
185
  Manager: 'MANAGER',
186
186
  GovernanceGroup: 'GOVERNANCE_GROUP',
187
- Workflow: 'WORKFLOW'
187
+ Workflow: 'WORKFLOW',
188
+ AllOwners: 'ALL_OWNERS',
189
+ AdditionalOwner: 'ADDITIONAL_OWNER',
190
+ AdditionalGovernanceGroup: 'ADDITIONAL_GOVERNANCE_GROUP'
188
191
  };
189
192
  exports.AccessProfileRefV2025TypeV2025 = {
190
193
  AccessProfile: 'ACCESS_PROFILE'
@@ -660,7 +663,10 @@ exports.ApprovalSchemeForRoleV2025ApproverTypeV2025 = {
660
663
  Owner: 'OWNER',
661
664
  Manager: 'MANAGER',
662
665
  GovernanceGroup: 'GOVERNANCE_GROUP',
663
- Workflow: 'WORKFLOW'
666
+ Workflow: 'WORKFLOW',
667
+ AllOwners: 'ALL_OWNERS',
668
+ AdditionalOwner: 'ADDITIONAL_OWNER',
669
+ AdditionalGovernanceGroup: 'ADDITIONAL_GOVERNANCE_GROUP'
664
670
  };
665
671
  /**
666
672
  * Describes the individual or group that is responsible for an approval step.
@@ -3070,8 +3076,13 @@ exports.RoleCriteriaOperationV2025 = {
3070
3076
  Equals: 'EQUALS',
3071
3077
  NotEquals: 'NOT_EQUALS',
3072
3078
  Contains: 'CONTAINS',
3079
+ DoesNotContain: 'DOES_NOT_CONTAIN',
3073
3080
  StartsWith: 'STARTS_WITH',
3074
3081
  EndsWith: 'ENDS_WITH',
3082
+ GreaterThan: 'GREATER_THAN',
3083
+ LessThan: 'LESS_THAN',
3084
+ GreaterThanEquals: 'GREATER_THAN_EQUALS',
3085
+ LessThanEquals: 'LESS_THAN_EQUALS',
3075
3086
  And: 'AND',
3076
3087
  Or: 'OR'
3077
3088
  };