sailpoint-api-client 1.6.7 → 1.6.9

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 (68) hide show
  1. package/beta/README.md +2 -2
  2. package/beta/api.ts +87 -577
  3. package/beta/common.ts +2 -2
  4. package/beta/package.json +1 -1
  5. package/dist/beta/api.d.ts +81 -452
  6. package/dist/beta/api.js +30 -300
  7. package/dist/beta/api.js.map +1 -1
  8. package/dist/beta/common.js +1 -1
  9. package/dist/generic/api.d.ts +386 -0
  10. package/dist/generic/api.js +689 -0
  11. package/dist/generic/api.js.map +1 -0
  12. package/dist/generic/base.d.ts +66 -0
  13. package/dist/generic/base.js +89 -0
  14. package/dist/generic/base.js.map +1 -0
  15. package/dist/generic/common.d.ts +65 -0
  16. package/dist/generic/common.js +260 -0
  17. package/dist/generic/common.js.map +1 -0
  18. package/dist/generic/configuration.d.ts +91 -0
  19. package/dist/generic/configuration.js +46 -0
  20. package/dist/generic/configuration.js.map +1 -0
  21. package/dist/generic/index.d.ts +13 -0
  22. package/dist/generic/index.js +32 -0
  23. package/dist/generic/index.js.map +1 -0
  24. package/dist/index.d.ts +5 -4
  25. package/dist/index.js +1 -0
  26. package/dist/index.js.map +1 -1
  27. package/dist/paginator.d.ts +3 -1
  28. package/dist/paginator.js +146 -0
  29. package/dist/paginator.js.map +1 -1
  30. package/dist/v2024/api.d.ts +1838 -575
  31. package/dist/v2024/api.js +1894 -593
  32. package/dist/v2024/api.js.map +1 -1
  33. package/dist/v2024/common.js +1 -1
  34. package/dist/v2025/api.d.ts +4368 -679
  35. package/dist/v2025/api.js +3866 -904
  36. package/dist/v2025/api.js.map +1 -1
  37. package/dist/v2025/common.js +1 -1
  38. package/dist/v3/api.d.ts +45 -83
  39. package/dist/v3/api.js +31 -30
  40. package/dist/v3/api.js.map +1 -1
  41. package/dist/v3/common.js +1 -1
  42. package/generic/.openapi-generator/FILES +11 -0
  43. package/generic/.openapi-generator/VERSION +1 -0
  44. package/generic/.openapi-generator-ignore +23 -0
  45. package/generic/README.md +46 -0
  46. package/generic/api.ts +681 -0
  47. package/generic/base.ts +86 -0
  48. package/generic/common.ts +159 -0
  49. package/generic/configuration.ts +110 -0
  50. package/generic/git_push.sh +57 -0
  51. package/generic/index.ts +18 -0
  52. package/generic/package.json +34 -0
  53. package/generic/tsconfig.json +21 -0
  54. package/index.ts +9 -7
  55. package/package.json +1 -1
  56. package/paginator.ts +137 -11
  57. package/v2024/README.md +2 -2
  58. package/v2024/api.ts +3049 -1208
  59. package/v2024/common.ts +2 -2
  60. package/v2024/package.json +1 -1
  61. package/v2025/README.md +2 -2
  62. package/v2025/api.ts +7717 -2573
  63. package/v2025/common.ts +2 -2
  64. package/v2025/package.json +1 -1
  65. package/v3/README.md +2 -2
  66. package/v3/api.ts +61 -97
  67. package/v3/common.ts +2 -2
  68. package/v3/package.json +1 -1
@@ -3897,199 +3897,6 @@ export interface AppAccountDetailsSourceAccountBeta {
3897
3897
  */
3898
3898
  'sourceDisplayName'?: string;
3899
3899
  }
