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
  }
@@ -9920,6 +9920,103 @@ export interface AuthorizationSchemeV2026 {
9920
9920
  */
9921
9921
  'spec_urn'?: string;
9922
9922
  }
9923
+ /**
9924
+ * Patch operation for Auto-Write Setting
9925
+ * @export
9926
+ * @interface AutoWriteSettingPatchV2026
9927
+ */
9928
+ export interface AutoWriteSettingPatchV2026 {
9929
+ /**
9930
+ * The operation to perform. Only \"replace\" is supported.
9931
+ * @type {string}
9932
+ * @memberof AutoWriteSettingPatchV2026
9933
+ */
9934
+ 'op': AutoWriteSettingPatchV2026OpV2026;
9935
+ /**
9936
+ * The field to update. Allowed values: /enabled, /includedSourceIds, /excludedSourceIds
9937
+ * @type {string}
9938
+ * @memberof AutoWriteSettingPatchV2026
9939
+ */
9940
+ 'path': string;
9941
+ /**
9942
+ *
9943
+ * @type {AutoWriteSettingPatchValueV2026}
9944
+ * @memberof AutoWriteSettingPatchV2026
9945
+ */
9946
+ 'value': AutoWriteSettingPatchValueV2026;
9947
+ }
9948
+ export declare const AutoWriteSettingPatchV2026OpV2026: {
9949
+ readonly Replace: "replace";
9950
+ };
9951
+ export type AutoWriteSettingPatchV2026OpV2026 = typeof AutoWriteSettingPatchV2026OpV2026[keyof typeof AutoWriteSettingPatchV2026OpV2026];
9952
+ /**
9953
+ * @type AutoWriteSettingPatchValueV2026
9954
+ * The new value for the field
9955
+ * @export
9956
+ */
9957
+ export type AutoWriteSettingPatchValueV2026 = Array<string> | boolean;
9958
+ /**
9959
+ * Auto-Write Setting response with timestamps
9960
+ * @export
9961
+ * @interface AutoWriteSettingResponseV2026
9962
+ */
9963
+ export interface AutoWriteSettingResponseV2026 {
9964
+ /**
9965
+ * Whether auto-write is currently enabled for the tenant
9966
+ * @type {boolean}
9967
+ * @memberof AutoWriteSettingResponseV2026
9968
+ */
9969
+ 'enabled'?: boolean;
9970
+ /**
9971
+ * Source IDs in the allowlist. Empty array means not in allowlist mode.
9972
+ * @type {Array<string>}
9973
+ * @memberof AutoWriteSettingResponseV2026
9974
+ */
9975
+ 'includedSourceIds'?: Array<string> | null;
9976
+ /**
9977
+ * Source IDs to exclude from auto-write. Always applied.
9978
+ * @type {Array<string>}
9979
+ * @memberof AutoWriteSettingResponseV2026
9980
+ */
9981
+ 'excludedSourceIds'?: Array<string> | null;
9982
+ /**
9983
+ * When settings were first created
9984
+ * @type {string}
9985
+ * @memberof AutoWriteSettingResponseV2026
9986
+ */
9987
+ 'createdAt'?: string;
9988
+ /**
9989
+ * When settings were last modified
9990
+ * @type {string}
9991
+ * @memberof AutoWriteSettingResponseV2026
9992
+ */
9993
+ 'updatedAt'?: string;
9994
+ }
9995
+ /**
9996
+ * Auto-Write Setting for SED
9997
+ * @export
9998
+ * @interface AutoWriteSettingV2026
9999
+ */
10000
+ export interface AutoWriteSettingV2026 {
10001
+ /**
10002
+ * Whether auto-write is currently enabled for the tenant
10003
+ * @type {boolean}
10004
+ * @memberof AutoWriteSettingV2026
10005
+ */
10006
+ 'enabled'?: boolean;
10007
+ /**
10008
+ * Source IDs in the allowlist. Empty array means not in allowlist mode.
10009
+ * @type {Array<string>}
10010
+ * @memberof AutoWriteSettingV2026
10011
+ */
10012
+ 'includedSourceIds'?: Array<string> | null;
10013
+ /**
10014
+ * Source IDs to exclude from auto-write. Always applied.
10015
+ * @type {Array<string>}
10016
+ * @memberof AutoWriteSettingV2026
10017
+ */
10018
+ 'excludedSourceIds'?: Array<string> | null;
10019
+ }
9923
10020
  /**
9924
10021
  * Backup options control what will be included in the backup.
9925
10022
  * @export
@@ -12123,6 +12220,8 @@ export declare const CampaignReferenceV2026CampaignTypeV2026: {
12123
12220
  readonly Manager: "MANAGER";
12124
12221
  readonly SourceOwner: "SOURCE_OWNER";
12125
12222
  readonly Search: "SEARCH";
12223
+ readonly RoleComposition: "ROLE_COMPOSITION";
12224
+ readonly MachineAccount: "MACHINE_ACCOUNT";
12126
12225
  };
12127
12226
  export type CampaignReferenceV2026CampaignTypeV2026 = typeof CampaignReferenceV2026CampaignTypeV2026[keyof typeof CampaignReferenceV2026CampaignTypeV2026];
12128
12227
  export declare const CampaignReferenceV2026CorrelatedStatusV2026: {
@@ -38139,11 +38238,11 @@ export interface ReviewerV2026 {
38139
38238
  */
