sailpoint-api-client 1.8.58 → 1.8.59

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 (46) hide show
  1. package/beta/README.md +2 -2
  2. package/beta/api.ts +36 -0
  3. package/beta/common.ts +2 -2
  4. package/beta/package.json +1 -1
  5. package/dist/beta/api.d.ts +36 -0
  6. package/dist/beta/api.js.map +1 -1
  7. package/dist/beta/common.js +2 -2
  8. package/dist/nerm/common.js +2 -2
  9. package/dist/nermv2025/common.js +2 -2
  10. package/dist/v2024/api.d.ts +36 -0
  11. package/dist/v2024/api.js.map +1 -1
  12. package/dist/v2024/common.js +2 -2
  13. package/dist/v2025/api.d.ts +60 -0
  14. package/dist/v2025/api.js +24 -0
  15. package/dist/v2025/api.js.map +1 -1
  16. package/dist/v2025/common.js +2 -2
  17. package/dist/v2026/api.d.ts +443 -176
  18. package/dist/v2026/api.js +694 -391
  19. package/dist/v2026/api.js.map +1 -1
  20. package/dist/v2026/common.js +2 -2
  21. package/dist/v3/api.d.ts +36 -0
  22. package/dist/v3/api.js.map +1 -1
  23. package/dist/v3/common.js +2 -2
  24. package/nerm/README.md +2 -2
  25. package/nerm/common.ts +2 -2
  26. package/nerm/package.json +1 -1
  27. package/nermv2025/README.md +2 -2
  28. package/nermv2025/common.ts +2 -2
  29. package/nermv2025/package.json +1 -1
  30. package/package.json +1 -1
  31. package/v2024/README.md +2 -2
  32. package/v2024/api.ts +36 -0
  33. package/v2024/common.ts +2 -2
  34. package/v2024/package.json +1 -1
  35. package/v2025/README.md +2 -2
  36. package/v2025/api.ts +60 -0
  37. package/v2025/common.ts +2 -2
  38. package/v2025/package.json +1 -1
  39. package/v2026/README.md +2 -2
  40. package/v2026/api.ts +790 -362
  41. package/v2026/common.ts +2 -2
  42. package/v2026/package.json +1 -1
  43. package/v3/README.md +2 -2
  44. package/v3/api.ts +36 -0
  45. package/v3/common.ts +2 -2
  46. package/v3/package.json +1 -1
package/beta/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-sdk@1.8.58
1
+ ## sailpoint-sdk@1.8.59
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.58 --save
39
+ npm install sailpoint-sdk@1.8.59 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/beta/api.ts CHANGED
@@ -7822,6 +7822,24 @@ export interface CompletedApprovalBeta {
7822
7822
  * @memberof CompletedApprovalBeta
7823
7823
  */
7824
7824
  'currentRemoveDate'?: string | null;
7825
+ /**
7826
+ * The date the role or access profile or entitlement is/will assigned to the specified identity.
7827
+ * @type {string}
7828
+ * @memberof CompletedApprovalBeta
7829
+ */
7830
+ 'startDate'?: string;
7831
+ /**
7832
+ * If true, then the request is to change the start date or sunrise date.
7833
+ * @type {boolean}
7834
+ * @memberof CompletedApprovalBeta
7835
+ */
7836
+ 'startUpdateRequested'?: boolean;
7837
+ /**
7838
+ * The start date or sunrise date that was assigned at the time of the request.
7839
+ * @type {string}
7840
+ * @memberof CompletedApprovalBeta
7841
+ */
7842
+ 'currentStartDate'?: string;
7825
7843
  /**
7826
7844
  *
7827
7845
  * @type {SodViolationContextCheckCompleted2Beta}
@@ -21646,6 +21664,24 @@ export interface PendingApprovalBeta {
21646
21664
  * @memberof PendingApprovalBeta
21647
21665
  */
21648
21666
  'currentRemoveDate'?: string;
21667
+ /**
21668
+ * The date the role or access profile or entitlement is/will assigned to the specified identity.
21669
+ * @type {string}
21670
+ * @memberof PendingApprovalBeta
21671
+ */
21672
+ 'startDate'?: string;
21673
+ /**
21674
+ * If true, then the request is to change the start date or sunrise date.
21675
+ * @type {boolean}
21676
+ * @memberof PendingApprovalBeta
21677
+ */
21678
+ 'startUpdateRequested'?: boolean;
21679
+ /**
21680
+ * The start date or sunrise date that was assigned at the time of the request.
21681
+ * @type {string}
21682
+ * @memberof PendingApprovalBeta
21683
+ */
21684
+ 'currentStartDate'?: string;
21649
21685
  /**
21650
21686
  *
21651
21687
  * @type {SodViolationContextCheckCompleted2Beta}
package/beta/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.58`;
149
+ let userAgent = `SailPoint-SDK-TypeScript/1.8.59`;
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.58'},
156
+ ...{'X-SailPoint-SDK':'typescript-1.8.59'},
157
157
  ...{'User-Agent': userAgent},
158
158
  }
159
159
 
package/beta/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.8.58",
3
+ "version": "1.8.59",
4
4
  "description": "OpenAPI client for sailpoint-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -7507,6 +7507,24 @@ export interface CompletedApprovalBeta {
7507
7507
  * @memberof CompletedApprovalBeta
7508
7508
  */
7509
7509
  'currentRemoveDate'?: string | null;
7510
+ /**
7511
+ * The date the role or access profile or entitlement is/will assigned to the specified identity.
7512
+ * @type {string}
7513
+ * @memberof CompletedApprovalBeta
7514
+ */
7515
+ 'startDate'?: string;
7516
+ /**
7517
+ * If true, then the request is to change the start date or sunrise date.
7518
+ * @type {boolean}
7519
+ * @memberof CompletedApprovalBeta
7520
+ */
7521
+ 'startUpdateRequested'?: boolean;
7522
+ /**
7523
+ * The start date or sunrise date that was assigned at the time of the request.
7524
+ * @type {string}
7525
+ * @memberof CompletedApprovalBeta
7526
+ */
7527
+ 'currentStartDate'?: string;
7510
7528
  /**
7511
7529
  *
7512
7530
  * @type {SodViolationContextCheckCompleted2Beta}
@@ -20926,6 +20944,24 @@ export interface PendingApprovalBeta {
20926
20944
  * @memberof PendingApprovalBeta
20927
20945
  */
20928
20946
  'currentRemoveDate'?: string;
20947
+ /**
20948
+ * The date the role or access profile or entitlement is/will assigned to the specified identity.
20949
+ * @type {string}
20950
+ * @memberof PendingApprovalBeta
20951
+ */
20952
+ 'startDate'?: string;
20953
+ /**
20954
+ * If true, then the request is to change the start date or sunrise date.
20955
+ * @type {boolean}
20956
+ * @memberof PendingApprovalBeta
20957
+ */
20958
+ 'startUpdateRequested'?: boolean;
20959
+ /**
20960
+ * The start date or sunrise date that was assigned at the time of the request.
20961
+ * @type {string}
20962
+ * @memberof PendingApprovalBeta
20963
+ */
20964
+ 'currentStartDate'?: string;
20929
20965
  /**
20930
20966
  *
20931
20967
  * @type {SodViolationContextCheckCompleted2Beta}