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
@@ -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.53";
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.53' }), { '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}
@@ -26135,6 +26147,12 @@ export interface IntelIdentityLinksV2026 {
26135
26147
  * @memberof IntelIdentityLinksV2026
26136
26148
  */
26137
26149
  'access': IntelHrefV2026;
26150
+ /**
26151
+ * Hyperlink to the Intelligence Package risk document for this identity.
26152
+ * @type {IntelHrefV2026}
26153
+ * @memberof IntelIdentityLinksV2026
26154
+ */
26155
+ 'risk': IntelHrefV2026;
26138
26156
  /**
26139
26157
  * Hyperlink to the Intelligence Package access history document for this identity.
26140
26158
  * @type {IntelHrefV2026}
@@ -26166,7 +26184,7 @@ export declare const IntelIdentityNotFoundBodyV2026DetailCodeV2026: {
26166
26184
  };
26167
26185
  export type IntelIdentityNotFoundBodyV2026DetailCodeV2026 = typeof IntelIdentityNotFoundBodyV2026DetailCodeV2026[keyof typeof IntelIdentityNotFoundBodyV2026DetailCodeV2026];
26168
26186
  /**
26169
- * HUMAN responses include human, top-level subtype (NERM classification: Employee, Non Employee, or Cannot Determine), and _links (access and accessHistory only). MACHINE responses include machine and top-level subtype (connector subtype string); _links is omitted.
26187
+ * HUMAN responses include human, top-level subtype (NERM classification: Employee, Non Employee, or Cannot Determine), and _links (access, risk, and accessHistory). MACHINE responses include machine and top-level subtype (connector subtype string); _links is omitted.
26170
26188
  * @export
26171
26189
  * @interface IntelIdentityResponseV2026
26172
26190
  */
@@ -26245,6 +26263,31 @@ export declare const IntelIdentityResponseV2026TypeV2026: {
26245
26263
  readonly Machine: "MACHINE";
26246
26264
  };
26247
26265
  export type IntelIdentityResponseV2026TypeV2026 = typeof IntelIdentityResponseV2026TypeV2026[keyof typeof IntelIdentityResponseV2026TypeV2026];
26266
+ /**
26267
+ * Shared response envelope for risk endpoints.
26268
+ * @export
26269
+ * @interface IntelIdentityRiskBodyV2026
26270
+ */
26271
+ export interface IntelIdentityRiskBodyV2026 {
26272
+ /**
26273
+ * Page of outlier access-items associated with the resolved identity outlier.
26274
+ * @type {Array<IntelOutlierAccessItemV2026>}
26275
+ * @memberof IntelIdentityRiskBodyV2026
26276
+ */
26277
+ 'outliers': Array<IntelOutlierAccessItemV2026>;
26278
+ /**
26279
+ * Total available outlier access-item count from upstream.
26280
+ * @type {number}
26281
+ * @memberof IntelIdentityRiskBodyV2026
26282
+ */
26283
+ 'outliersTotal': number | null;
26284
+ /**
26285
+ * Continuation links map; omitted when no additional page exists.
26286
+ * @type {IntelRiskLinksV2026}
26287
+ * @memberof IntelIdentityRiskBodyV2026
26288
+ */
26289
+ '_links'?: IntelRiskLinksV2026 | null;
26290
+ }
26248
26291
  /**
26249
26292
  *
26250
26293
  * @export
@@ -26362,6 +26405,49 @@ export interface IntelMachineV2026 {
26362
26405
  */
26363
26406
  'userEntitlements'?: Array<object>;
26364
26407
  }