3900
- /**
3901
- * Batch properties if an approval is sent via batching.
3902
- * @export
3903
- * @interface ApprovalBatchBeta
3904
- */
3905
- export interface ApprovalBatchBeta {
3906
- /**
3907
- * ID of the batch
3908
- * @type {string}
3909
- * @memberof ApprovalBatchBeta
3910
- */
3911
- 'batchId'?: string;
3912
- /**
3913
- * How many approvals are going to be in this batch. Defaults to 1 if not provided.
3914
- * @type {number}
3915
- * @memberof ApprovalBatchBeta
3916
- */
3917
- 'batchSize'?: number;
3918
- }
3919
- /**
3920
- * Approval Object
3921
- * @export
3922
- * @interface ApprovalBeta
3923
- */
3924
- export interface ApprovalBeta {
3925
- /**
3926
- * The Approval ID
3927
- * @type {string}
3928
- * @memberof ApprovalBeta
3929
- */
3930
- 'approvalId'?: string;
3931
- /**
3932
- * Object representation of an approver of an approval
3933
- * @type {Array<ApprovalIdentityBeta>}
3934
- * @memberof ApprovalBeta
3935
- */
3936
- 'approvers'?: Array<ApprovalIdentityBeta>;
3937
- /**
3938
- * Date the approval was created
3939
- * @type {string}
3940
- * @memberof ApprovalBeta
3941
- */
3942
- 'createdDate'?: string;
3943
- /**
3944
- * Type of approval
3945
- * @type {string}
3946
- * @memberof ApprovalBeta
3947
- */
3948
- 'type'?: string;
3949
- /**
3950
- * The name of the approval for a given locale
3951
- * @type {Array<ApprovalNameBeta>}
3952
- * @memberof ApprovalBeta
3953
- */
3954
- 'name'?: Array<ApprovalNameBeta>;
3955
- /**
3956
- * The name of the approval for a given locale
3957
- * @type {ApprovalBatchBeta}
3958
- * @memberof ApprovalBeta
3959
- */
3960
- 'batchRequest'?: ApprovalBatchBeta;
3961
- /**
3962
- * The description of the approval for a given locale
3963
- * @type {Array<ApprovalDescriptionBeta>}
3964
- * @memberof ApprovalBeta
3965
- */
3966
- 'description'?: Array<ApprovalDescriptionBeta>;
3967
- /**
3968
- * The priority of the approval
3969
- * @type {string}
3970
- * @memberof ApprovalBeta
3971
- */
3972
- 'priority'?: ApprovalBetaPriorityBeta;
3973
- /**
3974
- * Object representation of the requester of the approval
3975
- * @type {ApprovalIdentityBeta}
3976
- * @memberof ApprovalBeta
3977
- */
3978
- 'requester'?: ApprovalIdentityBeta;
3979
- /**
3980
- * Object representation of a comment on the approval
3981
- * @type {Array<ApprovalCommentBeta>}
3982
- * @memberof ApprovalBeta
3983
- */
3984
- 'comments'?: Array<ApprovalCommentBeta>;
3985
- /**
3986
- * Array of approvers who have approved the approval
3987
- * @type {Array<ApprovalIdentityBeta>}
3988
- * @memberof ApprovalBeta
3989
- */
3990
- 'approvedBy'?: Array<ApprovalIdentityBeta>;
3991
- /**
3992
- * Array of approvers who have rejected the approval
3993
- * @type {Array<ApprovalIdentityBeta>}
3994
- * @memberof ApprovalBeta
3995
- */
3996
- 'rejectedBy'?: Array<ApprovalIdentityBeta>;
3997
- /**
3998
- * Date the approval was completed
3999
- * @type {string}
4000
- * @memberof ApprovalBeta
4001
- */
4002
- 'completedDate'?: string;
4003
- /**
4004
- * Criteria that needs to be met for an approval to be marked as approved
4005
- * @type {string}
4006
- * @memberof ApprovalBeta
4007
- */
4008
- 'approvalCriteria'?: ApprovalBetaApprovalCriteriaBeta;
4009
- /**
4010
- * The current status of the approval
4011
- * @type {string}
4012
- * @memberof ApprovalBeta
4013
- */
4014
- 'status'?: ApprovalBetaStatusBeta;
4015
- /**
4016
- * Json string representing additional attributes known about the object to be approved.
4017
- * @type {string}
4018
- * @memberof ApprovalBeta
4019
- */
4020
- 'additionalAttributes'?: string;
4021
- /**
4022
- * Reference data related to the approval
4023
- * @type {Array<ApprovalReferenceBeta>}
4024
- * @memberof ApprovalBeta
4025
- */
4026
- 'referenceData'?: Array<ApprovalReferenceBeta>;
4027
- }
4028
- export declare const ApprovalBetaPriorityBeta: {
4029
- readonly High: "HIGH";
4030
- readonly Medium: "MEDIUM";
4031
- readonly Low: "LOW";
4032
- };
4033
- export type ApprovalBetaPriorityBeta = typeof ApprovalBetaPriorityBeta[keyof typeof ApprovalBetaPriorityBeta];
4034
- export declare const ApprovalBetaApprovalCriteriaBeta: {
4035
- readonly Single: "SINGLE";
4036
- readonly Double: "DOUBLE";
4037
- readonly Triple: "TRIPLE";
4038
- readonly Quarter: "QUARTER";
4039
- readonly Half: "HALF";
4040
- readonly All: "ALL";
4041
- };
4042
- export type ApprovalBetaApprovalCriteriaBeta = typeof ApprovalBetaApprovalCriteriaBeta[keyof typeof ApprovalBetaApprovalCriteriaBeta];
4043
- export declare const ApprovalBetaStatusBeta: {
4044
- readonly Pending: "PENDING";
4045
- readonly Approved: "APPROVED";
4046
- readonly Rejected: "REJECTED";
4047
- };
4048
- export type ApprovalBetaStatusBeta = typeof ApprovalBetaStatusBeta[keyof typeof ApprovalBetaStatusBeta];
4049
- /**
4050
- * Comments Object
4051
- * @export
4052
- * @interface ApprovalCommentBeta
4053
- */
4054
- export interface ApprovalCommentBeta {
4055
- /**
4056
- *
4057
- * @type {ApprovalIdentityBeta}
4058
- * @memberof ApprovalCommentBeta
4059
- */
4060
- 'author'?: ApprovalIdentityBeta;
4061
- /**
4062
- * Comment to be left on an approval
4063
- * @type {string}
4064
- * @memberof ApprovalCommentBeta
4065
- */
4066
- 'comment'?: string;
4067
- /**
4068
- * Date the comment was created
4069
- * @type {string}
4070
- * @memberof ApprovalCommentBeta
4071
- */
4072
- 'createdDate'?: string;
4073
- }
4074
- /**
4075
- * The description of what the approval is asking for
4076
- * @export
4077
- * @interface ApprovalDescriptionBeta
4078
- */
4079
- export interface ApprovalDescriptionBeta {
4080
- /**
4081
- * The description of what the approval is asking for
4082
- * @type {string}
4083
- * @memberof ApprovalDescriptionBeta
4084
- */
4085
- 'value'?: string;
4086
- /**
4087
- * What locale the description of the approval is using
4088
- * @type {string}
4089
- * @memberof ApprovalDescriptionBeta
4090
- */
4091
- 'locale'?: string;
4092
- }
4093
3900
  /**
4094
3901
  *
4095
3902
  * @export
@@ -4133,35 +3940,6 @@ export interface ApprovalForwardHistoryBeta {
4133
3940
  */
