sailpoint-api-client 1.8.3 → 1.8.5

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.
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.3`;
149
+ let userAgent = `SailPoint-SDK-TypeScript/1.8.5`;
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.3'},
156
+ ...{'X-SailPoint-SDK':'typescript-1.8.5'},
157
157
  ...{'User-Agent': userAgent},
158
158
  }
159
159
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.8.3",
3
+ "version": "1.8.5",
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.3
1
+ ## sailpoint-sdk@1.8.5
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.3 --save
39
+ npm install sailpoint-sdk@1.8.5 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/v2026/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.3`;
149
+ let userAgent = `SailPoint-SDK-TypeScript/1.8.5`;
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.3'},
156
+ ...{'X-SailPoint-SDK':'typescript-1.8.5'},
157
157
  ...{'User-Agent': userAgent},
158
158
  }
159
159
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.8.3",
3
+ "version": "1.8.5",
4
4
  "description": "OpenAPI client for sailpoint-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
package/v3/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-sdk@1.8.3
1
+ ## sailpoint-sdk@1.8.5
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.3 --save
39
+ npm install sailpoint-sdk@1.8.5 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/v3/api.ts CHANGED
@@ -8071,6 +8071,12 @@ export interface Entitlement {
8071
8071
  * @memberof Entitlement
8072
8072
  */
8073
8073
  'owner'?: EntitlementOwner | null;
8074
+ /**
8075
+ * List of additional owner references beyond the primary owner. Each entry may be an identity (IDENTITY) or a governance group (GOVERNANCE_GROUP).
8076
+ * @type {Array<AdditionalOwnerRef>}
8077
+ * @memberof Entitlement
8078
+ */
8079
+ 'additionalOwners'?: Array<AdditionalOwnerRef> | null;
8074
8080
  /**
8075
8081
  * A map of entitlement fields that have been manually updated. The key is the field name in UPPER_SNAKE_CASE format, and the value is true or false to indicate if the field has been updated.
8076
8082
  * @type {{ [key: string]: any; }}
@@ -9785,7 +9791,40 @@ export interface FullDiscoveredApplications {
9785
9791
  * @memberof FullDiscoveredApplications
9786
9792
  */
9787
9793
  'associatedSources'?: Array<string>;
9794
+ /**
9795
+ * The risk score of the application ranging from 0-100, 100 being highest risk.
9796
+ * @type {number}
9797
+ * @memberof FullDiscoveredApplications
9798
+ */
9799
+ 'riskScore'?: number;
9800
+ /**
9801
+ * Indicates whether the application is used for business purposes.
9802
+ * @type {boolean}
9803
+ * @memberof FullDiscoveredApplications
9804
+ */
9805
+ 'isBusiness'?: boolean;
9806
+ /**
9807
+ * The total number of sign-in accounts for the application.
9808
+ * @type {number}
9809
+ * @memberof FullDiscoveredApplications
9810
+ */
9811
+ 'totalSigninsCount'?: number;
9812
+ /**
9813
+ * The risk level of the application.
9814
+ * @type {string}
9815
+ * @memberof FullDiscoveredApplications
9816
+ */
9817
+ 'riskLevel'?: FullDiscoveredApplicationsRiskLevelV3;
9788
9818
  }
9819
+
9820
+ export const FullDiscoveredApplicationsRiskLevelV3 = {
9821
+ High: 'High',
9822
+ Medium: 'Medium',
9823
+ Low: 'Low'
9824
+ } as const;
9825
+
9826
+ export type FullDiscoveredApplicationsRiskLevelV3 = typeof FullDiscoveredApplicationsRiskLevelV3[keyof typeof FullDiscoveredApplicationsRiskLevelV3];
9827
+
9789
9828
  /**
9790
9829
  *
9791
9830
  * @export
@@ -21636,7 +21675,40 @@ export interface SlimDiscoveredApplications {
21636
21675
  * @memberof SlimDiscoveredApplications
21637
21676
  */
21638
21677
  'status'?: string;
21678
+ /**
21679
+ * The risk score of the application ranging from 0-100, 100 being highest risk.
21680
+ * @type {number}
21681
+ * @memberof SlimDiscoveredApplications
21682
+ */
21683
+ 'riskScore'?: number;
21684
+ /**
21685
+ * Indicates whether the application is used for business purposes.
21686
+ * @type {boolean}
21687
+ * @memberof SlimDiscoveredApplications
21688
+ */
21689
+ 'isBusiness'?: boolean;
21690
+ /**
21691
+ * The total number of sign-in accounts for the application.
21692
+ * @type {number}
21693
+ * @memberof SlimDiscoveredApplications
21694
+ */
21695
+ 'totalSigninsCount'?: number;
21696
+ /**
21697
+ * The risk level of the application.
21698
+ * @type {string}
21699
+ * @memberof SlimDiscoveredApplications
21700
+ */
21701
+ 'riskLevel'?: SlimDiscoveredApplicationsRiskLevelV3;
21639
21702
  }
21703
+
21704
+ export const SlimDiscoveredApplicationsRiskLevelV3 = {
21705
+ High: 'High',
21706
+ Medium: 'Medium',
21707
+ Low: 'Low'
21708
+ } as const;
21709
+
21710
+ export type SlimDiscoveredApplicationsRiskLevelV3 = typeof SlimDiscoveredApplicationsRiskLevelV3[keyof typeof SlimDiscoveredApplicationsRiskLevelV3];
21711
+
21640
21712
  /**
21641
21713
  * Details of the Entitlement criteria
21642
21714
  * @export
package/v3/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.3`;
149
+ let userAgent = `SailPoint-SDK-TypeScript/1.8.5`;
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.3'},
156
+ ...{'X-SailPoint-SDK':'typescript-1.8.5'},
157
157
  ...{'User-Agent': userAgent},
158
158
  }
159
159
 
package/v3/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.8.3",
3
+ "version": "1.8.5",
4
4
  "description": "OpenAPI client for sailpoint-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {