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
  }
@@ -12220,6 +12220,8 @@ export declare const CampaignReferenceV2026CampaignTypeV2026: {
12220
12220
  readonly Manager: "MANAGER";
12221
12221
  readonly SourceOwner: "SOURCE_OWNER";
12222
12222
  readonly Search: "SEARCH";
12223
+ readonly RoleComposition: "ROLE_COMPOSITION";
12224
+ readonly MachineAccount: "MACHINE_ACCOUNT";
12223
12225
  };
12224
12226
  export type CampaignReferenceV2026CampaignTypeV2026 = typeof CampaignReferenceV2026CampaignTypeV2026[keyof typeof CampaignReferenceV2026CampaignTypeV2026];
12225
12227
  export declare const CampaignReferenceV2026CorrelatedStatusV2026: {
@@ -38236,11 +38238,11 @@ export interface ReviewerV2026 {
38236
38238
  */
38237
38239
  'name'?: string;
38238
38240
  /**
38239
- * The email of the reviewing identity.
38241
+ * The email of the reviewing identity. This is only applicable to reviewers of the `IDENTITY` type.
38240
38242
  * @type {string}
38241
38243
  * @memberof ReviewerV2026
38242
38244
  */
38243
- 'email'?: string;
38245
+ 'email'?: string | null;
38244
38246
  /**
38245
38247
  * The type of the reviewing identity.
38246
38248
  * @type {string}
@@ -38262,6 +38264,7 @@ export interface ReviewerV2026 {
38262
38264
  }
38263
38265
  export declare const ReviewerV2026TypeV2026: {
38264
38266
  readonly Identity: "IDENTITY";
38267
+ readonly GovernanceGroup: "GOVERNANCE_GROUP";
38265
38268
  };
38266
38269
  export type ReviewerV2026TypeV2026 = typeof ReviewerV2026TypeV2026[keyof typeof ReviewerV2026TypeV2026];
38267
38270
  /**
@@ -52336,19 +52339,19 @@ export interface WorkflowLibraryTriggerV2026 {
52336
52339
  */
52337
52340
  'type'?: WorkflowLibraryTriggerV2026TypeV2026;
52338
52341
  /**
52339
- *
52342
+ * Whether the trigger is deprecated.
52340
52343
  * @type {boolean}
52341
52344
  * @memberof WorkflowLibraryTriggerV2026
52342
52345
  */
52343
52346
  'deprecated'?: boolean;
52344
52347
  /**
52345
- *
52348
+ * Date the trigger was deprecated, if applicable.
52346
52349
  * @type {string}
52347
52350
  * @memberof WorkflowLibraryTriggerV2026
52348
52351
  */
52349
52352
  'deprecatedBy'?: string;
52350
52353
  /**
52351
- *
52354
+ * Whether the trigger can be simulated.
52352
52355
  * @type {boolean}
52353
52356
  * @memberof WorkflowLibraryTriggerV2026
52354
52357
  */
@@ -52394,6 +52397,7 @@ export declare const WorkflowLibraryTriggerV2026TypeV2026: {
52394
52397
  readonly Event: "EVENT";
52395
52398
  readonly Scheduled: "SCHEDULED";
52396
52399
  readonly External: "EXTERNAL";
52400
+ readonly AccessRequestTrigger: "AccessRequestTrigger";
52397
52401
  };
52398
52402
  export type WorkflowLibraryTriggerV2026TypeV2026 = typeof WorkflowLibraryTriggerV2026TypeV2026[keyof typeof WorkflowLibraryTriggerV2026TypeV2026];
52399
52403
  /**
@@ -64847,7 +64851,7 @@ export declare const CustomFormsV2026ApiAxiosParamCreator: (configuration?: Conf
64847
64851
  */
64848
64852
  getFormDefinitionByKey: (formDefinitionID: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
64849
64853
  /**
64850
- * 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.
64851
64855
  * @summary Returns a form instance.
64852
64856
  * @param {string} formInstanceID Form instance ID
64853
64857
  * @param {*} [axiosOptions] Override http request option.
@@ -64883,7 +64887,7 @@ export declare const CustomFormsV2026ApiAxiosParamCreator: (configuration?: Conf
64883
64887
  [key: string]: object;
64884
64888
  }[], axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
64885
64889
  /**
64886
- * 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.
64887
64891
  * @summary Patch a form instance.
64888
64892
  * @param {string} formInstanceID Form instance ID
64889
64893
  * @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
@@ -65021,7 +65025,7 @@ export declare const CustomFormsV2026ApiFp: (configuration?: Configuration) => {
65021
65025
  */
65022
65026
  getFormDefinitionByKey(formDefinitionID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FormDefinitionResponseV2026>>;
65023
65027
  /**
65024
- * 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.
65025
65029
  * @summary Returns a form instance.
65026
65030
  * @param {string} formInstanceID Form instance ID
65027
65031
  * @param {*} [axiosOptions] Override http request option.
@@ -65057,7 +65061,7 @@ export declare const CustomFormsV2026ApiFp: (configuration?: Configuration) => {
65057
65061
  [key: string]: object;
65058
65062
  }[], axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FormDefinitionResponseV2026>>;
65059
65063
  /**
65060
- * 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.
65061
65065
  * @summary Patch a form instance.
65062
65066
  * @param {string} formInstanceID Form instance ID
65063
65067
  * @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
@@ -65190,7 +65194,7 @@ export declare const CustomFormsV2026ApiFactory: (configuration?: Configuration,
65190
65194
  */
65191
65195
  getFormDefinitionByKey(requestParameters: CustomFormsV2026ApiGetFormDefinitionByKeyRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<FormDefinitionResponseV2026>;
65192
65196
  /**
65193
- * 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.
65194
65198
  * @summary Returns a form instance.
65195
65199
  * @param {CustomFormsV2026ApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
65196
65200
  * @param {*} [axiosOptions] Override http request option.
@@ -65222,7 +65226,7 @@ export declare const CustomFormsV2026ApiFactory: (configuration?: Configuration,
65222
65226
  */
65223
65227
  patchFormDefinition(requestParameters: CustomFormsV2026ApiPatchFormDefinitionRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<FormDefinitionResponseV2026>;
65224
65228
  /**
65225
- * 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.
65226
65230
  * @summary Patch a form instance.
65227
65231
  * @param {CustomFormsV2026ApiPatchFormInstanceRequest} requestParameters Request parameters.
65228
65232
  * @param {*} [axiosOptions] Override http request option.
@@ -65700,7 +65704,7 @@ export declare class CustomFormsV2026Api extends BaseAPI {
65700
65704
  */
65701
65705
  getFormDefinitionByKey(requestParameters: CustomFormsV2026ApiGetFormDefinitionByKeyRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FormDefinitionResponseV2026, any>>;
65702
65706
  /**
65703
- * 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.
65704
65708
  * @summary Returns a form instance.
65705
65709
  * @param {CustomFormsV2026ApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
65706
65710
  * @param {*} [axiosOptions] Override http request option.
@@ -65736,7 +65740,7 @@ export declare class CustomFormsV2026Api extends BaseAPI {
65736
65740
  */
65737
65741
  patchFormDefinition(requestParameters: CustomFormsV2026ApiPatchFormDefinitionRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FormDefinitionResponseV2026, any>>;
65738
65742
  /**
65739
- * 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.
65740
65744
  * @summary Patch a form instance.
65741
65745
  * @param {CustomFormsV2026ApiPatchFormInstanceRequest} requestParameters Request parameters.
65742
65746
  * @param {*} [axiosOptions] Override http request option.
@@ -101904,7 +101908,7 @@ export declare const WorkflowsV2026ApiAxiosParamCreator: (configuration?: Config
101904
101908
  * @summary List workflow library triggers
101905
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.
101906
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.
101907
- * @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*
101908
101912
  * @param {*} [axiosOptions] Override http request option.
101909
101913
  * @throws {RequiredError}
101910
101914
  */
@@ -102073,7 +102077,7 @@ export declare const WorkflowsV2026ApiFp: (configuration?: Configuration) => {
102073
102077
  * @summary List workflow library triggers
102074
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.
102075
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.
102076
- * @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*
102077
102081
  * @param {*} [axiosOptions] Override http request option.
102078
102082
  * @throws {RequiredError}
102079
102083
  */
@@ -102495,7 +102499,7 @@ export interface WorkflowsV2026ApiListWorkflowLibraryTriggersRequest {
102495
102499
  */
102496
102500
  readonly offset?: number;
102497
102501
  /**
102498
- * 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*
102499
102503
  * @type {string}
102500
102504
  * @memberof WorkflowsV2026ApiListWorkflowLibraryTriggers
102501
102505
  */
package/dist/v2026/api.js CHANGED
@@ -985,7 +985,9 @@ exports.CampaignReferenceV2026TypeV2026 = {
985
985
  exports.CampaignReferenceV2026CampaignTypeV2026 = {
986
986
  Manager: 'MANAGER',
987
987
  SourceOwner: 'SOURCE_OWNER',
988
- Search: 'SEARCH'
988
+ Search: 'SEARCH',
989
+ RoleComposition: 'ROLE_COMPOSITION',
990
+ MachineAccount: 'MACHINE_ACCOUNT'
989
991
  };
990
992
  exports.CampaignReferenceV2026CorrelatedStatusV2026 = {
991
993
  Correlated: 'CORRELATED',
@@ -3037,7 +3039,8 @@ exports.ReviewableEntitlementAccountOwnerV2026TypeV2026 = {
3037
3039
  Identity: 'IDENTITY'
3038
3040
  };
3039
3041
  exports.ReviewerV2026TypeV2026 = {
3040
- Identity: 'IDENTITY'
3042
+ Identity: 'IDENTITY',
3043
+ GovernanceGroup: 'GOVERNANCE_GROUP'
3041
3044
  };
3042
3045
  exports.RoleAssignmentDtoAssignerV2026TypeV2026 = {
3043
3046
  Identity: 'IDENTITY',
@@ -4060,7 +4063,8 @@ exports.WorkflowLibraryFormFieldsV2026TypeV2026 = {
4060
4063
  exports.WorkflowLibraryTriggerV2026TypeV2026 = {
4061
4064
  Event: 'EVENT',
4062
4065
  Scheduled: 'SCHEDULED',
4063
- External: 'EXTERNAL'
4066
+ External: 'EXTERNAL',
4067
+ AccessRequestTrigger: 'AccessRequestTrigger'
4064
4068
  };
4065
4069
  exports.WorkflowModifiedByV2026TypeV2026 = {
4066
4070
  Identity: 'IDENTITY'
@@ -26967,7 +26971,7 @@ var CustomFormsV2026ApiAxiosParamCreator = function (configuration) {
26967
26971
  });
26968
26972
  },
26969
26973
  /**
26970
- * Parameter `{formInstanceID}` should match a form instance ID.
26974
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
26971
26975
  * @summary Returns a form instance.
26972
26976
  * @param {string} formInstanceID Form instance ID
26973
26977
  * @param {*} [axiosOptions] Override http request option.
@@ -27185,7 +27189,7 @@ var CustomFormsV2026ApiAxiosParamCreator = function (configuration) {
27185
27189
  });
27186
27190
  },
27187
27191
  /**
27188
- * Parameter `{formInstanceID}` should match a form instance ID.
27192
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
27189
27193
  * @summary Patch a form instance.
27190
27194
  * @param {string} formInstanceID Form instance ID
27191
27195
  * @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
@@ -27752,7 +27756,7 @@ var CustomFormsV2026ApiFp = function (configuration) {
27752
27756
  });
27753
27757
  },
27754
27758
  /**
27755
- * Parameter `{formInstanceID}` should match a form instance ID.
27759
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
27756
27760
  * @summary Returns a form instance.
27757
27761
  * @param {string} formInstanceID Form instance ID
27758
27762
  * @param {*} [axiosOptions] Override http request option.
@@ -27846,7 +27850,7 @@ var CustomFormsV2026ApiFp = function (configuration) {
27846
27850
  });
27847
27851
  },
27848
27852
  /**
27849
- * Parameter `{formInstanceID}` should match a form instance ID.
27853
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
27850
27854
  * @summary Patch a form instance.
27851
27855
  * @param {string} formInstanceID Form instance ID
27852
27856
  * @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
@@ -28091,7 +28095,7 @@ var CustomFormsV2026ApiFactory = function (configuration, basePath, axios) {
28091
28095
  return localVarFp.getFormDefinitionByKey(requestParameters.formDefinitionID, axiosOptions).then(function (request) { return request(axios, basePath); });
28092
28096
  },
28093
28097
  /**
28094
- * Parameter `{formInstanceID}` should match a form instance ID.
28098
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
28095
28099
  * @summary Returns a form instance.
28096
28100
  * @param {CustomFormsV2026ApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
28097
28101
  * @param {*} [axiosOptions] Override http request option.
@@ -28132,7 +28136,7 @@ var CustomFormsV2026ApiFactory = function (configuration, basePath, axios) {
28132
28136
  return localVarFp.patchFormDefinition(requestParameters.formDefinitionID, requestParameters.body, axiosOptions).then(function (request) { return request(axios, basePath); });
28133
28137
  },
28134
28138
  /**
28135
- * Parameter `{formInstanceID}` should match a form instance ID.
28139
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
28136
28140
  * @summary Patch a form instance.
28137
28141
  * @param {CustomFormsV2026ApiPatchFormInstanceRequest} requestParameters Request parameters.
28138
28142
  * @param {*} [axiosOptions] Override http request option.
@@ -28307,7 +28311,7 @@ var CustomFormsV2026Api = /** @class */ (function (_super) {
28307
28311
  return (0, exports.CustomFormsV2026ApiFp)(this.configuration).getFormDefinitionByKey(requestParameters.formDefinitionID, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
28308
28312
  };
28309
28313
  /**
28310
- * Parameter `{formInstanceID}` should match a form instance ID.
28314
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
28311
28315
  * @summary Returns a form instance.
28312
28316
  * @param {CustomFormsV2026ApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
28313
28317
  * @param {*} [axiosOptions] Override http request option.
@@ -28356,7 +28360,7 @@ var CustomFormsV2026Api = /** @class */ (function (_super) {
28356
28360
  return (0, exports.CustomFormsV2026ApiFp)(this.configuration).patchFormDefinition(requestParameters.formDefinitionID, requestParameters.body, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
28357
28361
  };
28358
28362
  /**
28359
- * Parameter `{formInstanceID}` should match a form instance ID.
28363
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
28360
28364
  * @summary Patch a form instance.
28361
28365
  * @param {CustomFormsV2026ApiPatchFormInstanceRequest} requestParameters Request parameters.
28362
28366
  * @param {*} [axiosOptions] Override http request option.
@@ -99350,7 +99354,7 @@ var WorkflowsV2026ApiAxiosParamCreator = function (configuration) {
99350
99354
  * @summary List workflow library triggers
99351
99355
  * @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.
99352
99356
  * @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.
99353
- * @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*
99357
+ * @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*
99354
99358
  * @param {*} [axiosOptions] Override http request option.
99355
99359
  * @throws {RequiredError}
99356
99360
  */
@@ -100015,7 +100019,7 @@ var WorkflowsV2026ApiFp = function (configuration) {
100015
100019
  * @summary List workflow library triggers
100016
100020
  * @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.
100017
100021
  * @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.
100018
- * @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*
100022
+ * @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*
100019
100023
  * @param {*} [axiosOptions] Override http request option.
100020
100024
  * @throws {RequiredError}
100021
100025
  */