26408
+ /**
26409
+ * One outlier access-item row.
26410
+ * @export
26411
+ * @interface IntelOutlierAccessItemV2026
26412
+ */
26413
+ export interface IntelOutlierAccessItemV2026 {
26414
+ /**
26415
+ * Stable identifier of the outlier access-item row.
26416
+ * @type {string}
26417
+ * @memberof IntelOutlierAccessItemV2026
26418
+ */
26419
+ 'id': string;
26420
+ /**
26421
+ * Display label of the risky access item.
26422
+ * @type {string}
26423
+ * @memberof IntelOutlierAccessItemV2026
26424
+ */
26425
+ 'displayName': string;
26426
+ /**
26427
+ * Optional descriptive text for the risky access item.
26428
+ * @type {string}
26429
+ * @memberof IntelOutlierAccessItemV2026
26430
+ */
26431
+ 'description'?: string | null;
26432
+ /**
26433
+ * Access item type (for example ENTITLEMENT, ROLE, ACCESS_PROFILE, ACCOUNT, or APP).
26434
+ * @type {string}
26435
+ * @memberof IntelOutlierAccessItemV2026
26436
+ */
26437
+ 'accessType': string;
26438
+ /**
26439
+ * Source name where the risky access item exists.
26440
+ * @type {string}
26441
+ * @memberof IntelOutlierAccessItemV2026
26442
+ */
26443
+ 'sourceName': string;
26444
+ /**
26445
+ * Indicates whether analytics marked this item as extremely rare.
26446
+ * @type {boolean}
26447
+ * @memberof IntelOutlierAccessItemV2026
26448
+ */
26449
+ 'extremelyRare': boolean;
26450
+ }
26365
26451
  /**
26366
26452
  * Source metadata associated with the privileged access item when present.
26367
26453
  * @export
@@ -26442,6 +26528,19 @@ export interface IntelPrivilegedAccessItemWireV2026 {
26442
26528
  */
26443
26529
  'value'?: string;
26444
26530
  }
26531
+ /**
26532
+ * Continuation links for risk responses.
26533
+ * @export
26534
+ * @interface IntelRiskLinksV2026
26535
+ */
26536
+ export interface IntelRiskLinksV2026 {
26537
+ /**
26538
+ * Link to fetch the next outlier page for the same identity.
26539
+ * @type {IntelHrefV2026}
26540
+ * @memberof IntelRiskLinksV2026
26541
+ */
26542
+ 'outliers'?: IntelHrefV2026;
26543
+ }
26445
26544
  /**
26446
26545
  *
26447
26546
  * @export
@@ -38487,6 +38586,12 @@ export interface RequestabilityForRoleV2026 {
38487
38586
  * @memberof RequestabilityForRoleV2026
38488
38587
  */
38489
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;
38490
38595
  }
38491
38596
  /**
38492
38597
  *
@@ -40132,6 +40237,12 @@ export interface RoleAssignmentDtoV2026 {
40132
40237
  * @memberof RoleAssignmentDtoV2026
40133
40238
  */
40134
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;
40135
40246
  /**
40136
40247
  * Date that the assignment will be removed
40137
40248
  * @type {string}
@@ -40169,6 +40280,12 @@ export interface RoleAssignmentRefV2026 {
40169
40280
  * @memberof RoleAssignmentRefV2026
40170
40281
  */
40171
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;
40172
40289
  /**
40173
40290
  * Date that the assignment will be removed
40174
40291
  * @type {string}
@@ -40295,7 +40412,7 @@ export interface RoleCriteriaLevel1V2026 {
40295
40412
  */
40296
40413
  'key'?: RoleCriteriaKeyV2026 | null;
40297
40414
  /**
40298
- * 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.
40299
40416
  * @type {string}
40300
40417
  * @memberof RoleCriteriaLevel1V2026
40301
40418
  */