4134
3941
  'reassignmentType'?: ReassignmentTypeBeta;
4135
3942
  }
4136
- /**
4137
- * Identity Object
4138
- * @export
4139
- * @interface ApprovalIdentityBeta
4140
- */
4141
- export interface ApprovalIdentityBeta {
4142
- /**
4143
- * The identity ID
4144
- * @type {string}
4145
- * @memberof ApprovalIdentityBeta
4146
- */
4147
- 'id'?: string;
4148
- /**
4149
- * Indication of what group the identity belongs to. Ie, IDENTITY, GOVERNANCE_GROUP, etc
4150
- * @type {string}
4151
- * @memberof ApprovalIdentityBeta
4152
- */
4153
- 'type'?: ApprovalIdentityBetaTypeBeta;
4154
- /**
4155
- * Name of the identity
4156
- * @type {string}
4157
- * @memberof ApprovalIdentityBeta
4158
- */
4159
- 'name'?: string;
4160
- }
4161
- export declare const ApprovalIdentityBetaTypeBeta: {
4162
- readonly Identity: "IDENTITY";
4163
- };
4164
- export type ApprovalIdentityBetaTypeBeta = typeof ApprovalIdentityBetaTypeBeta[keyof typeof ApprovalIdentityBetaTypeBeta];
4165
3943
  /**
4166
3944
  *
4167
3945
  * @export
@@ -4285,44 +4063,6 @@ export interface ApprovalItemsBeta {
4285
4063
  */
4286
4064
  'state'?: WorkItemStateBeta | null;
4287
4065
  }