38140
38239
  'name'?: string;
38141
38240
  /**
38142
- * The email of the reviewing identity.
38241
+ * The email of the reviewing identity. This is only applicable to reviewers of the `IDENTITY` type.
38143
38242
  * @type {string}
38144
38243
  * @memberof ReviewerV2026
38145
38244
  */
38146
- 'email'?: string;
38245
+ 'email'?: string | null;
38147
38246
  /**
38148
38247
  * The type of the reviewing identity.
38149
38248
  * @type {string}
@@ -38165,6 +38264,7 @@ export interface ReviewerV2026 {
38165
38264
  }
38166
38265
  export declare const ReviewerV2026TypeV2026: {
38167
38266
  readonly Identity: "IDENTITY";
38267
+ readonly GovernanceGroup: "GOVERNANCE_GROUP";
38168
38268
  };
38169
38269
  export type ReviewerV2026TypeV2026 = typeof ReviewerV2026TypeV2026[keyof typeof ReviewerV2026TypeV2026];
38170
38270
  /**
@@ -52239,19 +52339,19 @@ export interface WorkflowLibraryTriggerV2026 {
52239
52339
  */
52240
52340
  'type'?: WorkflowLibraryTriggerV2026TypeV2026;
52241
52341
  /**
52242
- *
52342
+ * Whether the trigger is deprecated.
52243
52343
  * @type {boolean}
52244
52344
  * @memberof WorkflowLibraryTriggerV2026
52245
52345
  */
52246
52346
  'deprecated'?: boolean;
52247
52347
  /**
52248
- *
52348
+ * Date the trigger was deprecated, if applicable.
52249
52349
  * @type {string}
52250
52350
  * @memberof WorkflowLibraryTriggerV2026
52251
52351
  */
52252
52352
  'deprecatedBy'?: string;
52253
52353
  /**
52254
- *
52354
+ * Whether the trigger can be simulated.
52255
52355
  * @type {boolean}
52256
52356
  * @memberof WorkflowLibraryTriggerV2026
52257
52357
  */
@@ -52297,6 +52397,7 @@ export declare const WorkflowLibraryTriggerV2026TypeV2026: {
52297
52397
  readonly Event: "EVENT";
52298
52398
  readonly Scheduled: "SCHEDULED";
52299
52399
  readonly External: "EXTERNAL";
52400
+ readonly AccessRequestTrigger: "AccessRequestTrigger";
52300
52401
  };
52301
52402
  export type WorkflowLibraryTriggerV2026TypeV2026 = typeof WorkflowLibraryTriggerV2026TypeV2026[keyof typeof WorkflowLibraryTriggerV2026TypeV2026];
52302
52403
  /**
@@ -64750,7 +64851,7 @@ export declare const CustomFormsV2026ApiAxiosParamCreator: (configuration?: Conf
64750
64851
  */
