sailpoint-api-client 1.8.54 → 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 +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.55";
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.55' }), { '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 AccessModelMetadataValuesInnerV2026 {
1109
1109
  */
1110
1110
  export interface AccessProfileApprovalSchemeV2026 {
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 AccessProfileApprovalSchemeV2026
1115
1115
  */
1116
1116
  'approverType'?: AccessProfileApprovalSchemeV2026ApproverTypeV2026;
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 AccessProfileApprovalSchemeV2026
1121
1121
  */
@@ -1128,6 +1128,9 @@ export declare const AccessProfileApprovalSchemeV2026ApproverTypeV2026: {
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 AccessProfileApprovalSchemeV2026ApproverTypeV2026 = typeof AccessProfileApprovalSchemeV2026ApproverTypeV2026[keyof typeof AccessProfileApprovalSchemeV2026ApproverTypeV2026];
1133
1136
  /**
@@ -8780,13 +8783,13 @@ export interface ApprovalRequestedTargetV2026 {
8780
8783
  */
8781
8784
  export interface ApprovalSchemeForRoleV2026 {
8782
8785
  /**
8783
- * 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.
8786
+ * 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
8784
8787
  * @type {string}
8785
8788
  * @memberof ApprovalSchemeForRoleV2026
8786
8789
  */
8787
8790
  'approverType'?: ApprovalSchemeForRoleV2026ApproverTypeV2026;
8788
8791
  /**
8789
- * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
8792
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP, WORKFLOW, or ADDITIONAL_GOVERNANCE_GROUP.
8790
8793
  * @type {string}
8791
8794
  * @memberof ApprovalSchemeForRoleV2026
8792
8795
  */
@@ -8797,6 +8800,9 @@ export declare const ApprovalSchemeForRoleV2026ApproverTypeV2026: {
8797
8800
  readonly Manager: "MANAGER";
8798
8801
  readonly GovernanceGroup: "GOVERNANCE_GROUP";
8799
8802
  readonly Workflow: "WORKFLOW";
8803
+ readonly AllOwners: "ALL_OWNERS";
8804
+ readonly AdditionalOwner: "ADDITIONAL_OWNER";
8805
+ readonly AdditionalGovernanceGroup: "ADDITIONAL_GOVERNANCE_GROUP";
8800
8806
  };
8801
8807
  export type ApprovalSchemeForRoleV2026ApproverTypeV2026 = typeof ApprovalSchemeForRoleV2026ApproverTypeV2026[keyof typeof ApprovalSchemeForRoleV2026ApproverTypeV2026];
8802
8808
  /**
@@ -22716,6 +22722,12 @@ export interface GetRoleAssignments200ResponseInnerV2026 {
22716
22722
  * @memberof GetRoleAssignments200ResponseInnerV2026
22717
22723
  */
22718
22724
  'addedDate'?: string;
22725
+ /**
22726
+ * Date when assignment will be active, if access was requested with a future start date. If null, assignment is active immediately
22727
+ * @type {string}
22728
+ * @memberof GetRoleAssignments200ResponseInnerV2026
22729
+ */
22730
+ 'startDate'?: string | null;
22719
22731
  /**
22720
22732
  * Date that the assignment will be removed
22721
22733
  * @type {string}
@@ -38574,6 +38586,12 @@ export interface RequestabilityForRoleV2026 {
38574
38586
  * @memberof RequestabilityForRoleV2026
38575
38587
  */
38576
38588
  'dimensionSchema'?: DimensionSchemaV2026;
38589
+ /**
38590
+ * 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.
38591
+ * @type {string}
38592
+ * @memberof RequestabilityForRoleV2026
38593
+ */
38594
+ 'formDefinitionId'?: string | null;
38577
38595
  }
38578
38596
  /**
38579
38597
  *
@@ -40219,6 +40237,12 @@ export interface RoleAssignmentDtoV2026 {
40219
40237
  * @memberof RoleAssignmentDtoV2026
40220
40238
  */
40221
40239
  'accountTargets'?: Array<RoleTargetDtoV2026>;
40240
+ /**
40241
+ * Date when assignment will be active, if access was requested with a future start date. If null, assignment is active immediately
40242
+ * @type {string}
40243
+ * @memberof RoleAssignmentDtoV2026
40244
+ */
40245
+ 'startDate'?: string | null;
40222
40246
  /**
40223
40247
  * Date that the assignment will be removed
40224
40248
  * @type {string}
@@ -40256,6 +40280,12 @@ export interface RoleAssignmentRefV2026 {
40256
40280
  * @memberof RoleAssignmentRefV2026
40257
40281
  */
40258
40282
  'addedDate'?: string;
40283
+ /**
40284
+ * Date when assignment will be active, if requested with a future date. If null, assignment is active immediately
40285
+ * @type {string}
40286
+ * @memberof RoleAssignmentRefV2026
40287
+ */
40288
+ 'startDate'?: string | null;
40259
40289
  /**
40260
40290
  * Date that the assignment will be removed
40261
40291
  * @type {string}
@@ -40382,7 +40412,7 @@ export interface RoleCriteriaLevel1V2026 {
40382
40412
  */
40383
40413
  'key'?: RoleCriteriaKeyV2026 | null;
40384
40414
  /**
40385
- * 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.
40415
+ * 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.
40386
40416
  * @type {string}
40387
40417
  * @memberof RoleCriteriaLevel1V2026
40388
40418
  */
@@ -40413,7 +40443,7 @@ export interface RoleCriteriaLevel2V2026 {
40413
40443
  */
40414
40444
  'key'?: RoleCriteriaKeyV2026 | null;
40415
40445
  /**
40416
- * 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.
40446
+ * 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.
40417
40447
  * @type {string}
40418
40448
  * @memberof RoleCriteriaLevel2V2026
40419
40449
  */
@@ -40444,11 +40474,11 @@ export interface RoleCriteriaLevel3V2026 {
40444
40474
  */
40445
40475
  'key'?: RoleCriteriaKeyV2026 | null;
40446
40476
  /**
40447
- * 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.
40477
+ * 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.
40448
40478
  * @type {string}
40449
40479
  * @memberof RoleCriteriaLevel3V2026
40450
40480
  */
40451
- 'stringValue'?: string;
40481
+ 'stringValue'?: string | null;
40452
40482
  }
40453
40483
  /**
40454
40484
  * An operation
@@ -40459,8 +40489,13 @@ export declare const RoleCriteriaOperationV2026: {
40459
40489
  readonly Equals: "EQUALS";
40460
40490
  readonly NotEquals: "NOT_EQUALS";
40461
40491
  readonly Contains: "CONTAINS";
40492
+ readonly DoesNotContain: "DOES_NOT_CONTAIN";
40462
40493
  readonly StartsWith: "STARTS_WITH";
40463
40494
  readonly EndsWith: "ENDS_WITH";
40495
+ readonly GreaterThan: "GREATER_THAN";
40496
+ readonly LessThan: "LESS_THAN";
40497
+ readonly GreaterThanEquals: "GREATER_THAN_EQUALS";
40498
+ readonly LessThanEquals: "LESS_THAN_EQUALS";
40464
40499
  readonly And: "AND";
40465
40500
  readonly Or: "OR";
40466
40501
  };
@@ -43190,6 +43225,12 @@ export interface RoleV2026 {
43190
43225
  * @memberof RoleV2026
43191
43226
  */
43192
43227
  'accessModelMetadata'?: AttributeDTOListV2026;
43228
+ /**
43229
+ * The privilege level of the role, if applicable.
43230
+ * @type {string}
43231
+ * @memberof RoleV2026
43232
+ */
43233
+ 'privilegeLevel'?: string | null;
43193
43234
  }
43194
43235
  /**
43195
43236
  * @type RuleV2026
package/dist/v2026/api.js CHANGED
@@ -186,7 +186,10 @@ exports.AccessProfileApprovalSchemeV2026ApproverTypeV2026 = {
186
186
  SourceOwner: 'SOURCE_OWNER',
187
187
  Manager: 'MANAGER',
188
188
  GovernanceGroup: 'GOVERNANCE_GROUP',
189
- Workflow: 'WORKFLOW'
189
+ Workflow: 'WORKFLOW',
190
+ AllOwners: 'ALL_OWNERS',
191
+ AdditionalOwner: 'ADDITIONAL_OWNER',
192
+ AdditionalGovernanceGroup: 'ADDITIONAL_GOVERNANCE_GROUP'
190
193
  };
191
194
  exports.AccessProfileRefV2026TypeV2026 = {
192
195
  AccessProfile: 'ACCESS_PROFILE'
@@ -751,7 +754,10 @@ exports.ApprovalSchemeForRoleV2026ApproverTypeV2026 = {
751
754
  Owner: 'OWNER',
752
755
  Manager: 'MANAGER',
753
756
  GovernanceGroup: 'GOVERNANCE_GROUP',
754
- Workflow: 'WORKFLOW'
757
+ Workflow: 'WORKFLOW',
758
+ AllOwners: 'ALL_OWNERS',
759
+ AdditionalOwner: 'ADDITIONAL_OWNER',
760
+ AdditionalGovernanceGroup: 'ADDITIONAL_GOVERNANCE_GROUP'
755
761
  };
756
762
  /**
757
763
  * Describes the individual or group that is responsible for an approval step.
@@ -3277,8 +3283,13 @@ exports.RoleCriteriaOperationV2026 = {
3277
3283
  Equals: 'EQUALS',
3278
3284
  NotEquals: 'NOT_EQUALS',
3279
3285
  Contains: 'CONTAINS',
3286
+ DoesNotContain: 'DOES_NOT_CONTAIN',
3280
3287
  StartsWith: 'STARTS_WITH',
3281
3288
  EndsWith: 'ENDS_WITH',
3289
+ GreaterThan: 'GREATER_THAN',
3290
+ LessThan: 'LESS_THAN',
3291
+ GreaterThanEquals: 'GREATER_THAN_EQUALS',
3292
+ LessThanEquals: 'LESS_THAN_EQUALS',
3282
3293
  And: 'AND',
3283
3294
  Or: 'OR'
3284
3295
  };