4288
- /**
4289
- * Approval Name Object
4290
- * @export
4291
- * @interface ApprovalNameBeta
4292
- */
4293
- export interface ApprovalNameBeta {
4294
- /**
4295
- * Name of the approval
4296
- * @type {string}
4297
- * @memberof ApprovalNameBeta
4298
- */
4299
- 'value'?: string;
4300
- /**
4301
- * What locale the name of the approval is using
4302
- * @type {string}
4303
- * @memberof ApprovalNameBeta
4304
- */
4305
- 'locale'?: string;
4306
- }
4307
- /**
4308
- * Reference objects related to the approval
4309
- * @export
4310
- * @interface ApprovalReferenceBeta
4311
- */
4312
- export interface ApprovalReferenceBeta {
4313
- /**
4314
- * Id of the reference object
4315
- * @type {string}
4316
- * @memberof ApprovalReferenceBeta
4317
- */
4318
- 'id'?: string;
4319
- /**
4320
- * What reference object does this ID correspond to
4321
- * @type {string}
4322
- * @memberof ApprovalReferenceBeta
4323
- */
4324
- 'type'?: string;
4325
- }
4326
4066
  /**
4327
4067
  *
4328
4068
  * @export
@@ -11134,17 +10874,11 @@ export type FormInstanceRecipientBetaTypeBeta = typeof FormInstanceRecipientBeta
11134
10874
  */