64751
64852
  getFormDefinitionByKey: (formDefinitionID: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
64752
64853
  /**
64753
- * Parameter `{formInstanceID}` should match a form instance ID.
64854
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
64754
64855
  * @summary Returns a form instance.
64755
64856
  * @param {string} formInstanceID Form instance ID
64756
64857
  * @param {*} [axiosOptions] Override http request option.
@@ -64786,7 +64887,7 @@ export declare const CustomFormsV2026ApiAxiosParamCreator: (configuration?: Conf
64786
64887
  [key: string]: object;
64787
64888
  }[], axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
64788
64889
  /**
64789
- * Parameter `{formInstanceID}` should match a form instance ID.
64890
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
64790
64891
  * @summary Patch a form instance.
64791
64892
  * @param {string} formInstanceID Form instance ID
64792
64893
  * @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
@@ -64924,7 +65025,7 @@ export declare const CustomFormsV2026ApiFp: (configuration?: Configuration) => {
64924
65025
  */
64925
65026
  getFormDefinitionByKey(formDefinitionID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FormDefinitionResponseV2026>>;
64926
65027
  /**
64927
- * Parameter `{formInstanceID}` should match a form instance ID.
65028
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
64928
65029
  * @summary Returns a form instance.
64929
65030
  * @param {string} formInstanceID Form instance ID
64930
65031
  * @param {*} [axiosOptions] Override http request option.
@@ -64960,7 +65061,7 @@ export declare const CustomFormsV2026ApiFp: (configuration?: Configuration) => {
64960
65061
  [key: string]: object;
64961
65062
  }[], axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FormDefinitionResponseV2026>>;
64962
65063
  /**
64963
- * Parameter `{formInstanceID}` should match a form instance ID.
65064
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
64964
65065
  * @summary Patch a form instance.
64965
65066
  * @param {string} formInstanceID Form instance ID
64966
65067
  * @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
@@ -65093,7 +65194,7 @@ export declare const CustomFormsV2026ApiFactory: (configuration?: Configuration,
65093
65194
  */
65094
65195
  getFormDefinitionByKey(requestParameters: CustomFormsV2026ApiGetFormDefinitionByKeyRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<FormDefinitionResponseV2026>;
65095
65196
  /**
65096
- * Parameter `{formInstanceID}` should match a form instance ID.
65197
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
65097
65198
  * @summary Returns a form instance.
65098
65199
  * @param {CustomFormsV2026ApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
65099
65200
  * @param {*} [axiosOptions] Override http request option.
@@ -65125,7 +65226,7 @@ export declare const CustomFormsV2026ApiFactory: (configuration?: Configuration,
65125
65226
  */
65126
65227
  patchFormDefinition(requestParameters: CustomFormsV2026ApiPatchFormDefinitionRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<FormDefinitionResponseV2026>;
65127
65228
  /**
65128
- * Parameter `{formInstanceID}` should match a form instance ID.
65229
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
65129
65230
  * @summary Patch a form instance.
65130
65231
  * @param {CustomFormsV2026ApiPatchFormInstanceRequest} requestParameters Request parameters.
65131
65232
  * @param {*} [axiosOptions] Override http request option.
@@ -65603,7 +65704,7 @@ export declare class CustomFormsV2026Api extends BaseAPI {
65603
65704
  */
65604
65705
  getFormDefinitionByKey(requestParameters: CustomFormsV2026ApiGetFormDefinitionByKeyRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FormDefinitionResponseV2026, any>>;
65605
65706
  /**
65606
- * Parameter `{formInstanceID}` should match a form instance ID.
65707
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
65607
65708
  * @summary Returns a form instance.
65608
65709
  * @param {CustomFormsV2026ApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
65609
65710
  * @param {*} [axiosOptions] Override http request option.
@@ -65639,7 +65740,7 @@ export declare class CustomFormsV2026Api extends BaseAPI {
65639
65740
  */
65640
65741
  patchFormDefinition(requestParameters: CustomFormsV2026ApiPatchFormDefinitionRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FormDefinitionResponseV2026, any>>;
65641
65742
  /**
65642
- * Parameter `{formInstanceID}` should match a form instance ID.
65743
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
65643
65744
  * @summary Patch a form instance.
65644
65745
  * @param {CustomFormsV2026ApiPatchFormInstanceRequest} requestParameters Request parameters.
65645
65746
  * @param {*} [axiosOptions] Override http request option.
@@ -97696,6 +97797,21 @@ export type UpdateSourceScheduleScheduleTypeV2026 = typeof UpdateSourceScheduleS
97696
97797
  * @export
97697
97798
  */
97698
97799
  export declare const SuggestedEntitlementDescriptionV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
97800
+ /**
97801
+ * Create the initial auto-write settings for a tenant. Returns 409 Conflict if settings already exist. Use PATCH to update existing settings.
97802
+ * @summary Create auto-write settings for SED
97803
+ * @param {AutoWriteSettingV2026} autoWriteSettingV2026 Auto-write settings to create
97804
+ * @param {*} [axiosOptions] Override http request option.
97805
+ * @throws {RequiredError}
97806
+ */
97807
+ createAutoWriteSettings: (autoWriteSettingV2026: AutoWriteSettingV2026, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
97808
+ /**
97809
+ * Get the current auto-write configuration for the tenant, including the enabled state and source include/exclude lists.
97810
+ * @summary Get auto-write settings for SED
97811
+ * @param {*} [axiosOptions] Override http request option.
97812
+ * @throws {RequiredError}
97813
+ */
97814
+ getAutoWriteSettings: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
97699
97815
  /**
97700
97816
  * \'Submit Sed Batch Stats Request. Submits batchId in the path param `(e.g. {batchId}/stats)`. API responses with stats of the batchId.\'
97701
97817
  * @summary Submit sed batch stats request
@@ -97764,12 +97880,35 @@ export declare const SuggestedEntitlementDescriptionV2026ApiAxiosParamCreator: (
97764
97880
  * @throws {RequiredError}
97765
97881
  */
97766
97882
  submitSedBatchRequest: (sedBatchRequestV2026?: SedBatchRequestV2026, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
97883
+ /**
97884
+ * 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.
97885
+ * @summary Update auto-write settings for SED
97886
+ * @param {Array<AutoWriteSettingPatchV2026>} autoWriteSettingPatchV2026 Patch operations for auto-write settings
97887
+ * @param {*} [axiosOptions] Override http request option.
97888
+ * @throws {RequiredError}
97889
+ */
97890
+ updateAutoWriteSettings: (autoWriteSettingPatchV2026: Array<AutoWriteSettingPatchV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
97767
97891
  };
97768
97892
  /**
97769
97893
  * SuggestedEntitlementDescriptionV2026Api - functional programming interface
97770
97894
  * @export
97771
97895
  */
97772
97896
  export declare const SuggestedEntitlementDescriptionV2026ApiFp: (configuration?: Configuration) => {
97897
+ /**
97898
+ * Create the initial auto-write settings for a tenant. Returns 409 Conflict if settings already exist. Use PATCH to update existing settings.
97899
+ * @summary Create auto-write settings for SED
97900
+ * @param {AutoWriteSettingV2026} autoWriteSettingV2026 Auto-write settings to create
97901
+ * @param {*} [axiosOptions] Override http request option.
97902
+ * @throws {RequiredError}
97903
+ */
97904
+ createAutoWriteSettings(autoWriteSettingV2026: AutoWriteSettingV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AutoWriteSettingResponseV2026>>;
97905
+ /**
97906
+ * Get the current auto-write configuration for the tenant, including the enabled state and source include/exclude lists.
97907
+ * @summary Get auto-write settings for SED
97908
+ * @param {*} [axiosOptions] Override http request option.
97909
+ * @throws {RequiredError}
97910
+ */
97911
+ getAutoWriteSettings(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AutoWriteSettingResponseV2026>>;
97773
97912
  /**
97774
97913
  * \'Submit Sed Batch Stats Request. Submits batchId in the path param `(e.g. {batchId}/stats)`. API responses with stats of the batchId.\'
97775
97914
  * @summary Submit sed batch stats request
@@ -97838,12 +97977,35 @@ export declare const SuggestedEntitlementDescriptionV2026ApiFp: (configuration?:
97838
97977
  * @throws {RequiredError}
97839
97978
  */
97840
97979
  submitSedBatchRequest(sedBatchRequestV2026?: SedBatchRequestV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SedBatchResponseV2026>>;
97980
+ /**
97981
+ * 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.
97982
+ * @summary Update auto-write settings for SED
97983
+ * @param {Array<AutoWriteSettingPatchV2026>} autoWriteSettingPatchV2026 Patch operations for auto-write settings
97984
+ * @param {*} [axiosOptions] Override http request option.
97985
+ * @throws {RequiredError}
97986
+ */
97987
+ updateAutoWriteSettings(autoWriteSettingPatchV2026: Array<AutoWriteSettingPatchV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AutoWriteSettingResponseV2026>>;
97841
97988
  };
97842
97989
  /**
97843
97990
  * SuggestedEntitlementDescriptionV2026Api - factory interface
97844
97991
  * @export
97845
97992
  */
97846
97993
  export declare const SuggestedEntitlementDescriptionV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
97994
+ /**
97995
+ * Create the initial auto-write settings for a tenant. Returns 409 Conflict if settings already exist. Use PATCH to update existing settings.
97996
+ * @summary Create auto-write settings for SED
97997
+ * @param {SuggestedEntitlementDescriptionV2026ApiCreateAutoWriteSettingsRequest} requestParameters Request parameters.
97998
+ * @param {*} [axiosOptions] Override http request option.
97999
+ * @throws {RequiredError}
98000
+ */
98001
+ createAutoWriteSettings(requestParameters: SuggestedEntitlementDescriptionV2026ApiCreateAutoWriteSettingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AutoWriteSettingResponseV2026>;
98002
+ /**
98003
+ * Get the current auto-write configuration for the tenant, including the enabled state and source include/exclude lists.
98004
+ * @summary Get auto-write settings for SED
98005
+ * @param {*} [axiosOptions] Override http request option.
98006
+ * @throws {RequiredError}
98007
+ */
98008
+ getAutoWriteSettings(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AutoWriteSettingResponseV2026>;
97847
98009
  /**
97848
98010
  * \'Submit Sed Batch Stats Request. Submits batchId in the path param `(e.g. {batchId}/stats)`. API responses with stats of the batchId.\'
97849
98011
  * @summary Submit sed batch stats request
@@ -97900,7 +98062,28 @@ export declare const SuggestedEntitlementDescriptionV2026ApiFactory: (configurat
97900
98062
  * @throws {RequiredError}
97901
98063
  */
97902
98064
  submitSedBatchRequest(requestParameters?: SuggestedEntitlementDescriptionV2026ApiSubmitSedBatchRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SedBatchResponseV2026>;
98065
+ /**
98066
+ * 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.
98067
+ * @summary Update auto-write settings for SED
98068
+ * @param {SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettingsRequest} requestParameters Request parameters.
98069
+ * @param {*} [axiosOptions] Override http request option.
98070
+ * @throws {RequiredError}
98071
+ */
98072
+ updateAutoWriteSettings(requestParameters: SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AutoWriteSettingResponseV2026>;
97903
98073
  };
98074
+ /**
98075
+ * Request parameters for createAutoWriteSettings operation in SuggestedEntitlementDescriptionV2026Api.
98076
+ * @export
98077
+ * @interface SuggestedEntitlementDescriptionV2026ApiCreateAutoWriteSettingsRequest
98078
+ */
98079
+ export interface SuggestedEntitlementDescriptionV2026ApiCreateAutoWriteSettingsRequest {
98080
+ /**
98081
+ * Auto-write settings to create
98082
+ * @type {AutoWriteSettingV2026}
98083
+ * @memberof SuggestedEntitlementDescriptionV2026ApiCreateAutoWriteSettings
98084
+ */
98085
+ readonly autoWriteSettingV2026: AutoWriteSettingV2026;
98086
+ }
97904
98087
  /**
97905
98088
  * Request parameters for getSedBatchStats operation in SuggestedEntitlementDescriptionV2026Api.
97906
98089
  * @export
@@ -98064,6 +98247,19 @@ export interface SuggestedEntitlementDescriptionV2026ApiSubmitSedBatchRequestReq
98064
98247
  */
98065
98248
  readonly sedBatchRequestV2026?: SedBatchRequestV2026;
98066
98249
  }
98250
+ /**
98251
+ * Request parameters for updateAutoWriteSettings operation in SuggestedEntitlementDescriptionV2026Api.
98252
+ * @export
98253
+ * @interface SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettingsRequest
98254
+ */
98255
+ export interface SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettingsRequest {
98256
+ /**
98257
+ * Patch operations for auto-write settings
98258
+ * @type {Array<AutoWriteSettingPatchV2026>}
98259
+ * @memberof SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettings
98260
+ */
98261
+ readonly autoWriteSettingPatchV2026: Array<AutoWriteSettingPatchV2026>;
98262
+ }
98067
98263
  /**
98068
98264
  * SuggestedEntitlementDescriptionV2026Api - object-oriented interface
98069
98265
  * @export
@@ -98071,6 +98267,23 @@ export interface SuggestedEntitlementDescriptionV2026ApiSubmitSedBatchRequestReq
98071
98267
  * @extends {BaseAPI}
98072
98268
  */
98073
98269
  export declare class SuggestedEntitlementDescriptionV2026Api extends BaseAPI {
98270
+ /**
98271
+ * Create the initial auto-write settings for a tenant. Returns 409 Conflict if settings already exist. Use PATCH to update existing settings.
98272
+ * @summary Create auto-write settings for SED
98273
+ * @param {SuggestedEntitlementDescriptionV2026ApiCreateAutoWriteSettingsRequest} requestParameters Request parameters.
98274
+ * @param {*} [axiosOptions] Override http request option.
98275
+ * @throws {RequiredError}
98276
+ * @memberof SuggestedEntitlementDescriptionV2026Api
98277
+ */
98278
+ createAutoWriteSettings(requestParameters: SuggestedEntitlementDescriptionV2026ApiCreateAutoWriteSettingsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AutoWriteSettingResponseV2026, any>>;
98279
+ /**
98280
+ * Get the current auto-write configuration for the tenant, including the enabled state and source include/exclude lists.
98281
+ * @summary Get auto-write settings for SED
98282
+ * @param {*} [axiosOptions] Override http request option.
98283
+ * @throws {RequiredError}
98284
+ * @memberof SuggestedEntitlementDescriptionV2026Api
98285
+ */
98286
+ getAutoWriteSettings(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AutoWriteSettingResponseV2026, any>>;
98074
98287
  /**
98075
98288
  * \'Submit Sed Batch Stats Request. Submits batchId in the path param `(e.g. {batchId}/stats)`. API responses with stats of the batchId.\'
98076
98289
  * @summary Submit sed batch stats request
@@ -98134,6 +98347,15 @@ export declare class SuggestedEntitlementDescriptionV2026Api extends BaseAPI {
98134
98347
  * @memberof SuggestedEntitlementDescriptionV2026Api
98135
98348
  */
98136
98349
  submitSedBatchRequest(requestParameters?: SuggestedEntitlementDescriptionV2026ApiSubmitSedBatchRequestRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SedBatchResponseV2026, any>>;
98350
+ /**
98351
+ * 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.
98352
+ * @summary Update auto-write settings for SED
98353
+ * @param {SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettingsRequest} requestParameters Request parameters.
98354
+ * @param {*} [axiosOptions] Override http request option.
98355
+ * @throws {RequiredError}
98356
+ * @memberof SuggestedEntitlementDescriptionV2026Api
98357
+ */
98358
+ updateAutoWriteSettings(requestParameters: SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettingsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AutoWriteSettingResponseV2026, any>>;
98137
98359
  }
98138
98360
  /**
98139
98361
  * TaggedObjectsV2026Api - axios parameter creator
@@ -101686,7 +101908,7 @@ export declare const WorkflowsV2026ApiAxiosParamCreator: (configuration?: Config
101686
101908
  * @summary List workflow library triggers
101687
101909
  * @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.
101688
101910
  * @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.
101689
- * @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*
101911
+ * @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*
101690
101912
  * @param {*} [axiosOptions] Override http request option.
101691
101913
  * @throws {RequiredError}
101692
101914
  */
@@ -101855,7 +102077,7 @@ export declare const WorkflowsV2026ApiFp: (configuration?: Configuration) => {
101855
102077
  * @summary List workflow library triggers
101856
102078
  * @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.
101857
102079
  * @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.
101858
- * @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*
102080
+ * @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*
101859
102081
  * @param {*} [axiosOptions] Override http request option.
101860
102082
  * @throws {RequiredError}
101861
102083
  */
@@ -102277,7 +102499,7 @@ export interface WorkflowsV2026ApiListWorkflowLibraryTriggersRequest {
102277
102499
  */
102278
102500
  readonly offset?: number;
102279
102501
  /**
102280
- * 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*
102502
+ * 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*
102281
102503
  * @type {string}
102282
102504
  * @memberof WorkflowsV2026ApiListWorkflowLibraryTriggers
102283
102505
  */