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
package/v2026/api.ts CHANGED
@@ -10238,6 +10238,107 @@ export interface AuthorizationSchemeV2026 {
10238
10238
  */
10239
10239
  'spec_urn'?: string;
10240
10240
  }
10241
+ /**
10242
+ * Patch operation for Auto-Write Setting
10243
+ * @export
10244
+ * @interface AutoWriteSettingPatchV2026
10245
+ */
10246
+ export interface AutoWriteSettingPatchV2026 {
10247
+ /**
10248
+ * The operation to perform. Only \"replace\" is supported.
10249
+ * @type {string}
10250
+ * @memberof AutoWriteSettingPatchV2026
10251
+ */
10252
+ 'op': AutoWriteSettingPatchV2026OpV2026;
10253
+ /**
10254
+ * The field to update. Allowed values: /enabled, /includedSourceIds, /excludedSourceIds
10255
+ * @type {string}
10256
+ * @memberof AutoWriteSettingPatchV2026
10257
+ */
10258
+ 'path': string;
10259
+ /**
10260
+ *
10261
+ * @type {AutoWriteSettingPatchValueV2026}
10262
+ * @memberof AutoWriteSettingPatchV2026
10263
+ */
10264
+ 'value': AutoWriteSettingPatchValueV2026;
10265
+ }
10266
+
10267
+ export const AutoWriteSettingPatchV2026OpV2026 = {
10268
+ Replace: 'replace'
10269
+ } as const;
10270
+
10271
+ export type AutoWriteSettingPatchV2026OpV2026 = typeof AutoWriteSettingPatchV2026OpV2026[keyof typeof AutoWriteSettingPatchV2026OpV2026];
10272
+
10273
+ /**
10274
+ * @type AutoWriteSettingPatchValueV2026
10275
+ * The new value for the field
10276
+ * @export
10277
+ */
10278
+ export type AutoWriteSettingPatchValueV2026 = Array<string> | boolean;
10279
+
10280
+ /**
10281
+ * Auto-Write Setting response with timestamps
10282
+ * @export
10283
+ * @interface AutoWriteSettingResponseV2026
10284
+ */
10285
+ export interface AutoWriteSettingResponseV2026 {
10286
+ /**
10287
+ * Whether auto-write is currently enabled for the tenant
10288
+ * @type {boolean}
10289
+ * @memberof AutoWriteSettingResponseV2026
10290
+ */
10291
+ 'enabled'?: boolean;
10292
+ /**
10293
+ * Source IDs in the allowlist. Empty array means not in allowlist mode.
10294
+ * @type {Array<string>}
10295
+ * @memberof AutoWriteSettingResponseV2026
10296
+ */
10297
+ 'includedSourceIds'?: Array<string> | null;
10298
+ /**
10299
+ * Source IDs to exclude from auto-write. Always applied.
10300
+ * @type {Array<string>}
10301
+ * @memberof AutoWriteSettingResponseV2026
10302
+ */
10303
+ 'excludedSourceIds'?: Array<string> | null;
10304
+ /**
10305
+ * When settings were first created
10306
+ * @type {string}
10307
+ * @memberof AutoWriteSettingResponseV2026
10308
+ */
10309
+ 'createdAt'?: string;
10310
+ /**
10311
+ * When settings were last modified
10312
+ * @type {string}
10313
+ * @memberof AutoWriteSettingResponseV2026
10314
+ */
10315
+ 'updatedAt'?: string;
10316
+ }
10317
+ /**
10318
+ * Auto-Write Setting for SED
10319
+ * @export
10320
+ * @interface AutoWriteSettingV2026
10321
+ */
10322
+ export interface AutoWriteSettingV2026 {
10323
+ /**
10324
+ * Whether auto-write is currently enabled for the tenant
10325
+ * @type {boolean}
10326
+ * @memberof AutoWriteSettingV2026
10327
+ */
10328
+ 'enabled'?: boolean;
10329
+ /**
10330
+ * Source IDs in the allowlist. Empty array means not in allowlist mode.
10331
+ * @type {Array<string>}
10332
+ * @memberof AutoWriteSettingV2026
10333
+ */
10334
+ 'includedSourceIds'?: Array<string> | null;
10335
+ /**
10336
+ * Source IDs to exclude from auto-write. Always applied.
10337
+ * @type {Array<string>}
10338
+ * @memberof AutoWriteSettingV2026
10339
+ */
10340
+ 'excludedSourceIds'?: Array<string> | null;
10341
+ }
10241
10342
  /**
10242
10343
  * Backup options control what will be included in the backup.
10243
10344
  * @export
@@ -12515,7 +12616,9 @@ export type CampaignReferenceV2026TypeV2026 = typeof CampaignReferenceV2026TypeV
12515
12616
  export const CampaignReferenceV2026CampaignTypeV2026 = {
12516
12617
  Manager: 'MANAGER',
12517
12618
  SourceOwner: 'SOURCE_OWNER',
12518
- Search: 'SEARCH'
12619
+ Search: 'SEARCH',
12620
+ RoleComposition: 'ROLE_COMPOSITION',
12621
+ MachineAccount: 'MACHINE_ACCOUNT'
12519
12622
  } as const;
12520
12623
 
12521
12624
  export type CampaignReferenceV2026CampaignTypeV2026 = typeof CampaignReferenceV2026CampaignTypeV2026[keyof typeof CampaignReferenceV2026CampaignTypeV2026];
@@ -39238,11 +39341,11 @@ export interface ReviewerV2026 {
39238
39341
  */
