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
package/dist/v3/common.js CHANGED
@@ -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
  }
package/nerm/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-nerm-sdk@1.8.54
1
+ ## sailpoint-nerm-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-nerm-sdk@1.8.54 --save
39
+ npm install sailpoint-nerm-sdk@1.8.55 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/nerm/common.ts CHANGED
@@ -146,7 +146,7 @@ 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.54`;
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
  }
@@ -154,7 +154,7 @@ export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxi
154
154
  const headers = {
155
155
  ...{'Accept': 'application/json'},
156
156
  ...axiosArgs.axiosOptions.headers,
157
- ...{'X-SailPoint-SDK':'typescript-1.8.54'},
157
+ ...{'X-SailPoint-SDK':'typescript-1.8.55'},
158
158
  ...{'User-Agent': userAgent},
159
159
  }
160
160
 
package/nerm/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-nerm-sdk",
3
- "version": "1.8.54",
3
+ "version": "1.8.55",
4
4
  "description": "OpenAPI client for sailpoint-nerm-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -1,4 +1,4 @@
1
- ## sailpoint-nerm-sdk@1.8.54
1
+ ## sailpoint-nerm-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-nerm-sdk@1.8.54 --save
39
+ npm install sailpoint-nerm-sdk@1.8.55 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -146,7 +146,7 @@ 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.54`;
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
  }
@@ -154,7 +154,7 @@ export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxi
154
154
  const headers = {
155
155
  ...{'Accept': 'application/json'},
156
156
  ...axiosArgs.axiosOptions.headers,
157
- ...{'X-SailPoint-SDK':'typescript-1.8.54'},
157
+ ...{'X-SailPoint-SDK':'typescript-1.8.55'},
158
158
  ...{'User-Agent': userAgent},
159
159
  }
160
160
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-nerm-sdk",
3
- "version": "1.8.54",
3
+ "version": "1.8.55",
4
4
  "description": "OpenAPI client for sailpoint-nerm-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-api-client",
3
- "version": "1.8.54",
3
+ "version": "1.8.55",
4
4
  "description": "Official library for using the SailPoint API",
5
5
  "author": "SailPoint DevOps",