11135
10875
  export interface FormInstanceResponseBeta {
11136
10876
  /**
11137
- * Created is the date the form instance was assigned
10877
+ * Unique guid identifying this form instance
11138
10878
  * @type {string}
11139
10879
  * @memberof FormInstanceResponseBeta
11140
10880
  */
11141
- 'created'?: string;
11142
- /**
11143
- *
11144
- * @type {FormInstanceCreatedByBeta}
11145
- * @memberof FormInstanceResponseBeta
11146
- */
11147
- 'createdBy'?: FormInstanceCreatedByBeta;
10881
+ 'id'?: string;
11148
10882
  /**
11149
10883
  * Expire is the maximum amount of time that a form can be in progress. After this time is reached then the form will be moved to a CANCELED state automatically. The user will no longer be able to complete the submission. When a form instance is expires an audit log will be generated for that record
11150
10884
  * @type {string}
@@ -11152,37 +10886,35 @@ export interface FormInstanceResponseBeta {
11152
10886
  */
11153
10887
  'expire'?: string;
11154
10888
  /**
11155
- * FormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form
11156
- * @type {Array<FormConditionBeta>}
10889
+ * State the state of the form instance ASSIGNED FormInstanceStateAssigned IN_PROGRESS FormInstanceStateInProgress SUBMITTED FormInstanceStateSubmitted COMPLETED FormInstanceStateCompleted CANCELLED FormInstanceStateCancelled
10890
+ * @type {string}
11157
10891
  * @memberof FormInstanceResponseBeta
11158
10892
  */
11159
- 'formConditions'?: Array<FormConditionBeta>;
10893
+ 'state'?: FormInstanceResponseBetaStateBeta;
11160
10894
  /**
11161
- * FormData is the data provided by the form on submit. The data is in a key -> value map
11162
- * @type {{ [key: string]: any; }}
10895
+ * StandAloneForm is a boolean flag to indicate if this form should be available for users to complete via the standalone form UI or should this only be available to be completed by as an embedded form
10896
+ * @type {boolean}
11163
10897
  * @memberof FormInstanceResponseBeta
11164
10898
  */
11165
- 'formData'?: {
11166
- [key: string]: any;
11167
- } | null;
10899
+ 'standAloneForm'?: boolean;
11168
10900
  /**
11169
- * FormDefinitionID is the id of the form definition that created this form
10901
+ * StandAloneFormURL is the URL where this form may be completed by the designated recipients using the standalone form UI
11170
10902
  * @type {string}
11171
10903
  * @memberof FormInstanceResponseBeta
11172
10904
  */
11173
- 'formDefinitionId'?: string;
10905
+ 'standAloneFormUrl'?: string;
11174
10906
  /**
11175
- * FormElements is the configuration of the form, this would be a repeat of the fields from the form-config
11176
- * @type {Array<FormElementBeta>}
10907
+ *
10908
+ * @type {FormInstanceCreatedByBeta}
11177
10909
  * @memberof FormInstanceResponseBeta
11178
10910
  */
11179
- 'formElements'?: Array<FormElementBeta>;
10911
+ 'createdBy'?: FormInstanceCreatedByBeta;
11180
10912
  /**
11181
- * FormErrors is an array of form validation errors from the last time the form instance was transitioned to the SUBMITTED state. If the form instance had validation errors then it would be moved to the IN PROGRESS state where the client can retrieve these errors
11182
- * @type {Array<FormErrorBeta>}
10913
+ * FormDefinitionID is the id of the form definition that created this form
10914
+ * @type {string}
11183
10915
  * @memberof FormInstanceResponseBeta
11184
10916
  */
11185
- 'formErrors'?: Array<FormErrorBeta>;
10917
+ 'formDefinitionId'?: string;
11186
10918
  /**
11187
10919
  * FormInput is an object of form input labels to value
11188
10920
  * @type {{ [key: string]: object; }}
@@ -11192,41 +10924,49 @@ export interface FormInstanceResponseBeta {
11192
10924
  [key: string]: object;
11193
10925
  } | null;
11194
10926
  /**
11195
- * Unique guid identifying this form instance
11196
- * @type {string}
10927
+ * FormElements is the configuration of the form, this would be a repeat of the fields from the form-config
10928
+ * @type {Array<FormElementBeta>}
11197
10929
  * @memberof FormInstanceResponseBeta
11198
10930
  */
11199
- 'id'?: string;
10931
+ 'formElements'?: Array<FormElementBeta>;
11200
10932
  /**
11201
- * Modified is the last date the form instance was modified
11202
- * @type {string}
10933
+ * FormData is the data provided by the form on submit. The data is in a key -> value map
10934
+ * @type {{ [key: string]: any; }}
11203
10935
  * @memberof FormInstanceResponseBeta
11204
10936
  */
11205
- 'modified'?: string;
10937
+ 'formData'?: {
10938
+ [key: string]: any;
10939
+ } | null;
11206
10940
  /**
11207
- * Recipients references to the recipient of a form. The recipients are those who are responsible for filling out a form and completing it
11208
- * @type {Array<FormInstanceRecipientBeta>}
10941
+ * FormErrors is an array of form validation errors from the last time the form instance was transitioned to the SUBMITTED state. If the form instance had validation errors then it would be moved to the IN PROGRESS state where the client can retrieve these errors
10942
+ * @type {Array<FormErrorBeta>}
11209
10943
  * @memberof FormInstanceResponseBeta
11210
10944
  */
11211
- 'recipients'?: Array<FormInstanceRecipientBeta>;
10945
+ 'formErrors'?: Array<FormErrorBeta>;
11212
10946
  /**
11213
- * StandAloneForm is a boolean flag to indicate if this form should be available for users to complete via the standalone form UI or should this only be available to be completed by as an embedded form
11214
- * @type {boolean}
10947
+ * FormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form
10948
+ * @type {Array<FormConditionBeta>}
11215
10949
  * @memberof FormInstanceResponseBeta
11216
10950
  */
11217
- 'standAloneForm'?: boolean;
10951
+ 'formConditions'?: Array<FormConditionBeta>;
11218
10952
  /**
11219
- * StandAloneFormURL is the URL where this form may be completed by the designated recipients using the standalone form UI
10953
+ * Created is the date the form instance was assigned
11220
10954
  * @type {string}
11221
10955
  * @memberof FormInstanceResponseBeta
11222
10956
  */
11223
- 'standAloneFormUrl'?: string;
10957
+ 'created'?: string;
11224
10958
  /**
11225
- * State the state of the form instance ASSIGNED FormInstanceStateAssigned IN_PROGRESS FormInstanceStateInProgress SUBMITTED FormInstanceStateSubmitted COMPLETED FormInstanceStateCompleted CANCELLED FormInstanceStateCancelled
10959
+ * Modified is the last date the form instance was modified
11226
10960
  * @type {string}
11227
10961
  * @memberof FormInstanceResponseBeta
11228
10962
  */
11229
- 'state'?: FormInstanceResponseBetaStateBeta;
10963
+ 'modified'?: string;
10964
+ /**
10965
+ * Recipients references to the recipient of a form. The recipients are those who are responsible for filling out a form and completing it
10966
+ * @type {Array<FormInstanceRecipientBeta>}
10967
+ * @memberof FormInstanceResponseBeta
10968
+ */
10969
+ 'recipients'?: Array<FormInstanceRecipientBeta>;
11230
10970
  }
