@uptiqai/integrations-sdk 1.12.0 → 1.14.0
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.
- package/dist/generated-api.d.ts +6668 -5264
- package/dist/generated-api.d.ts.map +1 -1
- package/dist/generated-api.js +1552 -733
- package/dist/generated-api.js.map +1 -1
- package/dist/index.d.ts +341 -137
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +675 -291
- package/dist/index.js.map +1 -1
- package/dist/response-type-map.d.ts.map +1 -1
- package/dist/response-type-map.js +282 -120
- package/dist/response-type-map.js.map +1 -1
- package/package.json +1 -1
package/dist/generated-api.js
CHANGED
|
@@ -1545,6 +1545,16 @@ const getIntegrationsAPI = () => {
|
|
|
1545
1545
|
params
|
|
1546
1546
|
});
|
|
1547
1547
|
};
|
|
1548
|
+
/**
|
|
1549
|
+
* Clears stored per-user credentials for the given integration configuration.
|
|
1550
|
+
* @summary Disconnect integration connection
|
|
1551
|
+
*/
|
|
1552
|
+
const postCommonServiceIdDisconnect = (serviceId, postCommonServiceIdDisconnectBody) => {
|
|
1553
|
+
return (0, http_client_1.customAxios)({ url: `/common/${serviceId}/disconnect`, method: 'POST',
|
|
1554
|
+
headers: { 'Content-Type': 'application/json', },
|
|
1555
|
+
data: postCommonServiceIdDisconnectBody
|
|
1556
|
+
});
|
|
1557
|
+
};
|
|
1548
1558
|
/**
|
|
1549
1559
|
* @summary Get IBAN company search criteria
|
|
1550
1560
|
*/
|
|
@@ -3003,6 +3013,75 @@ const getIntegrationsAPI = () => {
|
|
|
3003
3013
|
data: dunAndBradstreetSetUserCredentialsBody
|
|
3004
3014
|
});
|
|
3005
3015
|
};
|
|
3016
|
+
/**
|
|
3017
|
+
* Calls ElevenLabs POST /v1/text-to-speech/{voice_id} and returns base64-encoded audio.
|
|
3018
|
+
* @summary Generate speech from text
|
|
3019
|
+
*/
|
|
3020
|
+
const elevenlabsTextToSpeech = (elevenlabsTextToSpeechBody) => {
|
|
3021
|
+
return (0, http_client_1.customAxios)({ url: `/elevenlabs/text-to-speech`, method: 'POST',
|
|
3022
|
+
headers: { 'Content-Type': 'application/json', },
|
|
3023
|
+
data: elevenlabsTextToSpeechBody
|
|
3024
|
+
});
|
|
3025
|
+
};
|
|
3026
|
+
/**
|
|
3027
|
+
* Calls ElevenLabs POST /v1/voices/add with multipart audio files.
|
|
3028
|
+
* @summary Clone a voice from audio samples
|
|
3029
|
+
*/
|
|
3030
|
+
const elevenlabsCloneVoice = (elevenlabsCloneVoiceBody) => {
|
|
3031
|
+
return (0, http_client_1.customAxios)({ url: `/elevenlabs/voices/clone`, method: 'POST',
|
|
3032
|
+
headers: { 'Content-Type': 'application/json', },
|
|
3033
|
+
data: elevenlabsCloneVoiceBody
|
|
3034
|
+
});
|
|
3035
|
+
};
|
|
3036
|
+
/**
|
|
3037
|
+
* Calls ElevenLabs GET /v1/voices.
|
|
3038
|
+
* @summary List voices
|
|
3039
|
+
*/
|
|
3040
|
+
const elevenlabsListVoices = (elevenlabsListVoicesBody) => {
|
|
3041
|
+
return (0, http_client_1.customAxios)({ url: `/elevenlabs/voices/list`, method: 'POST',
|
|
3042
|
+
headers: { 'Content-Type': 'application/json', },
|
|
3043
|
+
data: elevenlabsListVoicesBody
|
|
3044
|
+
});
|
|
3045
|
+
};
|
|
3046
|
+
/**
|
|
3047
|
+
* Calls ElevenLabs GET /v1/voices/{voice_id}.
|
|
3048
|
+
* @summary Get voice metadata
|
|
3049
|
+
*/
|
|
3050
|
+
const elevenlabsGetVoice = (elevenlabsGetVoiceBody) => {
|
|
3051
|
+
return (0, http_client_1.customAxios)({ url: `/elevenlabs/voices/get`, method: 'POST',
|
|
3052
|
+
headers: { 'Content-Type': 'application/json', },
|
|
3053
|
+
data: elevenlabsGetVoiceBody
|
|
3054
|
+
});
|
|
3055
|
+
};
|
|
3056
|
+
/**
|
|
3057
|
+
* Calls ElevenLabs DELETE /v1/voices/{voice_id}.
|
|
3058
|
+
* @summary Delete a cloned voice
|
|
3059
|
+
*/
|
|
3060
|
+
const elevenlabsDeleteVoice = (elevenlabsDeleteVoiceBody) => {
|
|
3061
|
+
return (0, http_client_1.customAxios)({ url: `/elevenlabs/voices/delete`, method: 'POST',
|
|
3062
|
+
headers: { 'Content-Type': 'application/json', },
|
|
3063
|
+
data: elevenlabsDeleteVoiceBody
|
|
3064
|
+
});
|
|
3065
|
+
};
|
|
3066
|
+
/**
|
|
3067
|
+
* Calls ElevenLabs GET /v1/models.
|
|
3068
|
+
* @summary List TTS models
|
|
3069
|
+
*/
|
|
3070
|
+
const elevenlabsListModels = (elevenlabsListModelsBody) => {
|
|
3071
|
+
return (0, http_client_1.customAxios)({ url: `/elevenlabs/models/list`, method: 'POST',
|
|
3072
|
+
headers: { 'Content-Type': 'application/json', },
|
|
3073
|
+
data: elevenlabsListModelsBody
|
|
3074
|
+
});
|
|
3075
|
+
};
|
|
3076
|
+
/**
|
|
3077
|
+
* @summary Set ElevenLabs API key for a user
|
|
3078
|
+
*/
|
|
3079
|
+
const elevenlabsSetUserCredentials = (elevenlabsSetUserCredentialsBody) => {
|
|
3080
|
+
return (0, http_client_1.customAxios)({ url: `/elevenlabs/auth/set-user-credentials`, method: 'POST',
|
|
3081
|
+
headers: { 'Content-Type': 'application/json', },
|
|
3082
|
+
data: elevenlabsSetUserCredentialsBody
|
|
3083
|
+
});
|
|
3084
|
+
};
|
|
3006
3085
|
/**
|
|
3007
3086
|
* @summary Advanced business search → BIN
|
|
3008
3087
|
*/
|
|
@@ -3956,440 +4035,231 @@ const getIntegrationsAPI = () => {
|
|
|
3956
4035
|
});
|
|
3957
4036
|
};
|
|
3958
4037
|
/**
|
|
3959
|
-
* @summary Start
|
|
4038
|
+
* @summary Start HubSpot OAuth flow
|
|
3960
4039
|
*/
|
|
3961
|
-
const
|
|
3962
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4040
|
+
const hubspotAuthStart = (hubspotAuthStartBody) => {
|
|
4041
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/auth/start`, method: 'POST',
|
|
3963
4042
|
headers: { 'Content-Type': 'application/json', },
|
|
3964
|
-
data:
|
|
4043
|
+
data: hubspotAuthStartBody
|
|
3965
4044
|
});
|
|
3966
4045
|
};
|
|
3967
4046
|
/**
|
|
3968
|
-
* @summary Set
|
|
4047
|
+
* @summary Set HubSpot OAuth app credentials
|
|
3969
4048
|
*/
|
|
3970
|
-
const
|
|
3971
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4049
|
+
const hubspotAuthSetUserCredentials = (hubspotAuthSetUserCredentialsBody) => {
|
|
4050
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/auth/set-user-credentials`, method: 'POST',
|
|
3972
4051
|
headers: { 'Content-Type': 'application/json', },
|
|
3973
|
-
data:
|
|
4052
|
+
data: hubspotAuthSetUserCredentialsBody
|
|
3974
4053
|
});
|
|
3975
4054
|
};
|
|
3976
4055
|
/**
|
|
3977
|
-
* @summary
|
|
4056
|
+
* @summary HubSpot OAuth callback
|
|
3978
4057
|
*/
|
|
3979
|
-
const
|
|
3980
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
3981
|
-
params
|
|
4058
|
+
const hubspotOauthCallback = () => {
|
|
4059
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/oauth/callback`, method: 'GET'
|
|
3982
4060
|
});
|
|
3983
4061
|
};
|
|
3984
4062
|
/**
|
|
3985
|
-
* @summary
|
|
4063
|
+
* @summary Create HubSpot contact
|
|
3986
4064
|
*/
|
|
3987
|
-
const
|
|
3988
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
3989
|
-
|
|
4065
|
+
const hubspotCreateContact = (hubspotCreateContactBody) => {
|
|
4066
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/contacts/create`, method: 'POST',
|
|
4067
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4068
|
+
data: hubspotCreateContactBody
|
|
3990
4069
|
});
|
|
3991
4070
|
};
|
|
3992
4071
|
/**
|
|
3993
|
-
* @summary Update
|
|
4072
|
+
* @summary Update HubSpot contact
|
|
3994
4073
|
*/
|
|
3995
|
-
const
|
|
3996
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4074
|
+
const hubspotUpdateContact = (hubspotUpdateContactBody) => {
|
|
4075
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/contacts/update`, method: 'POST',
|
|
3997
4076
|
headers: { 'Content-Type': 'application/json', },
|
|
3998
|
-
data:
|
|
4077
|
+
data: hubspotUpdateContactBody
|
|
3999
4078
|
});
|
|
4000
4079
|
};
|
|
4001
4080
|
/**
|
|
4002
|
-
* @summary
|
|
4081
|
+
* @summary List HubSpot contacts
|
|
4003
4082
|
*/
|
|
4004
|
-
const
|
|
4005
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4083
|
+
const hubspotListContacts = (hubspotListContactsBody) => {
|
|
4084
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/contacts/list`, method: 'POST',
|
|
4006
4085
|
headers: { 'Content-Type': 'application/json', },
|
|
4007
|
-
data:
|
|
4086
|
+
data: hubspotListContactsBody
|
|
4008
4087
|
});
|
|
4009
4088
|
};
|
|
4010
4089
|
/**
|
|
4011
|
-
* @summary
|
|
4090
|
+
* @summary Search HubSpot contacts
|
|
4012
4091
|
*/
|
|
4013
|
-
const
|
|
4014
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4092
|
+
const hubspotSearchContacts = (hubspotSearchContactsBody) => {
|
|
4093
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/contacts/search`, method: 'POST',
|
|
4015
4094
|
headers: { 'Content-Type': 'application/json', },
|
|
4016
|
-
data:
|
|
4095
|
+
data: hubspotSearchContactsBody
|
|
4017
4096
|
});
|
|
4018
4097
|
};
|
|
4019
4098
|
/**
|
|
4020
|
-
* @summary
|
|
4099
|
+
* @summary Create HubSpot company
|
|
4021
4100
|
*/
|
|
4022
|
-
const
|
|
4023
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4101
|
+
const hubspotCreateCompany = (hubspotCreateCompanyBody) => {
|
|
4102
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/companies/create`, method: 'POST',
|
|
4024
4103
|
headers: { 'Content-Type': 'application/json', },
|
|
4025
|
-
data:
|
|
4104
|
+
data: hubspotCreateCompanyBody
|
|
4026
4105
|
});
|
|
4027
4106
|
};
|
|
4028
4107
|
/**
|
|
4029
|
-
* @summary
|
|
4108
|
+
* @summary Update HubSpot company
|
|
4030
4109
|
*/
|
|
4031
|
-
const
|
|
4032
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4110
|
+
const hubspotUpdateCompany = (hubspotUpdateCompanyBody) => {
|
|
4111
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/companies/update`, method: 'POST',
|
|
4033
4112
|
headers: { 'Content-Type': 'application/json', },
|
|
4034
|
-
data:
|
|
4113
|
+
data: hubspotUpdateCompanyBody
|
|
4035
4114
|
});
|
|
4036
4115
|
};
|
|
4037
4116
|
/**
|
|
4038
|
-
* @summary
|
|
4117
|
+
* @summary List HubSpot companies
|
|
4039
4118
|
*/
|
|
4040
|
-
const
|
|
4041
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4119
|
+
const hubspotListCompanies = (hubspotListCompaniesBody) => {
|
|
4120
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/companies/list`, method: 'POST',
|
|
4042
4121
|
headers: { 'Content-Type': 'application/json', },
|
|
4043
|
-
data:
|
|
4122
|
+
data: hubspotListCompaniesBody
|
|
4044
4123
|
});
|
|
4045
4124
|
};
|
|
4046
4125
|
/**
|
|
4047
|
-
* @summary
|
|
4126
|
+
* @summary Search HubSpot companies
|
|
4048
4127
|
*/
|
|
4049
|
-
const
|
|
4050
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4128
|
+
const hubspotSearchCompanies = (hubspotSearchCompaniesBody) => {
|
|
4129
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/companies/search`, method: 'POST',
|
|
4051
4130
|
headers: { 'Content-Type': 'application/json', },
|
|
4052
|
-
data:
|
|
4131
|
+
data: hubspotSearchCompaniesBody
|
|
4053
4132
|
});
|
|
4054
4133
|
};
|
|
4055
4134
|
/**
|
|
4056
|
-
* @summary
|
|
4135
|
+
* @summary List HubSpot deals
|
|
4057
4136
|
*/
|
|
4058
|
-
const
|
|
4059
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4137
|
+
const hubspotListDeals = (hubspotListDealsBody) => {
|
|
4138
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/deals/list`, method: 'POST',
|
|
4060
4139
|
headers: { 'Content-Type': 'application/json', },
|
|
4061
|
-
data:
|
|
4140
|
+
data: hubspotListDealsBody
|
|
4062
4141
|
});
|
|
4063
4142
|
};
|
|
4064
4143
|
/**
|
|
4065
|
-
* @summary
|
|
4144
|
+
* @summary List HubSpot deal pipelines
|
|
4066
4145
|
*/
|
|
4067
|
-
const
|
|
4068
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4069
|
-
|
|
4146
|
+
const hubspotListDealPipelines = (hubspotListDealPipelinesBody) => {
|
|
4147
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/deals/pipelines`, method: 'POST',
|
|
4148
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4149
|
+
data: hubspotListDealPipelinesBody
|
|
4070
4150
|
});
|
|
4071
4151
|
};
|
|
4072
4152
|
/**
|
|
4073
|
-
* @summary
|
|
4153
|
+
* @summary List HubSpot CRM owners
|
|
4074
4154
|
*/
|
|
4075
|
-
const
|
|
4076
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4155
|
+
const hubspotListOwners = (hubspotListOwnersBody) => {
|
|
4156
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/deals/owners`, method: 'POST',
|
|
4077
4157
|
headers: { 'Content-Type': 'application/json', },
|
|
4078
|
-
data:
|
|
4158
|
+
data: hubspotListOwnersBody
|
|
4079
4159
|
});
|
|
4080
4160
|
};
|
|
4081
4161
|
/**
|
|
4082
|
-
* @summary
|
|
4162
|
+
* @summary Create HubSpot email engagement
|
|
4083
4163
|
*/
|
|
4084
|
-
const
|
|
4085
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4164
|
+
const hubspotCreateEmailEngagement = (hubspotCreateEmailEngagementBody) => {
|
|
4165
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/engagements/email`, method: 'POST',
|
|
4086
4166
|
headers: { 'Content-Type': 'application/json', },
|
|
4087
|
-
data:
|
|
4167
|
+
data: hubspotCreateEmailEngagementBody
|
|
4088
4168
|
});
|
|
4089
4169
|
};
|
|
4090
4170
|
/**
|
|
4091
|
-
* @summary
|
|
4171
|
+
* @summary Create HubSpot call engagement
|
|
4092
4172
|
*/
|
|
4093
|
-
const
|
|
4094
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4173
|
+
const hubspotCreateCallEngagement = (hubspotCreateCallEngagementBody) => {
|
|
4174
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/engagements/call`, method: 'POST',
|
|
4175
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4176
|
+
data: hubspotCreateCallEngagementBody
|
|
4095
4177
|
});
|
|
4096
4178
|
};
|
|
4097
4179
|
/**
|
|
4098
|
-
*
|
|
4099
|
-
* @summary List messages
|
|
4180
|
+
* @summary Create HubSpot task engagement
|
|
4100
4181
|
*/
|
|
4101
|
-
const
|
|
4102
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4182
|
+
const hubspotCreateTaskEngagement = (hubspotCreateTaskEngagementBody) => {
|
|
4183
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/engagements/task`, method: 'POST',
|
|
4103
4184
|
headers: { 'Content-Type': 'application/json', },
|
|
4104
|
-
data:
|
|
4185
|
+
data: hubspotCreateTaskEngagementBody
|
|
4105
4186
|
});
|
|
4106
4187
|
};
|
|
4107
4188
|
/**
|
|
4108
|
-
*
|
|
4109
|
-
* @summary List mail folders
|
|
4189
|
+
* @summary Create HubSpot default object association
|
|
4110
4190
|
*/
|
|
4111
|
-
const
|
|
4112
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4191
|
+
const hubspotCreateAssociation = (hubspotCreateAssociationBody) => {
|
|
4192
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/engagements/association`, method: 'POST',
|
|
4113
4193
|
headers: { 'Content-Type': 'application/json', },
|
|
4114
|
-
data:
|
|
4194
|
+
data: hubspotCreateAssociationBody
|
|
4115
4195
|
});
|
|
4116
4196
|
};
|
|
4117
4197
|
/**
|
|
4118
|
-
*
|
|
4119
|
-
* @summary List messages in a folder
|
|
4198
|
+
* @summary Create HubSpot ticket
|
|
4120
4199
|
*/
|
|
4121
|
-
const
|
|
4122
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4200
|
+
const hubspotCreateTicket = (hubspotCreateTicketBody) => {
|
|
4201
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/tickets/create`, method: 'POST',
|
|
4123
4202
|
headers: { 'Content-Type': 'application/json', },
|
|
4124
|
-
data:
|
|
4203
|
+
data: hubspotCreateTicketBody
|
|
4125
4204
|
});
|
|
4126
4205
|
};
|
|
4127
4206
|
/**
|
|
4128
|
-
*
|
|
4129
|
-
* @summary Get a message
|
|
4207
|
+
* @summary Update HubSpot ticket
|
|
4130
4208
|
*/
|
|
4131
|
-
const
|
|
4132
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4209
|
+
const hubspotUpdateTicket = (hubspotUpdateTicketBody) => {
|
|
4210
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/tickets/update`, method: 'POST',
|
|
4133
4211
|
headers: { 'Content-Type': 'application/json', },
|
|
4134
|
-
data:
|
|
4212
|
+
data: hubspotUpdateTicketBody
|
|
4135
4213
|
});
|
|
4136
4214
|
};
|
|
4137
4215
|
/**
|
|
4138
|
-
*
|
|
4139
|
-
* @summary Search messages
|
|
4216
|
+
* @summary List HubSpot tickets
|
|
4140
4217
|
*/
|
|
4141
|
-
const
|
|
4142
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4218
|
+
const hubspotListTickets = (hubspotListTicketsBody) => {
|
|
4219
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/tickets/list`, method: 'POST',
|
|
4143
4220
|
headers: { 'Content-Type': 'application/json', },
|
|
4144
|
-
data:
|
|
4221
|
+
data: hubspotListTicketsBody
|
|
4145
4222
|
});
|
|
4146
4223
|
};
|
|
4147
4224
|
/**
|
|
4148
|
-
*
|
|
4149
|
-
* @summary List message attachments
|
|
4225
|
+
* @summary Enroll contact in HubSpot workflow
|
|
4150
4226
|
*/
|
|
4151
|
-
const
|
|
4152
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4227
|
+
const hubspotEnrollWorkflow = (hubspotEnrollWorkflowBody) => {
|
|
4228
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/campaigns/workflows/enroll`, method: 'POST',
|
|
4153
4229
|
headers: { 'Content-Type': 'application/json', },
|
|
4154
|
-
data:
|
|
4230
|
+
data: hubspotEnrollWorkflowBody
|
|
4155
4231
|
});
|
|
4156
4232
|
};
|
|
4157
4233
|
/**
|
|
4158
|
-
*
|
|
4159
|
-
* @summary Send mail
|
|
4234
|
+
* @summary List HubSpot workflows
|
|
4160
4235
|
*/
|
|
4161
|
-
const
|
|
4162
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4236
|
+
const hubspotListWorkflows = (hubspotListWorkflowsBody) => {
|
|
4237
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/campaigns/workflows/list`, method: 'POST',
|
|
4163
4238
|
headers: { 'Content-Type': 'application/json', },
|
|
4164
|
-
data:
|
|
4239
|
+
data: hubspotListWorkflowsBody
|
|
4165
4240
|
});
|
|
4166
4241
|
};
|
|
4167
4242
|
/**
|
|
4168
|
-
*
|
|
4169
|
-
* @summary Create draft
|
|
4243
|
+
* @summary List HubSpot marketing emails
|
|
4170
4244
|
*/
|
|
4171
|
-
const
|
|
4172
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4245
|
+
const hubspotListMarketingEmails = (hubspotListMarketingEmailsBody) => {
|
|
4246
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/campaigns/marketing-emails/list`, method: 'POST',
|
|
4173
4247
|
headers: { 'Content-Type': 'application/json', },
|
|
4174
|
-
data:
|
|
4248
|
+
data: hubspotListMarketingEmailsBody
|
|
4175
4249
|
});
|
|
4176
4250
|
};
|
|
4177
4251
|
/**
|
|
4178
|
-
*
|
|
4179
|
-
* @summary Update draft
|
|
4252
|
+
* @summary Send HubSpot transactional email
|
|
4180
4253
|
*/
|
|
4181
|
-
const
|
|
4182
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4254
|
+
const hubspotSendTransactionalEmail = (hubspotSendTransactionalEmailBody) => {
|
|
4255
|
+
return (0, http_client_1.customAxios)({ url: `/hubspot/campaigns/transactional/send`, method: 'POST',
|
|
4183
4256
|
headers: { 'Content-Type': 'application/json', },
|
|
4184
|
-
data:
|
|
4257
|
+
data: hubspotSendTransactionalEmailBody
|
|
4185
4258
|
});
|
|
4186
4259
|
};
|
|
4187
4260
|
/**
|
|
4188
|
-
*
|
|
4189
|
-
* @summary
|
|
4190
|
-
*/
|
|
4191
|
-
const microsoftOutlookMessagesSend = (microsoftOutlookMessagesSendBody) => {
|
|
4192
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/messages/send`, method: 'POST',
|
|
4193
|
-
headers: { 'Content-Type': 'application/json', },
|
|
4194
|
-
data: microsoftOutlookMessagesSendBody
|
|
4195
|
-
});
|
|
4196
|
-
};
|
|
4197
|
-
/**
|
|
4198
|
-
* POST /me/messages/{message-id}/reply
|
|
4199
|
-
* @summary Reply to message
|
|
4200
|
-
*/
|
|
4201
|
-
const microsoftOutlookMessagesReply = (microsoftOutlookMessagesReplyBody) => {
|
|
4202
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/messages/reply`, method: 'POST',
|
|
4203
|
-
headers: { 'Content-Type': 'application/json', },
|
|
4204
|
-
data: microsoftOutlookMessagesReplyBody
|
|
4205
|
-
});
|
|
4206
|
-
};
|
|
4207
|
-
/**
|
|
4208
|
-
* POST /me/messages/{message-id}/replyAll
|
|
4209
|
-
* @summary Reply all
|
|
4210
|
-
*/
|
|
4211
|
-
const microsoftOutlookMessagesReplyAll = (microsoftOutlookMessagesReplyAllBody) => {
|
|
4212
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/messages/reply-all`, method: 'POST',
|
|
4213
|
-
headers: { 'Content-Type': 'application/json', },
|
|
4214
|
-
data: microsoftOutlookMessagesReplyAllBody
|
|
4215
|
-
});
|
|
4216
|
-
};
|
|
4217
|
-
/**
|
|
4218
|
-
* POST /me/messages/{message-id}/forward
|
|
4219
|
-
* @summary Forward message
|
|
4220
|
-
*/
|
|
4221
|
-
const microsoftOutlookMessagesForward = (microsoftOutlookMessagesForwardBody) => {
|
|
4222
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/messages/forward`, method: 'POST',
|
|
4223
|
-
headers: { 'Content-Type': 'application/json', },
|
|
4224
|
-
data: microsoftOutlookMessagesForwardBody
|
|
4225
|
-
});
|
|
4226
|
-
};
|
|
4227
|
-
/**
|
|
4228
|
-
* DELETE /me/messages/{message-id}
|
|
4229
|
-
* @summary Delete message
|
|
4230
|
-
*/
|
|
4231
|
-
const microsoftOutlookMessagesDelete = (microsoftOutlookMessagesDeleteBody) => {
|
|
4232
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/messages/delete`, method: 'POST',
|
|
4233
|
-
headers: { 'Content-Type': 'application/json', },
|
|
4234
|
-
data: microsoftOutlookMessagesDeleteBody
|
|
4235
|
-
});
|
|
4236
|
-
};
|
|
4237
|
-
/**
|
|
4238
|
-
* POST /me/messages/{message-id}/attachments
|
|
4239
|
-
* @summary Add attachment to draft
|
|
4240
|
-
*/
|
|
4241
|
-
const microsoftOutlookAttachmentsCreate = (microsoftOutlookAttachmentsCreateBody) => {
|
|
4242
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/messages/attachments/create`, method: 'POST',
|
|
4243
|
-
headers: { 'Content-Type': 'application/json', },
|
|
4244
|
-
data: microsoftOutlookAttachmentsCreateBody
|
|
4245
|
-
});
|
|
4246
|
-
};
|
|
4247
|
-
/**
|
|
4248
|
-
* @summary Set Microsoft SharePoint OAuth app credentials for a user
|
|
4249
|
-
*/
|
|
4250
|
-
const microsoftSharepointSetUserCredentials = (microsoftSharepointSetUserCredentialsBody) => {
|
|
4251
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/auth/set-user-credentials`, method: 'POST',
|
|
4252
|
-
headers: { 'Content-Type': 'application/json', },
|
|
4253
|
-
data: microsoftSharepointSetUserCredentialsBody
|
|
4254
|
-
});
|
|
4255
|
-
};
|
|
4256
|
-
/**
|
|
4257
|
-
* @summary Initiate Microsoft SharePoint OAuth
|
|
4258
|
-
*/
|
|
4259
|
-
const microsoftSharepointOauthInitiate = (microsoftSharepointOauthInitiateBody) => {
|
|
4260
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/oauth/initiate`, method: 'POST',
|
|
4261
|
-
headers: { 'Content-Type': 'application/json', },
|
|
4262
|
-
data: microsoftSharepointOauthInitiateBody
|
|
4263
|
-
});
|
|
4264
|
-
};
|
|
4265
|
-
/**
|
|
4266
|
-
* @summary Microsoft SharePoint OAuth callback
|
|
4267
|
-
*/
|
|
4268
|
-
const microsoftSharepointOauthCallback = (params) => {
|
|
4269
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/oauth/callback`, method: 'GET',
|
|
4270
|
-
params
|
|
4271
|
-
});
|
|
4272
|
-
};
|
|
4273
|
-
/**
|
|
4274
|
-
* @summary Get site by path — GET /sites/{hostname}:/{site-path}
|
|
4275
|
-
*/
|
|
4276
|
-
const microsoftSharepointGetSiteByPath = (microsoftSharepointGetSiteByPathBody) => {
|
|
4277
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/sites/get-by-path`, method: 'POST',
|
|
4278
|
-
headers: { 'Content-Type': 'application/json', },
|
|
4279
|
-
data: microsoftSharepointGetSiteByPathBody
|
|
4280
|
-
});
|
|
4281
|
-
};
|
|
4282
|
-
/**
|
|
4283
|
-
* @summary Search sites — GET /sites?search={query}
|
|
4284
|
-
*/
|
|
4285
|
-
const microsoftSharepointSearchSites = (microsoftSharepointSearchSitesBody) => {
|
|
4286
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/sites/search`, method: 'POST',
|
|
4287
|
-
headers: { 'Content-Type': 'application/json', },
|
|
4288
|
-
data: microsoftSharepointSearchSitesBody
|
|
4289
|
-
});
|
|
4290
|
-
};
|
|
4291
|
-
/**
|
|
4292
|
-
* @summary List drives — GET /sites/{site-id}/drives
|
|
4293
|
-
*/
|
|
4294
|
-
const microsoftSharepointListDrives = (microsoftSharepointListDrivesBody) => {
|
|
4295
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/sites/drives/list`, method: 'POST',
|
|
4296
|
-
headers: { 'Content-Type': 'application/json', },
|
|
4297
|
-
data: microsoftSharepointListDrivesBody
|
|
4298
|
-
});
|
|
4299
|
-
};
|
|
4300
|
-
/**
|
|
4301
|
-
* @summary List drive item children — GET /drives/{drive-id}/items/{item-id}/children
|
|
4302
|
-
*/
|
|
4303
|
-
const microsoftSharepointListDriveItemChildren = (microsoftSharepointListDriveItemChildrenBody) => {
|
|
4304
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/drives/items/children/list`, method: 'POST',
|
|
4305
|
-
headers: { 'Content-Type': 'application/json', },
|
|
4306
|
-
data: microsoftSharepointListDriveItemChildrenBody
|
|
4307
|
-
});
|
|
4308
|
-
};
|
|
4309
|
-
/**
|
|
4310
|
-
* @summary Download file content (signed URL) — GET /drives/{drive-id}/items/{item-id}/content
|
|
4311
|
-
*/
|
|
4312
|
-
const microsoftSharepointDownloadFileContent = (microsoftSharepointDownloadFileContentBody) => {
|
|
4313
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/drives/items/content/get`, method: 'POST',
|
|
4314
|
-
headers: { 'Content-Type': 'application/json', },
|
|
4315
|
-
data: microsoftSharepointDownloadFileContentBody
|
|
4316
|
-
});
|
|
4317
|
-
};
|
|
4318
|
-
/**
|
|
4319
|
-
* @summary Upload file — PUT /drives/{drive-id}/items/{parent-id}:/{filename}:/content
|
|
4320
|
-
*/
|
|
4321
|
-
const microsoftSharepointUploadFile = (microsoftSharepointUploadFileBody) => {
|
|
4322
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/drives/items/content/upload`, method: 'POST',
|
|
4323
|
-
headers: { 'Content-Type': 'application/json', },
|
|
4324
|
-
data: microsoftSharepointUploadFileBody
|
|
4325
|
-
});
|
|
4326
|
-
};
|
|
4327
|
-
/**
|
|
4328
|
-
* @summary Delete file — DELETE /drives/{drive-id}/items/{item-id}
|
|
4329
|
-
*/
|
|
4330
|
-
const microsoftSharepointDeleteFile = (microsoftSharepointDeleteFileBody) => {
|
|
4331
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/drives/items/delete`, method: 'POST',
|
|
4332
|
-
headers: { 'Content-Type': 'application/json', },
|
|
4333
|
-
data: microsoftSharepointDeleteFileBody
|
|
4334
|
-
});
|
|
4335
|
-
};
|
|
4336
|
-
/**
|
|
4337
|
-
* @summary List lists — GET /sites/{site-id}/lists
|
|
4338
|
-
*/
|
|
4339
|
-
const microsoftSharepointListLists = (microsoftSharepointListListsBody) => {
|
|
4340
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/sites/lists/list`, method: 'POST',
|
|
4341
|
-
headers: { 'Content-Type': 'application/json', },
|
|
4342
|
-
data: microsoftSharepointListListsBody
|
|
4343
|
-
});
|
|
4344
|
-
};
|
|
4345
|
-
/**
|
|
4346
|
-
* @summary Get list — GET /sites/{site-id}/lists/{list-id}
|
|
4347
|
-
*/
|
|
4348
|
-
const microsoftSharepointGetList = (microsoftSharepointGetListBody) => {
|
|
4349
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/sites/lists/get`, method: 'POST',
|
|
4350
|
-
headers: { 'Content-Type': 'application/json', },
|
|
4351
|
-
data: microsoftSharepointGetListBody
|
|
4352
|
-
});
|
|
4353
|
-
};
|
|
4354
|
-
/**
|
|
4355
|
-
* @summary List list items — GET /sites/{site-id}/lists/{list-id}/items
|
|
4356
|
-
*/
|
|
4357
|
-
const microsoftSharepointListListItems = (microsoftSharepointListListItemsBody) => {
|
|
4358
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/sites/lists/items/list`, method: 'POST',
|
|
4359
|
-
headers: { 'Content-Type': 'application/json', },
|
|
4360
|
-
data: microsoftSharepointListListItemsBody
|
|
4361
|
-
});
|
|
4362
|
-
};
|
|
4363
|
-
/**
|
|
4364
|
-
* @summary Create list item — POST /sites/{site-id}/lists/{list-id}/items
|
|
4365
|
-
*/
|
|
4366
|
-
const microsoftSharepointCreateListItem = (microsoftSharepointCreateListItemBody) => {
|
|
4367
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/sites/lists/items/create`, method: 'POST',
|
|
4368
|
-
headers: { 'Content-Type': 'application/json', },
|
|
4369
|
-
data: microsoftSharepointCreateListItemBody
|
|
4370
|
-
});
|
|
4371
|
-
};
|
|
4372
|
-
/**
|
|
4373
|
-
* @summary Update list item — PATCH /sites/{site-id}/lists/{list-id}/items/{item-id}
|
|
4374
|
-
*/
|
|
4375
|
-
const microsoftSharepointUpdateListItem = (microsoftSharepointUpdateListItemBody) => {
|
|
4376
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/sites/lists/items/update`, method: 'POST',
|
|
4377
|
-
headers: { 'Content-Type': 'application/json', },
|
|
4378
|
-
data: microsoftSharepointUpdateListItemBody
|
|
4379
|
-
});
|
|
4380
|
-
};
|
|
4381
|
-
/**
|
|
4382
|
-
* @summary Search content — POST /search/query
|
|
4383
|
-
*/
|
|
4384
|
-
const microsoftSharepointSearchContent = (microsoftSharepointSearchContentBody) => {
|
|
4385
|
-
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/search/query`, method: 'POST',
|
|
4386
|
-
headers: { 'Content-Type': 'application/json', },
|
|
4387
|
-
data: microsoftSharepointSearchContentBody
|
|
4388
|
-
});
|
|
4389
|
-
};
|
|
4390
|
-
/**
|
|
4391
|
-
* Returns the authorization URL for the user to complete the OAuth flow.
|
|
4392
|
-
* @summary Initiate Jira OAuth flow
|
|
4261
|
+
* Returns the authorization URL for the user to complete the OAuth flow.
|
|
4262
|
+
* @summary Initiate Jira OAuth flow
|
|
4393
4263
|
*/
|
|
4394
4264
|
const jiraOauthInitiate = (jiraOauthInitiateBody) => {
|
|
4395
4265
|
return (0, http_client_1.customAxios)({ url: `/jira/oauth/initiate`, method: 'POST',
|
|
@@ -4543,64 +4413,496 @@ const getIntegrationsAPI = () => {
|
|
|
4543
4413
|
});
|
|
4544
4414
|
};
|
|
4545
4415
|
/**
|
|
4546
|
-
*
|
|
4547
|
-
* @summary Store per-user OpenAI credentials
|
|
4416
|
+
* @summary Start Microsoft OneDrive OAuth flow
|
|
4548
4417
|
*/
|
|
4549
|
-
const
|
|
4550
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4418
|
+
const microsoftOnedriveAuthStart = (microsoftOnedriveAuthStartBody) => {
|
|
4419
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-onedrive/auth/start`, method: 'POST',
|
|
4551
4420
|
headers: { 'Content-Type': 'application/json', },
|
|
4552
|
-
data:
|
|
4421
|
+
data: microsoftOnedriveAuthStartBody
|
|
4553
4422
|
});
|
|
4554
4423
|
};
|
|
4555
4424
|
/**
|
|
4556
|
-
* @summary
|
|
4425
|
+
* @summary Set Microsoft OneDrive OAuth app credentials for a user
|
|
4557
4426
|
*/
|
|
4558
|
-
const
|
|
4559
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4427
|
+
const microsoftOnedriveSetUserCredentials = (microsoftOnedriveSetUserCredentialsBody) => {
|
|
4428
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-onedrive/auth/set-user-credentials`, method: 'POST',
|
|
4560
4429
|
headers: { 'Content-Type': 'application/json', },
|
|
4561
|
-
data:
|
|
4430
|
+
data: microsoftOnedriveSetUserCredentialsBody
|
|
4562
4431
|
});
|
|
4563
4432
|
};
|
|
4564
4433
|
/**
|
|
4565
|
-
*
|
|
4566
|
-
* @summary Stream text generation with OpenAI
|
|
4434
|
+
* @summary Handle Microsoft OneDrive OAuth callback
|
|
4567
4435
|
*/
|
|
4568
|
-
const
|
|
4569
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4570
|
-
|
|
4571
|
-
data: openaiCreateStreamBody
|
|
4436
|
+
const microsoftOnedriveOauthCallback = (params) => {
|
|
4437
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-onedrive/oauth/callback`, method: 'GET',
|
|
4438
|
+
params
|
|
4572
4439
|
});
|
|
4573
4440
|
};
|
|
4574
4441
|
/**
|
|
4575
|
-
*
|
|
4576
|
-
* @summary Start Plaid Hosted Link
|
|
4442
|
+
* @summary List OneDrive folder contents
|
|
4577
4443
|
*/
|
|
4578
|
-
const
|
|
4579
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4580
|
-
|
|
4581
|
-
data: plaidStartHostedLinkBody
|
|
4444
|
+
const microsoftOnedriveListItems = (params) => {
|
|
4445
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-onedrive/items`, method: 'GET',
|
|
4446
|
+
params
|
|
4582
4447
|
});
|
|
4583
4448
|
};
|
|
4584
4449
|
/**
|
|
4585
|
-
*
|
|
4586
|
-
* @summary Set Plaid user credentials
|
|
4450
|
+
* @summary Update OneDrive item
|
|
4587
4451
|
*/
|
|
4588
|
-
const
|
|
4589
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4452
|
+
const microsoftOnedriveUpdateItem = (microsoftOnedriveUpdateItemBody) => {
|
|
4453
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-onedrive/items`, method: 'PATCH',
|
|
4590
4454
|
headers: { 'Content-Type': 'application/json', },
|
|
4591
|
-
data:
|
|
4455
|
+
data: microsoftOnedriveUpdateItemBody
|
|
4592
4456
|
});
|
|
4593
4457
|
};
|
|
4594
4458
|
/**
|
|
4595
|
-
*
|
|
4596
|
-
* @summary Plaid Hosted Link browser callback
|
|
4459
|
+
* @summary Delete OneDrive item
|
|
4597
4460
|
*/
|
|
4598
|
-
const
|
|
4599
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
4600
|
-
|
|
4601
|
-
|
|
4602
|
-
|
|
4603
|
-
|
|
4461
|
+
const microsoftOnedriveDeleteItem = (microsoftOnedriveDeleteItemBody) => {
|
|
4462
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-onedrive/items`, method: 'DELETE',
|
|
4463
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4464
|
+
data: microsoftOnedriveDeleteItemBody
|
|
4465
|
+
});
|
|
4466
|
+
};
|
|
4467
|
+
/**
|
|
4468
|
+
* @summary Get OneDrive item metadata
|
|
4469
|
+
*/
|
|
4470
|
+
const microsoftOnedriveGetItem = (microsoftOnedriveGetItemBody) => {
|
|
4471
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-onedrive/items/get`, method: 'POST',
|
|
4472
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4473
|
+
data: microsoftOnedriveGetItemBody
|
|
4474
|
+
});
|
|
4475
|
+
};
|
|
4476
|
+
/**
|
|
4477
|
+
* @summary Download OneDrive item content (signed URL)
|
|
4478
|
+
*/
|
|
4479
|
+
const microsoftOnedriveDownloadItem = (microsoftOnedriveDownloadItemBody) => {
|
|
4480
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-onedrive/items/download`, method: 'POST',
|
|
4481
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4482
|
+
data: microsoftOnedriveDownloadItemBody
|
|
4483
|
+
});
|
|
4484
|
+
};
|
|
4485
|
+
/**
|
|
4486
|
+
* @summary Upload OneDrive item (simple)
|
|
4487
|
+
*/
|
|
4488
|
+
const microsoftOnedriveUploadItem = (microsoftOnedriveUploadItemBody) => {
|
|
4489
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-onedrive/items/upload`, method: 'POST',
|
|
4490
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4491
|
+
data: microsoftOnedriveUploadItemBody
|
|
4492
|
+
});
|
|
4493
|
+
};
|
|
4494
|
+
/**
|
|
4495
|
+
* @summary Upload large OneDrive item via upload session
|
|
4496
|
+
*/
|
|
4497
|
+
const microsoftOnedriveUploadLargeItem = (microsoftOnedriveUploadLargeItemBody) => {
|
|
4498
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-onedrive/items/upload-large`, method: 'POST',
|
|
4499
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4500
|
+
data: microsoftOnedriveUploadLargeItemBody
|
|
4501
|
+
});
|
|
4502
|
+
};
|
|
4503
|
+
/**
|
|
4504
|
+
* @summary Create OneDrive folder
|
|
4505
|
+
*/
|
|
4506
|
+
const microsoftOnedriveCreateFolder = (microsoftOnedriveCreateFolderBody) => {
|
|
4507
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-onedrive/folders`, method: 'POST',
|
|
4508
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4509
|
+
data: microsoftOnedriveCreateFolderBody
|
|
4510
|
+
});
|
|
4511
|
+
};
|
|
4512
|
+
/**
|
|
4513
|
+
* @summary Copy OneDrive item
|
|
4514
|
+
*/
|
|
4515
|
+
const microsoftOnedriveCopyItem = (microsoftOnedriveCopyItemBody) => {
|
|
4516
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-onedrive/items/copy`, method: 'POST',
|
|
4517
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4518
|
+
data: microsoftOnedriveCopyItemBody
|
|
4519
|
+
});
|
|
4520
|
+
};
|
|
4521
|
+
/**
|
|
4522
|
+
* @summary Search OneDrive items
|
|
4523
|
+
*/
|
|
4524
|
+
const microsoftOnedriveSearchItems = (params) => {
|
|
4525
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-onedrive/search`, method: 'GET',
|
|
4526
|
+
params
|
|
4527
|
+
});
|
|
4528
|
+
};
|
|
4529
|
+
/**
|
|
4530
|
+
* @summary Start Microsoft Outlook OAuth flow
|
|
4531
|
+
*/
|
|
4532
|
+
const microsoftOutlookAuthStart = (microsoftOutlookAuthStartBody) => {
|
|
4533
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/auth/start`, method: 'POST',
|
|
4534
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4535
|
+
data: microsoftOutlookAuthStartBody
|
|
4536
|
+
});
|
|
4537
|
+
};
|
|
4538
|
+
/**
|
|
4539
|
+
* @summary Set Microsoft Outlook OAuth app credentials for a user
|
|
4540
|
+
*/
|
|
4541
|
+
const microsoftOutlookSetUserCredentials = (microsoftOutlookSetUserCredentialsBody) => {
|
|
4542
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/auth/set-user-credentials`, method: 'POST',
|
|
4543
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4544
|
+
data: microsoftOutlookSetUserCredentialsBody
|
|
4545
|
+
});
|
|
4546
|
+
};
|
|
4547
|
+
/**
|
|
4548
|
+
* @summary Handle Microsoft Outlook OAuth callback
|
|
4549
|
+
*/
|
|
4550
|
+
const microsoftOutlookOauthCallback = () => {
|
|
4551
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/oauth/callback`, method: 'GET'
|
|
4552
|
+
});
|
|
4553
|
+
};
|
|
4554
|
+
/**
|
|
4555
|
+
* GET /me/messages
|
|
4556
|
+
* @summary List messages
|
|
4557
|
+
*/
|
|
4558
|
+
const microsoftOutlookMessagesList = (microsoftOutlookMessagesListBody) => {
|
|
4559
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/messages/list`, method: 'POST',
|
|
4560
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4561
|
+
data: microsoftOutlookMessagesListBody
|
|
4562
|
+
});
|
|
4563
|
+
};
|
|
4564
|
+
/**
|
|
4565
|
+
* GET /me/mailFolders
|
|
4566
|
+
* @summary List mail folders
|
|
4567
|
+
*/
|
|
4568
|
+
const microsoftOutlookMailFoldersList = (microsoftOutlookMailFoldersListBody) => {
|
|
4569
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/mail-folders/list`, method: 'POST',
|
|
4570
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4571
|
+
data: microsoftOutlookMailFoldersListBody
|
|
4572
|
+
});
|
|
4573
|
+
};
|
|
4574
|
+
/**
|
|
4575
|
+
* GET /me/mailFolders/{folder-id}/messages
|
|
4576
|
+
* @summary List messages in a folder
|
|
4577
|
+
*/
|
|
4578
|
+
const microsoftOutlookFolderMessagesList = (microsoftOutlookFolderMessagesListBody) => {
|
|
4579
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/mail-folders/messages/list`, method: 'POST',
|
|
4580
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4581
|
+
data: microsoftOutlookFolderMessagesListBody
|
|
4582
|
+
});
|
|
4583
|
+
};
|
|
4584
|
+
/**
|
|
4585
|
+
* GET /me/messages/{message-id}
|
|
4586
|
+
* @summary Get a message
|
|
4587
|
+
*/
|
|
4588
|
+
const microsoftOutlookMessagesGet = (microsoftOutlookMessagesGetBody) => {
|
|
4589
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/messages/get`, method: 'POST',
|
|
4590
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4591
|
+
data: microsoftOutlookMessagesGetBody
|
|
4592
|
+
});
|
|
4593
|
+
};
|
|
4594
|
+
/**
|
|
4595
|
+
* GET /me/messages?$search='{query}'
|
|
4596
|
+
* @summary Search messages
|
|
4597
|
+
*/
|
|
4598
|
+
const microsoftOutlookMessagesSearch = (microsoftOutlookMessagesSearchBody) => {
|
|
4599
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/messages/search`, method: 'POST',
|
|
4600
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4601
|
+
data: microsoftOutlookMessagesSearchBody
|
|
4602
|
+
});
|
|
4603
|
+
};
|
|
4604
|
+
/**
|
|
4605
|
+
* GET /me/messages/{message-id}/attachments
|
|
4606
|
+
* @summary List message attachments
|
|
4607
|
+
*/
|
|
4608
|
+
const microsoftOutlookAttachmentsList = (microsoftOutlookAttachmentsListBody) => {
|
|
4609
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/messages/attachments/list`, method: 'POST',
|
|
4610
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4611
|
+
data: microsoftOutlookAttachmentsListBody
|
|
4612
|
+
});
|
|
4613
|
+
};
|
|
4614
|
+
/**
|
|
4615
|
+
* POST /me/sendMail
|
|
4616
|
+
* @summary Send mail
|
|
4617
|
+
*/
|
|
4618
|
+
const microsoftOutlookSendMail = (microsoftOutlookSendMailBody) => {
|
|
4619
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/messages/send-mail`, method: 'POST',
|
|
4620
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4621
|
+
data: microsoftOutlookSendMailBody
|
|
4622
|
+
});
|
|
4623
|
+
};
|
|
4624
|
+
/**
|
|
4625
|
+
* POST /me/messages
|
|
4626
|
+
* @summary Create draft
|
|
4627
|
+
*/
|
|
4628
|
+
const microsoftOutlookMessagesCreate = (microsoftOutlookMessagesCreateBody) => {
|
|
4629
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/messages/create`, method: 'POST',
|
|
4630
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4631
|
+
data: microsoftOutlookMessagesCreateBody
|
|
4632
|
+
});
|
|
4633
|
+
};
|
|
4634
|
+
/**
|
|
4635
|
+
* PATCH /me/messages/{message-id}
|
|
4636
|
+
* @summary Update draft
|
|
4637
|
+
*/
|
|
4638
|
+
const microsoftOutlookMessagesUpdate = (microsoftOutlookMessagesUpdateBody) => {
|
|
4639
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/messages/update`, method: 'POST',
|
|
4640
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4641
|
+
data: microsoftOutlookMessagesUpdateBody
|
|
4642
|
+
});
|
|
4643
|
+
};
|
|
4644
|
+
/**
|
|
4645
|
+
* POST /me/messages/{message-id}/send
|
|
4646
|
+
* @summary Send draft
|
|
4647
|
+
*/
|
|
4648
|
+
const microsoftOutlookMessagesSend = (microsoftOutlookMessagesSendBody) => {
|
|
4649
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/messages/send`, method: 'POST',
|
|
4650
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4651
|
+
data: microsoftOutlookMessagesSendBody
|
|
4652
|
+
});
|
|
4653
|
+
};
|
|
4654
|
+
/**
|
|
4655
|
+
* POST /me/messages/{message-id}/reply
|
|
4656
|
+
* @summary Reply to message
|
|
4657
|
+
*/
|
|
4658
|
+
const microsoftOutlookMessagesReply = (microsoftOutlookMessagesReplyBody) => {
|
|
4659
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/messages/reply`, method: 'POST',
|
|
4660
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4661
|
+
data: microsoftOutlookMessagesReplyBody
|
|
4662
|
+
});
|
|
4663
|
+
};
|
|
4664
|
+
/**
|
|
4665
|
+
* POST /me/messages/{message-id}/replyAll
|
|
4666
|
+
* @summary Reply all
|
|
4667
|
+
*/
|
|
4668
|
+
const microsoftOutlookMessagesReplyAll = (microsoftOutlookMessagesReplyAllBody) => {
|
|
4669
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/messages/reply-all`, method: 'POST',
|
|
4670
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4671
|
+
data: microsoftOutlookMessagesReplyAllBody
|
|
4672
|
+
});
|
|
4673
|
+
};
|
|
4674
|
+
/**
|
|
4675
|
+
* POST /me/messages/{message-id}/forward
|
|
4676
|
+
* @summary Forward message
|
|
4677
|
+
*/
|
|
4678
|
+
const microsoftOutlookMessagesForward = (microsoftOutlookMessagesForwardBody) => {
|
|
4679
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/messages/forward`, method: 'POST',
|
|
4680
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4681
|
+
data: microsoftOutlookMessagesForwardBody
|
|
4682
|
+
});
|
|
4683
|
+
};
|
|
4684
|
+
/**
|
|
4685
|
+
* DELETE /me/messages/{message-id}
|
|
4686
|
+
* @summary Delete message
|
|
4687
|
+
*/
|
|
4688
|
+
const microsoftOutlookMessagesDelete = (microsoftOutlookMessagesDeleteBody) => {
|
|
4689
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/messages/delete`, method: 'POST',
|
|
4690
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4691
|
+
data: microsoftOutlookMessagesDeleteBody
|
|
4692
|
+
});
|
|
4693
|
+
};
|
|
4694
|
+
/**
|
|
4695
|
+
* POST /me/messages/{message-id}/attachments
|
|
4696
|
+
* @summary Add attachment to draft
|
|
4697
|
+
*/
|
|
4698
|
+
const microsoftOutlookAttachmentsCreate = (microsoftOutlookAttachmentsCreateBody) => {
|
|
4699
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-outlook/messages/attachments/create`, method: 'POST',
|
|
4700
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4701
|
+
data: microsoftOutlookAttachmentsCreateBody
|
|
4702
|
+
});
|
|
4703
|
+
};
|
|
4704
|
+
/**
|
|
4705
|
+
* @summary Set Microsoft SharePoint OAuth app credentials for a user
|
|
4706
|
+
*/
|
|
4707
|
+
const microsoftSharepointSetUserCredentials = (microsoftSharepointSetUserCredentialsBody) => {
|
|
4708
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/auth/set-user-credentials`, method: 'POST',
|
|
4709
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4710
|
+
data: microsoftSharepointSetUserCredentialsBody
|
|
4711
|
+
});
|
|
4712
|
+
};
|
|
4713
|
+
/**
|
|
4714
|
+
* @summary Initiate Microsoft SharePoint OAuth
|
|
4715
|
+
*/
|
|
4716
|
+
const microsoftSharepointOauthInitiate = (microsoftSharepointOauthInitiateBody) => {
|
|
4717
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/oauth/initiate`, method: 'POST',
|
|
4718
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4719
|
+
data: microsoftSharepointOauthInitiateBody
|
|
4720
|
+
});
|
|
4721
|
+
};
|
|
4722
|
+
/**
|
|
4723
|
+
* @summary Microsoft SharePoint OAuth callback
|
|
4724
|
+
*/
|
|
4725
|
+
const microsoftSharepointOauthCallback = (params) => {
|
|
4726
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/oauth/callback`, method: 'GET',
|
|
4727
|
+
params
|
|
4728
|
+
});
|
|
4729
|
+
};
|
|
4730
|
+
/**
|
|
4731
|
+
* @summary Get site by path — GET /sites/{hostname}:/{site-path}
|
|
4732
|
+
*/
|
|
4733
|
+
const microsoftSharepointGetSiteByPath = (microsoftSharepointGetSiteByPathBody) => {
|
|
4734
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/sites/get-by-path`, method: 'POST',
|
|
4735
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4736
|
+
data: microsoftSharepointGetSiteByPathBody
|
|
4737
|
+
});
|
|
4738
|
+
};
|
|
4739
|
+
/**
|
|
4740
|
+
* @summary Search sites — GET /sites?search={query}
|
|
4741
|
+
*/
|
|
4742
|
+
const microsoftSharepointSearchSites = (microsoftSharepointSearchSitesBody) => {
|
|
4743
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/sites/search`, method: 'POST',
|
|
4744
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4745
|
+
data: microsoftSharepointSearchSitesBody
|
|
4746
|
+
});
|
|
4747
|
+
};
|
|
4748
|
+
/**
|
|
4749
|
+
* @summary List drives — GET /sites/{site-id}/drives
|
|
4750
|
+
*/
|
|
4751
|
+
const microsoftSharepointListDrives = (microsoftSharepointListDrivesBody) => {
|
|
4752
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/sites/drives/list`, method: 'POST',
|
|
4753
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4754
|
+
data: microsoftSharepointListDrivesBody
|
|
4755
|
+
});
|
|
4756
|
+
};
|
|
4757
|
+
/**
|
|
4758
|
+
* @summary List drive item children — GET /drives/{drive-id}/items/{item-id}/children
|
|
4759
|
+
*/
|
|
4760
|
+
const microsoftSharepointListDriveItemChildren = (microsoftSharepointListDriveItemChildrenBody) => {
|
|
4761
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/drives/items/children/list`, method: 'POST',
|
|
4762
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4763
|
+
data: microsoftSharepointListDriveItemChildrenBody
|
|
4764
|
+
});
|
|
4765
|
+
};
|
|
4766
|
+
/**
|
|
4767
|
+
* @summary Download file content (signed URL) — GET /drives/{drive-id}/items/{item-id}/content
|
|
4768
|
+
*/
|
|
4769
|
+
const microsoftSharepointDownloadFileContent = (microsoftSharepointDownloadFileContentBody) => {
|
|
4770
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/drives/items/content/get`, method: 'POST',
|
|
4771
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4772
|
+
data: microsoftSharepointDownloadFileContentBody
|
|
4773
|
+
});
|
|
4774
|
+
};
|
|
4775
|
+
/**
|
|
4776
|
+
* @summary Upload file — PUT /drives/{drive-id}/items/{parent-id}:/{filename}:/content
|
|
4777
|
+
*/
|
|
4778
|
+
const microsoftSharepointUploadFile = (microsoftSharepointUploadFileBody) => {
|
|
4779
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/drives/items/content/upload`, method: 'POST',
|
|
4780
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4781
|
+
data: microsoftSharepointUploadFileBody
|
|
4782
|
+
});
|
|
4783
|
+
};
|
|
4784
|
+
/**
|
|
4785
|
+
* @summary Delete file — DELETE /drives/{drive-id}/items/{item-id}
|
|
4786
|
+
*/
|
|
4787
|
+
const microsoftSharepointDeleteFile = (microsoftSharepointDeleteFileBody) => {
|
|
4788
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/drives/items/delete`, method: 'POST',
|
|
4789
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4790
|
+
data: microsoftSharepointDeleteFileBody
|
|
4791
|
+
});
|
|
4792
|
+
};
|
|
4793
|
+
/**
|
|
4794
|
+
* @summary List lists — GET /sites/{site-id}/lists
|
|
4795
|
+
*/
|
|
4796
|
+
const microsoftSharepointListLists = (microsoftSharepointListListsBody) => {
|
|
4797
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/sites/lists/list`, method: 'POST',
|
|
4798
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4799
|
+
data: microsoftSharepointListListsBody
|
|
4800
|
+
});
|
|
4801
|
+
};
|
|
4802
|
+
/**
|
|
4803
|
+
* @summary Get list — GET /sites/{site-id}/lists/{list-id}
|
|
4804
|
+
*/
|
|
4805
|
+
const microsoftSharepointGetList = (microsoftSharepointGetListBody) => {
|
|
4806
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/sites/lists/get`, method: 'POST',
|
|
4807
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4808
|
+
data: microsoftSharepointGetListBody
|
|
4809
|
+
});
|
|
4810
|
+
};
|
|
4811
|
+
/**
|
|
4812
|
+
* @summary List list items — GET /sites/{site-id}/lists/{list-id}/items
|
|
4813
|
+
*/
|
|
4814
|
+
const microsoftSharepointListListItems = (microsoftSharepointListListItemsBody) => {
|
|
4815
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/sites/lists/items/list`, method: 'POST',
|
|
4816
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4817
|
+
data: microsoftSharepointListListItemsBody
|
|
4818
|
+
});
|
|
4819
|
+
};
|
|
4820
|
+
/**
|
|
4821
|
+
* @summary Create list item — POST /sites/{site-id}/lists/{list-id}/items
|
|
4822
|
+
*/
|
|
4823
|
+
const microsoftSharepointCreateListItem = (microsoftSharepointCreateListItemBody) => {
|
|
4824
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/sites/lists/items/create`, method: 'POST',
|
|
4825
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4826
|
+
data: microsoftSharepointCreateListItemBody
|
|
4827
|
+
});
|
|
4828
|
+
};
|
|
4829
|
+
/**
|
|
4830
|
+
* @summary Update list item — PATCH /sites/{site-id}/lists/{list-id}/items/{item-id}
|
|
4831
|
+
*/
|
|
4832
|
+
const microsoftSharepointUpdateListItem = (microsoftSharepointUpdateListItemBody) => {
|
|
4833
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/sites/lists/items/update`, method: 'POST',
|
|
4834
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4835
|
+
data: microsoftSharepointUpdateListItemBody
|
|
4836
|
+
});
|
|
4837
|
+
};
|
|
4838
|
+
/**
|
|
4839
|
+
* @summary Search content — POST /search/query
|
|
4840
|
+
*/
|
|
4841
|
+
const microsoftSharepointSearchContent = (microsoftSharepointSearchContentBody) => {
|
|
4842
|
+
return (0, http_client_1.customAxios)({ url: `/microsoft-sharepoint/search/query`, method: 'POST',
|
|
4843
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4844
|
+
data: microsoftSharepointSearchContentBody
|
|
4845
|
+
});
|
|
4846
|
+
};
|
|
4847
|
+
/**
|
|
4848
|
+
* Stores a generated app user OpenAI API key for PerUser integration configs.
|
|
4849
|
+
* @summary Store per-user OpenAI credentials
|
|
4850
|
+
*/
|
|
4851
|
+
const openaiSetUserCredentials = (openaiSetUserCredentialsBody) => {
|
|
4852
|
+
return (0, http_client_1.customAxios)({ url: `/openai/set-user-credentials`, method: 'POST',
|
|
4853
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4854
|
+
data: openaiSetUserCredentialsBody
|
|
4855
|
+
});
|
|
4856
|
+
};
|
|
4857
|
+
/**
|
|
4858
|
+
* @summary Generate text with OpenAI
|
|
4859
|
+
*/
|
|
4860
|
+
const openaiGenerateText = (openaiGenerateTextBody) => {
|
|
4861
|
+
return (0, http_client_1.customAxios)({ url: `/openai/generate-text`, method: 'POST',
|
|
4862
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4863
|
+
data: openaiGenerateTextBody
|
|
4864
|
+
});
|
|
4865
|
+
};
|
|
4866
|
+
/**
|
|
4867
|
+
* Creates a Server-Sent Events (SSE) stream that returns UI message chunks compatible with Vercel AI SDK clients.
|
|
4868
|
+
* @summary Stream text generation with OpenAI
|
|
4869
|
+
*/
|
|
4870
|
+
const openaiCreateStream = (openaiCreateStreamBody) => {
|
|
4871
|
+
return (0, http_client_1.customAxios)({ url: `/openai/create-stream`, method: 'POST',
|
|
4872
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4873
|
+
data: openaiCreateStreamBody
|
|
4874
|
+
});
|
|
4875
|
+
};
|
|
4876
|
+
/**
|
|
4877
|
+
* Creates a Plaid link_token with hosted_link and returns hosted_link_url. Shared configs use the integration config only. PerUser configs merge the integration user credentials and require userId.
|
|
4878
|
+
* @summary Start Plaid Hosted Link
|
|
4879
|
+
*/
|
|
4880
|
+
const plaidStartHostedLink = (plaidStartHostedLinkBody) => {
|
|
4881
|
+
return (0, http_client_1.customAxios)({ url: `/plaid/hosted-link/start`, method: 'POST',
|
|
4882
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4883
|
+
data: plaidStartHostedLinkBody
|
|
4884
|
+
});
|
|
4885
|
+
};
|
|
4886
|
+
/**
|
|
4887
|
+
* Stores Plaid client ID and client secret for a user.
|
|
4888
|
+
* @summary Set Plaid user credentials
|
|
4889
|
+
*/
|
|
4890
|
+
const plaidSetUserCredentials = (plaidSetUserCredentialsBody) => {
|
|
4891
|
+
return (0, http_client_1.customAxios)({ url: `/plaid/auth/set-user-credentials`, method: 'POST',
|
|
4892
|
+
headers: { 'Content-Type': 'application/json', },
|
|
4893
|
+
data: plaidSetUserCredentialsBody
|
|
4894
|
+
});
|
|
4895
|
+
};
|
|
4896
|
+
/**
|
|
4897
|
+
* Completes Hosted Link: exchanges public_token and stores Plaid access_token on the integration user.
|
|
4898
|
+
* @summary Plaid Hosted Link browser callback
|
|
4899
|
+
*/
|
|
4900
|
+
const plaidHostedLinkCallback = (params) => {
|
|
4901
|
+
return (0, http_client_1.customAxios)({ url: `/plaid/oauth/callback`, method: 'GET',
|
|
4902
|
+
params
|
|
4903
|
+
});
|
|
4904
|
+
};
|
|
4905
|
+
/**
|
|
4604
4906
|
* @summary Get accounts for the linked Item
|
|
4605
4907
|
*/
|
|
4606
4908
|
const plaidGetAccounts = (plaidGetAccountsBody) => {
|
|
@@ -5561,17 +5863,168 @@ const getIntegrationsAPI = () => {
|
|
|
5561
5863
|
const resendSetUserCredentials = (resendSetUserCredentialsBody) => {
|
|
5562
5864
|
return (0, http_client_1.customAxios)({ url: `/resend/set-user-credentials`, method: 'POST',
|
|
5563
5865
|
headers: { 'Content-Type': 'application/json', },
|
|
5564
|
-
data: resendSetUserCredentialsBody
|
|
5866
|
+
data: resendSetUserCredentialsBody
|
|
5867
|
+
});
|
|
5868
|
+
};
|
|
5869
|
+
/**
|
|
5870
|
+
* Sends an email using Resend. Configuration is resolved via integration config.
|
|
5871
|
+
* @summary Send an email via Resend
|
|
5872
|
+
*/
|
|
5873
|
+
const resendSendEmail = (resendSendEmailBody) => {
|
|
5874
|
+
return (0, http_client_1.customAxios)({ url: `/resend/send-email`, method: 'POST',
|
|
5875
|
+
headers: { 'Content-Type': 'application/json', },
|
|
5876
|
+
data: resendSendEmailBody
|
|
5877
|
+
});
|
|
5878
|
+
};
|
|
5879
|
+
/**
|
|
5880
|
+
* @summary Start Salesforce OAuth flow
|
|
5881
|
+
*/
|
|
5882
|
+
const salesforceAuthStart = (salesforceAuthStartBody) => {
|
|
5883
|
+
return (0, http_client_1.customAxios)({ url: `/salesforce/auth/start`, method: 'POST',
|
|
5884
|
+
headers: { 'Content-Type': 'application/json', },
|
|
5885
|
+
data: salesforceAuthStartBody
|
|
5886
|
+
});
|
|
5887
|
+
};
|
|
5888
|
+
/**
|
|
5889
|
+
* @summary Set Salesforce OAuth app credentials
|
|
5890
|
+
*/
|
|
5891
|
+
const salesforceAuthSetUserCredentials = (salesforceAuthSetUserCredentialsBody) => {
|
|
5892
|
+
return (0, http_client_1.customAxios)({ url: `/salesforce/auth/set-user-credentials`, method: 'POST',
|
|
5893
|
+
headers: { 'Content-Type': 'application/json', },
|
|
5894
|
+
data: salesforceAuthSetUserCredentialsBody
|
|
5895
|
+
});
|
|
5896
|
+
};
|
|
5897
|
+
/**
|
|
5898
|
+
* @summary Salesforce OAuth callback
|
|
5899
|
+
*/
|
|
5900
|
+
const salesforceOauthCallback = () => {
|
|
5901
|
+
return (0, http_client_1.customAxios)({ url: `/salesforce/oauth/callback`, method: 'GET'
|
|
5902
|
+
});
|
|
5903
|
+
};
|
|
5904
|
+
/**
|
|
5905
|
+
* @summary Create Salesforce sObject record
|
|
5906
|
+
*/
|
|
5907
|
+
const salesforceCreateSobject = (salesforceCreateSobjectBody) => {
|
|
5908
|
+
return (0, http_client_1.customAxios)({ url: `/salesforce/sobjects/create`, method: 'POST',
|
|
5909
|
+
headers: { 'Content-Type': 'application/json', },
|
|
5910
|
+
data: salesforceCreateSobjectBody
|
|
5911
|
+
});
|
|
5912
|
+
};
|
|
5913
|
+
/**
|
|
5914
|
+
* @summary Get Salesforce sObject record
|
|
5915
|
+
*/
|
|
5916
|
+
const salesforceGetSobject = (salesforceGetSobjectBody) => {
|
|
5917
|
+
return (0, http_client_1.customAxios)({ url: `/salesforce/sobjects/get`, method: 'POST',
|
|
5918
|
+
headers: { 'Content-Type': 'application/json', },
|
|
5919
|
+
data: salesforceGetSobjectBody
|
|
5920
|
+
});
|
|
5921
|
+
};
|
|
5922
|
+
/**
|
|
5923
|
+
* @summary Update Salesforce sObject record
|
|
5924
|
+
*/
|
|
5925
|
+
const salesforceUpdateSobject = (salesforceUpdateSobjectBody) => {
|
|
5926
|
+
return (0, http_client_1.customAxios)({ url: `/salesforce/sobjects/update`, method: 'POST',
|
|
5927
|
+
headers: { 'Content-Type': 'application/json', },
|
|
5928
|
+
data: salesforceUpdateSobjectBody
|
|
5929
|
+
});
|
|
5930
|
+
};
|
|
5931
|
+
/**
|
|
5932
|
+
* @summary Delete Salesforce sObject record
|
|
5933
|
+
*/
|
|
5934
|
+
const salesforceDeleteSobject = (salesforceDeleteSobjectBody) => {
|
|
5935
|
+
return (0, http_client_1.customAxios)({ url: `/salesforce/sobjects/delete`, method: 'POST',
|
|
5936
|
+
headers: { 'Content-Type': 'application/json', },
|
|
5937
|
+
data: salesforceDeleteSobjectBody
|
|
5938
|
+
});
|
|
5939
|
+
};
|
|
5940
|
+
/**
|
|
5941
|
+
* @summary Query Salesforce records
|
|
5942
|
+
*/
|
|
5943
|
+
const salesforceQuery = (salesforceQueryBody) => {
|
|
5944
|
+
return (0, http_client_1.customAxios)({ url: `/salesforce/query`, method: 'POST',
|
|
5945
|
+
headers: { 'Content-Type': 'application/json', },
|
|
5946
|
+
data: salesforceQueryBody
|
|
5947
|
+
});
|
|
5948
|
+
};
|
|
5949
|
+
/**
|
|
5950
|
+
* @summary Create multiple Salesforce records via composite
|
|
5951
|
+
*/
|
|
5952
|
+
const salesforceCompositeSobjectsCreate = (salesforceCompositeSobjectsCreateBody) => {
|
|
5953
|
+
return (0, http_client_1.customAxios)({ url: `/salesforce/composite/sobjects/create`, method: 'POST',
|
|
5954
|
+
headers: { 'Content-Type': 'application/json', },
|
|
5955
|
+
data: salesforceCompositeSobjectsCreateBody
|
|
5956
|
+
});
|
|
5957
|
+
};
|
|
5958
|
+
/**
|
|
5959
|
+
* @summary Update multiple Salesforce records via composite
|
|
5960
|
+
*/
|
|
5961
|
+
const salesforceCompositeSobjectsUpdate = (salesforceCompositeSobjectsUpdateBody) => {
|
|
5962
|
+
return (0, http_client_1.customAxios)({ url: `/salesforce/composite/sobjects/update`, method: 'POST',
|
|
5963
|
+
headers: { 'Content-Type': 'application/json', },
|
|
5964
|
+
data: salesforceCompositeSobjectsUpdateBody
|
|
5965
|
+
});
|
|
5966
|
+
};
|
|
5967
|
+
/**
|
|
5968
|
+
* @summary Run Salesforce composite request
|
|
5969
|
+
*/
|
|
5970
|
+
const salesforceComposite = (salesforceCompositeBody) => {
|
|
5971
|
+
return (0, http_client_1.customAxios)({ url: `/salesforce/composite`, method: 'POST',
|
|
5972
|
+
headers: { 'Content-Type': 'application/json', },
|
|
5973
|
+
data: salesforceCompositeBody
|
|
5974
|
+
});
|
|
5975
|
+
};
|
|
5976
|
+
/**
|
|
5977
|
+
* @summary List Salesforce reports
|
|
5978
|
+
*/
|
|
5979
|
+
const salesforceListReports = (salesforceListReportsBody) => {
|
|
5980
|
+
return (0, http_client_1.customAxios)({ url: `/salesforce/reports/list`, method: 'POST',
|
|
5981
|
+
headers: { 'Content-Type': 'application/json', },
|
|
5982
|
+
data: salesforceListReportsBody
|
|
5983
|
+
});
|
|
5984
|
+
};
|
|
5985
|
+
/**
|
|
5986
|
+
* @summary Describe Salesforce report
|
|
5987
|
+
*/
|
|
5988
|
+
const salesforceDescribeReport = (salesforceDescribeReportBody) => {
|
|
5989
|
+
return (0, http_client_1.customAxios)({ url: `/salesforce/reports/describe`, method: 'POST',
|
|
5990
|
+
headers: { 'Content-Type': 'application/json', },
|
|
5991
|
+
data: salesforceDescribeReportBody
|
|
5992
|
+
});
|
|
5993
|
+
};
|
|
5994
|
+
/**
|
|
5995
|
+
* @summary Run Salesforce report
|
|
5996
|
+
*/
|
|
5997
|
+
const salesforceRunReport = (salesforceRunReportBody) => {
|
|
5998
|
+
return (0, http_client_1.customAxios)({ url: `/salesforce/reports/run`, method: 'POST',
|
|
5999
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6000
|
+
data: salesforceRunReportBody
|
|
6001
|
+
});
|
|
6002
|
+
};
|
|
6003
|
+
/**
|
|
6004
|
+
* @summary List Salesforce flows
|
|
6005
|
+
*/
|
|
6006
|
+
const salesforceListFlows = (salesforceListFlowsBody) => {
|
|
6007
|
+
return (0, http_client_1.customAxios)({ url: `/salesforce/flows/list`, method: 'POST',
|
|
6008
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6009
|
+
data: salesforceListFlowsBody
|
|
6010
|
+
});
|
|
6011
|
+
};
|
|
6012
|
+
/**
|
|
6013
|
+
* @summary Describe Salesforce flow
|
|
6014
|
+
*/
|
|
6015
|
+
const salesforceDescribeFlow = (salesforceDescribeFlowBody) => {
|
|
6016
|
+
return (0, http_client_1.customAxios)({ url: `/salesforce/flows/describe`, method: 'POST',
|
|
6017
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6018
|
+
data: salesforceDescribeFlowBody
|
|
5565
6019
|
});
|
|
5566
6020
|
};
|
|
5567
6021
|
/**
|
|
5568
|
-
*
|
|
5569
|
-
* @summary Send an email via Resend
|
|
6022
|
+
* @summary Run Salesforce flow
|
|
5570
6023
|
*/
|
|
5571
|
-
const
|
|
5572
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6024
|
+
const salesforceRunFlow = (salesforceRunFlowBody) => {
|
|
6025
|
+
return (0, http_client_1.customAxios)({ url: `/salesforce/flows/run`, method: 'POST',
|
|
5573
6026
|
headers: { 'Content-Type': 'application/json', },
|
|
5574
|
-
data:
|
|
6027
|
+
data: salesforceRunFlowBody
|
|
5575
6028
|
});
|
|
5576
6029
|
};
|
|
5577
6030
|
/**
|
|
@@ -5802,851 +6255,1217 @@ const getIntegrationsAPI = () => {
|
|
|
5802
6255
|
});
|
|
5803
6256
|
};
|
|
5804
6257
|
/**
|
|
5805
|
-
*
|
|
5806
|
-
* @summary
|
|
6258
|
+
* Exchanges platform UDG credentials for an access token and caches it for Managed integration configs.
|
|
6259
|
+
* @summary Authenticate with FreeAgent via UDG
|
|
5807
6260
|
*/
|
|
5808
|
-
const
|
|
5809
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6261
|
+
const udgNormalisedFreeAgentAuthenticate = (udgNormalisedFreeAgentAuthenticateBody) => {
|
|
6262
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freeagent/authenticate`, method: 'POST',
|
|
5810
6263
|
headers: { 'Content-Type': 'application/json', },
|
|
5811
|
-
data:
|
|
6264
|
+
data: udgNormalisedFreeAgentAuthenticateBody
|
|
5812
6265
|
});
|
|
5813
6266
|
};
|
|
5814
6267
|
/**
|
|
5815
|
-
*
|
|
5816
|
-
* @summary
|
|
6268
|
+
* Get Contacts from FreeAgent via UDG Normalised API.
|
|
6269
|
+
* @summary Get Contacts
|
|
5817
6270
|
*/
|
|
5818
|
-
const
|
|
5819
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6271
|
+
const udgNormalisedFreeAgentGetContacts = (udgNormalisedFreeAgentGetContactsBody) => {
|
|
6272
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freeagent/contacts`, method: 'POST',
|
|
5820
6273
|
headers: { 'Content-Type': 'application/json', },
|
|
5821
|
-
data:
|
|
6274
|
+
data: udgNormalisedFreeAgentGetContactsBody
|
|
5822
6275
|
});
|
|
5823
6276
|
};
|
|
5824
6277
|
/**
|
|
5825
|
-
*
|
|
5826
|
-
* @summary
|
|
6278
|
+
* Get Company Info from FreeAgent via UDG Normalised API.
|
|
6279
|
+
* @summary Get Company Info
|
|
5827
6280
|
*/
|
|
5828
|
-
const
|
|
5829
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
5830
|
-
|
|
6281
|
+
const udgNormalisedFreeAgentGetCompanyInfo = (udgNormalisedFreeAgentGetCompanyInfoBody) => {
|
|
6282
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freeagent/company-info`, method: 'POST',
|
|
6283
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6284
|
+
data: udgNormalisedFreeAgentGetCompanyInfoBody
|
|
5831
6285
|
});
|
|
5832
6286
|
};
|
|
5833
6287
|
/**
|
|
5834
|
-
*
|
|
6288
|
+
* Get Employees from FreeAgent via UDG Normalised API.
|
|
6289
|
+
* @summary Get Employees
|
|
5835
6290
|
*/
|
|
5836
|
-
const
|
|
5837
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6291
|
+
const udgNormalisedFreeAgentGetEmployees = (udgNormalisedFreeAgentGetEmployeesBody) => {
|
|
6292
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freeagent/employees`, method: 'POST',
|
|
5838
6293
|
headers: { 'Content-Type': 'application/json', },
|
|
5839
|
-
data:
|
|
6294
|
+
data: udgNormalisedFreeAgentGetEmployeesBody
|
|
5840
6295
|
});
|
|
5841
6296
|
};
|
|
5842
6297
|
/**
|
|
5843
|
-
*
|
|
5844
|
-
* @summary
|
|
6298
|
+
* Get Invoices from FreeAgent via UDG Normalised API.
|
|
6299
|
+
* @summary Get Invoices
|
|
5845
6300
|
*/
|
|
5846
|
-
const
|
|
5847
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6301
|
+
const udgNormalisedFreeAgentGetInvoices = (udgNormalisedFreeAgentGetInvoicesBody) => {
|
|
6302
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freeagent/invoices`, method: 'POST',
|
|
5848
6303
|
headers: { 'Content-Type': 'application/json', },
|
|
5849
|
-
data:
|
|
6304
|
+
data: udgNormalisedFreeAgentGetInvoicesBody
|
|
5850
6305
|
});
|
|
5851
6306
|
};
|
|
5852
6307
|
/**
|
|
5853
|
-
*
|
|
6308
|
+
* Get Bills from FreeAgent via UDG Normalised API.
|
|
6309
|
+
* @summary Get Bills
|
|
5854
6310
|
*/
|
|
5855
|
-
const
|
|
5856
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6311
|
+
const udgNormalisedFreeAgentGetBills = (udgNormalisedFreeAgentGetBillsBody) => {
|
|
6312
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freeagent/bills`, method: 'POST',
|
|
5857
6313
|
headers: { 'Content-Type': 'application/json', },
|
|
5858
|
-
data:
|
|
6314
|
+
data: udgNormalisedFreeAgentGetBillsBody
|
|
5859
6315
|
});
|
|
5860
6316
|
};
|
|
5861
6317
|
/**
|
|
5862
|
-
*
|
|
6318
|
+
* Get Credit Notes from FreeAgent via UDG Normalised API.
|
|
6319
|
+
* @summary Get Credit Notes
|
|
5863
6320
|
*/
|
|
5864
|
-
const
|
|
5865
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6321
|
+
const udgNormalisedFreeAgentGetCreditNotes = (udgNormalisedFreeAgentGetCreditNotesBody) => {
|
|
6322
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freeagent/credit-notes`, method: 'POST',
|
|
5866
6323
|
headers: { 'Content-Type': 'application/json', },
|
|
5867
|
-
data:
|
|
6324
|
+
data: udgNormalisedFreeAgentGetCreditNotesBody
|
|
5868
6325
|
});
|
|
5869
6326
|
};
|
|
5870
6327
|
/**
|
|
5871
|
-
*
|
|
6328
|
+
* Get Documents from FreeAgent via UDG Normalised API.
|
|
6329
|
+
* @summary Get Documents
|
|
5872
6330
|
*/
|
|
5873
|
-
const
|
|
5874
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6331
|
+
const udgNormalisedFreeAgentGetDocuments = (udgNormalisedFreeAgentGetDocumentsBody) => {
|
|
6332
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freeagent/documents`, method: 'POST',
|
|
5875
6333
|
headers: { 'Content-Type': 'application/json', },
|
|
5876
|
-
data:
|
|
6334
|
+
data: udgNormalisedFreeAgentGetDocumentsBody
|
|
5877
6335
|
});
|
|
5878
6336
|
};
|
|
5879
6337
|
/**
|
|
5880
|
-
*
|
|
6338
|
+
* Get Recurring Documents from FreeAgent via UDG Normalised API.
|
|
6339
|
+
* @summary Get Recurring Documents
|
|
5881
6340
|
*/
|
|
5882
|
-
const
|
|
5883
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6341
|
+
const udgNormalisedFreeAgentGetRecurringDocuments = (udgNormalisedFreeAgentGetRecurringDocumentsBody) => {
|
|
6342
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freeagent/recurring-documents`, method: 'POST',
|
|
5884
6343
|
headers: { 'Content-Type': 'application/json', },
|
|
5885
|
-
data:
|
|
6344
|
+
data: udgNormalisedFreeAgentGetRecurringDocumentsBody
|
|
5886
6345
|
});
|
|
5887
6346
|
};
|
|
5888
6347
|
/**
|
|
5889
|
-
*
|
|
6348
|
+
* Get Payments from FreeAgent via UDG Normalised API.
|
|
6349
|
+
* @summary Get Payments
|
|
5890
6350
|
*/
|
|
5891
|
-
const
|
|
5892
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6351
|
+
const udgNormalisedFreeAgentGetPayments = (udgNormalisedFreeAgentGetPaymentsBody) => {
|
|
6352
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freeagent/payments`, method: 'POST',
|
|
5893
6353
|
headers: { 'Content-Type': 'application/json', },
|
|
5894
|
-
data:
|
|
6354
|
+
data: udgNormalisedFreeAgentGetPaymentsBody
|
|
5895
6355
|
});
|
|
5896
6356
|
};
|
|
5897
6357
|
/**
|
|
5898
|
-
*
|
|
6358
|
+
* Get Items from FreeAgent via UDG Normalised API.
|
|
6359
|
+
* @summary Get Items
|
|
5899
6360
|
*/
|
|
5900
|
-
const
|
|
5901
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6361
|
+
const udgNormalisedFreeAgentGetItems = (udgNormalisedFreeAgentGetItemsBody) => {
|
|
6362
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freeagent/items`, method: 'POST',
|
|
5902
6363
|
headers: { 'Content-Type': 'application/json', },
|
|
5903
|
-
data:
|
|
6364
|
+
data: udgNormalisedFreeAgentGetItemsBody
|
|
5904
6365
|
});
|
|
5905
6366
|
};
|
|
5906
6367
|
/**
|
|
5907
|
-
*
|
|
6368
|
+
* Get Accounts from FreeAgent via UDG Normalised API.
|
|
6369
|
+
* @summary Get Accounts
|
|
5908
6370
|
*/
|
|
5909
|
-
const
|
|
5910
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6371
|
+
const udgNormalisedFreeAgentGetAccounts = (udgNormalisedFreeAgentGetAccountsBody) => {
|
|
6372
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freeagent/accounts`, method: 'POST',
|
|
5911
6373
|
headers: { 'Content-Type': 'application/json', },
|
|
5912
|
-
data:
|
|
6374
|
+
data: udgNormalisedFreeAgentGetAccountsBody
|
|
5913
6375
|
});
|
|
5914
6376
|
};
|
|
5915
6377
|
/**
|
|
5916
|
-
*
|
|
6378
|
+
* Get Transactions from FreeAgent via UDG Normalised API.
|
|
6379
|
+
* @summary Get Transactions
|
|
5917
6380
|
*/
|
|
5918
|
-
const
|
|
5919
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6381
|
+
const udgNormalisedFreeAgentGetTransactions = (udgNormalisedFreeAgentGetTransactionsBody) => {
|
|
6382
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freeagent/transactions`, method: 'POST',
|
|
5920
6383
|
headers: { 'Content-Type': 'application/json', },
|
|
5921
|
-
data:
|
|
6384
|
+
data: udgNormalisedFreeAgentGetTransactionsBody
|
|
5922
6385
|
});
|
|
5923
6386
|
};
|
|
5924
6387
|
/**
|
|
5925
|
-
*
|
|
6388
|
+
* Get Balance Sheet (Accrual) from FreeAgent via UDG Normalised API.
|
|
6389
|
+
* @summary Get Balance Sheet (Accrual)
|
|
5926
6390
|
*/
|
|
5927
|
-
const
|
|
5928
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6391
|
+
const udgNormalisedFreeAgentGetBalanceSheetAccrual = (udgNormalisedFreeAgentGetBalanceSheetAccrualBody) => {
|
|
6392
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freeagent/balance-sheet-accrual`, method: 'POST',
|
|
5929
6393
|
headers: { 'Content-Type': 'application/json', },
|
|
5930
|
-
data:
|
|
6394
|
+
data: udgNormalisedFreeAgentGetBalanceSheetAccrualBody
|
|
5931
6395
|
});
|
|
5932
6396
|
};
|
|
5933
6397
|
/**
|
|
5934
|
-
*
|
|
6398
|
+
* Get Profit and Loss (Accrual) from FreeAgent via UDG Normalised API.
|
|
6399
|
+
* @summary Get Profit and Loss (Accrual)
|
|
5935
6400
|
*/
|
|
5936
|
-
const
|
|
5937
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6401
|
+
const udgNormalisedFreeAgentGetProfitAndLossAccrual = (udgNormalisedFreeAgentGetProfitAndLossAccrualBody) => {
|
|
6402
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freeagent/profit-and-loss-accrual`, method: 'POST',
|
|
5938
6403
|
headers: { 'Content-Type': 'application/json', },
|
|
5939
|
-
data:
|
|
6404
|
+
data: udgNormalisedFreeAgentGetProfitAndLossAccrualBody
|
|
5940
6405
|
});
|
|
5941
6406
|
};
|
|
5942
6407
|
/**
|
|
5943
|
-
*
|
|
6408
|
+
* Exchanges platform UDG credentials for an access token and caches it for Managed integration configs.
|
|
6409
|
+
* @summary Authenticate with FreshBooks via UDG
|
|
5944
6410
|
*/
|
|
5945
|
-
const
|
|
5946
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6411
|
+
const udgNormalisedFreshbooksAuthenticate = (udgNormalisedFreshbooksAuthenticateBody) => {
|
|
6412
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freshbooks/authenticate`, method: 'POST',
|
|
5947
6413
|
headers: { 'Content-Type': 'application/json', },
|
|
5948
|
-
data:
|
|
6414
|
+
data: udgNormalisedFreshbooksAuthenticateBody
|
|
5949
6415
|
});
|
|
5950
6416
|
};
|
|
5951
6417
|
/**
|
|
5952
|
-
*
|
|
6418
|
+
* Get Contacts from FreshBooks via UDG Normalised API.
|
|
6419
|
+
* @summary Get Contacts
|
|
5953
6420
|
*/
|
|
5954
|
-
const
|
|
5955
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6421
|
+
const udgNormalisedFreshbooksGetContacts = (udgNormalisedFreshbooksGetContactsBody) => {
|
|
6422
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freshbooks/contacts`, method: 'POST',
|
|
5956
6423
|
headers: { 'Content-Type': 'application/json', },
|
|
5957
|
-
data:
|
|
6424
|
+
data: udgNormalisedFreshbooksGetContactsBody
|
|
5958
6425
|
});
|
|
5959
6426
|
};
|
|
5960
6427
|
/**
|
|
5961
|
-
*
|
|
6428
|
+
* Get Company Info from FreshBooks via UDG Normalised API.
|
|
6429
|
+
* @summary Get Company Info
|
|
5962
6430
|
*/
|
|
5963
|
-
const
|
|
5964
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6431
|
+
const udgNormalisedFreshbooksGetCompanyInfo = (udgNormalisedFreshbooksGetCompanyInfoBody) => {
|
|
6432
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freshbooks/company-info`, method: 'POST',
|
|
5965
6433
|
headers: { 'Content-Type': 'application/json', },
|
|
5966
|
-
data:
|
|
6434
|
+
data: udgNormalisedFreshbooksGetCompanyInfoBody
|
|
5967
6435
|
});
|
|
5968
6436
|
};
|
|
5969
6437
|
/**
|
|
5970
|
-
*
|
|
6438
|
+
* Get Employees from FreshBooks via UDG Normalised API.
|
|
6439
|
+
* @summary Get Employees
|
|
5971
6440
|
*/
|
|
5972
|
-
const
|
|
5973
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6441
|
+
const udgNormalisedFreshbooksGetEmployees = (udgNormalisedFreshbooksGetEmployeesBody) => {
|
|
6442
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freshbooks/employees`, method: 'POST',
|
|
5974
6443
|
headers: { 'Content-Type': 'application/json', },
|
|
5975
|
-
data:
|
|
6444
|
+
data: udgNormalisedFreshbooksGetEmployeesBody
|
|
5976
6445
|
});
|
|
5977
6446
|
};
|
|
5978
6447
|
/**
|
|
5979
|
-
*
|
|
6448
|
+
* Get Invoices from FreshBooks via UDG Normalised API.
|
|
6449
|
+
* @summary Get Invoices
|
|
6450
|
+
*/
|
|
6451
|
+
const udgNormalisedFreshbooksGetInvoices = (udgNormalisedFreshbooksGetInvoicesBody) => {
|
|
6452
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freshbooks/invoices`, method: 'POST',
|
|
6453
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6454
|
+
data: udgNormalisedFreshbooksGetInvoicesBody
|
|
6455
|
+
});
|
|
6456
|
+
};
|
|
6457
|
+
/**
|
|
6458
|
+
* Get Bills from FreshBooks via UDG Normalised API.
|
|
6459
|
+
* @summary Get Bills
|
|
6460
|
+
*/
|
|
6461
|
+
const udgNormalisedFreshbooksGetBills = (udgNormalisedFreshbooksGetBillsBody) => {
|
|
6462
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freshbooks/bills`, method: 'POST',
|
|
6463
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6464
|
+
data: udgNormalisedFreshbooksGetBillsBody
|
|
6465
|
+
});
|
|
6466
|
+
};
|
|
6467
|
+
/**
|
|
6468
|
+
* Get Documents from FreshBooks via UDG Normalised API.
|
|
6469
|
+
* @summary Get Documents
|
|
6470
|
+
*/
|
|
6471
|
+
const udgNormalisedFreshbooksGetDocuments = (udgNormalisedFreshbooksGetDocumentsBody) => {
|
|
6472
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freshbooks/documents`, method: 'POST',
|
|
6473
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6474
|
+
data: udgNormalisedFreshbooksGetDocumentsBody
|
|
6475
|
+
});
|
|
6476
|
+
};
|
|
6477
|
+
/**
|
|
6478
|
+
* Get Recurring Documents from FreshBooks via UDG Normalised API.
|
|
6479
|
+
* @summary Get Recurring Documents
|
|
6480
|
+
*/
|
|
6481
|
+
const udgNormalisedFreshbooksGetRecurringDocuments = (udgNormalisedFreshbooksGetRecurringDocumentsBody) => {
|
|
6482
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freshbooks/recurring-documents`, method: 'POST',
|
|
6483
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6484
|
+
data: udgNormalisedFreshbooksGetRecurringDocumentsBody
|
|
6485
|
+
});
|
|
6486
|
+
};
|
|
6487
|
+
/**
|
|
6488
|
+
* Get Payments from FreshBooks via UDG Normalised API.
|
|
6489
|
+
* @summary Get Payments
|
|
6490
|
+
*/
|
|
6491
|
+
const udgNormalisedFreshbooksGetPayments = (udgNormalisedFreshbooksGetPaymentsBody) => {
|
|
6492
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freshbooks/payments`, method: 'POST',
|
|
6493
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6494
|
+
data: udgNormalisedFreshbooksGetPaymentsBody
|
|
6495
|
+
});
|
|
6496
|
+
};
|
|
6497
|
+
/**
|
|
6498
|
+
* Get Items from FreshBooks via UDG Normalised API.
|
|
6499
|
+
* @summary Get Items
|
|
6500
|
+
*/
|
|
6501
|
+
const udgNormalisedFreshbooksGetItems = (udgNormalisedFreshbooksGetItemsBody) => {
|
|
6502
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freshbooks/items`, method: 'POST',
|
|
6503
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6504
|
+
data: udgNormalisedFreshbooksGetItemsBody
|
|
6505
|
+
});
|
|
6506
|
+
};
|
|
6507
|
+
/**
|
|
6508
|
+
* Get Accounts from FreshBooks via UDG Normalised API.
|
|
6509
|
+
* @summary Get Accounts
|
|
6510
|
+
*/
|
|
6511
|
+
const udgNormalisedFreshbooksGetAccounts = (udgNormalisedFreshbooksGetAccountsBody) => {
|
|
6512
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freshbooks/accounts`, method: 'POST',
|
|
6513
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6514
|
+
data: udgNormalisedFreshbooksGetAccountsBody
|
|
6515
|
+
});
|
|
6516
|
+
};
|
|
6517
|
+
/**
|
|
6518
|
+
* Get Transactions from FreshBooks via UDG Normalised API.
|
|
6519
|
+
* @summary Get Transactions
|
|
6520
|
+
*/
|
|
6521
|
+
const udgNormalisedFreshbooksGetTransactions = (udgNormalisedFreshbooksGetTransactionsBody) => {
|
|
6522
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freshbooks/transactions`, method: 'POST',
|
|
6523
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6524
|
+
data: udgNormalisedFreshbooksGetTransactionsBody
|
|
6525
|
+
});
|
|
6526
|
+
};
|
|
6527
|
+
/**
|
|
6528
|
+
* Get Balance Sheet (Accrual) from FreshBooks via UDG Normalised API.
|
|
6529
|
+
* @summary Get Balance Sheet (Accrual)
|
|
6530
|
+
*/
|
|
6531
|
+
const udgNormalisedFreshbooksGetBalanceSheetAccrual = (udgNormalisedFreshbooksGetBalanceSheetAccrualBody) => {
|
|
6532
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freshbooks/balance-sheet-accrual`, method: 'POST',
|
|
6533
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6534
|
+
data: udgNormalisedFreshbooksGetBalanceSheetAccrualBody
|
|
6535
|
+
});
|
|
6536
|
+
};
|
|
6537
|
+
/**
|
|
6538
|
+
* Get Profit and Loss (Accrual) from FreshBooks via UDG Normalised API.
|
|
6539
|
+
* @summary Get Profit and Loss (Accrual)
|
|
6540
|
+
*/
|
|
6541
|
+
const udgNormalisedFreshbooksGetProfitAndLossAccrual = (udgNormalisedFreshbooksGetProfitAndLossAccrualBody) => {
|
|
6542
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freshbooks/profit-and-loss-accrual`, method: 'POST',
|
|
6543
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6544
|
+
data: udgNormalisedFreshbooksGetProfitAndLossAccrualBody
|
|
6545
|
+
});
|
|
6546
|
+
};
|
|
6547
|
+
/**
|
|
6548
|
+
* Get Taxes from FreshBooks via UDG Normalised API.
|
|
6549
|
+
* @summary Get Taxes
|
|
6550
|
+
*/
|
|
6551
|
+
const udgNormalisedFreshbooksGetTaxes = (udgNormalisedFreshbooksGetTaxesBody) => {
|
|
6552
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freshbooks/taxes`, method: 'POST',
|
|
6553
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6554
|
+
data: udgNormalisedFreshbooksGetTaxesBody
|
|
6555
|
+
});
|
|
6556
|
+
};
|
|
6557
|
+
/**
|
|
6558
|
+
* Get Profit and Loss (Cash) from FreshBooks via UDG Normalised API.
|
|
6559
|
+
* @summary Get Profit and Loss (Cash)
|
|
6560
|
+
*/
|
|
6561
|
+
const udgNormalisedFreshbooksGetProfitAndLossCash = (udgNormalisedFreshbooksGetProfitAndLossCashBody) => {
|
|
6562
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-freshbooks/profit-and-loss-cash`, method: 'POST',
|
|
6563
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6564
|
+
data: udgNormalisedFreshbooksGetProfitAndLossCashBody
|
|
6565
|
+
});
|
|
6566
|
+
};
|
|
6567
|
+
/**
|
|
6568
|
+
* Exchanges platform UDG credentials for an access token and caches it for Managed integration configs.
|
|
6569
|
+
* @summary Authenticate with QuickBooks via UDG
|
|
6570
|
+
*/
|
|
6571
|
+
const udgNormalisedQuickbooksAuthenticate = (udgNormalisedQuickbooksAuthenticateBody) => {
|
|
6572
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-quickbooks/authenticate`, method: 'POST',
|
|
6573
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6574
|
+
data: udgNormalisedQuickbooksAuthenticateBody
|
|
6575
|
+
});
|
|
6576
|
+
};
|
|
6577
|
+
/**
|
|
6578
|
+
* Get Contacts from QuickBooks via UDG Normalised API.
|
|
6579
|
+
* @summary Get Contacts
|
|
6580
|
+
*/
|
|
6581
|
+
const udgNormalisedQuickbooksGetContacts = (udgNormalisedQuickbooksGetContactsBody) => {
|
|
6582
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-quickbooks/contacts`, method: 'POST',
|
|
6583
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6584
|
+
data: udgNormalisedQuickbooksGetContactsBody
|
|
6585
|
+
});
|
|
6586
|
+
};
|
|
6587
|
+
/**
|
|
6588
|
+
* Get Company Info from QuickBooks via UDG Normalised API.
|
|
6589
|
+
* @summary Get Company Info
|
|
6590
|
+
*/
|
|
6591
|
+
const udgNormalisedQuickbooksGetCompanyInfo = (udgNormalisedQuickbooksGetCompanyInfoBody) => {
|
|
6592
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-quickbooks/company-info`, method: 'POST',
|
|
6593
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6594
|
+
data: udgNormalisedQuickbooksGetCompanyInfoBody
|
|
6595
|
+
});
|
|
6596
|
+
};
|
|
6597
|
+
/**
|
|
6598
|
+
* Get Employees from QuickBooks via UDG Normalised API.
|
|
6599
|
+
* @summary Get Employees
|
|
6600
|
+
*/
|
|
6601
|
+
const udgNormalisedQuickbooksGetEmployees = (udgNormalisedQuickbooksGetEmployeesBody) => {
|
|
6602
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-quickbooks/employees`, method: 'POST',
|
|
6603
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6604
|
+
data: udgNormalisedQuickbooksGetEmployeesBody
|
|
6605
|
+
});
|
|
6606
|
+
};
|
|
6607
|
+
/**
|
|
6608
|
+
* Get Invoices from QuickBooks via UDG Normalised API.
|
|
6609
|
+
* @summary Get Invoices
|
|
6610
|
+
*/
|
|
6611
|
+
const udgNormalisedQuickbooksGetInvoices = (udgNormalisedQuickbooksGetInvoicesBody) => {
|
|
6612
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-quickbooks/invoices`, method: 'POST',
|
|
6613
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6614
|
+
data: udgNormalisedQuickbooksGetInvoicesBody
|
|
6615
|
+
});
|
|
6616
|
+
};
|
|
6617
|
+
/**
|
|
6618
|
+
* Get Bills from QuickBooks via UDG Normalised API.
|
|
6619
|
+
* @summary Get Bills
|
|
6620
|
+
*/
|
|
6621
|
+
const udgNormalisedQuickbooksGetBills = (udgNormalisedQuickbooksGetBillsBody) => {
|
|
6622
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-quickbooks/bills`, method: 'POST',
|
|
6623
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6624
|
+
data: udgNormalisedQuickbooksGetBillsBody
|
|
6625
|
+
});
|
|
6626
|
+
};
|
|
6627
|
+
/**
|
|
6628
|
+
* Get Credit Notes from QuickBooks via UDG Normalised API.
|
|
6629
|
+
* @summary Get Credit Notes
|
|
6630
|
+
*/
|
|
6631
|
+
const udgNormalisedQuickbooksGetCreditNotes = (udgNormalisedQuickbooksGetCreditNotesBody) => {
|
|
6632
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-quickbooks/credit-notes`, method: 'POST',
|
|
6633
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6634
|
+
data: udgNormalisedQuickbooksGetCreditNotesBody
|
|
6635
|
+
});
|
|
6636
|
+
};
|
|
6637
|
+
/**
|
|
6638
|
+
* Get Documents from QuickBooks via UDG Normalised API.
|
|
6639
|
+
* @summary Get Documents
|
|
6640
|
+
*/
|
|
6641
|
+
const udgNormalisedQuickbooksGetDocuments = (udgNormalisedQuickbooksGetDocumentsBody) => {
|
|
6642
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-quickbooks/documents`, method: 'POST',
|
|
6643
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6644
|
+
data: udgNormalisedQuickbooksGetDocumentsBody
|
|
6645
|
+
});
|
|
6646
|
+
};
|
|
6647
|
+
/**
|
|
6648
|
+
* Get Recurring Documents from QuickBooks via UDG Normalised API.
|
|
6649
|
+
* @summary Get Recurring Documents
|
|
6650
|
+
*/
|
|
6651
|
+
const udgNormalisedQuickbooksGetRecurringDocuments = (udgNormalisedQuickbooksGetRecurringDocumentsBody) => {
|
|
6652
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-quickbooks/recurring-documents`, method: 'POST',
|
|
6653
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6654
|
+
data: udgNormalisedQuickbooksGetRecurringDocumentsBody
|
|
6655
|
+
});
|
|
6656
|
+
};
|
|
6657
|
+
/**
|
|
6658
|
+
* Get Payments from QuickBooks via UDG Normalised API.
|
|
6659
|
+
* @summary Get Payments
|
|
6660
|
+
*/
|
|
6661
|
+
const udgNormalisedQuickbooksGetPayments = (udgNormalisedQuickbooksGetPaymentsBody) => {
|
|
6662
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-quickbooks/payments`, method: 'POST',
|
|
6663
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6664
|
+
data: udgNormalisedQuickbooksGetPaymentsBody
|
|
6665
|
+
});
|
|
6666
|
+
};
|
|
6667
|
+
/**
|
|
6668
|
+
* Get Items from QuickBooks via UDG Normalised API.
|
|
6669
|
+
* @summary Get Items
|
|
6670
|
+
*/
|
|
6671
|
+
const udgNormalisedQuickbooksGetItems = (udgNormalisedQuickbooksGetItemsBody) => {
|
|
6672
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-quickbooks/items`, method: 'POST',
|
|
6673
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6674
|
+
data: udgNormalisedQuickbooksGetItemsBody
|
|
6675
|
+
});
|
|
6676
|
+
};
|
|
6677
|
+
/**
|
|
6678
|
+
* Get Accounts from QuickBooks via UDG Normalised API.
|
|
6679
|
+
* @summary Get Accounts
|
|
6680
|
+
*/
|
|
6681
|
+
const udgNormalisedQuickbooksGetAccounts = (udgNormalisedQuickbooksGetAccountsBody) => {
|
|
6682
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-quickbooks/accounts`, method: 'POST',
|
|
6683
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6684
|
+
data: udgNormalisedQuickbooksGetAccountsBody
|
|
6685
|
+
});
|
|
6686
|
+
};
|
|
6687
|
+
/**
|
|
6688
|
+
* Get Transactions from QuickBooks via UDG Normalised API.
|
|
6689
|
+
* @summary Get Transactions
|
|
6690
|
+
*/
|
|
6691
|
+
const udgNormalisedQuickbooksGetTransactions = (udgNormalisedQuickbooksGetTransactionsBody) => {
|
|
6692
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-quickbooks/transactions`, method: 'POST',
|
|
6693
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6694
|
+
data: udgNormalisedQuickbooksGetTransactionsBody
|
|
6695
|
+
});
|
|
6696
|
+
};
|
|
6697
|
+
/**
|
|
6698
|
+
* Get Balance Sheet (Accrual) from QuickBooks via UDG Normalised API.
|
|
6699
|
+
* @summary Get Balance Sheet (Accrual)
|
|
6700
|
+
*/
|
|
6701
|
+
const udgNormalisedQuickbooksGetBalanceSheetAccrual = (udgNormalisedQuickbooksGetBalanceSheetAccrualBody) => {
|
|
6702
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-quickbooks/balance-sheet-accrual`, method: 'POST',
|
|
6703
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6704
|
+
data: udgNormalisedQuickbooksGetBalanceSheetAccrualBody
|
|
6705
|
+
});
|
|
6706
|
+
};
|
|
6707
|
+
/**
|
|
6708
|
+
* Get Profit and Loss (Accrual) from QuickBooks via UDG Normalised API.
|
|
6709
|
+
* @summary Get Profit and Loss (Accrual)
|
|
6710
|
+
*/
|
|
6711
|
+
const udgNormalisedQuickbooksGetProfitAndLossAccrual = (udgNormalisedQuickbooksGetProfitAndLossAccrualBody) => {
|
|
6712
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-quickbooks/profit-and-loss-accrual`, method: 'POST',
|
|
6713
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6714
|
+
data: udgNormalisedQuickbooksGetProfitAndLossAccrualBody
|
|
6715
|
+
});
|
|
6716
|
+
};
|
|
6717
|
+
/**
|
|
6718
|
+
* Get Cash Flow from QuickBooks via UDG Normalised API.
|
|
6719
|
+
* @summary Get Cash Flow
|
|
6720
|
+
*/
|
|
6721
|
+
const udgNormalisedQuickbooksGetCashflow = (udgNormalisedQuickbooksGetCashflowBody) => {
|
|
6722
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-quickbooks/cashflow`, method: 'POST',
|
|
6723
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6724
|
+
data: udgNormalisedQuickbooksGetCashflowBody
|
|
6725
|
+
});
|
|
6726
|
+
};
|
|
6727
|
+
/**
|
|
6728
|
+
* Get Taxes from QuickBooks via UDG Normalised API.
|
|
6729
|
+
* @summary Get Taxes
|
|
6730
|
+
*/
|
|
6731
|
+
const udgNormalisedQuickbooksGetTaxes = (udgNormalisedQuickbooksGetTaxesBody) => {
|
|
6732
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-quickbooks/taxes`, method: 'POST',
|
|
6733
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6734
|
+
data: udgNormalisedQuickbooksGetTaxesBody
|
|
6735
|
+
});
|
|
6736
|
+
};
|
|
6737
|
+
/**
|
|
6738
|
+
* Get Profit and Loss (Cash) from QuickBooks via UDG Normalised API.
|
|
6739
|
+
* @summary Get Profit and Loss (Cash)
|
|
6740
|
+
*/
|
|
6741
|
+
const udgNormalisedQuickbooksGetProfitAndLossCash = (udgNormalisedQuickbooksGetProfitAndLossCashBody) => {
|
|
6742
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-quickbooks/profit-and-loss-cash`, method: 'POST',
|
|
6743
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6744
|
+
data: udgNormalisedQuickbooksGetProfitAndLossCashBody
|
|
6745
|
+
});
|
|
6746
|
+
};
|
|
6747
|
+
/**
|
|
6748
|
+
* Get Balance Sheet (Cash) from QuickBooks via UDG Normalised API.
|
|
6749
|
+
* @summary Get Balance Sheet (Cash)
|
|
6750
|
+
*/
|
|
6751
|
+
const udgNormalisedQuickbooksGetBalanceSheetCash = (udgNormalisedQuickbooksGetBalanceSheetCashBody) => {
|
|
6752
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-quickbooks/balance-sheet-cash`, method: 'POST',
|
|
6753
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6754
|
+
data: udgNormalisedQuickbooksGetBalanceSheetCashBody
|
|
6755
|
+
});
|
|
6756
|
+
};
|
|
6757
|
+
/**
|
|
6758
|
+
* Exchanges platform UDG credentials for an access token and caches it for Managed integration configs.
|
|
6759
|
+
* @summary Authenticate with Wave via UDG
|
|
6760
|
+
*/
|
|
6761
|
+
const udgNormalisedWaveAuthenticate = (udgNormalisedWaveAuthenticateBody) => {
|
|
6762
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-wave/authenticate`, method: 'POST',
|
|
6763
|
+
headers: { 'Content-Type': 'application/json', },
|
|
6764
|
+
data: udgNormalisedWaveAuthenticateBody
|
|
6765
|
+
});
|
|
6766
|
+
};
|
|
6767
|
+
/**
|
|
6768
|
+
* Get Accounts from Wave via UDG Normalised API.
|
|
6769
|
+
* @summary Get Accounts
|
|
5980
6770
|
*/
|
|
5981
|
-
const
|
|
5982
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6771
|
+
const udgNormalisedWaveGetAccounts = (udgNormalisedWaveGetAccountsBody) => {
|
|
6772
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-wave/accounts`, method: 'POST',
|
|
5983
6773
|
headers: { 'Content-Type': 'application/json', },
|
|
5984
|
-
data:
|
|
6774
|
+
data: udgNormalisedWaveGetAccountsBody
|
|
5985
6775
|
});
|
|
5986
6776
|
};
|
|
5987
6777
|
/**
|
|
5988
|
-
*
|
|
6778
|
+
* Get Contacts from Wave via UDG Normalised API.
|
|
6779
|
+
* @summary Get Contacts
|
|
5989
6780
|
*/
|
|
5990
|
-
const
|
|
5991
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6781
|
+
const udgNormalisedWaveGetContacts = (udgNormalisedWaveGetContactsBody) => {
|
|
6782
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-wave/contacts`, method: 'POST',
|
|
5992
6783
|
headers: { 'Content-Type': 'application/json', },
|
|
5993
|
-
data:
|
|
6784
|
+
data: udgNormalisedWaveGetContactsBody
|
|
5994
6785
|
});
|
|
5995
6786
|
};
|
|
5996
6787
|
/**
|
|
5997
|
-
*
|
|
6788
|
+
* Get Company Info from Wave via UDG Normalised API.
|
|
6789
|
+
* @summary Get Company Info
|
|
5998
6790
|
*/
|
|
5999
|
-
const
|
|
6000
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6791
|
+
const udgNormalisedWaveGetCompanyInfo = (udgNormalisedWaveGetCompanyInfoBody) => {
|
|
6792
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-wave/company-info`, method: 'POST',
|
|
6001
6793
|
headers: { 'Content-Type': 'application/json', },
|
|
6002
|
-
data:
|
|
6794
|
+
data: udgNormalisedWaveGetCompanyInfoBody
|
|
6003
6795
|
});
|
|
6004
6796
|
};
|
|
6005
6797
|
/**
|
|
6006
|
-
*
|
|
6798
|
+
* Get Invoices from Wave via UDG Normalised API.
|
|
6799
|
+
* @summary Get Invoices
|
|
6007
6800
|
*/
|
|
6008
|
-
const
|
|
6009
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6801
|
+
const udgNormalisedWaveGetInvoices = (udgNormalisedWaveGetInvoicesBody) => {
|
|
6802
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-wave/invoices`, method: 'POST',
|
|
6010
6803
|
headers: { 'Content-Type': 'application/json', },
|
|
6011
|
-
data:
|
|
6804
|
+
data: udgNormalisedWaveGetInvoicesBody
|
|
6012
6805
|
});
|
|
6013
6806
|
};
|
|
6014
6807
|
/**
|
|
6015
|
-
*
|
|
6808
|
+
* Get Items from Wave via UDG Normalised API.
|
|
6809
|
+
* @summary Get Items
|
|
6016
6810
|
*/
|
|
6017
|
-
const
|
|
6018
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6811
|
+
const udgNormalisedWaveGetItems = (udgNormalisedWaveGetItemsBody) => {
|
|
6812
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-wave/items`, method: 'POST',
|
|
6019
6813
|
headers: { 'Content-Type': 'application/json', },
|
|
6020
|
-
data:
|
|
6814
|
+
data: udgNormalisedWaveGetItemsBody
|
|
6021
6815
|
});
|
|
6022
6816
|
};
|
|
6023
6817
|
/**
|
|
6024
|
-
*
|
|
6818
|
+
* Exchanges platform UDG credentials for an access token and caches it for Managed integration configs.
|
|
6819
|
+
* @summary Authenticate with Xero via UDG
|
|
6025
6820
|
*/
|
|
6026
|
-
const
|
|
6027
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6821
|
+
const udgNormalisedXeroAuthenticate = (udgNormalisedXeroAuthenticateBody) => {
|
|
6822
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-xero/authenticate`, method: 'POST',
|
|
6028
6823
|
headers: { 'Content-Type': 'application/json', },
|
|
6029
|
-
data:
|
|
6824
|
+
data: udgNormalisedXeroAuthenticateBody
|
|
6030
6825
|
});
|
|
6031
6826
|
};
|
|
6032
6827
|
/**
|
|
6033
|
-
*
|
|
6828
|
+
* Get Accounts from Xero via UDG Normalised API.
|
|
6829
|
+
* @summary Get Accounts
|
|
6034
6830
|
*/
|
|
6035
|
-
const
|
|
6036
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6831
|
+
const udgNormalisedXeroGetAccounts = (udgNormalisedXeroGetAccountsBody) => {
|
|
6832
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-xero/accounts`, method: 'POST',
|
|
6037
6833
|
headers: { 'Content-Type': 'application/json', },
|
|
6038
|
-
data:
|
|
6834
|
+
data: udgNormalisedXeroGetAccountsBody
|
|
6039
6835
|
});
|
|
6040
6836
|
};
|
|
6041
6837
|
/**
|
|
6042
|
-
*
|
|
6838
|
+
* Get Contacts from Xero via UDG Normalised API.
|
|
6839
|
+
* @summary Get Contacts
|
|
6043
6840
|
*/
|
|
6044
|
-
const
|
|
6045
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6841
|
+
const udgNormalisedXeroGetContacts = (udgNormalisedXeroGetContactsBody) => {
|
|
6842
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-xero/contacts`, method: 'POST',
|
|
6046
6843
|
headers: { 'Content-Type': 'application/json', },
|
|
6047
|
-
data:
|
|
6844
|
+
data: udgNormalisedXeroGetContactsBody
|
|
6048
6845
|
});
|
|
6049
6846
|
};
|
|
6050
6847
|
/**
|
|
6051
|
-
*
|
|
6848
|
+
* Get Company Info from Xero via UDG Normalised API.
|
|
6849
|
+
* @summary Get Company Info
|
|
6052
6850
|
*/
|
|
6053
|
-
const
|
|
6054
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6851
|
+
const udgNormalisedXeroGetCompanyInfo = (udgNormalisedXeroGetCompanyInfoBody) => {
|
|
6852
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-xero/company-info`, method: 'POST',
|
|
6055
6853
|
headers: { 'Content-Type': 'application/json', },
|
|
6056
|
-
data:
|
|
6854
|
+
data: udgNormalisedXeroGetCompanyInfoBody
|
|
6057
6855
|
});
|
|
6058
6856
|
};
|
|
6059
6857
|
/**
|
|
6060
|
-
*
|
|
6858
|
+
* Get Employees from Xero via UDG Normalised API.
|
|
6859
|
+
* @summary Get Employees
|
|
6061
6860
|
*/
|
|
6062
|
-
const
|
|
6063
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6861
|
+
const udgNormalisedXeroGetEmployees = (udgNormalisedXeroGetEmployeesBody) => {
|
|
6862
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-xero/employees`, method: 'POST',
|
|
6064
6863
|
headers: { 'Content-Type': 'application/json', },
|
|
6065
|
-
data:
|
|
6864
|
+
data: udgNormalisedXeroGetEmployeesBody
|
|
6066
6865
|
});
|
|
6067
6866
|
};
|
|
6068
6867
|
/**
|
|
6069
|
-
*
|
|
6868
|
+
* Get Invoices from Xero via UDG Normalised API.
|
|
6869
|
+
* @summary Get Invoices
|
|
6070
6870
|
*/
|
|
6071
|
-
const
|
|
6072
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6871
|
+
const udgNormalisedXeroGetInvoices = (udgNormalisedXeroGetInvoicesBody) => {
|
|
6872
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-xero/invoices`, method: 'POST',
|
|
6073
6873
|
headers: { 'Content-Type': 'application/json', },
|
|
6074
|
-
data:
|
|
6874
|
+
data: udgNormalisedXeroGetInvoicesBody
|
|
6075
6875
|
});
|
|
6076
6876
|
};
|
|
6077
6877
|
/**
|
|
6078
|
-
*
|
|
6878
|
+
* Get Bills from Xero via UDG Normalised API.
|
|
6879
|
+
* @summary Get Bills
|
|
6079
6880
|
*/
|
|
6080
|
-
const
|
|
6081
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6881
|
+
const udgNormalisedXeroGetBills = (udgNormalisedXeroGetBillsBody) => {
|
|
6882
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-xero/bills`, method: 'POST',
|
|
6082
6883
|
headers: { 'Content-Type': 'application/json', },
|
|
6083
|
-
data:
|
|
6884
|
+
data: udgNormalisedXeroGetBillsBody
|
|
6084
6885
|
});
|
|
6085
6886
|
};
|
|
6086
6887
|
/**
|
|
6087
|
-
*
|
|
6888
|
+
* Get Credit Notes from Xero via UDG Normalised API.
|
|
6889
|
+
* @summary Get Credit Notes
|
|
6088
6890
|
*/
|
|
6089
|
-
const
|
|
6090
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6891
|
+
const udgNormalisedXeroGetCreditNotes = (udgNormalisedXeroGetCreditNotesBody) => {
|
|
6892
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-xero/credit-notes`, method: 'POST',
|
|
6091
6893
|
headers: { 'Content-Type': 'application/json', },
|
|
6092
|
-
data:
|
|
6894
|
+
data: udgNormalisedXeroGetCreditNotesBody
|
|
6093
6895
|
});
|
|
6094
6896
|
};
|
|
6095
6897
|
/**
|
|
6096
|
-
*
|
|
6898
|
+
* Get Documents from Xero via UDG Normalised API.
|
|
6899
|
+
* @summary Get Documents
|
|
6097
6900
|
*/
|
|
6098
|
-
const
|
|
6099
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6901
|
+
const udgNormalisedXeroGetDocuments = (udgNormalisedXeroGetDocumentsBody) => {
|
|
6902
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-xero/documents`, method: 'POST',
|
|
6100
6903
|
headers: { 'Content-Type': 'application/json', },
|
|
6101
|
-
data:
|
|
6904
|
+
data: udgNormalisedXeroGetDocumentsBody
|
|
6102
6905
|
});
|
|
6103
6906
|
};
|
|
6104
6907
|
/**
|
|
6105
|
-
*
|
|
6908
|
+
* Get Recurring Documents from Xero via UDG Normalised API.
|
|
6909
|
+
* @summary Get Recurring Documents
|
|
6106
6910
|
*/
|
|
6107
|
-
const
|
|
6108
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6911
|
+
const udgNormalisedXeroGetRecurringDocuments = (udgNormalisedXeroGetRecurringDocumentsBody) => {
|
|
6912
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-xero/recurring-documents`, method: 'POST',
|
|
6109
6913
|
headers: { 'Content-Type': 'application/json', },
|
|
6110
|
-
data:
|
|
6914
|
+
data: udgNormalisedXeroGetRecurringDocumentsBody
|
|
6111
6915
|
});
|
|
6112
6916
|
};
|
|
6113
6917
|
/**
|
|
6114
|
-
*
|
|
6918
|
+
* Get Payments from Xero via UDG Normalised API.
|
|
6919
|
+
* @summary Get Payments
|
|
6115
6920
|
*/
|
|
6116
|
-
const
|
|
6117
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6921
|
+
const udgNormalisedXeroGetPayments = (udgNormalisedXeroGetPaymentsBody) => {
|
|
6922
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-xero/payments`, method: 'POST',
|
|
6118
6923
|
headers: { 'Content-Type': 'application/json', },
|
|
6119
|
-
data:
|
|
6924
|
+
data: udgNormalisedXeroGetPaymentsBody
|
|
6120
6925
|
});
|
|
6121
6926
|
};
|
|
6122
6927
|
/**
|
|
6123
|
-
*
|
|
6928
|
+
* Get Items from Xero via UDG Normalised API.
|
|
6929
|
+
* @summary Get Items
|
|
6124
6930
|
*/
|
|
6125
|
-
const
|
|
6126
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6931
|
+
const udgNormalisedXeroGetItems = (udgNormalisedXeroGetItemsBody) => {
|
|
6932
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-xero/items`, method: 'POST',
|
|
6127
6933
|
headers: { 'Content-Type': 'application/json', },
|
|
6128
|
-
data:
|
|
6934
|
+
data: udgNormalisedXeroGetItemsBody
|
|
6129
6935
|
});
|
|
6130
6936
|
};
|
|
6131
6937
|
/**
|
|
6132
|
-
*
|
|
6938
|
+
* Get Transactions from Xero via UDG Normalised API.
|
|
6939
|
+
* @summary Get Transactions
|
|
6133
6940
|
*/
|
|
6134
|
-
const
|
|
6135
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6941
|
+
const udgNormalisedXeroGetTransactions = (udgNormalisedXeroGetTransactionsBody) => {
|
|
6942
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-xero/transactions`, method: 'POST',
|
|
6136
6943
|
headers: { 'Content-Type': 'application/json', },
|
|
6137
|
-
data:
|
|
6944
|
+
data: udgNormalisedXeroGetTransactionsBody
|
|
6138
6945
|
});
|
|
6139
6946
|
};
|
|
6140
6947
|
/**
|
|
6141
|
-
*
|
|
6948
|
+
* Get Balance Sheet (Accrual) from Xero via UDG Normalised API.
|
|
6949
|
+
* @summary Get Balance Sheet (Accrual)
|
|
6142
6950
|
*/
|
|
6143
|
-
const
|
|
6144
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6951
|
+
const udgNormalisedXeroGetBalanceSheetAccrual = (udgNormalisedXeroGetBalanceSheetAccrualBody) => {
|
|
6952
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-xero/balance-sheet-accrual`, method: 'POST',
|
|
6145
6953
|
headers: { 'Content-Type': 'application/json', },
|
|
6146
|
-
data:
|
|
6954
|
+
data: udgNormalisedXeroGetBalanceSheetAccrualBody
|
|
6147
6955
|
});
|
|
6148
6956
|
};
|
|
6149
6957
|
/**
|
|
6150
|
-
*
|
|
6958
|
+
* Get Balance Sheet (Cash) from Xero via UDG Normalised API.
|
|
6959
|
+
* @summary Get Balance Sheet (Cash)
|
|
6151
6960
|
*/
|
|
6152
|
-
const
|
|
6153
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6961
|
+
const udgNormalisedXeroGetBalanceSheetCash = (udgNormalisedXeroGetBalanceSheetCashBody) => {
|
|
6962
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-xero/balance-sheet-cash`, method: 'POST',
|
|
6154
6963
|
headers: { 'Content-Type': 'application/json', },
|
|
6155
|
-
data:
|
|
6964
|
+
data: udgNormalisedXeroGetBalanceSheetCashBody
|
|
6156
6965
|
});
|
|
6157
6966
|
};
|
|
6158
6967
|
/**
|
|
6159
|
-
*
|
|
6968
|
+
* Get Profit and Loss (Accrual) from Xero via UDG Normalised API.
|
|
6969
|
+
* @summary Get Profit and Loss (Accrual)
|
|
6160
6970
|
*/
|
|
6161
|
-
const
|
|
6162
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6971
|
+
const udgNormalisedXeroGetProfitAndLossAccrual = (udgNormalisedXeroGetProfitAndLossAccrualBody) => {
|
|
6972
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-xero/profit-and-loss-accrual`, method: 'POST',
|
|
6163
6973
|
headers: { 'Content-Type': 'application/json', },
|
|
6164
|
-
data:
|
|
6974
|
+
data: udgNormalisedXeroGetProfitAndLossAccrualBody
|
|
6165
6975
|
});
|
|
6166
6976
|
};
|
|
6167
6977
|
/**
|
|
6168
|
-
*
|
|
6978
|
+
* Get Profit and Loss (Cash) from Xero via UDG Normalised API.
|
|
6979
|
+
* @summary Get Profit and Loss (Cash)
|
|
6169
6980
|
*/
|
|
6170
|
-
const
|
|
6171
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6981
|
+
const udgNormalisedXeroGetProfitAndLossCash = (udgNormalisedXeroGetProfitAndLossCashBody) => {
|
|
6982
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-xero/profit-and-loss-cash`, method: 'POST',
|
|
6172
6983
|
headers: { 'Content-Type': 'application/json', },
|
|
6173
|
-
data:
|
|
6984
|
+
data: udgNormalisedXeroGetProfitAndLossCashBody
|
|
6174
6985
|
});
|
|
6175
6986
|
};
|
|
6176
6987
|
/**
|
|
6177
|
-
*
|
|
6988
|
+
* Get Taxes from Xero via UDG Normalised API.
|
|
6989
|
+
* @summary Get Taxes
|
|
6178
6990
|
*/
|
|
6179
|
-
const
|
|
6180
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
6991
|
+
const udgNormalisedXeroGetTaxes = (udgNormalisedXeroGetTaxesBody) => {
|
|
6992
|
+
return (0, http_client_1.customAxios)({ url: `/udg-normalised-xero/taxes`, method: 'POST',
|
|
6181
6993
|
headers: { 'Content-Type': 'application/json', },
|
|
6182
|
-
data:
|
|
6994
|
+
data: udgNormalisedXeroGetTaxesBody
|
|
6183
6995
|
});
|
|
6184
6996
|
};
|
|
6185
6997
|
/**
|
|
6186
|
-
*
|
|
6998
|
+
* Returns authorization URL for user to complete OAuth flow.
|
|
6999
|
+
* @summary Initiate Wealthbox OAuth flow
|
|
6187
7000
|
*/
|
|
6188
|
-
const
|
|
6189
|
-
return (0, http_client_1.customAxios)({ url: `/wealthbox/
|
|
7001
|
+
const wealthboxOauthInitiate = (wealthboxOauthInitiateBody) => {
|
|
7002
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/oauth/initiate`, method: 'POST',
|
|
6190
7003
|
headers: { 'Content-Type': 'application/json', },
|
|
6191
|
-
data:
|
|
7004
|
+
data: wealthboxOauthInitiateBody
|
|
6192
7005
|
});
|
|
6193
7006
|
};
|
|
6194
7007
|
/**
|
|
6195
|
-
*
|
|
7008
|
+
* Stores clientId and clientSecret for PerUser Wealthbox configs without starting OAuth.
|
|
7009
|
+
* @summary Set Wealthbox OAuth app credentials for a user
|
|
6196
7010
|
*/
|
|
6197
|
-
const
|
|
6198
|
-
return (0, http_client_1.customAxios)({ url: `/wealthbox/
|
|
7011
|
+
const wealthboxSetUserCredentials = (wealthboxSetUserCredentialsBody) => {
|
|
7012
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/auth/set-user-credentials`, method: 'POST',
|
|
6199
7013
|
headers: { 'Content-Type': 'application/json', },
|
|
6200
|
-
data:
|
|
7014
|
+
data: wealthboxSetUserCredentialsBody
|
|
6201
7015
|
});
|
|
6202
7016
|
};
|
|
6203
7017
|
/**
|
|
6204
|
-
*
|
|
7018
|
+
* Receives OAuth callback from Wealthbox and stores user credentials.
|
|
7019
|
+
* @summary Handle Wealthbox OAuth callback
|
|
6205
7020
|
*/
|
|
6206
|
-
const
|
|
6207
|
-
return (0, http_client_1.customAxios)({ url: `/wealthbox/
|
|
6208
|
-
|
|
6209
|
-
data: wealthboxGetTagsBody
|
|
7021
|
+
const wealthboxOauthCallback = (params) => {
|
|
7022
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/oauth/callback`, method: 'GET',
|
|
7023
|
+
params
|
|
6210
7024
|
});
|
|
6211
7025
|
};
|
|
6212
7026
|
/**
|
|
6213
|
-
* @summary Get all
|
|
7027
|
+
* @summary Get all contacts
|
|
6214
7028
|
*/
|
|
6215
|
-
const
|
|
6216
|
-
return (0, http_client_1.customAxios)({ url: `/wealthbox/
|
|
7029
|
+
const wealthboxGetContacts = (wealthboxGetContactsBody) => {
|
|
7030
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/contacts/list`, method: 'POST',
|
|
6217
7031
|
headers: { 'Content-Type': 'application/json', },
|
|
6218
|
-
data:
|
|
7032
|
+
data: wealthboxGetContactsBody
|
|
6219
7033
|
});
|
|
6220
7034
|
};
|
|
6221
7035
|
/**
|
|
6222
|
-
*
|
|
7036
|
+
* Retrieve a specific contact using its unique identifier.
|
|
7037
|
+
* @summary Retrieve an existing contact
|
|
6223
7038
|
*/
|
|
6224
|
-
const
|
|
6225
|
-
return (0, http_client_1.customAxios)({ url: `/wealthbox/
|
|
7039
|
+
const wealthboxGetContact = (wealthboxGetContactBody) => {
|
|
7040
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/contacts/get`, method: 'POST',
|
|
6226
7041
|
headers: { 'Content-Type': 'application/json', },
|
|
6227
|
-
data:
|
|
7042
|
+
data: wealthboxGetContactBody
|
|
6228
7043
|
});
|
|
6229
7044
|
};
|
|
6230
7045
|
/**
|
|
6231
|
-
* @summary
|
|
7046
|
+
* @summary Create a new contact
|
|
6232
7047
|
*/
|
|
6233
|
-
const
|
|
6234
|
-
return (0, http_client_1.customAxios)({ url: `/wealthbox/
|
|
7048
|
+
const wealthboxCreateContact = (wealthboxCreateContactBody) => {
|
|
7049
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/contacts`, method: 'POST',
|
|
6235
7050
|
headers: { 'Content-Type': 'application/json', },
|
|
6236
|
-
data:
|
|
7051
|
+
data: wealthboxCreateContactBody
|
|
6237
7052
|
});
|
|
6238
7053
|
};
|
|
6239
7054
|
/**
|
|
6240
|
-
* @summary
|
|
7055
|
+
* @summary Update a contact
|
|
6241
7056
|
*/
|
|
6242
|
-
const
|
|
6243
|
-
return (0, http_client_1.customAxios)({ url: `/wealthbox/
|
|
7057
|
+
const wealthboxUpdateContact = (wealthboxUpdateContactBody) => {
|
|
7058
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/contacts/update`, method: 'POST',
|
|
6244
7059
|
headers: { 'Content-Type': 'application/json', },
|
|
6245
|
-
data:
|
|
7060
|
+
data: wealthboxUpdateContactBody
|
|
6246
7061
|
});
|
|
6247
7062
|
};
|
|
6248
7063
|
/**
|
|
6249
|
-
* @summary
|
|
7064
|
+
* @summary Delete a contact
|
|
6250
7065
|
*/
|
|
6251
|
-
const
|
|
6252
|
-
return (0, http_client_1.customAxios)({ url: `/wealthbox/
|
|
7066
|
+
const wealthboxDeleteContact = (wealthboxDeleteContactBody) => {
|
|
7067
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/contacts/delete`, method: 'POST',
|
|
6253
7068
|
headers: { 'Content-Type': 'application/json', },
|
|
6254
|
-
data:
|
|
7069
|
+
data: wealthboxDeleteContactBody
|
|
6255
7070
|
});
|
|
6256
7071
|
};
|
|
6257
7072
|
/**
|
|
6258
|
-
* @summary Get
|
|
7073
|
+
* @summary Get all tasks
|
|
6259
7074
|
*/
|
|
6260
|
-
const
|
|
6261
|
-
return (0, http_client_1.customAxios)({ url: `/wealthbox/
|
|
7075
|
+
const wealthboxGetTasks = (wealthboxGetTasksBody) => {
|
|
7076
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/tasks/list`, method: 'POST',
|
|
6262
7077
|
headers: { 'Content-Type': 'application/json', },
|
|
6263
|
-
data:
|
|
7078
|
+
data: wealthboxGetTasksBody
|
|
6264
7079
|
});
|
|
6265
7080
|
};
|
|
6266
7081
|
/**
|
|
6267
|
-
* @summary Get
|
|
7082
|
+
* @summary Get task by ID
|
|
6268
7083
|
*/
|
|
6269
|
-
const
|
|
6270
|
-
return (0, http_client_1.customAxios)({ url: `/wealthbox/
|
|
7084
|
+
const wealthboxGetTask = (wealthboxGetTaskBody) => {
|
|
7085
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/tasks/get`, method: 'POST',
|
|
6271
7086
|
headers: { 'Content-Type': 'application/json', },
|
|
6272
|
-
data:
|
|
7087
|
+
data: wealthboxGetTaskBody
|
|
6273
7088
|
});
|
|
6274
7089
|
};
|
|
6275
7090
|
/**
|
|
6276
|
-
* @summary
|
|
7091
|
+
* @summary Create a new task
|
|
6277
7092
|
*/
|
|
6278
|
-
const
|
|
6279
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7093
|
+
const wealthboxCreateTask = (wealthboxCreateTaskBody) => {
|
|
7094
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/tasks`, method: 'POST',
|
|
6280
7095
|
headers: { 'Content-Type': 'application/json', },
|
|
6281
|
-
data:
|
|
7096
|
+
data: wealthboxCreateTaskBody
|
|
6282
7097
|
});
|
|
6283
7098
|
};
|
|
6284
7099
|
/**
|
|
6285
|
-
* @summary
|
|
7100
|
+
* @summary Update a task
|
|
6286
7101
|
*/
|
|
6287
|
-
const
|
|
6288
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7102
|
+
const wealthboxUpdateTask = (wealthboxUpdateTaskBody) => {
|
|
7103
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/tasks/update`, method: 'POST',
|
|
6289
7104
|
headers: { 'Content-Type': 'application/json', },
|
|
6290
|
-
data:
|
|
7105
|
+
data: wealthboxUpdateTaskBody
|
|
6291
7106
|
});
|
|
6292
7107
|
};
|
|
6293
7108
|
/**
|
|
6294
|
-
* @summary
|
|
7109
|
+
* @summary Delete a task
|
|
6295
7110
|
*/
|
|
6296
|
-
const
|
|
6297
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7111
|
+
const wealthboxDeleteTask = (wealthboxDeleteTaskBody) => {
|
|
7112
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/tasks/delete`, method: 'POST',
|
|
7113
|
+
headers: { 'Content-Type': 'application/json', },
|
|
7114
|
+
data: wealthboxDeleteTaskBody
|
|
6298
7115
|
});
|
|
6299
7116
|
};
|
|
6300
7117
|
/**
|
|
6301
|
-
* @summary
|
|
7118
|
+
* @summary Get all events
|
|
6302
7119
|
*/
|
|
6303
|
-
const
|
|
6304
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7120
|
+
const wealthboxGetEvents = (wealthboxGetEventsBody) => {
|
|
7121
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/events/list`, method: 'POST',
|
|
6305
7122
|
headers: { 'Content-Type': 'application/json', },
|
|
6306
|
-
data:
|
|
7123
|
+
data: wealthboxGetEventsBody
|
|
6307
7124
|
});
|
|
6308
7125
|
};
|
|
6309
7126
|
/**
|
|
6310
|
-
* @summary Get
|
|
7127
|
+
* @summary Get event by ID
|
|
6311
7128
|
*/
|
|
6312
|
-
const
|
|
6313
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7129
|
+
const wealthboxGetEvent = (wealthboxGetEventBody) => {
|
|
7130
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/events/get`, method: 'POST',
|
|
6314
7131
|
headers: { 'Content-Type': 'application/json', },
|
|
6315
|
-
data:
|
|
7132
|
+
data: wealthboxGetEventBody
|
|
6316
7133
|
});
|
|
6317
7134
|
};
|
|
6318
7135
|
/**
|
|
6319
|
-
* @summary
|
|
7136
|
+
* @summary Create a new event
|
|
6320
7137
|
*/
|
|
6321
|
-
const
|
|
6322
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7138
|
+
const wealthboxCreateEvent = (wealthboxCreateEventBody) => {
|
|
7139
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/events`, method: 'POST',
|
|
6323
7140
|
headers: { 'Content-Type': 'application/json', },
|
|
6324
|
-
data:
|
|
7141
|
+
data: wealthboxCreateEventBody
|
|
6325
7142
|
});
|
|
6326
7143
|
};
|
|
6327
7144
|
/**
|
|
6328
|
-
* @summary
|
|
7145
|
+
* @summary Update an event
|
|
6329
7146
|
*/
|
|
6330
|
-
const
|
|
6331
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7147
|
+
const wealthboxUpdateEvent = (wealthboxUpdateEventBody) => {
|
|
7148
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/events/update`, method: 'POST',
|
|
6332
7149
|
headers: { 'Content-Type': 'application/json', },
|
|
6333
|
-
data:
|
|
7150
|
+
data: wealthboxUpdateEventBody
|
|
6334
7151
|
});
|
|
6335
7152
|
};
|
|
6336
7153
|
/**
|
|
6337
|
-
* @summary
|
|
7154
|
+
* @summary Delete an event
|
|
6338
7155
|
*/
|
|
6339
|
-
const
|
|
6340
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7156
|
+
const wealthboxDeleteEvent = (wealthboxDeleteEventBody) => {
|
|
7157
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/events/delete`, method: 'POST',
|
|
6341
7158
|
headers: { 'Content-Type': 'application/json', },
|
|
6342
|
-
data:
|
|
7159
|
+
data: wealthboxDeleteEventBody
|
|
6343
7160
|
});
|
|
6344
7161
|
};
|
|
6345
7162
|
/**
|
|
6346
|
-
* @summary
|
|
7163
|
+
* @summary Get all opportunities
|
|
6347
7164
|
*/
|
|
6348
|
-
const
|
|
6349
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7165
|
+
const wealthboxGetOpportunities = (wealthboxGetOpportunitiesBody) => {
|
|
7166
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/opportunities/list`, method: 'POST',
|
|
6350
7167
|
headers: { 'Content-Type': 'application/json', },
|
|
6351
|
-
data:
|
|
7168
|
+
data: wealthboxGetOpportunitiesBody
|
|
6352
7169
|
});
|
|
6353
7170
|
};
|
|
6354
7171
|
/**
|
|
6355
|
-
* @summary
|
|
7172
|
+
* @summary Get opportunity by ID
|
|
6356
7173
|
*/
|
|
6357
|
-
const
|
|
6358
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7174
|
+
const wealthboxGetOpportunity = (wealthboxGetOpportunityBody) => {
|
|
7175
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/opportunities/get`, method: 'POST',
|
|
6359
7176
|
headers: { 'Content-Type': 'application/json', },
|
|
6360
|
-
data:
|
|
7177
|
+
data: wealthboxGetOpportunityBody
|
|
6361
7178
|
});
|
|
6362
7179
|
};
|
|
6363
7180
|
/**
|
|
6364
|
-
* @summary
|
|
7181
|
+
* @summary Create a new opportunity
|
|
6365
7182
|
*/
|
|
6366
|
-
const
|
|
6367
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7183
|
+
const wealthboxCreateOpportunity = (wealthboxCreateOpportunityBody) => {
|
|
7184
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/opportunities`, method: 'POST',
|
|
6368
7185
|
headers: { 'Content-Type': 'application/json', },
|
|
6369
|
-
data:
|
|
7186
|
+
data: wealthboxCreateOpportunityBody
|
|
6370
7187
|
});
|
|
6371
7188
|
};
|
|
6372
7189
|
/**
|
|
6373
|
-
* @summary
|
|
7190
|
+
* @summary Update an opportunity
|
|
6374
7191
|
*/
|
|
6375
|
-
const
|
|
6376
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7192
|
+
const wealthboxUpdateOpportunity = (wealthboxUpdateOpportunityBody) => {
|
|
7193
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/opportunities/update`, method: 'POST',
|
|
6377
7194
|
headers: { 'Content-Type': 'application/json', },
|
|
6378
|
-
data:
|
|
7195
|
+
data: wealthboxUpdateOpportunityBody
|
|
6379
7196
|
});
|
|
6380
7197
|
};
|
|
6381
7198
|
/**
|
|
6382
|
-
* @summary
|
|
7199
|
+
* @summary Delete an opportunity
|
|
6383
7200
|
*/
|
|
6384
|
-
const
|
|
6385
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7201
|
+
const wealthboxDeleteOpportunity = (wealthboxDeleteOpportunityBody) => {
|
|
7202
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/opportunities/delete`, method: 'POST',
|
|
6386
7203
|
headers: { 'Content-Type': 'application/json', },
|
|
6387
|
-
data:
|
|
7204
|
+
data: wealthboxDeleteOpportunityBody
|
|
6388
7205
|
});
|
|
6389
7206
|
};
|
|
6390
7207
|
/**
|
|
6391
|
-
* @summary
|
|
7208
|
+
* @summary Get all notes
|
|
6392
7209
|
*/
|
|
6393
|
-
const
|
|
6394
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7210
|
+
const wealthboxGetNotes = (wealthboxGetNotesBody) => {
|
|
7211
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/notes/list`, method: 'POST',
|
|
6395
7212
|
headers: { 'Content-Type': 'application/json', },
|
|
6396
|
-
data:
|
|
7213
|
+
data: wealthboxGetNotesBody
|
|
6397
7214
|
});
|
|
6398
7215
|
};
|
|
6399
7216
|
/**
|
|
6400
|
-
* @summary
|
|
7217
|
+
* @summary Get note by ID
|
|
6401
7218
|
*/
|
|
6402
|
-
const
|
|
6403
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7219
|
+
const wealthboxGetNote = (wealthboxGetNoteBody) => {
|
|
7220
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/notes/get`, method: 'POST',
|
|
6404
7221
|
headers: { 'Content-Type': 'application/json', },
|
|
6405
|
-
data:
|
|
7222
|
+
data: wealthboxGetNoteBody
|
|
6406
7223
|
});
|
|
6407
7224
|
};
|
|
6408
7225
|
/**
|
|
6409
|
-
* @summary
|
|
7226
|
+
* @summary Create a new note
|
|
6410
7227
|
*/
|
|
6411
|
-
const
|
|
6412
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7228
|
+
const wealthboxCreateNote = (wealthboxCreateNoteBody) => {
|
|
7229
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/notes`, method: 'POST',
|
|
6413
7230
|
headers: { 'Content-Type': 'application/json', },
|
|
6414
|
-
data:
|
|
7231
|
+
data: wealthboxCreateNoteBody
|
|
6415
7232
|
});
|
|
6416
7233
|
};
|
|
6417
7234
|
/**
|
|
6418
|
-
* @summary
|
|
7235
|
+
* @summary Update a note
|
|
6419
7236
|
*/
|
|
6420
|
-
const
|
|
6421
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7237
|
+
const wealthboxUpdateNote = (wealthboxUpdateNoteBody) => {
|
|
7238
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/notes/update`, method: 'POST',
|
|
6422
7239
|
headers: { 'Content-Type': 'application/json', },
|
|
6423
|
-
data:
|
|
7240
|
+
data: wealthboxUpdateNoteBody
|
|
6424
7241
|
});
|
|
6425
7242
|
};
|
|
6426
7243
|
/**
|
|
6427
|
-
* @summary
|
|
7244
|
+
* @summary Get all projects
|
|
6428
7245
|
*/
|
|
6429
|
-
const
|
|
6430
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7246
|
+
const wealthboxGetProjects = (wealthboxGetProjectsBody) => {
|
|
7247
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/projects/list`, method: 'POST',
|
|
6431
7248
|
headers: { 'Content-Type': 'application/json', },
|
|
6432
|
-
data:
|
|
7249
|
+
data: wealthboxGetProjectsBody
|
|
6433
7250
|
});
|
|
6434
7251
|
};
|
|
6435
7252
|
/**
|
|
6436
|
-
* @summary
|
|
7253
|
+
* @summary Get project by ID
|
|
6437
7254
|
*/
|
|
6438
|
-
const
|
|
6439
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7255
|
+
const wealthboxGetProject = (wealthboxGetProjectBody) => {
|
|
7256
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/projects/get`, method: 'POST',
|
|
6440
7257
|
headers: { 'Content-Type': 'application/json', },
|
|
6441
|
-
data:
|
|
7258
|
+
data: wealthboxGetProjectBody
|
|
6442
7259
|
});
|
|
6443
7260
|
};
|
|
6444
7261
|
/**
|
|
6445
|
-
* @summary
|
|
7262
|
+
* @summary Create a new project
|
|
6446
7263
|
*/
|
|
6447
|
-
const
|
|
6448
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7264
|
+
const wealthboxCreateProject = (wealthboxCreateProjectBody) => {
|
|
7265
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/projects`, method: 'POST',
|
|
7266
|
+
headers: { 'Content-Type': 'application/json', },
|
|
7267
|
+
data: wealthboxCreateProjectBody
|
|
6449
7268
|
});
|
|
6450
7269
|
};
|
|
6451
7270
|
/**
|
|
6452
|
-
* @summary
|
|
7271
|
+
* @summary Update a project
|
|
6453
7272
|
*/
|
|
6454
|
-
const
|
|
6455
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7273
|
+
const wealthboxUpdateProject = (wealthboxUpdateProjectBody) => {
|
|
7274
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/projects/update`, method: 'POST',
|
|
6456
7275
|
headers: { 'Content-Type': 'application/json', },
|
|
6457
|
-
data:
|
|
7276
|
+
data: wealthboxUpdateProjectBody
|
|
6458
7277
|
});
|
|
6459
7278
|
};
|
|
6460
7279
|
/**
|
|
6461
|
-
* @summary
|
|
7280
|
+
* @summary Delete a project
|
|
6462
7281
|
*/
|
|
6463
|
-
const
|
|
6464
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7282
|
+
const wealthboxDeleteProject = (wealthboxDeleteProjectBody) => {
|
|
7283
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/projects/delete`, method: 'POST',
|
|
6465
7284
|
headers: { 'Content-Type': 'application/json', },
|
|
6466
|
-
data:
|
|
7285
|
+
data: wealthboxDeleteProjectBody
|
|
6467
7286
|
});
|
|
6468
7287
|
};
|
|
6469
7288
|
/**
|
|
6470
|
-
* @summary
|
|
7289
|
+
* @summary Get all workflows
|
|
6471
7290
|
*/
|
|
6472
|
-
const
|
|
6473
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7291
|
+
const wealthboxGetWorkflows = (wealthboxGetWorkflowsBody) => {
|
|
7292
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/workflows/list`, method: 'POST',
|
|
6474
7293
|
headers: { 'Content-Type': 'application/json', },
|
|
6475
|
-
data:
|
|
7294
|
+
data: wealthboxGetWorkflowsBody
|
|
6476
7295
|
});
|
|
6477
7296
|
};
|
|
6478
7297
|
/**
|
|
6479
|
-
* @summary
|
|
7298
|
+
* @summary Get workflow by ID
|
|
6480
7299
|
*/
|
|
6481
|
-
const
|
|
6482
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7300
|
+
const wealthboxGetWorkflow = (wealthboxGetWorkflowBody) => {
|
|
7301
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/workflows/get`, method: 'POST',
|
|
6483
7302
|
headers: { 'Content-Type': 'application/json', },
|
|
6484
|
-
data:
|
|
7303
|
+
data: wealthboxGetWorkflowBody
|
|
6485
7304
|
});
|
|
6486
7305
|
};
|
|
6487
7306
|
/**
|
|
6488
|
-
* @summary Create
|
|
7307
|
+
* @summary Create a new workflow
|
|
6489
7308
|
*/
|
|
6490
|
-
const
|
|
6491
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7309
|
+
const wealthboxCreateWorkflow = (wealthboxCreateWorkflowBody) => {
|
|
7310
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/workflows`, method: 'POST',
|
|
6492
7311
|
headers: { 'Content-Type': 'application/json', },
|
|
6493
|
-
data:
|
|
7312
|
+
data: wealthboxCreateWorkflowBody
|
|
6494
7313
|
});
|
|
6495
7314
|
};
|
|
6496
7315
|
/**
|
|
6497
|
-
* @summary
|
|
7316
|
+
* @summary Delete a workflow
|
|
6498
7317
|
*/
|
|
6499
|
-
const
|
|
6500
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7318
|
+
const wealthboxDeleteWorkflow = (wealthboxDeleteWorkflowBody) => {
|
|
7319
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/workflows/delete`, method: 'POST',
|
|
6501
7320
|
headers: { 'Content-Type': 'application/json', },
|
|
6502
|
-
data:
|
|
7321
|
+
data: wealthboxDeleteWorkflowBody
|
|
6503
7322
|
});
|
|
6504
7323
|
};
|
|
6505
7324
|
/**
|
|
6506
|
-
* @summary
|
|
7325
|
+
* @summary Complete a workflow step
|
|
6507
7326
|
*/
|
|
6508
|
-
const
|
|
6509
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7327
|
+
const wealthboxCompleteWorkflowStep = (wealthboxCompleteWorkflowStepBody) => {
|
|
7328
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/workflow_steps/complete`, method: 'POST',
|
|
6510
7329
|
headers: { 'Content-Type': 'application/json', },
|
|
6511
|
-
data:
|
|
7330
|
+
data: wealthboxCompleteWorkflowStepBody
|
|
6512
7331
|
});
|
|
6513
7332
|
};
|
|
6514
7333
|
/**
|
|
6515
|
-
* @summary
|
|
7334
|
+
* @summary Revert a workflow step
|
|
6516
7335
|
*/
|
|
6517
|
-
const
|
|
6518
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7336
|
+
const wealthboxRevertWorkflowStep = (wealthboxRevertWorkflowStepBody) => {
|
|
7337
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/workflow_steps/revert`, method: 'POST',
|
|
6519
7338
|
headers: { 'Content-Type': 'application/json', },
|
|
6520
|
-
data:
|
|
7339
|
+
data: wealthboxRevertWorkflowStepBody
|
|
6521
7340
|
});
|
|
6522
7341
|
};
|
|
6523
7342
|
/**
|
|
6524
|
-
* @summary
|
|
7343
|
+
* @summary Add a household member
|
|
6525
7344
|
*/
|
|
6526
|
-
const
|
|
6527
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7345
|
+
const wealthboxAddHouseholdMember = (wealthboxAddHouseholdMemberBody) => {
|
|
7346
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/households/add_member`, method: 'POST',
|
|
6528
7347
|
headers: { 'Content-Type': 'application/json', },
|
|
6529
|
-
data:
|
|
7348
|
+
data: wealthboxAddHouseholdMemberBody
|
|
6530
7349
|
});
|
|
6531
7350
|
};
|
|
6532
7351
|
/**
|
|
6533
|
-
* @summary
|
|
7352
|
+
* @summary Remove a household member
|
|
6534
7353
|
*/
|
|
6535
|
-
const
|
|
6536
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7354
|
+
const wealthboxRemoveHouseholdMember = (wealthboxRemoveHouseholdMemberBody) => {
|
|
7355
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/households/remove_member`, method: 'POST',
|
|
6537
7356
|
headers: { 'Content-Type': 'application/json', },
|
|
6538
|
-
data:
|
|
7357
|
+
data: wealthboxRemoveHouseholdMemberBody
|
|
6539
7358
|
});
|
|
6540
7359
|
};
|
|
6541
7360
|
/**
|
|
6542
|
-
* @summary
|
|
7361
|
+
* @summary Get all user groups
|
|
6543
7362
|
*/
|
|
6544
|
-
const
|
|
6545
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7363
|
+
const wealthboxGetUserGroups = (wealthboxGetUserGroupsBody) => {
|
|
7364
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/user_groups`, method: 'POST',
|
|
6546
7365
|
headers: { 'Content-Type': 'application/json', },
|
|
6547
|
-
data:
|
|
7366
|
+
data: wealthboxGetUserGroupsBody
|
|
6548
7367
|
});
|
|
6549
7368
|
};
|
|
6550
7369
|
/**
|
|
6551
|
-
* @summary
|
|
7370
|
+
* @summary Get current user information
|
|
6552
7371
|
*/
|
|
6553
|
-
const
|
|
6554
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7372
|
+
const wealthboxGetMe = (wealthboxGetMeBody) => {
|
|
7373
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/me`, method: 'POST',
|
|
6555
7374
|
headers: { 'Content-Type': 'application/json', },
|
|
6556
|
-
data:
|
|
7375
|
+
data: wealthboxGetMeBody
|
|
6557
7376
|
});
|
|
6558
7377
|
};
|
|
6559
7378
|
/**
|
|
6560
|
-
* @summary
|
|
7379
|
+
* @summary Get all users
|
|
6561
7380
|
*/
|
|
6562
|
-
const
|
|
6563
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7381
|
+
const wealthboxGetUsers = (wealthboxGetUsersBody) => {
|
|
7382
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/users`, method: 'POST',
|
|
6564
7383
|
headers: { 'Content-Type': 'application/json', },
|
|
6565
|
-
data:
|
|
7384
|
+
data: wealthboxGetUsersBody
|
|
6566
7385
|
});
|
|
6567
7386
|
};
|
|
6568
7387
|
/**
|
|
6569
|
-
* @summary
|
|
7388
|
+
* @summary Get all teams
|
|
6570
7389
|
*/
|
|
6571
|
-
const
|
|
6572
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7390
|
+
const wealthboxGetTeams = (wealthboxGetTeamsBody) => {
|
|
7391
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/teams`, method: 'POST',
|
|
6573
7392
|
headers: { 'Content-Type': 'application/json', },
|
|
6574
|
-
data:
|
|
7393
|
+
data: wealthboxGetTeamsBody
|
|
6575
7394
|
});
|
|
6576
7395
|
};
|
|
6577
7396
|
/**
|
|
6578
|
-
* @summary
|
|
7397
|
+
* @summary Get all tags
|
|
6579
7398
|
*/
|
|
6580
|
-
const
|
|
6581
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7399
|
+
const wealthboxGetTags = (wealthboxGetTagsBody) => {
|
|
7400
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/categories/tags`, method: 'POST',
|
|
6582
7401
|
headers: { 'Content-Type': 'application/json', },
|
|
6583
|
-
data:
|
|
7402
|
+
data: wealthboxGetTagsBody
|
|
6584
7403
|
});
|
|
6585
7404
|
};
|
|
6586
7405
|
/**
|
|
6587
|
-
* @summary
|
|
7406
|
+
* @summary Get all custom fields
|
|
6588
7407
|
*/
|
|
6589
|
-
const
|
|
6590
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7408
|
+
const wealthboxGetCustomFields = (wealthboxGetCustomFieldsBody) => {
|
|
7409
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/categories/custom_fields`, method: 'POST',
|
|
6591
7410
|
headers: { 'Content-Type': 'application/json', },
|
|
6592
|
-
data:
|
|
7411
|
+
data: wealthboxGetCustomFieldsBody
|
|
6593
7412
|
});
|
|
6594
7413
|
};
|
|
6595
7414
|
/**
|
|
6596
|
-
* @summary
|
|
7415
|
+
* @summary Get members of a category
|
|
6597
7416
|
*/
|
|
6598
|
-
const
|
|
6599
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7417
|
+
const wealthboxGetCategoryMembers = (wealthboxGetCategoryMembersBody) => {
|
|
7418
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/categories/get`, method: 'POST',
|
|
6600
7419
|
headers: { 'Content-Type': 'application/json', },
|
|
6601
|
-
data:
|
|
7420
|
+
data: wealthboxGetCategoryMembersBody
|
|
6602
7421
|
});
|
|
6603
7422
|
};
|
|
6604
7423
|
/**
|
|
6605
|
-
* @summary
|
|
7424
|
+
* @summary Get all comments
|
|
6606
7425
|
*/
|
|
6607
|
-
const
|
|
6608
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7426
|
+
const wealthboxGetComments = (wealthboxGetCommentsBody) => {
|
|
7427
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/comments/list`, method: 'POST',
|
|
6609
7428
|
headers: { 'Content-Type': 'application/json', },
|
|
6610
|
-
data:
|
|
7429
|
+
data: wealthboxGetCommentsBody
|
|
6611
7430
|
});
|
|
6612
7431
|
};
|
|
6613
7432
|
/**
|
|
6614
|
-
* @summary
|
|
7433
|
+
* @summary Get all contact roles
|
|
6615
7434
|
*/
|
|
6616
|
-
const
|
|
6617
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7435
|
+
const wealthboxGetContactRoles = (wealthboxGetContactRolesBody) => {
|
|
7436
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/contact_roles`, method: 'POST',
|
|
6618
7437
|
headers: { 'Content-Type': 'application/json', },
|
|
6619
|
-
data:
|
|
7438
|
+
data: wealthboxGetContactRolesBody
|
|
6620
7439
|
});
|
|
6621
7440
|
};
|
|
6622
7441
|
/**
|
|
6623
|
-
* @summary
|
|
7442
|
+
* @summary Get all workflow templates
|
|
6624
7443
|
*/
|
|
6625
|
-
const
|
|
6626
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7444
|
+
const wealthboxGetWorkflowTemplates = (wealthboxGetWorkflowTemplatesBody) => {
|
|
7445
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/workflow_templates`, method: 'POST',
|
|
6627
7446
|
headers: { 'Content-Type': 'application/json', },
|
|
6628
|
-
data:
|
|
7447
|
+
data: wealthboxGetWorkflowTemplatesBody
|
|
6629
7448
|
});
|
|
6630
7449
|
};
|
|
6631
7450
|
/**
|
|
6632
|
-
* @summary
|
|
7451
|
+
* @summary Get workflow template by ID
|
|
6633
7452
|
*/
|
|
6634
|
-
const
|
|
6635
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7453
|
+
const wealthboxGetWorkflowTemplate = (wealthboxGetWorkflowTemplateBody) => {
|
|
7454
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/workflow_templates/get`, method: 'POST',
|
|
6636
7455
|
headers: { 'Content-Type': 'application/json', },
|
|
6637
|
-
data:
|
|
7456
|
+
data: wealthboxGetWorkflowTemplateBody
|
|
6638
7457
|
});
|
|
6639
7458
|
};
|
|
6640
7459
|
/**
|
|
6641
|
-
* @summary
|
|
7460
|
+
* @summary Get all activity
|
|
6642
7461
|
*/
|
|
6643
|
-
const
|
|
6644
|
-
return (0, http_client_1.customAxios)({ url: `/
|
|
7462
|
+
const wealthboxGetActivity = (wealthboxGetActivityBody) => {
|
|
7463
|
+
return (0, http_client_1.customAxios)({ url: `/wealthbox/activity`, method: 'POST',
|
|
6645
7464
|
headers: { 'Content-Type': 'application/json', },
|
|
6646
|
-
data:
|
|
7465
|
+
data: wealthboxGetActivityBody
|
|
6647
7466
|
});
|
|
6648
7467
|
};
|
|
6649
|
-
return { abrigoFindCustomerByCrmId, abrigoCreateCustomer, abrigoLinkBeneficialOwner, abrigoFindProposedLoanByCrmId, abrigoCreateProposedLoan, abrigoStartWorkflow, abrigoCreateCollateral, abrigoCreateProposedLien, abrigoListCustomers, abrigoSearchCustomers, abrigoGetCustomerById, abrigoUpdateCustomer, abrigoDeleteCustomer, abrigoListBeneficialOwners, abrigoGetBeneficialOwnerById, abrigoUpdateBeneficialOwner, abrigoListCustomerContacts, abrigoCreateCustomerContact, abrigoListEntities, abrigoGetEntityById, abrigoListProposedLoans, abrigoGetProposedLoanById, abrigoUpdateProposedLoan, abrigoDeleteProposedLoan, abrigoUpdateProposedLoanStatus, abrigoGetProposedLoanExposure, abrigoListLoanApplications, abrigoGetLoanApplicationById, abrigoCreateLoanApplication, abrigoUpdateLoanApplication, abrigoSubmitLoanApplication, abrigoListLoanRolesByProposedLoan, abrigoCreateLoanRole, abrigoUpdateLoanRole, abrigoListProposedProducts, abrigoListCollaterals, abrigoGetCollateralById, abrigoUpdateCollateral, abrigoDeleteCollateral, abrigoListLiens, abrigoGetLienById, abrigoListProposedLiens, abrigoListPortfolioLoans, abrigoGetPortfolioLoanById, abrigoUpdatePortfolioLoan, abrigoGetPortfolioLoanCollaterals, abrigoListPastDueLoans, abrigoListMaturingLoans, abrigoListLoanRolesByPortfolioLoan, abrigoListPortfolioLoansBasic, abrigoListRiskRatingCalculations, abrigoGetRiskRatingCalculationById, abrigoApproveRiskRating, abrigoDeclineRiskRating, abrigoListPolicyExceptions, abrigoCreatePolicyException, abrigoListPolicyExceptionTypes, abrigoListPolicyExceptionStatuses, abrigoListWorkflows, abrigoGetWorkflowById, abrigoCloseWorkflow, abrigoListWorkflowSteps, abrigoGetWorkflowStepById, abrigoUpdateWorkflowStepStatus, abrigoGetWorkflowNextSteps, abrigoListTicklers, abrigoGetTicklerById, abrigoListActivities, abrigoCreateActivity, abrigoListBankCodes, abrigoListBankBranches, abrigoListStates, abrigoGetStateById, abrigoListDocuments, abrigoGetDocumentById, abrigoGetDocumentContent, abrigoListDocumentsByObjectAssociation, abrigoSetUserCredentials, alloyCreatePersonEntity, alloyGetPersonEntity, alloyCreateBusinessEntity, alloyGetBusinessEntity, alloyCreateJourneyApplication, alloyGetJourneyApplication, alloyRerunJourneyApplication, alloyReviewJourneyApplication, alloyRunEvaluation, alloyUploadDocument, alloySetUserCredentials, anthropicSetUserCredentials, anthropicGenerateText, anthropicCreateStream, awsS3SetUserCredentials, awsS3UploadData, awsS3DeleteFile, awsS3DocumentExists, awsS3GenerateDownloadSignedUrl, awsS3GetData, awsS3GenerateUploadSignedUrl, awsS3CopyFile, awsS3GetFileMetadata, awsS3UploadFile, awsS3CreateReadStream, azureBlobStorageSetUserCredentials, azureBlobStorageUploadData, azureBlobStorageDeleteFile, azureBlobStorageDocumentExists, azureBlobStorageGenerateDownloadSignedUrl, azureBlobStorageGetData, azureBlobStorageGenerateUploadSignedUrl, azureBlobStorageCopyFile, azureBlobStorageGetFileMetadata, azureBlobStorageUploadFile, azureBlobStorageCreateReadStream, azureBlobStorageCreateWriteStream, creditsafeComplianceBankMatchGetIbanCompanySearchCriteria, creditsafeComplianceBankMatchGetBbanCompanySearchCriteria, creditsafeComplianceBankMatchIbanCompanySearch, creditsafeComplianceBankMatchBbanCompanySearch, creditsafeComplianceBankMatchGetIbanPersonSearchCriteria, creditsafeComplianceBankMatchIbanPersonSearch, creditsafeComplianceCountryRiskGetCountryRisk, creditsafeComplianceKycProtectListProfileTypes, creditsafeComplianceKycProtectListCurrencyCodes, creditsafeComplianceKycProtectListCountryCodes, creditsafeComplianceKycProtectListSanctionBodies, creditsafeComplianceKycProtectListDocumentTypes, creditsafeComplianceKycProtectGetAmlPreferences, creditsafeComplianceKycProtectUpdateAmlPreferences, creditsafeComplianceKycProtectListAudits, creditsafeComplianceKycProtectCreateProfile, creditsafeComplianceKycProtectListProfiles, creditsafeComplianceKycProtectGetProfile, creditsafeComplianceKycProtectUpdateProfile, creditsafeComplianceKycProtectDeleteProfile, creditsafeComplianceKycProtectImportBusinessProfiles, creditsafeComplianceKycProtectGetProfileDetails, creditsafeComplianceKycProtectUpdateProfileDetails, creditsafeComplianceKycProtectListProfileAddresses, creditsafeComplianceKycProtectCreateProfileAddress, creditsafeComplianceKycProtectAddKeyParty, creditsafeComplianceKycProtectListKeyParties, creditsafeComplianceKycProtectUpdateKeyParties, creditsafeComplianceKycProtectRemoveKeyParties, creditsafeComplianceKycProtectCreateBusinessSearch, creditsafeComplianceKycProtectListBusinessSearches, creditsafeComplianceKycProtectGetBusinessSearch, creditsafeComplianceKycProtectListBusinessSearchHits, creditsafeComplianceKycProtectCreateIndividualSearch, creditsafeComplianceKycProtectListIndividualSearches, creditsafeComplianceKycProtectGetIndividualSearch, creditsafeComplianceKycProtectListIndividualSearchHits, creditsafeComplianceKycProtectBulkAmlScreening, creditsafeComplianceKycProtectCreateSchedule, creditsafeComplianceKycProtectListSchedules, creditsafeComplianceKycProtectListMonitoringAmlAlerts, creditsafeComplianceKycProtectBulkAddMonitoringProfiles, creditsafeComplianceKycProtectListKycMonitoringAlerts, creditsafeComplianceKycProtectUpdateKycMonitoringAlert, creditsafeComplianceKycProtectListAsyncAmlJobs, creditsafeComplianceKycProtectGetAsyncAmlJob, creditsafeComplianceKycProtectUploadBatchFile, creditsafeComplianceKycProtectGetBatchUpload, creditsafeComplianceKycProtectGenerateReport, creditsafeComplianceKycProtectListReports, creditsafeComplianceKycProtectGetReport, creditsafeComplianceKycProtectGetComplianceAlerts, creditsafeComplianceSetUserCredentials, creditsafeFeaturedCreditRiskListReportLanguagesByCountry, creditsafeFeaturedCreditRiskGetCompanySearchCriteria, creditsafeFeaturedCreditRiskGetPeopleSearchCriteria, creditsafeFeaturedCreditRiskGetCompanySchema, creditsafeFeaturedCreditRiskCompaniesSearch, creditsafeFeaturedCreditRiskGetCompany, creditsafeFeaturedCreditRiskCompaniesMatch, creditsafeFeaturedCreditRiskPeopleSearch, creditsafeFeaturedCreditRiskGetPerson, creditsafeFeaturedCreditRiskListCompanyImages, creditsafeFeaturedCreditRiskListImageTypes, creditsafeFeaturedCreditRiskDownloadImage, creditsafeFeaturedCreditRiskCreateFreshInvestigation, creditsafeFeaturedCreditRiskListFreshInvestigations, creditsafeFeaturedCreditRiskGetFreshInvestigation, creditsafeFeaturedCreditRiskCancelFreshInvestigation, creditsafeFeaturedCreditRiskUpdateFreshInvestigation, creditsafeFeaturedGlobalMonitoringGetUserDetails, creditsafeFeaturedGlobalMonitoringListPortfolios, creditsafeFeaturedGlobalMonitoringCreatePortfolio, creditsafeFeaturedGlobalMonitoringImportPortfolioCompanies, creditsafeFeaturedGlobalMonitoringSyncPortfolio, creditsafeFeaturedGlobalMonitoringGetPortfolio, creditsafeFeaturedGlobalMonitoringDeletePortfolio, creditsafeFeaturedGlobalMonitoringUpdatePortfolio, creditsafeFeaturedGlobalMonitoringListPortfolioCountries, creditsafeFeaturedGlobalMonitoringListPortfolioCompanies, creditsafeFeaturedGlobalMonitoringAddPortfolioCompany, creditsafeFeaturedGlobalMonitoringGetPortfolioCompany, creditsafeFeaturedGlobalMonitoringRemovePortfolioCompany, creditsafeFeaturedGlobalMonitoringUpdatePortfolioCompany, creditsafeFeaturedGlobalMonitoringListPortfolioEventRules, creditsafeFeaturedGlobalMonitoringListCompanyEvents, creditsafeFeaturedGlobalMonitoringListEventRules, creditsafeFeaturedGlobalMonitoringListEventRulesByCountry, creditsafeFeaturedGlobalMonitoringListNotificationEvents, creditsafeFeaturedCheckDecideListDecisionEngineInstances, creditsafeFeaturedCheckDecideGetDecisionEngineInstance, creditsafeFeaturedCheckDecideGetDecisionEngineGuid, creditsafeFeaturedCheckDecideGetDecisionEngineUserDataFields, creditsafeFeaturedCheckDecideExecuteDecisionEngine, creditsafeFeaturedCheckDecideListDecisionEngineUsageLog, creditsafeFeaturedCheckDecideGetDecisionEngineUsageLog, creditsafeFeaturedCheckDecideGetDecisionOutcome, creditsafeFeaturedCheckDecideUpdateDecisionOutcome, creditsafeFeaturedConsumerMiscGetConsumerSearchCriteria, creditsafeFeaturedConsumerMiscConsumerSearch, creditsafeFeaturedConsumerMiscGetConsumerReportCustomData, creditsafeFeaturedDataCleaningCreateJob, creditsafeFeaturedDataCleaningListJobs, creditsafeFeaturedDataCleaningGetJob, creditsafeFeaturedDataCleaningUploadJobFile, creditsafeFeaturedDataCleaningSetJobMappings, creditsafeFeaturedDataCleaningSubmitJob, creditsafeFeaturedDataCleaningSetJobEnrichments, creditsafeFeaturedDataCleaningEnrichJob, creditsafeFeaturedDataCleaningDownloadEnrichedFile, creditsafeFeaturedLocalSolutionsFrBankMatch, creditsafeFeaturedLocalSolutionsFrBankMatchAudition, creditsafeFeaturedLocalSolutionsDeNonLtdSearchCriteria, creditsafeFeaturedLocalSolutionsDeNonLtdSearch, creditsafeFeaturedLocalSolutionsDeNonLtdGet, creditsafeFeaturedLocalSolutionsNlKvkExtract, creditsafeFeaturedLocalSolutionsGbBankMatch, creditsafeFeaturedLocalSolutionsGbIdentitySearch, creditsafeFeaturedLocalSolutionsGbUpdateIdentitySearch, creditsafeFeaturedLocalSolutionsGbIdentitySearchHistory, creditsafeFeaturedLocalSolutionsGbIdentitySearchHistoryRecord, creditsafeFeaturedLocalSolutionsGbIdentitySearchHistoryInput, creditsafeFeaturedLocalSolutionsGbIdentitySearchHistoryReference, creditsafeFeaturedLocalSolutionsGbIdentitySearchRevalidation, creditsafeFeaturedLocalSolutionsGbIdentitySearchReasons, creditsafeFeaturedLocalSolutionsGbBankVerificationSearch, creditsafeFeaturedLocalSolutionsGbBankVerificationValidate, creditsafeFeaturedLocalSolutionsGbBankVerificationSortcode, creditsafeFeaturedLocalSolutionsGbBankVerificationHistory, creditsafeFeaturedLocalSolutionsGbBankVerificationHistoryRecord, creditsafeFeaturedLocalSolutionsGbBankVerificationHistoryReference, creditsafeFeaturedLocalSolutionsGbCcds, creditsafeFeaturedLocalSolutionsGbLandRegistry, creditsafeFeaturedLocalSolutionsGbVerifyCompany, creditsafeFeaturedLocalSolutionsGbVerifyDirectorReportList, creditsafeFeaturedLocalSolutionsGbVerifyDirectorReportCreate, creditsafeFeaturedLocalSolutionsGbVerifyIndividualSummary, creditsafeFeaturedLocalSolutionsGbVerifyIndividualFull, creditsafeFeaturedLocalSolutionsUsSearchSupport, creditsafeFeaturedSetUserCredentials, crsCreditApiPullConsumerCreditEquifax, crsCreditApiPullConsumerCreditExperian, crsCreditApiPullConsumerCreditTransunion, crsCreditApiPullBusinessCreditExperian, crsCreditApiPullBusinessCreditEquifax, crsCreditApiVerifyBusinessInstantId, crsCreditApiKycPreciseId, crsCreditApiKybBusinessComplianceInsight, crsCreditApiKybBusinessContacts, crsCreditApiOfacScreeningSingle, crsCreditApiOfacScreeningBatch, crsCreditApiGlobalWatchlistScreening, crsCreditApiBridgerXgScreening, crsCreditApiIstWatchScreening, crsCreditApiSetUserCredentials, dunAndBradstreetCleanseMatch, dunAndBradstreetCleanseMatchWithFraud, dunAndBradstreetExtendedMatch, dunAndBradstreetSearchCompanyList, dunAndBradstreetSearchCompetitors, dunAndBradstreetSetUserCredentials, experianBusinessSearchBusiness, experianBusinessQuickSearchBusiness, experianBusinessGetBusinessHeaders, experianBusinessGetBusinessScores, experianBusinessGetPremierProfileReport, experianBusinessGetIntelliscoreReport, experianBusinessGetRiskDashboards, experianBusinessGetCreditStatus, experianBusinessRunBusinessComplianceInsight, experianBusinessGetBusinessContacts, experianBusinessGetCorporateLinkage, experianBusinessGetCorporateRegistrations, experianBusinessRunIstWatchScreening, experianBusinessRunFraudShieldsScreening, experianBusinessSetUserCredentials, gitlabSetUserCredentials, gitlabOauthInitiate, gitlabOauthCallback, gitlabGetCurrentUser, gitlabListProjects, gitlabGetProject, gitlabListMergeRequests, gitlabGetMergeRequest, gitlabGetMergeRequestDiffs, gitlabMergeMergeRequest, gitlabListMergeRequestNotes, gitlabCreateMergeRequestNote, gmailAuthStart, gmailSetUserCredentials, gmailOauthCallback, gmailSendEmail, gmailListMessages, gmailGetMessage, gmailCreateDraft, gmailListLabels, gmailCreateLabel, gmailUpdateLabel, gmailDeleteLabel, googleCalendarAuthStart, googleCalendarSetUserCredentials, googleCalendarOauthCallback, googleCalendarListEvents, googleCalendarCreateEvent, googleCalendarPatchEvent, googleCalendarDeleteEvent, googleCalendarListCalendars, googleCalendarQueryFreeBusy, googleCloudStorageSetUserCredentials, googleCloudStorageUploadData, googleCloudStorageDeleteFile, googleCloudStorageDocumentExists, googleCloudStorageGenerateDownloadSignedUrl, googleCloudStorageGetData, googleCloudStorageGenerateUploadSignedUrl, googleCloudStorageCopyFile, googleCloudStorageGetFileMetadata, googleCloudStorageUploadFile, googleCloudStorageCreateReadStream, googleCloudStorageCreateWriteStream, googleDocsAuthStart, googleDocsSetUserCredentials, googleDocsOauthCallback, googleDocsCreateDocument, googleDocsGetDocument, googleDocsBatchUpdateDocument, googleDocsSelectDocumentsLegacy, googleDocsSelectDocuments, googleDriveAuthStart, googleDriveSetUserCredentials, googleDriveOauthCallback, googleDriveCreateFile, googleDriveListFiles, googleDriveUpdateFile, googleDriveDeleteFile, googleDriveGetFile, googleDriveCopyFile, googleDriveCreatePermission, googleDriveDeletePermission, googleDriveListPermissions, googleDriveSelectDocuments, googleGenerativeAISetUserCredentials, googleGenerativeAIGenerateText, googleGenerativeAIGenerateImage, googleGenerativeAICreateStream, googleGenerativeAIImageGenerateImage, googleOAuthGetAuthorizationUrl, googleOAuthGetUserProfile, googleOAuthOauthCallback, googleSheetsAuthStart, googleSheetsSetUserCredentials, googleSheetsOauthCallback, googleSheetsCreateSpreadsheet, googleSheetsGetValues, googleSheetsUpdateValues, googleSheetsAppendValues, googleSheetsBatchUpdate, googleSheetsSelectSpreadsheets, googleSlidesAuthStart, googleSlidesSetUserCredentials, googleSlidesOauthCallback, googleSlidesCreatePresentation, googleSlidesGetPresentation, googleSlidesBatchUpdatePresentation, microsoftOnedriveAuthStart, microsoftOnedriveSetUserCredentials, microsoftOnedriveOauthCallback, microsoftOnedriveListItems, microsoftOnedriveUpdateItem, microsoftOnedriveDeleteItem, microsoftOnedriveGetItem, microsoftOnedriveDownloadItem, microsoftOnedriveUploadItem, microsoftOnedriveUploadLargeItem, microsoftOnedriveCreateFolder, microsoftOnedriveCopyItem, microsoftOnedriveSearchItems, microsoftOutlookAuthStart, microsoftOutlookSetUserCredentials, microsoftOutlookOauthCallback, microsoftOutlookMessagesList, microsoftOutlookMailFoldersList, microsoftOutlookFolderMessagesList, microsoftOutlookMessagesGet, microsoftOutlookMessagesSearch, microsoftOutlookAttachmentsList, microsoftOutlookSendMail, microsoftOutlookMessagesCreate, microsoftOutlookMessagesUpdate, microsoftOutlookMessagesSend, microsoftOutlookMessagesReply, microsoftOutlookMessagesReplyAll, microsoftOutlookMessagesForward, microsoftOutlookMessagesDelete, microsoftOutlookAttachmentsCreate, microsoftSharepointSetUserCredentials, microsoftSharepointOauthInitiate, microsoftSharepointOauthCallback, microsoftSharepointGetSiteByPath, microsoftSharepointSearchSites, microsoftSharepointListDrives, microsoftSharepointListDriveItemChildren, microsoftSharepointDownloadFileContent, microsoftSharepointUploadFile, microsoftSharepointDeleteFile, microsoftSharepointListLists, microsoftSharepointGetList, microsoftSharepointListListItems, microsoftSharepointCreateListItem, microsoftSharepointUpdateListItem, microsoftSharepointSearchContent, jiraOauthInitiate, jiraSetUserCredentials, jiraOauthCallback, jiraCreateIssue, jiraSearchIssues, jiraGetIssue, jiraUpdateIssue, jiraAddComment, jiraListProjects, jiraListTransitions, jiraTransitionIssue, jiraListBoards, jiraListSprints, jiraCreateSprint, jiraUpdateSprint, jiraMoveIssuesToBacklog, jiraMoveIssuesToSprint, openaiSetUserCredentials, openaiGenerateText, openaiCreateStream, plaidStartHostedLink, plaidSetUserCredentials, plaidHostedLinkCallback, plaidGetAccounts, plaidGetAccountsBalance, plaidGetAuth, plaidTransactionsSync, plaidGetRecurringTransactions, plaidGetTransactions, plaidGetIdentity, plaidGetItem, plaidRemoveItem, plaidGetInstitutionById, plaidGetInvestmentHoldings, plaidGetInvestmentTransactions, plaidGetLiabilities, plaidCreateAssetReport, plaidGetAssetReport, plaidRefreshAssetReport, plaidGetAssetReportPdf, redtailSetUserCredentials, redtailAuthenticate, redtailGetFamilies, redtailGetContact, redtailGetContacts, redtailUpdateContact, redtailGetContactPersonalProfile, redtailGetContactAccounts, redtailGetAccountOwners, redtailGetAccountDetails, redtailGetActivities, redtailGetActivity, redtailCreateActivity, redtailUpdateActivity, redtailDeleteActivity, redtailCreateActivityNote, redtailDeleteActivityNote, redtailGetActivityNotes, redtailGetDatabaseUsers, redtailGetCategories, redtailGetActivityCodes, redtailGetNotes, redtailCreateContact, redtailDeleteContact, redtailGetContactAddresses, redtailGetContactAddress, redtailCreateContactAddress, redtailUpdateContactAddress, redtailDeleteContactAddress, redtailGetContactEmails, redtailGetContactEmail, redtailCreateContactEmail, redtailUpdateContactEmail, redtailDeleteContactEmail, redtailGetContactPhones, redtailGetContactPhone, redtailCreateContactPhone, redtailUpdateContactPhone, redtailDeleteContactPhone, redtailGetContactSocialMedias, redtailGetContactSocialMedia, redtailCreateContactSocialMedia, redtailUpdateContactSocialMedia, redtailDeleteContactSocialMedia, redtailGetContactUrls, redtailGetContactUrl, redtailCreateContactUrl, redtailUpdateContactUrl, redtailDeleteContactUrl, redtailGetContactNotes, redtailGetContactNote, redtailCreateContactNote, redtailDeleteContactNote, redtailGetContactAccount, redtailCreateContactAccount, redtailUpdateContactAccount, redtailDeleteContactAccount, redtailUpdateAccountDetails, redtailGetImportantInformation, redtailUpdateImportantInformation, redtailGetContactRole, redtailUpdateContactRole, redtailGetContactSam, redtailUpdateContactSam, redtailGetContactTax, redtailUpdateContactTax, redtailGetAccountTypes, redtailGetAccountTaxQualifiedTypes, redtailGetContactCategories, redtailGetContactStatuses, redtailGetSources, redtailGetContactSalutations, redtailGetServicingAdvisors, redtailGetWritingAdvisors, redtailGetDatabaseTeams, redtailGetActivityTemplates, redtailGetActivityTemplate, redtailGetNoteTemplates, redtailGetNoteTemplate, redtailCreateNoteComment, resendSetUserCredentials, resendSendEmail, slackOauthInitiate, slackSetUserCredentials, slackOauthCallback, slackPostMessage, slackUpdateMessage, slackListChannels, slackGetChannel, slackGetChannelHistory, slackGetThreadReplies, slackListUsers, slackLookupUserByEmail, socureRiskosSubmitEvaluation, socureRiskosGetEvaluationResult, socureRiskosEnableWatchlistMonitoring, socureRiskosSubmitOutcomeFeedback, socureRiskosDownloadEvaluationDocuments, socureRiskosReceiveWebhook, socureRiskosSetUserCredentials, stripeSetUserCredentials, stripeCreateCheckoutSession, stripeWebhook, twilioWhatsappSetUserCredentials, twilioWhatsappCreateMessage, wealthboxOauthInitiate, wealthboxSetUserCredentials, wealthboxOauthCallback, wealthboxGetContacts, wealthboxGetContact, wealthboxCreateContact, wealthboxUpdateContact, wealthboxDeleteContact, wealthboxGetTasks, wealthboxGetTask, wealthboxCreateTask, wealthboxUpdateTask, wealthboxDeleteTask, wealthboxGetEvents, wealthboxGetEvent, wealthboxCreateEvent, wealthboxUpdateEvent, wealthboxDeleteEvent, wealthboxGetOpportunities, wealthboxGetOpportunity, wealthboxCreateOpportunity, wealthboxUpdateOpportunity, wealthboxDeleteOpportunity, wealthboxGetNotes, wealthboxGetNote, wealthboxCreateNote, wealthboxUpdateNote, wealthboxGetProjects, wealthboxGetProject, wealthboxCreateProject, wealthboxUpdateProject, wealthboxDeleteProject, wealthboxGetWorkflows, wealthboxGetWorkflow, wealthboxCreateWorkflow, wealthboxDeleteWorkflow, wealthboxCompleteWorkflowStep, wealthboxRevertWorkflowStep, wealthboxAddHouseholdMember, wealthboxRemoveHouseholdMember, wealthboxGetUserGroups, wealthboxGetMe, wealthboxGetUsers, wealthboxGetTeams, wealthboxGetTags, wealthboxGetCustomFields, wealthboxGetCategoryMembers, wealthboxGetComments, wealthboxGetContactRoles, wealthboxGetWorkflowTemplates, wealthboxGetWorkflowTemplate, wealthboxGetActivity, salesforceAuthStart, salesforceAuthSetUserCredentials, salesforceOauthCallback, salesforceCreateSobject, salesforceGetSobject, salesforceUpdateSobject, salesforceDeleteSobject, salesforceQuery, salesforceCompositeSobjectsCreate, salesforceCompositeSobjectsUpdate, salesforceComposite, salesforceListReports, salesforceDescribeReport, salesforceRunReport, salesforceListFlows, salesforceDescribeFlow, salesforceRunFlow, hubspotAuthStart, hubspotAuthSetUserCredentials, hubspotOauthCallback, hubspotCreateContact, hubspotUpdateContact, hubspotListContacts, hubspotSearchContacts, hubspotCreateCompany, hubspotUpdateCompany, hubspotListCompanies, hubspotSearchCompanies, hubspotListDeals, hubspotListDealPipelines, hubspotListOwners, hubspotCreateEmailEngagement, hubspotCreateCallEngagement, hubspotCreateTaskEngagement, hubspotCreateAssociation, hubspotCreateTicket, hubspotUpdateTicket, hubspotListTickets, hubspotEnrollWorkflow, hubspotListWorkflows, hubspotListMarketingEmails, hubspotSendTransactionalEmail };
|
|
7468
|
+
return { abrigoFindCustomerByCrmId, abrigoCreateCustomer, abrigoLinkBeneficialOwner, abrigoFindProposedLoanByCrmId, abrigoCreateProposedLoan, abrigoStartWorkflow, abrigoCreateCollateral, abrigoCreateProposedLien, abrigoListCustomers, abrigoSearchCustomers, abrigoGetCustomerById, abrigoUpdateCustomer, abrigoDeleteCustomer, abrigoListBeneficialOwners, abrigoGetBeneficialOwnerById, abrigoUpdateBeneficialOwner, abrigoListCustomerContacts, abrigoCreateCustomerContact, abrigoListEntities, abrigoGetEntityById, abrigoListProposedLoans, abrigoGetProposedLoanById, abrigoUpdateProposedLoan, abrigoDeleteProposedLoan, abrigoUpdateProposedLoanStatus, abrigoGetProposedLoanExposure, abrigoListLoanApplications, abrigoGetLoanApplicationById, abrigoCreateLoanApplication, abrigoUpdateLoanApplication, abrigoSubmitLoanApplication, abrigoListLoanRolesByProposedLoan, abrigoCreateLoanRole, abrigoUpdateLoanRole, abrigoListProposedProducts, abrigoListCollaterals, abrigoGetCollateralById, abrigoUpdateCollateral, abrigoDeleteCollateral, abrigoListLiens, abrigoGetLienById, abrigoListProposedLiens, abrigoListPortfolioLoans, abrigoGetPortfolioLoanById, abrigoUpdatePortfolioLoan, abrigoGetPortfolioLoanCollaterals, abrigoListPastDueLoans, abrigoListMaturingLoans, abrigoListLoanRolesByPortfolioLoan, abrigoListPortfolioLoansBasic, abrigoListRiskRatingCalculations, abrigoGetRiskRatingCalculationById, abrigoApproveRiskRating, abrigoDeclineRiskRating, abrigoListPolicyExceptions, abrigoCreatePolicyException, abrigoListPolicyExceptionTypes, abrigoListPolicyExceptionStatuses, abrigoListWorkflows, abrigoGetWorkflowById, abrigoCloseWorkflow, abrigoListWorkflowSteps, abrigoGetWorkflowStepById, abrigoUpdateWorkflowStepStatus, abrigoGetWorkflowNextSteps, abrigoListTicklers, abrigoGetTicklerById, abrigoListActivities, abrigoCreateActivity, abrigoListBankCodes, abrigoListBankBranches, abrigoListStates, abrigoGetStateById, abrigoListDocuments, abrigoGetDocumentById, abrigoGetDocumentContent, abrigoListDocumentsByObjectAssociation, abrigoSetUserCredentials, alloyCreatePersonEntity, alloyGetPersonEntity, alloyCreateBusinessEntity, alloyGetBusinessEntity, alloyCreateJourneyApplication, alloyGetJourneyApplication, alloyRerunJourneyApplication, alloyReviewJourneyApplication, alloyRunEvaluation, alloyUploadDocument, alloySetUserCredentials, anthropicSetUserCredentials, anthropicGenerateText, anthropicCreateStream, awsS3SetUserCredentials, awsS3UploadData, awsS3DeleteFile, awsS3DocumentExists, awsS3GenerateDownloadSignedUrl, awsS3GetData, awsS3GenerateUploadSignedUrl, awsS3CopyFile, awsS3GetFileMetadata, awsS3UploadFile, awsS3CreateReadStream, azureBlobStorageSetUserCredentials, azureBlobStorageUploadData, azureBlobStorageDeleteFile, azureBlobStorageDocumentExists, azureBlobStorageGenerateDownloadSignedUrl, azureBlobStorageGetData, azureBlobStorageGenerateUploadSignedUrl, azureBlobStorageCopyFile, azureBlobStorageGetFileMetadata, azureBlobStorageUploadFile, azureBlobStorageCreateReadStream, azureBlobStorageCreateWriteStream, postCommonServiceIdDisconnect, creditsafeComplianceBankMatchGetIbanCompanySearchCriteria, creditsafeComplianceBankMatchGetBbanCompanySearchCriteria, creditsafeComplianceBankMatchIbanCompanySearch, creditsafeComplianceBankMatchBbanCompanySearch, creditsafeComplianceBankMatchGetIbanPersonSearchCriteria, creditsafeComplianceBankMatchIbanPersonSearch, creditsafeComplianceCountryRiskGetCountryRisk, creditsafeComplianceKycProtectListProfileTypes, creditsafeComplianceKycProtectListCurrencyCodes, creditsafeComplianceKycProtectListCountryCodes, creditsafeComplianceKycProtectListSanctionBodies, creditsafeComplianceKycProtectListDocumentTypes, creditsafeComplianceKycProtectGetAmlPreferences, creditsafeComplianceKycProtectUpdateAmlPreferences, creditsafeComplianceKycProtectListAudits, creditsafeComplianceKycProtectCreateProfile, creditsafeComplianceKycProtectListProfiles, creditsafeComplianceKycProtectGetProfile, creditsafeComplianceKycProtectUpdateProfile, creditsafeComplianceKycProtectDeleteProfile, creditsafeComplianceKycProtectImportBusinessProfiles, creditsafeComplianceKycProtectGetProfileDetails, creditsafeComplianceKycProtectUpdateProfileDetails, creditsafeComplianceKycProtectListProfileAddresses, creditsafeComplianceKycProtectCreateProfileAddress, creditsafeComplianceKycProtectAddKeyParty, creditsafeComplianceKycProtectListKeyParties, creditsafeComplianceKycProtectUpdateKeyParties, creditsafeComplianceKycProtectRemoveKeyParties, creditsafeComplianceKycProtectCreateBusinessSearch, creditsafeComplianceKycProtectListBusinessSearches, creditsafeComplianceKycProtectGetBusinessSearch, creditsafeComplianceKycProtectListBusinessSearchHits, creditsafeComplianceKycProtectCreateIndividualSearch, creditsafeComplianceKycProtectListIndividualSearches, creditsafeComplianceKycProtectGetIndividualSearch, creditsafeComplianceKycProtectListIndividualSearchHits, creditsafeComplianceKycProtectBulkAmlScreening, creditsafeComplianceKycProtectCreateSchedule, creditsafeComplianceKycProtectListSchedules, creditsafeComplianceKycProtectListMonitoringAmlAlerts, creditsafeComplianceKycProtectBulkAddMonitoringProfiles, creditsafeComplianceKycProtectListKycMonitoringAlerts, creditsafeComplianceKycProtectUpdateKycMonitoringAlert, creditsafeComplianceKycProtectListAsyncAmlJobs, creditsafeComplianceKycProtectGetAsyncAmlJob, creditsafeComplianceKycProtectUploadBatchFile, creditsafeComplianceKycProtectGetBatchUpload, creditsafeComplianceKycProtectGenerateReport, creditsafeComplianceKycProtectListReports, creditsafeComplianceKycProtectGetReport, creditsafeComplianceKycProtectGetComplianceAlerts, creditsafeComplianceSetUserCredentials, creditsafeFeaturedCreditRiskListReportLanguagesByCountry, creditsafeFeaturedCreditRiskGetCompanySearchCriteria, creditsafeFeaturedCreditRiskGetPeopleSearchCriteria, creditsafeFeaturedCreditRiskGetCompanySchema, creditsafeFeaturedCreditRiskCompaniesSearch, creditsafeFeaturedCreditRiskGetCompany, creditsafeFeaturedCreditRiskCompaniesMatch, creditsafeFeaturedCreditRiskPeopleSearch, creditsafeFeaturedCreditRiskGetPerson, creditsafeFeaturedCreditRiskListCompanyImages, creditsafeFeaturedCreditRiskListImageTypes, creditsafeFeaturedCreditRiskDownloadImage, creditsafeFeaturedCreditRiskCreateFreshInvestigation, creditsafeFeaturedCreditRiskListFreshInvestigations, creditsafeFeaturedCreditRiskGetFreshInvestigation, creditsafeFeaturedCreditRiskCancelFreshInvestigation, creditsafeFeaturedCreditRiskUpdateFreshInvestigation, creditsafeFeaturedGlobalMonitoringGetUserDetails, creditsafeFeaturedGlobalMonitoringListPortfolios, creditsafeFeaturedGlobalMonitoringCreatePortfolio, creditsafeFeaturedGlobalMonitoringImportPortfolioCompanies, creditsafeFeaturedGlobalMonitoringSyncPortfolio, creditsafeFeaturedGlobalMonitoringGetPortfolio, creditsafeFeaturedGlobalMonitoringDeletePortfolio, creditsafeFeaturedGlobalMonitoringUpdatePortfolio, creditsafeFeaturedGlobalMonitoringListPortfolioCountries, creditsafeFeaturedGlobalMonitoringListPortfolioCompanies, creditsafeFeaturedGlobalMonitoringAddPortfolioCompany, creditsafeFeaturedGlobalMonitoringGetPortfolioCompany, creditsafeFeaturedGlobalMonitoringRemovePortfolioCompany, creditsafeFeaturedGlobalMonitoringUpdatePortfolioCompany, creditsafeFeaturedGlobalMonitoringListPortfolioEventRules, creditsafeFeaturedGlobalMonitoringListCompanyEvents, creditsafeFeaturedGlobalMonitoringListEventRules, creditsafeFeaturedGlobalMonitoringListEventRulesByCountry, creditsafeFeaturedGlobalMonitoringListNotificationEvents, creditsafeFeaturedCheckDecideListDecisionEngineInstances, creditsafeFeaturedCheckDecideGetDecisionEngineInstance, creditsafeFeaturedCheckDecideGetDecisionEngineGuid, creditsafeFeaturedCheckDecideGetDecisionEngineUserDataFields, creditsafeFeaturedCheckDecideExecuteDecisionEngine, creditsafeFeaturedCheckDecideListDecisionEngineUsageLog, creditsafeFeaturedCheckDecideGetDecisionEngineUsageLog, creditsafeFeaturedCheckDecideGetDecisionOutcome, creditsafeFeaturedCheckDecideUpdateDecisionOutcome, creditsafeFeaturedConsumerMiscGetConsumerSearchCriteria, creditsafeFeaturedConsumerMiscConsumerSearch, creditsafeFeaturedConsumerMiscGetConsumerReportCustomData, creditsafeFeaturedDataCleaningCreateJob, creditsafeFeaturedDataCleaningListJobs, creditsafeFeaturedDataCleaningGetJob, creditsafeFeaturedDataCleaningUploadJobFile, creditsafeFeaturedDataCleaningSetJobMappings, creditsafeFeaturedDataCleaningSubmitJob, creditsafeFeaturedDataCleaningSetJobEnrichments, creditsafeFeaturedDataCleaningEnrichJob, creditsafeFeaturedDataCleaningDownloadEnrichedFile, creditsafeFeaturedLocalSolutionsFrBankMatch, creditsafeFeaturedLocalSolutionsFrBankMatchAudition, creditsafeFeaturedLocalSolutionsDeNonLtdSearchCriteria, creditsafeFeaturedLocalSolutionsDeNonLtdSearch, creditsafeFeaturedLocalSolutionsDeNonLtdGet, creditsafeFeaturedLocalSolutionsNlKvkExtract, creditsafeFeaturedLocalSolutionsGbBankMatch, creditsafeFeaturedLocalSolutionsGbIdentitySearch, creditsafeFeaturedLocalSolutionsGbUpdateIdentitySearch, creditsafeFeaturedLocalSolutionsGbIdentitySearchHistory, creditsafeFeaturedLocalSolutionsGbIdentitySearchHistoryRecord, creditsafeFeaturedLocalSolutionsGbIdentitySearchHistoryInput, creditsafeFeaturedLocalSolutionsGbIdentitySearchHistoryReference, creditsafeFeaturedLocalSolutionsGbIdentitySearchRevalidation, creditsafeFeaturedLocalSolutionsGbIdentitySearchReasons, creditsafeFeaturedLocalSolutionsGbBankVerificationSearch, creditsafeFeaturedLocalSolutionsGbBankVerificationValidate, creditsafeFeaturedLocalSolutionsGbBankVerificationSortcode, creditsafeFeaturedLocalSolutionsGbBankVerificationHistory, creditsafeFeaturedLocalSolutionsGbBankVerificationHistoryRecord, creditsafeFeaturedLocalSolutionsGbBankVerificationHistoryReference, creditsafeFeaturedLocalSolutionsGbCcds, creditsafeFeaturedLocalSolutionsGbLandRegistry, creditsafeFeaturedLocalSolutionsGbVerifyCompany, creditsafeFeaturedLocalSolutionsGbVerifyDirectorReportList, creditsafeFeaturedLocalSolutionsGbVerifyDirectorReportCreate, creditsafeFeaturedLocalSolutionsGbVerifyIndividualSummary, creditsafeFeaturedLocalSolutionsGbVerifyIndividualFull, creditsafeFeaturedLocalSolutionsUsSearchSupport, creditsafeFeaturedSetUserCredentials, crsCreditApiPullConsumerCreditEquifax, crsCreditApiPullConsumerCreditExperian, crsCreditApiPullConsumerCreditTransunion, crsCreditApiPullBusinessCreditExperian, crsCreditApiPullBusinessCreditEquifax, crsCreditApiVerifyBusinessInstantId, crsCreditApiKycPreciseId, crsCreditApiKybBusinessComplianceInsight, crsCreditApiKybBusinessContacts, crsCreditApiOfacScreeningSingle, crsCreditApiOfacScreeningBatch, crsCreditApiGlobalWatchlistScreening, crsCreditApiBridgerXgScreening, crsCreditApiIstWatchScreening, crsCreditApiSetUserCredentials, dunAndBradstreetCleanseMatch, dunAndBradstreetCleanseMatchWithFraud, dunAndBradstreetExtendedMatch, dunAndBradstreetSearchCompanyList, dunAndBradstreetSearchCompetitors, dunAndBradstreetSetUserCredentials, elevenlabsTextToSpeech, elevenlabsCloneVoice, elevenlabsListVoices, elevenlabsGetVoice, elevenlabsDeleteVoice, elevenlabsListModels, elevenlabsSetUserCredentials, experianBusinessSearchBusiness, experianBusinessQuickSearchBusiness, experianBusinessGetBusinessHeaders, experianBusinessGetBusinessScores, experianBusinessGetPremierProfileReport, experianBusinessGetIntelliscoreReport, experianBusinessGetRiskDashboards, experianBusinessGetCreditStatus, experianBusinessRunBusinessComplianceInsight, experianBusinessGetBusinessContacts, experianBusinessGetCorporateLinkage, experianBusinessGetCorporateRegistrations, experianBusinessRunIstWatchScreening, experianBusinessRunFraudShieldsScreening, experianBusinessSetUserCredentials, gitlabSetUserCredentials, gitlabOauthInitiate, gitlabOauthCallback, gitlabGetCurrentUser, gitlabListProjects, gitlabGetProject, gitlabListMergeRequests, gitlabGetMergeRequest, gitlabGetMergeRequestDiffs, gitlabMergeMergeRequest, gitlabListMergeRequestNotes, gitlabCreateMergeRequestNote, gmailAuthStart, gmailSetUserCredentials, gmailOauthCallback, gmailSendEmail, gmailListMessages, gmailGetMessage, gmailCreateDraft, gmailListLabels, gmailCreateLabel, gmailUpdateLabel, gmailDeleteLabel, googleCalendarAuthStart, googleCalendarSetUserCredentials, googleCalendarOauthCallback, googleCalendarListEvents, googleCalendarCreateEvent, googleCalendarPatchEvent, googleCalendarDeleteEvent, googleCalendarListCalendars, googleCalendarQueryFreeBusy, googleCloudStorageSetUserCredentials, googleCloudStorageUploadData, googleCloudStorageDeleteFile, googleCloudStorageDocumentExists, googleCloudStorageGenerateDownloadSignedUrl, googleCloudStorageGetData, googleCloudStorageGenerateUploadSignedUrl, googleCloudStorageCopyFile, googleCloudStorageGetFileMetadata, googleCloudStorageUploadFile, googleCloudStorageCreateReadStream, googleCloudStorageCreateWriteStream, googleDocsAuthStart, googleDocsSetUserCredentials, googleDocsOauthCallback, googleDocsCreateDocument, googleDocsGetDocument, googleDocsBatchUpdateDocument, googleDocsSelectDocumentsLegacy, googleDocsSelectDocuments, googleDriveAuthStart, googleDriveSetUserCredentials, googleDriveOauthCallback, googleDriveCreateFile, googleDriveListFiles, googleDriveUpdateFile, googleDriveDeleteFile, googleDriveGetFile, googleDriveCopyFile, googleDriveCreatePermission, googleDriveDeletePermission, googleDriveListPermissions, googleDriveSelectDocuments, googleGenerativeAISetUserCredentials, googleGenerativeAIGenerateText, googleGenerativeAIGenerateImage, googleGenerativeAICreateStream, googleGenerativeAIImageGenerateImage, googleOAuthGetAuthorizationUrl, googleOAuthGetUserProfile, googleOAuthOauthCallback, googleSheetsAuthStart, googleSheetsSetUserCredentials, googleSheetsOauthCallback, googleSheetsCreateSpreadsheet, googleSheetsGetValues, googleSheetsUpdateValues, googleSheetsAppendValues, googleSheetsBatchUpdate, googleSheetsSelectSpreadsheets, googleSlidesAuthStart, googleSlidesSetUserCredentials, googleSlidesOauthCallback, googleSlidesCreatePresentation, googleSlidesGetPresentation, googleSlidesBatchUpdatePresentation, hubspotAuthStart, hubspotAuthSetUserCredentials, hubspotOauthCallback, hubspotCreateContact, hubspotUpdateContact, hubspotListContacts, hubspotSearchContacts, hubspotCreateCompany, hubspotUpdateCompany, hubspotListCompanies, hubspotSearchCompanies, hubspotListDeals, hubspotListDealPipelines, hubspotListOwners, hubspotCreateEmailEngagement, hubspotCreateCallEngagement, hubspotCreateTaskEngagement, hubspotCreateAssociation, hubspotCreateTicket, hubspotUpdateTicket, hubspotListTickets, hubspotEnrollWorkflow, hubspotListWorkflows, hubspotListMarketingEmails, hubspotSendTransactionalEmail, jiraOauthInitiate, jiraSetUserCredentials, jiraOauthCallback, jiraCreateIssue, jiraSearchIssues, jiraGetIssue, jiraUpdateIssue, jiraAddComment, jiraListProjects, jiraListTransitions, jiraTransitionIssue, jiraListBoards, jiraListSprints, jiraCreateSprint, jiraUpdateSprint, jiraMoveIssuesToBacklog, jiraMoveIssuesToSprint, microsoftOnedriveAuthStart, microsoftOnedriveSetUserCredentials, microsoftOnedriveOauthCallback, microsoftOnedriveListItems, microsoftOnedriveUpdateItem, microsoftOnedriveDeleteItem, microsoftOnedriveGetItem, microsoftOnedriveDownloadItem, microsoftOnedriveUploadItem, microsoftOnedriveUploadLargeItem, microsoftOnedriveCreateFolder, microsoftOnedriveCopyItem, microsoftOnedriveSearchItems, microsoftOutlookAuthStart, microsoftOutlookSetUserCredentials, microsoftOutlookOauthCallback, microsoftOutlookMessagesList, microsoftOutlookMailFoldersList, microsoftOutlookFolderMessagesList, microsoftOutlookMessagesGet, microsoftOutlookMessagesSearch, microsoftOutlookAttachmentsList, microsoftOutlookSendMail, microsoftOutlookMessagesCreate, microsoftOutlookMessagesUpdate, microsoftOutlookMessagesSend, microsoftOutlookMessagesReply, microsoftOutlookMessagesReplyAll, microsoftOutlookMessagesForward, microsoftOutlookMessagesDelete, microsoftOutlookAttachmentsCreate, microsoftSharepointSetUserCredentials, microsoftSharepointOauthInitiate, microsoftSharepointOauthCallback, microsoftSharepointGetSiteByPath, microsoftSharepointSearchSites, microsoftSharepointListDrives, microsoftSharepointListDriveItemChildren, microsoftSharepointDownloadFileContent, microsoftSharepointUploadFile, microsoftSharepointDeleteFile, microsoftSharepointListLists, microsoftSharepointGetList, microsoftSharepointListListItems, microsoftSharepointCreateListItem, microsoftSharepointUpdateListItem, microsoftSharepointSearchContent, openaiSetUserCredentials, openaiGenerateText, openaiCreateStream, plaidStartHostedLink, plaidSetUserCredentials, plaidHostedLinkCallback, plaidGetAccounts, plaidGetAccountsBalance, plaidGetAuth, plaidTransactionsSync, plaidGetRecurringTransactions, plaidGetTransactions, plaidGetIdentity, plaidGetItem, plaidRemoveItem, plaidGetInstitutionById, plaidGetInvestmentHoldings, plaidGetInvestmentTransactions, plaidGetLiabilities, plaidCreateAssetReport, plaidGetAssetReport, plaidRefreshAssetReport, plaidGetAssetReportPdf, redtailSetUserCredentials, redtailAuthenticate, redtailGetFamilies, redtailGetContact, redtailGetContacts, redtailUpdateContact, redtailGetContactPersonalProfile, redtailGetContactAccounts, redtailGetAccountOwners, redtailGetAccountDetails, redtailGetActivities, redtailGetActivity, redtailCreateActivity, redtailUpdateActivity, redtailDeleteActivity, redtailCreateActivityNote, redtailDeleteActivityNote, redtailGetActivityNotes, redtailGetDatabaseUsers, redtailGetCategories, redtailGetActivityCodes, redtailGetNotes, redtailCreateContact, redtailDeleteContact, redtailGetContactAddresses, redtailGetContactAddress, redtailCreateContactAddress, redtailUpdateContactAddress, redtailDeleteContactAddress, redtailGetContactEmails, redtailGetContactEmail, redtailCreateContactEmail, redtailUpdateContactEmail, redtailDeleteContactEmail, redtailGetContactPhones, redtailGetContactPhone, redtailCreateContactPhone, redtailUpdateContactPhone, redtailDeleteContactPhone, redtailGetContactSocialMedias, redtailGetContactSocialMedia, redtailCreateContactSocialMedia, redtailUpdateContactSocialMedia, redtailDeleteContactSocialMedia, redtailGetContactUrls, redtailGetContactUrl, redtailCreateContactUrl, redtailUpdateContactUrl, redtailDeleteContactUrl, redtailGetContactNotes, redtailGetContactNote, redtailCreateContactNote, redtailDeleteContactNote, redtailGetContactAccount, redtailCreateContactAccount, redtailUpdateContactAccount, redtailDeleteContactAccount, redtailUpdateAccountDetails, redtailGetImportantInformation, redtailUpdateImportantInformation, redtailGetContactRole, redtailUpdateContactRole, redtailGetContactSam, redtailUpdateContactSam, redtailGetContactTax, redtailUpdateContactTax, redtailGetAccountTypes, redtailGetAccountTaxQualifiedTypes, redtailGetContactCategories, redtailGetContactStatuses, redtailGetSources, redtailGetContactSalutations, redtailGetServicingAdvisors, redtailGetWritingAdvisors, redtailGetDatabaseTeams, redtailGetActivityTemplates, redtailGetActivityTemplate, redtailGetNoteTemplates, redtailGetNoteTemplate, redtailCreateNoteComment, resendSetUserCredentials, resendSendEmail, salesforceAuthStart, salesforceAuthSetUserCredentials, salesforceOauthCallback, salesforceCreateSobject, salesforceGetSobject, salesforceUpdateSobject, salesforceDeleteSobject, salesforceQuery, salesforceCompositeSobjectsCreate, salesforceCompositeSobjectsUpdate, salesforceComposite, salesforceListReports, salesforceDescribeReport, salesforceRunReport, salesforceListFlows, salesforceDescribeFlow, salesforceRunFlow, slackOauthInitiate, slackSetUserCredentials, slackOauthCallback, slackPostMessage, slackUpdateMessage, slackListChannels, slackGetChannel, slackGetChannelHistory, slackGetThreadReplies, slackListUsers, slackLookupUserByEmail, socureRiskosSubmitEvaluation, socureRiskosGetEvaluationResult, socureRiskosEnableWatchlistMonitoring, socureRiskosSubmitOutcomeFeedback, socureRiskosDownloadEvaluationDocuments, socureRiskosReceiveWebhook, socureRiskosSetUserCredentials, stripeSetUserCredentials, stripeCreateCheckoutSession, stripeWebhook, twilioWhatsappSetUserCredentials, twilioWhatsappCreateMessage, udgNormalisedFreeAgentAuthenticate, udgNormalisedFreeAgentGetContacts, udgNormalisedFreeAgentGetCompanyInfo, udgNormalisedFreeAgentGetEmployees, udgNormalisedFreeAgentGetInvoices, udgNormalisedFreeAgentGetBills, udgNormalisedFreeAgentGetCreditNotes, udgNormalisedFreeAgentGetDocuments, udgNormalisedFreeAgentGetRecurringDocuments, udgNormalisedFreeAgentGetPayments, udgNormalisedFreeAgentGetItems, udgNormalisedFreeAgentGetAccounts, udgNormalisedFreeAgentGetTransactions, udgNormalisedFreeAgentGetBalanceSheetAccrual, udgNormalisedFreeAgentGetProfitAndLossAccrual, udgNormalisedFreshbooksAuthenticate, udgNormalisedFreshbooksGetContacts, udgNormalisedFreshbooksGetCompanyInfo, udgNormalisedFreshbooksGetEmployees, udgNormalisedFreshbooksGetInvoices, udgNormalisedFreshbooksGetBills, udgNormalisedFreshbooksGetDocuments, udgNormalisedFreshbooksGetRecurringDocuments, udgNormalisedFreshbooksGetPayments, udgNormalisedFreshbooksGetItems, udgNormalisedFreshbooksGetAccounts, udgNormalisedFreshbooksGetTransactions, udgNormalisedFreshbooksGetBalanceSheetAccrual, udgNormalisedFreshbooksGetProfitAndLossAccrual, udgNormalisedFreshbooksGetTaxes, udgNormalisedFreshbooksGetProfitAndLossCash, udgNormalisedQuickbooksAuthenticate, udgNormalisedQuickbooksGetContacts, udgNormalisedQuickbooksGetCompanyInfo, udgNormalisedQuickbooksGetEmployees, udgNormalisedQuickbooksGetInvoices, udgNormalisedQuickbooksGetBills, udgNormalisedQuickbooksGetCreditNotes, udgNormalisedQuickbooksGetDocuments, udgNormalisedQuickbooksGetRecurringDocuments, udgNormalisedQuickbooksGetPayments, udgNormalisedQuickbooksGetItems, udgNormalisedQuickbooksGetAccounts, udgNormalisedQuickbooksGetTransactions, udgNormalisedQuickbooksGetBalanceSheetAccrual, udgNormalisedQuickbooksGetProfitAndLossAccrual, udgNormalisedQuickbooksGetCashflow, udgNormalisedQuickbooksGetTaxes, udgNormalisedQuickbooksGetProfitAndLossCash, udgNormalisedQuickbooksGetBalanceSheetCash, udgNormalisedWaveAuthenticate, udgNormalisedWaveGetAccounts, udgNormalisedWaveGetContacts, udgNormalisedWaveGetCompanyInfo, udgNormalisedWaveGetInvoices, udgNormalisedWaveGetItems, udgNormalisedXeroAuthenticate, udgNormalisedXeroGetAccounts, udgNormalisedXeroGetContacts, udgNormalisedXeroGetCompanyInfo, udgNormalisedXeroGetEmployees, udgNormalisedXeroGetInvoices, udgNormalisedXeroGetBills, udgNormalisedXeroGetCreditNotes, udgNormalisedXeroGetDocuments, udgNormalisedXeroGetRecurringDocuments, udgNormalisedXeroGetPayments, udgNormalisedXeroGetItems, udgNormalisedXeroGetTransactions, udgNormalisedXeroGetBalanceSheetAccrual, udgNormalisedXeroGetBalanceSheetCash, udgNormalisedXeroGetProfitAndLossAccrual, udgNormalisedXeroGetProfitAndLossCash, udgNormalisedXeroGetTaxes, wealthboxOauthInitiate, wealthboxSetUserCredentials, wealthboxOauthCallback, wealthboxGetContacts, wealthboxGetContact, wealthboxCreateContact, wealthboxUpdateContact, wealthboxDeleteContact, wealthboxGetTasks, wealthboxGetTask, wealthboxCreateTask, wealthboxUpdateTask, wealthboxDeleteTask, wealthboxGetEvents, wealthboxGetEvent, wealthboxCreateEvent, wealthboxUpdateEvent, wealthboxDeleteEvent, wealthboxGetOpportunities, wealthboxGetOpportunity, wealthboxCreateOpportunity, wealthboxUpdateOpportunity, wealthboxDeleteOpportunity, wealthboxGetNotes, wealthboxGetNote, wealthboxCreateNote, wealthboxUpdateNote, wealthboxGetProjects, wealthboxGetProject, wealthboxCreateProject, wealthboxUpdateProject, wealthboxDeleteProject, wealthboxGetWorkflows, wealthboxGetWorkflow, wealthboxCreateWorkflow, wealthboxDeleteWorkflow, wealthboxCompleteWorkflowStep, wealthboxRevertWorkflowStep, wealthboxAddHouseholdMember, wealthboxRemoveHouseholdMember, wealthboxGetUserGroups, wealthboxGetMe, wealthboxGetUsers, wealthboxGetTeams, wealthboxGetTags, wealthboxGetCustomFields, wealthboxGetCategoryMembers, wealthboxGetComments, wealthboxGetContactRoles, wealthboxGetWorkflowTemplates, wealthboxGetWorkflowTemplate, wealthboxGetActivity };
|
|
6650
7469
|
};
|
|
6651
7470
|
exports.getIntegrationsAPI = getIntegrationsAPI;
|
|
6652
7471
|
//# sourceMappingURL=generated-api.js.map
|