@uptiqai/integrations-sdk 1.5.0 → 1.7.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 +6532 -2148
- package/dist/generated-api.d.ts.map +1 -1
- package/dist/generated-api.js +3423 -486
- package/dist/generated-api.js.map +1 -1
- package/dist/index.d.ts +711 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1382 -1
- package/dist/index.js.map +1 -1
- package/dist/response-type-map.d.ts.map +1 -1
- package/dist/response-type-map.js +638 -0
- package/dist/response-type-map.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.Wealthbox = exports.TwilioWhatsapp = exports.Stripe = exports.Resend = exports.Redtail = exports.Plaid = exports.Openai = exports.Jira = exports.GoogleSlides = exports.GoogleSheets = exports.GoogleOAuth = exports.GoogleGenerativeAIImage = exports.GoogleGenerativeAI = exports.GoogleDrive = exports.GoogleDocs = exports.GoogleCloudStorage = exports.Gmail = exports.Gitlab = exports.AzureBlobStorage = exports.AwsS3 = exports.Anthropic = void 0;
|
|
17
|
+
exports.Wealthbox = exports.TwilioWhatsapp = exports.Stripe = exports.SocureRiskos = exports.Resend = exports.Redtail = exports.Plaid = exports.Openai = exports.Jira = exports.MicrosoftSharepoint = exports.MicrosoftOutlook = exports.MicrosoftOnedrive = exports.GoogleSlides = exports.GoogleSheets = exports.GoogleOAuth = exports.GoogleGenerativeAIImage = exports.GoogleGenerativeAI = exports.GoogleDrive = exports.GoogleDocs = exports.GoogleCloudStorage = exports.Gmail = exports.Gitlab = exports.ExperianBusiness = exports.DunAndBradstreet = exports.CrsCreditApi = exports.CreditsafeFeatured = exports.CreditsafeCompliance = exports.AzureBlobStorage = exports.AwsS3 = exports.Anthropic = exports.Alloy = exports.Abrigo = void 0;
|
|
18
18
|
const generated_api_1 = require("./generated-api");
|
|
19
19
|
/**
|
|
20
20
|
* UPTIQ Integrations SDK
|
|
@@ -22,6 +22,382 @@ const generated_api_1 = require("./generated-api");
|
|
|
22
22
|
* Auto-generated from OpenAPI specification.
|
|
23
23
|
* Do not edit this file manually - it will be overwritten on next generation.
|
|
24
24
|
*/
|
|
25
|
+
/**
|
|
26
|
+
* Abrigo integration module
|
|
27
|
+
*/
|
|
28
|
+
class Abrigo {
|
|
29
|
+
constructor() {
|
|
30
|
+
// Get the generated API methods
|
|
31
|
+
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
32
|
+
}
|
|
33
|
+
/** Find Customer by CRM Identifier */
|
|
34
|
+
findCustomerByCrmId(body) {
|
|
35
|
+
return this.api.abrigoFindCustomerByCrmId(body);
|
|
36
|
+
}
|
|
37
|
+
/** Create Customer */
|
|
38
|
+
createCustomer(body) {
|
|
39
|
+
return this.api.abrigoCreateCustomer(body);
|
|
40
|
+
}
|
|
41
|
+
/** Link Beneficial Owner */
|
|
42
|
+
linkBeneficialOwner(body) {
|
|
43
|
+
return this.api.abrigoLinkBeneficialOwner(body);
|
|
44
|
+
}
|
|
45
|
+
/** Find Proposed Loan by CRM Identifier */
|
|
46
|
+
findProposedLoanByCrmId(body) {
|
|
47
|
+
return this.api.abrigoFindProposedLoanByCrmId(body);
|
|
48
|
+
}
|
|
49
|
+
/** Create Proposed Loan */
|
|
50
|
+
createProposedLoan(body) {
|
|
51
|
+
return this.api.abrigoCreateProposedLoan(body);
|
|
52
|
+
}
|
|
53
|
+
/** Start Workflow */
|
|
54
|
+
startWorkflow(body) {
|
|
55
|
+
return this.api.abrigoStartWorkflow(body);
|
|
56
|
+
}
|
|
57
|
+
/** Create Collateral (step 1 of 2-step collateral-to-proposed-loan flow) */
|
|
58
|
+
createCollateral(body) {
|
|
59
|
+
return this.api.abrigoCreateCollateral(body);
|
|
60
|
+
}
|
|
61
|
+
/** Create Proposed Lien (step 2 of 2-step collateral-to-proposed-loan flow) */
|
|
62
|
+
createProposedLien(body) {
|
|
63
|
+
return this.api.abrigoCreateProposedLien(body);
|
|
64
|
+
}
|
|
65
|
+
/** List Abrigo customers (paged) */
|
|
66
|
+
listCustomers(body) {
|
|
67
|
+
return this.api.abrigoListCustomers(body);
|
|
68
|
+
}
|
|
69
|
+
/** Search Abrigo customers by criteria */
|
|
70
|
+
searchCustomers(body) {
|
|
71
|
+
return this.api.abrigoSearchCustomers(body);
|
|
72
|
+
}
|
|
73
|
+
/** Get an Abrigo customer by id */
|
|
74
|
+
getCustomerById(body) {
|
|
75
|
+
return this.api.abrigoGetCustomerById(body);
|
|
76
|
+
}
|
|
77
|
+
/** Update an Abrigo customer (PATCH /v1/customers/{id}) */
|
|
78
|
+
updateCustomer(body) {
|
|
79
|
+
return this.api.abrigoUpdateCustomer(body);
|
|
80
|
+
}
|
|
81
|
+
/** Delete an Abrigo customer by id (destructive) */
|
|
82
|
+
deleteCustomer(body) {
|
|
83
|
+
return this.api.abrigoDeleteCustomer(body);
|
|
84
|
+
}
|
|
85
|
+
/** List Abrigo beneficial owners (paged) */
|
|
86
|
+
listBeneficialOwners(body) {
|
|
87
|
+
return this.api.abrigoListBeneficialOwners(body);
|
|
88
|
+
}
|
|
89
|
+
/** Get an Abrigo beneficial owner by id */
|
|
90
|
+
getBeneficialOwnerById(body) {
|
|
91
|
+
return this.api.abrigoGetBeneficialOwnerById(body);
|
|
92
|
+
}
|
|
93
|
+
/** Update an Abrigo beneficial owner */
|
|
94
|
+
updateBeneficialOwner(body) {
|
|
95
|
+
return this.api.abrigoUpdateBeneficialOwner(body);
|
|
96
|
+
}
|
|
97
|
+
/** List Abrigo customer contacts (paged) */
|
|
98
|
+
listCustomerContacts(body) {
|
|
99
|
+
return this.api.abrigoListCustomerContacts(body);
|
|
100
|
+
}
|
|
101
|
+
/** Create an Abrigo customer contact */
|
|
102
|
+
createCustomerContact(body) {
|
|
103
|
+
return this.api.abrigoCreateCustomerContact(body);
|
|
104
|
+
}
|
|
105
|
+
/** List Abrigo entities (paged) */
|
|
106
|
+
listEntities(body) {
|
|
107
|
+
return this.api.abrigoListEntities(body);
|
|
108
|
+
}
|
|
109
|
+
/** Get an Abrigo entity by id */
|
|
110
|
+
getEntityById(body) {
|
|
111
|
+
return this.api.abrigoGetEntityById(body);
|
|
112
|
+
}
|
|
113
|
+
/** List Abrigo proposed loans (paged) */
|
|
114
|
+
listProposedLoans(body) {
|
|
115
|
+
return this.api.abrigoListProposedLoans(body);
|
|
116
|
+
}
|
|
117
|
+
/** Get an Abrigo proposed loan by id */
|
|
118
|
+
getProposedLoanById(body) {
|
|
119
|
+
return this.api.abrigoGetProposedLoanById(body);
|
|
120
|
+
}
|
|
121
|
+
/** Update an Abrigo proposed loan (PATCH /v1/proposed-loans/{id}) */
|
|
122
|
+
updateProposedLoan(body) {
|
|
123
|
+
return this.api.abrigoUpdateProposedLoan(body);
|
|
124
|
+
}
|
|
125
|
+
/** Delete an Abrigo proposed loan by id (destructive) */
|
|
126
|
+
deleteProposedLoan(body) {
|
|
127
|
+
return this.api.abrigoDeleteProposedLoan(body);
|
|
128
|
+
}
|
|
129
|
+
/** Update proposed loan status (PATCH /v1/proposed-loans/update-status) */
|
|
130
|
+
updateProposedLoanStatus(body) {
|
|
131
|
+
return this.api.abrigoUpdateProposedLoanStatus(body);
|
|
132
|
+
}
|
|
133
|
+
/** Get proposed loan exposure (GET /v1/proposed-loans/{id}/loan-exposure) */
|
|
134
|
+
getProposedLoanExposure(body) {
|
|
135
|
+
return this.api.abrigoGetProposedLoanExposure(body);
|
|
136
|
+
}
|
|
137
|
+
/** List Abrigo loan applications (paged) */
|
|
138
|
+
listLoanApplications(body) {
|
|
139
|
+
return this.api.abrigoListLoanApplications(body);
|
|
140
|
+
}
|
|
141
|
+
/** Get an Abrigo loan application by id */
|
|
142
|
+
getLoanApplicationById(body) {
|
|
143
|
+
return this.api.abrigoGetLoanApplicationById(body);
|
|
144
|
+
}
|
|
145
|
+
/** Create an Abrigo loan application (POST /v1/loan-applications) */
|
|
146
|
+
createLoanApplication(body) {
|
|
147
|
+
return this.api.abrigoCreateLoanApplication(body);
|
|
148
|
+
}
|
|
149
|
+
/** Update an Abrigo loan application (PATCH /v1/loan-applications/{id}) */
|
|
150
|
+
updateLoanApplication(body) {
|
|
151
|
+
return this.api.abrigoUpdateLoanApplication(body);
|
|
152
|
+
}
|
|
153
|
+
/** Submit an Abrigo loan application by id (POST /v1/loan-applications/submit-by-id) */
|
|
154
|
+
submitLoanApplication(body) {
|
|
155
|
+
return this.api.abrigoSubmitLoanApplication(body);
|
|
156
|
+
}
|
|
157
|
+
/** List loan roles for a proposed loan (GET /v1/loan-roles/by-proposed-loan-id/{proposedLoanId}) */
|
|
158
|
+
listLoanRolesByProposedLoan(body) {
|
|
159
|
+
return this.api.abrigoListLoanRolesByProposedLoan(body);
|
|
160
|
+
}
|
|
161
|
+
/** Create an Abrigo loan role (POST /v1/loan-roles) */
|
|
162
|
+
createLoanRole(body) {
|
|
163
|
+
return this.api.abrigoCreateLoanRole(body);
|
|
164
|
+
}
|
|
165
|
+
/** Update an Abrigo loan role (PATCH /v1/loan-roles/{id}) */
|
|
166
|
+
updateLoanRole(body) {
|
|
167
|
+
return this.api.abrigoUpdateLoanRole(body);
|
|
168
|
+
}
|
|
169
|
+
/** List Abrigo proposed products (reference catalog) */
|
|
170
|
+
listProposedProducts(body) {
|
|
171
|
+
return this.api.abrigoListProposedProducts(body);
|
|
172
|
+
}
|
|
173
|
+
/** List Abrigo collaterals (paged) */
|
|
174
|
+
listCollaterals(body) {
|
|
175
|
+
return this.api.abrigoListCollaterals(body);
|
|
176
|
+
}
|
|
177
|
+
/** Get an Abrigo collateral by id */
|
|
178
|
+
getCollateralById(body) {
|
|
179
|
+
return this.api.abrigoGetCollateralById(body);
|
|
180
|
+
}
|
|
181
|
+
/** Update an Abrigo collateral (PATCH /v1/collaterals/{id}) */
|
|
182
|
+
updateCollateral(body) {
|
|
183
|
+
return this.api.abrigoUpdateCollateral(body);
|
|
184
|
+
}
|
|
185
|
+
/** Delete an Abrigo collateral by id (destructive) */
|
|
186
|
+
deleteCollateral(body) {
|
|
187
|
+
return this.api.abrigoDeleteCollateral(body);
|
|
188
|
+
}
|
|
189
|
+
/** List Abrigo liens (portfolio-side, paged) */
|
|
190
|
+
listLiens(body) {
|
|
191
|
+
return this.api.abrigoListLiens(body);
|
|
192
|
+
}
|
|
193
|
+
/** Get an Abrigo lien by id */
|
|
194
|
+
getLienById(body) {
|
|
195
|
+
return this.api.abrigoGetLienById(body);
|
|
196
|
+
}
|
|
197
|
+
/** List Abrigo proposed liens (paged) */
|
|
198
|
+
listProposedLiens(body) {
|
|
199
|
+
return this.api.abrigoListProposedLiens(body);
|
|
200
|
+
}
|
|
201
|
+
/** List Abrigo portfolio loans (paged) */
|
|
202
|
+
listPortfolioLoans(body) {
|
|
203
|
+
return this.api.abrigoListPortfolioLoans(body);
|
|
204
|
+
}
|
|
205
|
+
/** Get an Abrigo portfolio loan by id */
|
|
206
|
+
getPortfolioLoanById(body) {
|
|
207
|
+
return this.api.abrigoGetPortfolioLoanById(body);
|
|
208
|
+
}
|
|
209
|
+
/** Update an Abrigo portfolio loan (PATCH /v1/portfolio-loans/{id}) */
|
|
210
|
+
updatePortfolioLoan(body) {
|
|
211
|
+
return this.api.abrigoUpdatePortfolioLoan(body);
|
|
212
|
+
}
|
|
213
|
+
/** List collaterals for a portfolio loan (GET /v1/portfolio-loans/{id}/collaterals) */
|
|
214
|
+
getPortfolioLoanCollaterals(body) {
|
|
215
|
+
return this.api.abrigoGetPortfolioLoanCollaterals(body);
|
|
216
|
+
}
|
|
217
|
+
/** List past-due portfolio loans (GET /v1/portfolio-loans/past-due-loans) */
|
|
218
|
+
listPastDueLoans(body) {
|
|
219
|
+
return this.api.abrigoListPastDueLoans(body);
|
|
220
|
+
}
|
|
221
|
+
/** List maturing portfolio loans (GET /v1/portfolio-loans/maturing-loans) */
|
|
222
|
+
listMaturingLoans(body) {
|
|
223
|
+
return this.api.abrigoListMaturingLoans(body);
|
|
224
|
+
}
|
|
225
|
+
/** List loan roles for a portfolio loan (GET /v1/loan-roles/by-portfolio-loan-Id/{portfolioLoanId}) */
|
|
226
|
+
listLoanRolesByPortfolioLoan(body) {
|
|
227
|
+
return this.api.abrigoListLoanRolesByPortfolioLoan(body);
|
|
228
|
+
}
|
|
229
|
+
/** List portfolio loans (basic information projection) (GET /v1/portfolio-loans/basic-information) */
|
|
230
|
+
listPortfolioLoansBasic(body) {
|
|
231
|
+
return this.api.abrigoListPortfolioLoansBasic(body);
|
|
232
|
+
}
|
|
233
|
+
/** List Abrigo risk rating calculations (paged) */
|
|
234
|
+
listRiskRatingCalculations(body) {
|
|
235
|
+
return this.api.abrigoListRiskRatingCalculations(body);
|
|
236
|
+
}
|
|
237
|
+
/** Get an Abrigo risk rating calculation by id */
|
|
238
|
+
getRiskRatingCalculationById(body) {
|
|
239
|
+
return this.api.abrigoGetRiskRatingCalculationById(body);
|
|
240
|
+
}
|
|
241
|
+
/** Approve a risk rating calculation (POST /v1/risk-rating-approvals/approve/{calculationId}) */
|
|
242
|
+
approveRiskRating(body) {
|
|
243
|
+
return this.api.abrigoApproveRiskRating(body);
|
|
244
|
+
}
|
|
245
|
+
/** Decline a risk rating calculation (POST /v1/risk-rating-approvals/decline/{calculationId}) */
|
|
246
|
+
declineRiskRating(body) {
|
|
247
|
+
return this.api.abrigoDeclineRiskRating(body);
|
|
248
|
+
}
|
|
249
|
+
/** List Abrigo policy exceptions (paged) */
|
|
250
|
+
listPolicyExceptions(body) {
|
|
251
|
+
return this.api.abrigoListPolicyExceptions(body);
|
|
252
|
+
}
|
|
253
|
+
/** Create an Abrigo policy exception (POST /v1/policy-exceptions) */
|
|
254
|
+
createPolicyException(body) {
|
|
255
|
+
return this.api.abrigoCreatePolicyException(body);
|
|
256
|
+
}
|
|
257
|
+
/** List Abrigo policy exception types (reference) */
|
|
258
|
+
listPolicyExceptionTypes(body) {
|
|
259
|
+
return this.api.abrigoListPolicyExceptionTypes(body);
|
|
260
|
+
}
|
|
261
|
+
/** List Abrigo policy exception statuses (reference) */
|
|
262
|
+
listPolicyExceptionStatuses(body) {
|
|
263
|
+
return this.api.abrigoListPolicyExceptionStatuses(body);
|
|
264
|
+
}
|
|
265
|
+
/** List Abrigo workflows (paged) */
|
|
266
|
+
listWorkflows(body) {
|
|
267
|
+
return this.api.abrigoListWorkflows(body);
|
|
268
|
+
}
|
|
269
|
+
/** Get an Abrigo workflow by id */
|
|
270
|
+
getWorkflowById(body) {
|
|
271
|
+
return this.api.abrigoGetWorkflowById(body);
|
|
272
|
+
}
|
|
273
|
+
/** Close an Abrigo workflow (POST /v1/workflows/{id}/close) */
|
|
274
|
+
closeWorkflow(body) {
|
|
275
|
+
return this.api.abrigoCloseWorkflow(body);
|
|
276
|
+
}
|
|
277
|
+
/** List Abrigo workflow steps (paged) */
|
|
278
|
+
listWorkflowSteps(body) {
|
|
279
|
+
return this.api.abrigoListWorkflowSteps(body);
|
|
280
|
+
}
|
|
281
|
+
/** Get an Abrigo workflow step by id */
|
|
282
|
+
getWorkflowStepById(body) {
|
|
283
|
+
return this.api.abrigoGetWorkflowStepById(body);
|
|
284
|
+
}
|
|
285
|
+
/** Update workflow step status (POST /v1/workflow-steps/{id}/update-status) */
|
|
286
|
+
updateWorkflowStepStatus(body) {
|
|
287
|
+
return this.api.abrigoUpdateWorkflowStepStatus(body);
|
|
288
|
+
}
|
|
289
|
+
/** Get the next step for a workflow (GET /v1/workflow-next-steps/{id}) */
|
|
290
|
+
getWorkflowNextSteps(body) {
|
|
291
|
+
return this.api.abrigoGetWorkflowNextSteps(body);
|
|
292
|
+
}
|
|
293
|
+
/** List Abrigo ticklers (reminders/tasks, paged) */
|
|
294
|
+
listTicklers(body) {
|
|
295
|
+
return this.api.abrigoListTicklers(body);
|
|
296
|
+
}
|
|
297
|
+
/** Get an Abrigo tickler by id */
|
|
298
|
+
getTicklerById(body) {
|
|
299
|
+
return this.api.abrigoGetTicklerById(body);
|
|
300
|
+
}
|
|
301
|
+
/** List Abrigo activities (audit/event log, paged) */
|
|
302
|
+
listActivities(body) {
|
|
303
|
+
return this.api.abrigoListActivities(body);
|
|
304
|
+
}
|
|
305
|
+
/** Create an Abrigo activity (POST /v1/activities) */
|
|
306
|
+
createActivity(body) {
|
|
307
|
+
return this.api.abrigoCreateActivity(body);
|
|
308
|
+
}
|
|
309
|
+
/** List Abrigo bank codes (reference) */
|
|
310
|
+
listBankCodes(body) {
|
|
311
|
+
return this.api.abrigoListBankCodes(body);
|
|
312
|
+
}
|
|
313
|
+
/** List Abrigo bank branches (reference) */
|
|
314
|
+
listBankBranches(body) {
|
|
315
|
+
return this.api.abrigoListBankBranches(body);
|
|
316
|
+
}
|
|
317
|
+
/** List US states (reference) */
|
|
318
|
+
listStates(body) {
|
|
319
|
+
return this.api.abrigoListStates(body);
|
|
320
|
+
}
|
|
321
|
+
/** Get a state by id (reference) */
|
|
322
|
+
getStateById(body) {
|
|
323
|
+
return this.api.abrigoGetStateById(body);
|
|
324
|
+
}
|
|
325
|
+
/** List Abrigo documents (paged) */
|
|
326
|
+
listDocuments(body) {
|
|
327
|
+
return this.api.abrigoListDocuments(body);
|
|
328
|
+
}
|
|
329
|
+
/** Get an Abrigo document by id (metadata only) */
|
|
330
|
+
getDocumentById(body) {
|
|
331
|
+
return this.api.abrigoGetDocumentById(body);
|
|
332
|
+
}
|
|
333
|
+
/** Get an Abrigo document binary content (GET /v1/documents/{id}/content) */
|
|
334
|
+
getDocumentContent(body) {
|
|
335
|
+
return this.api.abrigoGetDocumentContent(body);
|
|
336
|
+
}
|
|
337
|
+
/** List Abrigo documents by their object association (loan, customer, etc.) */
|
|
338
|
+
listDocumentsByObjectAssociation(body) {
|
|
339
|
+
return this.api.abrigoListDocumentsByObjectAssociation(body);
|
|
340
|
+
}
|
|
341
|
+
/** Store per-user Abrigo credentials */
|
|
342
|
+
setUserCredentials(body) {
|
|
343
|
+
return this.api.abrigoSetUserCredentials(body);
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
exports.Abrigo = Abrigo;
|
|
347
|
+
/**
|
|
348
|
+
* Alloy integration module
|
|
349
|
+
*/
|
|
350
|
+
class Alloy {
|
|
351
|
+
constructor() {
|
|
352
|
+
// Get the generated API methods
|
|
353
|
+
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
354
|
+
}
|
|
355
|
+
/** Create a person entity for downstream KYC / OFAC orchestration */
|
|
356
|
+
createPersonEntity(body) {
|
|
357
|
+
return this.api.alloyCreatePersonEntity(body);
|
|
358
|
+
}
|
|
359
|
+
/** Retrieve a person entity by Alloy entity token */
|
|
360
|
+
getPersonEntity(body) {
|
|
361
|
+
return this.api.alloyGetPersonEntity(body);
|
|
362
|
+
}
|
|
363
|
+
/** Create a business entity for downstream KYB / OFAC orchestration */
|
|
364
|
+
createBusinessEntity(body) {
|
|
365
|
+
return this.api.alloyCreateBusinessEntity(body);
|
|
366
|
+
}
|
|
367
|
+
/** Retrieve a business entity by Alloy entity token */
|
|
368
|
+
getBusinessEntity(body) {
|
|
369
|
+
return this.api.alloyGetBusinessEntity(body);
|
|
370
|
+
}
|
|
371
|
+
/** Submit an entity through an Alloy Journey (primary KYC/KYB/OFAC call) */
|
|
372
|
+
createJourneyApplication(body) {
|
|
373
|
+
return this.api.alloyCreateJourneyApplication(body);
|
|
374
|
+
}
|
|
375
|
+
/** Fetch the status / outcome of a Journey Application */
|
|
376
|
+
getJourneyApplication(body) {
|
|
377
|
+
return this.api.alloyGetJourneyApplication(body);
|
|
378
|
+
}
|
|
379
|
+
/** Re-execute a previously-submitted Journey Application */
|
|
380
|
+
rerunJourneyApplication(body) {
|
|
381
|
+
return this.api.alloyRerunJourneyApplication(body);
|
|
382
|
+
}
|
|
383
|
+
/** Record a manual review decision on a Journey Application */
|
|
384
|
+
reviewJourneyApplication(body) {
|
|
385
|
+
return this.api.alloyReviewJourneyApplication(body);
|
|
386
|
+
}
|
|
387
|
+
/** Run a single Alloy evaluation (lower-level alternative to a Journey) */
|
|
388
|
+
runEvaluation(body) {
|
|
389
|
+
return this.api.alloyRunEvaluation(body);
|
|
390
|
+
}
|
|
391
|
+
/** Attach or update a document on an entity by document token */
|
|
392
|
+
uploadDocument(body) {
|
|
393
|
+
return this.api.alloyUploadDocument(body);
|
|
394
|
+
}
|
|
395
|
+
/** Store per-user Alloy credentials */
|
|
396
|
+
setUserCredentials(body) {
|
|
397
|
+
return this.api.alloySetUserCredentials(body);
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
exports.Alloy = Alloy;
|
|
25
401
|
/**
|
|
26
402
|
* Anthropic integration module
|
|
27
403
|
*/
|
|
@@ -155,6 +531,760 @@ class AzureBlobStorage {
|
|
|
155
531
|
}
|
|
156
532
|
}
|
|
157
533
|
exports.AzureBlobStorage = AzureBlobStorage;
|
|
534
|
+
/**
|
|
535
|
+
* CreditsafeCompliance integration module
|
|
536
|
+
*/
|
|
537
|
+
class CreditsafeCompliance {
|
|
538
|
+
constructor() {
|
|
539
|
+
// Get the generated API methods
|
|
540
|
+
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
541
|
+
}
|
|
542
|
+
/** Get IBAN company search criteria */
|
|
543
|
+
bankMatchGetIbanCompanySearchCriteria(body) {
|
|
544
|
+
return this.api.creditsafeComplianceBankMatchGetIbanCompanySearchCriteria(body);
|
|
545
|
+
}
|
|
546
|
+
/** Get BBAN company search criteria */
|
|
547
|
+
bankMatchGetBbanCompanySearchCriteria(body) {
|
|
548
|
+
return this.api.creditsafeComplianceBankMatchGetBbanCompanySearchCriteria(body);
|
|
549
|
+
}
|
|
550
|
+
/** Validate a company bank account via IBAN */
|
|
551
|
+
bankMatchIbanCompanySearch(body) {
|
|
552
|
+
return this.api.creditsafeComplianceBankMatchIbanCompanySearch(body);
|
|
553
|
+
}
|
|
554
|
+
/** Validate a company bank account via BBAN */
|
|
555
|
+
bankMatchBbanCompanySearch(body) {
|
|
556
|
+
return this.api.creditsafeComplianceBankMatchBbanCompanySearch(body);
|
|
557
|
+
}
|
|
558
|
+
/** Get IBAN person search criteria */
|
|
559
|
+
bankMatchGetIbanPersonSearchCriteria(body) {
|
|
560
|
+
return this.api.creditsafeComplianceBankMatchGetIbanPersonSearchCriteria(body);
|
|
561
|
+
}
|
|
562
|
+
/** Validate a personal bank account via IBAN (France only) */
|
|
563
|
+
bankMatchIbanPersonSearch(body) {
|
|
564
|
+
return this.api.creditsafeComplianceBankMatchIbanPersonSearch(body);
|
|
565
|
+
}
|
|
566
|
+
/** Get country-risk details by country code */
|
|
567
|
+
countryRiskGetCountryRisk(body) {
|
|
568
|
+
return this.api.creditsafeComplianceCountryRiskGetCountryRisk(body);
|
|
569
|
+
}
|
|
570
|
+
/** List KYC Protect profile types */
|
|
571
|
+
kycProtectListProfileTypes(body) {
|
|
572
|
+
return this.api.creditsafeComplianceKycProtectListProfileTypes(body);
|
|
573
|
+
}
|
|
574
|
+
/** List KYC Protect currency codes */
|
|
575
|
+
kycProtectListCurrencyCodes(body) {
|
|
576
|
+
return this.api.creditsafeComplianceKycProtectListCurrencyCodes(body);
|
|
577
|
+
}
|
|
578
|
+
/** List KYC Protect country codes */
|
|
579
|
+
kycProtectListCountryCodes(body) {
|
|
580
|
+
return this.api.creditsafeComplianceKycProtectListCountryCodes(body);
|
|
581
|
+
}
|
|
582
|
+
/** List KYC Protect sanction bodies */
|
|
583
|
+
kycProtectListSanctionBodies(body) {
|
|
584
|
+
return this.api.creditsafeComplianceKycProtectListSanctionBodies(body);
|
|
585
|
+
}
|
|
586
|
+
/** List KYC Protect document types */
|
|
587
|
+
kycProtectListDocumentTypes(body) {
|
|
588
|
+
return this.api.creditsafeComplianceKycProtectListDocumentTypes(body);
|
|
589
|
+
}
|
|
590
|
+
/** Get AML preferences */
|
|
591
|
+
kycProtectGetAmlPreferences(body) {
|
|
592
|
+
return this.api.creditsafeComplianceKycProtectGetAmlPreferences(body);
|
|
593
|
+
}
|
|
594
|
+
/** Update AML preferences */
|
|
595
|
+
kycProtectUpdateAmlPreferences(body) {
|
|
596
|
+
return this.api.creditsafeComplianceKycProtectUpdateAmlPreferences(body);
|
|
597
|
+
}
|
|
598
|
+
/** List KYC Protect audit logs */
|
|
599
|
+
kycProtectListAudits(body) {
|
|
600
|
+
return this.api.creditsafeComplianceKycProtectListAudits(body);
|
|
601
|
+
}
|
|
602
|
+
/** Create a KYC profile */
|
|
603
|
+
kycProtectCreateProfile(body) {
|
|
604
|
+
return this.api.creditsafeComplianceKycProtectCreateProfile(body);
|
|
605
|
+
}
|
|
606
|
+
/** List KYC profiles */
|
|
607
|
+
kycProtectListProfiles(body) {
|
|
608
|
+
return this.api.creditsafeComplianceKycProtectListProfiles(body);
|
|
609
|
+
}
|
|
610
|
+
/** Get a KYC profile by id */
|
|
611
|
+
kycProtectGetProfile(body) {
|
|
612
|
+
return this.api.creditsafeComplianceKycProtectGetProfile(body);
|
|
613
|
+
}
|
|
614
|
+
/** Update a KYC profile */
|
|
615
|
+
kycProtectUpdateProfile(body) {
|
|
616
|
+
return this.api.creditsafeComplianceKycProtectUpdateProfile(body);
|
|
617
|
+
}
|
|
618
|
+
/** Delete a KYC profile */
|
|
619
|
+
kycProtectDeleteProfile(body) {
|
|
620
|
+
return this.api.creditsafeComplianceKycProtectDeleteProfile(body);
|
|
621
|
+
}
|
|
622
|
+
/** Import business profiles in bulk */
|
|
623
|
+
kycProtectImportBusinessProfiles(body) {
|
|
624
|
+
return this.api.creditsafeComplianceKycProtectImportBusinessProfiles(body);
|
|
625
|
+
}
|
|
626
|
+
/** Get profile business/individual details */
|
|
627
|
+
kycProtectGetProfileDetails(body) {
|
|
628
|
+
return this.api.creditsafeComplianceKycProtectGetProfileDetails(body);
|
|
629
|
+
}
|
|
630
|
+
/** Update profile details */
|
|
631
|
+
kycProtectUpdateProfileDetails(body) {
|
|
632
|
+
return this.api.creditsafeComplianceKycProtectUpdateProfileDetails(body);
|
|
633
|
+
}
|
|
634
|
+
/** List profile addresses */
|
|
635
|
+
kycProtectListProfileAddresses(body) {
|
|
636
|
+
return this.api.creditsafeComplianceKycProtectListProfileAddresses(body);
|
|
637
|
+
}
|
|
638
|
+
/** Add a profile address */
|
|
639
|
+
kycProtectCreateProfileAddress(body) {
|
|
640
|
+
return this.api.creditsafeComplianceKycProtectCreateProfileAddress(body);
|
|
641
|
+
}
|
|
642
|
+
/** Add a key party to a profile */
|
|
643
|
+
kycProtectAddKeyParty(body) {
|
|
644
|
+
return this.api.creditsafeComplianceKycProtectAddKeyParty(body);
|
|
645
|
+
}
|
|
646
|
+
/** List key parties for a profile */
|
|
647
|
+
kycProtectListKeyParties(body) {
|
|
648
|
+
return this.api.creditsafeComplianceKycProtectListKeyParties(body);
|
|
649
|
+
}
|
|
650
|
+
/** Update key parties for a profile */
|
|
651
|
+
kycProtectUpdateKeyParties(body) {
|
|
652
|
+
return this.api.creditsafeComplianceKycProtectUpdateKeyParties(body);
|
|
653
|
+
}
|
|
654
|
+
/** Remove key parties from a profile */
|
|
655
|
+
kycProtectRemoveKeyParties(body) {
|
|
656
|
+
return this.api.creditsafeComplianceKycProtectRemoveKeyParties(body);
|
|
657
|
+
}
|
|
658
|
+
/** Create an AML business screening */
|
|
659
|
+
kycProtectCreateBusinessSearch(body) {
|
|
660
|
+
return this.api.creditsafeComplianceKycProtectCreateBusinessSearch(body);
|
|
661
|
+
}
|
|
662
|
+
/** List AML business screenings */
|
|
663
|
+
kycProtectListBusinessSearches(body) {
|
|
664
|
+
return this.api.creditsafeComplianceKycProtectListBusinessSearches(body);
|
|
665
|
+
}
|
|
666
|
+
/** Get an AML business screening by id */
|
|
667
|
+
kycProtectGetBusinessSearch(body) {
|
|
668
|
+
return this.api.creditsafeComplianceKycProtectGetBusinessSearch(body);
|
|
669
|
+
}
|
|
670
|
+
/** List hits for an AML business screening */
|
|
671
|
+
kycProtectListBusinessSearchHits(body) {
|
|
672
|
+
return this.api.creditsafeComplianceKycProtectListBusinessSearchHits(body);
|
|
673
|
+
}
|
|
674
|
+
/** Create an AML individual screening */
|
|
675
|
+
kycProtectCreateIndividualSearch(body) {
|
|
676
|
+
return this.api.creditsafeComplianceKycProtectCreateIndividualSearch(body);
|
|
677
|
+
}
|
|
678
|
+
/** List AML individual screenings */
|
|
679
|
+
kycProtectListIndividualSearches(body) {
|
|
680
|
+
return this.api.creditsafeComplianceKycProtectListIndividualSearches(body);
|
|
681
|
+
}
|
|
682
|
+
/** Get an AML individual screening by id */
|
|
683
|
+
kycProtectGetIndividualSearch(body) {
|
|
684
|
+
return this.api.creditsafeComplianceKycProtectGetIndividualSearch(body);
|
|
685
|
+
}
|
|
686
|
+
/** List hits for an AML individual screening */
|
|
687
|
+
kycProtectListIndividualSearchHits(body) {
|
|
688
|
+
return this.api.creditsafeComplianceKycProtectListIndividualSearchHits(body);
|
|
689
|
+
}
|
|
690
|
+
/** Bulk AML screening for a profile */
|
|
691
|
+
kycProtectBulkAmlScreening(body) {
|
|
692
|
+
return this.api.creditsafeComplianceKycProtectBulkAmlScreening(body);
|
|
693
|
+
}
|
|
694
|
+
/** Create a monitoring schedule */
|
|
695
|
+
kycProtectCreateSchedule(body) {
|
|
696
|
+
return this.api.creditsafeComplianceKycProtectCreateSchedule(body);
|
|
697
|
+
}
|
|
698
|
+
/** List monitoring schedules */
|
|
699
|
+
kycProtectListSchedules(body) {
|
|
700
|
+
return this.api.creditsafeComplianceKycProtectListSchedules(body);
|
|
701
|
+
}
|
|
702
|
+
/** List monitoring AML alerts */
|
|
703
|
+
kycProtectListMonitoringAmlAlerts(body) {
|
|
704
|
+
return this.api.creditsafeComplianceKycProtectListMonitoringAmlAlerts(body);
|
|
705
|
+
}
|
|
706
|
+
/** Bulk add profiles to KYC monitoring */
|
|
707
|
+
kycProtectBulkAddMonitoringProfiles(body) {
|
|
708
|
+
return this.api.creditsafeComplianceKycProtectBulkAddMonitoringProfiles(body);
|
|
709
|
+
}
|
|
710
|
+
/** List KYC monitoring alerts for a profile */
|
|
711
|
+
kycProtectListKycMonitoringAlerts(body) {
|
|
712
|
+
return this.api.creditsafeComplianceKycProtectListKycMonitoringAlerts(body);
|
|
713
|
+
}
|
|
714
|
+
/** Update a KYC monitoring alert */
|
|
715
|
+
kycProtectUpdateKycMonitoringAlert(body) {
|
|
716
|
+
return this.api.creditsafeComplianceKycProtectUpdateKycMonitoringAlert(body);
|
|
717
|
+
}
|
|
718
|
+
/** List async AML jobs */
|
|
719
|
+
kycProtectListAsyncAmlJobs(body) {
|
|
720
|
+
return this.api.creditsafeComplianceKycProtectListAsyncAmlJobs(body);
|
|
721
|
+
}
|
|
722
|
+
/** Get an async AML job by id */
|
|
723
|
+
kycProtectGetAsyncAmlJob(body) {
|
|
724
|
+
return this.api.creditsafeComplianceKycProtectGetAsyncAmlJob(body);
|
|
725
|
+
}
|
|
726
|
+
/** Upload a batch file */
|
|
727
|
+
kycProtectUploadBatchFile(body) {
|
|
728
|
+
return this.api.creditsafeComplianceKycProtectUploadBatchFile(body);
|
|
729
|
+
}
|
|
730
|
+
/** Get a batch upload status by id */
|
|
731
|
+
kycProtectGetBatchUpload(body) {
|
|
732
|
+
return this.api.creditsafeComplianceKycProtectGetBatchUpload(body);
|
|
733
|
+
}
|
|
734
|
+
/** Generate a KYC report */
|
|
735
|
+
kycProtectGenerateReport(body) {
|
|
736
|
+
return this.api.creditsafeComplianceKycProtectGenerateReport(body);
|
|
737
|
+
}
|
|
738
|
+
/** List KYC reports */
|
|
739
|
+
kycProtectListReports(body) {
|
|
740
|
+
return this.api.creditsafeComplianceKycProtectListReports(body);
|
|
741
|
+
}
|
|
742
|
+
/** Get a KYC report by id */
|
|
743
|
+
kycProtectGetReport(body) {
|
|
744
|
+
return this.api.creditsafeComplianceKycProtectGetReport(body);
|
|
745
|
+
}
|
|
746
|
+
/** Get compliance alerts by Connect company id */
|
|
747
|
+
kycProtectGetComplianceAlerts(body) {
|
|
748
|
+
return this.api.creditsafeComplianceKycProtectGetComplianceAlerts(body);
|
|
749
|
+
}
|
|
750
|
+
/** Store per-user Creditsafe Compliance credentials */
|
|
751
|
+
setUserCredentials(body) {
|
|
752
|
+
return this.api.creditsafeComplianceSetUserCredentials(body);
|
|
753
|
+
}
|
|
754
|
+
}
|
|
755
|
+
exports.CreditsafeCompliance = CreditsafeCompliance;
|
|
756
|
+
/**
|
|
757
|
+
* CreditsafeFeatured integration module
|
|
758
|
+
*/
|
|
759
|
+
class CreditsafeFeatured {
|
|
760
|
+
constructor() {
|
|
761
|
+
// Get the generated API methods
|
|
762
|
+
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
763
|
+
}
|
|
764
|
+
/** List available report languages for a country */
|
|
765
|
+
creditRiskListReportLanguagesByCountry(body) {
|
|
766
|
+
return this.api.creditsafeFeaturedCreditRiskListReportLanguagesByCountry(body);
|
|
767
|
+
}
|
|
768
|
+
/** Get company search parameter structure */
|
|
769
|
+
creditRiskGetCompanySearchCriteria(body) {
|
|
770
|
+
return this.api.creditsafeFeaturedCreditRiskGetCompanySearchCriteria(body);
|
|
771
|
+
}
|
|
772
|
+
/** Get director/people search parameter structure */
|
|
773
|
+
creditRiskGetPeopleSearchCriteria(body) {
|
|
774
|
+
return this.api.creditsafeFeaturedCreditRiskGetPeopleSearchCriteria(body);
|
|
775
|
+
}
|
|
776
|
+
/** Get the company report schema for a country */
|
|
777
|
+
creditRiskGetCompanySchema(body) {
|
|
778
|
+
return this.api.creditsafeFeaturedCreditRiskGetCompanySchema(body);
|
|
779
|
+
}
|
|
780
|
+
/** Search the global Creditsafe company database */
|
|
781
|
+
creditRiskCompaniesSearch(body) {
|
|
782
|
+
return this.api.creditsafeFeaturedCreditRiskCompaniesSearch(body);
|
|
783
|
+
}
|
|
784
|
+
/** Get a company credit report by Connect id */
|
|
785
|
+
creditRiskGetCompany(body) {
|
|
786
|
+
return this.api.creditsafeFeaturedCreditRiskGetCompany(body);
|
|
787
|
+
}
|
|
788
|
+
/** Match and identify a company */
|
|
789
|
+
creditRiskCompaniesMatch(body) {
|
|
790
|
+
return this.api.creditsafeFeaturedCreditRiskCompaniesMatch(body);
|
|
791
|
+
}
|
|
792
|
+
/** Search for people and directors */
|
|
793
|
+
creditRiskPeopleSearch(body) {
|
|
794
|
+
return this.api.creditsafeFeaturedCreditRiskPeopleSearch(body);
|
|
795
|
+
}
|
|
796
|
+
/** Get a director report by id */
|
|
797
|
+
creditRiskGetPerson(body) {
|
|
798
|
+
return this.api.creditsafeFeaturedCreditRiskGetPerson(body);
|
|
799
|
+
}
|
|
800
|
+
/** Order or list official company filing documents */
|
|
801
|
+
creditRiskListCompanyImages(body) {
|
|
802
|
+
return this.api.creditsafeFeaturedCreditRiskListCompanyImages(body);
|
|
803
|
+
}
|
|
804
|
+
/** List available filing document types */
|
|
805
|
+
creditRiskListImageTypes(body) {
|
|
806
|
+
return this.api.creditsafeFeaturedCreditRiskListImageTypes(body);
|
|
807
|
+
}
|
|
808
|
+
/** Download a company filing image (PDF) */
|
|
809
|
+
creditRiskDownloadImage(body) {
|
|
810
|
+
return this.api.creditsafeFeaturedCreditRiskDownloadImage(body);
|
|
811
|
+
}
|
|
812
|
+
/** Create a fresh-investigation request */
|
|
813
|
+
creditRiskCreateFreshInvestigation(body) {
|
|
814
|
+
return this.api.creditsafeFeaturedCreditRiskCreateFreshInvestigation(body);
|
|
815
|
+
}
|
|
816
|
+
/** List fresh-investigation requests */
|
|
817
|
+
creditRiskListFreshInvestigations(body) {
|
|
818
|
+
return this.api.creditsafeFeaturedCreditRiskListFreshInvestigations(body);
|
|
819
|
+
}
|
|
820
|
+
/** Get a fresh-investigation by order id */
|
|
821
|
+
creditRiskGetFreshInvestigation(body) {
|
|
822
|
+
return this.api.creditsafeFeaturedCreditRiskGetFreshInvestigation(body);
|
|
823
|
+
}
|
|
824
|
+
/** Cancel a fresh-investigation request */
|
|
825
|
+
creditRiskCancelFreshInvestigation(body) {
|
|
826
|
+
return this.api.creditsafeFeaturedCreditRiskCancelFreshInvestigation(body);
|
|
827
|
+
}
|
|
828
|
+
/** Update a fresh-investigation request */
|
|
829
|
+
creditRiskUpdateFreshInvestigation(body) {
|
|
830
|
+
return this.api.creditsafeFeaturedCreditRiskUpdateFreshInvestigation(body);
|
|
831
|
+
}
|
|
832
|
+
/** Get monitoring user profile and permissions */
|
|
833
|
+
globalMonitoringGetUserDetails(body) {
|
|
834
|
+
return this.api.creditsafeFeaturedGlobalMonitoringGetUserDetails(body);
|
|
835
|
+
}
|
|
836
|
+
/** List monitoring portfolios */
|
|
837
|
+
globalMonitoringListPortfolios(body) {
|
|
838
|
+
return this.api.creditsafeFeaturedGlobalMonitoringListPortfolios(body);
|
|
839
|
+
}
|
|
840
|
+
/** Create a monitoring portfolio */
|
|
841
|
+
globalMonitoringCreatePortfolio(body) {
|
|
842
|
+
return this.api.creditsafeFeaturedGlobalMonitoringCreatePortfolio(body);
|
|
843
|
+
}
|
|
844
|
+
/** Import companies into a portfolio (bulk file) */
|
|
845
|
+
globalMonitoringImportPortfolioCompanies(body) {
|
|
846
|
+
return this.api.creditsafeFeaturedGlobalMonitoringImportPortfolioCompanies(body);
|
|
847
|
+
}
|
|
848
|
+
/** Synchronize portfolio companies */
|
|
849
|
+
globalMonitoringSyncPortfolio(body) {
|
|
850
|
+
return this.api.creditsafeFeaturedGlobalMonitoringSyncPortfolio(body);
|
|
851
|
+
}
|
|
852
|
+
/** Get a monitoring portfolio by id */
|
|
853
|
+
globalMonitoringGetPortfolio(body) {
|
|
854
|
+
return this.api.creditsafeFeaturedGlobalMonitoringGetPortfolio(body);
|
|
855
|
+
}
|
|
856
|
+
/** Delete a monitoring portfolio */
|
|
857
|
+
globalMonitoringDeletePortfolio(body) {
|
|
858
|
+
return this.api.creditsafeFeaturedGlobalMonitoringDeletePortfolio(body);
|
|
859
|
+
}
|
|
860
|
+
/** Update a monitoring portfolio */
|
|
861
|
+
globalMonitoringUpdatePortfolio(body) {
|
|
862
|
+
return this.api.creditsafeFeaturedGlobalMonitoringUpdatePortfolio(body);
|
|
863
|
+
}
|
|
864
|
+
/** List countries represented in a portfolio */
|
|
865
|
+
globalMonitoringListPortfolioCountries(body) {
|
|
866
|
+
return this.api.creditsafeFeaturedGlobalMonitoringListPortfolioCountries(body);
|
|
867
|
+
}
|
|
868
|
+
/** List companies in a portfolio */
|
|
869
|
+
globalMonitoringListPortfolioCompanies(body) {
|
|
870
|
+
return this.api.creditsafeFeaturedGlobalMonitoringListPortfolioCompanies(body);
|
|
871
|
+
}
|
|
872
|
+
/** Add a company to a portfolio */
|
|
873
|
+
globalMonitoringAddPortfolioCompany(body) {
|
|
874
|
+
return this.api.creditsafeFeaturedGlobalMonitoringAddPortfolioCompany(body);
|
|
875
|
+
}
|
|
876
|
+
/** Get a portfolio company by id */
|
|
877
|
+
globalMonitoringGetPortfolioCompany(body) {
|
|
878
|
+
return this.api.creditsafeFeaturedGlobalMonitoringGetPortfolioCompany(body);
|
|
879
|
+
}
|
|
880
|
+
/** Remove a company from a portfolio */
|
|
881
|
+
globalMonitoringRemovePortfolioCompany(body) {
|
|
882
|
+
return this.api.creditsafeFeaturedGlobalMonitoringRemovePortfolioCompany(body);
|
|
883
|
+
}
|
|
884
|
+
/** Update portfolio company monitoring */
|
|
885
|
+
globalMonitoringUpdatePortfolioCompany(body) {
|
|
886
|
+
return this.api.creditsafeFeaturedGlobalMonitoringUpdatePortfolioCompany(body);
|
|
887
|
+
}
|
|
888
|
+
/** List event rules for a portfolio */
|
|
889
|
+
globalMonitoringListPortfolioEventRules(body) {
|
|
890
|
+
return this.api.creditsafeFeaturedGlobalMonitoringListPortfolioEventRules(body);
|
|
891
|
+
}
|
|
892
|
+
/** List change events for a monitored company */
|
|
893
|
+
globalMonitoringListCompanyEvents(body) {
|
|
894
|
+
return this.api.creditsafeFeaturedGlobalMonitoringListCompanyEvents(body);
|
|
895
|
+
}
|
|
896
|
+
/** List all available monitoring event rules */
|
|
897
|
+
globalMonitoringListEventRules(body) {
|
|
898
|
+
return this.api.creditsafeFeaturedGlobalMonitoringListEventRules(body);
|
|
899
|
+
}
|
|
900
|
+
/** List monitoring event rules by country code */
|
|
901
|
+
globalMonitoringListEventRulesByCountry(body) {
|
|
902
|
+
return this.api.creditsafeFeaturedGlobalMonitoringListEventRulesByCountry(body);
|
|
903
|
+
}
|
|
904
|
+
/** List triggered monitoring notification events */
|
|
905
|
+
globalMonitoringListNotificationEvents(body) {
|
|
906
|
+
return this.api.creditsafeFeaturedGlobalMonitoringListNotificationEvents(body);
|
|
907
|
+
}
|
|
908
|
+
/** List Decision Engine instances */
|
|
909
|
+
checkDecideListDecisionEngineInstances(body) {
|
|
910
|
+
return this.api.creditsafeFeaturedCheckDecideListDecisionEngineInstances(body);
|
|
911
|
+
}
|
|
912
|
+
/** Get a Decision Engine instance by GUID */
|
|
913
|
+
checkDecideGetDecisionEngineInstance(body) {
|
|
914
|
+
return this.api.creditsafeFeaturedCheckDecideGetDecisionEngineInstance(body);
|
|
915
|
+
}
|
|
916
|
+
/** Get current Decision Engine GUID */
|
|
917
|
+
checkDecideGetDecisionEngineGuid(body) {
|
|
918
|
+
return this.api.creditsafeFeaturedCheckDecideGetDecisionEngineGuid(body);
|
|
919
|
+
}
|
|
920
|
+
/** Get user data fields for a Decision Engine template */
|
|
921
|
+
checkDecideGetDecisionEngineUserDataFields(body) {
|
|
922
|
+
return this.api.creditsafeFeaturedCheckDecideGetDecisionEngineUserDataFields(body);
|
|
923
|
+
}
|
|
924
|
+
/** Execute a Decision Engine instance */
|
|
925
|
+
checkDecideExecuteDecisionEngine(body) {
|
|
926
|
+
return this.api.creditsafeFeaturedCheckDecideExecuteDecisionEngine(body);
|
|
927
|
+
}
|
|
928
|
+
/** List Decision Engine usage logs */
|
|
929
|
+
checkDecideListDecisionEngineUsageLog(body) {
|
|
930
|
+
return this.api.creditsafeFeaturedCheckDecideListDecisionEngineUsageLog(body);
|
|
931
|
+
}
|
|
932
|
+
/** Get a Decision Engine usage log entry */
|
|
933
|
+
checkDecideGetDecisionEngineUsageLog(body) {
|
|
934
|
+
return this.api.creditsafeFeaturedCheckDecideGetDecisionEngineUsageLog(body);
|
|
935
|
+
}
|
|
936
|
+
/** Get a Decision Outcome by GUID */
|
|
937
|
+
checkDecideGetDecisionOutcome(body) {
|
|
938
|
+
return this.api.creditsafeFeaturedCheckDecideGetDecisionOutcome(body);
|
|
939
|
+
}
|
|
940
|
+
/** Update a Decision Outcome */
|
|
941
|
+
checkDecideUpdateDecisionOutcome(body) {
|
|
942
|
+
return this.api.creditsafeFeaturedCheckDecideUpdateDecisionOutcome(body);
|
|
943
|
+
}
|
|
944
|
+
/** Get consumer search criteria */
|
|
945
|
+
consumerMiscGetConsumerSearchCriteria(body) {
|
|
946
|
+
return this.api.creditsafeFeaturedConsumerMiscGetConsumerSearchCriteria(body);
|
|
947
|
+
}
|
|
948
|
+
/** Search and order a consumer report */
|
|
949
|
+
consumerMiscConsumerSearch(body) {
|
|
950
|
+
return this.api.creditsafeFeaturedConsumerMiscConsumerSearch(body);
|
|
951
|
+
}
|
|
952
|
+
/** Get custom report data by country */
|
|
953
|
+
consumerMiscGetConsumerReportCustomData(body) {
|
|
954
|
+
return this.api.creditsafeFeaturedConsumerMiscGetConsumerReportCustomData(body);
|
|
955
|
+
}
|
|
956
|
+
/** Create a data cleaning job */
|
|
957
|
+
dataCleaningCreateJob(body) {
|
|
958
|
+
return this.api.creditsafeFeaturedDataCleaningCreateJob(body);
|
|
959
|
+
}
|
|
960
|
+
/** List data cleaning jobs */
|
|
961
|
+
dataCleaningListJobs(body) {
|
|
962
|
+
return this.api.creditsafeFeaturedDataCleaningListJobs(body);
|
|
963
|
+
}
|
|
964
|
+
/** Get a data cleaning job by id */
|
|
965
|
+
dataCleaningGetJob(body) {
|
|
966
|
+
return this.api.creditsafeFeaturedDataCleaningGetJob(body);
|
|
967
|
+
}
|
|
968
|
+
/** Upload company data file to a job */
|
|
969
|
+
dataCleaningUploadJobFile(body) {
|
|
970
|
+
return this.api.creditsafeFeaturedDataCleaningUploadJobFile(body);
|
|
971
|
+
}
|
|
972
|
+
/** Configure field mappings for a job */
|
|
973
|
+
dataCleaningSetJobMappings(body) {
|
|
974
|
+
return this.api.creditsafeFeaturedDataCleaningSetJobMappings(body);
|
|
975
|
+
}
|
|
976
|
+
/** Submit a data cleaning job for processing */
|
|
977
|
+
dataCleaningSubmitJob(body) {
|
|
978
|
+
return this.api.creditsafeFeaturedDataCleaningSubmitJob(body);
|
|
979
|
+
}
|
|
980
|
+
/** Configure enrichment parameters for a job */
|
|
981
|
+
dataCleaningSetJobEnrichments(body) {
|
|
982
|
+
return this.api.creditsafeFeaturedDataCleaningSetJobEnrichments(body);
|
|
983
|
+
}
|
|
984
|
+
/** Initiate enrichment for a job */
|
|
985
|
+
dataCleaningEnrichJob(body) {
|
|
986
|
+
return this.api.creditsafeFeaturedDataCleaningEnrichJob(body);
|
|
987
|
+
}
|
|
988
|
+
/** Download enriched data file for a job */
|
|
989
|
+
dataCleaningDownloadEnrichedFile(body) {
|
|
990
|
+
return this.api.creditsafeFeaturedDataCleaningDownloadEnrichedFile(body);
|
|
991
|
+
}
|
|
992
|
+
/** France: Bank match */
|
|
993
|
+
localSolutionsFrBankMatch(body) {
|
|
994
|
+
return this.api.creditsafeFeaturedLocalSolutionsFrBankMatch(body);
|
|
995
|
+
}
|
|
996
|
+
/** France: Bank match audition */
|
|
997
|
+
localSolutionsFrBankMatchAudition(body) {
|
|
998
|
+
return this.api.creditsafeFeaturedLocalSolutionsFrBankMatchAudition(body);
|
|
999
|
+
}
|
|
1000
|
+
/** Germany: Get search criteria for non-limited companies */
|
|
1001
|
+
localSolutionsDeNonLtdSearchCriteria(body) {
|
|
1002
|
+
return this.api.creditsafeFeaturedLocalSolutionsDeNonLtdSearchCriteria(body);
|
|
1003
|
+
}
|
|
1004
|
+
/** Germany: Search non-limited companies */
|
|
1005
|
+
localSolutionsDeNonLtdSearch(body) {
|
|
1006
|
+
return this.api.creditsafeFeaturedLocalSolutionsDeNonLtdSearch(body);
|
|
1007
|
+
}
|
|
1008
|
+
/** Germany: Get a non-limited company report */
|
|
1009
|
+
localSolutionsDeNonLtdGet(body) {
|
|
1010
|
+
return this.api.creditsafeFeaturedLocalSolutionsDeNonLtdGet(body);
|
|
1011
|
+
}
|
|
1012
|
+
/** Netherlands: KvK extract */
|
|
1013
|
+
localSolutionsNlKvkExtract(body) {
|
|
1014
|
+
return this.api.creditsafeFeaturedLocalSolutionsNlKvkExtract(body);
|
|
1015
|
+
}
|
|
1016
|
+
/** GB: Bank match */
|
|
1017
|
+
localSolutionsGbBankMatch(body) {
|
|
1018
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbBankMatch(body);
|
|
1019
|
+
}
|
|
1020
|
+
/** GB: Identity search */
|
|
1021
|
+
localSolutionsGbIdentitySearch(body) {
|
|
1022
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbIdentitySearch(body);
|
|
1023
|
+
}
|
|
1024
|
+
/** GB: Update identity search */
|
|
1025
|
+
localSolutionsGbUpdateIdentitySearch(body) {
|
|
1026
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbUpdateIdentitySearch(body);
|
|
1027
|
+
}
|
|
1028
|
+
/** GB: List identity search history */
|
|
1029
|
+
localSolutionsGbIdentitySearchHistory(body) {
|
|
1030
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbIdentitySearchHistory(body);
|
|
1031
|
+
}
|
|
1032
|
+
/** GB: Get a specific identity search record */
|
|
1033
|
+
localSolutionsGbIdentitySearchHistoryRecord(body) {
|
|
1034
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbIdentitySearchHistoryRecord(body);
|
|
1035
|
+
}
|
|
1036
|
+
/** GB: Get input data for an identity search */
|
|
1037
|
+
localSolutionsGbIdentitySearchHistoryInput(body) {
|
|
1038
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbIdentitySearchHistoryInput(body);
|
|
1039
|
+
}
|
|
1040
|
+
/** GB: Update reference on an identity search */
|
|
1041
|
+
localSolutionsGbIdentitySearchHistoryReference(body) {
|
|
1042
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbIdentitySearchHistoryReference(body);
|
|
1043
|
+
}
|
|
1044
|
+
/** GB: Revalidate an identity search */
|
|
1045
|
+
localSolutionsGbIdentitySearchRevalidation(body) {
|
|
1046
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbIdentitySearchRevalidation(body);
|
|
1047
|
+
}
|
|
1048
|
+
/** GB: List identity search reason codes */
|
|
1049
|
+
localSolutionsGbIdentitySearchReasons(body) {
|
|
1050
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbIdentitySearchReasons(body);
|
|
1051
|
+
}
|
|
1052
|
+
/** GB: Bank verification search */
|
|
1053
|
+
localSolutionsGbBankVerificationSearch(body) {
|
|
1054
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbBankVerificationSearch(body);
|
|
1055
|
+
}
|
|
1056
|
+
/** GB: Validate bank verification by id */
|
|
1057
|
+
localSolutionsGbBankVerificationValidate(body) {
|
|
1058
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbBankVerificationValidate(body);
|
|
1059
|
+
}
|
|
1060
|
+
/** GB: Look up bank sort code information */
|
|
1061
|
+
localSolutionsGbBankVerificationSortcode(body) {
|
|
1062
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbBankVerificationSortcode(body);
|
|
1063
|
+
}
|
|
1064
|
+
/** GB: List bank verification history */
|
|
1065
|
+
localSolutionsGbBankVerificationHistory(body) {
|
|
1066
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbBankVerificationHistory(body);
|
|
1067
|
+
}
|
|
1068
|
+
/** GB: Get a bank verification history record */
|
|
1069
|
+
localSolutionsGbBankVerificationHistoryRecord(body) {
|
|
1070
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbBankVerificationHistoryRecord(body);
|
|
1071
|
+
}
|
|
1072
|
+
/** GB: Update reference on a bank verification record */
|
|
1073
|
+
localSolutionsGbBankVerificationHistoryReference(body) {
|
|
1074
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbBankVerificationHistoryReference(body);
|
|
1075
|
+
}
|
|
1076
|
+
/** GB: CCDS finance agreement information */
|
|
1077
|
+
localSolutionsGbCcds(body) {
|
|
1078
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbCcds(body);
|
|
1079
|
+
}
|
|
1080
|
+
/** GB: Land registry information */
|
|
1081
|
+
localSolutionsGbLandRegistry(body) {
|
|
1082
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbLandRegistry(body);
|
|
1083
|
+
}
|
|
1084
|
+
/** GB: Verify company */
|
|
1085
|
+
localSolutionsGbVerifyCompany(body) {
|
|
1086
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbVerifyCompany(body);
|
|
1087
|
+
}
|
|
1088
|
+
/** GB: List director direct reports */
|
|
1089
|
+
localSolutionsGbVerifyDirectorReportList(body) {
|
|
1090
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbVerifyDirectorReportList(body);
|
|
1091
|
+
}
|
|
1092
|
+
/** GB: Create a director direct report */
|
|
1093
|
+
localSolutionsGbVerifyDirectorReportCreate(body) {
|
|
1094
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbVerifyDirectorReportCreate(body);
|
|
1095
|
+
}
|
|
1096
|
+
/** GB: Individual summary report */
|
|
1097
|
+
localSolutionsGbVerifyIndividualSummary(body) {
|
|
1098
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbVerifyIndividualSummary(body);
|
|
1099
|
+
}
|
|
1100
|
+
/** GB: Individual full report */
|
|
1101
|
+
localSolutionsGbVerifyIndividualFull(body) {
|
|
1102
|
+
return this.api.creditsafeFeaturedLocalSolutionsGbVerifyIndividualFull(body);
|
|
1103
|
+
}
|
|
1104
|
+
/** US: Search support for companies not in the database */
|
|
1105
|
+
localSolutionsUsSearchSupport(body) {
|
|
1106
|
+
return this.api.creditsafeFeaturedLocalSolutionsUsSearchSupport(body);
|
|
1107
|
+
}
|
|
1108
|
+
/** Store per-user Creditsafe Featured credentials */
|
|
1109
|
+
setUserCredentials(body) {
|
|
1110
|
+
return this.api.creditsafeFeaturedSetUserCredentials(body);
|
|
1111
|
+
}
|
|
1112
|
+
}
|
|
1113
|
+
exports.CreditsafeFeatured = CreditsafeFeatured;
|
|
1114
|
+
/**
|
|
1115
|
+
* CrsCreditApi integration module
|
|
1116
|
+
*/
|
|
1117
|
+
class CrsCreditApi {
|
|
1118
|
+
constructor() {
|
|
1119
|
+
// Get the generated API methods
|
|
1120
|
+
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
1121
|
+
}
|
|
1122
|
+
/** Pull consumer credit report from Equifax (EQF1001) */
|
|
1123
|
+
pullConsumerCreditEquifax(body) {
|
|
1124
|
+
return this.api.crsCreditApiPullConsumerCreditEquifax(body);
|
|
1125
|
+
}
|
|
1126
|
+
/** Pull consumer credit report from Experian (EXP1001) */
|
|
1127
|
+
pullConsumerCreditExperian(body) {
|
|
1128
|
+
return this.api.crsCreditApiPullConsumerCreditExperian(body);
|
|
1129
|
+
}
|
|
1130
|
+
/** Pull consumer credit report from TransUnion (TUC3002) */
|
|
1131
|
+
pullConsumerCreditTransunion(body) {
|
|
1132
|
+
return this.api.crsCreditApiPullConsumerCreditTransunion(body);
|
|
1133
|
+
}
|
|
1134
|
+
/** Pull business credit report from Experian Premier Profile (EXP2021) */
|
|
1135
|
+
pullBusinessCreditExperian(body) {
|
|
1136
|
+
return this.api.crsCreditApiPullBusinessCreditExperian(body);
|
|
1137
|
+
}
|
|
1138
|
+
/** Pull business credit report from Equifax */
|
|
1139
|
+
pullBusinessCreditEquifax(body) {
|
|
1140
|
+
return this.api.crsCreditApiPullBusinessCreditEquifax(body);
|
|
1141
|
+
}
|
|
1142
|
+
/** Verify a business via LexisNexis Business InstantID (LNR2002) */
|
|
1143
|
+
verifyBusinessInstantId(body) {
|
|
1144
|
+
return this.api.crsCreditApiVerifyBusinessInstantId(body);
|
|
1145
|
+
}
|
|
1146
|
+
/** Consumer KYC + fraud screening via Experian Precise ID */
|
|
1147
|
+
kycPreciseId(body) {
|
|
1148
|
+
return this.api.crsCreditApiKycPreciseId(body);
|
|
1149
|
+
}
|
|
1150
|
+
/** KYB via Experian Business Compliance Insight (EXP2006) */
|
|
1151
|
+
kybBusinessComplianceInsight(body) {
|
|
1152
|
+
return this.api.crsCreditApiKybBusinessComplianceInsight(body);
|
|
1153
|
+
}
|
|
1154
|
+
/** Corporate linkage / beneficial owners via Experian Business Contacts (EXP2007) */
|
|
1155
|
+
kybBusinessContacts(body) {
|
|
1156
|
+
return this.api.crsCreditApiKybBusinessContacts(body);
|
|
1157
|
+
}
|
|
1158
|
+
/** Screen a single subject against LexisNexis OFAC watchlist */
|
|
1159
|
+
ofacScreeningSingle(body) {
|
|
1160
|
+
return this.api.crsCreditApiOfacScreeningSingle(body);
|
|
1161
|
+
}
|
|
1162
|
+
/** Screen many subjects in one call against LexisNexis OFAC watchlist */
|
|
1163
|
+
ofacScreeningBatch(body) {
|
|
1164
|
+
return this.api.crsCreditApiOfacScreeningBatch(body);
|
|
1165
|
+
}
|
|
1166
|
+
/** Screen a subject against LexisNexis Global Watchlist */
|
|
1167
|
+
globalWatchlistScreening(body) {
|
|
1168
|
+
return this.api.crsCreditApiGlobalWatchlistScreening(body);
|
|
1169
|
+
}
|
|
1170
|
+
/** AML / PEP screening via LexisNexis Bridger Insight XG (LNR4201) */
|
|
1171
|
+
bridgerXgScreening(body) {
|
|
1172
|
+
return this.api.crsCreditApiBridgerXgScreening(body);
|
|
1173
|
+
}
|
|
1174
|
+
/** Business OFAC / sanctions screening via Experian IST Watch (EXP2015) */
|
|
1175
|
+
istWatchScreening(body) {
|
|
1176
|
+
return this.api.crsCreditApiIstWatchScreening(body);
|
|
1177
|
+
}
|
|
1178
|
+
/** Store per-user CRS Credit API credentials */
|
|
1179
|
+
setUserCredentials(body) {
|
|
1180
|
+
return this.api.crsCreditApiSetUserCredentials(body);
|
|
1181
|
+
}
|
|
1182
|
+
}
|
|
1183
|
+
exports.CrsCreditApi = CrsCreditApi;
|
|
1184
|
+
/**
|
|
1185
|
+
* DunAndBradstreet integration module
|
|
1186
|
+
*/
|
|
1187
|
+
class DunAndBradstreet {
|
|
1188
|
+
constructor() {
|
|
1189
|
+
// Get the generated API methods
|
|
1190
|
+
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
1191
|
+
}
|
|
1192
|
+
/** Identity Resolution — Cleanse Match */
|
|
1193
|
+
cleanseMatch(body) {
|
|
1194
|
+
return this.api.dunAndBradstreetCleanseMatch(body);
|
|
1195
|
+
}
|
|
1196
|
+
/** Identity Resolution — Cleanse Match with Fraud Risk Signals */
|
|
1197
|
+
cleanseMatchWithFraud(body) {
|
|
1198
|
+
return this.api.dunAndBradstreetCleanseMatchWithFraud(body);
|
|
1199
|
+
}
|
|
1200
|
+
/** Identity Resolution — Extended Match (Match + Append) */
|
|
1201
|
+
extendedMatch(body) {
|
|
1202
|
+
return this.api.dunAndBradstreetExtendedMatch(body);
|
|
1203
|
+
}
|
|
1204
|
+
/** Search — Company List (criteria-based) */
|
|
1205
|
+
searchCompanyList(body) {
|
|
1206
|
+
return this.api.dunAndBradstreetSearchCompanyList(body);
|
|
1207
|
+
}
|
|
1208
|
+
/** Search — Competitors for a DUNS */
|
|
1209
|
+
searchCompetitors(body) {
|
|
1210
|
+
return this.api.dunAndBradstreetSearchCompetitors(body);
|
|
1211
|
+
}
|
|
1212
|
+
/** Store per-user Dun & Bradstreet credentials */
|
|
1213
|
+
setUserCredentials(body) {
|
|
1214
|
+
return this.api.dunAndBradstreetSetUserCredentials(body);
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
exports.DunAndBradstreet = DunAndBradstreet;
|
|
1218
|
+
/**
|
|
1219
|
+
* ExperianBusiness integration module
|
|
1220
|
+
*/
|
|
1221
|
+
class ExperianBusiness {
|
|
1222
|
+
constructor() {
|
|
1223
|
+
// Get the generated API methods
|
|
1224
|
+
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
1225
|
+
}
|
|
1226
|
+
/** Advanced business search → BIN */
|
|
1227
|
+
searchBusiness(body) {
|
|
1228
|
+
return this.api.experianBusinessSearchBusiness(body);
|
|
1229
|
+
}
|
|
1230
|
+
/** Type-ahead business quick search */
|
|
1231
|
+
quickSearchBusiness(body) {
|
|
1232
|
+
return this.api.experianBusinessQuickSearchBusiness(body);
|
|
1233
|
+
}
|
|
1234
|
+
/** Pull business identity headers for a BIN */
|
|
1235
|
+
getBusinessHeaders(body) {
|
|
1236
|
+
return this.api.experianBusinessGetBusinessHeaders(body);
|
|
1237
|
+
}
|
|
1238
|
+
/** Pull Intelliscore + FSR scores */
|
|
1239
|
+
getBusinessScores(body) {
|
|
1240
|
+
return this.api.experianBusinessGetBusinessScores(body);
|
|
1241
|
+
}
|
|
1242
|
+
/** Pull Premier Profile commercial credit report (JSON) */
|
|
1243
|
+
getPremierProfileReport(body) {
|
|
1244
|
+
return this.api.experianBusinessGetPremierProfileReport(body);
|
|
1245
|
+
}
|
|
1246
|
+
/** Pull Intelliscore Plus report (score-only) */
|
|
1247
|
+
getIntelliscoreReport(body) {
|
|
1248
|
+
return this.api.experianBusinessGetIntelliscoreReport(body);
|
|
1249
|
+
}
|
|
1250
|
+
/** Risk Dashboards — scores + credit limit + DBT */
|
|
1251
|
+
getRiskDashboards(body) {
|
|
1252
|
+
return this.api.experianBusinessGetRiskDashboards(body);
|
|
1253
|
+
}
|
|
1254
|
+
/** Credit Status — tradeline count, balance, DBT */
|
|
1255
|
+
getCreditStatus(body) {
|
|
1256
|
+
return this.api.experianBusinessGetCreditStatus(body);
|
|
1257
|
+
}
|
|
1258
|
+
/** KYB — Business Compliance Insight */
|
|
1259
|
+
runBusinessComplianceInsight(body) {
|
|
1260
|
+
return this.api.experianBusinessRunBusinessComplianceInsight(body);
|
|
1261
|
+
}
|
|
1262
|
+
/** Business contacts — beneficial owners / principals */
|
|
1263
|
+
getBusinessContacts(body) {
|
|
1264
|
+
return this.api.experianBusinessGetBusinessContacts(body);
|
|
1265
|
+
}
|
|
1266
|
+
/** Corporate linkage / parent-subsidiary tree */
|
|
1267
|
+
getCorporateLinkage(body) {
|
|
1268
|
+
return this.api.experianBusinessGetCorporateLinkage(body);
|
|
1269
|
+
}
|
|
1270
|
+
/** Secretary of State corporate registrations */
|
|
1271
|
+
getCorporateRegistrations(body) {
|
|
1272
|
+
return this.api.experianBusinessGetCorporateRegistrations(body);
|
|
1273
|
+
}
|
|
1274
|
+
/** IST Watch — OFAC + global watchlist screening */
|
|
1275
|
+
runIstWatchScreening(body) {
|
|
1276
|
+
return this.api.experianBusinessRunIstWatchScreening(body);
|
|
1277
|
+
}
|
|
1278
|
+
/** Fraud Shields — fraud indicators + possible OFAC match */
|
|
1279
|
+
runFraudShieldsScreening(body) {
|
|
1280
|
+
return this.api.experianBusinessRunFraudShieldsScreening(body);
|
|
1281
|
+
}
|
|
1282
|
+
/** Store per-user Experian Business credentials */
|
|
1283
|
+
setUserCredentials(body) {
|
|
1284
|
+
return this.api.experianBusinessSetUserCredentials(body);
|
|
1285
|
+
}
|
|
1286
|
+
}
|
|
1287
|
+
exports.ExperianBusiness = ExperianBusiness;
|
|
158
1288
|
/**
|
|
159
1289
|
* Gitlab integration module
|
|
160
1290
|
*/
|
|
@@ -555,6 +1685,219 @@ class GoogleSlides {
|
|
|
555
1685
|
}
|
|
556
1686
|
}
|
|
557
1687
|
exports.GoogleSlides = GoogleSlides;
|
|
1688
|
+
/**
|
|
1689
|
+
* MicrosoftOnedrive integration module
|
|
1690
|
+
*/
|
|
1691
|
+
class MicrosoftOnedrive {
|
|
1692
|
+
constructor() {
|
|
1693
|
+
// Get the generated API methods
|
|
1694
|
+
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
1695
|
+
}
|
|
1696
|
+
/** Start Microsoft OneDrive OAuth flow */
|
|
1697
|
+
authStart(body) {
|
|
1698
|
+
return this.api.microsoftOnedriveAuthStart(body);
|
|
1699
|
+
}
|
|
1700
|
+
/** Set Microsoft OneDrive OAuth app credentials for a user */
|
|
1701
|
+
setUserCredentials(body) {
|
|
1702
|
+
return this.api.microsoftOnedriveSetUserCredentials(body);
|
|
1703
|
+
}
|
|
1704
|
+
oauthCallback(...args) {
|
|
1705
|
+
return this.api.microsoftOnedriveOauthCallback(...args);
|
|
1706
|
+
}
|
|
1707
|
+
listItems(...args) {
|
|
1708
|
+
return this.api.microsoftOnedriveListItems(...args);
|
|
1709
|
+
}
|
|
1710
|
+
/** Update OneDrive item */
|
|
1711
|
+
updateItem(body) {
|
|
1712
|
+
return this.api.microsoftOnedriveUpdateItem(body);
|
|
1713
|
+
}
|
|
1714
|
+
/** Delete OneDrive item */
|
|
1715
|
+
deleteItem(body) {
|
|
1716
|
+
return this.api.microsoftOnedriveDeleteItem(body);
|
|
1717
|
+
}
|
|
1718
|
+
/** Get OneDrive item metadata */
|
|
1719
|
+
getItem(body) {
|
|
1720
|
+
return this.api.microsoftOnedriveGetItem(body);
|
|
1721
|
+
}
|
|
1722
|
+
/** Download OneDrive item content (signed URL) */
|
|
1723
|
+
downloadItem(body) {
|
|
1724
|
+
return this.api.microsoftOnedriveDownloadItem(body);
|
|
1725
|
+
}
|
|
1726
|
+
/** Upload OneDrive item (simple) */
|
|
1727
|
+
uploadItem(body) {
|
|
1728
|
+
return this.api.microsoftOnedriveUploadItem(body);
|
|
1729
|
+
}
|
|
1730
|
+
/** Upload large OneDrive item via upload session */
|
|
1731
|
+
uploadLargeItem(body) {
|
|
1732
|
+
return this.api.microsoftOnedriveUploadLargeItem(body);
|
|
1733
|
+
}
|
|
1734
|
+
/** Create OneDrive folder */
|
|
1735
|
+
createFolder(body) {
|
|
1736
|
+
return this.api.microsoftOnedriveCreateFolder(body);
|
|
1737
|
+
}
|
|
1738
|
+
/** Copy OneDrive item */
|
|
1739
|
+
copyItem(body) {
|
|
1740
|
+
return this.api.microsoftOnedriveCopyItem(body);
|
|
1741
|
+
}
|
|
1742
|
+
searchItems(...args) {
|
|
1743
|
+
return this.api.microsoftOnedriveSearchItems(...args);
|
|
1744
|
+
}
|
|
1745
|
+
}
|
|
1746
|
+
exports.MicrosoftOnedrive = MicrosoftOnedrive;
|
|
1747
|
+
/**
|
|
1748
|
+
* MicrosoftOutlook integration module
|
|
1749
|
+
*/
|
|
1750
|
+
class MicrosoftOutlook {
|
|
1751
|
+
constructor() {
|
|
1752
|
+
// Get the generated API methods
|
|
1753
|
+
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
1754
|
+
}
|
|
1755
|
+
/** Start Microsoft Outlook OAuth flow */
|
|
1756
|
+
authStart(body) {
|
|
1757
|
+
return this.api.microsoftOutlookAuthStart(body);
|
|
1758
|
+
}
|
|
1759
|
+
/** Set Microsoft Outlook OAuth app credentials for a user */
|
|
1760
|
+
setUserCredentials(body) {
|
|
1761
|
+
return this.api.microsoftOutlookSetUserCredentials(body);
|
|
1762
|
+
}
|
|
1763
|
+
oauthCallback(...args) {
|
|
1764
|
+
return this.api.microsoftOutlookOauthCallback(...args);
|
|
1765
|
+
}
|
|
1766
|
+
/** List messages */
|
|
1767
|
+
messagesList(body) {
|
|
1768
|
+
return this.api.microsoftOutlookMessagesList(body);
|
|
1769
|
+
}
|
|
1770
|
+
/** List mail folders */
|
|
1771
|
+
mailFoldersList(body) {
|
|
1772
|
+
return this.api.microsoftOutlookMailFoldersList(body);
|
|
1773
|
+
}
|
|
1774
|
+
/** List messages in a folder */
|
|
1775
|
+
folderMessagesList(body) {
|
|
1776
|
+
return this.api.microsoftOutlookFolderMessagesList(body);
|
|
1777
|
+
}
|
|
1778
|
+
/** Get a message */
|
|
1779
|
+
messagesGet(body) {
|
|
1780
|
+
return this.api.microsoftOutlookMessagesGet(body);
|
|
1781
|
+
}
|
|
1782
|
+
/** Search messages */
|
|
1783
|
+
messagesSearch(body) {
|
|
1784
|
+
return this.api.microsoftOutlookMessagesSearch(body);
|
|
1785
|
+
}
|
|
1786
|
+
/** List message attachments */
|
|
1787
|
+
attachmentsList(body) {
|
|
1788
|
+
return this.api.microsoftOutlookAttachmentsList(body);
|
|
1789
|
+
}
|
|
1790
|
+
/** Send mail */
|
|
1791
|
+
sendMail(body) {
|
|
1792
|
+
return this.api.microsoftOutlookSendMail(body);
|
|
1793
|
+
}
|
|
1794
|
+
/** Create draft */
|
|
1795
|
+
messagesCreate(body) {
|
|
1796
|
+
return this.api.microsoftOutlookMessagesCreate(body);
|
|
1797
|
+
}
|
|
1798
|
+
/** Update draft */
|
|
1799
|
+
messagesUpdate(body) {
|
|
1800
|
+
return this.api.microsoftOutlookMessagesUpdate(body);
|
|
1801
|
+
}
|
|
1802
|
+
/** Send draft */
|
|
1803
|
+
messagesSend(body) {
|
|
1804
|
+
return this.api.microsoftOutlookMessagesSend(body);
|
|
1805
|
+
}
|
|
1806
|
+
/** Reply to message */
|
|
1807
|
+
messagesReply(body) {
|
|
1808
|
+
return this.api.microsoftOutlookMessagesReply(body);
|
|
1809
|
+
}
|
|
1810
|
+
/** Reply all */
|
|
1811
|
+
messagesReplyAll(body) {
|
|
1812
|
+
return this.api.microsoftOutlookMessagesReplyAll(body);
|
|
1813
|
+
}
|
|
1814
|
+
/** Forward message */
|
|
1815
|
+
messagesForward(body) {
|
|
1816
|
+
return this.api.microsoftOutlookMessagesForward(body);
|
|
1817
|
+
}
|
|
1818
|
+
/** Delete message */
|
|
1819
|
+
messagesDelete(body) {
|
|
1820
|
+
return this.api.microsoftOutlookMessagesDelete(body);
|
|
1821
|
+
}
|
|
1822
|
+
/** Add attachment to draft */
|
|
1823
|
+
attachmentsCreate(body) {
|
|
1824
|
+
return this.api.microsoftOutlookAttachmentsCreate(body);
|
|
1825
|
+
}
|
|
1826
|
+
}
|
|
1827
|
+
exports.MicrosoftOutlook = MicrosoftOutlook;
|
|
1828
|
+
/**
|
|
1829
|
+
* MicrosoftSharepoint integration module
|
|
1830
|
+
*/
|
|
1831
|
+
class MicrosoftSharepoint {
|
|
1832
|
+
constructor() {
|
|
1833
|
+
// Get the generated API methods
|
|
1834
|
+
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
1835
|
+
}
|
|
1836
|
+
/** Set Microsoft SharePoint OAuth app credentials for a user */
|
|
1837
|
+
setUserCredentials(body) {
|
|
1838
|
+
return this.api.microsoftSharepointSetUserCredentials(body);
|
|
1839
|
+
}
|
|
1840
|
+
/** Initiate Microsoft SharePoint OAuth */
|
|
1841
|
+
oauthInitiate(body) {
|
|
1842
|
+
return this.api.microsoftSharepointOauthInitiate(body);
|
|
1843
|
+
}
|
|
1844
|
+
oauthCallback(...args) {
|
|
1845
|
+
return this.api.microsoftSharepointOauthCallback(...args);
|
|
1846
|
+
}
|
|
1847
|
+
/** Get site by path — GET /sites/{hostname}:/{site-path} */
|
|
1848
|
+
getSiteByPath(body) {
|
|
1849
|
+
return this.api.microsoftSharepointGetSiteByPath(body);
|
|
1850
|
+
}
|
|
1851
|
+
/** Search sites — GET /sites?search={query} */
|
|
1852
|
+
searchSites(body) {
|
|
1853
|
+
return this.api.microsoftSharepointSearchSites(body);
|
|
1854
|
+
}
|
|
1855
|
+
/** List drives — GET /sites/{site-id}/drives */
|
|
1856
|
+
listDrives(body) {
|
|
1857
|
+
return this.api.microsoftSharepointListDrives(body);
|
|
1858
|
+
}
|
|
1859
|
+
/** List drive item children — GET /drives/{drive-id}/items/{item-id}/children */
|
|
1860
|
+
listDriveItemChildren(body) {
|
|
1861
|
+
return this.api.microsoftSharepointListDriveItemChildren(body);
|
|
1862
|
+
}
|
|
1863
|
+
/** Download file content (signed URL) — GET /drives/{drive-id}/items/{item-id}/content */
|
|
1864
|
+
downloadFileContent(body) {
|
|
1865
|
+
return this.api.microsoftSharepointDownloadFileContent(body);
|
|
1866
|
+
}
|
|
1867
|
+
/** Upload file — PUT /drives/{drive-id}/items/{parent-id}:/{filename}:/content */
|
|
1868
|
+
uploadFile(body) {
|
|
1869
|
+
return this.api.microsoftSharepointUploadFile(body);
|
|
1870
|
+
}
|
|
1871
|
+
/** Delete file — DELETE /drives/{drive-id}/items/{item-id} */
|
|
1872
|
+
deleteFile(body) {
|
|
1873
|
+
return this.api.microsoftSharepointDeleteFile(body);
|
|
1874
|
+
}
|
|
1875
|
+
/** List lists — GET /sites/{site-id}/lists */
|
|
1876
|
+
listLists(body) {
|
|
1877
|
+
return this.api.microsoftSharepointListLists(body);
|
|
1878
|
+
}
|
|
1879
|
+
/** Get list — GET /sites/{site-id}/lists/{list-id} */
|
|
1880
|
+
getList(body) {
|
|
1881
|
+
return this.api.microsoftSharepointGetList(body);
|
|
1882
|
+
}
|
|
1883
|
+
/** List list items — GET /sites/{site-id}/lists/{list-id}/items */
|
|
1884
|
+
listListItems(body) {
|
|
1885
|
+
return this.api.microsoftSharepointListListItems(body);
|
|
1886
|
+
}
|
|
1887
|
+
/** Create list item — POST /sites/{site-id}/lists/{list-id}/items */
|
|
1888
|
+
createListItem(body) {
|
|
1889
|
+
return this.api.microsoftSharepointCreateListItem(body);
|
|
1890
|
+
}
|
|
1891
|
+
/** Update list item — PATCH /sites/{site-id}/lists/{list-id}/items/{item-id} */
|
|
1892
|
+
updateListItem(body) {
|
|
1893
|
+
return this.api.microsoftSharepointUpdateListItem(body);
|
|
1894
|
+
}
|
|
1895
|
+
/** Search content — POST /search/query */
|
|
1896
|
+
searchContent(body) {
|
|
1897
|
+
return this.api.microsoftSharepointSearchContent(body);
|
|
1898
|
+
}
|
|
1899
|
+
}
|
|
1900
|
+
exports.MicrosoftSharepoint = MicrosoftSharepoint;
|
|
558
1901
|
/**
|
|
559
1902
|
* Jira integration module
|
|
560
1903
|
*/
|
|
@@ -1090,6 +2433,44 @@ class Resend {
|
|
|
1090
2433
|
}
|
|
1091
2434
|
}
|
|
1092
2435
|
exports.Resend = Resend;
|
|
2436
|
+
/**
|
|
2437
|
+
* SocureRiskos integration module
|
|
2438
|
+
*/
|
|
2439
|
+
class SocureRiskos {
|
|
2440
|
+
constructor() {
|
|
2441
|
+
// Get the generated API methods
|
|
2442
|
+
this.api = (0, generated_api_1.getIntegrationsAPI)();
|
|
2443
|
+
}
|
|
2444
|
+
/** Submit Evaluation */
|
|
2445
|
+
submitEvaluation(body) {
|
|
2446
|
+
return this.api.socureRiskosSubmitEvaluation(body);
|
|
2447
|
+
}
|
|
2448
|
+
/** Get Evaluation Result */
|
|
2449
|
+
getEvaluationResult(body) {
|
|
2450
|
+
return this.api.socureRiskosGetEvaluationResult(body);
|
|
2451
|
+
}
|
|
2452
|
+
/** Enable Watchlist Monitoring */
|
|
2453
|
+
enableWatchlistMonitoring(body) {
|
|
2454
|
+
return this.api.socureRiskosEnableWatchlistMonitoring(body);
|
|
2455
|
+
}
|
|
2456
|
+
/** Submit Outcome Feedback */
|
|
2457
|
+
submitOutcomeFeedback(body) {
|
|
2458
|
+
return this.api.socureRiskosSubmitOutcomeFeedback(body);
|
|
2459
|
+
}
|
|
2460
|
+
/** Download Evaluation Documents */
|
|
2461
|
+
downloadEvaluationDocuments(body) {
|
|
2462
|
+
return this.api.socureRiskosDownloadEvaluationDocuments(body);
|
|
2463
|
+
}
|
|
2464
|
+
/** Receive Socure RiskOS webhook */
|
|
2465
|
+
receiveWebhook(body) {
|
|
2466
|
+
return this.api.socureRiskosReceiveWebhook(body);
|
|
2467
|
+
}
|
|
2468
|
+
/** Store per-user Socure RiskOS credentials */
|
|
2469
|
+
setUserCredentials(body) {
|
|
2470
|
+
return this.api.socureRiskosSetUserCredentials(body);
|
|
2471
|
+
}
|
|
2472
|
+
}
|
|
2473
|
+
exports.SocureRiskos = SocureRiskos;
|
|
1093
2474
|
/**
|
|
1094
2475
|
* Stripe integration module
|
|
1095
2476
|
*/
|