39239
39342
  'name'?: string;
39240
39343
  /**
39241
- * The email of the reviewing identity.
39344
+ * The email of the reviewing identity. This is only applicable to reviewers of the `IDENTITY` type.
39242
39345
  * @type {string}
39243
39346
  * @memberof ReviewerV2026
39244
39347
  */
39245
- 'email'?: string;
39348
+ 'email'?: string | null;
39246
39349
  /**
39247
39350
  * The type of the reviewing identity.
39248
39351
  * @type {string}
@@ -39264,7 +39367,8 @@ export interface ReviewerV2026 {
39264
39367
  }
39265
39368
 
39266
39369
  export const ReviewerV2026TypeV2026 = {
39267
- Identity: 'IDENTITY'
39370
+ Identity: 'IDENTITY',
39371
+ GovernanceGroup: 'GOVERNANCE_GROUP'
39268
39372
  } as const;
39269
39373
 
39270
39374
  export type ReviewerV2026TypeV2026 = typeof ReviewerV2026TypeV2026[keyof typeof ReviewerV2026TypeV2026];
@@ -53748,19 +53852,19 @@ export interface WorkflowLibraryTriggerV2026 {
53748
53852
  */
53749
53853
  'type'?: WorkflowLibraryTriggerV2026TypeV2026;
53750
53854
  /**
53751
- *
53855
+ * Whether the trigger is deprecated.
53752
53856
  * @type {boolean}
53753
53857
  * @memberof WorkflowLibraryTriggerV2026
53754
53858
  */
53755
53859
  'deprecated'?: boolean;
53756
53860
  /**
53757
- *
53861
+ * Date the trigger was deprecated, if applicable.
53758
53862
  * @type {string}
53759
53863
  * @memberof WorkflowLibraryTriggerV2026
53760
53864
  */
53761
53865
  'deprecatedBy'?: string;
53762
53866
  /**
53763
- *
53867
+ * Whether the trigger can be simulated.
53764
53868
  * @type {boolean}
53765
53869
  * @memberof WorkflowLibraryTriggerV2026
53766
53870
  */
@@ -53806,7 +53910,8 @@ export interface WorkflowLibraryTriggerV2026 {
53806
53910
  export const WorkflowLibraryTriggerV2026TypeV2026 = {
53807
53911
  Event: 'EVENT',
53808
53912
  Scheduled: 'SCHEDULED',
53809
- External: 'EXTERNAL'
53913
+ External: 'EXTERNAL',
53914
+ AccessRequestTrigger: 'AccessRequestTrigger'
53810
53915
  } as const;
53811
53916
 
53812
53917
  export type WorkflowLibraryTriggerV2026TypeV2026 = typeof WorkflowLibraryTriggerV2026TypeV2026[keyof typeof WorkflowLibraryTriggerV2026TypeV2026];
@@ -77422,7 +77527,7 @@ export const CustomFormsV2026ApiAxiosParamCreator = function (configuration?: Co
77422
77527
  };
77423
77528
  },