6
6
  "repository": {
package/v2024/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-sdk@1.8.54
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.54 --save
39
+ npm install sailpoint-sdk@1.8.55 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/v2024/api.ts CHANGED
@@ -1105,13 +1105,13 @@ export interface AccessModelMetadataValuesInnerV2024 {
1105
1105
  */
1106
1106
  export interface AccessProfileApprovalSchemeV2024 {
1107
1107
  /**
1108
- * 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.
1108
+ * 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
1109
1109
  * @type {string}
1110
1110
  * @memberof AccessProfileApprovalSchemeV2024
1111
1111
  */
1112
1112
  'approverType'?: AccessProfileApprovalSchemeV2024ApproverTypeV2024;
1113
1113
  /**
1114
- * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
1114
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP, WORKFLOW, or ADDITIONAL_GOVERNANCE_GROUP.
1115
1115
  * @type {string}
1116
1116
  * @memberof AccessProfileApprovalSchemeV2024
1117
1117
  */
@@ -1124,7 +1124,10 @@ export const AccessProfileApprovalSchemeV2024ApproverTypeV2024 = {
1124
1124
  SourceOwner: 'SOURCE_OWNER',
1125
1125
  Manager: 'MANAGER',
1126
1126
  GovernanceGroup: 'GOVERNANCE_GROUP',
1127
- Workflow: 'WORKFLOW'
1127
+ Workflow: 'WORKFLOW',
1128
+ AllOwners: 'ALL_OWNERS',
1129
+ AdditionalOwner: 'ADDITIONAL_OWNER',
1130
+ AdditionalGovernanceGroup: 'ADDITIONAL_GOVERNANCE_GROUP'
1128
1131
  } as const;
1129
1132
 
1130
1133
  export type AccessProfileApprovalSchemeV2024ApproverTypeV2024 = typeof AccessProfileApprovalSchemeV2024ApproverTypeV2024[keyof typeof AccessProfileApprovalSchemeV2024ApproverTypeV2024];
@@ -6410,13 +6413,13 @@ export interface ApprovalReminderAndEscalationConfigV2024 {
6410
6413
  */
6411
6414
  export interface ApprovalSchemeForRoleV2024 {
6412
6415
  /**
6413
- * 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.
6416
+ * 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
6414
6417
  * @type {string}
6415
6418
  * @memberof ApprovalSchemeForRoleV2024
6416
6419
  */
6417
6420
  'approverType'?: ApprovalSchemeForRoleV2024ApproverTypeV2024;
6418
6421
  /**
6419
- * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
6422
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP, WORKFLOW, or ADDITIONAL_GOVERNANCE_GROUP.
6420
6423
  * @type {string}
6421
6424
  * @memberof ApprovalSchemeForRoleV2024
6422
6425
  */
@@ -6427,7 +6430,10 @@ export const ApprovalSchemeForRoleV2024ApproverTypeV2024 = {
6427
6430
  Owner: 'OWNER',
6428
6431
  Manager: 'MANAGER',
6429
6432
  GovernanceGroup: 'GOVERNANCE_GROUP',
6430
- Workflow: 'WORKFLOW'
6433
+ Workflow: 'WORKFLOW',
6434
+ AllOwners: 'ALL_OWNERS',
6435
+ AdditionalOwner: 'ADDITIONAL_OWNER',
6436
+ AdditionalGovernanceGroup: 'ADDITIONAL_GOVERNANCE_GROUP'
6431
6437
  } as const;
6432
6438
 
6433
6439
  export type ApprovalSchemeForRoleV2024ApproverTypeV2024 = typeof ApprovalSchemeForRoleV2024ApproverTypeV2024[keyof typeof ApprovalSchemeForRoleV2024ApproverTypeV2024];
@@ -18634,6 +18640,12 @@ export interface GetRoleAssignments200ResponseInnerV2024 {
18634
18640
  * @memberof GetRoleAssignments200ResponseInnerV2024
18635
18641
  */
18636
18642
  'addedDate'?: string;
18643
+ /**
18644
+ * Date when assignment will be active, if access was requested with a future start date. If null, assignment is active immediately
18645
+ * @type {string}
18646
+ * @memberof GetRoleAssignments200ResponseInnerV2024
18647
+ */
18648
+ 'startDate'?: string | null;
18637
18649
  /**
18638
18650
  * Date that the assignment will be removed
18639
18651
  * @type {string}
@@ -31143,7 +31155,7 @@ export interface RequestabilityForRoleV2024 {
31143
31155
  * @type {boolean}
31144
31156
  * @memberof RequestabilityForRoleV2024
31145
31157
  */
31146
- 'requireEndDate'?: boolean | null;
31158
+ 'requireEndDate'?: boolean;
31147
31159
  /**
31148
31160
  *
31149
31161
  * @type {AccessDurationV2024}
@@ -31156,6 +31168,12 @@ export interface RequestabilityForRoleV2024 {
31156
31168
  * @memberof RequestabilityForRoleV2024
31157
31169
  */
31158
31170
  'approvalSchemes'?: Array<ApprovalSchemeForRoleV2024>;
31171
+ /**
31172
+ * 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.
31173
+ * @type {string}
31174
+ * @memberof RequestabilityForRoleV2024
31175
+ */
31176
+ 'formDefinitionId'?: string | null;
31159
31177
  }
31160
31178
  /**
31161
31179
  *
@@ -32732,6 +32750,12 @@ export interface RoleAssignmentDtoV2024 {
32732
32750
  * @memberof RoleAssignmentDtoV2024
32733
32751
  */
32734
32752
  'accountTargets'?: Array<RoleTargetDtoV2024>;
32753
+ /**
32754
+ * Date when assignment will be active, if access was requested with a future start date. If null, assignment is active immediately
32755
+ * @type {string}
32756
+ * @memberof RoleAssignmentDtoV2024
32757
+ */
32758
+ 'startDate'?: string | null;
32735
32759
  /**
32736
32760
  * Date that the assignment will be removed
32737
32761
  * @type {string}
@@ -32769,6 +32793,12 @@ export interface RoleAssignmentRefV2024 {
32769
32793
  * @memberof RoleAssignmentRefV2024
32770
32794
  */
32771
32795
  'addedDate'?: string;
32796
+ /**
32797
+ * Date when assignment will be active, if requested with a future date. If null, assignment is active immediately
32798
+ * @type {string}
32799
+ * @memberof RoleAssignmentRefV2024
32800
+ */
32801
+ 'startDate'?: string | null;
32772
32802
  /**
32773
32803
  * Date that the assignment will be removed
32774
32804
  * @type {string}
@@ -32908,7 +32938,7 @@ export interface RoleCriteriaLevel1V2024 {
32908
32938
  */
32909
32939
  'key'?: RoleCriteriaKeyV2024 | null;
32910
32940
  /**
32911
- * 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.
32941
+ * 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.
32912
32942
  * @type {string}
32913
32943
  * @memberof RoleCriteriaLevel1V2024
32914
32944
  */
@@ -32941,7 +32971,7 @@ export interface RoleCriteriaLevel2V2024 {
32941
32971
  */
32942
32972
  'key'?: RoleCriteriaKeyV2024 | null;
32943
32973
  /**
32944
- * 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.
32974
+ * 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.
32945
32975
  * @type {string}
32946
32976
  * @memberof RoleCriteriaLevel2V2024
32947
32977
  */
@@ -32974,11 +33004,11 @@ export interface RoleCriteriaLevel3V2024 {
32974
33004
  */
32975
33005
  'key'?: RoleCriteriaKeyV2024 | null;
32976
33006
  /**
32977
- * 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.
33007
+ * 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.
32978
33008
  * @type {string}
32979
33009
  * @memberof RoleCriteriaLevel3V2024
32980
33010
  */
32981
- 'stringValue'?: string;
33011
+ 'stringValue'?: string | null;
32982
33012
  }
32983
33013
 
32984
33014
 
@@ -32992,8 +33022,13 @@ export const RoleCriteriaOperationV2024 = {
32992
33022
  Equals: 'EQUALS',
32993
33023
  NotEquals: 'NOT_EQUALS',
32994
33024
  Contains: 'CONTAINS',
33025
+ DoesNotContain: 'DOES_NOT_CONTAIN',
32995
33026
  StartsWith: 'STARTS_WITH',
32996
33027
  EndsWith: 'ENDS_WITH',
33028
+ GreaterThan: 'GREATER_THAN',
33029
+ LessThan: 'LESS_THAN',
33030
+ GreaterThanEquals: 'GREATER_THAN_EQUALS',
33031
+ LessThanEquals: 'LESS_THAN_EQUALS',
32997
33032
  And: 'AND',
32998
33033
  Or: 'OR'
32999
33034
  } as const;
@@ -35504,6 +35539,12 @@ export interface RoleV2024 {
35504
35539
  * @memberof RoleV2024
35505
35540
  */
35506
35541
  'accessModelMetadata'?: AttributeDTOListV2024;
35542
+ /**
35543
+ * The privilege level of the role, if applicable.
35544
+ * @type {string}
35545
+ * @memberof RoleV2024
35546
+ */
35547
+ 'privilegeLevel'?: string | null;
35507
35548
  }
35508
35549
  /**
35509
35550
  * @type RuleV2024
package/v2024/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.54`;
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.54'},
156
+ ...{'X-SailPoint-SDK':'typescript-1.8.55'},
157
157
  ...{'User-Agent': userAgent},
158
158
  }
159
159
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.8.54",
3
+ "version": "1.8.55",
4
4
  "description": "OpenAPI client for sailpoint-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
package/v2025/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-sdk@1.8.54
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.54 --save
39
+ npm install sailpoint-sdk@1.8.55 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/v2025/api.ts CHANGED
@@ -1165,13 +1165,13 @@ export interface AccessModelMetadataValuesInnerV2025 {
1165
1165
  */
1166
1166
  export interface AccessProfileApprovalSchemeV2025 {
1167
1167
  /**
1168
- * 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.
1168
+ * 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
1169
1169
  * @type {string}
1170
1170
  * @memberof AccessProfileApprovalSchemeV2025
1171
1171
  */
1172
1172
  'approverType'?: AccessProfileApprovalSchemeV2025ApproverTypeV2025;
1173
1173
  /**
1174
- * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
1174
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP, WORKFLOW, or ADDITIONAL_GOVERNANCE_GROUP.
1175
1175
  * @type {string}
1176
1176
  * @memberof AccessProfileApprovalSchemeV2025
1177
1177
  */
@@ -1184,7 +1184,10 @@ export const AccessProfileApprovalSchemeV2025ApproverTypeV2025 = {
1184
1184
  SourceOwner: 'SOURCE_OWNER',
1185
1185
  Manager: 'MANAGER',
1186
1186
  GovernanceGroup: 'GOVERNANCE_GROUP',
1187
- Workflow: 'WORKFLOW'
1187
+ Workflow: 'WORKFLOW',
1188
+ AllOwners: 'ALL_OWNERS',
1189
+ AdditionalOwner: 'ADDITIONAL_OWNER',
1190
+ AdditionalGovernanceGroup: 'ADDITIONAL_GOVERNANCE_GROUP'
1188
1191
  } as const;
1189
1192
 
1190
1193
  export type AccessProfileApprovalSchemeV2025ApproverTypeV2025 = typeof AccessProfileApprovalSchemeV2025ApproverTypeV2025[keyof typeof AccessProfileApprovalSchemeV2025ApproverTypeV2025];
@@ -8334,13 +8337,13 @@ export interface ApprovalRequestedTargetV2025 {
8334
8337
  */
8335
8338
  export interface ApprovalSchemeForRoleV2025 {
8336
8339
  /**
8337
- * 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.
8340
+ * 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
8338
8341
  * @type {string}
8339
8342
  * @memberof ApprovalSchemeForRoleV2025
8340
8343
  */
8341
8344
  'approverType'?: ApprovalSchemeForRoleV2025ApproverTypeV2025;
8342
8345
  /**
8343
- * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
8346
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP, WORKFLOW, or ADDITIONAL_GOVERNANCE_GROUP.
8344
8347
  * @type {string}
8345
8348
  * @memberof ApprovalSchemeForRoleV2025
8346
8349
  */
@@ -8351,7 +8354,10 @@ export const ApprovalSchemeForRoleV2025ApproverTypeV2025 = {
8351
8354
  Owner: 'OWNER',
8352
8355
  Manager: 'MANAGER',
8353
8356
  GovernanceGroup: 'GOVERNANCE_GROUP',
8354
- Workflow: 'WORKFLOW'
8357
+ Workflow: 'WORKFLOW',
8358
+ AllOwners: 'ALL_OWNERS',
8359
+ AdditionalOwner: 'ADDITIONAL_OWNER',
8360
+ AdditionalGovernanceGroup: 'ADDITIONAL_GOVERNANCE_GROUP'
8355
8361
  } as const;
8356
8362
 
8357
8363
  export type ApprovalSchemeForRoleV2025ApproverTypeV2025 = typeof ApprovalSchemeForRoleV2025ApproverTypeV2025[keyof typeof ApprovalSchemeForRoleV2025ApproverTypeV2025];
@@ -21866,6 +21872,12 @@ export interface GetRoleAssignments200ResponseInnerV2025 {
21866
21872
  * @memberof GetRoleAssignments200ResponseInnerV2025
21867
21873
  */
21868
21874
  'addedDate'?: string;
21875
+ /**
21876
+ * Date when assignment will be active, if access was requested with a future start date. If null, assignment is active immediately
21877
+ * @type {string}
21878
+ * @memberof GetRoleAssignments200ResponseInnerV2025
21879
+ */
21880
+ 'startDate'?: string | null;
21869
21881
  /**
21870
21882
  * Date that the assignment will be removed
21871
21883
  * @type {string}
@@ -36690,6 +36702,12 @@ export interface RequestabilityForRoleV2025 {
36690
36702
  * @memberof RequestabilityForRoleV2025
36691
36703
  */
36692
36704
  'dimensionSchema'?: DimensionSchemaV2025;
36705
+ /**
36706
+ * 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.
36707
+ * @type {string}
36708
+ * @memberof RequestabilityForRoleV2025
36709
+ */
36710
+ 'formDefinitionId'?: string | null;
36693
36711
  }
36694
36712
  /**
36695
36713
  *
@@ -38384,6 +38402,12 @@ export interface RoleAssignmentDtoV2025 {
38384
38402
  * @memberof RoleAssignmentDtoV2025
38385
38403
  */
38386
38404
  'accountTargets'?: Array<RoleTargetDtoV2025>;
38405
+ /**
38406
+ * Date when assignment will be active, if access was requested with a future start date. If null, assignment is active immediately
38407
+ * @type {string}
38408
+ * @memberof RoleAssignmentDtoV2025
38409
+ */
38410
+ 'startDate'?: string | null;
38387
38411
  /**
38388
38412
  * Date that the assignment will be removed
38389
38413
  * @type {string}
@@ -38421,6 +38445,12 @@ export interface RoleAssignmentRefV2025 {
38421
38445
  * @memberof RoleAssignmentRefV2025
38422
38446
  */
38423
38447
  'addedDate'?: string;
38448
+ /**
38449
+ * Date when assignment will be active, if requested with a future date. If null, assignment is active immediately
38450
+ * @type {string}
38451
+ * @memberof RoleAssignmentRefV2025
38452
+ */
38453
+ 'startDate'?: string | null;
38424
38454
  /**
38425
38455
  * Date that the assignment will be removed
38426
38456
  * @type {string}
@@ -38560,7 +38590,7 @@ export interface RoleCriteriaLevel1V2025 {
38560
38590
  */
38561
38591
  'key'?: RoleCriteriaKeyV2025 | null;
38562
38592
  /**
38563
- * 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.
38593
+ * 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.
38564
38594
  * @type {string}
38565
38595
  * @memberof RoleCriteriaLevel1V2025
38566
38596
  */
@@ -38593,7 +38623,7 @@ export interface RoleCriteriaLevel2V2025 {
38593
38623
  */
38594
38624
  'key'?: RoleCriteriaKeyV2025 | null;
38595
38625
  /**
38596
- * 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.
38626
+ * 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.
38597
38627
  * @type {string}
38598
38628
  * @memberof RoleCriteriaLevel2V2025
38599
38629
  */
@@ -38626,11 +38656,11 @@ export interface RoleCriteriaLevel3V2025 {
38626
38656
  */
38627
38657
  'key'?: RoleCriteriaKeyV2025 | null;
38628
38658
  /**
38629
- * 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.
38659
+ * 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.
38630
38660
  * @type {string}
38631
38661
  * @memberof RoleCriteriaLevel3V2025
38632
38662
  */
38633
- 'stringValue'?: string;
38663
+ 'stringValue'?: string | null;
38634
38664
  }
38635
38665
 
38636
38666
 
@@ -38644,8 +38674,13 @@ export const RoleCriteriaOperationV2025 = {
38644
38674
  Equals: 'EQUALS',
38645
38675
  NotEquals: 'NOT_EQUALS',
38646
38676
  Contains: 'CONTAINS',
38677
+ DoesNotContain: 'DOES_NOT_CONTAIN',
38647
38678
  StartsWith: 'STARTS_WITH',
38648
38679
  EndsWith: 'ENDS_WITH',
38680
+ GreaterThan: 'GREATER_THAN',
38681
+ LessThan: 'LESS_THAN',
38682
+ GreaterThanEquals: 'GREATER_THAN_EQUALS',
38683
+ LessThanEquals: 'LESS_THAN_EQUALS',
38649
38684
  And: 'AND',
38650
38685
  Or: 'OR'
38651
38686
  } as const;
@@ -41454,6 +41489,12 @@ export interface RoleV2025 {
41454
41489
  * @memberof RoleV2025
41455
41490
  */
41456
41491
  'accessModelMetadata'?: AttributeDTOListV2025;
41492
+ /**
41493
+ * The privilege level of the role, if applicable.
41494
+ * @type {string}
41495
+ * @memberof RoleV2025
41496
+ */
41497
+ 'privilegeLevel'?: string | null;
41457
41498
  }
41458
41499
  /**
41459
41500
  * @type RuleV2025
package/v2025/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.54`;
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.54'},
156
+ ...{'X-SailPoint-SDK':'typescript-1.8.55'},
157
157
  ...{'User-Agent': userAgent},
158
158
  }
159
159
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.8.54",
3
+ "version": "1.8.55",
4
4
  "description": "OpenAPI client for sailpoint-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
package/v2026/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-sdk@1.8.54
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.54 --save
39
+ npm install sailpoint-sdk@1.8.55 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_