@@ -40326,7 +40443,7 @@ export interface RoleCriteriaLevel2V2026 {
40326
40443
  */
40327
40444
  'key'?: RoleCriteriaKeyV2026 | null;
40328
40445
  /**
40329
- * 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.
40330
40447
  * @type {string}
40331
40448
  * @memberof RoleCriteriaLevel2V2026
40332
40449
  */
@@ -40357,11 +40474,11 @@ export interface RoleCriteriaLevel3V2026 {
40357
40474
  */
40358
40475
  'key'?: RoleCriteriaKeyV2026 | null;
40359
40476
  /**
40360
- * 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.
40361
40478
  * @type {string}
40362
40479
  * @memberof RoleCriteriaLevel3V2026
40363
40480
  */
40364
- 'stringValue'?: string;
40481
+ 'stringValue'?: string | null;
40365
40482
  }
40366
40483
  /**
40367
40484
  * An operation
@@ -40372,8 +40489,13 @@ export declare const RoleCriteriaOperationV2026: {
40372
40489
  readonly Equals: "EQUALS";
40373
40490
  readonly NotEquals: "NOT_EQUALS";
40374
40491
  readonly Contains: "CONTAINS";
40492
+ readonly DoesNotContain: "DOES_NOT_CONTAIN";
40375
40493
  readonly StartsWith: "STARTS_WITH";
40376
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";
40377
40499
  readonly And: "AND";
40378
40500
  readonly Or: "OR";
40379
40501
  };
@@ -43103,6 +43225,12 @@ export interface RoleV2026 {
43103
43225
  * @memberof RoleV2026
43104
43226
  */
43105
43227
  'accessModelMetadata'?: AttributeDTOListV2026;
43228
+ /**
43229
+ * The privilege level of the role, if applicable.
43230
+ * @type {string}
43231
+ * @memberof RoleV2026
43232
+ */
43233
+ 'privilegeLevel'?: string | null;
43106
43234
  }
43107
43235
  /**
43108
43236
  * @type RuleV2026
@@ -79210,6 +79338,24 @@ export declare const IntelligencePackageV2026ApiAxiosParamCreator: (configuratio
79210
79338
  * @throws {RequiredError}
79211
79339
  */