77424
77529
  /**
77425
- * Parameter `{formInstanceID}` should match a form instance ID.
77530
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
77426
77531
  * @summary Returns a form instance.
77427
77532
  * @param {string} formInstanceID Form instance ID
77428
77533
  * @param {*} [axiosOptions] Override http request option.
@@ -77598,7 +77703,7 @@ export const CustomFormsV2026ApiAxiosParamCreator = function (configuration?: Co
77598
77703
  };
77599
77704
  },
77600
77705
  /**
77601
- * Parameter `{formInstanceID}` should match a form instance ID.
77706
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
77602
77707
  * @summary Patch a form instance.
77603
77708
  * @param {string} formInstanceID Form instance ID
77604
77709
  * @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
@@ -78034,7 +78139,7 @@ export const CustomFormsV2026ApiFp = function(configuration?: Configuration) {
78034
78139
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
78035
78140
  },
78036
78141
  /**
78037
- * Parameter `{formInstanceID}` should match a form instance ID.
78142
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
78038
78143
  * @summary Returns a form instance.
78039
78144
  * @param {string} formInstanceID Form instance ID
78040
78145
  * @param {*} [axiosOptions] Override http request option.
@@ -78088,7 +78193,7 @@ export const CustomFormsV2026ApiFp = function(configuration?: Configuration) {
78088
78193
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
78089
78194
  },
78090
78195
  /**
78091
- * Parameter `{formInstanceID}` should match a form instance ID.
78196
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
78092
78197
  * @summary Patch a form instance.
78093
78198
  * @param {string} formInstanceID Form instance ID
78094
78199
  * @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
@@ -78269,7 +78374,7 @@ export const CustomFormsV2026ApiFactory = function (configuration?: Configuratio
78269
78374
  return localVarFp.getFormDefinitionByKey(requestParameters.formDefinitionID, axiosOptions).then((request) => request(axios, basePath));
78270
78375
  },
78271
78376
  /**
78272
- * Parameter `{formInstanceID}` should match a form instance ID.
78377
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
78273
78378
  * @summary Returns a form instance.
78274
78379
  * @param {CustomFormsV2026ApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
78275
78380
  * @param {*} [axiosOptions] Override http request option.
@@ -78309,7 +78414,7 @@ export const CustomFormsV2026ApiFactory = function (configuration?: Configuratio
78309
78414
  return localVarFp.patchFormDefinition(requestParameters.formDefinitionID, requestParameters.body, axiosOptions).then((request) => request(axios, basePath));
78310
78415
  },
78311
78416
  /**
78312
- * Parameter `{formInstanceID}` should match a form instance ID.
78417
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
78313
78418
  * @summary Patch a form instance.
78314
78419
  * @param {CustomFormsV2026ApiPatchFormInstanceRequest} requestParameters Request parameters.
78315
78420
  * @param {*} [axiosOptions] Override http request option.
@@ -78859,7 +78964,7 @@ export class CustomFormsV2026Api extends BaseAPI {
78859
78964
  }
78860
78965
 
78861
78966
  /**
78862
- * Parameter `{formInstanceID}` should match a form instance ID.
78967
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
78863
78968
  * @summary Returns a form instance.
78864
78969
  * @param {CustomFormsV2026ApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
78865
78970
  * @param {*} [axiosOptions] Override http request option.
@@ -78907,7 +79012,7 @@ export class CustomFormsV2026Api extends BaseAPI {
78907
79012
  }
78908
79013
 
78909
79014
  /**
78910
- * Parameter `{formInstanceID}` should match a form instance ID.
79015
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
78911
79016
  * @summary Patch a form instance.
78912
79017
  * @param {CustomFormsV2026ApiPatchFormInstanceRequest} requestParameters Request parameters.
78913
79018
  * @param {*} [axiosOptions] Override http request option.
@@ -141200,6 +141305,96 @@ export type UpdateSourceScheduleScheduleTypeV2026 = typeof UpdateSourceScheduleS
141200
141305
  */