11231
10971
  export declare const FormInstanceResponseBetaStateBeta: {
11232
10972
  readonly Assigned: "ASSIGNED";
@@ -14060,12 +13800,6 @@ export interface IdentityWithNewAccessAccessRefsInnerBeta {
14060
13800
  * @memberof IdentityWithNewAccessAccessRefsInnerBeta
14061
13801
  */
14062
13802
  'id'?: string;
14063
- /**
14064
- * Entitlement\'s display name.
14065
- * @type {string}
14066
- * @memberof IdentityWithNewAccessAccessRefsInnerBeta
14067
- */
14068
- 'name'?: string;
14069
13803
  }
14070
13804
  export declare const IdentityWithNewAccessAccessRefsInnerBetaTypeBeta: {
14071
13805
  readonly Entitlement: "ENTITLEMENT";
@@ -27732,10 +27466,10 @@ export interface SourceBeta {
27732
27466
  'description'?: string;
27733
27467
  /**
27734
27468
  *
27735
- * @type {MultiHostIntegrationsOwnerBeta}
27469
+ * @type {SourceOwnerBeta}
27736
27470
  * @memberof SourceBeta
27737
27471
  */
27738
- 'owner': MultiHostIntegrationsOwnerBeta;
27472
+ 'owner': SourceOwnerBeta | null;
27739
27473
  /**
27740
27474
  *
27741
27475
  * @type {MultiHostIntegrationsClusterBeta}
@@ -28221,6 +27955,35 @@ export interface SourceItemRefBeta {
28221
27955
  */
28222
27956
  'accounts'?: Array<AccountItemRefBeta> | null;
28223
27957
  }
27958
+ /**
27959
+ * Reference to identity object who owns the source.
27960
+ * @export
27961
+ * @interface SourceOwnerBeta
27962
+ */
27963
+ export interface SourceOwnerBeta {
27964
+ /**
27965
+ * Type of object being referenced.
27966
+ * @type {string}
27967
+ * @memberof SourceOwnerBeta
27968
+ */
27969
+ 'type'?: SourceOwnerBetaTypeBeta;
27970
+ /**
27971
+ * Owner identity\'s ID.
27972
+ * @type {string}
27973
+ * @memberof SourceOwnerBeta
27974
+ */
27975
+ 'id'?: string;
27976
+ /**
27977
+ * Owner identity\'s human-readable display name.
27978
+ * @type {string}
27979
+ * @memberof SourceOwnerBeta
27980
+ */
27981
+ 'name'?: string;
27982
+ }
27983
+ export declare const SourceOwnerBetaTypeBeta: {
27984
+ readonly Identity: "IDENTITY";
27985
+ };
27986
+ export type SourceOwnerBetaTypeBeta = typeof SourceOwnerBetaTypeBeta[keyof typeof SourceOwnerBetaTypeBeta];
28224
27987
  /**
28225
27988
  *
28226
27989
  * @export
@@ -36203,140 +35966,6 @@ export declare const GetDiscoveredApplicationsDetailBeta: {
36203
35966
  readonly Full: "FULL";
36204
35967
  };
36205
35968
  export type GetDiscoveredApplicationsDetailBeta = typeof GetDiscoveredApplicationsDetailBeta[keyof typeof GetDiscoveredApplicationsDetailBeta];
36206
- /**
36207
- * ApprovalsBetaApi - axios parameter creator
36208
- * @export
36209
- */
36210
- export declare const ApprovalsBetaApiAxiosParamCreator: (configuration?: Configuration) => {
36211
- /**
36212
- * Get a single approval for a given approval ID. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and doesn\'t include access-request-approvals.
36213
- * @summary Get approval
36214
- * @param {string} id ID of the approval that to be returned.
36215
- * @param {*} [axiosOptions] Override http request option.
36216
- * @throws {RequiredError}
36217
- */
36218
- getApproval: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
36219
- /**
36220
- * Get a list of approvals, which can be filtered by requester ID, status, or reference type. You can use the \"Mine\" query parameter to return all approvals for the current approver. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and does not include access-request-approvals. Absence of all query parameters will will default to mine=true.
36221
- * @summary Get approvals
36222
- * @param {boolean} [mine] Returns the list of approvals for the current caller.
36223
- * @param {string} [requesterId] Returns the list of approvals for a given requester ID.
36224
- * @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: **status**: *eq* **referenceType**: *eq*
36225
- * @param {*} [axiosOptions] Override http request option.
36226
- * @throws {RequiredError}
36227
- */
36228
- getApprovals: (mine?: boolean, requesterId?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
36229
- };
36230
- /**
36231
- * ApprovalsBetaApi - functional programming interface
36232
- * @export
36233
- */
36234
- export declare const ApprovalsBetaApiFp: (configuration?: Configuration) => {
36235
- /**
36236
- * Get a single approval for a given approval ID. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and doesn\'t include access-request-approvals.
36237
- * @summary Get approval
36238
- * @param {string} id ID of the approval that to be returned.
36239
- * @param {*} [axiosOptions] Override http request option.
36240
- * @throws {RequiredError}
36241
- */
36242
- getApproval(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApprovalBeta>>;
36243
- /**
36244
- * Get a list of approvals, which can be filtered by requester ID, status, or reference type. You can use the \"Mine\" query parameter to return all approvals for the current approver. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and does not include access-request-approvals. Absence of all query parameters will will default to mine=true.
36245
- * @summary Get approvals
36246
- * @param {boolean} [mine] Returns the list of approvals for the current caller.
36247
- * @param {string} [requesterId] Returns the list of approvals for a given requester ID.
36248
- * @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: **status**: *eq* **referenceType**: *eq*
36249
- * @param {*} [axiosOptions] Override http request option.
36250
- * @throws {RequiredError}
36251
- */
36252
- getApprovals(mine?: boolean, requesterId?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ApprovalBeta>>>;
36253
- };
36254
- /**
36255
- * ApprovalsBetaApi - factory interface
36256
- * @export
36257
- */
36258
- export declare const ApprovalsBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
36259
- /**
36260
- * Get a single approval for a given approval ID. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and doesn\'t include access-request-approvals.
36261
- * @summary Get approval
36262
- * @param {ApprovalsBetaApiGetApprovalRequest} requestParameters Request parameters.
36263
- * @param {*} [axiosOptions] Override http request option.
36264
- * @throws {RequiredError}
36265
- */
36266
- getApproval(requestParameters: ApprovalsBetaApiGetApprovalRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ApprovalBeta>;
36267
- /**
36268
- * Get a list of approvals, which can be filtered by requester ID, status, or reference type. You can use the \"Mine\" query parameter to return all approvals for the current approver. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and does not include access-request-approvals. Absence of all query parameters will will default to mine=true.
36269
- * @summary Get approvals
36270
- * @param {ApprovalsBetaApiGetApprovalsRequest} requestParameters Request parameters.
36271
- * @param {*} [axiosOptions] Override http request option.
36272
- * @throws {RequiredError}
36273
- */
36274
- getApprovals(requestParameters?: ApprovalsBetaApiGetApprovalsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ApprovalBeta>>;
36275
- };
36276
- /**
36277
- * Request parameters for getApproval operation in ApprovalsBetaApi.
36278
- * @export
36279
- * @interface ApprovalsBetaApiGetApprovalRequest
36280
- */
36281
- export interface ApprovalsBetaApiGetApprovalRequest {
36282
- /**
36283
- * ID of the approval that to be returned.
36284
- * @type {string}
36285
- * @memberof ApprovalsBetaApiGetApproval
36286
- */
36287
- readonly id: string;
36288
- }
36289
- /**
36290
- * Request parameters for getApprovals operation in ApprovalsBetaApi.
36291
- * @export
36292
- * @interface ApprovalsBetaApiGetApprovalsRequest
36293
- */
36294
- export interface ApprovalsBetaApiGetApprovalsRequest {
36295
- /**
36296
- * Returns the list of approvals for the current caller.
36297
- * @type {boolean}
36298
- * @memberof ApprovalsBetaApiGetApprovals
36299
- */
36300
- readonly mine?: boolean;
36301
- /**
36302
- * Returns the list of approvals for a given requester ID.
36303
- * @type {string}
36304
- * @memberof ApprovalsBetaApiGetApprovals
36305
- */
36306
- readonly requesterId?: string;
36307
- /**
36308
- * 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: **status**: *eq* **referenceType**: *eq*
36309
- * @type {string}
36310
- * @memberof ApprovalsBetaApiGetApprovals
36311
- */
36312
- readonly filters?: string;
36313
- }
36314
- /**
36315
- * ApprovalsBetaApi - object-oriented interface
36316
- * @export
36317
- * @class ApprovalsBetaApi
36318
- * @extends {BaseAPI}
36319
- */
36320
- export declare class ApprovalsBetaApi extends BaseAPI {
36321
- /**
36322
- * Get a single approval for a given approval ID. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and doesn\'t include access-request-approvals.
36323
- * @summary Get approval
36324
- * @param {ApprovalsBetaApiGetApprovalRequest} requestParameters Request parameters.
36325
- * @param {*} [axiosOptions] Override http request option.
36326
- * @throws {RequiredError}
36327
- * @memberof ApprovalsBetaApi
36328
- */
36329
- getApproval(requestParameters: ApprovalsBetaApiGetApprovalRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApprovalBeta, any>>;
36330
- /**
36331
- * Get a list of approvals, which can be filtered by requester ID, status, or reference type. You can use the \"Mine\" query parameter to return all approvals for the current approver. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and does not include access-request-approvals. Absence of all query parameters will will default to mine=true.
36332
- * @summary Get approvals
36333
- * @param {ApprovalsBetaApiGetApprovalsRequest} requestParameters Request parameters.
36334
- * @param {*} [axiosOptions] Override http request option.
36335
- * @throws {RequiredError}
36336
- * @memberof ApprovalsBetaApi
36337
- */
36338
- getApprovals(requestParameters?: ApprovalsBetaApiGetApprovalsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApprovalBeta[], any>>;
36339
- }
36340
35969
  /**
36341
35970
  * AppsBetaApi - axios parameter creator
36342
35971
  * @export
@@ -65450,12 +65079,12 @@ export declare const WorkflowsBetaApiAxiosParamCreator: (configuration?: Configu
65450
65079
  * @summary List workflows
65451
65080
  * @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.
65452
65081
  * @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.
65453
- * @param {string} [triggerId] Trigger ID
65454
- * @param {string} [connectorInstanceId] Connector Instance ID
65082
+ * @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: **enabled**: *eq* **connectorInstanceId**: *eq* **triggerId**: *eq*
65083
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **modified, name**
65455
65084
  * @param {*} [axiosOptions] Override http request option.
65456
65085
  * @throws {RequiredError}
65457
65086
  */
65458
- listWorkflows: (limit?: number, offset?: number, triggerId?: string, connectorInstanceId?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
65087
+ listWorkflows: (limit?: number, offset?: number, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
65459
65088
  /**
65460
65089
  * Partially update an existing Workflow using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax.
65461
65090
  * @summary Patch workflow
@@ -65616,12 +65245,12 @@ export declare const WorkflowsBetaApiFp: (configuration?: Configuration) => {
65616
65245
  * @summary List workflows
65617
65246
  * @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.
65618
65247
  * @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.
65619
- * @param {string} [triggerId] Trigger ID
65620
- * @param {string} [connectorInstanceId] Connector Instance ID
65248
+ * @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: **enabled**: *eq* **connectorInstanceId**: *eq* **triggerId**: *eq*
65249
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **modified, name**
65621
65250
  * @param {*} [axiosOptions] Override http request option.
65622
65251
  * @throws {RequiredError}
65623
65252
  */
65624
- listWorkflows(limit?: number, offset?: number, triggerId?: string, connectorInstanceId?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<WorkflowBeta>>>;
65253
+ listWorkflows(limit?: number, offset?: number, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<WorkflowBeta>>>;
65625
65254
  /**
65626
65255
  * Partially update an existing Workflow using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax.
65627
65256
  * @summary Patch workflow
@@ -66028,17 +65657,17 @@ export interface WorkflowsBetaApiListWorkflowsRequest {
66028
65657
  */
66029
65658
  readonly offset?: number;
66030
65659
  /**
66031
- * Trigger ID
65660
+ * 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: **enabled**: *eq* **connectorInstanceId**: *eq* **triggerId**: *eq*
66032
65661
  * @type {string}
66033
65662
  * @memberof WorkflowsBetaApiListWorkflows
66034
65663
  */
66035
- readonly triggerId?: string;
65664
+ readonly filters?: string;
66036
65665
  /**
66037
- * Connector Instance ID
65666
+ * Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **modified, name**
66038
65667
  * @type {string}
66039
65668
  * @memberof WorkflowsBetaApiListWorkflows
66040
65669
  */
66041
- readonly connectorInstanceId?: string;
65670
+ readonly sorters?: string;
66042
65671
  }
66043
65672
  /**
66044
65673
  * Request parameters for patchWorkflow operation in WorkflowsBetaApi.