79212
79340
  getIntelIdentityAccessHistory: (identityID: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79341
+ /**
79342
+ * Risk snapshot envelope for the identity. The service resolves the first matching outlier for identityID and returns one page of access-items plus an optional continuation link for additional pages. Clients should continue paging using _links.outliers.href when provided. Requires tenant license idn:response-and-remediation.
79343
+ * @summary Identity risk snapshot
79344
+ * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
79345
+ * @param {*} [axiosOptions] Override http request option.
79346
+ * @throws {RequiredError}
79347
+ */
79348
+ getIntelIdentityRisk: (identityID: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79349
+ /**
79350
+ * Continuation endpoint for risk outlier access-items. Returns one page based on the supplied limit and offset values and includes an optional continuation link when more rows remain. Requires tenant license idn:response-and-remediation.
79351
+ * @summary Risk outliers continuation paging
79352
+ * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
79353
+ * @param {number} [limit] Maximum number of outlier rows to return for this page.
79354
+ * @param {number} [offset] Zero-based row index for the first returned outlier item.
79355
+ * @param {*} [axiosOptions] Override http request option.
79356
+ * @throws {RequiredError}
79357
+ */
79358
+ getIntelIdentityRiskOutliers: (identityID: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79213
79359
  /**
79214
79360
  * Requires tenant license idn:response-and-remediation. Returns the Intelligence Package envelope for the identity that matches the SCIM-style filters expression. Supported queryable fields are id and email only. A single match returns HTTP 200 with IntelIdentityResponse. Zero matches returns HTTP 404 with detailCode IDC_IDENTITY_NOT_FOUND. Multiple matches returns HTTP 409 with detailCode IDC_IDENTITY_AMBIGUOUS and candidates listing each match.
79215
79361
  * @summary Resolve one identity by filter
@@ -79243,6 +79389,24 @@ export declare const IntelligencePackageV2026ApiFp: (configuration?: Configurati
79243
79389
  * @throws {RequiredError}
79244
79390
  */
79245
79391
  getIntelIdentityAccessHistory(identityID: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityAccessHistoryBodyV2026>>;
79392
+ /**
79393
+ * Risk snapshot envelope for the identity. The service resolves the first matching outlier for identityID and returns one page of access-items plus an optional continuation link for additional pages. Clients should continue paging using _links.outliers.href when provided. Requires tenant license idn:response-and-remediation.
79394
+ * @summary Identity risk snapshot
79395
+ * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
79396
+ * @param {*} [axiosOptions] Override http request option.
79397
+ * @throws {RequiredError}
79398
+ */
79399
+ getIntelIdentityRisk(identityID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityRiskBodyV2026>>;
79400
+ /**
79401
+ * Continuation endpoint for risk outlier access-items. Returns one page based on the supplied limit and offset values and includes an optional continuation link when more rows remain. Requires tenant license idn:response-and-remediation.
79402
+ * @summary Risk outliers continuation paging
79403
+ * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
79404
+ * @param {number} [limit] Maximum number of outlier rows to return for this page.
79405
+ * @param {number} [offset] Zero-based row index for the first returned outlier item.
79406
+ * @param {*} [axiosOptions] Override http request option.
79407
+ * @throws {RequiredError}
79408
+ */
79409
+ getIntelIdentityRiskOutliers(identityID: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityRiskBodyV2026>>;
79246
79410
  /**
79247
79411
  * Requires tenant license idn:response-and-remediation. Returns the Intelligence Package envelope for the identity that matches the SCIM-style filters expression. Supported queryable fields are id and email only. A single match returns HTTP 200 with IntelIdentityResponse. Zero matches returns HTTP 404 with detailCode IDC_IDENTITY_NOT_FOUND. Multiple matches returns HTTP 409 with detailCode IDC_IDENTITY_AMBIGUOUS and candidates listing each match.
79248
79412
  * @summary Resolve one identity by filter
@@ -79273,6 +79437,22 @@ export declare const IntelligencePackageV2026ApiFactory: (configuration?: Config
79273
79437
  * @throws {RequiredError}
79274
79438
  */
79275
79439
  getIntelIdentityAccessHistory(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityAccessHistoryBodyV2026>;
79440
+ /**
79441
+ * Risk snapshot envelope for the identity. The service resolves the first matching outlier for identityID and returns one page of access-items plus an optional continuation link for additional pages. Clients should continue paging using _links.outliers.href when provided. Requires tenant license idn:response-and-remediation.
79442
+ * @summary Identity risk snapshot
79443
+ * @param {IntelligencePackageV2026ApiGetIntelIdentityRiskRequest} requestParameters Request parameters.
79444
+ * @param {*} [axiosOptions] Override http request option.
79445
+ * @throws {RequiredError}
79446
+ */
79447
+ getIntelIdentityRisk(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityRiskBodyV2026>;
79448
+ /**
79449
+ * Continuation endpoint for risk outlier access-items. Returns one page based on the supplied limit and offset values and includes an optional continuation link when more rows remain. Requires tenant license idn:response-and-remediation.
79450
+ * @summary Risk outliers continuation paging
79451
+ * @param {IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest} requestParameters Request parameters.
79452
+ * @param {*} [axiosOptions] Override http request option.
79453
+ * @throws {RequiredError}
79454
+ */
79455
+ getIntelIdentityRiskOutliers(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityRiskBodyV2026>;
79276
79456
  /**
79277
79457
  * Requires tenant license idn:response-and-remediation. Returns the Intelligence Package envelope for the identity that matches the SCIM-style filters expression. Supported queryable fields are id and email only. A single match returns HTTP 200 with IntelIdentityResponse. Zero matches returns HTTP 404 with detailCode IDC_IDENTITY_NOT_FOUND. Multiple matches returns HTTP 409 with detailCode IDC_IDENTITY_AMBIGUOUS and candidates listing each match.
79278
79458
  * @summary Resolve one identity by filter
@@ -79326,6 +79506,44 @@ export interface IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest
79326
79506
  */
79327
79507
  readonly count?: boolean;
79328
79508
  }
79509
+ /**
79510
+ * Request parameters for getIntelIdentityRisk operation in IntelligencePackageV2026Api.
79511
+ * @export
79512
+ * @interface IntelligencePackageV2026ApiGetIntelIdentityRiskRequest
79513
+ */
79514
+ export interface IntelligencePackageV2026ApiGetIntelIdentityRiskRequest {
79515
+ /**
79516
+ * Non-empty identity id path segment for Intelligence Package sub-resources.
79517
+ * @type {string}
79518
+ * @memberof IntelligencePackageV2026ApiGetIntelIdentityRisk
79519
+ */
79520
+ readonly identityID: string;
79521
+ }
79522
+ /**
79523
+ * Request parameters for getIntelIdentityRiskOutliers operation in IntelligencePackageV2026Api.
79524
+ * @export
79525
+ * @interface IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest
79526
+ */
79527
+ export interface IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest {
79528
+ /**
79529
+ * Non-empty identity id path segment for Intelligence Package sub-resources.
79530
+ * @type {string}
79531
+ * @memberof IntelligencePackageV2026ApiGetIntelIdentityRiskOutliers
79532
+ */
79533
+ readonly identityID: string;
79534
+ /**
79535
+ * Maximum number of outlier rows to return for this page.
79536
+ * @type {number}
79537
+ * @memberof IntelligencePackageV2026ApiGetIntelIdentityRiskOutliers
79538
+ */
79539
+ readonly limit?: number;
79540
+ /**
79541
+ * Zero-based row index for the first returned outlier item.
79542
+ * @type {number}
79543
+ * @memberof IntelligencePackageV2026ApiGetIntelIdentityRiskOutliers
79544
+ */
79545
+ readonly offset?: number;
79546
+ }
79329
79547
  /**
79330
79548
  * Request parameters for searchIntelIdentities operation in IntelligencePackageV2026Api.
79331
79549
  * @export
@@ -79364,6 +79582,24 @@ export declare class IntelligencePackageV2026Api extends BaseAPI {
79364
79582
  * @memberof IntelligencePackageV2026Api
79365
79583
  */
79366
79584
  getIntelIdentityAccessHistory(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntelIdentityAccessHistoryBodyV2026, any>>;
79585
+ /**
79586
+ * Risk snapshot envelope for the identity. The service resolves the first matching outlier for identityID and returns one page of access-items plus an optional continuation link for additional pages. Clients should continue paging using _links.outliers.href when provided. Requires tenant license idn:response-and-remediation.
79587
+ * @summary Identity risk snapshot
79588
+ * @param {IntelligencePackageV2026ApiGetIntelIdentityRiskRequest} requestParameters Request parameters.
79589
+ * @param {*} [axiosOptions] Override http request option.
79590
+ * @throws {RequiredError}
79591
+ * @memberof IntelligencePackageV2026Api
79592
+ */
79593
+ getIntelIdentityRisk(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntelIdentityRiskBodyV2026, any>>;
79594
+ /**
79595
+ * Continuation endpoint for risk outlier access-items. Returns one page based on the supplied limit and offset values and includes an optional continuation link when more rows remain. Requires tenant license idn:response-and-remediation.
79596
+ * @summary Risk outliers continuation paging
79597
+ * @param {IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest} requestParameters Request parameters.
79598
+ * @param {*} [axiosOptions] Override http request option.
79599
+ * @throws {RequiredError}
79600
+ * @memberof IntelligencePackageV2026Api
79601
+ */
79602
+ getIntelIdentityRiskOutliers(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntelIdentityRiskBodyV2026, any>>;
79367
79603
  /**
79368
79604
  * Requires tenant license idn:response-and-remediation. Returns the Intelligence Package envelope for the identity that matches the SCIM-style filters expression. Supported queryable fields are id and email only. A single match returns HTTP 200 with IntelIdentityResponse. Zero matches returns HTTP 404 with detailCode IDC_IDENTITY_NOT_FOUND. Multiple matches returns HTTP 409 with detailCode IDC_IDENTITY_AMBIGUOUS and candidates listing each match.
79369
79605
  * @summary Resolve one identity by filter