141201
141306
  export const SuggestedEntitlementDescriptionV2026ApiAxiosParamCreator = function (configuration?: Configuration) {
141202
141307
  return {
141308
+ /**
141309
+ * Create the initial auto-write settings for a tenant. Returns 409 Conflict if settings already exist. Use PATCH to update existing settings.
141310
+ * @summary Create auto-write settings for SED
141311
+ * @param {AutoWriteSettingV2026} autoWriteSettingV2026 Auto-write settings to create
141312
+ * @param {*} [axiosOptions] Override http request option.
141313
+ * @throws {RequiredError}
141314
+ */
141315
+ createAutoWriteSettings: async (autoWriteSettingV2026: AutoWriteSettingV2026, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
141316
+ // verify required parameter 'autoWriteSettingV2026' is not null or undefined
141317
+ assertParamExists('createAutoWriteSettings', 'autoWriteSettingV2026', autoWriteSettingV2026)
141318
+ const localVarPath = `/suggested-entitlement-descriptions/auto-write-settings`;
141319
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
141320
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
141321
+ let baseOptions;
141322
+ if (configuration) {
141323
+ baseOptions = configuration.baseOptions;
141324
+ }
141325
+
141326
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
141327
+ const localVarHeaderParameter = {} as any;
141328
+ const localVarQueryParameter = {} as any;
141329
+
141330
+ // authentication userAuth required
141331
+ // oauth required
141332
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
141333
+
141334
+ // authentication userAuth required
141335
+ // oauth required
141336
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
141337
+
141338
+ // authentication applicationAuth required
141339
+ // oauth required
141340
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
141341
+
141342
+
141343
+
141344
+ localVarHeaderParameter['Content-Type'] = 'application/json';
141345
+
141346
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
141347
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
141348
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
141349
+ localVarRequestOptions.data = serializeDataIfNeeded(autoWriteSettingV2026, localVarRequestOptions, configuration)
141350
+
141351
+ return {
141352
+ url: toPathString(localVarUrlObj),
141353
+ axiosOptions: localVarRequestOptions,
141354
+ };
141355
+ },
141356
+ /**
141357
+ * Get the current auto-write configuration for the tenant, including the enabled state and source include/exclude lists.
141358
+ * @summary Get auto-write settings for SED
141359
+ * @param {*} [axiosOptions] Override http request option.
141360
+ * @throws {RequiredError}
141361
+ */
141362
+ getAutoWriteSettings: async (axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
141363
+ const localVarPath = `/suggested-entitlement-descriptions/auto-write-settings`;
141364
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
141365
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
141366
+ let baseOptions;
141367
+ if (configuration) {
141368
+ baseOptions = configuration.baseOptions;
141369
+ }
141370
+
141371
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
141372
+ const localVarHeaderParameter = {} as any;
141373
+ const localVarQueryParameter = {} as any;
141374
+
141375
+ // authentication userAuth required
141376
+ // oauth required
141377
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
141378
+
141379
+ // authentication userAuth required
141380
+ // oauth required
141381
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
141382
+
141383
+ // authentication applicationAuth required
141384
+ // oauth required
141385
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
141386
+
141387
+
141388
+
141389
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
141390
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
141391
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
141392
+
141393
+ return {
141394
+ url: toPathString(localVarUrlObj),
141395
+ axiosOptions: localVarRequestOptions,
141396
+ };
141397
+ },
141203
141398
  /**
141204
141399
  * \'Submit Sed Batch Stats Request. Submits batchId in the path param `(e.g. {batchId}/stats)`. API responses with stats of the batchId.\'
141205
141400
  * @summary Submit sed batch stats request
@@ -141584,6 +141779,54 @@ export const SuggestedEntitlementDescriptionV2026ApiAxiosParamCreator = function
141584
141779
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
141585
141780
  localVarRequestOptions.data = serializeDataIfNeeded(sedBatchRequestV2026, localVarRequestOptions, configuration)
141586
141781
 
141782
+ return {
141783
+ url: toPathString(localVarUrlObj),
141784
+ axiosOptions: localVarRequestOptions,
141785
+ };
141786
+ },
141787
+ /**
141788
+ * Partially update the auto-write settings for a tenant using JSON Patch operations. Only the \"replace\" operation is supported. Returns 404 if no settings exist yet - use POST to create them first.
141789
+ * @summary Update auto-write settings for SED
141790
+ * @param {Array<AutoWriteSettingPatchV2026>} autoWriteSettingPatchV2026 Patch operations for auto-write settings
141791
+ * @param {*} [axiosOptions] Override http request option.
141792
+ * @throws {RequiredError}
141793
+ */
141794
+ updateAutoWriteSettings: async (autoWriteSettingPatchV2026: Array<AutoWriteSettingPatchV2026>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
141795
+ // verify required parameter 'autoWriteSettingPatchV2026' is not null or undefined
141796
+ assertParamExists('updateAutoWriteSettings', 'autoWriteSettingPatchV2026', autoWriteSettingPatchV2026)
141797
+ const localVarPath = `/suggested-entitlement-descriptions/auto-write-settings`;
141798
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
141799
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
141800
+ let baseOptions;
141801
+ if (configuration) {
141802
+ baseOptions = configuration.baseOptions;
141803
+ }
141804
+
141805
+ const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...axiosOptions};
141806
+ const localVarHeaderParameter = {} as any;
141807
+ const localVarQueryParameter = {} as any;
141808
+
141809
+ // authentication userAuth required
141810
+ // oauth required
141811
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
141812
+
141813
+ // authentication userAuth required
141814
+ // oauth required
141815
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
141816
+
141817
+ // authentication applicationAuth required
141818
+ // oauth required
141819
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
141820
+
141821
+
141822
+
141823
+ localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
141824
+
141825
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
141826
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
141827
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
141828
+ localVarRequestOptions.data = serializeDataIfNeeded(autoWriteSettingPatchV2026, localVarRequestOptions, configuration)
141829
+
141587
141830
  return {
141588
141831
  url: toPathString(localVarUrlObj),
141589
141832
  axiosOptions: localVarRequestOptions,
@@ -141599,6 +141842,31 @@ export const SuggestedEntitlementDescriptionV2026ApiAxiosParamCreator = function
141599
141842
  export const SuggestedEntitlementDescriptionV2026ApiFp = function(configuration?: Configuration) {
141600
141843
  const localVarAxiosParamCreator = SuggestedEntitlementDescriptionV2026ApiAxiosParamCreator(configuration)
141601
141844
  return {
141845
+ /**
141846
+ * Create the initial auto-write settings for a tenant. Returns 409 Conflict if settings already exist. Use PATCH to update existing settings.
141847
+ * @summary Create auto-write settings for SED
141848
+ * @param {AutoWriteSettingV2026} autoWriteSettingV2026 Auto-write settings to create
141849
+ * @param {*} [axiosOptions] Override http request option.
141850
+ * @throws {RequiredError}
141851
+ */
141852
+ async createAutoWriteSettings(autoWriteSettingV2026: AutoWriteSettingV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AutoWriteSettingResponseV2026>> {
141853
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createAutoWriteSettings(autoWriteSettingV2026, axiosOptions);
141854
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
141855
+ const localVarOperationServerBasePath = operationServerMap['SuggestedEntitlementDescriptionV2026Api.createAutoWriteSettings']?.[localVarOperationServerIndex]?.url;
141856
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
141857
+ },
141858
+ /**
141859
+ * Get the current auto-write configuration for the tenant, including the enabled state and source include/exclude lists.
141860
+ * @summary Get auto-write settings for SED
141861
+ * @param {*} [axiosOptions] Override http request option.
141862
+ * @throws {RequiredError}
141863
+ */
141864
+ async getAutoWriteSettings(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AutoWriteSettingResponseV2026>> {
141865
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getAutoWriteSettings(axiosOptions);
141866
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
141867
+ const localVarOperationServerBasePath = operationServerMap['SuggestedEntitlementDescriptionV2026Api.getAutoWriteSettings']?.[localVarOperationServerIndex]?.url;
141868
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
141869
+ },
141602
141870
  /**
141603
141871
  * \'Submit Sed Batch Stats Request. Submits batchId in the path param `(e.g. {batchId}/stats)`. API responses with stats of the batchId.\'
141604
141872
  * @summary Submit sed batch stats request
@@ -141702,6 +141970,19 @@ export const SuggestedEntitlementDescriptionV2026ApiFp = function(configuration?
141702
141970
  const localVarOperationServerBasePath = operationServerMap['SuggestedEntitlementDescriptionV2026Api.submitSedBatchRequest']?.[localVarOperationServerIndex]?.url;
141703
141971
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
141704
141972
  },
141973
+ /**
141974
+ * Partially update the auto-write settings for a tenant using JSON Patch operations. Only the \"replace\" operation is supported. Returns 404 if no settings exist yet - use POST to create them first.
141975
+ * @summary Update auto-write settings for SED
141976
+ * @param {Array<AutoWriteSettingPatchV2026>} autoWriteSettingPatchV2026 Patch operations for auto-write settings
141977
+ * @param {*} [axiosOptions] Override http request option.
141978
+ * @throws {RequiredError}
141979
+ */
141980
+ async updateAutoWriteSettings(autoWriteSettingPatchV2026: Array<AutoWriteSettingPatchV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AutoWriteSettingResponseV2026>> {
141981
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateAutoWriteSettings(autoWriteSettingPatchV2026, axiosOptions);
141982
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
141983
+ const localVarOperationServerBasePath = operationServerMap['SuggestedEntitlementDescriptionV2026Api.updateAutoWriteSettings']?.[localVarOperationServerIndex]?.url;
141984
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
141985
+ },
141705
141986
  }
141706
141987
  };
141707
141988
 
@@ -141712,6 +141993,25 @@ export const SuggestedEntitlementDescriptionV2026ApiFp = function(configuration?
141712
141993
  export const SuggestedEntitlementDescriptionV2026ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
141713
141994
  const localVarFp = SuggestedEntitlementDescriptionV2026ApiFp(configuration)
141714
141995
  return {
141996
+ /**
141997
+ * Create the initial auto-write settings for a tenant. Returns 409 Conflict if settings already exist. Use PATCH to update existing settings.
141998
+ * @summary Create auto-write settings for SED
141999
+ * @param {SuggestedEntitlementDescriptionV2026ApiCreateAutoWriteSettingsRequest} requestParameters Request parameters.
142000
+ * @param {*} [axiosOptions] Override http request option.
142001
+ * @throws {RequiredError}
142002
+ */
142003
+ createAutoWriteSettings(requestParameters: SuggestedEntitlementDescriptionV2026ApiCreateAutoWriteSettingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AutoWriteSettingResponseV2026> {
142004
+ return localVarFp.createAutoWriteSettings(requestParameters.autoWriteSettingV2026, axiosOptions).then((request) => request(axios, basePath));
142005
+ },
142006
+ /**
142007
+ * Get the current auto-write configuration for the tenant, including the enabled state and source include/exclude lists.
142008
+ * @summary Get auto-write settings for SED
142009
+ * @param {*} [axiosOptions] Override http request option.
142010
+ * @throws {RequiredError}
142011
+ */
142012
+ getAutoWriteSettings(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AutoWriteSettingResponseV2026> {
142013
+ return localVarFp.getAutoWriteSettings(axiosOptions).then((request) => request(axios, basePath));
142014
+ },
141715
142015
  /**
141716
142016
  * \'Submit Sed Batch Stats Request. Submits batchId in the path param `(e.g. {batchId}/stats)`. API responses with stats of the batchId.\'
141717
142017
  * @summary Submit sed batch stats request
@@ -141782,9 +142082,33 @@ export const SuggestedEntitlementDescriptionV2026ApiFactory = function (configur
141782
142082
  submitSedBatchRequest(requestParameters: SuggestedEntitlementDescriptionV2026ApiSubmitSedBatchRequestRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SedBatchResponseV2026> {
141783
142083
  return localVarFp.submitSedBatchRequest(requestParameters.sedBatchRequestV2026, axiosOptions).then((request) => request(axios, basePath));
141784
142084
  },
142085
+ /**
142086
+ * Partially update the auto-write settings for a tenant using JSON Patch operations. Only the \"replace\" operation is supported. Returns 404 if no settings exist yet - use POST to create them first.
142087
+ * @summary Update auto-write settings for SED
142088
+ * @param {SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettingsRequest} requestParameters Request parameters.
142089
+ * @param {*} [axiosOptions] Override http request option.
142090
+ * @throws {RequiredError}
142091
+ */
142092
+ updateAutoWriteSettings(requestParameters: SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AutoWriteSettingResponseV2026> {
142093
+ return localVarFp.updateAutoWriteSettings(requestParameters.autoWriteSettingPatchV2026, axiosOptions).then((request) => request(axios, basePath));
142094
+ },
141785
142095
  };
141786
142096
  };
141787
142097
 
142098
+ /**
142099
+ * Request parameters for createAutoWriteSettings operation in SuggestedEntitlementDescriptionV2026Api.
142100
+ * @export
142101
+ * @interface SuggestedEntitlementDescriptionV2026ApiCreateAutoWriteSettingsRequest
142102
+ */
142103
+ export interface SuggestedEntitlementDescriptionV2026ApiCreateAutoWriteSettingsRequest {
142104
+ /**
142105
+ * Auto-write settings to create
142106
+ * @type {AutoWriteSettingV2026}
142107
+ * @memberof SuggestedEntitlementDescriptionV2026ApiCreateAutoWriteSettings
142108
+ */
142109
+ readonly autoWriteSettingV2026: AutoWriteSettingV2026
142110
+ }
142111
+
141788
142112
  /**
141789
142113
  * Request parameters for getSedBatchStats operation in SuggestedEntitlementDescriptionV2026Api.
141790
142114
  * @export
@@ -141967,6 +142291,20 @@ export interface SuggestedEntitlementDescriptionV2026ApiSubmitSedBatchRequestReq
141967
142291
  readonly sedBatchRequestV2026?: SedBatchRequestV2026
141968
142292
  }
141969
142293
 
142294
+ /**
142295
+ * Request parameters for updateAutoWriteSettings operation in SuggestedEntitlementDescriptionV2026Api.
142296
+ * @export
142297
+ * @interface SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettingsRequest
142298
+ */
142299
+ export interface SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettingsRequest {
142300
+ /**
142301
+ * Patch operations for auto-write settings
142302
+ * @type {Array<AutoWriteSettingPatchV2026>}
142303
+ * @memberof SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettings
142304
+ */
142305
+ readonly autoWriteSettingPatchV2026: Array<AutoWriteSettingPatchV2026>
142306
+ }
142307
+
141970
142308
  /**
141971
142309
  * SuggestedEntitlementDescriptionV2026Api - object-oriented interface
141972
142310
  * @export
@@ -141974,6 +142312,29 @@ export interface SuggestedEntitlementDescriptionV2026ApiSubmitSedBatchRequestReq
141974
142312
  * @extends {BaseAPI}
141975
142313
  */
141976
142314
  export class SuggestedEntitlementDescriptionV2026Api extends BaseAPI {
142315
+ /**
142316
+ * Create the initial auto-write settings for a tenant. Returns 409 Conflict if settings already exist. Use PATCH to update existing settings.
142317
+ * @summary Create auto-write settings for SED
142318
+ * @param {SuggestedEntitlementDescriptionV2026ApiCreateAutoWriteSettingsRequest} requestParameters Request parameters.
142319
+ * @param {*} [axiosOptions] Override http request option.
142320
+ * @throws {RequiredError}
142321
+ * @memberof SuggestedEntitlementDescriptionV2026Api
142322
+ */
142323
+ public createAutoWriteSettings(requestParameters: SuggestedEntitlementDescriptionV2026ApiCreateAutoWriteSettingsRequest, axiosOptions?: RawAxiosRequestConfig) {
142324
+ return SuggestedEntitlementDescriptionV2026ApiFp(this.configuration).createAutoWriteSettings(requestParameters.autoWriteSettingV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
142325
+ }
142326
+
142327
+ /**
142328
+ * Get the current auto-write configuration for the tenant, including the enabled state and source include/exclude lists.
142329
+ * @summary Get auto-write settings for SED
142330
+ * @param {*} [axiosOptions] Override http request option.
142331
+ * @throws {RequiredError}
142332
+ * @memberof SuggestedEntitlementDescriptionV2026Api
142333
+ */
142334
+ public getAutoWriteSettings(axiosOptions?: RawAxiosRequestConfig) {
142335
+ return SuggestedEntitlementDescriptionV2026ApiFp(this.configuration).getAutoWriteSettings(axiosOptions).then((request) => request(this.axios, this.basePath));
142336
+ }
142337
+
141977
142338
  /**
141978
142339
  * \'Submit Sed Batch Stats Request. Submits batchId in the path param `(e.g. {batchId}/stats)`. API responses with stats of the batchId.\'
141979
142340
  * @summary Submit sed batch stats request
@@ -142057,6 +142418,18 @@ export class SuggestedEntitlementDescriptionV2026Api extends BaseAPI {
142057
142418
  public submitSedBatchRequest(requestParameters: SuggestedEntitlementDescriptionV2026ApiSubmitSedBatchRequestRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
142058
142419
  return SuggestedEntitlementDescriptionV2026ApiFp(this.configuration).submitSedBatchRequest(requestParameters.sedBatchRequestV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
142059
142420
  }
142421
+
142422
+ /**
142423
+ * Partially update the auto-write settings for a tenant using JSON Patch operations. Only the \"replace\" operation is supported. Returns 404 if no settings exist yet - use POST to create them first.
142424
+ * @summary Update auto-write settings for SED
142425
+ * @param {SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettingsRequest} requestParameters Request parameters.
142426
+ * @param {*} [axiosOptions] Override http request option.
142427
+ * @throws {RequiredError}
142428
+ * @memberof SuggestedEntitlementDescriptionV2026Api
142429
+ */
142430
+ public updateAutoWriteSettings(requestParameters: SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettingsRequest, axiosOptions?: RawAxiosRequestConfig) {
142431
+ return SuggestedEntitlementDescriptionV2026ApiFp(this.configuration).updateAutoWriteSettings(requestParameters.autoWriteSettingPatchV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
142432
+ }
142060
142433
  }
142061
142434
 
142062
142435
 
@@ -149294,7 +149667,7 @@ export const WorkflowsV2026ApiAxiosParamCreator = function (configuration?: Conf
149294
149667
  * @summary List workflow library triggers
149295
149668
  * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
149296
149669
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
149297
- * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq*
149670
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq* **name**: *eq* **type**: *eq*
149298
149671
  * @param {*} [axiosOptions] Override http request option.
149299
149672
  * @throws {RequiredError}
149300
149673
  */
@@ -149764,7 +150137,7 @@ export const WorkflowsV2026ApiFp = function(configuration?: Configuration) {
149764
150137
  * @summary List workflow library triggers
149765
150138
  * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
149766
150139
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
149767
- * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq*
150140
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq* **name**: *eq* **type**: *eq*
149768
150141
  * @param {*} [axiosOptions] Override http request option.
149769
150142
  * @throws {RequiredError}
149770
150143
  */
@@ -150281,7 +150654,7 @@ export interface WorkflowsV2026ApiListWorkflowLibraryTriggersRequest {
150281
150654
  readonly offset?: number
150282
150655
 
150283
150656
  /**
150284
- * Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq*
150657
+ * Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq* **name**: *eq* **type**: *eq*
150285
150658
  * @type {string}
150286
150659
  * @memberof WorkflowsV2026ApiListWorkflowLibraryTriggers
150287
150660
  */
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.19`;
149
+ let userAgent = `SailPoint-SDK-TypeScript/1.8.21`;
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.19'},
156
+ ...{'X-SailPoint-SDK':'typescript-1.8.21'},
157
157
  ...{'User-Agent': userAgent},
158
158
  }
159
159
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.8.19",
3
+ "version": "1.8.21",
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.19
1
+ ## sailpoint-sdk@1.8.21
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.19 --save
39
+ npm install sailpoint-sdk@1.8.21 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_