sailpoint-api-client 1.8.19 → 1.8.21

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 (52) hide show
  1. package/beta/README.md +2 -2
  2. package/beta/api.ts +11 -9
  3. package/beta/common.ts +2 -2
  4. package/beta/package.json +1 -1
  5. package/dist/beta/api.d.ts +10 -8
  6. package/dist/beta/api.js +11 -9
  7. package/dist/beta/api.js.map +1 -1
  8. package/dist/beta/common.js +2 -2
  9. package/dist/nerm/api.d.ts +30 -0
  10. package/dist/nerm/api.js.map +1 -1
  11. package/dist/nerm/common.js +2 -2
  12. package/dist/nermv2025/common.js +2 -2
  13. package/dist/v2024/api.d.ts +20 -16
  14. package/dist/v2024/api.js +17 -13
  15. package/dist/v2024/api.js.map +1 -1
  16. package/dist/v2024/common.js +2 -2
  17. package/dist/v2025/api.d.ts +20 -16
  18. package/dist/v2025/api.js +17 -13
  19. package/dist/v2025/api.js.map +1 -1
  20. package/dist/v2025/common.js +2 -2
  21. package/dist/v2026/api.d.ts +238 -16
  22. package/dist/v2026/api.js +358 -32
  23. package/dist/v2026/api.js.map +1 -1
  24. package/dist/v2026/common.js +2 -2
  25. package/dist/v3/api.d.ts +12 -8
  26. package/dist/v3/api.js +9 -5
  27. package/dist/v3/api.js.map +1 -1
  28. package/dist/v3/common.js +2 -2
  29. package/nerm/README.md +2 -2
  30. package/nerm/api.ts +30 -0
  31. package/nerm/common.ts +2 -2
  32. package/nerm/package.json +1 -1
  33. package/nermv2025/README.md +2 -2
  34. package/nermv2025/common.ts +2 -2
  35. package/nermv2025/package.json +1 -1
  36. package/package.json +1 -1
  37. package/v2024/README.md +2 -2
  38. package/v2024/api.ts +23 -19
  39. package/v2024/common.ts +2 -2
  40. package/v2024/package.json +1 -1
  41. package/v2025/README.md +2 -2
  42. package/v2025/api.ts +23 -19
  43. package/v2025/common.ts +2 -2
  44. package/v2025/package.json +1 -1
  45. package/v2026/README.md +2 -2
  46. package/v2026/api.ts +392 -19
  47. package/v2026/common.ts +2 -2
  48. package/v2026/package.json +1 -1
  49. package/v3/README.md +2 -2
  50. package/v3/api.ts +15 -11
  51. package/v3/common.ts +2 -2
  52. 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.19";
253
+ var userAgent = "SailPoint-SDK-TypeScript/1.8.21";
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.19' }), { 'User-Agent': userAgent });
258
+ var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.21' }), { '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
  }
@@ -1315,6 +1315,12 @@ export interface AutomatedWorkflowNERM {
1315
1315
  * @memberof AutomatedWorkflowNERM
1316
1316
  */
1317
1317
  'name': string;
1318
+ /**
1319
+ * When honored at runtime, suppresses failure email notifications for this workflow\'s sessions.
1320
+ * @type {boolean}
1321
+ * @memberof AutomatedWorkflowNERM
1322
+ */
1323
+ 'disable_failure_email_notifications'?: boolean | null;
1318
1324
  /**
1319
1325
  * The ProfileTypeRule this workflow will be working with.
1320
1326
  * @type {Array<AutomatedWorkflowConditionRulesAttributesInnerNERM>}
@@ -1388,6 +1394,12 @@ export interface BatchWorkflowNERM {
1388
1394
  * @memberof BatchWorkflowNERM
1389
1395
  */
1390
1396
  'options'?: BatchWorkflowOptionsNERM;
1397
+ /**
1398
+ * When honored at runtime, suppresses failure email notifications for this workflow\'s sessions.
1399
+ * @type {boolean}
1400
+ * @memberof BatchWorkflowNERM
1401
+ */
1402
+ 'disable_failure_email_notifications'?: boolean | null;
1391
1403
  }
1392
1404
  export declare const BatchWorkflowNERMStatusNerm: {
1393
1405
  readonly Enabled: "Enabled";
@@ -2287,6 +2299,12 @@ export interface CreateWorkflowNERM {
2287
2299
  * @memberof CreateWorkflowNERM
2288
2300
  */
2289
2301
  'name': string;
2302
+ /**
2303
+ * When honored at runtime, suppresses failure email notifications for this workflow\'s sessions.
2304
+ * @type {boolean}
2305
+ * @memberof CreateWorkflowNERM
2306
+ */
2307
+ 'disable_failure_email_notifications'?: boolean | null;
2290
2308
  }
2291
2309
  export declare const CreateWorkflowNERMStatusNerm: {
2292
2310
  readonly Enabled: "Enabled";
@@ -3822,6 +3840,12 @@ export interface LoginWorkflowNERM {
3822
3840
  * @memberof LoginWorkflowNERM
3823
3841
  */
3824
3842
  'options'?: LoginWorkflowOptionsNERM;
3843
+ /**
3844
+ * When honored at runtime, suppresses failure email notifications for this workflow\'s sessions.
3845
+ * @type {boolean}
3846
+ * @memberof LoginWorkflowNERM
3847
+ */
3848
+ 'disable_failure_email_notifications'?: boolean | null;
3825
3849
  }
3826
3850
  export declare const LoginWorkflowNERMStatusNerm: {
3827
3851
  readonly Enabled: "Enabled";
@@ -7095,6 +7119,12 @@ export interface UpdateWorkflowNERM {
7095
7119
  * @memberof UpdateWorkflowNERM
7096
7120
  */
7097
7121
  'profile_status': string;
7122
+ /**
7123
+ * When honored at runtime, suppresses failure email notifications for this workflow\'s sessions.
7124
+ * @type {boolean}
7125
+ * @memberof UpdateWorkflowNERM
7126
+ */
7127
+ 'disable_failure_email_notifications'?: boolean | null;
7098
7128
  }
7099
7129
  export declare const UpdateWorkflowNERMStatusNerm: {
7100
7130
  readonly Enabled: "Enabled";