sailpoint-api-client 1.8.20 → 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 (49) 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/common.js +2 -2
  10. package/dist/nermv2025/common.js +2 -2
  11. package/dist/v2024/api.d.ts +20 -16
  12. package/dist/v2024/api.js +17 -13
  13. package/dist/v2024/api.js.map +1 -1
  14. package/dist/v2024/common.js +2 -2
  15. package/dist/v2025/api.d.ts +20 -16
  16. package/dist/v2025/api.js +17 -13
  17. package/dist/v2025/api.js.map +1 -1
  18. package/dist/v2025/common.js +2 -2
  19. package/dist/v2026/api.d.ts +20 -16
  20. package/dist/v2026/api.js +17 -13
  21. package/dist/v2026/api.js.map +1 -1
  22. package/dist/v2026/common.js +2 -2
  23. package/dist/v3/api.d.ts +12 -8
  24. package/dist/v3/api.js +9 -5
  25. package/dist/v3/api.js.map +1 -1
  26. package/dist/v3/common.js +2 -2
  27. package/nerm/README.md +2 -2
  28. package/nerm/common.ts +2 -2
  29. package/nerm/package.json +1 -1
  30. package/nermv2025/README.md +2 -2
  31. package/nermv2025/common.ts +2 -2
  32. package/nermv2025/package.json +1 -1
  33. package/package.json +1 -1
  34. package/v2024/README.md +2 -2
  35. package/v2024/api.ts +23 -19
  36. package/v2024/common.ts +2 -2
  37. package/v2024/package.json +1 -1
  38. package/v2025/README.md +2 -2
  39. package/v2025/api.ts +23 -19
  40. package/v2025/common.ts +2 -2
  41. package/v2025/package.json +1 -1
  42. package/v2026/README.md +2 -2
  43. package/v2026/api.ts +23 -19
  44. package/v2026/common.ts +2 -2
  45. package/v2026/package.json +1 -1
  46. package/v3/README.md +2 -2
  47. package/v3/api.ts +15 -11
  48. package/v3/common.ts +2 -2
  49. 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.20";
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.20' }), { '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
  }
@@ -11401,6 +11401,8 @@ export declare const CampaignReferenceV2025CampaignTypeV2025: {
11401
11401
  readonly Manager: "MANAGER";
11402
11402
  readonly SourceOwner: "SOURCE_OWNER";
11403
11403
  readonly Search: "SEARCH";
11404
+ readonly RoleComposition: "ROLE_COMPOSITION";
11405
+ readonly MachineAccount: "MACHINE_ACCOUNT";
11404
11406
  };
11405
11407
  export type CampaignReferenceV2025CampaignTypeV2025 = typeof CampaignReferenceV2025CampaignTypeV2025[keyof typeof CampaignReferenceV2025CampaignTypeV2025];
