@matech/thebigpos-sdk 2.41.0-rc1 → 2.43.0-aibi-1
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/index.d.ts +1280 -1060
- package/dist/index.js +788 -353
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +1897 -1188
package/dist/index.js
CHANGED
|
@@ -104,7 +104,7 @@ export class HttpClient {
|
|
|
104
104
|
}
|
|
105
105
|
/**
|
|
106
106
|
* @title The Big POS API
|
|
107
|
-
* @version v2.
|
|
107
|
+
* @version v2.43.0
|
|
108
108
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
109
109
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
110
110
|
*/
|
|
@@ -118,7 +118,7 @@ export class Api extends HttpClient {
|
|
|
118
118
|
* @name PostRoot
|
|
119
119
|
* @request POST:/
|
|
120
120
|
* @secure
|
|
121
|
-
* @response `200` `void`
|
|
121
|
+
* @response `200` `void` OK
|
|
122
122
|
*/
|
|
123
123
|
this.postRoot = (params = {}) => this.request(Object.assign({ path: `/`, method: "POST", secure: true }, params));
|
|
124
124
|
/**
|
|
@@ -128,7 +128,7 @@ export class Api extends HttpClient {
|
|
|
128
128
|
* @name GetRoot
|
|
129
129
|
* @request GET:/
|
|
130
130
|
* @secure
|
|
131
|
-
* @response `200` `string`
|
|
131
|
+
* @response `200` `string` OK
|
|
132
132
|
*/
|
|
133
133
|
this.getRoot = (params = {}) => this.request(Object.assign({ path: `/`, method: "GET", secure: true }, params));
|
|
134
134
|
this.api = {
|
|
@@ -140,7 +140,7 @@ export class Api extends HttpClient {
|
|
|
140
140
|
* @summary Get
|
|
141
141
|
* @request GET:/api/account
|
|
142
142
|
* @secure
|
|
143
|
-
* @response `200` `Account`
|
|
143
|
+
* @response `200` `Account` OK
|
|
144
144
|
* @response `404` `ProblemDetails` Not Found
|
|
145
145
|
*/
|
|
146
146
|
getMyAccount: (params = {}) => this.request(Object.assign({ path: `/api/account`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -152,9 +152,9 @@ export class Api extends HttpClient {
|
|
|
152
152
|
* @summary Replace
|
|
153
153
|
* @request PUT:/api/account
|
|
154
154
|
* @secure
|
|
155
|
-
* @response `200` `Account`
|
|
155
|
+
* @response `200` `Account` OK
|
|
156
156
|
* @response `404` `ProblemDetails` Not Found
|
|
157
|
-
* @response `422` `ProblemDetails`
|
|
157
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
158
158
|
*/
|
|
159
159
|
replaceMyAccount: (data, params = {}) => this.request(Object.assign({ path: `/api/account`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
160
160
|
/**
|
|
@@ -165,7 +165,7 @@ export class Api extends HttpClient {
|
|
|
165
165
|
* @summary Get Site Configuration
|
|
166
166
|
* @request GET:/api/account/site-configurations
|
|
167
167
|
* @secure
|
|
168
|
-
* @response `200` `SiteConfiguration`
|
|
168
|
+
* @response `200` `SiteConfiguration` OK
|
|
169
169
|
*/
|
|
170
170
|
getSiteConfigurationByAccount: (params = {}) => this.request(Object.assign({ path: `/api/account/site-configurations`, method: "GET", secure: true, format: "json" }, params)),
|
|
171
171
|
/**
|
|
@@ -176,8 +176,8 @@ export class Api extends HttpClient {
|
|
|
176
176
|
* @summary Update Site Configuration
|
|
177
177
|
* @request PUT:/api/account/site-configurations
|
|
178
178
|
* @secure
|
|
179
|
-
* @response `200` `SiteConfiguration`
|
|
180
|
-
* @response `422` `UnprocessableEntity`
|
|
179
|
+
* @response `200` `SiteConfiguration` OK
|
|
180
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
181
181
|
*/
|
|
182
182
|
updateSiteConfigurationForAccount: (data, params = {}) => this.request(Object.assign({ path: `/api/account/site-configurations`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
183
183
|
/**
|
|
@@ -211,7 +211,7 @@ export class Api extends HttpClient {
|
|
|
211
211
|
* @summary Get All
|
|
212
212
|
* @request GET:/api/accounts
|
|
213
213
|
* @secure
|
|
214
|
-
* @response `200` `(Account)[]`
|
|
214
|
+
* @response `200` `(Account)[]` OK
|
|
215
215
|
*/
|
|
216
216
|
getAccounts: (params = {}) => this.request(Object.assign({ path: `/api/accounts`, method: "GET", secure: true, format: "json" }, params)),
|
|
217
217
|
/**
|
|
@@ -223,7 +223,7 @@ export class Api extends HttpClient {
|
|
|
223
223
|
* @request POST:/api/accounts
|
|
224
224
|
* @secure
|
|
225
225
|
* @response `201` `Account` Created
|
|
226
|
-
* @response `422` `ProblemDetails`
|
|
226
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
227
227
|
*/
|
|
228
228
|
createAccount: (data, params = {}) => this.request(Object.assign({ path: `/api/accounts`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
229
229
|
/**
|
|
@@ -235,7 +235,7 @@ export class Api extends HttpClient {
|
|
|
235
235
|
* @request GET:/api/accounts/{id}
|
|
236
236
|
* @secure
|
|
237
237
|
* @response `201` `Account` Created
|
|
238
|
-
* @response `422` `ProblemDetails`
|
|
238
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
239
239
|
*/
|
|
240
240
|
getAccount: (id, params = {}) => this.request(Object.assign({ path: `/api/accounts/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
241
241
|
/**
|
|
@@ -248,7 +248,7 @@ export class Api extends HttpClient {
|
|
|
248
248
|
* @secure
|
|
249
249
|
* @response `204` `Account` No Content
|
|
250
250
|
* @response `404` `ProblemDetails` Not Found
|
|
251
|
-
* @response `422` `ProblemDetails`
|
|
251
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
252
252
|
*/
|
|
253
253
|
deleteAccount: (id, query, params = {}) => this.request(Object.assign({ path: `/api/accounts/${id}`, method: "DELETE", query: query, secure: true, format: "json" }, params)),
|
|
254
254
|
/**
|
|
@@ -259,11 +259,432 @@ export class Api extends HttpClient {
|
|
|
259
259
|
* @summary Update billing configuration
|
|
260
260
|
* @request PUT:/api/accounts/{id}/billing
|
|
261
261
|
* @secure
|
|
262
|
-
* @response `200` `AccountBilling`
|
|
262
|
+
* @response `200` `AccountBilling` OK
|
|
263
263
|
* @response `404` `ProblemDetails` Not Found
|
|
264
|
-
* @response `422` `ProblemDetails`
|
|
264
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
265
265
|
*/
|
|
266
266
|
updateAccountBilling: (id, data, params = {}) => this.request(Object.assign({ path: `/api/accounts/${id}/billing`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
267
|
+
/**
|
|
268
|
+
* No description
|
|
269
|
+
*
|
|
270
|
+
* @tags AiAdmin
|
|
271
|
+
* @name GetAiAuditLogs
|
|
272
|
+
* @summary Get paginated audit logs
|
|
273
|
+
* @request GET:/api/ai/admin/audit-logs
|
|
274
|
+
* @secure
|
|
275
|
+
* @response `200` `AiAuditLogPaginated` OK
|
|
276
|
+
*/
|
|
277
|
+
getAiAuditLogs: (query, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/audit-logs`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
278
|
+
/**
|
|
279
|
+
* No description
|
|
280
|
+
*
|
|
281
|
+
* @tags AiAdmin
|
|
282
|
+
* @name GetAiAdminStats
|
|
283
|
+
* @summary Get AI admin dashboard stats
|
|
284
|
+
* @request GET:/api/ai/admin/stats
|
|
285
|
+
* @secure
|
|
286
|
+
* @response `200` `AiAdminStats` OK
|
|
287
|
+
*/
|
|
288
|
+
getAiAdminStats: (query, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/stats`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
289
|
+
/**
|
|
290
|
+
* No description
|
|
291
|
+
*
|
|
292
|
+
* @tags AiAdminPrompt
|
|
293
|
+
* @name GetAiPrompts
|
|
294
|
+
* @summary Get all prompts
|
|
295
|
+
* @request GET:/api/ai/admin/prompts
|
|
296
|
+
* @secure
|
|
297
|
+
* @response `200` `(AiPrompt)[]` OK
|
|
298
|
+
*/
|
|
299
|
+
getAiPrompts: (params = {}) => this.request(Object.assign({ path: `/api/ai/admin/prompts`, method: "GET", secure: true, format: "json" }, params)),
|
|
300
|
+
/**
|
|
301
|
+
* No description
|
|
302
|
+
*
|
|
303
|
+
* @tags AiAdminPrompt
|
|
304
|
+
* @name CreateAiPrompt
|
|
305
|
+
* @summary Create custom prompt
|
|
306
|
+
* @request POST:/api/ai/admin/prompts
|
|
307
|
+
* @secure
|
|
308
|
+
* @response `201` `AiPrompt` Created
|
|
309
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
310
|
+
*/
|
|
311
|
+
createAiPrompt: (data, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/prompts`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
312
|
+
/**
|
|
313
|
+
* No description
|
|
314
|
+
*
|
|
315
|
+
* @tags AiAdminPrompt
|
|
316
|
+
* @name GetAiPrompt
|
|
317
|
+
* @summary Get prompt by ID
|
|
318
|
+
* @request GET:/api/ai/admin/prompts/{id}
|
|
319
|
+
* @secure
|
|
320
|
+
* @response `200` `AiPrompt` OK
|
|
321
|
+
* @response `404` `ProblemDetails` Not Found
|
|
322
|
+
*/
|
|
323
|
+
getAiPrompt: (id, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/prompts/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
324
|
+
/**
|
|
325
|
+
* No description
|
|
326
|
+
*
|
|
327
|
+
* @tags AiAdminPrompt
|
|
328
|
+
* @name UpdateAiPrompt
|
|
329
|
+
* @summary Update prompt
|
|
330
|
+
* @request PUT:/api/ai/admin/prompts/{id}
|
|
331
|
+
* @secure
|
|
332
|
+
* @response `200` `AiPrompt` OK
|
|
333
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
334
|
+
* @response `404` `ProblemDetails` Not Found
|
|
335
|
+
*/
|
|
336
|
+
updateAiPrompt: (id, data, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/prompts/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
337
|
+
/**
|
|
338
|
+
* No description
|
|
339
|
+
*
|
|
340
|
+
* @tags AiAdminPrompt
|
|
341
|
+
* @name DeleteAiPrompt
|
|
342
|
+
* @summary Delete prompt
|
|
343
|
+
* @request DELETE:/api/ai/admin/prompts/{id}
|
|
344
|
+
* @secure
|
|
345
|
+
* @response `204` `void` No Content
|
|
346
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
347
|
+
* @response `404` `ProblemDetails` Not Found
|
|
348
|
+
*/
|
|
349
|
+
deleteAiPrompt: (id, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/prompts/${id}`, method: "DELETE", secure: true }, params)),
|
|
350
|
+
/**
|
|
351
|
+
* No description
|
|
352
|
+
*
|
|
353
|
+
* @tags AiAdminPrompt
|
|
354
|
+
* @name ToggleAiPrompt
|
|
355
|
+
* @summary Toggle prompt active/inactive
|
|
356
|
+
* @request PATCH:/api/ai/admin/prompts/{id}/toggle
|
|
357
|
+
* @secure
|
|
358
|
+
* @response `200` `AiPrompt` OK
|
|
359
|
+
* @response `404` `ProblemDetails` Not Found
|
|
360
|
+
*/
|
|
361
|
+
toggleAiPrompt: (id, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/prompts/${id}/toggle`, method: "PATCH", secure: true, format: "json" }, params)),
|
|
362
|
+
/**
|
|
363
|
+
* No description
|
|
364
|
+
*
|
|
365
|
+
* @tags AiAdminPrompt
|
|
366
|
+
* @name GenerateAiSystemPrompt
|
|
367
|
+
* @summary Generate a system prompt from description
|
|
368
|
+
* @request POST:/api/ai/admin/prompts/generate
|
|
369
|
+
* @secure
|
|
370
|
+
* @response `200` `GenerateSystemPrompt` OK
|
|
371
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
372
|
+
*/
|
|
373
|
+
generateAiSystemPrompt: (data, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/prompts/generate`, method: "POST", body: data, secure: true, type: ContentType.JsonPatch, format: "json" }, params)),
|
|
374
|
+
/**
|
|
375
|
+
* No description
|
|
376
|
+
*
|
|
377
|
+
* @tags AiAdminPrompt
|
|
378
|
+
* @name GetSupportedModels
|
|
379
|
+
* @summary Get supported LLM models
|
|
380
|
+
* @request GET:/api/ai/admin/prompts/supported-models
|
|
381
|
+
* @secure
|
|
382
|
+
* @response `200` `(SupportedModel)[]` OK
|
|
383
|
+
*/
|
|
384
|
+
getSupportedModels: (params = {}) => this.request(Object.assign({ path: `/api/ai/admin/prompts/supported-models`, method: "GET", secure: true, format: "json" }, params)),
|
|
385
|
+
/**
|
|
386
|
+
* No description
|
|
387
|
+
*
|
|
388
|
+
* @tags AiAdminSettings
|
|
389
|
+
* @name GetAiAdminSettings
|
|
390
|
+
* @summary Get global AI settings
|
|
391
|
+
* @request GET:/api/ai/admin/settings
|
|
392
|
+
* @secure
|
|
393
|
+
* @response `200` `AiAdminSettings` OK
|
|
394
|
+
*/
|
|
395
|
+
getAiAdminSettings: (params = {}) => this.request(Object.assign({ path: `/api/ai/admin/settings`, method: "GET", secure: true, format: "json" }, params)),
|
|
396
|
+
/**
|
|
397
|
+
* No description
|
|
398
|
+
*
|
|
399
|
+
* @tags AiAdminSettings
|
|
400
|
+
* @name UpdateAiAdminSettings
|
|
401
|
+
* @summary Update global AI settings
|
|
402
|
+
* @request PUT:/api/ai/admin/settings
|
|
403
|
+
* @secure
|
|
404
|
+
* @response `200` `AiAdminSettings` OK
|
|
405
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
406
|
+
*/
|
|
407
|
+
updateAiAdminSettings: (data, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/settings`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
408
|
+
/**
|
|
409
|
+
* No description
|
|
410
|
+
*
|
|
411
|
+
* @tags AiCanonicalField
|
|
412
|
+
* @name GetAiCanonicalFields
|
|
413
|
+
* @summary Get all canonical fields
|
|
414
|
+
* @request GET:/api/ai/admin/fields
|
|
415
|
+
* @secure
|
|
416
|
+
* @response `200` `(AiCanonicalField)[]` OK
|
|
417
|
+
*/
|
|
418
|
+
getAiCanonicalFields: (params = {}) => this.request(Object.assign({ path: `/api/ai/admin/fields`, method: "GET", secure: true, format: "json" }, params)),
|
|
419
|
+
/**
|
|
420
|
+
* No description
|
|
421
|
+
*
|
|
422
|
+
* @tags AiCanonicalField
|
|
423
|
+
* @name CreateAiCanonicalField
|
|
424
|
+
* @summary Create canonical field
|
|
425
|
+
* @request POST:/api/ai/admin/fields
|
|
426
|
+
* @secure
|
|
427
|
+
* @response `201` `AiCanonicalField` Created
|
|
428
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
429
|
+
*/
|
|
430
|
+
createAiCanonicalField: (data, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/fields`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
431
|
+
/**
|
|
432
|
+
* No description
|
|
433
|
+
*
|
|
434
|
+
* @tags AiCanonicalField
|
|
435
|
+
* @name GetAiCanonicalField
|
|
436
|
+
* @summary Get canonical field by ID
|
|
437
|
+
* @request GET:/api/ai/admin/fields/{id}
|
|
438
|
+
* @secure
|
|
439
|
+
* @response `200` `AiCanonicalField` OK
|
|
440
|
+
* @response `404` `ProblemDetails` Not Found
|
|
441
|
+
*/
|
|
442
|
+
getAiCanonicalField: (id, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/fields/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
443
|
+
/**
|
|
444
|
+
* No description
|
|
445
|
+
*
|
|
446
|
+
* @tags AiCanonicalField
|
|
447
|
+
* @name UpdateAiCanonicalField
|
|
448
|
+
* @summary Update canonical field
|
|
449
|
+
* @request PUT:/api/ai/admin/fields/{id}
|
|
450
|
+
* @secure
|
|
451
|
+
* @response `200` `AiCanonicalField` OK
|
|
452
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
453
|
+
* @response `404` `ProblemDetails` Not Found
|
|
454
|
+
*/
|
|
455
|
+
updateAiCanonicalField: (id, data, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/fields/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
456
|
+
/**
|
|
457
|
+
* No description
|
|
458
|
+
*
|
|
459
|
+
* @tags AiCanonicalField
|
|
460
|
+
* @name DeleteAiCanonicalField
|
|
461
|
+
* @summary Delete canonical field
|
|
462
|
+
* @request DELETE:/api/ai/admin/fields/{id}
|
|
463
|
+
* @secure
|
|
464
|
+
* @response `204` `void` No Content
|
|
465
|
+
* @response `404` `ProblemDetails` Not Found
|
|
466
|
+
*/
|
|
467
|
+
deleteAiCanonicalField: (id, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/fields/${id}`, method: "DELETE", secure: true }, params)),
|
|
468
|
+
/**
|
|
469
|
+
* No description
|
|
470
|
+
*
|
|
471
|
+
* @tags AiCanonicalField
|
|
472
|
+
* @name ToggleAiCanonicalField
|
|
473
|
+
* @summary Toggle canonical field active/inactive
|
|
474
|
+
* @request PATCH:/api/ai/admin/fields/{id}/toggle
|
|
475
|
+
* @secure
|
|
476
|
+
* @response `200` `AiCanonicalField` OK
|
|
477
|
+
* @response `404` `ProblemDetails` Not Found
|
|
478
|
+
*/
|
|
479
|
+
toggleAiCanonicalField: (id, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/fields/${id}/toggle`, method: "PATCH", secure: true, format: "json" }, params)),
|
|
480
|
+
/**
|
|
481
|
+
* No description
|
|
482
|
+
*
|
|
483
|
+
* @tags AiChat
|
|
484
|
+
* @name AiChat
|
|
485
|
+
* @summary Send AI chat message
|
|
486
|
+
* @request POST:/api/ai/chat
|
|
487
|
+
* @secure
|
|
488
|
+
* @response `200` `AiChat` OK
|
|
489
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
490
|
+
* @response `401` `ProblemDetails` Unauthorized
|
|
491
|
+
*/
|
|
492
|
+
aiChat: (data, params = {}) => this.request(Object.assign({ path: `/api/ai/chat`, method: "POST", body: data, secure: true, type: ContentType.JsonPatch, format: "json" }, params)),
|
|
493
|
+
/**
|
|
494
|
+
* No description
|
|
495
|
+
*
|
|
496
|
+
* @tags AiConversation
|
|
497
|
+
* @name GetAiConversations
|
|
498
|
+
* @summary Get user conversations
|
|
499
|
+
* @request GET:/api/ai/conversations
|
|
500
|
+
* @secure
|
|
501
|
+
* @response `200` `AiConversationListItemPaginated` OK
|
|
502
|
+
*/
|
|
503
|
+
getAiConversations: (query, params = {}) => this.request(Object.assign({ path: `/api/ai/conversations`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
504
|
+
/**
|
|
505
|
+
* No description
|
|
506
|
+
*
|
|
507
|
+
* @tags AiConversation
|
|
508
|
+
* @name GetAiConversation
|
|
509
|
+
* @summary Get conversation with messages
|
|
510
|
+
* @request GET:/api/ai/conversations/{id}
|
|
511
|
+
* @secure
|
|
512
|
+
* @response `200` `AiConversationDetail` OK
|
|
513
|
+
* @response `403` `ProblemDetails` Forbidden
|
|
514
|
+
* @response `404` `ProblemDetails` Not Found
|
|
515
|
+
*/
|
|
516
|
+
getAiConversation: (id, params = {}) => this.request(Object.assign({ path: `/api/ai/conversations/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
517
|
+
/**
|
|
518
|
+
* No description
|
|
519
|
+
*
|
|
520
|
+
* @tags AiConversation
|
|
521
|
+
* @name DeleteAiConversation
|
|
522
|
+
* @summary Delete conversation
|
|
523
|
+
* @request DELETE:/api/ai/conversations/{id}
|
|
524
|
+
* @secure
|
|
525
|
+
* @response `204` `void` No Content
|
|
526
|
+
* @response `403` `ProblemDetails` Forbidden
|
|
527
|
+
* @response `404` `ProblemDetails` Not Found
|
|
528
|
+
*/
|
|
529
|
+
deleteAiConversation: (id, params = {}) => this.request(Object.assign({ path: `/api/ai/conversations/${id}`, method: "DELETE", secure: true }, params)),
|
|
530
|
+
/**
|
|
531
|
+
* No description
|
|
532
|
+
*
|
|
533
|
+
* @tags AiGuardrail
|
|
534
|
+
* @name GetAiGuardrails
|
|
535
|
+
* @summary Get all guardrails
|
|
536
|
+
* @request GET:/api/ai/admin/guardrails
|
|
537
|
+
* @secure
|
|
538
|
+
* @response `200` `(AiGuardrail)[]` OK
|
|
539
|
+
*/
|
|
540
|
+
getAiGuardrails: (params = {}) => this.request(Object.assign({ path: `/api/ai/admin/guardrails`, method: "GET", secure: true, format: "json" }, params)),
|
|
541
|
+
/**
|
|
542
|
+
* No description
|
|
543
|
+
*
|
|
544
|
+
* @tags AiGuardrail
|
|
545
|
+
* @name CreateAiGuardrail
|
|
546
|
+
* @summary Create custom guardrail
|
|
547
|
+
* @request POST:/api/ai/admin/guardrails
|
|
548
|
+
* @secure
|
|
549
|
+
* @response `201` `AiGuardrail` Created
|
|
550
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
551
|
+
*/
|
|
552
|
+
createAiGuardrail: (data, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/guardrails`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
553
|
+
/**
|
|
554
|
+
* No description
|
|
555
|
+
*
|
|
556
|
+
* @tags AiGuardrail
|
|
557
|
+
* @name GetAiGuardrail
|
|
558
|
+
* @summary Get guardrail by ID
|
|
559
|
+
* @request GET:/api/ai/admin/guardrails/{id}
|
|
560
|
+
* @secure
|
|
561
|
+
* @response `200` `AiGuardrail` OK
|
|
562
|
+
* @response `404` `ProblemDetails` Not Found
|
|
563
|
+
*/
|
|
564
|
+
getAiGuardrail: (id, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/guardrails/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
565
|
+
/**
|
|
566
|
+
* No description
|
|
567
|
+
*
|
|
568
|
+
* @tags AiGuardrail
|
|
569
|
+
* @name UpdateAiGuardrail
|
|
570
|
+
* @summary Update guardrail
|
|
571
|
+
* @request PUT:/api/ai/admin/guardrails/{id}
|
|
572
|
+
* @secure
|
|
573
|
+
* @response `200` `AiGuardrail` OK
|
|
574
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
575
|
+
* @response `404` `ProblemDetails` Not Found
|
|
576
|
+
*/
|
|
577
|
+
updateAiGuardrail: (id, data, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/guardrails/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
578
|
+
/**
|
|
579
|
+
* No description
|
|
580
|
+
*
|
|
581
|
+
* @tags AiGuardrail
|
|
582
|
+
* @name DeleteAiGuardrail
|
|
583
|
+
* @summary Delete guardrail
|
|
584
|
+
* @request DELETE:/api/ai/admin/guardrails/{id}
|
|
585
|
+
* @secure
|
|
586
|
+
* @response `204` `void` No Content
|
|
587
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
588
|
+
* @response `404` `ProblemDetails` Not Found
|
|
589
|
+
*/
|
|
590
|
+
deleteAiGuardrail: (id, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/guardrails/${id}`, method: "DELETE", secure: true }, params)),
|
|
591
|
+
/**
|
|
592
|
+
* No description
|
|
593
|
+
*
|
|
594
|
+
* @tags AiGuardrail
|
|
595
|
+
* @name ToggleAiGuardrail
|
|
596
|
+
* @summary Toggle guardrail enabled/disabled
|
|
597
|
+
* @request PATCH:/api/ai/admin/guardrails/{id}/toggle
|
|
598
|
+
* @secure
|
|
599
|
+
* @response `200` `AiGuardrail` OK
|
|
600
|
+
* @response `404` `ProblemDetails` Not Found
|
|
601
|
+
*/
|
|
602
|
+
toggleAiGuardrail: (id, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/guardrails/${id}/toggle`, method: "PATCH", secure: true, format: "json" }, params)),
|
|
603
|
+
/**
|
|
604
|
+
* No description
|
|
605
|
+
*
|
|
606
|
+
* @tags AiPrompt
|
|
607
|
+
* @name GetAvailablePrompts
|
|
608
|
+
* @summary Get available prompts for current user
|
|
609
|
+
* @request GET:/api/ai/prompts
|
|
610
|
+
* @secure
|
|
611
|
+
* @response `200` `(AiPromptSummary)[]` OK
|
|
612
|
+
*/
|
|
613
|
+
getAvailablePrompts: (query, params = {}) => this.request(Object.assign({ path: `/api/ai/prompts`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
614
|
+
/**
|
|
615
|
+
* No description
|
|
616
|
+
*
|
|
617
|
+
* @tags AiUrlSource
|
|
618
|
+
* @name GetAiUrlSources
|
|
619
|
+
* @summary Get all URL sources
|
|
620
|
+
* @request GET:/api/ai/admin/url-sources
|
|
621
|
+
* @secure
|
|
622
|
+
* @response `200` `(AiUrlSource)[]` OK
|
|
623
|
+
*/
|
|
624
|
+
getAiUrlSources: (params = {}) => this.request(Object.assign({ path: `/api/ai/admin/url-sources`, method: "GET", secure: true, format: "json" }, params)),
|
|
625
|
+
/**
|
|
626
|
+
* No description
|
|
627
|
+
*
|
|
628
|
+
* @tags AiUrlSource
|
|
629
|
+
* @name CreateAiUrlSource
|
|
630
|
+
* @summary Create URL source
|
|
631
|
+
* @request POST:/api/ai/admin/url-sources
|
|
632
|
+
* @secure
|
|
633
|
+
* @response `201` `AiUrlSource` Created
|
|
634
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
635
|
+
* @response `409` `ProblemDetails` Conflict
|
|
636
|
+
*/
|
|
637
|
+
createAiUrlSource: (data, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/url-sources`, method: "POST", body: data, secure: true, type: ContentType.JsonPatch, format: "json" }, params)),
|
|
638
|
+
/**
|
|
639
|
+
* No description
|
|
640
|
+
*
|
|
641
|
+
* @tags AiUrlSource
|
|
642
|
+
* @name GetAiUrlSource
|
|
643
|
+
* @summary Get URL source by ID
|
|
644
|
+
* @request GET:/api/ai/admin/url-sources/{id}
|
|
645
|
+
* @secure
|
|
646
|
+
* @response `200` `AiUrlSource` OK
|
|
647
|
+
* @response `404` `ProblemDetails` Not Found
|
|
648
|
+
*/
|
|
649
|
+
getAiUrlSource: (id, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/url-sources/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
650
|
+
/**
|
|
651
|
+
* No description
|
|
652
|
+
*
|
|
653
|
+
* @tags AiUrlSource
|
|
654
|
+
* @name UpdateAiUrlSource
|
|
655
|
+
* @summary Update URL source
|
|
656
|
+
* @request PUT:/api/ai/admin/url-sources/{id}
|
|
657
|
+
* @secure
|
|
658
|
+
* @response `200` `AiUrlSource` OK
|
|
659
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
660
|
+
* @response `404` `ProblemDetails` Not Found
|
|
661
|
+
* @response `409` `ProblemDetails` Conflict
|
|
662
|
+
*/
|
|
663
|
+
updateAiUrlSource: (id, data, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/url-sources/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
664
|
+
/**
|
|
665
|
+
* No description
|
|
666
|
+
*
|
|
667
|
+
* @tags AiUrlSource
|
|
668
|
+
* @name DeleteAiUrlSource
|
|
669
|
+
* @summary Delete URL source
|
|
670
|
+
* @request DELETE:/api/ai/admin/url-sources/{id}
|
|
671
|
+
* @secure
|
|
672
|
+
* @response `204` `void` No Content
|
|
673
|
+
* @response `404` `ProblemDetails` Not Found
|
|
674
|
+
*/
|
|
675
|
+
deleteAiUrlSource: (id, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/url-sources/${id}`, method: "DELETE", secure: true }, params)),
|
|
676
|
+
/**
|
|
677
|
+
* No description
|
|
678
|
+
*
|
|
679
|
+
* @tags AiUrlSource
|
|
680
|
+
* @name ToggleAiUrlSource
|
|
681
|
+
* @summary Toggle URL source active/inactive
|
|
682
|
+
* @request PATCH:/api/ai/admin/url-sources/{id}/toggle
|
|
683
|
+
* @secure
|
|
684
|
+
* @response `200` `AiUrlSource` OK
|
|
685
|
+
* @response `404` `ProblemDetails` Not Found
|
|
686
|
+
*/
|
|
687
|
+
toggleAiUrlSource: (id, params = {}) => this.request(Object.assign({ path: `/api/ai/admin/url-sources/${id}/toggle`, method: "PATCH", secure: true, format: "json" }, params)),
|
|
267
688
|
/**
|
|
268
689
|
* No description
|
|
269
690
|
*
|
|
@@ -272,9 +693,9 @@ export class Api extends HttpClient {
|
|
|
272
693
|
* @summary Search
|
|
273
694
|
* @request POST:/api/audit-logs/search
|
|
274
695
|
* @secure
|
|
275
|
-
* @response `200` `AuditLogEntryPaginated`
|
|
696
|
+
* @response `200` `AuditLogEntryPaginated` OK
|
|
276
697
|
*/
|
|
277
|
-
searchAuditLogs: (data, query, params = {}) => this.request(Object.assign({ path: `/api/audit-logs/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.
|
|
698
|
+
searchAuditLogs: (data, query, params = {}) => this.request(Object.assign({ path: `/api/audit-logs/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.JsonPatch, format: "json" }, params)),
|
|
278
699
|
/**
|
|
279
700
|
* No description
|
|
280
701
|
*
|
|
@@ -283,7 +704,7 @@ export class Api extends HttpClient {
|
|
|
283
704
|
* @summary Get entity types
|
|
284
705
|
* @request GET:/api/audit-logs/entity-types
|
|
285
706
|
* @secure
|
|
286
|
-
* @response `200` `(AuditEntityType)[]`
|
|
707
|
+
* @response `200` `(AuditEntityType)[]` OK
|
|
287
708
|
*/
|
|
288
709
|
getAuditLogEntityTypes: (params = {}) => this.request(Object.assign({ path: `/api/audit-logs/entity-types`, method: "GET", secure: true, format: "json" }, params)),
|
|
289
710
|
/**
|
|
@@ -294,7 +715,7 @@ export class Api extends HttpClient {
|
|
|
294
715
|
* @summary Get by ID
|
|
295
716
|
* @request GET:/api/audit-logs/{id}
|
|
296
717
|
* @secure
|
|
297
|
-
* @response `200` `AuditLogEntry`
|
|
718
|
+
* @response `200` `AuditLogEntry` OK
|
|
298
719
|
* @response `404` `ProblemDetails` Not Found
|
|
299
720
|
*/
|
|
300
721
|
getAuditLogById: (id, params = {}) => this.request(Object.assign({ path: `/api/audit-logs/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -306,9 +727,9 @@ export class Api extends HttpClient {
|
|
|
306
727
|
* @summary Generate Token From Refresh Token
|
|
307
728
|
* @request POST:/api/refresh-token
|
|
308
729
|
* @secure
|
|
309
|
-
* @response `200` `Token`
|
|
730
|
+
* @response `200` `Token` OK
|
|
310
731
|
* @response `401` `ProblemDetails` Unauthorized
|
|
311
|
-
* @response `422` `UnprocessableEntity`
|
|
732
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
312
733
|
*/
|
|
313
734
|
getTokenFromRefreshToken: (data, params = {}) => this.request(Object.assign({ path: `/api/refresh-token`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
314
735
|
/**
|
|
@@ -319,8 +740,8 @@ export class Api extends HttpClient {
|
|
|
319
740
|
* @summary Get Token
|
|
320
741
|
* @request POST:/api/token
|
|
321
742
|
* @secure
|
|
322
|
-
* @response `200` `AccountDeactivated`
|
|
323
|
-
* @response `422` `UnprocessableEntity`
|
|
743
|
+
* @response `200` `AccountDeactivated` OK
|
|
744
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
324
745
|
*/
|
|
325
746
|
getToken: (data, params = {}) => this.request(Object.assign({ path: `/api/token`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
326
747
|
/**
|
|
@@ -331,8 +752,8 @@ export class Api extends HttpClient {
|
|
|
331
752
|
* @summary Get Token From Challenge Code
|
|
332
753
|
* @request POST:/api/token/code
|
|
333
754
|
* @secure
|
|
334
|
-
* @response `200` `AccountDeactivated`
|
|
335
|
-
* @response `422` `UnprocessableEntity`
|
|
755
|
+
* @response `200` `AccountDeactivated` OK
|
|
756
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
336
757
|
*/
|
|
337
758
|
getTokenFromChallengeCode: (data, params = {}) => this.request(Object.assign({ path: `/api/token/code`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
338
759
|
/**
|
|
@@ -343,8 +764,8 @@ export class Api extends HttpClient {
|
|
|
343
764
|
* @summary Get System Token
|
|
344
765
|
* @request POST:/api/oauth2/token
|
|
345
766
|
* @secure
|
|
346
|
-
* @response `200` `Token`
|
|
347
|
-
* @response `422` `UnprocessableEntity`
|
|
767
|
+
* @response `200` `Token` OK
|
|
768
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
348
769
|
*/
|
|
349
770
|
getSystemToken: (data, params = {}) => this.request(Object.assign({ path: `/api/oauth2/token`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
350
771
|
/**
|
|
@@ -355,8 +776,8 @@ export class Api extends HttpClient {
|
|
|
355
776
|
* @summary Get SSO Guid Token
|
|
356
777
|
* @request POST:/api/token/sso
|
|
357
778
|
* @secure
|
|
358
|
-
* @response `200` `SSOToken`
|
|
359
|
-
* @response `422` `UnprocessableEntity`
|
|
779
|
+
* @response `200` `SSOToken` OK
|
|
780
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
360
781
|
*/
|
|
361
782
|
getSsoToken: (data, params = {}) => this.request(Object.assign({ path: `/api/token/sso`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
362
783
|
/**
|
|
@@ -368,7 +789,7 @@ export class Api extends HttpClient {
|
|
|
368
789
|
* @request POST:/api/logout
|
|
369
790
|
* @secure
|
|
370
791
|
* @response `204` `NoContentResult` No Content
|
|
371
|
-
* @response `422` `UnprocessableEntity`
|
|
792
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
372
793
|
*/
|
|
373
794
|
logOut: (params = {}) => this.request(Object.assign({ path: `/api/logout`, method: "POST", secure: true, format: "json" }, params)),
|
|
374
795
|
/**
|
|
@@ -379,7 +800,7 @@ export class Api extends HttpClient {
|
|
|
379
800
|
* @summary Get All
|
|
380
801
|
* @request GET:/api/branches
|
|
381
802
|
* @secure
|
|
382
|
-
* @response `200` `GetBranchPaginated`
|
|
803
|
+
* @response `200` `GetBranchPaginated` OK
|
|
383
804
|
*/
|
|
384
805
|
getBranches: (query, params = {}) => this.request(Object.assign({ path: `/api/branches`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
385
806
|
/**
|
|
@@ -390,8 +811,8 @@ export class Api extends HttpClient {
|
|
|
390
811
|
* @summary Create
|
|
391
812
|
* @request POST:/api/branches
|
|
392
813
|
* @secure
|
|
393
|
-
* @response `200` `GetBranch`
|
|
394
|
-
* @response `422` `UnprocessableEntity`
|
|
814
|
+
* @response `200` `GetBranch` OK
|
|
815
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
395
816
|
*/
|
|
396
817
|
createBranch: (data, params = {}) => this.request(Object.assign({ path: `/api/branches`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
397
818
|
/**
|
|
@@ -402,7 +823,7 @@ export class Api extends HttpClient {
|
|
|
402
823
|
* @summary Search
|
|
403
824
|
* @request POST:/api/branches/search
|
|
404
825
|
* @secure
|
|
405
|
-
* @response `200` `GetBranchPaginated`
|
|
826
|
+
* @response `200` `GetBranchPaginated` OK
|
|
406
827
|
*/
|
|
407
828
|
searchBranches: (data, query, params = {}) => this.request(Object.assign({ path: `/api/branches/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
408
829
|
/**
|
|
@@ -413,7 +834,7 @@ export class Api extends HttpClient {
|
|
|
413
834
|
* @summary Get by ID
|
|
414
835
|
* @request GET:/api/branches/{branchId}
|
|
415
836
|
* @secure
|
|
416
|
-
* @response `200` `GetBranch`
|
|
837
|
+
* @response `200` `GetBranch` OK
|
|
417
838
|
*/
|
|
418
839
|
getBranch: (branchId, params = {}) => this.request(Object.assign({ path: `/api/branches/${branchId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
419
840
|
/**
|
|
@@ -424,8 +845,8 @@ export class Api extends HttpClient {
|
|
|
424
845
|
* @summary Replace
|
|
425
846
|
* @request PUT:/api/branches/{branchId}
|
|
426
847
|
* @secure
|
|
427
|
-
* @response `200` `GetBranch`
|
|
428
|
-
* @response `422` `UnprocessableEntity`
|
|
848
|
+
* @response `200` `GetBranch` OK
|
|
849
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
429
850
|
*/
|
|
430
851
|
replaceBranch: (branchId, data, params = {}) => this.request(Object.assign({ path: `/api/branches/${branchId}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
431
852
|
/**
|
|
@@ -459,8 +880,8 @@ export class Api extends HttpClient {
|
|
|
459
880
|
* @summary Create Branch Site Configuration
|
|
460
881
|
* @request POST:/api/branches/{branchId}/site-configurations
|
|
461
882
|
* @secure
|
|
462
|
-
* @response `200` `SiteConfiguration`
|
|
463
|
-
* @response `422` `UnprocessableEntity`
|
|
883
|
+
* @response `200` `SiteConfiguration` OK
|
|
884
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
464
885
|
*/
|
|
465
886
|
createBranchSiteConfiguration: (branchId, data, params = {}) => this.request(Object.assign({ path: `/api/branches/${branchId}/site-configurations`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
466
887
|
/**
|
|
@@ -471,7 +892,7 @@ export class Api extends HttpClient {
|
|
|
471
892
|
* @summary Get Branch Site Configuration
|
|
472
893
|
* @request GET:/api/branches/{branchId}/site-configurations/{siteConfigurationId}
|
|
473
894
|
* @secure
|
|
474
|
-
* @response `200` `SiteConfigurationWithInherited`
|
|
895
|
+
* @response `200` `SiteConfigurationWithInherited` OK
|
|
475
896
|
*/
|
|
476
897
|
getBranchSiteConfiguration: (branchId, siteConfigurationId, params = {}) => this.request(Object.assign({ path: `/api/branches/${branchId}/site-configurations/${siteConfigurationId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
477
898
|
/**
|
|
@@ -482,8 +903,8 @@ export class Api extends HttpClient {
|
|
|
482
903
|
* @summary Replace Branch Site Configuration
|
|
483
904
|
* @request PUT:/api/branches/{branchId}/site-configurations/{siteConfigurationId}
|
|
484
905
|
* @secure
|
|
485
|
-
* @response `200` `SiteConfiguration`
|
|
486
|
-
* @response `422` `UnprocessableEntity`
|
|
906
|
+
* @response `200` `SiteConfiguration` OK
|
|
907
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
487
908
|
*/
|
|
488
909
|
replaceBranchSiteConfiguration: (branchId, siteConfigurationId, data, query, params = {}) => this.request(Object.assign({ path: `/api/branches/${branchId}/site-configurations/${siteConfigurationId}`, method: "PUT", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
489
910
|
/**
|
|
@@ -494,7 +915,7 @@ export class Api extends HttpClient {
|
|
|
494
915
|
* @summary Get Branch Loan Officers
|
|
495
916
|
* @request GET:/api/branches/{branchId}/loan-officers
|
|
496
917
|
* @secure
|
|
497
|
-
* @response `200` `(LoanOfficerPublic)[]`
|
|
918
|
+
* @response `200` `(LoanOfficerPublic)[]` OK
|
|
498
919
|
*/
|
|
499
920
|
getLoanOfficersByBranch: (branchId, params = {}) => this.request(Object.assign({ path: `/api/branches/${branchId}/loan-officers`, method: "GET", secure: true, format: "json" }, params)),
|
|
500
921
|
/**
|
|
@@ -505,7 +926,7 @@ export class Api extends HttpClient {
|
|
|
505
926
|
* @summary Get All
|
|
506
927
|
* @request GET:/api/business-rules
|
|
507
928
|
* @secure
|
|
508
|
-
* @response `200` `(BusinessRule)[]`
|
|
929
|
+
* @response `200` `(BusinessRule)[]` OK
|
|
509
930
|
*/
|
|
510
931
|
getBusinessRules: (query, params = {}) => this.request(Object.assign({ path: `/api/business-rules`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
511
932
|
/**
|
|
@@ -516,8 +937,8 @@ export class Api extends HttpClient {
|
|
|
516
937
|
* @summary Create
|
|
517
938
|
* @request POST:/api/business-rules
|
|
518
939
|
* @secure
|
|
519
|
-
* @response `200` `BusinessRule`
|
|
520
|
-
* @response `422` `UnprocessableEntity`
|
|
940
|
+
* @response `200` `BusinessRule` OK
|
|
941
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
521
942
|
*/
|
|
522
943
|
createBusinessRule: (data, params = {}) => this.request(Object.assign({ path: `/api/business-rules`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
523
944
|
/**
|
|
@@ -528,7 +949,7 @@ export class Api extends HttpClient {
|
|
|
528
949
|
* @summary Get by ID
|
|
529
950
|
* @request GET:/api/business-rules/{id}
|
|
530
951
|
* @secure
|
|
531
|
-
* @response `200` `BusinessRule`
|
|
952
|
+
* @response `200` `BusinessRule` OK
|
|
532
953
|
*/
|
|
533
954
|
getBusinessRule: (id, params = {}) => this.request(Object.assign({ path: `/api/business-rules/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
534
955
|
/**
|
|
@@ -539,8 +960,8 @@ export class Api extends HttpClient {
|
|
|
539
960
|
* @summary Replace
|
|
540
961
|
* @request PUT:/api/business-rules/{id}
|
|
541
962
|
* @secure
|
|
542
|
-
* @response `200` `BusinessRule`
|
|
543
|
-
* @response `422` `UnprocessableEntity`
|
|
963
|
+
* @response `200` `BusinessRule` OK
|
|
964
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
544
965
|
*/
|
|
545
966
|
replaceBusinessRule: (id, data, params = {}) => this.request(Object.assign({ path: `/api/business-rules/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
546
967
|
/**
|
|
@@ -562,7 +983,7 @@ export class Api extends HttpClient {
|
|
|
562
983
|
* @summary Restore
|
|
563
984
|
* @request POST:/api/business-rules/{id}/restore
|
|
564
985
|
* @secure
|
|
565
|
-
* @response `200` `BusinessRule`
|
|
986
|
+
* @response `200` `BusinessRule` OK
|
|
566
987
|
*/
|
|
567
988
|
restoreBusinessRule: (id, params = {}) => this.request(Object.assign({ path: `/api/business-rules/${id}/restore`, method: "POST", secure: true, format: "json" }, params)),
|
|
568
989
|
/**
|
|
@@ -573,7 +994,7 @@ export class Api extends HttpClient {
|
|
|
573
994
|
* @summary Get Closed Loans Report
|
|
574
995
|
* @request POST:/api/loans/reports/closed-loans
|
|
575
996
|
* @secure
|
|
576
|
-
* @response `200` `ClosedLoansReport`
|
|
997
|
+
* @response `200` `ClosedLoansReport` OK
|
|
577
998
|
*/
|
|
578
999
|
getClosedLoansReport: (data, params = {}) => this.request(Object.assign({ path: `/api/loans/reports/closed-loans`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
579
1000
|
/**
|
|
@@ -584,7 +1005,7 @@ export class Api extends HttpClient {
|
|
|
584
1005
|
* @summary Get Consumer Connect association status for all borrowers on a loan
|
|
585
1006
|
* @request GET:/api/loans/{loanId}/consumer-connect/status
|
|
586
1007
|
* @secure
|
|
587
|
-
* @response `200` `(ConsumerConnectStatus)[]`
|
|
1008
|
+
* @response `200` `(ConsumerConnectStatus)[]` OK
|
|
588
1009
|
*/
|
|
589
1010
|
getConsumerConnectStatus: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/consumer-connect/status`, method: "GET", secure: true, format: "json" }, params)),
|
|
590
1011
|
/**
|
|
@@ -595,7 +1016,7 @@ export class Api extends HttpClient {
|
|
|
595
1016
|
* @summary Manually retry Consumer Connect association for failed borrowers on a loan. Returns per-borrower results; check individual Success fields for partial failures.
|
|
596
1017
|
* @request POST:/api/loans/{loanId}/consumer-connect/retry
|
|
597
1018
|
* @secure
|
|
598
|
-
* @response `200` `(ConsumerConnectRetry)[]`
|
|
1019
|
+
* @response `200` `(ConsumerConnectRetry)[]` OK
|
|
599
1020
|
*/
|
|
600
1021
|
retryConsumerConnectAssociation: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/consumer-connect/retry`, method: "POST", secure: true, format: "json" }, params)),
|
|
601
1022
|
/**
|
|
@@ -606,7 +1027,7 @@ export class Api extends HttpClient {
|
|
|
606
1027
|
* @summary Get All
|
|
607
1028
|
* @request GET:/api/corporates
|
|
608
1029
|
* @secure
|
|
609
|
-
* @response `200` `CorporatePaginated`
|
|
1030
|
+
* @response `200` `CorporatePaginated` OK
|
|
610
1031
|
*/
|
|
611
1032
|
getCorporates: (query, params = {}) => this.request(Object.assign({ path: `/api/corporates`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
612
1033
|
/**
|
|
@@ -617,8 +1038,8 @@ export class Api extends HttpClient {
|
|
|
617
1038
|
* @summary Create
|
|
618
1039
|
* @request POST:/api/corporates
|
|
619
1040
|
* @secure
|
|
620
|
-
* @response `200` `Corporate`
|
|
621
|
-
* @response `422` `UnprocessableEntity`
|
|
1041
|
+
* @response `200` `Corporate` OK
|
|
1042
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
622
1043
|
*/
|
|
623
1044
|
createCorporate: (data, params = {}) => this.request(Object.assign({ path: `/api/corporates`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
624
1045
|
/**
|
|
@@ -629,7 +1050,7 @@ export class Api extends HttpClient {
|
|
|
629
1050
|
* @summary Search
|
|
630
1051
|
* @request POST:/api/corporates/search
|
|
631
1052
|
* @secure
|
|
632
|
-
* @response `200` `CorporatePaginated`
|
|
1053
|
+
* @response `200` `CorporatePaginated` OK
|
|
633
1054
|
*/
|
|
634
1055
|
searchCorporate: (data, query, params = {}) => this.request(Object.assign({ path: `/api/corporates/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
635
1056
|
/**
|
|
@@ -640,7 +1061,7 @@ export class Api extends HttpClient {
|
|
|
640
1061
|
* @summary Get by ID
|
|
641
1062
|
* @request GET:/api/corporates/{id}
|
|
642
1063
|
* @secure
|
|
643
|
-
* @response `200` `Corporate`
|
|
1064
|
+
* @response `200` `Corporate` OK
|
|
644
1065
|
*/
|
|
645
1066
|
getCorporate: (id, params = {}) => this.request(Object.assign({ path: `/api/corporates/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
646
1067
|
/**
|
|
@@ -651,8 +1072,8 @@ export class Api extends HttpClient {
|
|
|
651
1072
|
* @summary Replace
|
|
652
1073
|
* @request PUT:/api/corporates/{id}
|
|
653
1074
|
* @secure
|
|
654
|
-
* @response `200` `Corporate`
|
|
655
|
-
* @response `422` `UnprocessableEntity`
|
|
1075
|
+
* @response `200` `Corporate` OK
|
|
1076
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
656
1077
|
*/
|
|
657
1078
|
replaceCorporate: (id, data, params = {}) => this.request(Object.assign({ path: `/api/corporates/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
658
1079
|
/**
|
|
@@ -685,8 +1106,8 @@ export class Api extends HttpClient {
|
|
|
685
1106
|
* @summary Create Site Configuration
|
|
686
1107
|
* @request POST:/api/corporates/{corporateId}/site-configurations
|
|
687
1108
|
* @secure
|
|
688
|
-
* @response `200` `SiteConfiguration`
|
|
689
|
-
* @response `422` `UnprocessableEntity`
|
|
1109
|
+
* @response `200` `SiteConfiguration` OK
|
|
1110
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
690
1111
|
*/
|
|
691
1112
|
createCorporateSiteConfiguration: (corporateId, data, params = {}) => this.request(Object.assign({ path: `/api/corporates/${corporateId}/site-configurations`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
692
1113
|
/**
|
|
@@ -697,7 +1118,7 @@ export class Api extends HttpClient {
|
|
|
697
1118
|
* @summary Get Site Configuration
|
|
698
1119
|
* @request GET:/api/corporates/{corporateId}/site-configurations/{siteConfigurationId}
|
|
699
1120
|
* @secure
|
|
700
|
-
* @response `200` `SiteConfigurationWithInherited`
|
|
1121
|
+
* @response `200` `SiteConfigurationWithInherited` OK
|
|
701
1122
|
*/
|
|
702
1123
|
getCorporateSiteConfiguration: (corporateId, siteConfigurationId, params = {}) => this.request(Object.assign({ path: `/api/corporates/${corporateId}/site-configurations/${siteConfigurationId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
703
1124
|
/**
|
|
@@ -708,8 +1129,8 @@ export class Api extends HttpClient {
|
|
|
708
1129
|
* @summary Replace Site Configuration
|
|
709
1130
|
* @request PUT:/api/corporates/{corporateId}/site-configurations/{siteConfigurationId}
|
|
710
1131
|
* @secure
|
|
711
|
-
* @response `200` `SiteConfiguration`
|
|
712
|
-
* @response `422` `UnprocessableEntity`
|
|
1132
|
+
* @response `200` `SiteConfiguration` OK
|
|
1133
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
713
1134
|
*/
|
|
714
1135
|
replaceCorporateSiteConfiguration: (corporateId, siteConfigurationId, data, query, params = {}) => this.request(Object.assign({ path: `/api/corporates/${corporateId}/site-configurations/${siteConfigurationId}`, method: "PUT", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
715
1136
|
/**
|
|
@@ -720,7 +1141,7 @@ export class Api extends HttpClient {
|
|
|
720
1141
|
* @summary Get Branches
|
|
721
1142
|
* @request GET:/api/corporates/{id}/branches
|
|
722
1143
|
* @secure
|
|
723
|
-
* @response `200` `(BranchReduced)[]`
|
|
1144
|
+
* @response `200` `(BranchReduced)[]` OK
|
|
724
1145
|
*/
|
|
725
1146
|
getBranchesByCorporate: (id, params = {}) => this.request(Object.assign({ path: `/api/corporates/${id}/branches`, method: "GET", secure: true, format: "json" }, params)),
|
|
726
1147
|
/**
|
|
@@ -731,7 +1152,7 @@ export class Api extends HttpClient {
|
|
|
731
1152
|
* @summary Get Loan Officers
|
|
732
1153
|
* @request GET:/api/corporates/{id}/loan-officers
|
|
733
1154
|
* @secure
|
|
734
|
-
* @response `200` `(LoanOfficerPublic)[]`
|
|
1155
|
+
* @response `200` `(LoanOfficerPublic)[]` OK
|
|
735
1156
|
*/
|
|
736
1157
|
getLoanOfficersByCorporate: (id, params = {}) => this.request(Object.assign({ path: `/api/corporates/${id}/loan-officers`, method: "GET", secure: true, format: "json" }, params)),
|
|
737
1158
|
/**
|
|
@@ -742,7 +1163,7 @@ export class Api extends HttpClient {
|
|
|
742
1163
|
* @summary Get all custom field definitions by entity type
|
|
743
1164
|
* @request GET:/api/custom-field-definitions
|
|
744
1165
|
* @secure
|
|
745
|
-
* @response `200` `(CustomFieldDefinition)[]`
|
|
1166
|
+
* @response `200` `(CustomFieldDefinition)[]` OK
|
|
746
1167
|
*/
|
|
747
1168
|
getCustomFieldDefinitions: (query, params = {}) => this.request(Object.assign({ path: `/api/custom-field-definitions`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
748
1169
|
/**
|
|
@@ -755,7 +1176,7 @@ export class Api extends HttpClient {
|
|
|
755
1176
|
* @secure
|
|
756
1177
|
* @response `201` `CustomFieldDefinition` Created
|
|
757
1178
|
* @response `409` `ProblemDetails` Conflict
|
|
758
|
-
* @response `422` `ProblemDetails`
|
|
1179
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
759
1180
|
*/
|
|
760
1181
|
createCustomFieldDefinition: (data, params = {}) => this.request(Object.assign({ path: `/api/custom-field-definitions`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
761
1182
|
/**
|
|
@@ -766,7 +1187,7 @@ export class Api extends HttpClient {
|
|
|
766
1187
|
* @summary Get a custom field definition by ID
|
|
767
1188
|
* @request GET:/api/custom-field-definitions/{id}
|
|
768
1189
|
* @secure
|
|
769
|
-
* @response `200` `CustomFieldDefinition`
|
|
1190
|
+
* @response `200` `CustomFieldDefinition` OK
|
|
770
1191
|
* @response `404` `ProblemDetails` Not Found
|
|
771
1192
|
*/
|
|
772
1193
|
getCustomFieldDefinitionById: (id, params = {}) => this.request(Object.assign({ path: `/api/custom-field-definitions/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -778,11 +1199,11 @@ export class Api extends HttpClient {
|
|
|
778
1199
|
* @summary Update a custom field definition
|
|
779
1200
|
* @request PUT:/api/custom-field-definitions/{id}
|
|
780
1201
|
* @secure
|
|
781
|
-
* @response `200` `CustomFieldDefinition`
|
|
1202
|
+
* @response `200` `CustomFieldDefinition` OK
|
|
782
1203
|
* @response `400` `ProblemDetails` Bad Request
|
|
783
1204
|
* @response `404` `ProblemDetails` Not Found
|
|
784
1205
|
* @response `409` `ProblemDetails` Conflict
|
|
785
|
-
* @response `422` `ProblemDetails`
|
|
1206
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
786
1207
|
*/
|
|
787
1208
|
updateCustomFieldDefinition: (id, data, params = {}) => this.request(Object.assign({ path: `/api/custom-field-definitions/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
788
1209
|
/**
|
|
@@ -830,7 +1251,7 @@ export class Api extends HttpClient {
|
|
|
830
1251
|
* @summary Get All
|
|
831
1252
|
* @request GET:/api/devices
|
|
832
1253
|
* @secure
|
|
833
|
-
* @response `200` `DevicePaginated`
|
|
1254
|
+
* @response `200` `DevicePaginated` OK
|
|
834
1255
|
*/
|
|
835
1256
|
getDevices: (query, params = {}) => this.request(Object.assign({ path: `/api/devices`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
836
1257
|
/**
|
|
@@ -841,7 +1262,7 @@ export class Api extends HttpClient {
|
|
|
841
1262
|
* @summary Get by ID
|
|
842
1263
|
* @request GET:/api/devices/{id}
|
|
843
1264
|
* @secure
|
|
844
|
-
* @response `200` `Device`
|
|
1265
|
+
* @response `200` `Device` OK
|
|
845
1266
|
*/
|
|
846
1267
|
getDevice: (id, params = {}) => this.request(Object.assign({ path: `/api/devices/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
847
1268
|
/**
|
|
@@ -852,7 +1273,7 @@ export class Api extends HttpClient {
|
|
|
852
1273
|
* @summary Update
|
|
853
1274
|
* @request PUT:/api/devices/{id}
|
|
854
1275
|
* @secure
|
|
855
|
-
* @response `200` `Device`
|
|
1276
|
+
* @response `200` `Device` OK
|
|
856
1277
|
*/
|
|
857
1278
|
updateDevice: (id, data, params = {}) => this.request(Object.assign({ path: `/api/devices/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
858
1279
|
/**
|
|
@@ -863,7 +1284,7 @@ export class Api extends HttpClient {
|
|
|
863
1284
|
* @summary Get by Serial Number
|
|
864
1285
|
* @request GET:/api/devices/{sn}/profile
|
|
865
1286
|
* @secure
|
|
866
|
-
* @response `200` `DeviceMDM`
|
|
1287
|
+
* @response `200` `DeviceMDM` OK
|
|
867
1288
|
*/
|
|
868
1289
|
getDeviceBySerialNumber: (sn, params = {}) => this.request(Object.assign({ path: `/api/devices/${sn}/profile`, method: "GET", secure: true, format: "json" }, params)),
|
|
869
1290
|
/**
|
|
@@ -874,7 +1295,7 @@ export class Api extends HttpClient {
|
|
|
874
1295
|
* @summary Create Action by Serial Number
|
|
875
1296
|
* @request POST:/api/devices/{sn}/actions/{actionName}
|
|
876
1297
|
* @secure
|
|
877
|
-
* @response `200` `Action`
|
|
1298
|
+
* @response `200` `Action` OK
|
|
878
1299
|
*/
|
|
879
1300
|
createDeviceActionBySerialNumber: (sn, actionName, params = {}) => this.request(Object.assign({ path: `/api/devices/${sn}/actions/${actionName}`, method: "POST", secure: true, format: "json" }, params)),
|
|
880
1301
|
/**
|
|
@@ -885,7 +1306,7 @@ export class Api extends HttpClient {
|
|
|
885
1306
|
* @summary Get All
|
|
886
1307
|
* @request GET:/api/document-buckets
|
|
887
1308
|
* @secure
|
|
888
|
-
* @response `200` `(string)[]`
|
|
1309
|
+
* @response `200` `(string)[]` OK
|
|
889
1310
|
*/
|
|
890
1311
|
getDocumentBuckets: (query, params = {}) => this.request(Object.assign({ path: `/api/document-buckets`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
891
1312
|
/**
|
|
@@ -896,7 +1317,7 @@ export class Api extends HttpClient {
|
|
|
896
1317
|
* @summary Get All
|
|
897
1318
|
* @request GET:/api/document-templates
|
|
898
1319
|
* @secure
|
|
899
|
-
* @response `200` `(DocumentTemplateBase)[]`
|
|
1320
|
+
* @response `200` `(DocumentTemplateBase)[]` OK
|
|
900
1321
|
*/
|
|
901
1322
|
getDocumentTemplates: (query, params = {}) => this.request(Object.assign({ path: `/api/document-templates`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
902
1323
|
/**
|
|
@@ -909,7 +1330,7 @@ export class Api extends HttpClient {
|
|
|
909
1330
|
* @secure
|
|
910
1331
|
* @response `201` `DocumentTemplateBase` Created
|
|
911
1332
|
* @response `404` `ProblemDetails` Not Found
|
|
912
|
-
* @response `422` `UnprocessableEntity`
|
|
1333
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
913
1334
|
*/
|
|
914
1335
|
createDocumentTemplate: (data, params = {}) => this.request(Object.assign({ path: `/api/document-templates`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
915
1336
|
/**
|
|
@@ -920,7 +1341,7 @@ export class Api extends HttpClient {
|
|
|
920
1341
|
* @summary Get Custom
|
|
921
1342
|
* @request GET:/api/document-templates/{type}
|
|
922
1343
|
* @secure
|
|
923
|
-
* @response `200` `(DocumentTemplateBase)[]`
|
|
1344
|
+
* @response `200` `(DocumentTemplateBase)[]` OK
|
|
924
1345
|
*/
|
|
925
1346
|
getCustomDocumentTemplates: (type, query, params = {}) => this.request(Object.assign({ path: `/api/document-templates/${type}`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
926
1347
|
/**
|
|
@@ -931,7 +1352,7 @@ export class Api extends HttpClient {
|
|
|
931
1352
|
* @summary Get By ID
|
|
932
1353
|
* @request GET:/api/document-templates/{id}
|
|
933
1354
|
* @secure
|
|
934
|
-
* @response `200` `DocumentTemplate`
|
|
1355
|
+
* @response `200` `DocumentTemplate` OK
|
|
935
1356
|
* @response `404` `ProblemDetails` Not Found
|
|
936
1357
|
*/
|
|
937
1358
|
getDocumentTemplate: (id, params = {}) => this.request(Object.assign({ path: `/api/document-templates/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -943,10 +1364,10 @@ export class Api extends HttpClient {
|
|
|
943
1364
|
* @summary Replace
|
|
944
1365
|
* @request PUT:/api/document-templates/{id}
|
|
945
1366
|
* @secure
|
|
946
|
-
* @response `200` `DocumentTemplateBase`
|
|
1367
|
+
* @response `200` `DocumentTemplateBase` OK
|
|
947
1368
|
* @response `401` `ProblemDetails` Unauthorized
|
|
948
1369
|
* @response `404` `ProblemDetails` Not Found
|
|
949
|
-
* @response `422` `UnprocessableEntity`
|
|
1370
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
950
1371
|
*/
|
|
951
1372
|
replaceDocumentTemplate: (id, data, params = {}) => this.request(Object.assign({ path: `/api/document-templates/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
952
1373
|
/**
|
|
@@ -983,7 +1404,7 @@ export class Api extends HttpClient {
|
|
|
983
1404
|
* @summary Get All
|
|
984
1405
|
* @request GET:/api/document-templates/{documentId}/versions
|
|
985
1406
|
* @secure
|
|
986
|
-
* @response `200` `(DocumentTemplateVersion)[]`
|
|
1407
|
+
* @response `200` `(DocumentTemplateVersion)[]` OK
|
|
987
1408
|
*/
|
|
988
1409
|
getDocumentTemplateVersions: (documentId, params = {}) => this.request(Object.assign({ path: `/api/document-templates/${documentId}/versions`, method: "GET", secure: true, format: "json" }, params)),
|
|
989
1410
|
/**
|
|
@@ -994,7 +1415,7 @@ export class Api extends HttpClient {
|
|
|
994
1415
|
* @summary Create
|
|
995
1416
|
* @request POST:/api/document-templates/{documentId}/versions
|
|
996
1417
|
* @secure
|
|
997
|
-
* @response `200` `DocumentTemplateVersion`
|
|
1418
|
+
* @response `200` `DocumentTemplateVersion` OK
|
|
998
1419
|
*/
|
|
999
1420
|
createDocumentTemplateVersion: (documentId, data, params = {}) => this.request(Object.assign({ path: `/api/document-templates/${documentId}/versions`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1000
1421
|
/**
|
|
@@ -1005,7 +1426,7 @@ export class Api extends HttpClient {
|
|
|
1005
1426
|
* @summary Get by ID
|
|
1006
1427
|
* @request GET:/api/document-templates/{documentId}/versions/{id}
|
|
1007
1428
|
* @secure
|
|
1008
|
-
* @response `200` `DocumentTemplateVersion`
|
|
1429
|
+
* @response `200` `DocumentTemplateVersion` OK
|
|
1009
1430
|
*/
|
|
1010
1431
|
getDocumentTemplateVersion: (documentId, id, params = {}) => this.request(Object.assign({ path: `/api/document-templates/${documentId}/versions/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
1011
1432
|
/**
|
|
@@ -1016,7 +1437,7 @@ export class Api extends HttpClient {
|
|
|
1016
1437
|
* @summary Replace
|
|
1017
1438
|
* @request PUT:/api/document-templates/{documentId}/versions/{id}
|
|
1018
1439
|
* @secure
|
|
1019
|
-
* @response `200` `DocumentTemplateVersion`
|
|
1440
|
+
* @response `200` `DocumentTemplateVersion` OK
|
|
1020
1441
|
*/
|
|
1021
1442
|
replaceDocumentTemplateVersion: (documentId, id, data, params = {}) => this.request(Object.assign({ path: `/api/document-templates/${documentId}/versions/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1022
1443
|
/**
|
|
@@ -1027,7 +1448,7 @@ export class Api extends HttpClient {
|
|
|
1027
1448
|
* @summary Delete
|
|
1028
1449
|
* @request DELETE:/api/document-templates/{documentId}/versions/{id}
|
|
1029
1450
|
* @secure
|
|
1030
|
-
* @response `200` `DocumentTemplateVersion`
|
|
1451
|
+
* @response `200` `DocumentTemplateVersion` OK
|
|
1031
1452
|
*/
|
|
1032
1453
|
deleteDocumentTemplateVersion: (documentId, id, params = {}) => this.request(Object.assign({ path: `/api/document-templates/${documentId}/versions/${id}`, method: "DELETE", secure: true, format: "json" }, params)),
|
|
1033
1454
|
/**
|
|
@@ -1035,9 +1456,10 @@ export class Api extends HttpClient {
|
|
|
1035
1456
|
*
|
|
1036
1457
|
* @tags Encompass Custom Field Mappings
|
|
1037
1458
|
* @name GetEncompassCustomFieldMapping
|
|
1459
|
+
* @summary Get Encompass field mapping for a custom field definition
|
|
1038
1460
|
* @request GET:/api/los/encompass/custom-field-mappings/{definitionId}
|
|
1039
1461
|
* @secure
|
|
1040
|
-
* @response `200` `EncompassCustomFieldMapping`
|
|
1462
|
+
* @response `200` `EncompassCustomFieldMapping` OK
|
|
1041
1463
|
* @response `404` `void` Not Found
|
|
1042
1464
|
*/
|
|
1043
1465
|
getEncompassCustomFieldMapping: (definitionId, params = {}) => this.request(Object.assign({ path: `/api/los/encompass/custom-field-mappings/${definitionId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -1046,13 +1468,14 @@ export class Api extends HttpClient {
|
|
|
1046
1468
|
*
|
|
1047
1469
|
* @tags Encompass Custom Field Mappings
|
|
1048
1470
|
* @name AddEncompassCustomFieldMapping
|
|
1471
|
+
* @summary Add an Encompass field mapping to a custom field definition
|
|
1049
1472
|
* @request POST:/api/los/encompass/custom-field-mappings/{definitionId}
|
|
1050
1473
|
* @secure
|
|
1051
1474
|
* @response `201` `EncompassCustomFieldMapping` Created
|
|
1052
1475
|
* @response `400` `void` Bad Request
|
|
1053
1476
|
* @response `404` `void` Not Found
|
|
1054
1477
|
* @response `409` `void` Conflict
|
|
1055
|
-
* @response `422` `ProblemDetails`
|
|
1478
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
1056
1479
|
*/
|
|
1057
1480
|
addEncompassCustomFieldMapping: (definitionId, data, params = {}) => this.request(Object.assign({ path: `/api/los/encompass/custom-field-mappings/${definitionId}`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1058
1481
|
/**
|
|
@@ -1060,6 +1483,7 @@ export class Api extends HttpClient {
|
|
|
1060
1483
|
*
|
|
1061
1484
|
* @tags Encompass Custom Field Mappings
|
|
1062
1485
|
* @name DeleteEncompassCustomFieldMapping
|
|
1486
|
+
* @summary Delete the Encompass field mapping (only if no values exist)
|
|
1063
1487
|
* @request DELETE:/api/los/encompass/custom-field-mappings/{definitionId}
|
|
1064
1488
|
* @secure
|
|
1065
1489
|
* @response `204` `void` No Content
|
|
@@ -1072,6 +1496,7 @@ export class Api extends HttpClient {
|
|
|
1072
1496
|
*
|
|
1073
1497
|
* @tags Encompass Custom Field Mappings
|
|
1074
1498
|
* @name DisableEncompassCustomFieldMapping
|
|
1499
|
+
* @summary Disable the Encompass field mapping (stops sync)
|
|
1075
1500
|
* @request POST:/api/los/encompass/custom-field-mappings/{definitionId}/disable
|
|
1076
1501
|
* @secure
|
|
1077
1502
|
* @response `204` `void` No Content
|
|
@@ -1083,6 +1508,7 @@ export class Api extends HttpClient {
|
|
|
1083
1508
|
*
|
|
1084
1509
|
* @tags Encompass Custom Field Mappings
|
|
1085
1510
|
* @name EnableEncompassCustomFieldMapping
|
|
1511
|
+
* @summary Re-enable the Encompass field mapping (resumes sync)
|
|
1086
1512
|
* @request POST:/api/los/encompass/custom-field-mappings/{definitionId}/enable
|
|
1087
1513
|
* @secure
|
|
1088
1514
|
* @response `204` `void` No Content
|
|
@@ -1094,10 +1520,11 @@ export class Api extends HttpClient {
|
|
|
1094
1520
|
*
|
|
1095
1521
|
* @tags Encompass Custom Fields
|
|
1096
1522
|
* @name GetEncompassFields
|
|
1523
|
+
* @summary Fetch available Encompass custom fields with type metadata
|
|
1097
1524
|
* @request GET:/api/los/encompass/custom-fields
|
|
1098
1525
|
* @secure
|
|
1099
|
-
* @response `200` `(EncompassFieldListItem)[]`
|
|
1100
|
-
* @response `502` `ProblemDetails`
|
|
1526
|
+
* @response `200` `(EncompassFieldListItem)[]` OK
|
|
1527
|
+
* @response `502` `ProblemDetails` Bad Gateway
|
|
1101
1528
|
*/
|
|
1102
1529
|
getEncompassFields: (params = {}) => this.request(Object.assign({ path: `/api/los/encompass/custom-fields`, method: "GET", secure: true, format: "json" }, params)),
|
|
1103
1530
|
/**
|
|
@@ -1107,10 +1534,10 @@ export class Api extends HttpClient {
|
|
|
1107
1534
|
* @name GetUserPackages
|
|
1108
1535
|
* @request GET:/api/los/encompass/eclose/packages
|
|
1109
1536
|
* @secure
|
|
1110
|
-
* @response `200` `EncompassPackageList`
|
|
1537
|
+
* @response `200` `EncompassPackageList` OK
|
|
1111
1538
|
* @response `400` `EncompassError` Bad Request
|
|
1112
1539
|
* @response `401` `EncompassError` Unauthorized
|
|
1113
|
-
* @response `500` `EncompassError` Server Error
|
|
1540
|
+
* @response `500` `EncompassError` Internal Server Error
|
|
1114
1541
|
*/
|
|
1115
1542
|
getUserPackages: (query, params = {}) => this.request(Object.assign({ path: `/api/los/encompass/eclose/packages`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
1116
1543
|
/**
|
|
@@ -1120,9 +1547,9 @@ export class Api extends HttpClient {
|
|
|
1120
1547
|
* @name GetUserRecipients
|
|
1121
1548
|
* @request GET:/api/los/encompass/eclose/recipients
|
|
1122
1549
|
* @secure
|
|
1123
|
-
* @response `200` `(EncompassRecipientItem)[]`
|
|
1550
|
+
* @response `200` `(EncompassRecipientItem)[]` OK
|
|
1124
1551
|
* @response `401` `EncompassError` Unauthorized
|
|
1125
|
-
* @response `500` `EncompassError` Server Error
|
|
1552
|
+
* @response `500` `EncompassError` Internal Server Error
|
|
1126
1553
|
*/
|
|
1127
1554
|
getUserRecipients: (params = {}) => this.request(Object.assign({ path: `/api/los/encompass/eclose/recipients`, method: "GET", secure: true, format: "json" }, params)),
|
|
1128
1555
|
/**
|
|
@@ -1132,12 +1559,12 @@ export class Api extends HttpClient {
|
|
|
1132
1559
|
* @name CreateEncompassSession
|
|
1133
1560
|
* @request POST:/api/los/encompass/eclose/sessions
|
|
1134
1561
|
* @secure
|
|
1135
|
-
* @response `200` `CreateSession`
|
|
1562
|
+
* @response `200` `CreateSession` OK
|
|
1136
1563
|
* @response `400` `EncompassError` Bad Request
|
|
1137
1564
|
* @response `401` `EncompassError` Unauthorized
|
|
1138
1565
|
* @response `403` `EncompassError` Forbidden
|
|
1139
1566
|
* @response `404` `EncompassError` Not Found
|
|
1140
|
-
* @response `500` `EncompassError` Server Error
|
|
1567
|
+
* @response `500` `EncompassError` Internal Server Error
|
|
1141
1568
|
*/
|
|
1142
1569
|
createEncompassSession: (data, params = {}) => this.request(Object.assign({ path: `/api/los/encompass/eclose/sessions`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1143
1570
|
/**
|
|
@@ -1148,7 +1575,7 @@ export class Api extends HttpClient {
|
|
|
1148
1575
|
* @summary Get All
|
|
1149
1576
|
* @request GET:/api/files
|
|
1150
1577
|
* @secure
|
|
1151
|
-
* @response `200` `FilePaginated`
|
|
1578
|
+
* @response `200` `FilePaginated` OK
|
|
1152
1579
|
*/
|
|
1153
1580
|
getAllFiles: (query, params = {}) => this.request(Object.assign({ path: `/api/files`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
1154
1581
|
/**
|
|
@@ -1160,7 +1587,7 @@ export class Api extends HttpClient {
|
|
|
1160
1587
|
* @request POST:/api/files
|
|
1161
1588
|
* @secure
|
|
1162
1589
|
* @response `201` `File` Created
|
|
1163
|
-
* @response `422` `UnprocessableEntity`
|
|
1590
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1164
1591
|
*/
|
|
1165
1592
|
uploadFile: (data, params = {}) => this.request(Object.assign({ path: `/api/files`, method: "POST", body: data, secure: true, type: ContentType.FormData, format: "json" }, params)),
|
|
1166
1593
|
/**
|
|
@@ -1182,8 +1609,8 @@ export class Api extends HttpClient {
|
|
|
1182
1609
|
* @summary Replace
|
|
1183
1610
|
* @request PUT:/api/files/{id}
|
|
1184
1611
|
* @secure
|
|
1185
|
-
* @response `200` `string`
|
|
1186
|
-
* @response `422` `UnprocessableEntity`
|
|
1612
|
+
* @response `200` `string` OK
|
|
1613
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1187
1614
|
*/
|
|
1188
1615
|
replaceFile: (id, data, params = {}) => this.request(Object.assign({ path: `/api/files/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1189
1616
|
/**
|
|
@@ -1205,7 +1632,7 @@ export class Api extends HttpClient {
|
|
|
1205
1632
|
* @summary Search
|
|
1206
1633
|
* @request POST:/api/files/search
|
|
1207
1634
|
* @secure
|
|
1208
|
-
* @response `200` `FilePaginated`
|
|
1635
|
+
* @response `200` `FilePaginated` OK
|
|
1209
1636
|
*/
|
|
1210
1637
|
searchFiles: (data, query, params = {}) => this.request(Object.assign({ path: `/api/files/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1211
1638
|
/**
|
|
@@ -1216,7 +1643,7 @@ export class Api extends HttpClient {
|
|
|
1216
1643
|
* @summary Get All
|
|
1217
1644
|
* @request GET:/api/forms
|
|
1218
1645
|
* @secure
|
|
1219
|
-
* @response `200` `(AdminAccessGetForms)[]`
|
|
1646
|
+
* @response `200` `(AdminAccessGetForms)[]` OK
|
|
1220
1647
|
*/
|
|
1221
1648
|
getForms: (query, params = {}) => this.request(Object.assign({ path: `/api/forms`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
1222
1649
|
/**
|
|
@@ -1228,7 +1655,7 @@ export class Api extends HttpClient {
|
|
|
1228
1655
|
* @request POST:/api/forms
|
|
1229
1656
|
* @secure
|
|
1230
1657
|
* @response `201` `Form` Created
|
|
1231
|
-
* @response `422` `UnprocessableEntity`
|
|
1658
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1232
1659
|
*/
|
|
1233
1660
|
createForm: (data, params = {}) => this.request(Object.assign({ path: `/api/forms`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1234
1661
|
/**
|
|
@@ -1239,7 +1666,7 @@ export class Api extends HttpClient {
|
|
|
1239
1666
|
* @summary Get By ID
|
|
1240
1667
|
* @request GET:/api/forms/{id}
|
|
1241
1668
|
* @secure
|
|
1242
|
-
* @response `200` `Form`
|
|
1669
|
+
* @response `200` `Form` OK
|
|
1243
1670
|
*/
|
|
1244
1671
|
getForm: (id, params = {}) => this.request(Object.assign({ path: `/api/forms/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
1245
1672
|
/**
|
|
@@ -1250,8 +1677,8 @@ export class Api extends HttpClient {
|
|
|
1250
1677
|
* @summary Replace
|
|
1251
1678
|
* @request PUT:/api/forms/{id}
|
|
1252
1679
|
* @secure
|
|
1253
|
-
* @response `200` `Form`
|
|
1254
|
-
* @response `422` `UnprocessableEntity`
|
|
1680
|
+
* @response `200` `Form` OK
|
|
1681
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1255
1682
|
*/
|
|
1256
1683
|
replaceForm: (id, data, params = {}) => this.request(Object.assign({ path: `/api/forms/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1257
1684
|
/**
|
|
@@ -1273,7 +1700,7 @@ export class Api extends HttpClient {
|
|
|
1273
1700
|
* @summary Restore
|
|
1274
1701
|
* @request POST:/api/forms/{id}/restore
|
|
1275
1702
|
* @secure
|
|
1276
|
-
* @response `200` `Form`
|
|
1703
|
+
* @response `200` `Form` OK
|
|
1277
1704
|
*/
|
|
1278
1705
|
restoreForm: (id, params = {}) => this.request(Object.assign({ path: `/api/forms/${id}/restore`, method: "POST", secure: true, format: "json" }, params)),
|
|
1279
1706
|
/**
|
|
@@ -1284,7 +1711,7 @@ export class Api extends HttpClient {
|
|
|
1284
1711
|
* @summary Add
|
|
1285
1712
|
* @request POST:/api/form-submissions/{formSubmissionId}/files
|
|
1286
1713
|
* @secure
|
|
1287
|
-
* @response `200` `FormSubmissionFile`
|
|
1714
|
+
* @response `200` `FormSubmissionFile` OK
|
|
1288
1715
|
*/
|
|
1289
1716
|
addFormSubmissionFile: (formSubmissionId, data, params = {}) => this.request(Object.assign({ path: `/api/form-submissions/${formSubmissionId}/files`, method: "POST", body: data, secure: true, type: ContentType.FormData, format: "json" }, params)),
|
|
1290
1717
|
/**
|
|
@@ -1306,7 +1733,7 @@ export class Api extends HttpClient {
|
|
|
1306
1733
|
* @summary Download by Id
|
|
1307
1734
|
* @request GET:/api/form-submissions/{formSubmissionId}/files/{formSubmissionFileId}/download
|
|
1308
1735
|
* @secure
|
|
1309
|
-
* @response `200` `FileWithBytes`
|
|
1736
|
+
* @response `200` `FileWithBytes` OK
|
|
1310
1737
|
*/
|
|
1311
1738
|
downloadFormSubmissionFile: (formSubmissionFileId, formSubmissionId, query, params = {}) => this.request(Object.assign({ path: `/api/form-submissions/${formSubmissionId}/files/${formSubmissionFileId}/download`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
1312
1739
|
/**
|
|
@@ -1317,7 +1744,7 @@ export class Api extends HttpClient {
|
|
|
1317
1744
|
* @summary Get All
|
|
1318
1745
|
* @request GET:/api/form-submissions
|
|
1319
1746
|
* @secure
|
|
1320
|
-
* @response `200` `FormSubmissionPaginated`
|
|
1747
|
+
* @response `200` `FormSubmissionPaginated` OK
|
|
1321
1748
|
*/
|
|
1322
1749
|
getFormSubmissions: (query, params = {}) => this.request(Object.assign({ path: `/api/form-submissions`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
1323
1750
|
/**
|
|
@@ -1339,7 +1766,7 @@ export class Api extends HttpClient {
|
|
|
1339
1766
|
* @summary Get by ID
|
|
1340
1767
|
* @request GET:/api/form-submissions/{id}
|
|
1341
1768
|
* @secure
|
|
1342
|
-
* @response `200` `FormSubmission`
|
|
1769
|
+
* @response `200` `FormSubmission` OK
|
|
1343
1770
|
*/
|
|
1344
1771
|
getFormSubmission: (id, params = {}) => this.request(Object.assign({ path: `/api/form-submissions/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
1345
1772
|
/**
|
|
@@ -1350,7 +1777,7 @@ export class Api extends HttpClient {
|
|
|
1350
1777
|
* @summary Replace
|
|
1351
1778
|
* @request PUT:/api/form-submissions/{id}
|
|
1352
1779
|
* @secure
|
|
1353
|
-
* @response `200` `FormSubmission`
|
|
1780
|
+
* @response `200` `FormSubmission` OK
|
|
1354
1781
|
*/
|
|
1355
1782
|
replaceFormSubmission: (id, data, params = {}) => this.request(Object.assign({ path: `/api/form-submissions/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1356
1783
|
/**
|
|
@@ -1372,7 +1799,7 @@ export class Api extends HttpClient {
|
|
|
1372
1799
|
* @summary Search
|
|
1373
1800
|
* @request POST:/api/form-submissions/search
|
|
1374
1801
|
* @secure
|
|
1375
|
-
* @response `200` `FormSubmissionPaginated`
|
|
1802
|
+
* @response `200` `FormSubmissionPaginated` OK
|
|
1376
1803
|
*/
|
|
1377
1804
|
searchFormSubmissions: (data, query, params = {}) => this.request(Object.assign({ path: `/api/form-submissions/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1378
1805
|
/**
|
|
@@ -1383,7 +1810,7 @@ export class Api extends HttpClient {
|
|
|
1383
1810
|
* @summary Get All
|
|
1384
1811
|
* @request GET:/api/forms/{formId}/versions
|
|
1385
1812
|
* @secure
|
|
1386
|
-
* @response `200` `(FormVersion)[]`
|
|
1813
|
+
* @response `200` `(FormVersion)[]` OK
|
|
1387
1814
|
*/
|
|
1388
1815
|
getFormVersions: (formId, params = {}) => this.request(Object.assign({ path: `/api/forms/${formId}/versions`, method: "GET", secure: true, format: "json" }, params)),
|
|
1389
1816
|
/**
|
|
@@ -1394,7 +1821,7 @@ export class Api extends HttpClient {
|
|
|
1394
1821
|
* @summary Create
|
|
1395
1822
|
* @request POST:/api/forms/{formId}/versions
|
|
1396
1823
|
* @secure
|
|
1397
|
-
* @response `200` `FormVersion`
|
|
1824
|
+
* @response `200` `FormVersion` OK
|
|
1398
1825
|
*/
|
|
1399
1826
|
createFormVersion: (formId, data, params = {}) => this.request(Object.assign({ path: `/api/forms/${formId}/versions`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1400
1827
|
/**
|
|
@@ -1405,7 +1832,7 @@ export class Api extends HttpClient {
|
|
|
1405
1832
|
* @summary Get by ID
|
|
1406
1833
|
* @request GET:/api/forms/{formId}/versions/{id}
|
|
1407
1834
|
* @secure
|
|
1408
|
-
* @response `200` `FormVersion`
|
|
1835
|
+
* @response `200` `FormVersion` OK
|
|
1409
1836
|
*/
|
|
1410
1837
|
getFormVersion: (formId, id, params = {}) => this.request(Object.assign({ path: `/api/forms/${formId}/versions/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
1411
1838
|
/**
|
|
@@ -1416,7 +1843,7 @@ export class Api extends HttpClient {
|
|
|
1416
1843
|
* @summary Replace
|
|
1417
1844
|
* @request PUT:/api/forms/{formId}/versions/{id}
|
|
1418
1845
|
* @secure
|
|
1419
|
-
* @response `200` `FormVersion`
|
|
1846
|
+
* @response `200` `FormVersion` OK
|
|
1420
1847
|
*/
|
|
1421
1848
|
replaceFormVersion: (formId, id, data, params = {}) => this.request(Object.assign({ path: `/api/forms/${formId}/versions/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1422
1849
|
/**
|
|
@@ -1427,7 +1854,7 @@ export class Api extends HttpClient {
|
|
|
1427
1854
|
* @summary Delete
|
|
1428
1855
|
* @request DELETE:/api/forms/{formId}/versions/{id}
|
|
1429
1856
|
* @secure
|
|
1430
|
-
* @response `200` `FormVersion`
|
|
1857
|
+
* @response `200` `FormVersion` OK
|
|
1431
1858
|
*/
|
|
1432
1859
|
deleteFormVersion: (formId, id, params = {}) => this.request(Object.assign({ path: `/api/forms/${formId}/versions/${id}`, method: "DELETE", secure: true, format: "json" }, params)),
|
|
1433
1860
|
/**
|
|
@@ -1438,7 +1865,7 @@ export class Api extends HttpClient {
|
|
|
1438
1865
|
* @summary Get Integration Settings
|
|
1439
1866
|
* @request GET:/api/integrations/settings
|
|
1440
1867
|
* @secure
|
|
1441
|
-
* @response `200` `IntegrationSettings`
|
|
1868
|
+
* @response `200` `IntegrationSettings` OK
|
|
1442
1869
|
*/
|
|
1443
1870
|
getIntegrationSettings: (params = {}) => this.request(Object.assign({ path: `/api/integrations/settings`, method: "GET", secure: true, format: "json" }, params)),
|
|
1444
1871
|
/**
|
|
@@ -1449,7 +1876,7 @@ export class Api extends HttpClient {
|
|
|
1449
1876
|
* @summary Get By ID
|
|
1450
1877
|
* @request GET:/api/los/loan/application/{loanID}
|
|
1451
1878
|
* @secure
|
|
1452
|
-
* @response `200` `Record<string,any>`
|
|
1879
|
+
* @response `200` `Record<string,any>` OK
|
|
1453
1880
|
*/
|
|
1454
1881
|
getLoanData: (loanId, params = {}) => this.request(Object.assign({ path: `/api/los/loan/application/${loanId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
1455
1882
|
/**
|
|
@@ -1461,8 +1888,8 @@ export class Api extends HttpClient {
|
|
|
1461
1888
|
* @request PATCH:/api/los/loan/application/{loanID}
|
|
1462
1889
|
* @deprecated
|
|
1463
1890
|
* @secure
|
|
1464
|
-
* @response `200` `string`
|
|
1465
|
-
* @response `422` `UnprocessableEntity`
|
|
1891
|
+
* @response `200` `string` OK
|
|
1892
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1466
1893
|
*/
|
|
1467
1894
|
updateLoanConsentAndCustomFieldsObsolete: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/los/loan/application/${loanId}`, method: "PATCH", body: data, secure: true, type: ContentType.JsonPatch, format: "json" }, params)),
|
|
1468
1895
|
/**
|
|
@@ -1473,7 +1900,7 @@ export class Api extends HttpClient {
|
|
|
1473
1900
|
* @summary Get Report
|
|
1474
1901
|
* @request POST:/api/los/loan/reports
|
|
1475
1902
|
* @secure
|
|
1476
|
-
* @response `200` `GetReport`
|
|
1903
|
+
* @response `200` `GetReport` OK
|
|
1477
1904
|
*/
|
|
1478
1905
|
getLoansReport: (data, params = {}) => this.request(Object.assign({ path: `/api/los/loan/reports`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1479
1906
|
/**
|
|
@@ -1485,9 +1912,9 @@ export class Api extends HttpClient {
|
|
|
1485
1912
|
* @request POST:/api/los/loan/application
|
|
1486
1913
|
* @deprecated
|
|
1487
1914
|
* @secure
|
|
1488
|
-
* @response `200` `string`
|
|
1489
|
-
* @response `422` `UnprocessableEntity`
|
|
1490
|
-
* @response `423` `UnprocessableEntity`
|
|
1915
|
+
* @response `200` `string` OK
|
|
1916
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1917
|
+
* @response `423` `UnprocessableEntity` Locked
|
|
1491
1918
|
*/
|
|
1492
1919
|
createLoan: (data, query, params = {}) => this.request(Object.assign({ path: `/api/los/loan/application`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1493
1920
|
/**
|
|
@@ -1498,9 +1925,9 @@ export class Api extends HttpClient {
|
|
|
1498
1925
|
* @summary Create Loan Returning Internal Loan ID
|
|
1499
1926
|
* @request POST:/api/los/loan/application/internal
|
|
1500
1927
|
* @secure
|
|
1501
|
-
* @response `200` `string`
|
|
1502
|
-
* @response `422` `UnprocessableEntity`
|
|
1503
|
-
* @response `423` `UnprocessableEntity`
|
|
1928
|
+
* @response `200` `string` OK
|
|
1929
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1930
|
+
* @response `423` `UnprocessableEntity` Locked
|
|
1504
1931
|
*/
|
|
1505
1932
|
createLoanInternal: (data, query, params = {}) => this.request(Object.assign({ path: `/api/los/loan/application/internal`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1506
1933
|
/**
|
|
@@ -1511,8 +1938,8 @@ export class Api extends HttpClient {
|
|
|
1511
1938
|
* @summary Update Loan Custom Fields
|
|
1512
1939
|
* @request PATCH:/api/los/loan/application/{loanID}/custom-fields
|
|
1513
1940
|
* @secure
|
|
1514
|
-
* @response `200` `string`
|
|
1515
|
-
* @response `422` `UnprocessableEntity`
|
|
1941
|
+
* @response `200` `string` OK
|
|
1942
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1516
1943
|
*/
|
|
1517
1944
|
updateLoanCustomFields: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/los/loan/application/${loanId}/custom-fields`, method: "PATCH", body: data, secure: true, type: ContentType.JsonPatch, format: "json" }, params)),
|
|
1518
1945
|
/**
|
|
@@ -1523,9 +1950,9 @@ export class Api extends HttpClient {
|
|
|
1523
1950
|
* @summary Update Loan Consent and Custom Fields
|
|
1524
1951
|
* @request PATCH:/api/los/loan/application/{loanID}/consent
|
|
1525
1952
|
* @secure
|
|
1526
|
-
* @response `200` `string`
|
|
1953
|
+
* @response `200` `string` OK
|
|
1527
1954
|
* @response `202` `string` Accepted
|
|
1528
|
-
* @response `422` `UnprocessableEntity`
|
|
1955
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1529
1956
|
*/
|
|
1530
1957
|
updateLoanConsent: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/los/loan/application/${loanId}/consent`, method: "PATCH", body: data, secure: true, type: ContentType.JsonPatch, format: "json" }, params)),
|
|
1531
1958
|
/**
|
|
@@ -1536,7 +1963,7 @@ export class Api extends HttpClient {
|
|
|
1536
1963
|
* @summary Get Documents
|
|
1537
1964
|
* @request GET:/api/los/loan/tasks/documents/{loanID}
|
|
1538
1965
|
* @secure
|
|
1539
|
-
* @response `200` `(DocumentData)[]`
|
|
1966
|
+
* @response `200` `(DocumentData)[]` OK
|
|
1540
1967
|
*/
|
|
1541
1968
|
getTaskDocumentsByLoan: (loanId, params = {}) => this.request(Object.assign({ path: `/api/los/loan/tasks/documents/${loanId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
1542
1969
|
/**
|
|
@@ -1547,7 +1974,7 @@ export class Api extends HttpClient {
|
|
|
1547
1974
|
* @summary Get Document Content
|
|
1548
1975
|
* @request GET:/api/los/loan/{loanID}/document/{documentId}/content
|
|
1549
1976
|
* @secure
|
|
1550
|
-
* @response `200` `void`
|
|
1977
|
+
* @response `200` `void` OK
|
|
1551
1978
|
*/
|
|
1552
1979
|
getLoanDocumentContent: (loanId, documentId, query, params = {}) => this.request(Object.assign({ path: `/api/los/loan/${loanId}/document/${documentId}/content`, method: "GET", query: query, secure: true }, params)),
|
|
1553
1980
|
/**
|
|
@@ -1569,7 +1996,7 @@ export class Api extends HttpClient {
|
|
|
1569
1996
|
* @summary Get Preliminary Conditions
|
|
1570
1997
|
* @request GET:/api/los/loan/{loanID}/conditions/preliminary
|
|
1571
1998
|
* @secure
|
|
1572
|
-
* @response `200` `(PreliminaryCondition)[]`
|
|
1999
|
+
* @response `200` `(PreliminaryCondition)[]` OK
|
|
1573
2000
|
*/
|
|
1574
2001
|
getPreliminaryConditionsForLoan: (loanId, params = {}) => this.request(Object.assign({ path: `/api/los/loan/${loanId}/conditions/preliminary`, method: "GET", secure: true, format: "json" }, params)),
|
|
1575
2002
|
/**
|
|
@@ -1580,7 +2007,7 @@ export class Api extends HttpClient {
|
|
|
1580
2007
|
* @summary Get Underwriting Conditions
|
|
1581
2008
|
* @request GET:/api/los/loan/{loanID}/conditions/underwriting
|
|
1582
2009
|
* @secure
|
|
1583
|
-
* @response `200` `(UnderwritingCondition)[]`
|
|
2010
|
+
* @response `200` `(UnderwritingCondition)[]` OK
|
|
1584
2011
|
*/
|
|
1585
2012
|
getUnderwritingConditionsForLoan: (loanId, params = {}) => this.request(Object.assign({ path: `/api/los/loan/${loanId}/conditions/underwriting`, method: "GET", secure: true, format: "json" }, params)),
|
|
1586
2013
|
/**
|
|
@@ -1591,7 +2018,7 @@ export class Api extends HttpClient {
|
|
|
1591
2018
|
* @summary Get Embedded Signing Link
|
|
1592
2019
|
* @request POST:/api/los/loan/embeddedsigning/{envelopeId}/{userName}/{email}
|
|
1593
2020
|
* @secure
|
|
1594
|
-
* @response `200` `string`
|
|
2021
|
+
* @response `200` `string` OK
|
|
1595
2022
|
*/
|
|
1596
2023
|
getLoanEmbeddedSigningLink: (envelopeId, userName, email, params = {}) => this.request(Object.assign({ path: `/api/los/loan/embeddedsigning/${envelopeId}/${userName}/${email}`, method: "POST", secure: true, format: "json" }, params)),
|
|
1597
2024
|
/**
|
|
@@ -1603,7 +2030,7 @@ export class Api extends HttpClient {
|
|
|
1603
2030
|
* @request POST:/api/los/loan/generatedocument
|
|
1604
2031
|
* @deprecated
|
|
1605
2032
|
* @secure
|
|
1606
|
-
* @response `200` `DocumentDataRequest`
|
|
2033
|
+
* @response `200` `DocumentDataRequest` OK
|
|
1607
2034
|
*/
|
|
1608
2035
|
createLegacyLoanDocument: (data, params = {}) => this.request(Object.assign({ path: `/api/los/loan/generatedocument`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1609
2036
|
/**
|
|
@@ -1614,10 +2041,10 @@ export class Api extends HttpClient {
|
|
|
1614
2041
|
* @summary Create Edit Draft for Loan
|
|
1615
2042
|
* @request PUT:/api/los/loan/{loanID}/edit
|
|
1616
2043
|
* @secure
|
|
1617
|
-
* @response `200` `Draft`
|
|
2044
|
+
* @response `200` `Draft` OK
|
|
1618
2045
|
* @response `400` `ProblemDetails` Bad Request
|
|
1619
2046
|
* @response `404` `ProblemDetails` Not Found
|
|
1620
|
-
* @response `423` `ProblemDetails`
|
|
2047
|
+
* @response `423` `ProblemDetails` Locked
|
|
1621
2048
|
*/
|
|
1622
2049
|
createEditDraftForLoan: (loanId, query, params = {}) => this.request(Object.assign({ path: `/api/los/loan/${loanId}/edit`, method: "PUT", query: query, secure: true, format: "json" }, params)),
|
|
1623
2050
|
/**
|
|
@@ -1628,7 +2055,7 @@ export class Api extends HttpClient {
|
|
|
1628
2055
|
* @summary Add
|
|
1629
2056
|
* @request POST:/api/listings/{listingId}/files
|
|
1630
2057
|
* @secure
|
|
1631
|
-
* @response `200` `ListingFile`
|
|
2058
|
+
* @response `200` `ListingFile` OK
|
|
1632
2059
|
*/
|
|
1633
2060
|
addListingFile: (listingId, data, params = {}) => this.request(Object.assign({ path: `/api/listings/${listingId}/files`, method: "POST", body: data, secure: true, type: ContentType.FormData, format: "json" }, params)),
|
|
1634
2061
|
/**
|
|
@@ -1639,7 +2066,7 @@ export class Api extends HttpClient {
|
|
|
1639
2066
|
* @summary Update
|
|
1640
2067
|
* @request PATCH:/api/listings/{listingId}/files
|
|
1641
2068
|
* @secure
|
|
1642
|
-
* @response `200` `ListingFile`
|
|
2069
|
+
* @response `200` `ListingFile` OK
|
|
1643
2070
|
*/
|
|
1644
2071
|
updateListingFiles: (listingId, data, params = {}) => this.request(Object.assign({ path: `/api/listings/${listingId}/files`, method: "PATCH", body: data, secure: true, type: ContentType.JsonPatch, format: "json" }, params)),
|
|
1645
2072
|
/**
|
|
@@ -1661,7 +2088,7 @@ export class Api extends HttpClient {
|
|
|
1661
2088
|
* @summary Add
|
|
1662
2089
|
* @request POST:/api/listings/{listingId}/photos
|
|
1663
2090
|
* @secure
|
|
1664
|
-
* @response `200` `ListingPhoto`
|
|
2091
|
+
* @response `200` `ListingPhoto` OK
|
|
1665
2092
|
*/
|
|
1666
2093
|
addListingPhoto: (listingId, data, params = {}) => this.request(Object.assign({ path: `/api/listings/${listingId}/photos`, method: "POST", body: data, secure: true, type: ContentType.FormData, format: "json" }, params)),
|
|
1667
2094
|
/**
|
|
@@ -1672,7 +2099,7 @@ export class Api extends HttpClient {
|
|
|
1672
2099
|
* @summary Update
|
|
1673
2100
|
* @request PATCH:/api/listings/{listingId}/photos
|
|
1674
2101
|
* @secure
|
|
1675
|
-
* @response `200` `(ListingPhoto)[]`
|
|
2102
|
+
* @response `200` `(ListingPhoto)[]` OK
|
|
1676
2103
|
*/
|
|
1677
2104
|
updateListingPhotos: (listingId, data, params = {}) => this.request(Object.assign({ path: `/api/listings/${listingId}/photos`, method: "PATCH", body: data, secure: true, type: ContentType.JsonPatch, format: "json" }, params)),
|
|
1678
2105
|
/**
|
|
@@ -1694,7 +2121,7 @@ export class Api extends HttpClient {
|
|
|
1694
2121
|
* @summary Get All
|
|
1695
2122
|
* @request GET:/api/listings
|
|
1696
2123
|
* @secure
|
|
1697
|
-
* @response `200` `ListingPaginated`
|
|
2124
|
+
* @response `200` `ListingPaginated` OK
|
|
1698
2125
|
*/
|
|
1699
2126
|
getListings: (query, params = {}) => this.request(Object.assign({ path: `/api/listings`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
1700
2127
|
/**
|
|
@@ -1716,7 +2143,7 @@ export class Api extends HttpClient {
|
|
|
1716
2143
|
* @summary Get by Slug
|
|
1717
2144
|
* @request GET:/api/listings/slug/{slug}
|
|
1718
2145
|
* @secure
|
|
1719
|
-
* @response `200` `Listing`
|
|
2146
|
+
* @response `200` `Listing` OK
|
|
1720
2147
|
*/
|
|
1721
2148
|
getListingBySlug: (slug, params = {}) => this.request(Object.assign({ path: `/api/listings/slug/${slug}`, method: "GET", secure: true, format: "json" }, params)),
|
|
1722
2149
|
/**
|
|
@@ -1727,7 +2154,7 @@ export class Api extends HttpClient {
|
|
|
1727
2154
|
* @summary Get by ID
|
|
1728
2155
|
* @request GET:/api/listings/{id}
|
|
1729
2156
|
* @secure
|
|
1730
|
-
* @response `200` `Listing`
|
|
2157
|
+
* @response `200` `Listing` OK
|
|
1731
2158
|
*/
|
|
1732
2159
|
getListing: (id, params = {}) => this.request(Object.assign({ path: `/api/listings/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
1733
2160
|
/**
|
|
@@ -1738,7 +2165,7 @@ export class Api extends HttpClient {
|
|
|
1738
2165
|
* @summary Replace
|
|
1739
2166
|
* @request PUT:/api/listings/{id}
|
|
1740
2167
|
* @secure
|
|
1741
|
-
* @response `200` `Listing`
|
|
2168
|
+
* @response `200` `Listing` OK
|
|
1742
2169
|
*/
|
|
1743
2170
|
replaceListing: (id, data, params = {}) => this.request(Object.assign({ path: `/api/listings/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1744
2171
|
/**
|
|
@@ -1760,7 +2187,7 @@ export class Api extends HttpClient {
|
|
|
1760
2187
|
* @summary Search
|
|
1761
2188
|
* @request POST:/api/listings/search
|
|
1762
2189
|
* @secure
|
|
1763
|
-
* @response `200` `ListingPaginated`
|
|
2190
|
+
* @response `200` `ListingPaginated` OK
|
|
1764
2191
|
*/
|
|
1765
2192
|
searchListings: (data, query, params = {}) => this.request(Object.assign({ path: `/api/listings/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1766
2193
|
/**
|
|
@@ -1771,7 +2198,7 @@ export class Api extends HttpClient {
|
|
|
1771
2198
|
* @summary Update Background Image
|
|
1772
2199
|
* @request PUT:/api/listings/{id}/background-image
|
|
1773
2200
|
* @secure
|
|
1774
|
-
* @response `200` `File`
|
|
2201
|
+
* @response `200` `File` OK
|
|
1775
2202
|
*/
|
|
1776
2203
|
updateListingBackgroundImage: (id, data, params = {}) => this.request(Object.assign({ path: `/api/listings/${id}/background-image`, method: "PUT", body: data, secure: true, type: ContentType.FormData, format: "json" }, params)),
|
|
1777
2204
|
/**
|
|
@@ -1793,7 +2220,7 @@ export class Api extends HttpClient {
|
|
|
1793
2220
|
* @summary Get Open House Flyer
|
|
1794
2221
|
* @request GET:/api/listings/{id}/open-house-flyer
|
|
1795
2222
|
* @secure
|
|
1796
|
-
* @response `200` `File`
|
|
2223
|
+
* @response `200` `File` OK
|
|
1797
2224
|
*/
|
|
1798
2225
|
getListingOpenHouseFlyer: (id, params = {}) => this.request(Object.assign({ path: `/api/listings/${id}/open-house-flyer`, method: "GET", secure: true, format: "json" }, params)),
|
|
1799
2226
|
/**
|
|
@@ -1804,7 +2231,7 @@ export class Api extends HttpClient {
|
|
|
1804
2231
|
* @summary Get
|
|
1805
2232
|
* @request GET:/api/loans/{loanID}/calculators/loan-calculator
|
|
1806
2233
|
* @secure
|
|
1807
|
-
* @response `200` `RunLOCalculation`
|
|
2234
|
+
* @response `200` `RunLOCalculation` OK
|
|
1808
2235
|
*/
|
|
1809
2236
|
getLoanCalculator: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/calculators/loan-calculator`, method: "GET", secure: true, format: "json" }, params)),
|
|
1810
2237
|
/**
|
|
@@ -1815,9 +2242,9 @@ export class Api extends HttpClient {
|
|
|
1815
2242
|
* @summary Run
|
|
1816
2243
|
* @request POST:/api/loans/{loanID}/calculators/loan-calculator
|
|
1817
2244
|
* @secure
|
|
1818
|
-
* @response `200` `RunLOCalculation`
|
|
1819
|
-
* @response `422` `UnprocessableEntity`
|
|
1820
|
-
* @response `423` `UnprocessableEntity`
|
|
2245
|
+
* @response `200` `RunLOCalculation` OK
|
|
2246
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2247
|
+
* @response `423` `UnprocessableEntity` Locked
|
|
1821
2248
|
*/
|
|
1822
2249
|
runLoanCalculator: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/calculators/loan-calculator`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1823
2250
|
/**
|
|
@@ -1828,7 +2255,7 @@ export class Api extends HttpClient {
|
|
|
1828
2255
|
* @summary Get All
|
|
1829
2256
|
* @request GET:/api/loans/{loanID}/loan-comparison
|
|
1830
2257
|
* @secure
|
|
1831
|
-
* @response `200` `LoanComparison`
|
|
2258
|
+
* @response `200` `LoanComparison` OK
|
|
1832
2259
|
*/
|
|
1833
2260
|
getLoanComparisons: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/loan-comparison`, method: "GET", secure: true, format: "json" }, params)),
|
|
1834
2261
|
/**
|
|
@@ -1840,8 +2267,8 @@ export class Api extends HttpClient {
|
|
|
1840
2267
|
* @request POST:/api/loans/{loanID}/loan-comparison/{index}
|
|
1841
2268
|
* @secure
|
|
1842
2269
|
* @response `201` `LoanComparisonScenario` Created
|
|
1843
|
-
* @response `422` `UnprocessableEntity`
|
|
1844
|
-
* @response `423` `UnprocessableEntity`
|
|
2270
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2271
|
+
* @response `423` `UnprocessableEntity` Locked
|
|
1845
2272
|
*/
|
|
1846
2273
|
createLoanComparison: (loanId, index, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/loan-comparison/${index}`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1847
2274
|
/**
|
|
@@ -1864,7 +2291,7 @@ export class Api extends HttpClient {
|
|
|
1864
2291
|
* @request POST:/api/loans/{loanID}/loan-comparison/pdf
|
|
1865
2292
|
* @secure
|
|
1866
2293
|
* @response `204` `void` No Content
|
|
1867
|
-
* @response `422` `UnprocessableEntity`
|
|
2294
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1868
2295
|
*/
|
|
1869
2296
|
createLoanComparisonPdf: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/loan-comparison/pdf`, method: "POST", body: data, secure: true, type: ContentType.Json }, params)),
|
|
1870
2297
|
/**
|
|
@@ -1877,7 +2304,7 @@ export class Api extends HttpClient {
|
|
|
1877
2304
|
* @secure
|
|
1878
2305
|
* @response `204` `void` No Content
|
|
1879
2306
|
* @response `404` `ProblemDetails` Not Found
|
|
1880
|
-
* @response `422` `ProblemDetails`
|
|
2307
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
1881
2308
|
*/
|
|
1882
2309
|
resyncLoanConsents: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/consents/resync`, method: "POST", secure: true }, params)),
|
|
1883
2310
|
/**
|
|
@@ -1888,7 +2315,7 @@ export class Api extends HttpClient {
|
|
|
1888
2315
|
* @summary Get all custom field values for a loan
|
|
1889
2316
|
* @request GET:/api/loans/{loanId}/custom-fields
|
|
1890
2317
|
* @secure
|
|
1891
|
-
* @response `200` `(CustomFieldValue)[]`
|
|
2318
|
+
* @response `200` `(CustomFieldValue)[]` OK
|
|
1892
2319
|
*/
|
|
1893
2320
|
getLoanCustomFieldValues: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/custom-fields`, method: "GET", secure: true, format: "json" }, params)),
|
|
1894
2321
|
/**
|
|
@@ -1901,7 +2328,7 @@ export class Api extends HttpClient {
|
|
|
1901
2328
|
* @secure
|
|
1902
2329
|
* @response `204` `void` No Content
|
|
1903
2330
|
* @response `400` `ProblemDetails` Bad Request
|
|
1904
|
-
* @response `422` `ProblemDetails`
|
|
2331
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
1905
2332
|
*/
|
|
1906
2333
|
bulkSetLoanCustomFieldValues: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/custom-fields`, method: "PUT", body: data, secure: true, type: ContentType.Json }, params)),
|
|
1907
2334
|
/**
|
|
@@ -1915,7 +2342,7 @@ export class Api extends HttpClient {
|
|
|
1915
2342
|
* @response `204` `void` No Content
|
|
1916
2343
|
* @response `400` `ProblemDetails` Bad Request
|
|
1917
2344
|
* @response `404` `ProblemDetails` Not Found
|
|
1918
|
-
* @response `422` `ProblemDetails`
|
|
2345
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
1919
2346
|
*/
|
|
1920
2347
|
setLoanCustomFieldValue: (loanId, definitionId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/custom-fields/${definitionId}`, method: "PUT", body: data, secure: true, type: ContentType.Json }, params)),
|
|
1921
2348
|
/**
|
|
@@ -1938,7 +2365,7 @@ export class Api extends HttpClient {
|
|
|
1938
2365
|
* @summary Get All
|
|
1939
2366
|
* @request GET:/api/loans/{loanId}/documents/buckets
|
|
1940
2367
|
* @secure
|
|
1941
|
-
* @response `200` `(string)[]`
|
|
2368
|
+
* @response `200` `(string)[]` OK
|
|
1942
2369
|
*/
|
|
1943
2370
|
getLoanDocumentBuckets: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents/buckets`, method: "GET", secure: true, format: "json" }, params)),
|
|
1944
2371
|
/**
|
|
@@ -1960,7 +2387,7 @@ export class Api extends HttpClient {
|
|
|
1960
2387
|
* @summary Get all loan document folders for the current account
|
|
1961
2388
|
* @request GET:/api/loan-document-folders
|
|
1962
2389
|
* @secure
|
|
1963
|
-
* @response `200` `(LoanDocumentFolder)[]`
|
|
2390
|
+
* @response `200` `(LoanDocumentFolder)[]` OK
|
|
1964
2391
|
*/
|
|
1965
2392
|
getAllLoanDocumentFolders: (params = {}) => this.request(Object.assign({ path: `/api/loan-document-folders`, method: "GET", secure: true, format: "json" }, params)),
|
|
1966
2393
|
/**
|
|
@@ -1973,7 +2400,7 @@ export class Api extends HttpClient {
|
|
|
1973
2400
|
* @secure
|
|
1974
2401
|
* @response `201` `LoanDocumentFolder` Created
|
|
1975
2402
|
* @response `409` `ProblemDetails` Conflict
|
|
1976
|
-
* @response `422` `ProblemDetails`
|
|
2403
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
1977
2404
|
*/
|
|
1978
2405
|
createLoanDocumentFolder: (data, params = {}) => this.request(Object.assign({ path: `/api/loan-document-folders`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1979
2406
|
/**
|
|
@@ -1984,7 +2411,7 @@ export class Api extends HttpClient {
|
|
|
1984
2411
|
* @summary Get a loan document folder by ID
|
|
1985
2412
|
* @request GET:/api/loan-document-folders/{id}
|
|
1986
2413
|
* @secure
|
|
1987
|
-
* @response `200` `LoanDocumentFolder`
|
|
2414
|
+
* @response `200` `LoanDocumentFolder` OK
|
|
1988
2415
|
* @response `404` `ProblemDetails` Not Found
|
|
1989
2416
|
*/
|
|
1990
2417
|
getLoanDocumentFolderById: (id, params = {}) => this.request(Object.assign({ path: `/api/loan-document-folders/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -1996,11 +2423,11 @@ export class Api extends HttpClient {
|
|
|
1996
2423
|
* @summary Update a loan document folder. Blocked when folder has ever been referenced, except for permission edits on the system-default Unassigned folder.
|
|
1997
2424
|
* @request PUT:/api/loan-document-folders/{id}
|
|
1998
2425
|
* @secure
|
|
1999
|
-
* @response `200` `LoanDocumentFolder`
|
|
2426
|
+
* @response `200` `LoanDocumentFolder` OK
|
|
2000
2427
|
* @response `400` `ProblemDetails` Bad Request
|
|
2001
2428
|
* @response `404` `ProblemDetails` Not Found
|
|
2002
2429
|
* @response `409` `ProblemDetails` Conflict
|
|
2003
|
-
* @response `422` `ProblemDetails`
|
|
2430
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
2004
2431
|
*/
|
|
2005
2432
|
updateLoanDocumentFolder: (id, data, params = {}) => this.request(Object.assign({ path: `/api/loan-document-folders/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
2006
2433
|
/**
|
|
@@ -2050,7 +2477,7 @@ export class Api extends HttpClient {
|
|
|
2050
2477
|
* @summary Get folder usage. Returns HasEverBeenReferenced including soft-deleted documents and tasks.
|
|
2051
2478
|
* @request GET:/api/loan-document-folders/{id}/usage
|
|
2052
2479
|
* @secure
|
|
2053
|
-
* @response `200` `LoanDocumentFolderUsage`
|
|
2480
|
+
* @response `200` `LoanDocumentFolderUsage` OK
|
|
2054
2481
|
* @response `404` `ProblemDetails` Not Found
|
|
2055
2482
|
*/
|
|
2056
2483
|
getLoanDocumentFolderUsage: (id, params = {}) => this.request(Object.assign({ path: `/api/loan-document-folders/${id}/usage`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2062,7 +2489,7 @@ export class Api extends HttpClient {
|
|
|
2062
2489
|
* @summary Get By ID
|
|
2063
2490
|
* @request GET:/api/loans/{loanId}/documents/{documentId}
|
|
2064
2491
|
* @secure
|
|
2065
|
-
* @response `200` `LoanDocument`
|
|
2492
|
+
* @response `200` `LoanDocument` OK
|
|
2066
2493
|
* @response `404` `ProblemDetails` Not Found
|
|
2067
2494
|
*/
|
|
2068
2495
|
getLoanDocument: (loanId, documentId, query, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents/${documentId}`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
@@ -2074,7 +2501,7 @@ export class Api extends HttpClient {
|
|
|
2074
2501
|
* @summary Get document previews in batch
|
|
2075
2502
|
* @request POST:/api/loans/{loanId}/documents/previews
|
|
2076
2503
|
* @secure
|
|
2077
|
-
* @response `200` `Record<string,string>`
|
|
2504
|
+
* @response `200` `Record<string,string>` OK
|
|
2078
2505
|
* @response `400` `ProblemDetails` Bad Request
|
|
2079
2506
|
*/
|
|
2080
2507
|
getLoanDocumentPreviews: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents/previews`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
@@ -2086,7 +2513,7 @@ export class Api extends HttpClient {
|
|
|
2086
2513
|
* @summary Search loan documents
|
|
2087
2514
|
* @request POST:/api/loans/{loanId}/documents/search
|
|
2088
2515
|
* @secure
|
|
2089
|
-
* @response `200` `LoanDocumentSearchPaginated`
|
|
2516
|
+
* @response `200` `LoanDocumentSearchPaginated` OK
|
|
2090
2517
|
*/
|
|
2091
2518
|
searchLoanDocuments: (loanId, data, query, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
2092
2519
|
/**
|
|
@@ -2097,7 +2524,7 @@ export class Api extends HttpClient {
|
|
|
2097
2524
|
* @summary Get document folder hierarchy
|
|
2098
2525
|
* @request POST:/api/loans/{loanId}/documents/folders
|
|
2099
2526
|
* @secure
|
|
2100
|
-
* @response `200` `(DocumentFolder)[]`
|
|
2527
|
+
* @response `200` `(DocumentFolder)[]` OK
|
|
2101
2528
|
*/
|
|
2102
2529
|
getLoanDocumentFolders: (loanId, data, query, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents/folders`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
2103
2530
|
/**
|
|
@@ -2108,7 +2535,7 @@ export class Api extends HttpClient {
|
|
|
2108
2535
|
* @summary Download By ID
|
|
2109
2536
|
* @request GET:/api/loans/{loanId}/documents/{documentId}/download
|
|
2110
2537
|
* @secure
|
|
2111
|
-
* @response `200` `string`
|
|
2538
|
+
* @response `200` `string` OK
|
|
2112
2539
|
* @response `404` `ProblemDetails` Not Found
|
|
2113
2540
|
*/
|
|
2114
2541
|
downloadLoanDocument: (loanId, documentId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents/${documentId}/download`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2122,7 +2549,7 @@ export class Api extends HttpClient {
|
|
|
2122
2549
|
* @secure
|
|
2123
2550
|
* @response `201` `LoanDocument` Created
|
|
2124
2551
|
* @response `404` `ProblemDetails` Not Found
|
|
2125
|
-
* @response `422` `UnprocessableEntity`
|
|
2552
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2126
2553
|
*/
|
|
2127
2554
|
createLoanDocument: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents`, method: "POST", body: data, secure: true, type: ContentType.FormData, format: "json" }, params)),
|
|
2128
2555
|
/**
|
|
@@ -2133,9 +2560,9 @@ export class Api extends HttpClient {
|
|
|
2133
2560
|
* @summary Retry
|
|
2134
2561
|
* @request POST:/api/loans/{loanId}/documents/{documentId}/retry
|
|
2135
2562
|
* @secure
|
|
2136
|
-
* @response `200` `LoanDocument`
|
|
2563
|
+
* @response `200` `LoanDocument` OK
|
|
2137
2564
|
* @response `404` `ProblemDetails` Not Found
|
|
2138
|
-
* @response `422` `UnprocessableEntity`
|
|
2565
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2139
2566
|
*/
|
|
2140
2567
|
retryFailedLoanDocument: (loanId, documentId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents/${documentId}/retry`, method: "POST", secure: true, format: "json" }, params)),
|
|
2141
2568
|
/**
|
|
@@ -2146,7 +2573,7 @@ export class Api extends HttpClient {
|
|
|
2146
2573
|
* @summary Generate PDF Document
|
|
2147
2574
|
* @request POST:/api/loans/{loanId}/documents/generate
|
|
2148
2575
|
* @secure
|
|
2149
|
-
* @response `200` `DocumentDataRequest`
|
|
2576
|
+
* @response `200` `DocumentDataRequest` OK
|
|
2150
2577
|
*/
|
|
2151
2578
|
generateLoanDocument: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents/generate`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
2152
2579
|
/**
|
|
@@ -2157,7 +2584,7 @@ export class Api extends HttpClient {
|
|
|
2157
2584
|
* @summary Send existing documents to loan users or external emails
|
|
2158
2585
|
* @request POST:/api/loans/{loanId}/documents/distribute
|
|
2159
2586
|
* @secure
|
|
2160
|
-
* @response `200` `void`
|
|
2587
|
+
* @response `200` `void` OK
|
|
2161
2588
|
* @response `400` `ProblemDetails` Bad Request
|
|
2162
2589
|
* @response `404` `ProblemDetails` Not Found
|
|
2163
2590
|
*/
|
|
@@ -2170,7 +2597,7 @@ export class Api extends HttpClient {
|
|
|
2170
2597
|
* @summary Sync documents from LOS
|
|
2171
2598
|
* @request POST:/api/loans/{loanId}/documents/sync
|
|
2172
2599
|
* @secure
|
|
2173
|
-
* @response `200` `DocumentSync`
|
|
2600
|
+
* @response `200` `DocumentSync` OK
|
|
2174
2601
|
* @response `404` `ProblemDetails` Not Found
|
|
2175
2602
|
*/
|
|
2176
2603
|
syncLoanDocumentsFromLos: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents/sync`, method: "POST", secure: true, format: "json" }, params)),
|
|
@@ -2182,9 +2609,9 @@ export class Api extends HttpClient {
|
|
|
2182
2609
|
* @summary Retry syncing a document to LOS
|
|
2183
2610
|
* @request POST:/api/loans/{loanId}/documents/{documentId}/sync/retry
|
|
2184
2611
|
* @secure
|
|
2185
|
-
* @response `200` `void`
|
|
2612
|
+
* @response `200` `void` OK
|
|
2186
2613
|
* @response `404` `ProblemDetails` Not Found
|
|
2187
|
-
* @response `423` `ProblemDetails`
|
|
2614
|
+
* @response `423` `ProblemDetails` Locked
|
|
2188
2615
|
*/
|
|
2189
2616
|
retrySyncLoanDocumentToLos: (loanId, documentId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents/${documentId}/sync/retry`, method: "POST", secure: true }, params)),
|
|
2190
2617
|
/**
|
|
@@ -2206,7 +2633,7 @@ export class Api extends HttpClient {
|
|
|
2206
2633
|
* @summary Get All
|
|
2207
2634
|
* @request GET:/api/loans/drafts
|
|
2208
2635
|
* @secure
|
|
2209
|
-
* @response `200` `(DraftContent)[]`
|
|
2636
|
+
* @response `200` `(DraftContent)[]` OK
|
|
2210
2637
|
*/
|
|
2211
2638
|
getLoanDrafts: (params = {}) => this.request(Object.assign({ path: `/api/loans/drafts`, method: "GET", secure: true, format: "json" }, params)),
|
|
2212
2639
|
/**
|
|
@@ -2217,7 +2644,7 @@ export class Api extends HttpClient {
|
|
|
2217
2644
|
* @summary Get by ID
|
|
2218
2645
|
* @request GET:/api/loans/drafts/{draftId}
|
|
2219
2646
|
* @secure
|
|
2220
|
-
* @response `200` `DraftContent`
|
|
2647
|
+
* @response `200` `DraftContent` OK
|
|
2221
2648
|
*/
|
|
2222
2649
|
getLoanDraft: (draftId, params = {}) => this.request(Object.assign({ path: `/api/loans/drafts/${draftId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
2223
2650
|
/**
|
|
@@ -2228,7 +2655,7 @@ export class Api extends HttpClient {
|
|
|
2228
2655
|
* @summary Replace
|
|
2229
2656
|
* @request PUT:/api/loans/drafts/{draftId}
|
|
2230
2657
|
* @secure
|
|
2231
|
-
* @response `200` `Draft`
|
|
2658
|
+
* @response `200` `Draft` OK
|
|
2232
2659
|
*/
|
|
2233
2660
|
replaceLoanDraft: (draftId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/drafts/${draftId}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
2234
2661
|
/**
|
|
@@ -2261,7 +2688,7 @@ export class Api extends HttpClient {
|
|
|
2261
2688
|
* @summary Reassign Loan officer
|
|
2262
2689
|
* @request PUT:/api/loans/drafts/{draftId}/reassign
|
|
2263
2690
|
* @secure
|
|
2264
|
-
* @response `200` `Draft`
|
|
2691
|
+
* @response `200` `Draft` OK
|
|
2265
2692
|
*/
|
|
2266
2693
|
reassignLoanOfficer: (draftId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/drafts/${draftId}/reassign`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
2267
2694
|
/**
|
|
@@ -2272,7 +2699,7 @@ export class Api extends HttpClient {
|
|
|
2272
2699
|
* @summary Restore deleted draft
|
|
2273
2700
|
* @request POST:/api/loans/drafts/{draftId}/restore
|
|
2274
2701
|
* @secure
|
|
2275
|
-
* @response `200` `Draft`
|
|
2702
|
+
* @response `200` `Draft` OK
|
|
2276
2703
|
*/
|
|
2277
2704
|
restoreLoanDraft: (draftId, params = {}) => this.request(Object.assign({ path: `/api/loans/drafts/${draftId}/restore`, method: "POST", secure: true, format: "json" }, params)),
|
|
2278
2705
|
/**
|
|
@@ -2283,7 +2710,7 @@ export class Api extends HttpClient {
|
|
|
2283
2710
|
* @summary Get Loan Imports
|
|
2284
2711
|
* @request GET:/api/loan-imports
|
|
2285
2712
|
* @secure
|
|
2286
|
-
* @response `200` `LoanImportPaginated`
|
|
2713
|
+
* @response `200` `LoanImportPaginated` OK
|
|
2287
2714
|
*/
|
|
2288
2715
|
getLoanImports: (query, params = {}) => this.request(Object.assign({ path: `/api/loan-imports`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
2289
2716
|
/**
|
|
@@ -2305,7 +2732,7 @@ export class Api extends HttpClient {
|
|
|
2305
2732
|
* @summary Get Loan Import
|
|
2306
2733
|
* @request GET:/api/loan-imports/{id}
|
|
2307
2734
|
* @secure
|
|
2308
|
-
* @response `200` `LoanImport`
|
|
2735
|
+
* @response `200` `LoanImport` OK
|
|
2309
2736
|
*/
|
|
2310
2737
|
getLoanImport: (id, params = {}) => this.request(Object.assign({ path: `/api/loan-imports/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
2311
2738
|
/**
|
|
@@ -2316,7 +2743,7 @@ export class Api extends HttpClient {
|
|
|
2316
2743
|
* @summary Get Loan Import Logs
|
|
2317
2744
|
* @request GET:/api/loan-imports/{id}/logs
|
|
2318
2745
|
* @secure
|
|
2319
|
-
* @response `200` `LoanImportLogPaginated`
|
|
2746
|
+
* @response `200` `LoanImportLogPaginated` OK
|
|
2320
2747
|
*/
|
|
2321
2748
|
getLoanImportLogs: (id, query, params = {}) => this.request(Object.assign({ path: `/api/loan-imports/${id}/logs`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
2322
2749
|
/**
|
|
@@ -2327,7 +2754,7 @@ export class Api extends HttpClient {
|
|
|
2327
2754
|
* @summary Get Invites
|
|
2328
2755
|
* @request GET:/api/loans/{loanId}/invites
|
|
2329
2756
|
* @secure
|
|
2330
|
-
* @response `200` `(Invite)[]`
|
|
2757
|
+
* @response `200` `(Invite)[]` OK
|
|
2331
2758
|
* @response `404` `ProblemDetails` Not Found
|
|
2332
2759
|
*/
|
|
2333
2760
|
getLoanInvites: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/invites`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2339,7 +2766,7 @@ export class Api extends HttpClient {
|
|
|
2339
2766
|
* @summary Invite Contacts
|
|
2340
2767
|
* @request POST:/api/loans/{loanId}/invites
|
|
2341
2768
|
* @secure
|
|
2342
|
-
* @response `200` `(Invite)[]`
|
|
2769
|
+
* @response `200` `(Invite)[]` OK
|
|
2343
2770
|
* @response `404` `ProblemDetails` Not Found
|
|
2344
2771
|
*/
|
|
2345
2772
|
inviteLoanContacts: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/invites`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
@@ -2351,7 +2778,7 @@ export class Api extends HttpClient {
|
|
|
2351
2778
|
* @summary Search loan logs
|
|
2352
2779
|
* @request POST:/api/loans/{loanId}/logs/search
|
|
2353
2780
|
* @secure
|
|
2354
|
-
* @response `200` `LoanLogPaginated`
|
|
2781
|
+
* @response `200` `LoanLogPaginated` OK
|
|
2355
2782
|
*/
|
|
2356
2783
|
searchLoanLogs: (loanId, data, query, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/logs/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
2357
2784
|
/**
|
|
@@ -2362,7 +2789,7 @@ export class Api extends HttpClient {
|
|
|
2362
2789
|
* @summary Get loan log by ID
|
|
2363
2790
|
* @request GET:/api/loans/{loanId}/logs/{loanLogId}
|
|
2364
2791
|
* @secure
|
|
2365
|
-
* @response `200` `LoanLogDetail`
|
|
2792
|
+
* @response `200` `LoanLogDetail` OK
|
|
2366
2793
|
* @response `404` `ProblemDetails` Not Found
|
|
2367
2794
|
*/
|
|
2368
2795
|
getLoanLogById: (loanId, loanLogId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/logs/${loanLogId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2374,7 +2801,7 @@ export class Api extends HttpClient {
|
|
|
2374
2801
|
* @summary Get All
|
|
2375
2802
|
* @request GET:/api/loan-officers
|
|
2376
2803
|
* @secure
|
|
2377
|
-
* @response `200` `BranchUserPaginated`
|
|
2804
|
+
* @response `200` `BranchUserPaginated` OK
|
|
2378
2805
|
*/
|
|
2379
2806
|
getLoanOfficers: (query, params = {}) => this.request(Object.assign({ path: `/api/loan-officers`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
2380
2807
|
/**
|
|
@@ -2385,7 +2812,7 @@ export class Api extends HttpClient {
|
|
|
2385
2812
|
* @summary Search
|
|
2386
2813
|
* @request POST:/api/loan-officers/search
|
|
2387
2814
|
* @secure
|
|
2388
|
-
* @response `200` `BranchUserPaginated`
|
|
2815
|
+
* @response `200` `BranchUserPaginated` OK
|
|
2389
2816
|
*/
|
|
2390
2817
|
searchLoanOfficers: (data, query, params = {}) => this.request(Object.assign({ path: `/api/loan-officers/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
2391
2818
|
/**
|
|
@@ -2396,7 +2823,7 @@ export class Api extends HttpClient {
|
|
|
2396
2823
|
* @summary Get by ID
|
|
2397
2824
|
* @request GET:/api/loan-officers/{id}
|
|
2398
2825
|
* @secure
|
|
2399
|
-
* @response `200` `BranchUser`
|
|
2826
|
+
* @response `200` `BranchUser` OK
|
|
2400
2827
|
*/
|
|
2401
2828
|
getLoanOfficer: (id, params = {}) => this.request(Object.assign({ path: `/api/loan-officers/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
2402
2829
|
/**
|
|
@@ -2407,8 +2834,8 @@ export class Api extends HttpClient {
|
|
|
2407
2834
|
* @summary Create Site Configuration
|
|
2408
2835
|
* @request POST:/api/loan-officers/{loanOfficerId}/site-configurations
|
|
2409
2836
|
* @secure
|
|
2410
|
-
* @response `200` `SiteConfiguration`
|
|
2411
|
-
* @response `422` `UnprocessableEntity`
|
|
2837
|
+
* @response `200` `SiteConfiguration` OK
|
|
2838
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2412
2839
|
*/
|
|
2413
2840
|
createLoanOfficerSiteConfiguration: (loanOfficerId, data, params = {}) => this.request(Object.assign({ path: `/api/loan-officers/${loanOfficerId}/site-configurations`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
2414
2841
|
/**
|
|
@@ -2419,7 +2846,7 @@ export class Api extends HttpClient {
|
|
|
2419
2846
|
* @summary Get Site Configuration
|
|
2420
2847
|
* @request GET:/api/loan-officers/{loanOfficerId}/site-configurations/{siteConfigurationId}
|
|
2421
2848
|
* @secure
|
|
2422
|
-
* @response `200` `SiteConfigurationWithInherited`
|
|
2849
|
+
* @response `200` `SiteConfigurationWithInherited` OK
|
|
2423
2850
|
*/
|
|
2424
2851
|
getLoanOfficerSiteConfiguration: (loanOfficerId, siteConfigurationId, params = {}) => this.request(Object.assign({ path: `/api/loan-officers/${loanOfficerId}/site-configurations/${siteConfigurationId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
2425
2852
|
/**
|
|
@@ -2430,8 +2857,8 @@ export class Api extends HttpClient {
|
|
|
2430
2857
|
* @summary Replace Site Configuration
|
|
2431
2858
|
* @request PUT:/api/loan-officers/{loanOfficerId}/site-configurations/{siteConfigurationId}
|
|
2432
2859
|
* @secure
|
|
2433
|
-
* @response `200` `SiteConfiguration`
|
|
2434
|
-
* @response `422` `UnprocessableEntity`
|
|
2860
|
+
* @response `200` `SiteConfiguration` OK
|
|
2861
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2435
2862
|
*/
|
|
2436
2863
|
replaceLoanOfficerSiteConfiguration: (loanOfficerId, siteConfigurationId, data, query, params = {}) => this.request(Object.assign({ path: `/api/loan-officers/${loanOfficerId}/site-configurations/${siteConfigurationId}`, method: "PUT", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
2437
2864
|
/**
|
|
@@ -2442,7 +2869,7 @@ export class Api extends HttpClient {
|
|
|
2442
2869
|
* @summary Search
|
|
2443
2870
|
* @request POST:/api/loans/queue/search
|
|
2444
2871
|
* @secure
|
|
2445
|
-
* @response `200` `LoanQueuePaginated`
|
|
2872
|
+
* @response `200` `LoanQueuePaginated` OK
|
|
2446
2873
|
*/
|
|
2447
2874
|
searchLoanQueue: (data, query, params = {}) => this.request(Object.assign({ path: `/api/loans/queue/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
2448
2875
|
/**
|
|
@@ -2453,7 +2880,7 @@ export class Api extends HttpClient {
|
|
|
2453
2880
|
* @summary Get Loan Queue Record
|
|
2454
2881
|
* @request GET:/api/loans/queue/{loanQueueId}
|
|
2455
2882
|
* @secure
|
|
2456
|
-
* @response `200` `any`
|
|
2883
|
+
* @response `200` `any` OK
|
|
2457
2884
|
* @response `404` `ProblemDetails` Not Found
|
|
2458
2885
|
*/
|
|
2459
2886
|
getLoanQueue: (loanQueueId, params = {}) => this.request(Object.assign({ path: `/api/loans/queue/${loanQueueId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2465,7 +2892,7 @@ export class Api extends HttpClient {
|
|
|
2465
2892
|
* @summary Replace Loan Queue Record
|
|
2466
2893
|
* @request PUT:/api/loans/queue/{loanQueueId}
|
|
2467
2894
|
* @secure
|
|
2468
|
-
* @response `200` `LoanQueueWithData`
|
|
2895
|
+
* @response `200` `LoanQueueWithData` OK
|
|
2469
2896
|
* @response `404` `ProblemDetails` Not Found
|
|
2470
2897
|
*/
|
|
2471
2898
|
replaceLoanQueue: (loanQueueId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/queue/${loanQueueId}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
@@ -2501,7 +2928,7 @@ export class Api extends HttpClient {
|
|
|
2501
2928
|
* @summary Get By ID
|
|
2502
2929
|
* @request GET:/api/loans/{loanID}
|
|
2503
2930
|
* @secure
|
|
2504
|
-
* @response `200` `Loan`
|
|
2931
|
+
* @response `200` `Loan` OK
|
|
2505
2932
|
* @response `404` `ProblemDetails` Not Found
|
|
2506
2933
|
*/
|
|
2507
2934
|
getLoan: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2513,7 +2940,7 @@ export class Api extends HttpClient {
|
|
|
2513
2940
|
* @summary Get Loans
|
|
2514
2941
|
* @request GET:/api/loans
|
|
2515
2942
|
* @secure
|
|
2516
|
-
* @response `200` `GetApplications`
|
|
2943
|
+
* @response `200` `GetApplications` OK
|
|
2517
2944
|
*/
|
|
2518
2945
|
getLoans: (params = {}) => this.request(Object.assign({ path: `/api/loans`, method: "GET", secure: true, format: "json" }, params)),
|
|
2519
2946
|
/**
|
|
@@ -2538,7 +2965,7 @@ export class Api extends HttpClient {
|
|
|
2538
2965
|
* @summary Search
|
|
2539
2966
|
* @request POST:/api/loans/search
|
|
2540
2967
|
* @secure
|
|
2541
|
-
* @response `200` `LoanListPaginated`
|
|
2968
|
+
* @response `200` `LoanListPaginated` OK
|
|
2542
2969
|
*/
|
|
2543
2970
|
searchLoans: (data, query, params = {}) => this.request(Object.assign({ path: `/api/loans/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
2544
2971
|
/**
|
|
@@ -2549,7 +2976,7 @@ export class Api extends HttpClient {
|
|
|
2549
2976
|
* @summary Update loan fields
|
|
2550
2977
|
* @request PATCH:/api/loans/{loanId}
|
|
2551
2978
|
* @secure
|
|
2552
|
-
* @response `200` `Loan`
|
|
2979
|
+
* @response `200` `Loan` OK
|
|
2553
2980
|
* @response `400` `any` Bad Request
|
|
2554
2981
|
* @response `401` `ProblemDetails` Unauthorized
|
|
2555
2982
|
* @response `403` `ProblemDetails` Forbidden
|
|
@@ -2578,7 +3005,7 @@ export class Api extends HttpClient {
|
|
|
2578
3005
|
* @summary Import from LOS
|
|
2579
3006
|
* @request POST:/api/loans/import-from-los/{loanId}
|
|
2580
3007
|
* @secure
|
|
2581
|
-
* @response `200` `Loan`
|
|
3008
|
+
* @response `200` `Loan` OK
|
|
2582
3009
|
*/
|
|
2583
3010
|
importLoanFromLos: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/import-from-los/${loanId}`, method: "POST", secure: true, format: "json" }, params)),
|
|
2584
3011
|
/**
|
|
@@ -2601,7 +3028,7 @@ export class Api extends HttpClient {
|
|
|
2601
3028
|
* @summary Get outstanding items
|
|
2602
3029
|
* @request GET:/api/loans/{loanId}/outstanding-items
|
|
2603
3030
|
* @secure
|
|
2604
|
-
* @response `200` `LoanOutstandingItems`
|
|
3031
|
+
* @response `200` `LoanOutstandingItems` OK
|
|
2605
3032
|
* @response `401` `ProblemDetails` Unauthorized
|
|
2606
3033
|
* @response `403` `ProblemDetails` Forbidden
|
|
2607
3034
|
*/
|
|
@@ -2614,7 +3041,7 @@ export class Api extends HttpClient {
|
|
|
2614
3041
|
* @summary Trigger ASO services
|
|
2615
3042
|
* @request POST:/api/loans/{loanId}/aso
|
|
2616
3043
|
* @secure
|
|
2617
|
-
* @response `200` `AutomatedService`
|
|
3044
|
+
* @response `200` `AutomatedService` OK
|
|
2618
3045
|
* @response `400` `ProblemDetails` Bad Request
|
|
2619
3046
|
* @response `404` `ProblemDetails` Not Found
|
|
2620
3047
|
*/
|
|
@@ -2627,7 +3054,7 @@ export class Api extends HttpClient {
|
|
|
2627
3054
|
* @summary Search
|
|
2628
3055
|
* @request POST:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments/search
|
|
2629
3056
|
* @secure
|
|
2630
|
-
* @response `200` `TaskCommentPaginated`
|
|
3057
|
+
* @response `200` `TaskCommentPaginated` OK
|
|
2631
3058
|
* @response `404` `ProblemDetails` Not Found
|
|
2632
3059
|
*/
|
|
2633
3060
|
searchLoanTaskComments: (loanId, userLoanTaskId, data, query, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks/${userLoanTaskId}/comments/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
@@ -2639,7 +3066,7 @@ export class Api extends HttpClient {
|
|
|
2639
3066
|
* @summary Get by ID
|
|
2640
3067
|
* @request GET:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments/{id}
|
|
2641
3068
|
* @secure
|
|
2642
|
-
* @response `200` `TaskComment`
|
|
3069
|
+
* @response `200` `TaskComment` OK
|
|
2643
3070
|
* @response `404` `ProblemDetails` Not Found
|
|
2644
3071
|
*/
|
|
2645
3072
|
getLoanTaskComment: (id, loanId, userLoanTaskId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks/${userLoanTaskId}/comments/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2663,7 +3090,7 @@ export class Api extends HttpClient {
|
|
|
2663
3090
|
* @summary Replace
|
|
2664
3091
|
* @request PUT:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments/{commentId}
|
|
2665
3092
|
* @secure
|
|
2666
|
-
* @response `200` `TaskComment`
|
|
3093
|
+
* @response `200` `TaskComment` OK
|
|
2667
3094
|
* @response `404` `ProblemDetails` Not Found
|
|
2668
3095
|
*/
|
|
2669
3096
|
replaceLoanTaskComment: (loanId, userLoanTaskId, commentId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks/${userLoanTaskId}/comments/${commentId}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
@@ -2689,7 +3116,7 @@ export class Api extends HttpClient {
|
|
|
2689
3116
|
* @secure
|
|
2690
3117
|
* @response `201` `UserLoanTask` Created
|
|
2691
3118
|
* @response `404` `ProblemDetails` Not Found
|
|
2692
|
-
* @response `422` `UnprocessableEntity`
|
|
3119
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2693
3120
|
*/
|
|
2694
3121
|
createLoanTaskDocument: (loanId, loanTaskId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks/${loanTaskId}/documents`, method: "POST", body: data, secure: true, type: ContentType.FormData, format: "json" }, params)),
|
|
2695
3122
|
/**
|
|
@@ -2701,7 +3128,7 @@ export class Api extends HttpClient {
|
|
|
2701
3128
|
* @request POST:/api/loans/{loanID}/tasks/{loanTaskId}/documents/bucket
|
|
2702
3129
|
* @secure
|
|
2703
3130
|
* @response `204` `UserLoanTask` No Content
|
|
2704
|
-
* @response `422` `UnprocessableEntity`
|
|
3131
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2705
3132
|
*/
|
|
2706
3133
|
createLoanTaskDocumentBucket: (loanId, loanTaskId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks/${loanTaskId}/documents/bucket`, method: "POST", secure: true, format: "json" }, params)),
|
|
2707
3134
|
/**
|
|
@@ -2737,7 +3164,7 @@ export class Api extends HttpClient {
|
|
|
2737
3164
|
* @summary Search
|
|
2738
3165
|
* @request POST:/api/loans/tasks/search
|
|
2739
3166
|
* @secure
|
|
2740
|
-
* @response `200` `UserLoanTaskPaginated`
|
|
3167
|
+
* @response `200` `UserLoanTaskPaginated` OK
|
|
2741
3168
|
*/
|
|
2742
3169
|
searchLoanTasks: (data, query, params = {}) => this.request(Object.assign({ path: `/api/loans/tasks/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
2743
3170
|
/**
|
|
@@ -2748,8 +3175,8 @@ export class Api extends HttpClient {
|
|
|
2748
3175
|
* @summary Search Summary
|
|
2749
3176
|
* @request POST:/api/loans/tasks/search/summary
|
|
2750
3177
|
* @secure
|
|
2751
|
-
* @response `200` `(LoanTaskStatusSummary)[]`
|
|
2752
|
-
* @response `422` `UnprocessableEntity`
|
|
3178
|
+
* @response `200` `(LoanTaskStatusSummary)[]` OK
|
|
3179
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2753
3180
|
*/
|
|
2754
3181
|
searchLoanTasksSummary: (data, params = {}) => this.request(Object.assign({ path: `/api/loans/tasks/search/summary`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
2755
3182
|
/**
|
|
@@ -2760,7 +3187,7 @@ export class Api extends HttpClient {
|
|
|
2760
3187
|
* @summary Get All
|
|
2761
3188
|
* @request GET:/api/loans/{loanID}/tasks
|
|
2762
3189
|
* @secure
|
|
2763
|
-
* @response `200` `(UserLoanTask)[]`
|
|
3190
|
+
* @response `200` `(UserLoanTask)[]` OK
|
|
2764
3191
|
* @response `404` `ProblemDetails` Not Found
|
|
2765
3192
|
*/
|
|
2766
3193
|
getLoanTasks: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2772,7 +3199,7 @@ export class Api extends HttpClient {
|
|
|
2772
3199
|
* @summary Get by ID
|
|
2773
3200
|
* @request GET:/api/loans/{loanID}/tasks/{id}
|
|
2774
3201
|
* @secure
|
|
2775
|
-
* @response `200` `UserLoanTask`
|
|
3202
|
+
* @response `200` `UserLoanTask` OK
|
|
2776
3203
|
* @response `404` `ProblemDetails` Not Found
|
|
2777
3204
|
*/
|
|
2778
3205
|
getLoanTask: (id, loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2784,7 +3211,7 @@ export class Api extends HttpClient {
|
|
|
2784
3211
|
* @summary Get Difference
|
|
2785
3212
|
* @request GET:/api/loans/{loanID}/tasks/diff
|
|
2786
3213
|
* @secure
|
|
2787
|
-
* @response `200` `(UserLoanTask)[]`
|
|
3214
|
+
* @response `200` `(UserLoanTask)[]` OK
|
|
2788
3215
|
* @response `404` `ProblemDetails` Not Found
|
|
2789
3216
|
*/
|
|
2790
3217
|
getLoanTaskDifference: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks/diff`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2820,7 +3247,7 @@ export class Api extends HttpClient {
|
|
|
2820
3247
|
* @summary Replace
|
|
2821
3248
|
* @request PUT:/api/loans/{loanID}/tasks/{userLoanTaskID}
|
|
2822
3249
|
* @secure
|
|
2823
|
-
* @response `200` `UserLoanTask`
|
|
3250
|
+
* @response `200` `UserLoanTask` OK
|
|
2824
3251
|
* @response `404` `ProblemDetails` Not Found
|
|
2825
3252
|
*/
|
|
2826
3253
|
replaceLoanTask: (loanId, userLoanTaskId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks/${userLoanTaskId}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
@@ -2844,9 +3271,9 @@ export class Api extends HttpClient {
|
|
|
2844
3271
|
* @summary Create
|
|
2845
3272
|
* @request POST:/api/loans/{loanID}/tasks/{loanTaskId}/verifications
|
|
2846
3273
|
* @secure
|
|
2847
|
-
* @response `200` `UserLoanTask`
|
|
3274
|
+
* @response `200` `UserLoanTask` OK
|
|
2848
3275
|
* @response `404` `ProblemDetails` Not Found
|
|
2849
|
-
* @response `422` `UnprocessableEntity`
|
|
3276
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2850
3277
|
*/
|
|
2851
3278
|
createLoanTaskVerification: (loanId, loanTaskId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks/${loanTaskId}/verifications`, method: "POST", secure: true, format: "json" }, params)),
|
|
2852
3279
|
/**
|
|
@@ -2857,7 +3284,7 @@ export class Api extends HttpClient {
|
|
|
2857
3284
|
* @summary Get User Loan Consents
|
|
2858
3285
|
* @request GET:/api/loans/{loanId}/users/{userId}/consents
|
|
2859
3286
|
* @secure
|
|
2860
|
-
* @response `200` `(UserLoanConsent)[]`
|
|
3287
|
+
* @response `200` `(UserLoanConsent)[]` OK
|
|
2861
3288
|
* @response `403` `ProblemDetails` Forbidden
|
|
2862
3289
|
*/
|
|
2863
3290
|
getLoanUserConsents: (loanId, userId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/users/${userId}/consents`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2869,7 +3296,7 @@ export class Api extends HttpClient {
|
|
|
2869
3296
|
* @summary Get Loan User
|
|
2870
3297
|
* @request GET:/api/loans/{loanId}/users/{userId}
|
|
2871
3298
|
* @secure
|
|
2872
|
-
* @response `200` `LoanUser`
|
|
3299
|
+
* @response `200` `LoanUser` OK
|
|
2873
3300
|
*/
|
|
2874
3301
|
getLoanUser: (loanId, userId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/users/${userId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
2875
3302
|
/**
|
|
@@ -2913,7 +3340,7 @@ export class Api extends HttpClient {
|
|
|
2913
3340
|
* @summary Search LOS operation tracking
|
|
2914
3341
|
* @request POST:/api/los-operation-tracking/search
|
|
2915
3342
|
* @secure
|
|
2916
|
-
* @response `200` `LosOperationTrackingPaginated`
|
|
3343
|
+
* @response `200` `LosOperationTrackingPaginated` OK
|
|
2917
3344
|
*/
|
|
2918
3345
|
searchLosOperationTracking: (data, query, params = {}) => this.request(Object.assign({ path: `/api/los-operation-tracking/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
2919
3346
|
/**
|
|
@@ -2924,7 +3351,7 @@ export class Api extends HttpClient {
|
|
|
2924
3351
|
* @summary Get All
|
|
2925
3352
|
* @request GET:/api/milestones
|
|
2926
3353
|
* @secure
|
|
2927
|
-
* @response `200` `(MilestoneConfiguration)[]`
|
|
3354
|
+
* @response `200` `(MilestoneConfiguration)[]` OK
|
|
2928
3355
|
*/
|
|
2929
3356
|
getMilestones: (params = {}) => this.request(Object.assign({ path: `/api/milestones`, method: "GET", secure: true, format: "json" }, params)),
|
|
2930
3357
|
/**
|
|
@@ -2936,7 +3363,7 @@ export class Api extends HttpClient {
|
|
|
2936
3363
|
* @request POST:/api/milestones
|
|
2937
3364
|
* @secure
|
|
2938
3365
|
* @response `201` `MilestoneConfiguration` Created
|
|
2939
|
-
* @response `422` `UnprocessableEntity`
|
|
3366
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2940
3367
|
*/
|
|
2941
3368
|
createMilestone: (data, params = {}) => this.request(Object.assign({ path: `/api/milestones`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
2942
3369
|
/**
|
|
@@ -2947,7 +3374,7 @@ export class Api extends HttpClient {
|
|
|
2947
3374
|
* @summary Get By ID
|
|
2948
3375
|
* @request GET:/api/milestones/{id}
|
|
2949
3376
|
* @secure
|
|
2950
|
-
* @response `200` `MilestoneConfiguration`
|
|
3377
|
+
* @response `200` `MilestoneConfiguration` OK
|
|
2951
3378
|
* @response `404` `Error` Not Found
|
|
2952
3379
|
*/
|
|
2953
3380
|
getMilestone: (id, params = {}) => this.request(Object.assign({ path: `/api/milestones/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2959,9 +3386,9 @@ export class Api extends HttpClient {
|
|
|
2959
3386
|
* @summary Replace
|
|
2960
3387
|
* @request PUT:/api/milestones/{id}
|
|
2961
3388
|
* @secure
|
|
2962
|
-
* @response `200` `MilestoneConfiguration`
|
|
3389
|
+
* @response `200` `MilestoneConfiguration` OK
|
|
2963
3390
|
* @response `404` `Error` Not Found
|
|
2964
|
-
* @response `422` `UnprocessableEntity`
|
|
3391
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2965
3392
|
*/
|
|
2966
3393
|
replaceMilestone: (id, data, params = {}) => this.request(Object.assign({ path: `/api/milestones/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
2967
3394
|
/**
|
|
@@ -2984,10 +3411,10 @@ export class Api extends HttpClient {
|
|
|
2984
3411
|
* @summary Idempotently seed the test loan officer, site configuration, loan and completed borrower used by mobile app store reviewers.
|
|
2985
3412
|
* @request POST:/api/mobile-app-review/seed
|
|
2986
3413
|
* @secure
|
|
2987
|
-
* @response `200` `MobileAppReviewSeed`
|
|
3414
|
+
* @response `200` `MobileAppReviewSeed` OK
|
|
2988
3415
|
* @response `400` `ProblemDetails` Bad Request
|
|
2989
3416
|
* @response `404` `ProblemDetails` Not Found
|
|
2990
|
-
* @response `422` `ProblemDetails`
|
|
3417
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
2991
3418
|
*/
|
|
2992
3419
|
seedMobileAppReview: (data, params = {}) => this.request(Object.assign({ path: `/api/mobile-app-review/seed`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
2993
3420
|
/**
|
|
@@ -2998,8 +3425,8 @@ export class Api extends HttpClient {
|
|
|
2998
3425
|
* @summary Calculate Monthly Payment
|
|
2999
3426
|
* @request POST:/api/mortgage-calculators/monthly-payment
|
|
3000
3427
|
* @secure
|
|
3001
|
-
* @response `200` `MonthlyPaymentCalculator`
|
|
3002
|
-
* @response `422` `ProblemDetails`
|
|
3428
|
+
* @response `200` `MonthlyPaymentCalculator` OK
|
|
3429
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
3003
3430
|
*/
|
|
3004
3431
|
calculateMortgageMonthlyPayment: (data, params = {}) => this.request(Object.assign({ path: `/api/mortgage-calculators/monthly-payment`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3005
3432
|
/**
|
|
@@ -3010,8 +3437,8 @@ export class Api extends HttpClient {
|
|
|
3010
3437
|
* @summary Calculate Affordability
|
|
3011
3438
|
* @request POST:/api/mortgage-calculators/affordability
|
|
3012
3439
|
* @secure
|
|
3013
|
-
* @response `200` `AffordabilityCalculator`
|
|
3014
|
-
* @response `422` `ProblemDetails`
|
|
3440
|
+
* @response `200` `AffordabilityCalculator` OK
|
|
3441
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
3015
3442
|
*/
|
|
3016
3443
|
calculateMortgageAffordability: (data, params = {}) => this.request(Object.assign({ path: `/api/mortgage-calculators/affordability`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3017
3444
|
/**
|
|
@@ -3022,8 +3449,8 @@ export class Api extends HttpClient {
|
|
|
3022
3449
|
* @summary Calculate Loan Comparison
|
|
3023
3450
|
* @request POST:/api/mortgage-calculators/loan-comparison
|
|
3024
3451
|
* @secure
|
|
3025
|
-
* @response `200` `LoanComparisonCalculator`
|
|
3026
|
-
* @response `422` `ProblemDetails`
|
|
3452
|
+
* @response `200` `LoanComparisonCalculator` OK
|
|
3453
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
3027
3454
|
*/
|
|
3028
3455
|
calculateMortgageLoanComparison: (data, params = {}) => this.request(Object.assign({ path: `/api/mortgage-calculators/loan-comparison`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3029
3456
|
/**
|
|
@@ -3034,8 +3461,8 @@ export class Api extends HttpClient {
|
|
|
3034
3461
|
* @summary Calculate Refinance
|
|
3035
3462
|
* @request POST:/api/mortgage-calculators/refinance
|
|
3036
3463
|
* @secure
|
|
3037
|
-
* @response `200` `RefinanceCalculator`
|
|
3038
|
-
* @response `422` `ProblemDetails`
|
|
3464
|
+
* @response `200` `RefinanceCalculator` OK
|
|
3465
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
3039
3466
|
*/
|
|
3040
3467
|
calculateMortgageRefinance: (data, params = {}) => this.request(Object.assign({ path: `/api/mortgage-calculators/refinance`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3041
3468
|
/**
|
|
@@ -3046,8 +3473,8 @@ export class Api extends HttpClient {
|
|
|
3046
3473
|
* @summary Send Notification for Loan
|
|
3047
3474
|
* @request POST:/api/notifications
|
|
3048
3475
|
* @secure
|
|
3049
|
-
* @response `200` `void`
|
|
3050
|
-
* @response `422` `UnprocessableEntity`
|
|
3476
|
+
* @response `200` `void` OK
|
|
3477
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3051
3478
|
*/
|
|
3052
3479
|
sendNotificationForLoan: (data, params = {}) => this.request(Object.assign({ path: `/api/notifications`, method: "POST", body: data, secure: true, type: ContentType.Json }, params)),
|
|
3053
3480
|
/**
|
|
@@ -3058,8 +3485,8 @@ export class Api extends HttpClient {
|
|
|
3058
3485
|
* @summary Send Test Notification for Loan
|
|
3059
3486
|
* @request POST:/api/notifications/test
|
|
3060
3487
|
* @secure
|
|
3061
|
-
* @response `200` `void`
|
|
3062
|
-
* @response `422` `UnprocessableEntity`
|
|
3488
|
+
* @response `200` `void` OK
|
|
3489
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3063
3490
|
*/
|
|
3064
3491
|
sendTestNotificationForLoan: (data, params = {}) => this.request(Object.assign({ path: `/api/notifications/test`, method: "POST", body: data, secure: true, type: ContentType.Json }, params)),
|
|
3065
3492
|
/**
|
|
@@ -3070,7 +3497,7 @@ export class Api extends HttpClient {
|
|
|
3070
3497
|
* @summary Get All
|
|
3071
3498
|
* @request GET:/api/notification-templates
|
|
3072
3499
|
* @secure
|
|
3073
|
-
* @response `200` `(NotificationTemplateBase)[]`
|
|
3500
|
+
* @response `200` `(NotificationTemplateBase)[]` OK
|
|
3074
3501
|
*/
|
|
3075
3502
|
getNotificationTemplates: (query, params = {}) => this.request(Object.assign({ path: `/api/notification-templates`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
3076
3503
|
/**
|
|
@@ -3082,7 +3509,7 @@ export class Api extends HttpClient {
|
|
|
3082
3509
|
* @request POST:/api/notification-templates
|
|
3083
3510
|
* @secure
|
|
3084
3511
|
* @response `201` `NotificationTemplate` Created
|
|
3085
|
-
* @response `422` `UnprocessableEntity`
|
|
3512
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3086
3513
|
*/
|
|
3087
3514
|
createNotificationTemplate: (data, params = {}) => this.request(Object.assign({ path: `/api/notification-templates`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3088
3515
|
/**
|
|
@@ -3093,7 +3520,7 @@ export class Api extends HttpClient {
|
|
|
3093
3520
|
* @summary Search
|
|
3094
3521
|
* @request POST:/api/notification-templates/search
|
|
3095
3522
|
* @secure
|
|
3096
|
-
* @response `200` `NotificationTemplateBasePaginated`
|
|
3523
|
+
* @response `200` `NotificationTemplateBasePaginated` OK
|
|
3097
3524
|
*/
|
|
3098
3525
|
searchNotificationTemplates: (data, query, params = {}) => this.request(Object.assign({ path: `/api/notification-templates/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3099
3526
|
/**
|
|
@@ -3104,7 +3531,7 @@ export class Api extends HttpClient {
|
|
|
3104
3531
|
* @summary Get by ID
|
|
3105
3532
|
* @request GET:/api/notification-templates/{id}
|
|
3106
3533
|
* @secure
|
|
3107
|
-
* @response `200` `NotificationTemplate`
|
|
3534
|
+
* @response `200` `NotificationTemplate` OK
|
|
3108
3535
|
*/
|
|
3109
3536
|
getNotificationTemplate: (id, params = {}) => this.request(Object.assign({ path: `/api/notification-templates/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
3110
3537
|
/**
|
|
@@ -3115,8 +3542,8 @@ export class Api extends HttpClient {
|
|
|
3115
3542
|
* @summary Replace
|
|
3116
3543
|
* @request PUT:/api/notification-templates/{id}
|
|
3117
3544
|
* @secure
|
|
3118
|
-
* @response `200` `NotificationTemplate`
|
|
3119
|
-
* @response `422` `UnprocessableEntity`
|
|
3545
|
+
* @response `200` `NotificationTemplate` OK
|
|
3546
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3120
3547
|
*/
|
|
3121
3548
|
replaceNotificationTemplate: (id, data, params = {}) => this.request(Object.assign({ path: `/api/notification-templates/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3122
3549
|
/**
|
|
@@ -3138,7 +3565,7 @@ export class Api extends HttpClient {
|
|
|
3138
3565
|
* @summary Restore
|
|
3139
3566
|
* @request POST:/api/notification-templates/{id}/restore
|
|
3140
3567
|
* @secure
|
|
3141
|
-
* @response `200` `NotificationTemplate`
|
|
3568
|
+
* @response `200` `NotificationTemplate` OK
|
|
3142
3569
|
*/
|
|
3143
3570
|
restoreNotificationTemplate: (id, params = {}) => this.request(Object.assign({ path: `/api/notification-templates/${id}/restore`, method: "POST", secure: true, format: "json" }, params)),
|
|
3144
3571
|
/**
|
|
@@ -3149,7 +3576,7 @@ export class Api extends HttpClient {
|
|
|
3149
3576
|
* @summary Get All
|
|
3150
3577
|
* @request GET:/api/notification-templates/{notificationId}/versions
|
|
3151
3578
|
* @secure
|
|
3152
|
-
* @response `200` `(NotificationTemplateVersion)[]`
|
|
3579
|
+
* @response `200` `(NotificationTemplateVersion)[]` OK
|
|
3153
3580
|
*/
|
|
3154
3581
|
getNotificationTemplateVersions: (notificationId, params = {}) => this.request(Object.assign({ path: `/api/notification-templates/${notificationId}/versions`, method: "GET", secure: true, format: "json" }, params)),
|
|
3155
3582
|
/**
|
|
@@ -3160,7 +3587,7 @@ export class Api extends HttpClient {
|
|
|
3160
3587
|
* @summary Create
|
|
3161
3588
|
* @request POST:/api/notification-templates/{notificationId}/versions
|
|
3162
3589
|
* @secure
|
|
3163
|
-
* @response `200` `NotificationTemplateVersion`
|
|
3590
|
+
* @response `200` `NotificationTemplateVersion` OK
|
|
3164
3591
|
*/
|
|
3165
3592
|
createNotificationTemplateVersion: (notificationId, data, params = {}) => this.request(Object.assign({ path: `/api/notification-templates/${notificationId}/versions`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3166
3593
|
/**
|
|
@@ -3171,7 +3598,7 @@ export class Api extends HttpClient {
|
|
|
3171
3598
|
* @summary Get by ID
|
|
3172
3599
|
* @request GET:/api/notification-templates/{notificationId}/versions/{id}
|
|
3173
3600
|
* @secure
|
|
3174
|
-
* @response `200` `NotificationTemplateVersion`
|
|
3601
|
+
* @response `200` `NotificationTemplateVersion` OK
|
|
3175
3602
|
*/
|
|
3176
3603
|
getNotificationTemplateVersion: (notificationId, id, params = {}) => this.request(Object.assign({ path: `/api/notification-templates/${notificationId}/versions/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
3177
3604
|
/**
|
|
@@ -3182,7 +3609,7 @@ export class Api extends HttpClient {
|
|
|
3182
3609
|
* @summary Replace
|
|
3183
3610
|
* @request PUT:/api/notification-templates/{notificationId}/versions/{id}
|
|
3184
3611
|
* @secure
|
|
3185
|
-
* @response `200` `NotificationTemplateVersion`
|
|
3612
|
+
* @response `200` `NotificationTemplateVersion` OK
|
|
3186
3613
|
*/
|
|
3187
3614
|
replaceNotificationTemplateVersion: (notificationId, id, data, params = {}) => this.request(Object.assign({ path: `/api/notification-templates/${notificationId}/versions/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3188
3615
|
/**
|
|
@@ -3193,7 +3620,7 @@ export class Api extends HttpClient {
|
|
|
3193
3620
|
* @summary Delete
|
|
3194
3621
|
* @request DELETE:/api/notification-templates/{notificationId}/versions/{id}
|
|
3195
3622
|
* @secure
|
|
3196
|
-
* @response `200` `NotificationTemplateVersion`
|
|
3623
|
+
* @response `200` `NotificationTemplateVersion` OK
|
|
3197
3624
|
*/
|
|
3198
3625
|
deleteNotificationTemplateVersion: (notificationId, id, params = {}) => this.request(Object.assign({ path: `/api/notification-templates/${notificationId}/versions/${id}`, method: "DELETE", secure: true, format: "json" }, params)),
|
|
3199
3626
|
/**
|
|
@@ -3204,7 +3631,7 @@ export class Api extends HttpClient {
|
|
|
3204
3631
|
* @summary Get All
|
|
3205
3632
|
* @request GET:/api/partners
|
|
3206
3633
|
* @secure
|
|
3207
|
-
* @response `200` `BranchUserPaginated`
|
|
3634
|
+
* @response `200` `BranchUserPaginated` OK
|
|
3208
3635
|
*/
|
|
3209
3636
|
getPartners: (query, params = {}) => this.request(Object.assign({ path: `/api/partners`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
3210
3637
|
/**
|
|
@@ -3215,7 +3642,7 @@ export class Api extends HttpClient {
|
|
|
3215
3642
|
* @summary Search
|
|
3216
3643
|
* @request POST:/api/partners/search
|
|
3217
3644
|
* @secure
|
|
3218
|
-
* @response `200` `BranchUserPaginated`
|
|
3645
|
+
* @response `200` `BranchUserPaginated` OK
|
|
3219
3646
|
*/
|
|
3220
3647
|
searchPartners: (data, query, params = {}) => this.request(Object.assign({ path: `/api/partners/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3221
3648
|
/**
|
|
@@ -3226,7 +3653,7 @@ export class Api extends HttpClient {
|
|
|
3226
3653
|
* @summary Get by ID
|
|
3227
3654
|
* @request GET:/api/partners/{id}
|
|
3228
3655
|
* @secure
|
|
3229
|
-
* @response `200` `BranchUser`
|
|
3656
|
+
* @response `200` `BranchUser` OK
|
|
3230
3657
|
*/
|
|
3231
3658
|
getPartner: (id, params = {}) => this.request(Object.assign({ path: `/api/partners/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
3232
3659
|
/**
|
|
@@ -3237,8 +3664,8 @@ export class Api extends HttpClient {
|
|
|
3237
3664
|
* @summary Create Site Configuration
|
|
3238
3665
|
* @request POST:/api/partners/{realtorId}/site-configurations
|
|
3239
3666
|
* @secure
|
|
3240
|
-
* @response `200` `SiteConfiguration`
|
|
3241
|
-
* @response `422` `UnprocessableEntity`
|
|
3667
|
+
* @response `200` `SiteConfiguration` OK
|
|
3668
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3242
3669
|
*/
|
|
3243
3670
|
createPartnerSiteConfiguration: (realtorId, data, params = {}) => this.request(Object.assign({ path: `/api/partners/${realtorId}/site-configurations`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3244
3671
|
/**
|
|
@@ -3249,7 +3676,7 @@ export class Api extends HttpClient {
|
|
|
3249
3676
|
* @summary Get Site Configuration
|
|
3250
3677
|
* @request GET:/api/partners/{realtorId}/site-configurations/{siteConfigurationId}
|
|
3251
3678
|
* @secure
|
|
3252
|
-
* @response `200` `SiteConfigurationWithInherited`
|
|
3679
|
+
* @response `200` `SiteConfigurationWithInherited` OK
|
|
3253
3680
|
*/
|
|
3254
3681
|
getPartnerSiteConfiguration: (realtorId, siteConfigurationId, params = {}) => this.request(Object.assign({ path: `/api/partners/${realtorId}/site-configurations/${siteConfigurationId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
3255
3682
|
/**
|
|
@@ -3260,8 +3687,8 @@ export class Api extends HttpClient {
|
|
|
3260
3687
|
* @summary Replace Site Configuration
|
|
3261
3688
|
* @request PUT:/api/partners/{realtorId}/site-configurations/{siteConfigurationId}
|
|
3262
3689
|
* @secure
|
|
3263
|
-
* @response `200` `SiteConfiguration`
|
|
3264
|
-
* @response `422` `UnprocessableEntity`
|
|
3690
|
+
* @response `200` `SiteConfiguration` OK
|
|
3691
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3265
3692
|
*/
|
|
3266
3693
|
replacePartnerSiteConfiguration: (realtorId, siteConfigurationId, data, query, params = {}) => this.request(Object.assign({ path: `/api/partners/${realtorId}/site-configurations/${siteConfigurationId}`, method: "PUT", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3267
3694
|
/**
|
|
@@ -3272,7 +3699,7 @@ export class Api extends HttpClient {
|
|
|
3272
3699
|
* @summary Get By ID
|
|
3273
3700
|
* @request GET:/api/site-configurations/{id}
|
|
3274
3701
|
* @secure
|
|
3275
|
-
* @response `200` `SiteConfiguration`
|
|
3702
|
+
* @response `200` `SiteConfiguration` OK
|
|
3276
3703
|
*/
|
|
3277
3704
|
getSiteConfiguration: (id, params = {}) => this.request(Object.assign({ path: `/api/site-configurations/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
3278
3705
|
/**
|
|
@@ -3284,8 +3711,8 @@ export class Api extends HttpClient {
|
|
|
3284
3711
|
* @request POST:/api/site-configurations/url
|
|
3285
3712
|
* @deprecated
|
|
3286
3713
|
* @secure
|
|
3287
|
-
* @response `200` `SiteConfigurationByUrl`
|
|
3288
|
-
* @response `422` `UnprocessableEntity`
|
|
3714
|
+
* @response `200` `SiteConfigurationByUrl` OK
|
|
3715
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3289
3716
|
*/
|
|
3290
3717
|
searchSiteConfigurationByUrl: (data, params = {}) => this.request(Object.assign({ path: `/api/site-configurations/url`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3291
3718
|
/**
|
|
@@ -3296,8 +3723,8 @@ export class Api extends HttpClient {
|
|
|
3296
3723
|
* @summary Get By URL
|
|
3297
3724
|
* @request GET:/api/site-configurations
|
|
3298
3725
|
* @secure
|
|
3299
|
-
* @response `200` `SiteConfigurationByUrl`
|
|
3300
|
-
* @response `422` `UnprocessableEntity`
|
|
3726
|
+
* @response `200` `SiteConfigurationByUrl` OK
|
|
3727
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3301
3728
|
*/
|
|
3302
3729
|
getSiteConfigurationByUrl: (query, params = {}) => this.request(Object.assign({ path: `/api/site-configurations`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
3303
3730
|
/**
|
|
@@ -3309,8 +3736,8 @@ export class Api extends HttpClient {
|
|
|
3309
3736
|
* @request POST:/api/site-configurations/louser
|
|
3310
3737
|
* @deprecated
|
|
3311
3738
|
* @secure
|
|
3312
|
-
* @response `200` `SiteConfiguration`
|
|
3313
|
-
* @response `422` `UnprocessableEntity`
|
|
3739
|
+
* @response `200` `SiteConfiguration` OK
|
|
3740
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3314
3741
|
*/
|
|
3315
3742
|
searchSiteConfigurationByLoanOfficerUser: (data, params = {}) => this.request(Object.assign({ path: `/api/site-configurations/louser`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3316
3743
|
/**
|
|
@@ -3321,8 +3748,8 @@ export class Api extends HttpClient {
|
|
|
3321
3748
|
* @summary Get By Loan Officer User
|
|
3322
3749
|
* @request GET:/api/site-configurations/louser/{loUserId}
|
|
3323
3750
|
* @secure
|
|
3324
|
-
* @response `200` `SiteConfiguration`
|
|
3325
|
-
* @response `422` `UnprocessableEntity`
|
|
3751
|
+
* @response `200` `SiteConfiguration` OK
|
|
3752
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3326
3753
|
*/
|
|
3327
3754
|
getSiteConfigurationByLoanOfficerUser: (loUserId, params = {}) => this.request(Object.assign({ path: `/api/site-configurations/louser/${loUserId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
3328
3755
|
/**
|
|
@@ -3333,8 +3760,8 @@ export class Api extends HttpClient {
|
|
|
3333
3760
|
* @summary Search
|
|
3334
3761
|
* @request POST:/api/site-configurations/search
|
|
3335
3762
|
* @secure
|
|
3336
|
-
* @response `200` `SiteConfigurationSummaryPaginated`
|
|
3337
|
-
* @response `422` `UnprocessableEntity`
|
|
3763
|
+
* @response `200` `SiteConfigurationSummaryPaginated` OK
|
|
3764
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3338
3765
|
*/
|
|
3339
3766
|
searchSiteConfigurations: (data, query, params = {}) => this.request(Object.assign({ path: `/api/site-configurations/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3340
3767
|
/**
|
|
@@ -3345,7 +3772,7 @@ export class Api extends HttpClient {
|
|
|
3345
3772
|
* @summary Get Forms by Site Configuration
|
|
3346
3773
|
* @request GET:/api/site-configurations/{id}/forms
|
|
3347
3774
|
* @secure
|
|
3348
|
-
* @response `200` `(AdminAccessGetForms)[]`
|
|
3775
|
+
* @response `200` `(AdminAccessGetForms)[]` OK
|
|
3349
3776
|
*/
|
|
3350
3777
|
getFormsBySiteConfiguration: (id, params = {}) => this.request(Object.assign({ path: `/api/site-configurations/${id}/forms`, method: "GET", secure: true, format: "json" }, params)),
|
|
3351
3778
|
/**
|
|
@@ -3356,7 +3783,7 @@ export class Api extends HttpClient {
|
|
|
3356
3783
|
* @summary Get Saml Metadata
|
|
3357
3784
|
* @request GET:/api/site-configurations/sso/saml/{ssoIntegration}/metadata
|
|
3358
3785
|
* @secure
|
|
3359
|
-
* @response `200` `File`
|
|
3786
|
+
* @response `200` `File` OK
|
|
3360
3787
|
* @response `404` `ProblemDetails` Not Found
|
|
3361
3788
|
*/
|
|
3362
3789
|
getSamlMetadata: (sSoIntegration, ssoIntegration, params = {}) => this.request(Object.assign({ path: `/api/site-configurations/sso/saml/${ssoIntegration}/metadata`, method: "GET", secure: true }, params)),
|
|
@@ -3368,7 +3795,7 @@ export class Api extends HttpClient {
|
|
|
3368
3795
|
* @summary Create or Replace Saml Metadata
|
|
3369
3796
|
* @request POST:/api/site-configurations/sso/saml/{ssoIntegration}/metadata
|
|
3370
3797
|
* @secure
|
|
3371
|
-
* @response `200` `File`
|
|
3798
|
+
* @response `200` `File` OK
|
|
3372
3799
|
*/
|
|
3373
3800
|
createOrReplaceSamlMetadata: (sSoIntegration, ssoIntegration, params = {}) => this.request(Object.assign({ path: `/api/site-configurations/sso/saml/${ssoIntegration}/metadata`, method: "POST", secure: true }, params)),
|
|
3374
3801
|
/**
|
|
@@ -3379,7 +3806,7 @@ export class Api extends HttpClient {
|
|
|
3379
3806
|
* @summary List all site configurations assigned to a workflow
|
|
3380
3807
|
* @request GET:/api/workflows/{workflowId}/site-configurations
|
|
3381
3808
|
* @secure
|
|
3382
|
-
* @response `200` `(SiteConfigurationForm)[]`
|
|
3809
|
+
* @response `200` `(SiteConfigurationForm)[]` OK
|
|
3383
3810
|
*/
|
|
3384
3811
|
getWorkflowSiteConfigurations: (workflowId, params = {}) => this.request(Object.assign({ path: `/api/workflows/${workflowId}/site-configurations`, method: "GET", secure: true, format: "json" }, params)),
|
|
3385
3812
|
/**
|
|
@@ -3390,7 +3817,7 @@ export class Api extends HttpClient {
|
|
|
3390
3817
|
* @summary Get the workflow-site configuration assignment by composite key
|
|
3391
3818
|
* @request GET:/api/workflows/{workflowId}/site-configurations/{siteConfigurationId}
|
|
3392
3819
|
* @secure
|
|
3393
|
-
* @response `200` `SiteConfigurationForm`
|
|
3820
|
+
* @response `200` `SiteConfigurationForm` OK
|
|
3394
3821
|
* @response `404` `ProblemDetails` Not Found
|
|
3395
3822
|
*/
|
|
3396
3823
|
getWorkflowSiteConfiguration: (workflowId, siteConfigurationId, params = {}) => this.request(Object.assign({ path: `/api/workflows/${workflowId}/site-configurations/${siteConfigurationId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -3404,7 +3831,7 @@ export class Api extends HttpClient {
|
|
|
3404
3831
|
* @secure
|
|
3405
3832
|
* @response `201` `SiteConfigurationForm` Created
|
|
3406
3833
|
* @response `409` `ProblemDetails` Conflict
|
|
3407
|
-
* @response `422` `UnprocessableEntity`
|
|
3834
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3408
3835
|
*/
|
|
3409
3836
|
createWorkflowSiteConfiguration: (workflowId, siteConfigurationId, params = {}) => this.request(Object.assign({ path: `/api/workflows/${workflowId}/site-configurations/${siteConfigurationId}`, method: "POST", secure: true, format: "json" }, params)),
|
|
3410
3837
|
/**
|
|
@@ -3426,7 +3853,7 @@ export class Api extends HttpClient {
|
|
|
3426
3853
|
* @summary Get By Site Configuration Slug
|
|
3427
3854
|
* @request POST:/api/site-forms
|
|
3428
3855
|
* @secure
|
|
3429
|
-
* @response `200` `GetForm`
|
|
3856
|
+
* @response `200` `GetForm` OK
|
|
3430
3857
|
*/
|
|
3431
3858
|
getFormBySiteConfigurationSlug: (data, params = {}) => this.request(Object.assign({ path: `/api/site-forms`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3432
3859
|
/**
|
|
@@ -3437,7 +3864,7 @@ export class Api extends HttpClient {
|
|
|
3437
3864
|
* @summary Get by Users
|
|
3438
3865
|
* @request GET:/api/surveys
|
|
3439
3866
|
* @secure
|
|
3440
|
-
* @response `200` `(SocialSurveyRecord)[]`
|
|
3867
|
+
* @response `200` `(SocialSurveyRecord)[]` OK
|
|
3441
3868
|
*/
|
|
3442
3869
|
getSurveysByUsers: (query, params = {}) => this.request(Object.assign({ path: `/api/surveys`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
3443
3870
|
/**
|
|
@@ -3448,8 +3875,8 @@ export class Api extends HttpClient {
|
|
|
3448
3875
|
* @summary Get by User
|
|
3449
3876
|
* @request POST:/api/surveys
|
|
3450
3877
|
* @secure
|
|
3451
|
-
* @response `200` `(SocialSurveyRecord)[]`
|
|
3452
|
-
* @response `422` `UnprocessableEntity`
|
|
3878
|
+
* @response `200` `(SocialSurveyRecord)[]` OK
|
|
3879
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3453
3880
|
*/
|
|
3454
3881
|
getSurveysByUser: (data, params = {}) => this.request(Object.assign({ path: `/api/surveys`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3455
3882
|
/**
|
|
@@ -3460,7 +3887,7 @@ export class Api extends HttpClient {
|
|
|
3460
3887
|
* @summary Get All
|
|
3461
3888
|
* @request GET:/api/tasks
|
|
3462
3889
|
* @secure
|
|
3463
|
-
* @response `200` `Task`
|
|
3890
|
+
* @response `200` `Task` OK
|
|
3464
3891
|
* @response `404` `ProblemDetails` Not Found
|
|
3465
3892
|
*/
|
|
3466
3893
|
getTasks: (query, params = {}) => this.request(Object.assign({ path: `/api/tasks`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
@@ -3483,7 +3910,7 @@ export class Api extends HttpClient {
|
|
|
3483
3910
|
* @summary Get By ID
|
|
3484
3911
|
* @request GET:/api/tasks/{id}
|
|
3485
3912
|
* @secure
|
|
3486
|
-
* @response `200` `Task`
|
|
3913
|
+
* @response `200` `Task` OK
|
|
3487
3914
|
* @response `404` `ProblemDetails` Not Found
|
|
3488
3915
|
*/
|
|
3489
3916
|
getTask: (id, params = {}) => this.request(Object.assign({ path: `/api/tasks/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -3495,10 +3922,10 @@ export class Api extends HttpClient {
|
|
|
3495
3922
|
* @summary Replace
|
|
3496
3923
|
* @request PUT:/api/tasks/{id}
|
|
3497
3924
|
* @secure
|
|
3498
|
-
* @response `200` `
|
|
3925
|
+
* @response `200` `Task` OK
|
|
3499
3926
|
* @response `404` `ProblemDetails` Not Found
|
|
3500
3927
|
*/
|
|
3501
|
-
replaceTask: (id, data, params = {}) => this.request(Object.assign({ path: `/api/tasks/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json }, params)),
|
|
3928
|
+
replaceTask: (id, data, params = {}) => this.request(Object.assign({ path: `/api/tasks/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3502
3929
|
/**
|
|
3503
3930
|
* No description
|
|
3504
3931
|
*
|
|
@@ -3519,7 +3946,7 @@ export class Api extends HttpClient {
|
|
|
3519
3946
|
* @summary Search
|
|
3520
3947
|
* @request POST:/api/tasks/search
|
|
3521
3948
|
* @secure
|
|
3522
|
-
* @response `200` `TaskPaginated`
|
|
3949
|
+
* @response `200` `TaskPaginated` OK
|
|
3523
3950
|
*/
|
|
3524
3951
|
searchTasks: (data, query, params = {}) => this.request(Object.assign({ path: `/api/tasks/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3525
3952
|
/**
|
|
@@ -3529,7 +3956,7 @@ export class Api extends HttpClient {
|
|
|
3529
3956
|
* @name IntegrationsLosLoansCreate
|
|
3530
3957
|
* @request POST:/api/integrations/los/loans
|
|
3531
3958
|
* @secure
|
|
3532
|
-
* @response `200` `void`
|
|
3959
|
+
* @response `200` `void` OK
|
|
3533
3960
|
*/
|
|
3534
3961
|
integrationsLosLoansCreate: (data, params = {}) => this.request(Object.assign({ path: `/api/integrations/los/loans`, method: "POST", body: data, secure: true, type: ContentType.Json }, params)),
|
|
3535
3962
|
/**
|
|
@@ -3537,9 +3964,10 @@ export class Api extends HttpClient {
|
|
|
3537
3964
|
*
|
|
3538
3965
|
* @tags TheBigPOS
|
|
3539
3966
|
* @name SearchEncompassLogs
|
|
3967
|
+
* @summary Search Encompass Logs
|
|
3540
3968
|
* @request POST:/api/los/encompass/logs/{losId}/search
|
|
3541
3969
|
* @secure
|
|
3542
|
-
* @response `200` `EncompassRequestLogPaginated`
|
|
3970
|
+
* @response `200` `EncompassRequestLogPaginated` OK
|
|
3543
3971
|
*/
|
|
3544
3972
|
searchEncompassLogs: (losId, query, data, params = {}) => this.request(Object.assign({ path: `/api/los/encompass/logs/${losId}/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3545
3973
|
/**
|
|
@@ -3547,9 +3975,10 @@ export class Api extends HttpClient {
|
|
|
3547
3975
|
*
|
|
3548
3976
|
* @tags TheBigPOS
|
|
3549
3977
|
* @name GetEncompassCredentials
|
|
3978
|
+
* @summary Get Encompass Credentials for the current account
|
|
3550
3979
|
* @request GET:/api/los/encompass/credentials
|
|
3551
3980
|
* @secure
|
|
3552
|
-
* @response `200` `EncompassCredentialsDetail`
|
|
3981
|
+
* @response `200` `EncompassCredentialsDetail` OK
|
|
3553
3982
|
* @response `204` `void` No Content
|
|
3554
3983
|
*/
|
|
3555
3984
|
getEncompassCredentials: (params = {}) => this.request(Object.assign({ path: `/api/los/encompass/credentials`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -3558,6 +3987,7 @@ export class Api extends HttpClient {
|
|
|
3558
3987
|
*
|
|
3559
3988
|
* @tags TheBigPOS
|
|
3560
3989
|
* @name CreateEncompassCredentials
|
|
3990
|
+
* @summary Create Encompass Credentials for the current account
|
|
3561
3991
|
* @request POST:/api/los/encompass/credentials
|
|
3562
3992
|
* @secure
|
|
3563
3993
|
* @response `201` `LosCredentials` Created
|
|
@@ -3568,9 +3998,10 @@ export class Api extends HttpClient {
|
|
|
3568
3998
|
*
|
|
3569
3999
|
* @tags TheBigPOS
|
|
3570
4000
|
* @name UpdateEncompassCredentials
|
|
4001
|
+
* @summary Update Encompass Credentials for the current account
|
|
3571
4002
|
* @request PUT:/api/los/encompass/credentials
|
|
3572
4003
|
* @secure
|
|
3573
|
-
* @response `200` `EncompassCredentialsDetail`
|
|
4004
|
+
* @response `200` `EncompassCredentialsDetail` OK
|
|
3574
4005
|
*/
|
|
3575
4006
|
updateEncompassCredentials: (data, params = {}) => this.request(Object.assign({ path: `/api/los/encompass/credentials`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3576
4007
|
/**
|
|
@@ -3578,9 +4009,10 @@ export class Api extends HttpClient {
|
|
|
3578
4009
|
*
|
|
3579
4010
|
* @tags TheBigPOS
|
|
3580
4011
|
* @name GetEncompassWebhooks
|
|
4012
|
+
* @summary Get Encompass webhooks filtered by current domain
|
|
3581
4013
|
* @request GET:/api/los/encompass/webhooks
|
|
3582
4014
|
* @secure
|
|
3583
|
-
* @response `200` `(LosWebhook)[]`
|
|
4015
|
+
* @response `200` `(LosWebhook)[]` OK
|
|
3584
4016
|
*/
|
|
3585
4017
|
getEncompassWebhooks: (params = {}) => this.request(Object.assign({ path: `/api/los/encompass/webhooks`, method: "GET", secure: true, format: "json" }, params)),
|
|
3586
4018
|
/**
|
|
@@ -3588,6 +4020,7 @@ export class Api extends HttpClient {
|
|
|
3588
4020
|
*
|
|
3589
4021
|
* @tags TheBigPOS
|
|
3590
4022
|
* @name CreateEncompassWebhook
|
|
4023
|
+
* @summary Register a webhook in Encompass
|
|
3591
4024
|
* @request POST:/api/los/encompass/webhooks
|
|
3592
4025
|
* @secure
|
|
3593
4026
|
* @response `201` `LosWebhook` Created
|
|
@@ -3598,6 +4031,7 @@ export class Api extends HttpClient {
|
|
|
3598
4031
|
*
|
|
3599
4032
|
* @tags TheBigPOS
|
|
3600
4033
|
* @name DeleteEncompassWebhook
|
|
4034
|
+
* @summary Delete a webhook from Encompass
|
|
3601
4035
|
* @request DELETE:/api/los/encompass/webhooks/{webhookId}
|
|
3602
4036
|
* @secure
|
|
3603
4037
|
* @response `204` `void` No Content
|
|
@@ -3608,9 +4042,10 @@ export class Api extends HttpClient {
|
|
|
3608
4042
|
*
|
|
3609
4043
|
* @tags TheBigPOS
|
|
3610
4044
|
* @name SearchLosSyncs
|
|
4045
|
+
* @summary Search LOS Sync History
|
|
3611
4046
|
* @request POST:/api/los/encompass/syncs/{loanId}/search
|
|
3612
4047
|
* @secure
|
|
3613
|
-
* @response `200` `LosSyncPaginated`
|
|
4048
|
+
* @response `200` `LosSyncPaginated` OK
|
|
3614
4049
|
*/
|
|
3615
4050
|
searchLosSyncs: (loanId, query, data, params = {}) => this.request(Object.assign({ path: `/api/los/encompass/syncs/${loanId}/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3616
4051
|
/**
|
|
@@ -3621,7 +4056,7 @@ export class Api extends HttpClient {
|
|
|
3621
4056
|
* @summary Get usage report by ID
|
|
3622
4057
|
* @request GET:/api/usage-reports/{id}
|
|
3623
4058
|
* @secure
|
|
3624
|
-
* @response `200` `UsageReport`
|
|
4059
|
+
* @response `200` `UsageReport` OK
|
|
3625
4060
|
* @response `404` `ProblemDetails` Not Found
|
|
3626
4061
|
*/
|
|
3627
4062
|
getUsageReportById: (id, params = {}) => this.request(Object.assign({ path: `/api/usage-reports/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -3633,7 +4068,7 @@ export class Api extends HttpClient {
|
|
|
3633
4068
|
* @summary Get usage reports by month and year
|
|
3634
4069
|
* @request GET:/api/usage-reports
|
|
3635
4070
|
* @secure
|
|
3636
|
-
* @response `200` `(UsageReport)[]`
|
|
4071
|
+
* @response `200` `(UsageReport)[]` OK
|
|
3637
4072
|
* @response `400` `ProblemDetails` Bad Request
|
|
3638
4073
|
*/
|
|
3639
4074
|
getUsageReportsByPeriod: (query, params = {}) => this.request(Object.assign({ path: `/api/usage-reports`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
@@ -3657,7 +4092,7 @@ export class Api extends HttpClient {
|
|
|
3657
4092
|
* @summary Get usage report execution dashboard with active execution, recent history, and statistics
|
|
3658
4093
|
* @request GET:/api/usage-reports/dashboard
|
|
3659
4094
|
* @secure
|
|
3660
|
-
* @response `200` `UsageReportDashboard`
|
|
4095
|
+
* @response `200` `UsageReportDashboard` OK
|
|
3661
4096
|
*/
|
|
3662
4097
|
getUsageReportDashboard: (params = {}) => this.request(Object.assign({ path: `/api/usage-reports/dashboard`, method: "GET", secure: true, format: "json" }, params)),
|
|
3663
4098
|
/**
|
|
@@ -3668,7 +4103,7 @@ export class Api extends HttpClient {
|
|
|
3668
4103
|
* @summary Get usage report execution status by correlation ID
|
|
3669
4104
|
* @request GET:/api/usage-reports/executions/{correlationId}
|
|
3670
4105
|
* @secure
|
|
3671
|
-
* @response `200` `UsageReportExecution`
|
|
4106
|
+
* @response `200` `UsageReportExecution` OK
|
|
3672
4107
|
* @response `404` `ProblemDetails` Not Found
|
|
3673
4108
|
*/
|
|
3674
4109
|
getUsageReportExecution: (correlationId, params = {}) => this.request(Object.assign({ path: `/api/usage-reports/executions/${correlationId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -3680,7 +4115,7 @@ export class Api extends HttpClient {
|
|
|
3680
4115
|
* @summary Get usage report executions by month and year
|
|
3681
4116
|
* @request GET:/api/usage-reports/executions
|
|
3682
4117
|
* @secure
|
|
3683
|
-
* @response `200` `(UsageReportExecution)[]`
|
|
4118
|
+
* @response `200` `(UsageReportExecution)[]` OK
|
|
3684
4119
|
* @response `400` `ProblemDetails` Bad Request
|
|
3685
4120
|
*/
|
|
3686
4121
|
getUsageReportExecutionsByPeriod: (query, params = {}) => this.request(Object.assign({ path: `/api/usage-reports/executions`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
@@ -3716,7 +4151,7 @@ export class Api extends HttpClient {
|
|
|
3716
4151
|
* @summary Get draft users
|
|
3717
4152
|
* @request GET:/api/loans/drafts/{draftId}/users
|
|
3718
4153
|
* @secure
|
|
3719
|
-
* @response `200` `UserDraftPaginated`
|
|
4154
|
+
* @response `200` `UserDraftPaginated` OK
|
|
3720
4155
|
*/
|
|
3721
4156
|
getDraftUsers: (draftId, query, params = {}) => this.request(Object.assign({ path: `/api/loans/drafts/${draftId}/users`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
3722
4157
|
/**
|
|
@@ -3727,7 +4162,7 @@ export class Api extends HttpClient {
|
|
|
3727
4162
|
* @summary Get draft user
|
|
3728
4163
|
* @request GET:/api/loans/drafts/{draftId}/users/{userId}
|
|
3729
4164
|
* @secure
|
|
3730
|
-
* @response `200` `UserDraft`
|
|
4165
|
+
* @response `200` `UserDraft` OK
|
|
3731
4166
|
*/
|
|
3732
4167
|
getDraftUser: (draftId, userId, params = {}) => this.request(Object.assign({ path: `/api/loans/drafts/${draftId}/users/${userId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
3733
4168
|
/**
|
|
@@ -3738,7 +4173,7 @@ export class Api extends HttpClient {
|
|
|
3738
4173
|
* @summary Add draft user
|
|
3739
4174
|
* @request POST:/api/loans/drafts/{draftId}/users/{userId}
|
|
3740
4175
|
* @secure
|
|
3741
|
-
* @response `200` `UserDraft`
|
|
4176
|
+
* @response `200` `UserDraft` OK
|
|
3742
4177
|
*/
|
|
3743
4178
|
addDraftUsers: (draftId, userId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/drafts/${draftId}/users/${userId}`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3744
4179
|
/**
|
|
@@ -3760,7 +4195,7 @@ export class Api extends HttpClient {
|
|
|
3760
4195
|
* @summary Get All
|
|
3761
4196
|
* @request GET:/api/user-groups/{groupId}/scopes
|
|
3762
4197
|
* @secure
|
|
3763
|
-
* @response `200` `(UserGroupAccessScope)[]`
|
|
4198
|
+
* @response `200` `(UserGroupAccessScope)[]` OK
|
|
3764
4199
|
*/
|
|
3765
4200
|
getUserGroupAccessScopes: (groupId, params = {}) => this.request(Object.assign({ path: `/api/user-groups/${groupId}/scopes`, method: "GET", secure: true, format: "json" }, params)),
|
|
3766
4201
|
/**
|
|
@@ -3771,7 +4206,7 @@ export class Api extends HttpClient {
|
|
|
3771
4206
|
* @summary Create a new scope
|
|
3772
4207
|
* @request POST:/api/user-groups/{groupId}/scopes
|
|
3773
4208
|
* @secure
|
|
3774
|
-
* @response `200` `UserGroupAccessScope`
|
|
4209
|
+
* @response `200` `UserGroupAccessScope` OK
|
|
3775
4210
|
*/
|
|
3776
4211
|
createUserGroupAccessScope: (groupId, data, params = {}) => this.request(Object.assign({ path: `/api/user-groups/${groupId}/scopes`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3777
4212
|
/**
|
|
@@ -3793,7 +4228,7 @@ export class Api extends HttpClient {
|
|
|
3793
4228
|
* @summary Get All
|
|
3794
4229
|
* @request GET:/api/user-groups/{groupId}/members
|
|
3795
4230
|
* @secure
|
|
3796
|
-
* @response `200` `(UserGroupMember)[]`
|
|
4231
|
+
* @response `200` `(UserGroupMember)[]` OK
|
|
3797
4232
|
*/
|
|
3798
4233
|
getUserGroupMembers: (groupId, params = {}) => this.request(Object.assign({ path: `/api/user-groups/${groupId}/members`, method: "GET", secure: true, format: "json" }, params)),
|
|
3799
4234
|
/**
|
|
@@ -3804,7 +4239,7 @@ export class Api extends HttpClient {
|
|
|
3804
4239
|
* @summary Create User Group Member
|
|
3805
4240
|
* @request POST:/api/user-groups/{groupId}/members
|
|
3806
4241
|
* @secure
|
|
3807
|
-
* @response `200` `UserGroupMember`
|
|
4242
|
+
* @response `200` `UserGroupMember` OK
|
|
3808
4243
|
*/
|
|
3809
4244
|
createUserGroupMember: (groupId, data, query, params = {}) => this.request(Object.assign({ path: `/api/user-groups/${groupId}/members`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3810
4245
|
/**
|
|
@@ -3826,7 +4261,7 @@ export class Api extends HttpClient {
|
|
|
3826
4261
|
* @summary Get All
|
|
3827
4262
|
* @request POST:/api/user-groups/search
|
|
3828
4263
|
* @secure
|
|
3829
|
-
* @response `200` `UserGroupPaginated`
|
|
4264
|
+
* @response `200` `UserGroupPaginated` OK
|
|
3830
4265
|
*/
|
|
3831
4266
|
searchUserGroups: (query, params = {}) => this.request(Object.assign({ path: `/api/user-groups/search`, method: "POST", query: query, secure: true, format: "json" }, params)),
|
|
3832
4267
|
/**
|
|
@@ -3837,7 +4272,7 @@ export class Api extends HttpClient {
|
|
|
3837
4272
|
* @summary Get User Group by ID
|
|
3838
4273
|
* @request GET:/api/user-groups/{groupId}
|
|
3839
4274
|
* @secure
|
|
3840
|
-
* @response `200` `UserGroup`
|
|
4275
|
+
* @response `200` `UserGroup` OK
|
|
3841
4276
|
*/
|
|
3842
4277
|
getUserGroup: (groupId, params = {}) => this.request(Object.assign({ path: `/api/user-groups/${groupId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
3843
4278
|
/**
|
|
@@ -3848,7 +4283,7 @@ export class Api extends HttpClient {
|
|
|
3848
4283
|
* @summary Update User Group
|
|
3849
4284
|
* @request PUT:/api/user-groups/{groupId}
|
|
3850
4285
|
* @secure
|
|
3851
|
-
* @response `200` `UserGroup`
|
|
4286
|
+
* @response `200` `UserGroup` OK
|
|
3852
4287
|
*/
|
|
3853
4288
|
updateUserGroup: (groupId, data, params = {}) => this.request(Object.assign({ path: `/api/user-groups/${groupId}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
3854
4289
|
/**
|
|
@@ -3883,7 +4318,7 @@ export class Api extends HttpClient {
|
|
|
3883
4318
|
* @secure
|
|
3884
4319
|
* @response `204` `void` No Content
|
|
3885
4320
|
* @response `404` `Error` Not Found
|
|
3886
|
-
* @response `422` `UnprocessableEntity`
|
|
4321
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3887
4322
|
*/
|
|
3888
4323
|
requestImpersonation: (data, params = {}) => this.request(Object.assign({ path: `/api/users/impersonation/request`, method: "POST", body: data, secure: true, type: ContentType.Json }, params)),
|
|
3889
4324
|
/**
|
|
@@ -3896,7 +4331,7 @@ export class Api extends HttpClient {
|
|
|
3896
4331
|
* @secure
|
|
3897
4332
|
* @response `204` `void` No Content
|
|
3898
4333
|
* @response `404` `Error` Not Found
|
|
3899
|
-
* @response `422` `UnprocessableEntity`
|
|
4334
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3900
4335
|
*/
|
|
3901
4336
|
allowImpersonation: (data, params = {}) => this.request(Object.assign({ path: `/api/users/impersonation/allow`, method: "POST", body: data, secure: true, type: ContentType.Json }, params)),
|
|
3902
4337
|
/**
|
|
@@ -3909,7 +4344,7 @@ export class Api extends HttpClient {
|
|
|
3909
4344
|
* @secure
|
|
3910
4345
|
* @response `204` `void` No Content
|
|
3911
4346
|
* @response `404` `Error` Not Found
|
|
3912
|
-
* @response `422` `UnprocessableEntity`
|
|
4347
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3913
4348
|
*/
|
|
3914
4349
|
allowImpersonationWithGuid: (allowToken, params = {}) => this.request(Object.assign({ path: `/api/users/impersonation/allow/${allowToken}`, method: "POST", secure: true }, params)),
|
|
3915
4350
|
/**
|
|
@@ -3921,7 +4356,7 @@ export class Api extends HttpClient {
|
|
|
3921
4356
|
* @request POST:/api/users/impersonation
|
|
3922
4357
|
* @secure
|
|
3923
4358
|
* @response `204` `void` No Content
|
|
3924
|
-
* @response `422` `UnprocessableEntity`
|
|
4359
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3925
4360
|
*/
|
|
3926
4361
|
beginImpersonation: (params = {}) => this.request(Object.assign({ path: `/api/users/impersonation`, method: "POST", secure: true }, params)),
|
|
3927
4362
|
/**
|
|
@@ -3933,7 +4368,7 @@ export class Api extends HttpClient {
|
|
|
3933
4368
|
* @request DELETE:/api/users/impersonation
|
|
3934
4369
|
* @secure
|
|
3935
4370
|
* @response `204` `void` No Content
|
|
3936
|
-
* @response `422` `UnprocessableEntity`
|
|
4371
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3937
4372
|
*/
|
|
3938
4373
|
stopImpersonation: (params = {}) => this.request(Object.assign({ path: `/api/users/impersonation`, method: "DELETE", secure: true }, params)),
|
|
3939
4374
|
/**
|
|
@@ -3946,7 +4381,7 @@ export class Api extends HttpClient {
|
|
|
3946
4381
|
* @secure
|
|
3947
4382
|
* @response `204` `void` No Content
|
|
3948
4383
|
* @response `404` `Error` Not Found
|
|
3949
|
-
* @response `422` `UnprocessableEntity`
|
|
4384
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3950
4385
|
*/
|
|
3951
4386
|
forceImpersonation: (data, params = {}) => this.request(Object.assign({ path: `/api/users/impersonation/force`, method: "POST", body: data, secure: true, type: ContentType.Json }, params)),
|
|
3952
4387
|
/**
|
|
@@ -3958,7 +4393,7 @@ export class Api extends HttpClient {
|
|
|
3958
4393
|
* @request POST:/api/users/impersonation/extend
|
|
3959
4394
|
* @secure
|
|
3960
4395
|
* @response `204` `void` No Content
|
|
3961
|
-
* @response `422` `UnprocessableEntity`
|
|
4396
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3962
4397
|
*/
|
|
3963
4398
|
extendImpersonation: (params = {}) => this.request(Object.assign({ path: `/api/users/impersonation/extend`, method: "POST", secure: true }, params)),
|
|
3964
4399
|
/**
|
|
@@ -3970,7 +4405,7 @@ export class Api extends HttpClient {
|
|
|
3970
4405
|
* @request POST:/api/users/invites
|
|
3971
4406
|
* @secure
|
|
3972
4407
|
* @response `204` `void` No Content
|
|
3973
|
-
* @response `422` `UnprocessableEntity`
|
|
4408
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3974
4409
|
*/
|
|
3975
4410
|
inviteUser: (data, params = {}) => this.request(Object.assign({ path: `/api/users/invites`, method: "POST", body: data, secure: true, type: ContentType.Json }, params)),
|
|
3976
4411
|
/**
|
|
@@ -3994,8 +4429,8 @@ export class Api extends HttpClient {
|
|
|
3994
4429
|
* @summary Verify
|
|
3995
4430
|
* @request GET:/api/users/invites/{token}/verify
|
|
3996
4431
|
* @secure
|
|
3997
|
-
* @response `200` `Invite`
|
|
3998
|
-
* @response `422` `UnprocessableEntity`
|
|
4432
|
+
* @response `200` `Invite` OK
|
|
4433
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3999
4434
|
*/
|
|
4000
4435
|
verifyUserInvite: (token, params = {}) => this.request(Object.assign({ path: `/api/users/invites/${token}/verify`, method: "GET", secure: true, format: "json" }, params)),
|
|
4001
4436
|
/**
|
|
@@ -4006,7 +4441,7 @@ export class Api extends HttpClient {
|
|
|
4006
4441
|
* @summary Get All
|
|
4007
4442
|
* @request GET:/api/users/{userID}/relations
|
|
4008
4443
|
* @secure
|
|
4009
|
-
* @response `200` `(UserRelation)[]`
|
|
4444
|
+
* @response `200` `(UserRelation)[]` OK
|
|
4010
4445
|
*/
|
|
4011
4446
|
getUserRelations: (userId, params = {}) => this.request(Object.assign({ path: `/api/users/${userId}/relations`, method: "GET", secure: true, format: "json" }, params)),
|
|
4012
4447
|
/**
|
|
@@ -4028,7 +4463,7 @@ export class Api extends HttpClient {
|
|
|
4028
4463
|
* @summary Get by ID
|
|
4029
4464
|
* @request GET:/api/users/{userID}/relations/{id}
|
|
4030
4465
|
* @secure
|
|
4031
|
-
* @response `200` `UserRelation`
|
|
4466
|
+
* @response `200` `UserRelation` OK
|
|
4032
4467
|
*/
|
|
4033
4468
|
getUserRelation: (userId, id, params = {}) => this.request(Object.assign({ path: `/api/users/${userId}/relations/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
4034
4469
|
/**
|
|
@@ -4050,7 +4485,7 @@ export class Api extends HttpClient {
|
|
|
4050
4485
|
* @summary Get All
|
|
4051
4486
|
* @request GET:/api/users
|
|
4052
4487
|
* @secure
|
|
4053
|
-
* @response `200` `(User)[]`
|
|
4488
|
+
* @response `200` `(User)[]` OK
|
|
4054
4489
|
*/
|
|
4055
4490
|
getUsers: (query, params = {}) => this.request(Object.assign({ path: `/api/users`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
4056
4491
|
/**
|
|
@@ -4061,8 +4496,8 @@ export class Api extends HttpClient {
|
|
|
4061
4496
|
* @summary Create
|
|
4062
4497
|
* @request POST:/api/users
|
|
4063
4498
|
* @secure
|
|
4064
|
-
* @response `200` `DetailedUser`
|
|
4065
|
-
* @response `422` `UnprocessableEntity`
|
|
4499
|
+
* @response `200` `DetailedUser` OK
|
|
4500
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
4066
4501
|
*/
|
|
4067
4502
|
createUser: (data, params = {}) => this.request(Object.assign({ path: `/api/users`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
4068
4503
|
/**
|
|
@@ -4073,7 +4508,7 @@ export class Api extends HttpClient {
|
|
|
4073
4508
|
* @summary Search
|
|
4074
4509
|
* @request POST:/api/users/search
|
|
4075
4510
|
* @secure
|
|
4076
|
-
* @response `200` `UserPaginated`
|
|
4511
|
+
* @response `200` `UserPaginated` OK
|
|
4077
4512
|
*/
|
|
4078
4513
|
searchUsers: (data, query, params = {}) => this.request(Object.assign({ path: `/api/users/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
4079
4514
|
/**
|
|
@@ -4084,7 +4519,7 @@ export class Api extends HttpClient {
|
|
|
4084
4519
|
* @summary Get by Email
|
|
4085
4520
|
* @request POST:/api/users/byemail
|
|
4086
4521
|
* @secure
|
|
4087
|
-
* @response `200` `AdminAccessUser`
|
|
4522
|
+
* @response `200` `AdminAccessUser` OK
|
|
4088
4523
|
*/
|
|
4089
4524
|
getUserByEmail: (data, params = {}) => this.request(Object.assign({ path: `/api/users/byemail`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
4090
4525
|
/**
|
|
@@ -4095,8 +4530,8 @@ export class Api extends HttpClient {
|
|
|
4095
4530
|
* @summary Sign Up
|
|
4096
4531
|
* @request POST:/api/users/register
|
|
4097
4532
|
* @secure
|
|
4098
|
-
* @response `200` `User`
|
|
4099
|
-
* @response `422` `UnprocessableEntity`
|
|
4533
|
+
* @response `200` `User` OK
|
|
4534
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
4100
4535
|
*/
|
|
4101
4536
|
signUp: (data, params = {}) => this.request(Object.assign({ path: `/api/users/register`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
4102
4537
|
/**
|
|
@@ -4107,8 +4542,8 @@ export class Api extends HttpClient {
|
|
|
4107
4542
|
* @summary Update
|
|
4108
4543
|
* @request PUT:/api/users/{id}
|
|
4109
4544
|
* @secure
|
|
4110
|
-
* @response `200` `DetailedUser`
|
|
4111
|
-
* @response `422` `UnprocessableEntity`
|
|
4545
|
+
* @response `200` `DetailedUser` OK
|
|
4546
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
4112
4547
|
*/
|
|
4113
4548
|
replaceUser: (id, data, params = {}) => this.request(Object.assign({ path: `/api/users/${id}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
4114
4549
|
/**
|
|
@@ -4142,7 +4577,7 @@ export class Api extends HttpClient {
|
|
|
4142
4577
|
* @request POST:/api/users/change-password
|
|
4143
4578
|
* @secure
|
|
4144
4579
|
* @response `204` `void` No Content
|
|
4145
|
-
* @response `422` `UnprocessableEntity`
|
|
4580
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
4146
4581
|
*/
|
|
4147
4582
|
changePassword: (data, params = {}) => this.request(Object.assign({ path: `/api/users/change-password`, method: "POST", body: data, secure: true, type: ContentType.Json }, params)),
|
|
4148
4583
|
/**
|
|
@@ -4154,7 +4589,7 @@ export class Api extends HttpClient {
|
|
|
4154
4589
|
* @request POST:/api/users/verify-password
|
|
4155
4590
|
* @secure
|
|
4156
4591
|
* @response `204` `void` No Content
|
|
4157
|
-
* @response `422` `UnprocessableEntity`
|
|
4592
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
4158
4593
|
*/
|
|
4159
4594
|
verifyPassword: (data, params = {}) => this.request(Object.assign({ path: `/api/users/verify-password`, method: "POST", body: data, secure: true, type: ContentType.Json }, params)),
|
|
4160
4595
|
/**
|
|
@@ -4166,7 +4601,7 @@ export class Api extends HttpClient {
|
|
|
4166
4601
|
* @request POST:/api/users/{id}/override-password
|
|
4167
4602
|
* @secure
|
|
4168
4603
|
* @response `204` `void` No Content
|
|
4169
|
-
* @response `422` `UnprocessableEntity`
|
|
4604
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
4170
4605
|
*/
|
|
4171
4606
|
overridePassword: (id, data, params = {}) => this.request(Object.assign({ path: `/api/users/${id}/override-password`, method: "POST", body: data, secure: true, type: ContentType.Json }, params)),
|
|
4172
4607
|
/**
|
|
@@ -4178,7 +4613,7 @@ export class Api extends HttpClient {
|
|
|
4178
4613
|
* @request POST:/api/users/forgot-password
|
|
4179
4614
|
* @secure
|
|
4180
4615
|
* @response `204` `void` No Content
|
|
4181
|
-
* @response `422` `UnprocessableEntity`
|
|
4616
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
4182
4617
|
*/
|
|
4183
4618
|
forgotPassword: (data, params = {}) => this.request(Object.assign({ path: `/api/users/forgot-password`, method: "POST", body: data, secure: true, type: ContentType.Json }, params)),
|
|
4184
4619
|
/**
|
|
@@ -4190,7 +4625,7 @@ export class Api extends HttpClient {
|
|
|
4190
4625
|
* @request POST:/api/users/mobile-phone/send-code
|
|
4191
4626
|
* @secure
|
|
4192
4627
|
* @response `204` `void` No Content
|
|
4193
|
-
* @response `422` `UnprocessableEntity`
|
|
4628
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
4194
4629
|
*/
|
|
4195
4630
|
sendMobilePhoneVerificationCode: (params = {}) => this.request(Object.assign({ path: `/api/users/mobile-phone/send-code`, method: "POST", secure: true }, params)),
|
|
4196
4631
|
/**
|
|
@@ -4202,7 +4637,7 @@ export class Api extends HttpClient {
|
|
|
4202
4637
|
* @request PUT:/api/users/mobile-phone/verify-code
|
|
4203
4638
|
* @secure
|
|
4204
4639
|
* @response `204` `void` No Content
|
|
4205
|
-
* @response `422` `UnprocessableEntity`
|
|
4640
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
4206
4641
|
*/
|
|
4207
4642
|
verifyUserMobilePhone: (data, params = {}) => this.request(Object.assign({ path: `/api/users/mobile-phone/verify-code`, method: "PUT", body: data, secure: true, type: ContentType.Json }, params)),
|
|
4208
4643
|
/**
|
|
@@ -4213,7 +4648,7 @@ export class Api extends HttpClient {
|
|
|
4213
4648
|
* @summary Get
|
|
4214
4649
|
* @request GET:/api/users/me
|
|
4215
4650
|
* @secure
|
|
4216
|
-
* @response `200` `ImpersonatedDetailedUser`
|
|
4651
|
+
* @response `200` `ImpersonatedDetailedUser` OK
|
|
4217
4652
|
* @response `401` `ProblemDetails` Unauthorized
|
|
4218
4653
|
*/
|
|
4219
4654
|
getMe: (params = {}) => this.request(Object.assign({ path: `/api/users/me`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -4225,7 +4660,7 @@ export class Api extends HttpClient {
|
|
|
4225
4660
|
* @summary Replace
|
|
4226
4661
|
* @request PUT:/api/users/me
|
|
4227
4662
|
* @secure
|
|
4228
|
-
* @response `200` `DetailedUser`
|
|
4663
|
+
* @response `200` `DetailedUser` OK
|
|
4229
4664
|
*/
|
|
4230
4665
|
replaceMe: (data, params = {}) => this.request(Object.assign({ path: `/api/users/me`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
4231
4666
|
/**
|
|
@@ -4247,7 +4682,7 @@ export class Api extends HttpClient {
|
|
|
4247
4682
|
* @summary Get Relationships
|
|
4248
4683
|
* @request GET:/api/users/me/relationships
|
|
4249
4684
|
* @secure
|
|
4250
|
-
* @response `200` `(UserRelationship)[]`
|
|
4685
|
+
* @response `200` `(UserRelationship)[]` OK
|
|
4251
4686
|
*/
|
|
4252
4687
|
getMyRelationships: (params = {}) => this.request(Object.assign({ path: `/api/users/me/relationships`, method: "GET", secure: true, format: "json" }, params)),
|
|
4253
4688
|
/**
|
|
@@ -4258,7 +4693,7 @@ export class Api extends HttpClient {
|
|
|
4258
4693
|
* @summary Get Relationship Prospects
|
|
4259
4694
|
* @request GET:/api/users/me/relationships/prospects
|
|
4260
4695
|
* @secure
|
|
4261
|
-
* @response `200` `(UserRelationshipProspect)[]`
|
|
4696
|
+
* @response `200` `(UserRelationshipProspect)[]` OK
|
|
4262
4697
|
*/
|
|
4263
4698
|
getMyRelationshipProspects: (params = {}) => this.request(Object.assign({ path: `/api/users/me/relationships/prospects`, method: "GET", secure: true, format: "json" }, params)),
|
|
4264
4699
|
/**
|
|
@@ -4291,7 +4726,7 @@ export class Api extends HttpClient {
|
|
|
4291
4726
|
* @summary Get Workflow
|
|
4292
4727
|
* @request POST:/api/workflow
|
|
4293
4728
|
* @secure
|
|
4294
|
-
* @response `200` `GetForm`
|
|
4729
|
+
* @response `200` `GetForm` OK
|
|
4295
4730
|
*/
|
|
4296
4731
|
getWorkflow: (data, params = {}) => this.request(Object.assign({ path: `/api/workflow`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
4297
4732
|
};
|
|
@@ -4303,7 +4738,7 @@ export class Api extends HttpClient {
|
|
|
4303
4738
|
* @name LogoutList
|
|
4304
4739
|
* @request GET:/sso/logout
|
|
4305
4740
|
* @secure
|
|
4306
|
-
* @response `200` `void`
|
|
4741
|
+
* @response `200` `void` OK
|
|
4307
4742
|
*/
|
|
4308
4743
|
logoutList: (params = {}) => this.request(Object.assign({ path: `/sso/logout`, method: "GET", secure: true }, params)),
|
|
4309
4744
|
};
|