11406
11408
  export declare const CampaignReferenceV2025CorrelatedStatusV2025: {
@@ -36926,11 +36928,11 @@ export interface ReviewerV2025 {
36926
36928
  */
36927
36929
  'name'?: string;
36928
36930
  /**
36929
- * The email of the reviewing identity.
36931
+ * The email of the reviewing identity. This is only applicable to reviewers of the `IDENTITY` type.
36930
36932
  * @type {string}
36931
36933
  * @memberof ReviewerV2025
36932
36934
  */
36933
- 'email'?: string;
36935
+ 'email'?: string | null;
36934
36936
  /**
36935
36937
  * The type of the reviewing identity.
36936
36938
  * @type {string}
@@ -36952,6 +36954,7 @@ export interface ReviewerV2025 {
36952
36954
  }
36953
36955
  export declare const ReviewerV2025TypeV2025: {
36954
36956
  readonly Identity: "IDENTITY";
36957
+ readonly GovernanceGroup: "GOVERNANCE_GROUP";
36955
36958
  };
36956
36959
  export type ReviewerV2025TypeV2025 = typeof ReviewerV2025TypeV2025[keyof typeof ReviewerV2025TypeV2025];
36957
36960
  /**
@@ -50854,19 +50857,19 @@ export interface WorkflowLibraryTriggerV2025 {
50854
50857
  */
50855
50858
  'type'?: WorkflowLibraryTriggerV2025TypeV2025;
50856
50859
  /**
50857
- *
50860
+ * Whether the trigger is deprecated.
50858
50861
  * @type {boolean}
50859
50862
  * @memberof WorkflowLibraryTriggerV2025
50860
50863
  */
50861
50864
  'deprecated'?: boolean;
50862
50865
  /**
50863
- *
50866
+ * Date the trigger was deprecated, if applicable.
50864
50867
  * @type {string}
50865
50868
  * @memberof WorkflowLibraryTriggerV2025
50866
50869
  */
50867
50870
  'deprecatedBy'?: string;
50868
50871
  /**
50869
- *
50872
+ * Whether the trigger can be simulated.
50870
50873
  * @type {boolean}
50871
50874
  * @memberof WorkflowLibraryTriggerV2025
50872
50875
  */
@@ -50912,6 +50915,7 @@ export declare const WorkflowLibraryTriggerV2025TypeV2025: {
50912
50915
  readonly Event: "EVENT";
50913
50916
  readonly Scheduled: "SCHEDULED";
50914
50917
  readonly External: "EXTERNAL";
50918
+ readonly AccessRequestTrigger: "AccessRequestTrigger";
50915
50919
  };
50916
50920
  export type WorkflowLibraryTriggerV2025TypeV2025 = typeof WorkflowLibraryTriggerV2025TypeV2025[keyof typeof WorkflowLibraryTriggerV2025TypeV2025];
50917
50921
  /**
@@ -63169,7 +63173,7 @@ export declare const CustomFormsV2025ApiAxiosParamCreator: (configuration?: Conf
63169
63173
  */
63170
63174
  getFormDefinitionByKey: (formDefinitionID: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
63171
63175
  /**
63172
- * Parameter `{formInstanceID}` should match a form instance ID.
63176
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
63173
63177
  * @summary Returns a form instance.
63174
63178
  * @param {string} formInstanceID Form instance ID
63175
63179
  * @param {*} [axiosOptions] Override http request option.
@@ -63205,7 +63209,7 @@ export declare const CustomFormsV2025ApiAxiosParamCreator: (configuration?: Conf
63205
63209
  [key: string]: object;
63206
63210
  }[], axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
63207
63211
  /**
63208
- * Parameter `{formInstanceID}` should match a form instance ID.
63212
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
63209
63213
  * @summary Patch a form instance.
63210
63214
  * @param {string} formInstanceID Form instance ID
63211
63215
  * @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
@@ -63343,7 +63347,7 @@ export declare const CustomFormsV2025ApiFp: (configuration?: Configuration) => {
63343
63347
  */
63344
63348
  getFormDefinitionByKey(formDefinitionID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FormDefinitionResponseV2025>>;
63345
63349
  /**
63346
- * Parameter `{formInstanceID}` should match a form instance ID.
63350
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
63347
63351
  * @summary Returns a form instance.
63348
63352
  * @param {string} formInstanceID Form instance ID
63349
63353
  * @param {*} [axiosOptions] Override http request option.
@@ -63379,7 +63383,7 @@ export declare const CustomFormsV2025ApiFp: (configuration?: Configuration) => {
63379
63383
  [key: string]: object;
63380
63384
  }[], axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FormDefinitionResponseV2025>>;
63381
63385
  /**
63382
- * Parameter `{formInstanceID}` should match a form instance ID.
63386
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
63383
63387
  * @summary Patch a form instance.
63384
63388
  * @param {string} formInstanceID Form instance ID
63385
63389
  * @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
@@ -63512,7 +63516,7 @@ export declare const CustomFormsV2025ApiFactory: (configuration?: Configuration,
63512
63516
  */
63513
63517
  getFormDefinitionByKey(requestParameters: CustomFormsV2025ApiGetFormDefinitionByKeyRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<FormDefinitionResponseV2025>;
63514
63518
  /**
63515
- * Parameter `{formInstanceID}` should match a form instance ID.
63519
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
63516
63520
  * @summary Returns a form instance.
63517
63521
  * @param {CustomFormsV2025ApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
63518
63522
  * @param {*} [axiosOptions] Override http request option.
@@ -63544,7 +63548,7 @@ export declare const CustomFormsV2025ApiFactory: (configuration?: Configuration,
63544
63548
  */
63545
63549
  patchFormDefinition(requestParameters: CustomFormsV2025ApiPatchFormDefinitionRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<FormDefinitionResponseV2025>;
63546
63550
  /**
63547
- * Parameter `{formInstanceID}` should match a form instance ID.
63551
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
63548
63552
  * @summary Patch a form instance.
63549
63553
  * @param {CustomFormsV2025ApiPatchFormInstanceRequest} requestParameters Request parameters.
63550
63554
  * @param {*} [axiosOptions] Override http request option.
@@ -64022,7 +64026,7 @@ export declare class CustomFormsV2025Api extends BaseAPI {
64022
64026
  */
64023
64027
  getFormDefinitionByKey(requestParameters: CustomFormsV2025ApiGetFormDefinitionByKeyRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FormDefinitionResponseV2025, any>>;
64024
64028
  /**
64025
- * Parameter `{formInstanceID}` should match a form instance ID.
64029
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
64026
64030
  * @summary Returns a form instance.
64027
64031
  * @param {CustomFormsV2025ApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
64028
64032
  * @param {*} [axiosOptions] Override http request option.
@@ -64058,7 +64062,7 @@ export declare class CustomFormsV2025Api extends BaseAPI {
64058
64062
  */
64059
64063
  patchFormDefinition(requestParameters: CustomFormsV2025ApiPatchFormDefinitionRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FormDefinitionResponseV2025, any>>;
64060
64064
  /**
64061
- * Parameter `{formInstanceID}` should match a form instance ID.
64065
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
64062
64066
  * @summary Patch a form instance.
64063
64067
  * @param {CustomFormsV2025ApiPatchFormInstanceRequest} requestParameters Request parameters.
64064
64068
  * @param {*} [axiosOptions] Override http request option.
@@ -99286,7 +99290,7 @@ export declare const WorkflowsV2025ApiAxiosParamCreator: (configuration?: Config
99286
99290
  * @summary List workflow library triggers
99287
99291
  * @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.
99288
99292
  * @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.
99289
- * @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*
99293
+ * @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*
99290
99294
  * @param {*} [axiosOptions] Override http request option.
99291
99295
  * @throws {RequiredError}
99292
99296
  */
@@ -99455,7 +99459,7 @@ export declare const WorkflowsV2025ApiFp: (configuration?: Configuration) => {
99455
99459
  * @summary List workflow library triggers
99456
99460
  * @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.
99457
99461
  * @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.
99458
- * @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*
99462
+ * @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*
99459
99463
  * @param {*} [axiosOptions] Override http request option.
99460
99464
  * @throws {RequiredError}
99461
99465
  */
@@ -99877,7 +99881,7 @@ export interface WorkflowsV2025ApiListWorkflowLibraryTriggersRequest {
99877
99881
  */
99878
99882
  readonly offset?: number;
99879
99883
  /**
99880
- * 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*
99884
+ * 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*
99881
99885
  * @type {string}
99882
99886
  * @memberof WorkflowsV2025ApiListWorkflowLibraryTriggers
99883
99887
  */
package/dist/v2025/api.js CHANGED
@@ -907,7 +907,9 @@ exports.CampaignReferenceV2025TypeV2025 = {
907
907
  exports.CampaignReferenceV2025CampaignTypeV2025 = {
908
908
  Manager: 'MANAGER',
909
909
  SourceOwner: 'SOURCE_OWNER',
910
- Search: 'SEARCH'
910
+ Search: 'SEARCH',
911
+ RoleComposition: 'ROLE_COMPOSITION',
912
+ MachineAccount: 'MACHINE_ACCOUNT'
911
913
  };
912
914
  exports.CampaignReferenceV2025CorrelatedStatusV2025 = {
913
915
  Correlated: 'CORRELATED',
@@ -2906,7 +2908,8 @@ exports.ReviewableEntitlementAccountOwnerV2025TypeV2025 = {
2906
2908
  Identity: 'IDENTITY'
2907
2909
  };
2908
2910
  exports.ReviewerV2025TypeV2025 = {
2909
- Identity: 'IDENTITY'
2911
+ Identity: 'IDENTITY',
2912
+ GovernanceGroup: 'GOVERNANCE_GROUP'
2910
2913
  };
2911
2914
  exports.RoleAssignmentDtoAssignerV2025TypeV2025 = {
2912
2915
  Identity: 'IDENTITY',
@@ -3908,7 +3911,8 @@ exports.WorkflowLibraryFormFieldsV2025TypeV2025 = {
3908
3911
  exports.WorkflowLibraryTriggerV2025TypeV2025 = {
3909
3912
  Event: 'EVENT',
3910
3913
  Scheduled: 'SCHEDULED',
3911
- External: 'EXTERNAL'
3914
+ External: 'EXTERNAL',
3915
+ AccessRequestTrigger: 'AccessRequestTrigger'
3912
3916
  };
3913
3917
  exports.WorkflowModifiedByV2025TypeV2025 = {
3914
3918
  Identity: 'IDENTITY'
@@ -26460,7 +26464,7 @@ var CustomFormsV2025ApiAxiosParamCreator = function (configuration) {
26460
26464
  });
26461
26465
  },
26462
26466
  /**
26463
- * Parameter `{formInstanceID}` should match a form instance ID.
26467
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
26464
26468
  * @summary Returns a form instance.
26465
26469
  * @param {string} formInstanceID Form instance ID
26466
26470
  * @param {*} [axiosOptions] Override http request option.
@@ -26678,7 +26682,7 @@ var CustomFormsV2025ApiAxiosParamCreator = function (configuration) {
26678
26682
  });
26679
26683
  },
26680
26684
  /**
26681
- * Parameter `{formInstanceID}` should match a form instance ID.
26685
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
26682
26686
  * @summary Patch a form instance.
26683
26687
  * @param {string} formInstanceID Form instance ID
26684
26688
  * @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
@@ -27245,7 +27249,7 @@ var CustomFormsV2025ApiFp = function (configuration) {
27245
27249
  });
27246
27250
  },
27247
27251
  /**
27248
- * Parameter `{formInstanceID}` should match a form instance ID.
27252
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
27249
27253
  * @summary Returns a form instance.
27250
27254
  * @param {string} formInstanceID Form instance ID
27251
27255
  * @param {*} [axiosOptions] Override http request option.
@@ -27339,7 +27343,7 @@ var CustomFormsV2025ApiFp = function (configuration) {
27339
27343
  });
27340
27344
  },
27341
27345
  /**
27342
- * Parameter `{formInstanceID}` should match a form instance ID.
27346
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
27343
27347
  * @summary Patch a form instance.
27344
27348
  * @param {string} formInstanceID Form instance ID
27345
27349
  * @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
@@ -27584,7 +27588,7 @@ var CustomFormsV2025ApiFactory = function (configuration, basePath, axios) {
27584
27588
  return localVarFp.getFormDefinitionByKey(requestParameters.formDefinitionID, axiosOptions).then(function (request) { return request(axios, basePath); });
27585
27589
  },
27586
27590
  /**
27587
- * Parameter `{formInstanceID}` should match a form instance ID.
27591
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
27588
27592
  * @summary Returns a form instance.
27589
27593
  * @param {CustomFormsV2025ApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
27590
27594
  * @param {*} [axiosOptions] Override http request option.
@@ -27625,7 +27629,7 @@ var CustomFormsV2025ApiFactory = function (configuration, basePath, axios) {
27625
27629
  return localVarFp.patchFormDefinition(requestParameters.formDefinitionID, requestParameters.body, axiosOptions).then(function (request) { return request(axios, basePath); });
27626
27630
  },
27627
27631
  /**
27628
- * Parameter `{formInstanceID}` should match a form instance ID.
27632
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
27629
27633
  * @summary Patch a form instance.
27630
27634
  * @param {CustomFormsV2025ApiPatchFormInstanceRequest} requestParameters Request parameters.
27631
27635
  * @param {*} [axiosOptions] Override http request option.
@@ -27800,7 +27804,7 @@ var CustomFormsV2025Api = /** @class */ (function (_super) {
27800
27804
  return (0, exports.CustomFormsV2025ApiFp)(this.configuration).getFormDefinitionByKey(requestParameters.formDefinitionID, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
27801
27805
  };
27802
27806
  /**
27803
- * Parameter `{formInstanceID}` should match a form instance ID.
27807
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
27804
27808
  * @summary Returns a form instance.
27805
27809
  * @param {CustomFormsV2025ApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
27806
27810
  * @param {*} [axiosOptions] Override http request option.
@@ -27849,7 +27853,7 @@ var CustomFormsV2025Api = /** @class */ (function (_super) {
27849
27853
  return (0, exports.CustomFormsV2025ApiFp)(this.configuration).patchFormDefinition(requestParameters.formDefinitionID, requestParameters.body, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
27850
27854
  };
27851
27855
  /**
27852
- * Parameter `{formInstanceID}` should match a form instance ID.
27856
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
27853
27857
  * @summary Patch a form instance.
27854
27858
  * @param {CustomFormsV2025ApiPatchFormInstanceRequest} requestParameters Request parameters.
27855
27859
  * @param {*} [axiosOptions] Override http request option.
@@ -97038,7 +97042,7 @@ var WorkflowsV2025ApiAxiosParamCreator = function (configuration) {
97038
97042
  * @summary List workflow library triggers
97039
97043
  * @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.
97040
97044
  * @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.
97041
- * @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*
97045
+ * @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*
97042
97046
  * @param {*} [axiosOptions] Override http request option.
97043
97047
  * @throws {RequiredError}
97044
97048
  */
@@ -97703,7 +97707,7 @@ var WorkflowsV2025ApiFp = function (configuration) {
97703
97707
  * @summary List workflow library triggers
97704
97708
  * @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.
97705
97709
  * @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.
97706
- * @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*
97710
+ * @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*
97707
97711
  * @param {*} [axiosOptions] Override http request option.
97708
97712
  * @throws {RequiredError}
97709
97713
  */