@matech/thebigpos-sdk 2.42.1 → 2.43.1-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +558 -1061
- package/dist/index.js +366 -352
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +613 -1068
package/dist/index.js
CHANGED
|
@@ -95,7 +95,7 @@ export class HttpClient {
|
|
|
95
95
|
}
|
|
96
96
|
/**
|
|
97
97
|
* @title The Big POS API
|
|
98
|
-
* @version v2.
|
|
98
|
+
* @version v2.43.0
|
|
99
99
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
100
100
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
101
101
|
*/
|
|
@@ -109,7 +109,7 @@ export class Api extends HttpClient {
|
|
|
109
109
|
* @name PostRoot
|
|
110
110
|
* @request POST:/
|
|
111
111
|
* @secure
|
|
112
|
-
* @response `200` `void`
|
|
112
|
+
* @response `200` `void` OK
|
|
113
113
|
*/
|
|
114
114
|
this.postRoot = (params = {}) => this.request(Object.assign({ path: `/`, method: "POST", secure: true }, params));
|
|
115
115
|
/**
|
|
@@ -119,7 +119,7 @@ export class Api extends HttpClient {
|
|
|
119
119
|
* @name GetRoot
|
|
120
120
|
* @request GET:/
|
|
121
121
|
* @secure
|
|
122
|
-
* @response `200` `string`
|
|
122
|
+
* @response `200` `string` OK
|
|
123
123
|
*/
|
|
124
124
|
this.getRoot = (params = {}) => this.request(Object.assign({ path: `/`, method: "GET", secure: true }, params));
|
|
125
125
|
this.api = {
|
|
@@ -131,7 +131,7 @@ export class Api extends HttpClient {
|
|
|
131
131
|
* @summary Get
|
|
132
132
|
* @request GET:/api/account
|
|
133
133
|
* @secure
|
|
134
|
-
* @response `200` `Account`
|
|
134
|
+
* @response `200` `Account` OK
|
|
135
135
|
* @response `404` `ProblemDetails` Not Found
|
|
136
136
|
*/
|
|
137
137
|
getMyAccount: (params = {}) => this.request(Object.assign({ path: `/api/account`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -143,9 +143,9 @@ export class Api extends HttpClient {
|
|
|
143
143
|
* @summary Replace
|
|
144
144
|
* @request PUT:/api/account
|
|
145
145
|
* @secure
|
|
146
|
-
* @response `200` `Account`
|
|
146
|
+
* @response `200` `Account` OK
|
|
147
147
|
* @response `404` `ProblemDetails` Not Found
|
|
148
|
-
* @response `422` `ProblemDetails`
|
|
148
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
149
149
|
*/
|
|
150
150
|
replaceMyAccount: (data, params = {}) => this.request(Object.assign({ path: `/api/account`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
151
151
|
/**
|
|
@@ -156,7 +156,7 @@ export class Api extends HttpClient {
|
|
|
156
156
|
* @summary Get Site Configuration
|
|
157
157
|
* @request GET:/api/account/site-configurations
|
|
158
158
|
* @secure
|
|
159
|
-
* @response `200` `SiteConfiguration`
|
|
159
|
+
* @response `200` `SiteConfiguration` OK
|
|
160
160
|
*/
|
|
161
161
|
getSiteConfigurationByAccount: (params = {}) => this.request(Object.assign({ path: `/api/account/site-configurations`, method: "GET", secure: true, format: "json" }, params)),
|
|
162
162
|
/**
|
|
@@ -167,8 +167,8 @@ export class Api extends HttpClient {
|
|
|
167
167
|
* @summary Update Site Configuration
|
|
168
168
|
* @request PUT:/api/account/site-configurations
|
|
169
169
|
* @secure
|
|
170
|
-
* @response `200` `SiteConfiguration`
|
|
171
|
-
* @response `422` `UnprocessableEntity`
|
|
170
|
+
* @response `200` `SiteConfiguration` OK
|
|
171
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
172
172
|
*/
|
|
173
173
|
updateSiteConfigurationForAccount: (data, params = {}) => this.request(Object.assign({ path: `/api/account/site-configurations`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
174
174
|
/**
|
|
@@ -202,7 +202,7 @@ export class Api extends HttpClient {
|
|
|
202
202
|
* @summary Get All
|
|
203
203
|
* @request GET:/api/accounts
|
|
204
204
|
* @secure
|
|
205
|
-
* @response `200` `(Account)[]`
|
|
205
|
+
* @response `200` `(Account)[]` OK
|
|
206
206
|
*/
|
|
207
207
|
getAccounts: (params = {}) => this.request(Object.assign({ path: `/api/accounts`, method: "GET", secure: true, format: "json" }, params)),
|
|
208
208
|
/**
|
|
@@ -214,7 +214,7 @@ export class Api extends HttpClient {
|
|
|
214
214
|
* @request POST:/api/accounts
|
|
215
215
|
* @secure
|
|
216
216
|
* @response `201` `Account` Created
|
|
217
|
-
* @response `422` `ProblemDetails`
|
|
217
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
218
218
|
*/
|
|
219
219
|
createAccount: (data, params = {}) => this.request(Object.assign({ path: `/api/accounts`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
220
220
|
/**
|
|
@@ -226,7 +226,7 @@ export class Api extends HttpClient {
|
|
|
226
226
|
* @request GET:/api/accounts/{id}
|
|
227
227
|
* @secure
|
|
228
228
|
* @response `201` `Account` Created
|
|
229
|
-
* @response `422` `ProblemDetails`
|
|
229
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
230
230
|
*/
|
|
231
231
|
getAccount: (id, params = {}) => this.request(Object.assign({ path: `/api/accounts/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
232
232
|
/**
|
|
@@ -239,7 +239,7 @@ export class Api extends HttpClient {
|
|
|
239
239
|
* @secure
|
|
240
240
|
* @response `204` `Account` No Content
|
|
241
241
|
* @response `404` `ProblemDetails` Not Found
|
|
242
|
-
* @response `422` `ProblemDetails`
|
|
242
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
243
243
|
*/
|
|
244
244
|
deleteAccount: (id, query, params = {}) => this.request(Object.assign({ path: `/api/accounts/${id}`, method: "DELETE", query: query, secure: true, format: "json" }, params)),
|
|
245
245
|
/**
|
|
@@ -250,9 +250,9 @@ export class Api extends HttpClient {
|
|
|
250
250
|
* @summary Update billing configuration
|
|
251
251
|
* @request PUT:/api/accounts/{id}/billing
|
|
252
252
|
* @secure
|
|
253
|
-
* @response `200` `AccountBilling`
|
|
253
|
+
* @response `200` `AccountBilling` OK
|
|
254
254
|
* @response `404` `ProblemDetails` Not Found
|
|
255
|
-
* @response `422` `ProblemDetails`
|
|
255
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
256
256
|
*/
|
|
257
257
|
updateAccountBilling: (id, data, params = {}) => this.request(Object.assign({ path: `/api/accounts/${id}/billing`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
258
258
|
/**
|
|
@@ -263,7 +263,7 @@ export class Api extends HttpClient {
|
|
|
263
263
|
* @summary Search
|
|
264
264
|
* @request POST:/api/audit-logs/search
|
|
265
265
|
* @secure
|
|
266
|
-
* @response `200` `AuditLogEntryPaginated`
|
|
266
|
+
* @response `200` `AuditLogEntryPaginated` OK
|
|
267
267
|
*/
|
|
268
268
|
searchAuditLogs: (data, query, params = {}) => this.request(Object.assign({ path: `/api/audit-logs/search`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
269
269
|
/**
|
|
@@ -274,7 +274,7 @@ export class Api extends HttpClient {
|
|
|
274
274
|
* @summary Get entity types
|
|
275
275
|
* @request GET:/api/audit-logs/entity-types
|
|
276
276
|
* @secure
|
|
277
|
-
* @response `200` `(AuditEntityType)[]`
|
|
277
|
+
* @response `200` `(AuditEntityType)[]` OK
|
|
278
278
|
*/
|
|
279
279
|
getAuditLogEntityTypes: (params = {}) => this.request(Object.assign({ path: `/api/audit-logs/entity-types`, method: "GET", secure: true, format: "json" }, params)),
|
|
280
280
|
/**
|
|
@@ -285,7 +285,7 @@ export class Api extends HttpClient {
|
|
|
285
285
|
* @summary Get by ID
|
|
286
286
|
* @request GET:/api/audit-logs/{id}
|
|
287
287
|
* @secure
|
|
288
|
-
* @response `200` `AuditLogEntry`
|
|
288
|
+
* @response `200` `AuditLogEntry` OK
|
|
289
289
|
* @response `404` `ProblemDetails` Not Found
|
|
290
290
|
*/
|
|
291
291
|
getAuditLogById: (id, params = {}) => this.request(Object.assign({ path: `/api/audit-logs/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -297,9 +297,9 @@ export class Api extends HttpClient {
|
|
|
297
297
|
* @summary Generate Token From Refresh Token
|
|
298
298
|
* @request POST:/api/refresh-token
|
|
299
299
|
* @secure
|
|
300
|
-
* @response `200` `Token`
|
|
300
|
+
* @response `200` `Token` OK
|
|
301
301
|
* @response `401` `ProblemDetails` Unauthorized
|
|
302
|
-
* @response `422` `UnprocessableEntity`
|
|
302
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
303
303
|
*/
|
|
304
304
|
getTokenFromRefreshToken: (data, params = {}) => this.request(Object.assign({ path: `/api/refresh-token`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
305
305
|
/**
|
|
@@ -310,8 +310,8 @@ export class Api extends HttpClient {
|
|
|
310
310
|
* @summary Get Token
|
|
311
311
|
* @request POST:/api/token
|
|
312
312
|
* @secure
|
|
313
|
-
* @response `200` `AccountDeactivated`
|
|
314
|
-
* @response `422` `UnprocessableEntity`
|
|
313
|
+
* @response `200` `AccountDeactivated` OK
|
|
314
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
315
315
|
*/
|
|
316
316
|
getToken: (data, params = {}) => this.request(Object.assign({ path: `/api/token`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
317
317
|
/**
|
|
@@ -322,8 +322,8 @@ export class Api extends HttpClient {
|
|
|
322
322
|
* @summary Get Token From Challenge Code
|
|
323
323
|
* @request POST:/api/token/code
|
|
324
324
|
* @secure
|
|
325
|
-
* @response `200` `AccountDeactivated`
|
|
326
|
-
* @response `422` `UnprocessableEntity`
|
|
325
|
+
* @response `200` `AccountDeactivated` OK
|
|
326
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
327
327
|
*/
|
|
328
328
|
getTokenFromChallengeCode: (data, params = {}) => this.request(Object.assign({ path: `/api/token/code`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
329
329
|
/**
|
|
@@ -334,8 +334,8 @@ export class Api extends HttpClient {
|
|
|
334
334
|
* @summary Get System Token
|
|
335
335
|
* @request POST:/api/oauth2/token
|
|
336
336
|
* @secure
|
|
337
|
-
* @response `200` `Token`
|
|
338
|
-
* @response `422` `UnprocessableEntity`
|
|
337
|
+
* @response `200` `Token` OK
|
|
338
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
339
339
|
*/
|
|
340
340
|
getSystemToken: (data, params = {}) => this.request(Object.assign({ path: `/api/oauth2/token`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
341
341
|
/**
|
|
@@ -346,8 +346,8 @@ export class Api extends HttpClient {
|
|
|
346
346
|
* @summary Get SSO Guid Token
|
|
347
347
|
* @request POST:/api/token/sso
|
|
348
348
|
* @secure
|
|
349
|
-
* @response `200` `SSOToken`
|
|
350
|
-
* @response `422` `UnprocessableEntity`
|
|
349
|
+
* @response `200` `SSOToken` OK
|
|
350
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
351
351
|
*/
|
|
352
352
|
getSsoToken: (data, params = {}) => this.request(Object.assign({ path: `/api/token/sso`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
353
353
|
/**
|
|
@@ -359,7 +359,7 @@ export class Api extends HttpClient {
|
|
|
359
359
|
* @request POST:/api/logout
|
|
360
360
|
* @secure
|
|
361
361
|
* @response `204` `NoContentResult` No Content
|
|
362
|
-
* @response `422` `UnprocessableEntity`
|
|
362
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
363
363
|
*/
|
|
364
364
|
logOut: (params = {}) => this.request(Object.assign({ path: `/api/logout`, method: "POST", secure: true, format: "json" }, params)),
|
|
365
365
|
/**
|
|
@@ -370,7 +370,7 @@ export class Api extends HttpClient {
|
|
|
370
370
|
* @summary Get All
|
|
371
371
|
* @request GET:/api/branches
|
|
372
372
|
* @secure
|
|
373
|
-
* @response `200` `GetBranchPaginated`
|
|
373
|
+
* @response `200` `GetBranchPaginated` OK
|
|
374
374
|
*/
|
|
375
375
|
getBranches: (query, params = {}) => this.request(Object.assign({ path: `/api/branches`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
376
376
|
/**
|
|
@@ -381,8 +381,8 @@ export class Api extends HttpClient {
|
|
|
381
381
|
* @summary Create
|
|
382
382
|
* @request POST:/api/branches
|
|
383
383
|
* @secure
|
|
384
|
-
* @response `200` `GetBranch`
|
|
385
|
-
* @response `422` `UnprocessableEntity`
|
|
384
|
+
* @response `200` `GetBranch` OK
|
|
385
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
386
386
|
*/
|
|
387
387
|
createBranch: (data, params = {}) => this.request(Object.assign({ path: `/api/branches`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
388
388
|
/**
|
|
@@ -393,7 +393,7 @@ export class Api extends HttpClient {
|
|
|
393
393
|
* @summary Search
|
|
394
394
|
* @request POST:/api/branches/search
|
|
395
395
|
* @secure
|
|
396
|
-
* @response `200` `GetBranchPaginated`
|
|
396
|
+
* @response `200` `GetBranchPaginated` OK
|
|
397
397
|
*/
|
|
398
398
|
searchBranches: (data, query, params = {}) => this.request(Object.assign({ path: `/api/branches/search`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
399
399
|
/**
|
|
@@ -404,7 +404,7 @@ export class Api extends HttpClient {
|
|
|
404
404
|
* @summary Get by ID
|
|
405
405
|
* @request GET:/api/branches/{branchId}
|
|
406
406
|
* @secure
|
|
407
|
-
* @response `200` `GetBranch`
|
|
407
|
+
* @response `200` `GetBranch` OK
|
|
408
408
|
*/
|
|
409
409
|
getBranch: (branchId, params = {}) => this.request(Object.assign({ path: `/api/branches/${branchId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
410
410
|
/**
|
|
@@ -415,8 +415,8 @@ export class Api extends HttpClient {
|
|
|
415
415
|
* @summary Replace
|
|
416
416
|
* @request PUT:/api/branches/{branchId}
|
|
417
417
|
* @secure
|
|
418
|
-
* @response `200` `GetBranch`
|
|
419
|
-
* @response `422` `UnprocessableEntity`
|
|
418
|
+
* @response `200` `GetBranch` OK
|
|
419
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
420
420
|
*/
|
|
421
421
|
replaceBranch: (branchId, data, params = {}) => this.request(Object.assign({ path: `/api/branches/${branchId}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
422
422
|
/**
|
|
@@ -450,8 +450,8 @@ export class Api extends HttpClient {
|
|
|
450
450
|
* @summary Create Branch Site Configuration
|
|
451
451
|
* @request POST:/api/branches/{branchId}/site-configurations
|
|
452
452
|
* @secure
|
|
453
|
-
* @response `200` `SiteConfiguration`
|
|
454
|
-
* @response `422` `UnprocessableEntity`
|
|
453
|
+
* @response `200` `SiteConfiguration` OK
|
|
454
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
455
455
|
*/
|
|
456
456
|
createBranchSiteConfiguration: (branchId, data, params = {}) => this.request(Object.assign({ path: `/api/branches/${branchId}/site-configurations`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
457
457
|
/**
|
|
@@ -462,7 +462,7 @@ export class Api extends HttpClient {
|
|
|
462
462
|
* @summary Get Branch Site Configuration
|
|
463
463
|
* @request GET:/api/branches/{branchId}/site-configurations/{siteConfigurationId}
|
|
464
464
|
* @secure
|
|
465
|
-
* @response `200` `SiteConfigurationWithInherited`
|
|
465
|
+
* @response `200` `SiteConfigurationWithInherited` OK
|
|
466
466
|
*/
|
|
467
467
|
getBranchSiteConfiguration: (branchId, siteConfigurationId, params = {}) => this.request(Object.assign({ path: `/api/branches/${branchId}/site-configurations/${siteConfigurationId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
468
468
|
/**
|
|
@@ -473,8 +473,8 @@ export class Api extends HttpClient {
|
|
|
473
473
|
* @summary Replace Branch Site Configuration
|
|
474
474
|
* @request PUT:/api/branches/{branchId}/site-configurations/{siteConfigurationId}
|
|
475
475
|
* @secure
|
|
476
|
-
* @response `200` `SiteConfiguration`
|
|
477
|
-
* @response `422` `UnprocessableEntity`
|
|
476
|
+
* @response `200` `SiteConfiguration` OK
|
|
477
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
478
478
|
*/
|
|
479
479
|
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: "application/json", format: "json" }, params)),
|
|
480
480
|
/**
|
|
@@ -485,7 +485,7 @@ export class Api extends HttpClient {
|
|
|
485
485
|
* @summary Get Branch Loan Officers
|
|
486
486
|
* @request GET:/api/branches/{branchId}/loan-officers
|
|
487
487
|
* @secure
|
|
488
|
-
* @response `200` `(LoanOfficerPublic)[]`
|
|
488
|
+
* @response `200` `(LoanOfficerPublic)[]` OK
|
|
489
489
|
*/
|
|
490
490
|
getLoanOfficersByBranch: (branchId, params = {}) => this.request(Object.assign({ path: `/api/branches/${branchId}/loan-officers`, method: "GET", secure: true, format: "json" }, params)),
|
|
491
491
|
/**
|
|
@@ -496,7 +496,7 @@ export class Api extends HttpClient {
|
|
|
496
496
|
* @summary Get All
|
|
497
497
|
* @request GET:/api/business-rules
|
|
498
498
|
* @secure
|
|
499
|
-
* @response `200` `(BusinessRule)[]`
|
|
499
|
+
* @response `200` `(BusinessRule)[]` OK
|
|
500
500
|
*/
|
|
501
501
|
getBusinessRules: (query, params = {}) => this.request(Object.assign({ path: `/api/business-rules`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
502
502
|
/**
|
|
@@ -507,8 +507,8 @@ export class Api extends HttpClient {
|
|
|
507
507
|
* @summary Create
|
|
508
508
|
* @request POST:/api/business-rules
|
|
509
509
|
* @secure
|
|
510
|
-
* @response `200` `BusinessRule`
|
|
511
|
-
* @response `422` `UnprocessableEntity`
|
|
510
|
+
* @response `200` `BusinessRule` OK
|
|
511
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
512
512
|
*/
|
|
513
513
|
createBusinessRule: (data, params = {}) => this.request(Object.assign({ path: `/api/business-rules`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
514
514
|
/**
|
|
@@ -519,7 +519,7 @@ export class Api extends HttpClient {
|
|
|
519
519
|
* @summary Get by ID
|
|
520
520
|
* @request GET:/api/business-rules/{id}
|
|
521
521
|
* @secure
|
|
522
|
-
* @response `200` `BusinessRule`
|
|
522
|
+
* @response `200` `BusinessRule` OK
|
|
523
523
|
*/
|
|
524
524
|
getBusinessRule: (id, params = {}) => this.request(Object.assign({ path: `/api/business-rules/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
525
525
|
/**
|
|
@@ -530,8 +530,8 @@ export class Api extends HttpClient {
|
|
|
530
530
|
* @summary Replace
|
|
531
531
|
* @request PUT:/api/business-rules/{id}
|
|
532
532
|
* @secure
|
|
533
|
-
* @response `200` `BusinessRule`
|
|
534
|
-
* @response `422` `UnprocessableEntity`
|
|
533
|
+
* @response `200` `BusinessRule` OK
|
|
534
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
535
535
|
*/
|
|
536
536
|
replaceBusinessRule: (id, data, params = {}) => this.request(Object.assign({ path: `/api/business-rules/${id}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
537
537
|
/**
|
|
@@ -553,7 +553,7 @@ export class Api extends HttpClient {
|
|
|
553
553
|
* @summary Restore
|
|
554
554
|
* @request POST:/api/business-rules/{id}/restore
|
|
555
555
|
* @secure
|
|
556
|
-
* @response `200` `BusinessRule`
|
|
556
|
+
* @response `200` `BusinessRule` OK
|
|
557
557
|
*/
|
|
558
558
|
restoreBusinessRule: (id, params = {}) => this.request(Object.assign({ path: `/api/business-rules/${id}/restore`, method: "POST", secure: true, format: "json" }, params)),
|
|
559
559
|
/**
|
|
@@ -564,7 +564,7 @@ export class Api extends HttpClient {
|
|
|
564
564
|
* @summary Get Closed Loans Report
|
|
565
565
|
* @request POST:/api/loans/reports/closed-loans
|
|
566
566
|
* @secure
|
|
567
|
-
* @response `200` `ClosedLoansReport`
|
|
567
|
+
* @response `200` `ClosedLoansReport` OK
|
|
568
568
|
*/
|
|
569
569
|
getClosedLoansReport: (data, params = {}) => this.request(Object.assign({ path: `/api/loans/reports/closed-loans`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
570
570
|
/**
|
|
@@ -575,7 +575,7 @@ export class Api extends HttpClient {
|
|
|
575
575
|
* @summary Get Consumer Connect association status for all borrowers on a loan
|
|
576
576
|
* @request GET:/api/loans/{loanId}/consumer-connect/status
|
|
577
577
|
* @secure
|
|
578
|
-
* @response `200` `(ConsumerConnectStatus)[]`
|
|
578
|
+
* @response `200` `(ConsumerConnectStatus)[]` OK
|
|
579
579
|
*/
|
|
580
580
|
getConsumerConnectStatus: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/consumer-connect/status`, method: "GET", secure: true, format: "json" }, params)),
|
|
581
581
|
/**
|
|
@@ -586,7 +586,7 @@ export class Api extends HttpClient {
|
|
|
586
586
|
* @summary Manually retry Consumer Connect association for failed borrowers on a loan. Returns per-borrower results; check individual Success fields for partial failures.
|
|
587
587
|
* @request POST:/api/loans/{loanId}/consumer-connect/retry
|
|
588
588
|
* @secure
|
|
589
|
-
* @response `200` `(ConsumerConnectRetry)[]`
|
|
589
|
+
* @response `200` `(ConsumerConnectRetry)[]` OK
|
|
590
590
|
*/
|
|
591
591
|
retryConsumerConnectAssociation: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/consumer-connect/retry`, method: "POST", secure: true, format: "json" }, params)),
|
|
592
592
|
/**
|
|
@@ -597,7 +597,7 @@ export class Api extends HttpClient {
|
|
|
597
597
|
* @summary Get All
|
|
598
598
|
* @request GET:/api/corporates
|
|
599
599
|
* @secure
|
|
600
|
-
* @response `200` `CorporatePaginated`
|
|
600
|
+
* @response `200` `CorporatePaginated` OK
|
|
601
601
|
*/
|
|
602
602
|
getCorporates: (query, params = {}) => this.request(Object.assign({ path: `/api/corporates`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
603
603
|
/**
|
|
@@ -608,8 +608,8 @@ export class Api extends HttpClient {
|
|
|
608
608
|
* @summary Create
|
|
609
609
|
* @request POST:/api/corporates
|
|
610
610
|
* @secure
|
|
611
|
-
* @response `200` `Corporate`
|
|
612
|
-
* @response `422` `UnprocessableEntity`
|
|
611
|
+
* @response `200` `Corporate` OK
|
|
612
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
613
613
|
*/
|
|
614
614
|
createCorporate: (data, params = {}) => this.request(Object.assign({ path: `/api/corporates`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
615
615
|
/**
|
|
@@ -620,7 +620,7 @@ export class Api extends HttpClient {
|
|
|
620
620
|
* @summary Search
|
|
621
621
|
* @request POST:/api/corporates/search
|
|
622
622
|
* @secure
|
|
623
|
-
* @response `200` `CorporatePaginated`
|
|
623
|
+
* @response `200` `CorporatePaginated` OK
|
|
624
624
|
*/
|
|
625
625
|
searchCorporate: (data, query, params = {}) => this.request(Object.assign({ path: `/api/corporates/search`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
626
626
|
/**
|
|
@@ -631,7 +631,7 @@ export class Api extends HttpClient {
|
|
|
631
631
|
* @summary Get by ID
|
|
632
632
|
* @request GET:/api/corporates/{id}
|
|
633
633
|
* @secure
|
|
634
|
-
* @response `200` `Corporate`
|
|
634
|
+
* @response `200` `Corporate` OK
|
|
635
635
|
*/
|
|
636
636
|
getCorporate: (id, params = {}) => this.request(Object.assign({ path: `/api/corporates/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
637
637
|
/**
|
|
@@ -642,8 +642,8 @@ export class Api extends HttpClient {
|
|
|
642
642
|
* @summary Replace
|
|
643
643
|
* @request PUT:/api/corporates/{id}
|
|
644
644
|
* @secure
|
|
645
|
-
* @response `200` `Corporate`
|
|
646
|
-
* @response `422` `UnprocessableEntity`
|
|
645
|
+
* @response `200` `Corporate` OK
|
|
646
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
647
647
|
*/
|
|
648
648
|
replaceCorporate: (id, data, params = {}) => this.request(Object.assign({ path: `/api/corporates/${id}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
649
649
|
/**
|
|
@@ -676,8 +676,8 @@ export class Api extends HttpClient {
|
|
|
676
676
|
* @summary Create Site Configuration
|
|
677
677
|
* @request POST:/api/corporates/{corporateId}/site-configurations
|
|
678
678
|
* @secure
|
|
679
|
-
* @response `200` `SiteConfiguration`
|
|
680
|
-
* @response `422` `UnprocessableEntity`
|
|
679
|
+
* @response `200` `SiteConfiguration` OK
|
|
680
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
681
681
|
*/
|
|
682
682
|
createCorporateSiteConfiguration: (corporateId, data, params = {}) => this.request(Object.assign({ path: `/api/corporates/${corporateId}/site-configurations`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
683
683
|
/**
|
|
@@ -688,7 +688,7 @@ export class Api extends HttpClient {
|
|
|
688
688
|
* @summary Get Site Configuration
|
|
689
689
|
* @request GET:/api/corporates/{corporateId}/site-configurations/{siteConfigurationId}
|
|
690
690
|
* @secure
|
|
691
|
-
* @response `200` `SiteConfigurationWithInherited`
|
|
691
|
+
* @response `200` `SiteConfigurationWithInherited` OK
|
|
692
692
|
*/
|
|
693
693
|
getCorporateSiteConfiguration: (corporateId, siteConfigurationId, params = {}) => this.request(Object.assign({ path: `/api/corporates/${corporateId}/site-configurations/${siteConfigurationId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
694
694
|
/**
|
|
@@ -699,8 +699,8 @@ export class Api extends HttpClient {
|
|
|
699
699
|
* @summary Replace Site Configuration
|
|
700
700
|
* @request PUT:/api/corporates/{corporateId}/site-configurations/{siteConfigurationId}
|
|
701
701
|
* @secure
|
|
702
|
-
* @response `200` `SiteConfiguration`
|
|
703
|
-
* @response `422` `UnprocessableEntity`
|
|
702
|
+
* @response `200` `SiteConfiguration` OK
|
|
703
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
704
704
|
*/
|
|
705
705
|
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: "application/json", format: "json" }, params)),
|
|
706
706
|
/**
|
|
@@ -711,7 +711,7 @@ export class Api extends HttpClient {
|
|
|
711
711
|
* @summary Get Branches
|
|
712
712
|
* @request GET:/api/corporates/{id}/branches
|
|
713
713
|
* @secure
|
|
714
|
-
* @response `200` `(BranchReduced)[]`
|
|
714
|
+
* @response `200` `(BranchReduced)[]` OK
|
|
715
715
|
*/
|
|
716
716
|
getBranchesByCorporate: (id, params = {}) => this.request(Object.assign({ path: `/api/corporates/${id}/branches`, method: "GET", secure: true, format: "json" }, params)),
|
|
717
717
|
/**
|
|
@@ -722,7 +722,7 @@ export class Api extends HttpClient {
|
|
|
722
722
|
* @summary Get Loan Officers
|
|
723
723
|
* @request GET:/api/corporates/{id}/loan-officers
|
|
724
724
|
* @secure
|
|
725
|
-
* @response `200` `(LoanOfficerPublic)[]`
|
|
725
|
+
* @response `200` `(LoanOfficerPublic)[]` OK
|
|
726
726
|
*/
|
|
727
727
|
getLoanOfficersByCorporate: (id, params = {}) => this.request(Object.assign({ path: `/api/corporates/${id}/loan-officers`, method: "GET", secure: true, format: "json" }, params)),
|
|
728
728
|
/**
|
|
@@ -733,7 +733,7 @@ export class Api extends HttpClient {
|
|
|
733
733
|
* @summary Get all custom field definitions by entity type
|
|
734
734
|
* @request GET:/api/custom-field-definitions
|
|
735
735
|
* @secure
|
|
736
|
-
* @response `200` `(CustomFieldDefinition)[]`
|
|
736
|
+
* @response `200` `(CustomFieldDefinition)[]` OK
|
|
737
737
|
*/
|
|
738
738
|
getCustomFieldDefinitions: (query, params = {}) => this.request(Object.assign({ path: `/api/custom-field-definitions`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
739
739
|
/**
|
|
@@ -746,7 +746,7 @@ export class Api extends HttpClient {
|
|
|
746
746
|
* @secure
|
|
747
747
|
* @response `201` `CustomFieldDefinition` Created
|
|
748
748
|
* @response `409` `ProblemDetails` Conflict
|
|
749
|
-
* @response `422` `ProblemDetails`
|
|
749
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
750
750
|
*/
|
|
751
751
|
createCustomFieldDefinition: (data, params = {}) => this.request(Object.assign({ path: `/api/custom-field-definitions`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
752
752
|
/**
|
|
@@ -757,7 +757,7 @@ export class Api extends HttpClient {
|
|
|
757
757
|
* @summary Get a custom field definition by ID
|
|
758
758
|
* @request GET:/api/custom-field-definitions/{id}
|
|
759
759
|
* @secure
|
|
760
|
-
* @response `200` `CustomFieldDefinition`
|
|
760
|
+
* @response `200` `CustomFieldDefinition` OK
|
|
761
761
|
* @response `404` `ProblemDetails` Not Found
|
|
762
762
|
*/
|
|
763
763
|
getCustomFieldDefinitionById: (id, params = {}) => this.request(Object.assign({ path: `/api/custom-field-definitions/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -769,11 +769,11 @@ export class Api extends HttpClient {
|
|
|
769
769
|
* @summary Update a custom field definition
|
|
770
770
|
* @request PUT:/api/custom-field-definitions/{id}
|
|
771
771
|
* @secure
|
|
772
|
-
* @response `200` `CustomFieldDefinition`
|
|
772
|
+
* @response `200` `CustomFieldDefinition` OK
|
|
773
773
|
* @response `400` `ProblemDetails` Bad Request
|
|
774
774
|
* @response `404` `ProblemDetails` Not Found
|
|
775
775
|
* @response `409` `ProblemDetails` Conflict
|
|
776
|
-
* @response `422` `ProblemDetails`
|
|
776
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
777
777
|
*/
|
|
778
778
|
updateCustomFieldDefinition: (id, data, params = {}) => this.request(Object.assign({ path: `/api/custom-field-definitions/${id}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
779
779
|
/**
|
|
@@ -821,7 +821,7 @@ export class Api extends HttpClient {
|
|
|
821
821
|
* @summary Get All
|
|
822
822
|
* @request GET:/api/devices
|
|
823
823
|
* @secure
|
|
824
|
-
* @response `200` `DevicePaginated`
|
|
824
|
+
* @response `200` `DevicePaginated` OK
|
|
825
825
|
*/
|
|
826
826
|
getDevices: (query, params = {}) => this.request(Object.assign({ path: `/api/devices`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
827
827
|
/**
|
|
@@ -832,7 +832,7 @@ export class Api extends HttpClient {
|
|
|
832
832
|
* @summary Get by ID
|
|
833
833
|
* @request GET:/api/devices/{id}
|
|
834
834
|
* @secure
|
|
835
|
-
* @response `200` `Device`
|
|
835
|
+
* @response `200` `Device` OK
|
|
836
836
|
*/
|
|
837
837
|
getDevice: (id, params = {}) => this.request(Object.assign({ path: `/api/devices/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
838
838
|
/**
|
|
@@ -843,7 +843,7 @@ export class Api extends HttpClient {
|
|
|
843
843
|
* @summary Update
|
|
844
844
|
* @request PUT:/api/devices/{id}
|
|
845
845
|
* @secure
|
|
846
|
-
* @response `200` `Device`
|
|
846
|
+
* @response `200` `Device` OK
|
|
847
847
|
*/
|
|
848
848
|
updateDevice: (id, data, params = {}) => this.request(Object.assign({ path: `/api/devices/${id}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
849
849
|
/**
|
|
@@ -854,7 +854,7 @@ export class Api extends HttpClient {
|
|
|
854
854
|
* @summary Get by Serial Number
|
|
855
855
|
* @request GET:/api/devices/{sn}/profile
|
|
856
856
|
* @secure
|
|
857
|
-
* @response `200` `DeviceMDM`
|
|
857
|
+
* @response `200` `DeviceMDM` OK
|
|
858
858
|
*/
|
|
859
859
|
getDeviceBySerialNumber: (sn, params = {}) => this.request(Object.assign({ path: `/api/devices/${sn}/profile`, method: "GET", secure: true, format: "json" }, params)),
|
|
860
860
|
/**
|
|
@@ -865,7 +865,7 @@ export class Api extends HttpClient {
|
|
|
865
865
|
* @summary Create Action by Serial Number
|
|
866
866
|
* @request POST:/api/devices/{sn}/actions/{actionName}
|
|
867
867
|
* @secure
|
|
868
|
-
* @response `200` `Action`
|
|
868
|
+
* @response `200` `Action` OK
|
|
869
869
|
*/
|
|
870
870
|
createDeviceActionBySerialNumber: (sn, actionName, params = {}) => this.request(Object.assign({ path: `/api/devices/${sn}/actions/${actionName}`, method: "POST", secure: true, format: "json" }, params)),
|
|
871
871
|
/**
|
|
@@ -876,7 +876,7 @@ export class Api extends HttpClient {
|
|
|
876
876
|
* @summary Get All
|
|
877
877
|
* @request GET:/api/document-buckets
|
|
878
878
|
* @secure
|
|
879
|
-
* @response `200` `(string)[]`
|
|
879
|
+
* @response `200` `(string)[]` OK
|
|
880
880
|
*/
|
|
881
881
|
getDocumentBuckets: (query, params = {}) => this.request(Object.assign({ path: `/api/document-buckets`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
882
882
|
/**
|
|
@@ -887,7 +887,7 @@ export class Api extends HttpClient {
|
|
|
887
887
|
* @summary Get All
|
|
888
888
|
* @request GET:/api/document-templates
|
|
889
889
|
* @secure
|
|
890
|
-
* @response `200` `(DocumentTemplateBase)[]`
|
|
890
|
+
* @response `200` `(DocumentTemplateBase)[]` OK
|
|
891
891
|
*/
|
|
892
892
|
getDocumentTemplates: (query, params = {}) => this.request(Object.assign({ path: `/api/document-templates`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
893
893
|
/**
|
|
@@ -900,7 +900,7 @@ export class Api extends HttpClient {
|
|
|
900
900
|
* @secure
|
|
901
901
|
* @response `201` `DocumentTemplateBase` Created
|
|
902
902
|
* @response `404` `ProblemDetails` Not Found
|
|
903
|
-
* @response `422` `UnprocessableEntity`
|
|
903
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
904
904
|
*/
|
|
905
905
|
createDocumentTemplate: (data, params = {}) => this.request(Object.assign({ path: `/api/document-templates`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
906
906
|
/**
|
|
@@ -911,7 +911,7 @@ export class Api extends HttpClient {
|
|
|
911
911
|
* @summary Get Custom
|
|
912
912
|
* @request GET:/api/document-templates/{type}
|
|
913
913
|
* @secure
|
|
914
|
-
* @response `200` `(DocumentTemplateBase)[]`
|
|
914
|
+
* @response `200` `(DocumentTemplateBase)[]` OK
|
|
915
915
|
*/
|
|
916
916
|
getCustomDocumentTemplates: (type, query, params = {}) => this.request(Object.assign({ path: `/api/document-templates/${type}`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
917
917
|
/**
|
|
@@ -922,7 +922,7 @@ export class Api extends HttpClient {
|
|
|
922
922
|
* @summary Get By ID
|
|
923
923
|
* @request GET:/api/document-templates/{id}
|
|
924
924
|
* @secure
|
|
925
|
-
* @response `200` `DocumentTemplate`
|
|
925
|
+
* @response `200` `DocumentTemplate` OK
|
|
926
926
|
* @response `404` `ProblemDetails` Not Found
|
|
927
927
|
*/
|
|
928
928
|
getDocumentTemplate: (id, params = {}) => this.request(Object.assign({ path: `/api/document-templates/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -934,10 +934,10 @@ export class Api extends HttpClient {
|
|
|
934
934
|
* @summary Replace
|
|
935
935
|
* @request PUT:/api/document-templates/{id}
|
|
936
936
|
* @secure
|
|
937
|
-
* @response `200` `DocumentTemplateBase`
|
|
937
|
+
* @response `200` `DocumentTemplateBase` OK
|
|
938
938
|
* @response `401` `ProblemDetails` Unauthorized
|
|
939
939
|
* @response `404` `ProblemDetails` Not Found
|
|
940
|
-
* @response `422` `UnprocessableEntity`
|
|
940
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
941
941
|
*/
|
|
942
942
|
replaceDocumentTemplate: (id, data, params = {}) => this.request(Object.assign({ path: `/api/document-templates/${id}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
943
943
|
/**
|
|
@@ -974,7 +974,7 @@ export class Api extends HttpClient {
|
|
|
974
974
|
* @summary Get All
|
|
975
975
|
* @request GET:/api/document-templates/{documentId}/versions
|
|
976
976
|
* @secure
|
|
977
|
-
* @response `200` `(DocumentTemplateVersion)[]`
|
|
977
|
+
* @response `200` `(DocumentTemplateVersion)[]` OK
|
|
978
978
|
*/
|
|
979
979
|
getDocumentTemplateVersions: (documentId, params = {}) => this.request(Object.assign({ path: `/api/document-templates/${documentId}/versions`, method: "GET", secure: true, format: "json" }, params)),
|
|
980
980
|
/**
|
|
@@ -985,7 +985,7 @@ export class Api extends HttpClient {
|
|
|
985
985
|
* @summary Create
|
|
986
986
|
* @request POST:/api/document-templates/{documentId}/versions
|
|
987
987
|
* @secure
|
|
988
|
-
* @response `200` `DocumentTemplateVersion`
|
|
988
|
+
* @response `200` `DocumentTemplateVersion` OK
|
|
989
989
|
*/
|
|
990
990
|
createDocumentTemplateVersion: (documentId, data, params = {}) => this.request(Object.assign({ path: `/api/document-templates/${documentId}/versions`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
991
991
|
/**
|
|
@@ -996,7 +996,7 @@ export class Api extends HttpClient {
|
|
|
996
996
|
* @summary Get by ID
|
|
997
997
|
* @request GET:/api/document-templates/{documentId}/versions/{id}
|
|
998
998
|
* @secure
|
|
999
|
-
* @response `200` `DocumentTemplateVersion`
|
|
999
|
+
* @response `200` `DocumentTemplateVersion` OK
|
|
1000
1000
|
*/
|
|
1001
1001
|
getDocumentTemplateVersion: (documentId, id, params = {}) => this.request(Object.assign({ path: `/api/document-templates/${documentId}/versions/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
1002
1002
|
/**
|
|
@@ -1007,7 +1007,7 @@ export class Api extends HttpClient {
|
|
|
1007
1007
|
* @summary Replace
|
|
1008
1008
|
* @request PUT:/api/document-templates/{documentId}/versions/{id}
|
|
1009
1009
|
* @secure
|
|
1010
|
-
* @response `200` `DocumentTemplateVersion`
|
|
1010
|
+
* @response `200` `DocumentTemplateVersion` OK
|
|
1011
1011
|
*/
|
|
1012
1012
|
replaceDocumentTemplateVersion: (documentId, id, data, params = {}) => this.request(Object.assign({ path: `/api/document-templates/${documentId}/versions/${id}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1013
1013
|
/**
|
|
@@ -1018,7 +1018,7 @@ export class Api extends HttpClient {
|
|
|
1018
1018
|
* @summary Delete
|
|
1019
1019
|
* @request DELETE:/api/document-templates/{documentId}/versions/{id}
|
|
1020
1020
|
* @secure
|
|
1021
|
-
* @response `200` `DocumentTemplateVersion`
|
|
1021
|
+
* @response `200` `DocumentTemplateVersion` OK
|
|
1022
1022
|
*/
|
|
1023
1023
|
deleteDocumentTemplateVersion: (documentId, id, params = {}) => this.request(Object.assign({ path: `/api/document-templates/${documentId}/versions/${id}`, method: "DELETE", secure: true, format: "json" }, params)),
|
|
1024
1024
|
/**
|
|
@@ -1026,9 +1026,10 @@ export class Api extends HttpClient {
|
|
|
1026
1026
|
*
|
|
1027
1027
|
* @tags Encompass Custom Field Mappings
|
|
1028
1028
|
* @name GetEncompassCustomFieldMapping
|
|
1029
|
+
* @summary Get Encompass field mapping for a custom field definition
|
|
1029
1030
|
* @request GET:/api/los/encompass/custom-field-mappings/{definitionId}
|
|
1030
1031
|
* @secure
|
|
1031
|
-
* @response `200` `EncompassCustomFieldMapping`
|
|
1032
|
+
* @response `200` `EncompassCustomFieldMapping` OK
|
|
1032
1033
|
* @response `404` `void` Not Found
|
|
1033
1034
|
*/
|
|
1034
1035
|
getEncompassCustomFieldMapping: (definitionId, params = {}) => this.request(Object.assign({ path: `/api/los/encompass/custom-field-mappings/${definitionId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -1037,13 +1038,14 @@ export class Api extends HttpClient {
|
|
|
1037
1038
|
*
|
|
1038
1039
|
* @tags Encompass Custom Field Mappings
|
|
1039
1040
|
* @name AddEncompassCustomFieldMapping
|
|
1041
|
+
* @summary Add an Encompass field mapping to a custom field definition
|
|
1040
1042
|
* @request POST:/api/los/encompass/custom-field-mappings/{definitionId}
|
|
1041
1043
|
* @secure
|
|
1042
1044
|
* @response `201` `EncompassCustomFieldMapping` Created
|
|
1043
1045
|
* @response `400` `void` Bad Request
|
|
1044
1046
|
* @response `404` `void` Not Found
|
|
1045
1047
|
* @response `409` `void` Conflict
|
|
1046
|
-
* @response `422` `ProblemDetails`
|
|
1048
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
1047
1049
|
*/
|
|
1048
1050
|
addEncompassCustomFieldMapping: (definitionId, data, params = {}) => this.request(Object.assign({ path: `/api/los/encompass/custom-field-mappings/${definitionId}`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1049
1051
|
/**
|
|
@@ -1051,6 +1053,7 @@ export class Api extends HttpClient {
|
|
|
1051
1053
|
*
|
|
1052
1054
|
* @tags Encompass Custom Field Mappings
|
|
1053
1055
|
* @name DeleteEncompassCustomFieldMapping
|
|
1056
|
+
* @summary Delete the Encompass field mapping (only if no values exist)
|
|
1054
1057
|
* @request DELETE:/api/los/encompass/custom-field-mappings/{definitionId}
|
|
1055
1058
|
* @secure
|
|
1056
1059
|
* @response `204` `void` No Content
|
|
@@ -1063,6 +1066,7 @@ export class Api extends HttpClient {
|
|
|
1063
1066
|
*
|
|
1064
1067
|
* @tags Encompass Custom Field Mappings
|
|
1065
1068
|
* @name DisableEncompassCustomFieldMapping
|
|
1069
|
+
* @summary Disable the Encompass field mapping (stops sync)
|
|
1066
1070
|
* @request POST:/api/los/encompass/custom-field-mappings/{definitionId}/disable
|
|
1067
1071
|
* @secure
|
|
1068
1072
|
* @response `204` `void` No Content
|
|
@@ -1074,6 +1078,7 @@ export class Api extends HttpClient {
|
|
|
1074
1078
|
*
|
|
1075
1079
|
* @tags Encompass Custom Field Mappings
|
|
1076
1080
|
* @name EnableEncompassCustomFieldMapping
|
|
1081
|
+
* @summary Re-enable the Encompass field mapping (resumes sync)
|
|
1077
1082
|
* @request POST:/api/los/encompass/custom-field-mappings/{definitionId}/enable
|
|
1078
1083
|
* @secure
|
|
1079
1084
|
* @response `204` `void` No Content
|
|
@@ -1085,10 +1090,11 @@ export class Api extends HttpClient {
|
|
|
1085
1090
|
*
|
|
1086
1091
|
* @tags Encompass Custom Fields
|
|
1087
1092
|
* @name GetEncompassFields
|
|
1093
|
+
* @summary Fetch available Encompass custom fields with type metadata
|
|
1088
1094
|
* @request GET:/api/los/encompass/custom-fields
|
|
1089
1095
|
* @secure
|
|
1090
|
-
* @response `200` `(EncompassFieldListItem)[]`
|
|
1091
|
-
* @response `502` `ProblemDetails`
|
|
1096
|
+
* @response `200` `(EncompassFieldListItem)[]` OK
|
|
1097
|
+
* @response `502` `ProblemDetails` Bad Gateway
|
|
1092
1098
|
*/
|
|
1093
1099
|
getEncompassFields: (params = {}) => this.request(Object.assign({ path: `/api/los/encompass/custom-fields`, method: "GET", secure: true, format: "json" }, params)),
|
|
1094
1100
|
/**
|
|
@@ -1098,10 +1104,10 @@ export class Api extends HttpClient {
|
|
|
1098
1104
|
* @name GetUserPackages
|
|
1099
1105
|
* @request GET:/api/los/encompass/eclose/packages
|
|
1100
1106
|
* @secure
|
|
1101
|
-
* @response `200` `EncompassPackageList`
|
|
1107
|
+
* @response `200` `EncompassPackageList` OK
|
|
1102
1108
|
* @response `400` `EncompassError` Bad Request
|
|
1103
1109
|
* @response `401` `EncompassError` Unauthorized
|
|
1104
|
-
* @response `500` `EncompassError` Server Error
|
|
1110
|
+
* @response `500` `EncompassError` Internal Server Error
|
|
1105
1111
|
*/
|
|
1106
1112
|
getUserPackages: (query, params = {}) => this.request(Object.assign({ path: `/api/los/encompass/eclose/packages`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
1107
1113
|
/**
|
|
@@ -1111,9 +1117,9 @@ export class Api extends HttpClient {
|
|
|
1111
1117
|
* @name GetUserRecipients
|
|
1112
1118
|
* @request GET:/api/los/encompass/eclose/recipients
|
|
1113
1119
|
* @secure
|
|
1114
|
-
* @response `200` `(EncompassRecipientItem)[]`
|
|
1120
|
+
* @response `200` `(EncompassRecipientItem)[]` OK
|
|
1115
1121
|
* @response `401` `EncompassError` Unauthorized
|
|
1116
|
-
* @response `500` `EncompassError` Server Error
|
|
1122
|
+
* @response `500` `EncompassError` Internal Server Error
|
|
1117
1123
|
*/
|
|
1118
1124
|
getUserRecipients: (params = {}) => this.request(Object.assign({ path: `/api/los/encompass/eclose/recipients`, method: "GET", secure: true, format: "json" }, params)),
|
|
1119
1125
|
/**
|
|
@@ -1123,12 +1129,12 @@ export class Api extends HttpClient {
|
|
|
1123
1129
|
* @name CreateEncompassSession
|
|
1124
1130
|
* @request POST:/api/los/encompass/eclose/sessions
|
|
1125
1131
|
* @secure
|
|
1126
|
-
* @response `200` `CreateSession`
|
|
1132
|
+
* @response `200` `CreateSession` OK
|
|
1127
1133
|
* @response `400` `EncompassError` Bad Request
|
|
1128
1134
|
* @response `401` `EncompassError` Unauthorized
|
|
1129
1135
|
* @response `403` `EncompassError` Forbidden
|
|
1130
1136
|
* @response `404` `EncompassError` Not Found
|
|
1131
|
-
* @response `500` `EncompassError` Server Error
|
|
1137
|
+
* @response `500` `EncompassError` Internal Server Error
|
|
1132
1138
|
*/
|
|
1133
1139
|
createEncompassSession: (data, params = {}) => this.request(Object.assign({ path: `/api/los/encompass/eclose/sessions`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1134
1140
|
/**
|
|
@@ -1139,7 +1145,7 @@ export class Api extends HttpClient {
|
|
|
1139
1145
|
* @summary Get All
|
|
1140
1146
|
* @request GET:/api/files
|
|
1141
1147
|
* @secure
|
|
1142
|
-
* @response `200` `FilePaginated`
|
|
1148
|
+
* @response `200` `FilePaginated` OK
|
|
1143
1149
|
*/
|
|
1144
1150
|
getAllFiles: (query, params = {}) => this.request(Object.assign({ path: `/api/files`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
1145
1151
|
/**
|
|
@@ -1151,7 +1157,7 @@ export class Api extends HttpClient {
|
|
|
1151
1157
|
* @request POST:/api/files
|
|
1152
1158
|
* @secure
|
|
1153
1159
|
* @response `201` `File` Created
|
|
1154
|
-
* @response `422` `UnprocessableEntity`
|
|
1160
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1155
1161
|
*/
|
|
1156
1162
|
uploadFile: (data, params = {}) => this.request(Object.assign({ path: `/api/files`, method: "POST", body: data, secure: true, type: "multipart/form-data", format: "json" }, params)),
|
|
1157
1163
|
/**
|
|
@@ -1173,8 +1179,8 @@ export class Api extends HttpClient {
|
|
|
1173
1179
|
* @summary Replace
|
|
1174
1180
|
* @request PUT:/api/files/{id}
|
|
1175
1181
|
* @secure
|
|
1176
|
-
* @response `200` `string`
|
|
1177
|
-
* @response `422` `UnprocessableEntity`
|
|
1182
|
+
* @response `200` `string` OK
|
|
1183
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1178
1184
|
*/
|
|
1179
1185
|
replaceFile: (id, data, params = {}) => this.request(Object.assign({ path: `/api/files/${id}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1180
1186
|
/**
|
|
@@ -1196,7 +1202,7 @@ export class Api extends HttpClient {
|
|
|
1196
1202
|
* @summary Search
|
|
1197
1203
|
* @request POST:/api/files/search
|
|
1198
1204
|
* @secure
|
|
1199
|
-
* @response `200` `FilePaginated`
|
|
1205
|
+
* @response `200` `FilePaginated` OK
|
|
1200
1206
|
*/
|
|
1201
1207
|
searchFiles: (data, query, params = {}) => this.request(Object.assign({ path: `/api/files/search`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1202
1208
|
/**
|
|
@@ -1207,7 +1213,7 @@ export class Api extends HttpClient {
|
|
|
1207
1213
|
* @summary Get All
|
|
1208
1214
|
* @request GET:/api/forms
|
|
1209
1215
|
* @secure
|
|
1210
|
-
* @response `200` `(AdminAccessGetForms)[]`
|
|
1216
|
+
* @response `200` `(AdminAccessGetForms)[]` OK
|
|
1211
1217
|
*/
|
|
1212
1218
|
getForms: (query, params = {}) => this.request(Object.assign({ path: `/api/forms`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
1213
1219
|
/**
|
|
@@ -1219,7 +1225,7 @@ export class Api extends HttpClient {
|
|
|
1219
1225
|
* @request POST:/api/forms
|
|
1220
1226
|
* @secure
|
|
1221
1227
|
* @response `201` `Form` Created
|
|
1222
|
-
* @response `422` `UnprocessableEntity`
|
|
1228
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1223
1229
|
*/
|
|
1224
1230
|
createForm: (data, params = {}) => this.request(Object.assign({ path: `/api/forms`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1225
1231
|
/**
|
|
@@ -1230,7 +1236,7 @@ export class Api extends HttpClient {
|
|
|
1230
1236
|
* @summary Get By ID
|
|
1231
1237
|
* @request GET:/api/forms/{id}
|
|
1232
1238
|
* @secure
|
|
1233
|
-
* @response `200` `Form`
|
|
1239
|
+
* @response `200` `Form` OK
|
|
1234
1240
|
*/
|
|
1235
1241
|
getForm: (id, params = {}) => this.request(Object.assign({ path: `/api/forms/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
1236
1242
|
/**
|
|
@@ -1241,8 +1247,8 @@ export class Api extends HttpClient {
|
|
|
1241
1247
|
* @summary Replace
|
|
1242
1248
|
* @request PUT:/api/forms/{id}
|
|
1243
1249
|
* @secure
|
|
1244
|
-
* @response `200` `Form`
|
|
1245
|
-
* @response `422` `UnprocessableEntity`
|
|
1250
|
+
* @response `200` `Form` OK
|
|
1251
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1246
1252
|
*/
|
|
1247
1253
|
replaceForm: (id, data, params = {}) => this.request(Object.assign({ path: `/api/forms/${id}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1248
1254
|
/**
|
|
@@ -1264,7 +1270,7 @@ export class Api extends HttpClient {
|
|
|
1264
1270
|
* @summary Restore
|
|
1265
1271
|
* @request POST:/api/forms/{id}/restore
|
|
1266
1272
|
* @secure
|
|
1267
|
-
* @response `200` `Form`
|
|
1273
|
+
* @response `200` `Form` OK
|
|
1268
1274
|
*/
|
|
1269
1275
|
restoreForm: (id, params = {}) => this.request(Object.assign({ path: `/api/forms/${id}/restore`, method: "POST", secure: true, format: "json" }, params)),
|
|
1270
1276
|
/**
|
|
@@ -1275,7 +1281,7 @@ export class Api extends HttpClient {
|
|
|
1275
1281
|
* @summary Add
|
|
1276
1282
|
* @request POST:/api/form-submissions/{formSubmissionId}/files
|
|
1277
1283
|
* @secure
|
|
1278
|
-
* @response `200` `FormSubmissionFile`
|
|
1284
|
+
* @response `200` `FormSubmissionFile` OK
|
|
1279
1285
|
*/
|
|
1280
1286
|
addFormSubmissionFile: (formSubmissionId, data, params = {}) => this.request(Object.assign({ path: `/api/form-submissions/${formSubmissionId}/files`, method: "POST", body: data, secure: true, type: "multipart/form-data", format: "json" }, params)),
|
|
1281
1287
|
/**
|
|
@@ -1297,7 +1303,7 @@ export class Api extends HttpClient {
|
|
|
1297
1303
|
* @summary Download by Id
|
|
1298
1304
|
* @request GET:/api/form-submissions/{formSubmissionId}/files/{formSubmissionFileId}/download
|
|
1299
1305
|
* @secure
|
|
1300
|
-
* @response `200` `FileWithBytes`
|
|
1306
|
+
* @response `200` `FileWithBytes` OK
|
|
1301
1307
|
*/
|
|
1302
1308
|
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)),
|
|
1303
1309
|
/**
|
|
@@ -1308,7 +1314,7 @@ export class Api extends HttpClient {
|
|
|
1308
1314
|
* @summary Get All
|
|
1309
1315
|
* @request GET:/api/form-submissions
|
|
1310
1316
|
* @secure
|
|
1311
|
-
* @response `200` `FormSubmissionPaginated`
|
|
1317
|
+
* @response `200` `FormSubmissionPaginated` OK
|
|
1312
1318
|
*/
|
|
1313
1319
|
getFormSubmissions: (query, params = {}) => this.request(Object.assign({ path: `/api/form-submissions`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
1314
1320
|
/**
|
|
@@ -1330,7 +1336,7 @@ export class Api extends HttpClient {
|
|
|
1330
1336
|
* @summary Get by ID
|
|
1331
1337
|
* @request GET:/api/form-submissions/{id}
|
|
1332
1338
|
* @secure
|
|
1333
|
-
* @response `200` `FormSubmission`
|
|
1339
|
+
* @response `200` `FormSubmission` OK
|
|
1334
1340
|
*/
|
|
1335
1341
|
getFormSubmission: (id, params = {}) => this.request(Object.assign({ path: `/api/form-submissions/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
1336
1342
|
/**
|
|
@@ -1341,7 +1347,7 @@ export class Api extends HttpClient {
|
|
|
1341
1347
|
* @summary Replace
|
|
1342
1348
|
* @request PUT:/api/form-submissions/{id}
|
|
1343
1349
|
* @secure
|
|
1344
|
-
* @response `200` `FormSubmission`
|
|
1350
|
+
* @response `200` `FormSubmission` OK
|
|
1345
1351
|
*/
|
|
1346
1352
|
replaceFormSubmission: (id, data, params = {}) => this.request(Object.assign({ path: `/api/form-submissions/${id}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1347
1353
|
/**
|
|
@@ -1363,7 +1369,7 @@ export class Api extends HttpClient {
|
|
|
1363
1369
|
* @summary Search
|
|
1364
1370
|
* @request POST:/api/form-submissions/search
|
|
1365
1371
|
* @secure
|
|
1366
|
-
* @response `200` `FormSubmissionPaginated`
|
|
1372
|
+
* @response `200` `FormSubmissionPaginated` OK
|
|
1367
1373
|
*/
|
|
1368
1374
|
searchFormSubmissions: (data, query, params = {}) => this.request(Object.assign({ path: `/api/form-submissions/search`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1369
1375
|
/**
|
|
@@ -1374,7 +1380,7 @@ export class Api extends HttpClient {
|
|
|
1374
1380
|
* @summary Get All
|
|
1375
1381
|
* @request GET:/api/forms/{formId}/versions
|
|
1376
1382
|
* @secure
|
|
1377
|
-
* @response `200` `(FormVersion)[]`
|
|
1383
|
+
* @response `200` `(FormVersion)[]` OK
|
|
1378
1384
|
*/
|
|
1379
1385
|
getFormVersions: (formId, params = {}) => this.request(Object.assign({ path: `/api/forms/${formId}/versions`, method: "GET", secure: true, format: "json" }, params)),
|
|
1380
1386
|
/**
|
|
@@ -1385,7 +1391,7 @@ export class Api extends HttpClient {
|
|
|
1385
1391
|
* @summary Create
|
|
1386
1392
|
* @request POST:/api/forms/{formId}/versions
|
|
1387
1393
|
* @secure
|
|
1388
|
-
* @response `200` `FormVersion`
|
|
1394
|
+
* @response `200` `FormVersion` OK
|
|
1389
1395
|
*/
|
|
1390
1396
|
createFormVersion: (formId, data, params = {}) => this.request(Object.assign({ path: `/api/forms/${formId}/versions`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1391
1397
|
/**
|
|
@@ -1396,7 +1402,7 @@ export class Api extends HttpClient {
|
|
|
1396
1402
|
* @summary Get by ID
|
|
1397
1403
|
* @request GET:/api/forms/{formId}/versions/{id}
|
|
1398
1404
|
* @secure
|
|
1399
|
-
* @response `200` `FormVersion`
|
|
1405
|
+
* @response `200` `FormVersion` OK
|
|
1400
1406
|
*/
|
|
1401
1407
|
getFormVersion: (formId, id, params = {}) => this.request(Object.assign({ path: `/api/forms/${formId}/versions/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
1402
1408
|
/**
|
|
@@ -1407,7 +1413,7 @@ export class Api extends HttpClient {
|
|
|
1407
1413
|
* @summary Replace
|
|
1408
1414
|
* @request PUT:/api/forms/{formId}/versions/{id}
|
|
1409
1415
|
* @secure
|
|
1410
|
-
* @response `200` `FormVersion`
|
|
1416
|
+
* @response `200` `FormVersion` OK
|
|
1411
1417
|
*/
|
|
1412
1418
|
replaceFormVersion: (formId, id, data, params = {}) => this.request(Object.assign({ path: `/api/forms/${formId}/versions/${id}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1413
1419
|
/**
|
|
@@ -1418,7 +1424,7 @@ export class Api extends HttpClient {
|
|
|
1418
1424
|
* @summary Delete
|
|
1419
1425
|
* @request DELETE:/api/forms/{formId}/versions/{id}
|
|
1420
1426
|
* @secure
|
|
1421
|
-
* @response `200` `FormVersion`
|
|
1427
|
+
* @response `200` `FormVersion` OK
|
|
1422
1428
|
*/
|
|
1423
1429
|
deleteFormVersion: (formId, id, params = {}) => this.request(Object.assign({ path: `/api/forms/${formId}/versions/${id}`, method: "DELETE", secure: true, format: "json" }, params)),
|
|
1424
1430
|
/**
|
|
@@ -1429,7 +1435,7 @@ export class Api extends HttpClient {
|
|
|
1429
1435
|
* @summary Get Integration Settings
|
|
1430
1436
|
* @request GET:/api/integrations/settings
|
|
1431
1437
|
* @secure
|
|
1432
|
-
* @response `200` `IntegrationSettings`
|
|
1438
|
+
* @response `200` `IntegrationSettings` OK
|
|
1433
1439
|
*/
|
|
1434
1440
|
getIntegrationSettings: (params = {}) => this.request(Object.assign({ path: `/api/integrations/settings`, method: "GET", secure: true, format: "json" }, params)),
|
|
1435
1441
|
/**
|
|
@@ -1440,7 +1446,7 @@ export class Api extends HttpClient {
|
|
|
1440
1446
|
* @summary Get By ID
|
|
1441
1447
|
* @request GET:/api/los/loan/application/{loanID}
|
|
1442
1448
|
* @secure
|
|
1443
|
-
* @response `200` `Record<string,any>`
|
|
1449
|
+
* @response `200` `Record<string,any>` OK
|
|
1444
1450
|
*/
|
|
1445
1451
|
getLoanData: (loanId, params = {}) => this.request(Object.assign({ path: `/api/los/loan/application/${loanId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
1446
1452
|
/**
|
|
@@ -1452,8 +1458,8 @@ export class Api extends HttpClient {
|
|
|
1452
1458
|
* @request PATCH:/api/los/loan/application/{loanID}
|
|
1453
1459
|
* @deprecated
|
|
1454
1460
|
* @secure
|
|
1455
|
-
* @response `200` `string`
|
|
1456
|
-
* @response `422` `UnprocessableEntity`
|
|
1461
|
+
* @response `200` `string` OK
|
|
1462
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1457
1463
|
*/
|
|
1458
1464
|
updateLoanConsentAndCustomFieldsObsolete: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/los/loan/application/${loanId}`, method: "PATCH", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1459
1465
|
/**
|
|
@@ -1464,7 +1470,7 @@ export class Api extends HttpClient {
|
|
|
1464
1470
|
* @summary Get Report
|
|
1465
1471
|
* @request POST:/api/los/loan/reports
|
|
1466
1472
|
* @secure
|
|
1467
|
-
* @response `200` `GetReport`
|
|
1473
|
+
* @response `200` `GetReport` OK
|
|
1468
1474
|
*/
|
|
1469
1475
|
getLoansReport: (data, params = {}) => this.request(Object.assign({ path: `/api/los/loan/reports`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1470
1476
|
/**
|
|
@@ -1476,9 +1482,9 @@ export class Api extends HttpClient {
|
|
|
1476
1482
|
* @request POST:/api/los/loan/application
|
|
1477
1483
|
* @deprecated
|
|
1478
1484
|
* @secure
|
|
1479
|
-
* @response `200` `string`
|
|
1480
|
-
* @response `422` `UnprocessableEntity`
|
|
1481
|
-
* @response `423` `UnprocessableEntity`
|
|
1485
|
+
* @response `200` `string` OK
|
|
1486
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1487
|
+
* @response `423` `UnprocessableEntity` Locked
|
|
1482
1488
|
*/
|
|
1483
1489
|
createLoan: (data, query, params = {}) => this.request(Object.assign({ path: `/api/los/loan/application`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1484
1490
|
/**
|
|
@@ -1489,9 +1495,9 @@ export class Api extends HttpClient {
|
|
|
1489
1495
|
* @summary Create Loan Returning Internal Loan ID
|
|
1490
1496
|
* @request POST:/api/los/loan/application/internal
|
|
1491
1497
|
* @secure
|
|
1492
|
-
* @response `200` `string`
|
|
1493
|
-
* @response `422` `UnprocessableEntity`
|
|
1494
|
-
* @response `423` `UnprocessableEntity`
|
|
1498
|
+
* @response `200` `string` OK
|
|
1499
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1500
|
+
* @response `423` `UnprocessableEntity` Locked
|
|
1495
1501
|
*/
|
|
1496
1502
|
createLoanInternal: (data, query, params = {}) => this.request(Object.assign({ path: `/api/los/loan/application/internal`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1497
1503
|
/**
|
|
@@ -1502,8 +1508,8 @@ export class Api extends HttpClient {
|
|
|
1502
1508
|
* @summary Update Loan Custom Fields
|
|
1503
1509
|
* @request PATCH:/api/los/loan/application/{loanID}/custom-fields
|
|
1504
1510
|
* @secure
|
|
1505
|
-
* @response `200` `string`
|
|
1506
|
-
* @response `422` `UnprocessableEntity`
|
|
1511
|
+
* @response `200` `string` OK
|
|
1512
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1507
1513
|
*/
|
|
1508
1514
|
updateLoanCustomFields: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/los/loan/application/${loanId}/custom-fields`, method: "PATCH", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1509
1515
|
/**
|
|
@@ -1514,9 +1520,9 @@ export class Api extends HttpClient {
|
|
|
1514
1520
|
* @summary Update Loan Consent and Custom Fields
|
|
1515
1521
|
* @request PATCH:/api/los/loan/application/{loanID}/consent
|
|
1516
1522
|
* @secure
|
|
1517
|
-
* @response `200` `string`
|
|
1523
|
+
* @response `200` `string` OK
|
|
1518
1524
|
* @response `202` `string` Accepted
|
|
1519
|
-
* @response `422` `UnprocessableEntity`
|
|
1525
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1520
1526
|
*/
|
|
1521
1527
|
updateLoanConsent: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/los/loan/application/${loanId}/consent`, method: "PATCH", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1522
1528
|
/**
|
|
@@ -1527,7 +1533,7 @@ export class Api extends HttpClient {
|
|
|
1527
1533
|
* @summary Get Documents
|
|
1528
1534
|
* @request GET:/api/los/loan/tasks/documents/{loanID}
|
|
1529
1535
|
* @secure
|
|
1530
|
-
* @response `200` `(DocumentData)[]`
|
|
1536
|
+
* @response `200` `(DocumentData)[]` OK
|
|
1531
1537
|
*/
|
|
1532
1538
|
getTaskDocumentsByLoan: (loanId, params = {}) => this.request(Object.assign({ path: `/api/los/loan/tasks/documents/${loanId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
1533
1539
|
/**
|
|
@@ -1538,7 +1544,7 @@ export class Api extends HttpClient {
|
|
|
1538
1544
|
* @summary Get Document Content
|
|
1539
1545
|
* @request GET:/api/los/loan/{loanID}/document/{documentId}/content
|
|
1540
1546
|
* @secure
|
|
1541
|
-
* @response `200` `void`
|
|
1547
|
+
* @response `200` `void` OK
|
|
1542
1548
|
*/
|
|
1543
1549
|
getLoanDocumentContent: (loanId, documentId, query, params = {}) => this.request(Object.assign({ path: `/api/los/loan/${loanId}/document/${documentId}/content`, method: "GET", query: query, secure: true }, params)),
|
|
1544
1550
|
/**
|
|
@@ -1560,7 +1566,7 @@ export class Api extends HttpClient {
|
|
|
1560
1566
|
* @summary Get Preliminary Conditions
|
|
1561
1567
|
* @request GET:/api/los/loan/{loanID}/conditions/preliminary
|
|
1562
1568
|
* @secure
|
|
1563
|
-
* @response `200` `(PreliminaryCondition)[]`
|
|
1569
|
+
* @response `200` `(PreliminaryCondition)[]` OK
|
|
1564
1570
|
*/
|
|
1565
1571
|
getPreliminaryConditionsForLoan: (loanId, params = {}) => this.request(Object.assign({ path: `/api/los/loan/${loanId}/conditions/preliminary`, method: "GET", secure: true, format: "json" }, params)),
|
|
1566
1572
|
/**
|
|
@@ -1571,7 +1577,7 @@ export class Api extends HttpClient {
|
|
|
1571
1577
|
* @summary Get Underwriting Conditions
|
|
1572
1578
|
* @request GET:/api/los/loan/{loanID}/conditions/underwriting
|
|
1573
1579
|
* @secure
|
|
1574
|
-
* @response `200` `(UnderwritingCondition)[]`
|
|
1580
|
+
* @response `200` `(UnderwritingCondition)[]` OK
|
|
1575
1581
|
*/
|
|
1576
1582
|
getUnderwritingConditionsForLoan: (loanId, params = {}) => this.request(Object.assign({ path: `/api/los/loan/${loanId}/conditions/underwriting`, method: "GET", secure: true, format: "json" }, params)),
|
|
1577
1583
|
/**
|
|
@@ -1582,7 +1588,7 @@ export class Api extends HttpClient {
|
|
|
1582
1588
|
* @summary Get Embedded Signing Link
|
|
1583
1589
|
* @request POST:/api/los/loan/embeddedsigning/{envelopeId}/{userName}/{email}
|
|
1584
1590
|
* @secure
|
|
1585
|
-
* @response `200` `string`
|
|
1591
|
+
* @response `200` `string` OK
|
|
1586
1592
|
*/
|
|
1587
1593
|
getLoanEmbeddedSigningLink: (envelopeId, userName, email, params = {}) => this.request(Object.assign({ path: `/api/los/loan/embeddedsigning/${envelopeId}/${userName}/${email}`, method: "POST", secure: true, format: "json" }, params)),
|
|
1588
1594
|
/**
|
|
@@ -1594,7 +1600,7 @@ export class Api extends HttpClient {
|
|
|
1594
1600
|
* @request POST:/api/los/loan/generatedocument
|
|
1595
1601
|
* @deprecated
|
|
1596
1602
|
* @secure
|
|
1597
|
-
* @response `200` `DocumentDataRequest`
|
|
1603
|
+
* @response `200` `DocumentDataRequest` OK
|
|
1598
1604
|
*/
|
|
1599
1605
|
createLegacyLoanDocument: (data, params = {}) => this.request(Object.assign({ path: `/api/los/loan/generatedocument`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1600
1606
|
/**
|
|
@@ -1605,10 +1611,10 @@ export class Api extends HttpClient {
|
|
|
1605
1611
|
* @summary Create Edit Draft for Loan
|
|
1606
1612
|
* @request PUT:/api/los/loan/{loanID}/edit
|
|
1607
1613
|
* @secure
|
|
1608
|
-
* @response `200` `Draft`
|
|
1614
|
+
* @response `200` `Draft` OK
|
|
1609
1615
|
* @response `400` `ProblemDetails` Bad Request
|
|
1610
1616
|
* @response `404` `ProblemDetails` Not Found
|
|
1611
|
-
* @response `423` `ProblemDetails`
|
|
1617
|
+
* @response `423` `ProblemDetails` Locked
|
|
1612
1618
|
*/
|
|
1613
1619
|
createEditDraftForLoan: (loanId, query, params = {}) => this.request(Object.assign({ path: `/api/los/loan/${loanId}/edit`, method: "PUT", query: query, secure: true, format: "json" }, params)),
|
|
1614
1620
|
/**
|
|
@@ -1619,7 +1625,7 @@ export class Api extends HttpClient {
|
|
|
1619
1625
|
* @summary Add
|
|
1620
1626
|
* @request POST:/api/listings/{listingId}/files
|
|
1621
1627
|
* @secure
|
|
1622
|
-
* @response `200` `ListingFile`
|
|
1628
|
+
* @response `200` `ListingFile` OK
|
|
1623
1629
|
*/
|
|
1624
1630
|
addListingFile: (listingId, data, params = {}) => this.request(Object.assign({ path: `/api/listings/${listingId}/files`, method: "POST", body: data, secure: true, type: "multipart/form-data", format: "json" }, params)),
|
|
1625
1631
|
/**
|
|
@@ -1630,7 +1636,7 @@ export class Api extends HttpClient {
|
|
|
1630
1636
|
* @summary Update
|
|
1631
1637
|
* @request PATCH:/api/listings/{listingId}/files
|
|
1632
1638
|
* @secure
|
|
1633
|
-
* @response `200` `ListingFile`
|
|
1639
|
+
* @response `200` `ListingFile` OK
|
|
1634
1640
|
*/
|
|
1635
1641
|
updateListingFiles: (listingId, data, params = {}) => this.request(Object.assign({ path: `/api/listings/${listingId}/files`, method: "PATCH", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1636
1642
|
/**
|
|
@@ -1652,7 +1658,7 @@ export class Api extends HttpClient {
|
|
|
1652
1658
|
* @summary Add
|
|
1653
1659
|
* @request POST:/api/listings/{listingId}/photos
|
|
1654
1660
|
* @secure
|
|
1655
|
-
* @response `200` `ListingPhoto`
|
|
1661
|
+
* @response `200` `ListingPhoto` OK
|
|
1656
1662
|
*/
|
|
1657
1663
|
addListingPhoto: (listingId, data, params = {}) => this.request(Object.assign({ path: `/api/listings/${listingId}/photos`, method: "POST", body: data, secure: true, type: "multipart/form-data", format: "json" }, params)),
|
|
1658
1664
|
/**
|
|
@@ -1663,7 +1669,7 @@ export class Api extends HttpClient {
|
|
|
1663
1669
|
* @summary Update
|
|
1664
1670
|
* @request PATCH:/api/listings/{listingId}/photos
|
|
1665
1671
|
* @secure
|
|
1666
|
-
* @response `200` `(ListingPhoto)[]`
|
|
1672
|
+
* @response `200` `(ListingPhoto)[]` OK
|
|
1667
1673
|
*/
|
|
1668
1674
|
updateListingPhotos: (listingId, data, params = {}) => this.request(Object.assign({ path: `/api/listings/${listingId}/photos`, method: "PATCH", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1669
1675
|
/**
|
|
@@ -1685,7 +1691,7 @@ export class Api extends HttpClient {
|
|
|
1685
1691
|
* @summary Get All
|
|
1686
1692
|
* @request GET:/api/listings
|
|
1687
1693
|
* @secure
|
|
1688
|
-
* @response `200` `ListingPaginated`
|
|
1694
|
+
* @response `200` `ListingPaginated` OK
|
|
1689
1695
|
*/
|
|
1690
1696
|
getListings: (query, params = {}) => this.request(Object.assign({ path: `/api/listings`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
1691
1697
|
/**
|
|
@@ -1707,7 +1713,7 @@ export class Api extends HttpClient {
|
|
|
1707
1713
|
* @summary Get by Slug
|
|
1708
1714
|
* @request GET:/api/listings/slug/{slug}
|
|
1709
1715
|
* @secure
|
|
1710
|
-
* @response `200` `Listing`
|
|
1716
|
+
* @response `200` `Listing` OK
|
|
1711
1717
|
*/
|
|
1712
1718
|
getListingBySlug: (slug, params = {}) => this.request(Object.assign({ path: `/api/listings/slug/${slug}`, method: "GET", secure: true, format: "json" }, params)),
|
|
1713
1719
|
/**
|
|
@@ -1718,7 +1724,7 @@ export class Api extends HttpClient {
|
|
|
1718
1724
|
* @summary Get by ID
|
|
1719
1725
|
* @request GET:/api/listings/{id}
|
|
1720
1726
|
* @secure
|
|
1721
|
-
* @response `200` `Listing`
|
|
1727
|
+
* @response `200` `Listing` OK
|
|
1722
1728
|
*/
|
|
1723
1729
|
getListing: (id, params = {}) => this.request(Object.assign({ path: `/api/listings/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
1724
1730
|
/**
|
|
@@ -1729,7 +1735,7 @@ export class Api extends HttpClient {
|
|
|
1729
1735
|
* @summary Replace
|
|
1730
1736
|
* @request PUT:/api/listings/{id}
|
|
1731
1737
|
* @secure
|
|
1732
|
-
* @response `200` `Listing`
|
|
1738
|
+
* @response `200` `Listing` OK
|
|
1733
1739
|
*/
|
|
1734
1740
|
replaceListing: (id, data, params = {}) => this.request(Object.assign({ path: `/api/listings/${id}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1735
1741
|
/**
|
|
@@ -1751,7 +1757,7 @@ export class Api extends HttpClient {
|
|
|
1751
1757
|
* @summary Search
|
|
1752
1758
|
* @request POST:/api/listings/search
|
|
1753
1759
|
* @secure
|
|
1754
|
-
* @response `200` `ListingPaginated`
|
|
1760
|
+
* @response `200` `ListingPaginated` OK
|
|
1755
1761
|
*/
|
|
1756
1762
|
searchListings: (data, query, params = {}) => this.request(Object.assign({ path: `/api/listings/search`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1757
1763
|
/**
|
|
@@ -1762,7 +1768,7 @@ export class Api extends HttpClient {
|
|
|
1762
1768
|
* @summary Update Background Image
|
|
1763
1769
|
* @request PUT:/api/listings/{id}/background-image
|
|
1764
1770
|
* @secure
|
|
1765
|
-
* @response `200` `File`
|
|
1771
|
+
* @response `200` `File` OK
|
|
1766
1772
|
*/
|
|
1767
1773
|
updateListingBackgroundImage: (id, data, params = {}) => this.request(Object.assign({ path: `/api/listings/${id}/background-image`, method: "PUT", body: data, secure: true, type: "multipart/form-data", format: "json" }, params)),
|
|
1768
1774
|
/**
|
|
@@ -1784,7 +1790,7 @@ export class Api extends HttpClient {
|
|
|
1784
1790
|
* @summary Get Open House Flyer
|
|
1785
1791
|
* @request GET:/api/listings/{id}/open-house-flyer
|
|
1786
1792
|
* @secure
|
|
1787
|
-
* @response `200` `File`
|
|
1793
|
+
* @response `200` `File` OK
|
|
1788
1794
|
*/
|
|
1789
1795
|
getListingOpenHouseFlyer: (id, params = {}) => this.request(Object.assign({ path: `/api/listings/${id}/open-house-flyer`, method: "GET", secure: true, format: "json" }, params)),
|
|
1790
1796
|
/**
|
|
@@ -1795,7 +1801,7 @@ export class Api extends HttpClient {
|
|
|
1795
1801
|
* @summary Get
|
|
1796
1802
|
* @request GET:/api/loans/{loanID}/calculators/loan-calculator
|
|
1797
1803
|
* @secure
|
|
1798
|
-
* @response `200` `RunLOCalculation`
|
|
1804
|
+
* @response `200` `RunLOCalculation` OK
|
|
1799
1805
|
*/
|
|
1800
1806
|
getLoanCalculator: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/calculators/loan-calculator`, method: "GET", secure: true, format: "json" }, params)),
|
|
1801
1807
|
/**
|
|
@@ -1806,9 +1812,9 @@ export class Api extends HttpClient {
|
|
|
1806
1812
|
* @summary Run
|
|
1807
1813
|
* @request POST:/api/loans/{loanID}/calculators/loan-calculator
|
|
1808
1814
|
* @secure
|
|
1809
|
-
* @response `200` `RunLOCalculation`
|
|
1810
|
-
* @response `422` `UnprocessableEntity`
|
|
1811
|
-
* @response `423` `UnprocessableEntity`
|
|
1815
|
+
* @response `200` `RunLOCalculation` OK
|
|
1816
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1817
|
+
* @response `423` `UnprocessableEntity` Locked
|
|
1812
1818
|
*/
|
|
1813
1819
|
runLoanCalculator: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/calculators/loan-calculator`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1814
1820
|
/**
|
|
@@ -1819,7 +1825,7 @@ export class Api extends HttpClient {
|
|
|
1819
1825
|
* @summary Get All
|
|
1820
1826
|
* @request GET:/api/loans/{loanID}/loan-comparison
|
|
1821
1827
|
* @secure
|
|
1822
|
-
* @response `200` `LoanComparison`
|
|
1828
|
+
* @response `200` `LoanComparison` OK
|
|
1823
1829
|
*/
|
|
1824
1830
|
getLoanComparisons: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/loan-comparison`, method: "GET", secure: true, format: "json" }, params)),
|
|
1825
1831
|
/**
|
|
@@ -1831,8 +1837,8 @@ export class Api extends HttpClient {
|
|
|
1831
1837
|
* @request POST:/api/loans/{loanID}/loan-comparison/{index}
|
|
1832
1838
|
* @secure
|
|
1833
1839
|
* @response `201` `LoanComparisonScenario` Created
|
|
1834
|
-
* @response `422` `UnprocessableEntity`
|
|
1835
|
-
* @response `423` `UnprocessableEntity`
|
|
1840
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1841
|
+
* @response `423` `UnprocessableEntity` Locked
|
|
1836
1842
|
*/
|
|
1837
1843
|
createLoanComparison: (loanId, index, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/loan-comparison/${index}`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1838
1844
|
/**
|
|
@@ -1855,7 +1861,7 @@ export class Api extends HttpClient {
|
|
|
1855
1861
|
* @request POST:/api/loans/{loanID}/loan-comparison/pdf
|
|
1856
1862
|
* @secure
|
|
1857
1863
|
* @response `204` `void` No Content
|
|
1858
|
-
* @response `422` `UnprocessableEntity`
|
|
1864
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
1859
1865
|
*/
|
|
1860
1866
|
createLoanComparisonPdf: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/loan-comparison/pdf`, method: "POST", body: data, secure: true, type: "application/json" }, params)),
|
|
1861
1867
|
/**
|
|
@@ -1868,7 +1874,7 @@ export class Api extends HttpClient {
|
|
|
1868
1874
|
* @secure
|
|
1869
1875
|
* @response `204` `void` No Content
|
|
1870
1876
|
* @response `404` `ProblemDetails` Not Found
|
|
1871
|
-
* @response `422` `ProblemDetails`
|
|
1877
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
1872
1878
|
*/
|
|
1873
1879
|
resyncLoanConsents: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/consents/resync`, method: "POST", secure: true }, params)),
|
|
1874
1880
|
/**
|
|
@@ -1879,7 +1885,7 @@ export class Api extends HttpClient {
|
|
|
1879
1885
|
* @summary Get all custom field values for a loan
|
|
1880
1886
|
* @request GET:/api/loans/{loanId}/custom-fields
|
|
1881
1887
|
* @secure
|
|
1882
|
-
* @response `200` `(CustomFieldValue)[]`
|
|
1888
|
+
* @response `200` `(CustomFieldValue)[]` OK
|
|
1883
1889
|
*/
|
|
1884
1890
|
getLoanCustomFieldValues: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/custom-fields`, method: "GET", secure: true, format: "json" }, params)),
|
|
1885
1891
|
/**
|
|
@@ -1892,7 +1898,7 @@ export class Api extends HttpClient {
|
|
|
1892
1898
|
* @secure
|
|
1893
1899
|
* @response `204` `void` No Content
|
|
1894
1900
|
* @response `400` `ProblemDetails` Bad Request
|
|
1895
|
-
* @response `422` `ProblemDetails`
|
|
1901
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
1896
1902
|
*/
|
|
1897
1903
|
bulkSetLoanCustomFieldValues: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/custom-fields`, method: "PUT", body: data, secure: true, type: "application/json" }, params)),
|
|
1898
1904
|
/**
|
|
@@ -1906,7 +1912,7 @@ export class Api extends HttpClient {
|
|
|
1906
1912
|
* @response `204` `void` No Content
|
|
1907
1913
|
* @response `400` `ProblemDetails` Bad Request
|
|
1908
1914
|
* @response `404` `ProblemDetails` Not Found
|
|
1909
|
-
* @response `422` `ProblemDetails`
|
|
1915
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
1910
1916
|
*/
|
|
1911
1917
|
setLoanCustomFieldValue: (loanId, definitionId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/custom-fields/${definitionId}`, method: "PUT", body: data, secure: true, type: "application/json" }, params)),
|
|
1912
1918
|
/**
|
|
@@ -1929,7 +1935,7 @@ export class Api extends HttpClient {
|
|
|
1929
1935
|
* @summary Get All
|
|
1930
1936
|
* @request GET:/api/loans/{loanId}/documents/buckets
|
|
1931
1937
|
* @secure
|
|
1932
|
-
* @response `200` `(string)[]`
|
|
1938
|
+
* @response `200` `(string)[]` OK
|
|
1933
1939
|
*/
|
|
1934
1940
|
getLoanDocumentBuckets: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents/buckets`, method: "GET", secure: true, format: "json" }, params)),
|
|
1935
1941
|
/**
|
|
@@ -1951,7 +1957,7 @@ export class Api extends HttpClient {
|
|
|
1951
1957
|
* @summary Get all loan document folders for the current account
|
|
1952
1958
|
* @request GET:/api/loan-document-folders
|
|
1953
1959
|
* @secure
|
|
1954
|
-
* @response `200` `(LoanDocumentFolder)[]`
|
|
1960
|
+
* @response `200` `(LoanDocumentFolder)[]` OK
|
|
1955
1961
|
*/
|
|
1956
1962
|
getAllLoanDocumentFolders: (params = {}) => this.request(Object.assign({ path: `/api/loan-document-folders`, method: "GET", secure: true, format: "json" }, params)),
|
|
1957
1963
|
/**
|
|
@@ -1964,7 +1970,7 @@ export class Api extends HttpClient {
|
|
|
1964
1970
|
* @secure
|
|
1965
1971
|
* @response `201` `LoanDocumentFolder` Created
|
|
1966
1972
|
* @response `409` `ProblemDetails` Conflict
|
|
1967
|
-
* @response `422` `ProblemDetails`
|
|
1973
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
1968
1974
|
*/
|
|
1969
1975
|
createLoanDocumentFolder: (data, params = {}) => this.request(Object.assign({ path: `/api/loan-document-folders`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1970
1976
|
/**
|
|
@@ -1975,7 +1981,7 @@ export class Api extends HttpClient {
|
|
|
1975
1981
|
* @summary Get a loan document folder by ID
|
|
1976
1982
|
* @request GET:/api/loan-document-folders/{id}
|
|
1977
1983
|
* @secure
|
|
1978
|
-
* @response `200` `LoanDocumentFolder`
|
|
1984
|
+
* @response `200` `LoanDocumentFolder` OK
|
|
1979
1985
|
* @response `404` `ProblemDetails` Not Found
|
|
1980
1986
|
*/
|
|
1981
1987
|
getLoanDocumentFolderById: (id, params = {}) => this.request(Object.assign({ path: `/api/loan-document-folders/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -1987,11 +1993,11 @@ export class Api extends HttpClient {
|
|
|
1987
1993
|
* @summary Update a loan document folder. Blocked when folder has ever been referenced, except for permission edits on the system-default Unassigned folder.
|
|
1988
1994
|
* @request PUT:/api/loan-document-folders/{id}
|
|
1989
1995
|
* @secure
|
|
1990
|
-
* @response `200` `LoanDocumentFolder`
|
|
1996
|
+
* @response `200` `LoanDocumentFolder` OK
|
|
1991
1997
|
* @response `400` `ProblemDetails` Bad Request
|
|
1992
1998
|
* @response `404` `ProblemDetails` Not Found
|
|
1993
1999
|
* @response `409` `ProblemDetails` Conflict
|
|
1994
|
-
* @response `422` `ProblemDetails`
|
|
2000
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
1995
2001
|
*/
|
|
1996
2002
|
updateLoanDocumentFolder: (id, data, params = {}) => this.request(Object.assign({ path: `/api/loan-document-folders/${id}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
1997
2003
|
/**
|
|
@@ -2041,7 +2047,7 @@ export class Api extends HttpClient {
|
|
|
2041
2047
|
* @summary Get folder usage. Returns HasEverBeenReferenced including soft-deleted documents and tasks.
|
|
2042
2048
|
* @request GET:/api/loan-document-folders/{id}/usage
|
|
2043
2049
|
* @secure
|
|
2044
|
-
* @response `200` `LoanDocumentFolderUsage`
|
|
2050
|
+
* @response `200` `LoanDocumentFolderUsage` OK
|
|
2045
2051
|
* @response `404` `ProblemDetails` Not Found
|
|
2046
2052
|
*/
|
|
2047
2053
|
getLoanDocumentFolderUsage: (id, params = {}) => this.request(Object.assign({ path: `/api/loan-document-folders/${id}/usage`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2053,7 +2059,7 @@ export class Api extends HttpClient {
|
|
|
2053
2059
|
* @summary Get By ID
|
|
2054
2060
|
* @request GET:/api/loans/{loanId}/documents/{documentId}
|
|
2055
2061
|
* @secure
|
|
2056
|
-
* @response `200` `LoanDocument`
|
|
2062
|
+
* @response `200` `LoanDocument` OK
|
|
2057
2063
|
* @response `404` `ProblemDetails` Not Found
|
|
2058
2064
|
*/
|
|
2059
2065
|
getLoanDocument: (loanId, documentId, query, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents/${documentId}`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
@@ -2065,7 +2071,7 @@ export class Api extends HttpClient {
|
|
|
2065
2071
|
* @summary Get document previews in batch
|
|
2066
2072
|
* @request POST:/api/loans/{loanId}/documents/previews
|
|
2067
2073
|
* @secure
|
|
2068
|
-
* @response `200` `Record<string,string>`
|
|
2074
|
+
* @response `200` `Record<string,string>` OK
|
|
2069
2075
|
* @response `400` `ProblemDetails` Bad Request
|
|
2070
2076
|
*/
|
|
2071
2077
|
getLoanDocumentPreviews: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents/previews`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
@@ -2077,7 +2083,7 @@ export class Api extends HttpClient {
|
|
|
2077
2083
|
* @summary Search loan documents
|
|
2078
2084
|
* @request POST:/api/loans/{loanId}/documents/search
|
|
2079
2085
|
* @secure
|
|
2080
|
-
* @response `200` `LoanDocumentSearchPaginated`
|
|
2086
|
+
* @response `200` `LoanDocumentSearchPaginated` OK
|
|
2081
2087
|
*/
|
|
2082
2088
|
searchLoanDocuments: (loanId, data, query, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents/search`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
2083
2089
|
/**
|
|
@@ -2088,7 +2094,7 @@ export class Api extends HttpClient {
|
|
|
2088
2094
|
* @summary Get document folder hierarchy
|
|
2089
2095
|
* @request POST:/api/loans/{loanId}/documents/folders
|
|
2090
2096
|
* @secure
|
|
2091
|
-
* @response `200` `(DocumentFolder)[]`
|
|
2097
|
+
* @response `200` `(DocumentFolder)[]` OK
|
|
2092
2098
|
*/
|
|
2093
2099
|
getLoanDocumentFolders: (loanId, data, query, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents/folders`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
2094
2100
|
/**
|
|
@@ -2099,7 +2105,7 @@ export class Api extends HttpClient {
|
|
|
2099
2105
|
* @summary Download By ID
|
|
2100
2106
|
* @request GET:/api/loans/{loanId}/documents/{documentId}/download
|
|
2101
2107
|
* @secure
|
|
2102
|
-
* @response `200` `Blob`
|
|
2108
|
+
* @response `200` `Blob` OK
|
|
2103
2109
|
* @response `404` `ProblemDetails` Not Found
|
|
2104
2110
|
*/
|
|
2105
2111
|
downloadLoanDocument: (loanId, documentId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents/${documentId}/download`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2113,7 +2119,7 @@ export class Api extends HttpClient {
|
|
|
2113
2119
|
* @secure
|
|
2114
2120
|
* @response `201` `LoanDocument` Created
|
|
2115
2121
|
* @response `404` `ProblemDetails` Not Found
|
|
2116
|
-
* @response `422` `UnprocessableEntity`
|
|
2122
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2117
2123
|
*/
|
|
2118
2124
|
createLoanDocument: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents`, method: "POST", body: data, secure: true, type: "multipart/form-data", format: "json" }, params)),
|
|
2119
2125
|
/**
|
|
@@ -2124,9 +2130,9 @@ export class Api extends HttpClient {
|
|
|
2124
2130
|
* @summary Retry
|
|
2125
2131
|
* @request POST:/api/loans/{loanId}/documents/{documentId}/retry
|
|
2126
2132
|
* @secure
|
|
2127
|
-
* @response `200` `LoanDocument`
|
|
2133
|
+
* @response `200` `LoanDocument` OK
|
|
2128
2134
|
* @response `404` `ProblemDetails` Not Found
|
|
2129
|
-
* @response `422` `UnprocessableEntity`
|
|
2135
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2130
2136
|
*/
|
|
2131
2137
|
retryFailedLoanDocument: (loanId, documentId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents/${documentId}/retry`, method: "POST", secure: true, format: "json" }, params)),
|
|
2132
2138
|
/**
|
|
@@ -2137,7 +2143,7 @@ export class Api extends HttpClient {
|
|
|
2137
2143
|
* @summary Generate PDF Document
|
|
2138
2144
|
* @request POST:/api/loans/{loanId}/documents/generate
|
|
2139
2145
|
* @secure
|
|
2140
|
-
* @response `200` `DocumentDataRequest`
|
|
2146
|
+
* @response `200` `DocumentDataRequest` OK
|
|
2141
2147
|
*/
|
|
2142
2148
|
generateLoanDocument: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents/generate`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
2143
2149
|
/**
|
|
@@ -2148,7 +2154,7 @@ export class Api extends HttpClient {
|
|
|
2148
2154
|
* @summary Send existing documents to loan users or external emails
|
|
2149
2155
|
* @request POST:/api/loans/{loanId}/documents/distribute
|
|
2150
2156
|
* @secure
|
|
2151
|
-
* @response `200` `void`
|
|
2157
|
+
* @response `200` `void` OK
|
|
2152
2158
|
* @response `400` `ProblemDetails` Bad Request
|
|
2153
2159
|
* @response `404` `ProblemDetails` Not Found
|
|
2154
2160
|
*/
|
|
@@ -2161,7 +2167,7 @@ export class Api extends HttpClient {
|
|
|
2161
2167
|
* @summary Sync documents from LOS
|
|
2162
2168
|
* @request POST:/api/loans/{loanId}/documents/sync
|
|
2163
2169
|
* @secure
|
|
2164
|
-
* @response `200` `DocumentSync`
|
|
2170
|
+
* @response `200` `DocumentSync` OK
|
|
2165
2171
|
* @response `404` `ProblemDetails` Not Found
|
|
2166
2172
|
*/
|
|
2167
2173
|
syncLoanDocumentsFromLos: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents/sync`, method: "POST", secure: true, format: "json" }, params)),
|
|
@@ -2173,9 +2179,9 @@ export class Api extends HttpClient {
|
|
|
2173
2179
|
* @summary Retry syncing a document to LOS
|
|
2174
2180
|
* @request POST:/api/loans/{loanId}/documents/{documentId}/sync/retry
|
|
2175
2181
|
* @secure
|
|
2176
|
-
* @response `200` `void`
|
|
2182
|
+
* @response `200` `void` OK
|
|
2177
2183
|
* @response `404` `ProblemDetails` Not Found
|
|
2178
|
-
* @response `423` `ProblemDetails`
|
|
2184
|
+
* @response `423` `ProblemDetails` Locked
|
|
2179
2185
|
*/
|
|
2180
2186
|
retrySyncLoanDocumentToLos: (loanId, documentId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/documents/${documentId}/sync/retry`, method: "POST", secure: true }, params)),
|
|
2181
2187
|
/**
|
|
@@ -2197,7 +2203,7 @@ export class Api extends HttpClient {
|
|
|
2197
2203
|
* @summary Get All
|
|
2198
2204
|
* @request GET:/api/loans/drafts
|
|
2199
2205
|
* @secure
|
|
2200
|
-
* @response `200` `(DraftContent)[]`
|
|
2206
|
+
* @response `200` `(DraftContent)[]` OK
|
|
2201
2207
|
*/
|
|
2202
2208
|
getLoanDrafts: (params = {}) => this.request(Object.assign({ path: `/api/loans/drafts`, method: "GET", secure: true, format: "json" }, params)),
|
|
2203
2209
|
/**
|
|
@@ -2208,7 +2214,7 @@ export class Api extends HttpClient {
|
|
|
2208
2214
|
* @summary Get by ID
|
|
2209
2215
|
* @request GET:/api/loans/drafts/{draftId}
|
|
2210
2216
|
* @secure
|
|
2211
|
-
* @response `200` `DraftContent`
|
|
2217
|
+
* @response `200` `DraftContent` OK
|
|
2212
2218
|
*/
|
|
2213
2219
|
getLoanDraft: (draftId, params = {}) => this.request(Object.assign({ path: `/api/loans/drafts/${draftId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
2214
2220
|
/**
|
|
@@ -2219,7 +2225,7 @@ export class Api extends HttpClient {
|
|
|
2219
2225
|
* @summary Replace
|
|
2220
2226
|
* @request PUT:/api/loans/drafts/{draftId}
|
|
2221
2227
|
* @secure
|
|
2222
|
-
* @response `200` `Draft`
|
|
2228
|
+
* @response `200` `Draft` OK
|
|
2223
2229
|
*/
|
|
2224
2230
|
replaceLoanDraft: (draftId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/drafts/${draftId}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
2225
2231
|
/**
|
|
@@ -2252,7 +2258,7 @@ export class Api extends HttpClient {
|
|
|
2252
2258
|
* @summary Reassign Loan officer
|
|
2253
2259
|
* @request PUT:/api/loans/drafts/{draftId}/reassign
|
|
2254
2260
|
* @secure
|
|
2255
|
-
* @response `200` `Draft`
|
|
2261
|
+
* @response `200` `Draft` OK
|
|
2256
2262
|
*/
|
|
2257
2263
|
reassignLoanOfficer: (draftId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/drafts/${draftId}/reassign`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
2258
2264
|
/**
|
|
@@ -2263,7 +2269,7 @@ export class Api extends HttpClient {
|
|
|
2263
2269
|
* @summary Restore deleted draft
|
|
2264
2270
|
* @request POST:/api/loans/drafts/{draftId}/restore
|
|
2265
2271
|
* @secure
|
|
2266
|
-
* @response `200` `Draft`
|
|
2272
|
+
* @response `200` `Draft` OK
|
|
2267
2273
|
*/
|
|
2268
2274
|
restoreLoanDraft: (draftId, params = {}) => this.request(Object.assign({ path: `/api/loans/drafts/${draftId}/restore`, method: "POST", secure: true, format: "json" }, params)),
|
|
2269
2275
|
/**
|
|
@@ -2274,7 +2280,7 @@ export class Api extends HttpClient {
|
|
|
2274
2280
|
* @summary Get Loan Imports
|
|
2275
2281
|
* @request GET:/api/loan-imports
|
|
2276
2282
|
* @secure
|
|
2277
|
-
* @response `200` `LoanImportPaginated`
|
|
2283
|
+
* @response `200` `LoanImportPaginated` OK
|
|
2278
2284
|
*/
|
|
2279
2285
|
getLoanImports: (query, params = {}) => this.request(Object.assign({ path: `/api/loan-imports`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
2280
2286
|
/**
|
|
@@ -2296,7 +2302,7 @@ export class Api extends HttpClient {
|
|
|
2296
2302
|
* @summary Get Loan Import
|
|
2297
2303
|
* @request GET:/api/loan-imports/{id}
|
|
2298
2304
|
* @secure
|
|
2299
|
-
* @response `200` `LoanImport`
|
|
2305
|
+
* @response `200` `LoanImport` OK
|
|
2300
2306
|
*/
|
|
2301
2307
|
getLoanImport: (id, params = {}) => this.request(Object.assign({ path: `/api/loan-imports/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
2302
2308
|
/**
|
|
@@ -2307,7 +2313,7 @@ export class Api extends HttpClient {
|
|
|
2307
2313
|
* @summary Get Loan Import Logs
|
|
2308
2314
|
* @request GET:/api/loan-imports/{id}/logs
|
|
2309
2315
|
* @secure
|
|
2310
|
-
* @response `200` `LoanImportLogPaginated`
|
|
2316
|
+
* @response `200` `LoanImportLogPaginated` OK
|
|
2311
2317
|
*/
|
|
2312
2318
|
getLoanImportLogs: (id, query, params = {}) => this.request(Object.assign({ path: `/api/loan-imports/${id}/logs`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
2313
2319
|
/**
|
|
@@ -2318,7 +2324,7 @@ export class Api extends HttpClient {
|
|
|
2318
2324
|
* @summary Get Invites
|
|
2319
2325
|
* @request GET:/api/loans/{loanId}/invites
|
|
2320
2326
|
* @secure
|
|
2321
|
-
* @response `200` `(Invite)[]`
|
|
2327
|
+
* @response `200` `(Invite)[]` OK
|
|
2322
2328
|
* @response `404` `ProblemDetails` Not Found
|
|
2323
2329
|
*/
|
|
2324
2330
|
getLoanInvites: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/invites`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2330,7 +2336,7 @@ export class Api extends HttpClient {
|
|
|
2330
2336
|
* @summary Invite Contacts
|
|
2331
2337
|
* @request POST:/api/loans/{loanId}/invites
|
|
2332
2338
|
* @secure
|
|
2333
|
-
* @response `200` `(Invite)[]`
|
|
2339
|
+
* @response `200` `(Invite)[]` OK
|
|
2334
2340
|
* @response `404` `ProblemDetails` Not Found
|
|
2335
2341
|
*/
|
|
2336
2342
|
inviteLoanContacts: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/invites`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
@@ -2342,7 +2348,7 @@ export class Api extends HttpClient {
|
|
|
2342
2348
|
* @summary Search loan logs
|
|
2343
2349
|
* @request POST:/api/loans/{loanId}/logs/search
|
|
2344
2350
|
* @secure
|
|
2345
|
-
* @response `200` `LoanLogPaginated`
|
|
2351
|
+
* @response `200` `LoanLogPaginated` OK
|
|
2346
2352
|
*/
|
|
2347
2353
|
searchLoanLogs: (loanId, data, query, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/logs/search`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
2348
2354
|
/**
|
|
@@ -2353,7 +2359,7 @@ export class Api extends HttpClient {
|
|
|
2353
2359
|
* @summary Get loan log by ID
|
|
2354
2360
|
* @request GET:/api/loans/{loanId}/logs/{loanLogId}
|
|
2355
2361
|
* @secure
|
|
2356
|
-
* @response `200` `LoanLogDetail`
|
|
2362
|
+
* @response `200` `LoanLogDetail` OK
|
|
2357
2363
|
* @response `404` `ProblemDetails` Not Found
|
|
2358
2364
|
*/
|
|
2359
2365
|
getLoanLogById: (loanId, loanLogId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/logs/${loanLogId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2365,7 +2371,7 @@ export class Api extends HttpClient {
|
|
|
2365
2371
|
* @summary Get All
|
|
2366
2372
|
* @request GET:/api/loan-officers
|
|
2367
2373
|
* @secure
|
|
2368
|
-
* @response `200` `BranchUserPaginated`
|
|
2374
|
+
* @response `200` `BranchUserPaginated` OK
|
|
2369
2375
|
*/
|
|
2370
2376
|
getLoanOfficers: (query, params = {}) => this.request(Object.assign({ path: `/api/loan-officers`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
2371
2377
|
/**
|
|
@@ -2376,7 +2382,7 @@ export class Api extends HttpClient {
|
|
|
2376
2382
|
* @summary Search
|
|
2377
2383
|
* @request POST:/api/loan-officers/search
|
|
2378
2384
|
* @secure
|
|
2379
|
-
* @response `200` `BranchUserPaginated`
|
|
2385
|
+
* @response `200` `BranchUserPaginated` OK
|
|
2380
2386
|
*/
|
|
2381
2387
|
searchLoanOfficers: (data, query, params = {}) => this.request(Object.assign({ path: `/api/loan-officers/search`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
2382
2388
|
/**
|
|
@@ -2387,7 +2393,7 @@ export class Api extends HttpClient {
|
|
|
2387
2393
|
* @summary Get by ID
|
|
2388
2394
|
* @request GET:/api/loan-officers/{id}
|
|
2389
2395
|
* @secure
|
|
2390
|
-
* @response `200` `BranchUser`
|
|
2396
|
+
* @response `200` `BranchUser` OK
|
|
2391
2397
|
*/
|
|
2392
2398
|
getLoanOfficer: (id, params = {}) => this.request(Object.assign({ path: `/api/loan-officers/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
2393
2399
|
/**
|
|
@@ -2398,8 +2404,8 @@ export class Api extends HttpClient {
|
|
|
2398
2404
|
* @summary Create Site Configuration
|
|
2399
2405
|
* @request POST:/api/loan-officers/{loanOfficerId}/site-configurations
|
|
2400
2406
|
* @secure
|
|
2401
|
-
* @response `200` `SiteConfiguration`
|
|
2402
|
-
* @response `422` `UnprocessableEntity`
|
|
2407
|
+
* @response `200` `SiteConfiguration` OK
|
|
2408
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2403
2409
|
*/
|
|
2404
2410
|
createLoanOfficerSiteConfiguration: (loanOfficerId, data, params = {}) => this.request(Object.assign({ path: `/api/loan-officers/${loanOfficerId}/site-configurations`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
2405
2411
|
/**
|
|
@@ -2410,7 +2416,7 @@ export class Api extends HttpClient {
|
|
|
2410
2416
|
* @summary Get Site Configuration
|
|
2411
2417
|
* @request GET:/api/loan-officers/{loanOfficerId}/site-configurations/{siteConfigurationId}
|
|
2412
2418
|
* @secure
|
|
2413
|
-
* @response `200` `SiteConfigurationWithInherited`
|
|
2419
|
+
* @response `200` `SiteConfigurationWithInherited` OK
|
|
2414
2420
|
*/
|
|
2415
2421
|
getLoanOfficerSiteConfiguration: (loanOfficerId, siteConfigurationId, params = {}) => this.request(Object.assign({ path: `/api/loan-officers/${loanOfficerId}/site-configurations/${siteConfigurationId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
2416
2422
|
/**
|
|
@@ -2421,8 +2427,8 @@ export class Api extends HttpClient {
|
|
|
2421
2427
|
* @summary Replace Site Configuration
|
|
2422
2428
|
* @request PUT:/api/loan-officers/{loanOfficerId}/site-configurations/{siteConfigurationId}
|
|
2423
2429
|
* @secure
|
|
2424
|
-
* @response `200` `SiteConfiguration`
|
|
2425
|
-
* @response `422` `UnprocessableEntity`
|
|
2430
|
+
* @response `200` `SiteConfiguration` OK
|
|
2431
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2426
2432
|
*/
|
|
2427
2433
|
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: "application/json", format: "json" }, params)),
|
|
2428
2434
|
/**
|
|
@@ -2433,7 +2439,7 @@ export class Api extends HttpClient {
|
|
|
2433
2439
|
* @summary Search
|
|
2434
2440
|
* @request POST:/api/loans/queue/search
|
|
2435
2441
|
* @secure
|
|
2436
|
-
* @response `200` `LoanQueuePaginated`
|
|
2442
|
+
* @response `200` `LoanQueuePaginated` OK
|
|
2437
2443
|
*/
|
|
2438
2444
|
searchLoanQueue: (data, query, params = {}) => this.request(Object.assign({ path: `/api/loans/queue/search`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
2439
2445
|
/**
|
|
@@ -2444,7 +2450,7 @@ export class Api extends HttpClient {
|
|
|
2444
2450
|
* @summary Get Loan Queue Record
|
|
2445
2451
|
* @request GET:/api/loans/queue/{loanQueueId}
|
|
2446
2452
|
* @secure
|
|
2447
|
-
* @response `200` `any`
|
|
2453
|
+
* @response `200` `any` OK
|
|
2448
2454
|
* @response `404` `ProblemDetails` Not Found
|
|
2449
2455
|
*/
|
|
2450
2456
|
getLoanQueue: (loanQueueId, params = {}) => this.request(Object.assign({ path: `/api/loans/queue/${loanQueueId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2456,7 +2462,7 @@ export class Api extends HttpClient {
|
|
|
2456
2462
|
* @summary Replace Loan Queue Record
|
|
2457
2463
|
* @request PUT:/api/loans/queue/{loanQueueId}
|
|
2458
2464
|
* @secure
|
|
2459
|
-
* @response `200` `LoanQueueWithData`
|
|
2465
|
+
* @response `200` `LoanQueueWithData` OK
|
|
2460
2466
|
* @response `404` `ProblemDetails` Not Found
|
|
2461
2467
|
*/
|
|
2462
2468
|
replaceLoanQueue: (loanQueueId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/queue/${loanQueueId}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
@@ -2492,7 +2498,7 @@ export class Api extends HttpClient {
|
|
|
2492
2498
|
* @summary Get By ID
|
|
2493
2499
|
* @request GET:/api/loans/{loanID}
|
|
2494
2500
|
* @secure
|
|
2495
|
-
* @response `200` `Loan`
|
|
2501
|
+
* @response `200` `Loan` OK
|
|
2496
2502
|
* @response `404` `ProblemDetails` Not Found
|
|
2497
2503
|
*/
|
|
2498
2504
|
getLoan: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2504,7 +2510,7 @@ export class Api extends HttpClient {
|
|
|
2504
2510
|
* @summary Get Loans
|
|
2505
2511
|
* @request GET:/api/loans
|
|
2506
2512
|
* @secure
|
|
2507
|
-
* @response `200` `GetApplications`
|
|
2513
|
+
* @response `200` `GetApplications` OK
|
|
2508
2514
|
*/
|
|
2509
2515
|
getLoans: (params = {}) => this.request(Object.assign({ path: `/api/loans`, method: "GET", secure: true, format: "json" }, params)),
|
|
2510
2516
|
/**
|
|
@@ -2529,7 +2535,7 @@ export class Api extends HttpClient {
|
|
|
2529
2535
|
* @summary Search
|
|
2530
2536
|
* @request POST:/api/loans/search
|
|
2531
2537
|
* @secure
|
|
2532
|
-
* @response `200` `LoanListPaginated`
|
|
2538
|
+
* @response `200` `LoanListPaginated` OK
|
|
2533
2539
|
*/
|
|
2534
2540
|
searchLoans: (data, query, params = {}) => this.request(Object.assign({ path: `/api/loans/search`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
2535
2541
|
/**
|
|
@@ -2540,7 +2546,7 @@ export class Api extends HttpClient {
|
|
|
2540
2546
|
* @summary Update loan fields
|
|
2541
2547
|
* @request PATCH:/api/loans/{loanId}
|
|
2542
2548
|
* @secure
|
|
2543
|
-
* @response `200` `Loan`
|
|
2549
|
+
* @response `200` `Loan` OK
|
|
2544
2550
|
* @response `400` `any` Bad Request
|
|
2545
2551
|
* @response `401` `ProblemDetails` Unauthorized
|
|
2546
2552
|
* @response `403` `ProblemDetails` Forbidden
|
|
@@ -2569,7 +2575,7 @@ export class Api extends HttpClient {
|
|
|
2569
2575
|
* @summary Import from LOS
|
|
2570
2576
|
* @request POST:/api/loans/import-from-los/{loanId}
|
|
2571
2577
|
* @secure
|
|
2572
|
-
* @response `200` `Loan`
|
|
2578
|
+
* @response `200` `Loan` OK
|
|
2573
2579
|
*/
|
|
2574
2580
|
importLoanFromLos: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/import-from-los/${loanId}`, method: "POST", secure: true, format: "json" }, params)),
|
|
2575
2581
|
/**
|
|
@@ -2592,7 +2598,7 @@ export class Api extends HttpClient {
|
|
|
2592
2598
|
* @summary Get outstanding items
|
|
2593
2599
|
* @request GET:/api/loans/{loanId}/outstanding-items
|
|
2594
2600
|
* @secure
|
|
2595
|
-
* @response `200` `LoanOutstandingItems`
|
|
2601
|
+
* @response `200` `LoanOutstandingItems` OK
|
|
2596
2602
|
* @response `401` `ProblemDetails` Unauthorized
|
|
2597
2603
|
* @response `403` `ProblemDetails` Forbidden
|
|
2598
2604
|
*/
|
|
@@ -2605,7 +2611,7 @@ export class Api extends HttpClient {
|
|
|
2605
2611
|
* @summary Trigger ASO services
|
|
2606
2612
|
* @request POST:/api/loans/{loanId}/aso
|
|
2607
2613
|
* @secure
|
|
2608
|
-
* @response `200` `AutomatedService`
|
|
2614
|
+
* @response `200` `AutomatedService` OK
|
|
2609
2615
|
* @response `400` `ProblemDetails` Bad Request
|
|
2610
2616
|
* @response `404` `ProblemDetails` Not Found
|
|
2611
2617
|
*/
|
|
@@ -2618,7 +2624,7 @@ export class Api extends HttpClient {
|
|
|
2618
2624
|
* @summary Search
|
|
2619
2625
|
* @request POST:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments/search
|
|
2620
2626
|
* @secure
|
|
2621
|
-
* @response `200` `TaskCommentPaginated`
|
|
2627
|
+
* @response `200` `TaskCommentPaginated` OK
|
|
2622
2628
|
* @response `404` `ProblemDetails` Not Found
|
|
2623
2629
|
*/
|
|
2624
2630
|
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: "application/json", format: "json" }, params)),
|
|
@@ -2630,7 +2636,7 @@ export class Api extends HttpClient {
|
|
|
2630
2636
|
* @summary Get by ID
|
|
2631
2637
|
* @request GET:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments/{id}
|
|
2632
2638
|
* @secure
|
|
2633
|
-
* @response `200` `TaskComment`
|
|
2639
|
+
* @response `200` `TaskComment` OK
|
|
2634
2640
|
* @response `404` `ProblemDetails` Not Found
|
|
2635
2641
|
*/
|
|
2636
2642
|
getLoanTaskComment: (id, loanId, userLoanTaskId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks/${userLoanTaskId}/comments/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2654,7 +2660,7 @@ export class Api extends HttpClient {
|
|
|
2654
2660
|
* @summary Replace
|
|
2655
2661
|
* @request PUT:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments/{commentId}
|
|
2656
2662
|
* @secure
|
|
2657
|
-
* @response `200` `TaskComment`
|
|
2663
|
+
* @response `200` `TaskComment` OK
|
|
2658
2664
|
* @response `404` `ProblemDetails` Not Found
|
|
2659
2665
|
*/
|
|
2660
2666
|
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: "application/json", format: "json" }, params)),
|
|
@@ -2680,7 +2686,7 @@ export class Api extends HttpClient {
|
|
|
2680
2686
|
* @secure
|
|
2681
2687
|
* @response `201` `UserLoanTask` Created
|
|
2682
2688
|
* @response `404` `ProblemDetails` Not Found
|
|
2683
|
-
* @response `422` `UnprocessableEntity`
|
|
2689
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2684
2690
|
*/
|
|
2685
2691
|
createLoanTaskDocument: (loanId, loanTaskId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks/${loanTaskId}/documents`, method: "POST", body: data, secure: true, type: "multipart/form-data", format: "json" }, params)),
|
|
2686
2692
|
/**
|
|
@@ -2692,7 +2698,7 @@ export class Api extends HttpClient {
|
|
|
2692
2698
|
* @request POST:/api/loans/{loanID}/tasks/{loanTaskId}/documents/bucket
|
|
2693
2699
|
* @secure
|
|
2694
2700
|
* @response `204` `UserLoanTask` No Content
|
|
2695
|
-
* @response `422` `UnprocessableEntity`
|
|
2701
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2696
2702
|
*/
|
|
2697
2703
|
createLoanTaskDocumentBucket: (loanId, loanTaskId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks/${loanTaskId}/documents/bucket`, method: "POST", secure: true, format: "json" }, params)),
|
|
2698
2704
|
/**
|
|
@@ -2728,7 +2734,7 @@ export class Api extends HttpClient {
|
|
|
2728
2734
|
* @summary Search
|
|
2729
2735
|
* @request POST:/api/loans/tasks/search
|
|
2730
2736
|
* @secure
|
|
2731
|
-
* @response `200` `UserLoanTaskPaginated`
|
|
2737
|
+
* @response `200` `UserLoanTaskPaginated` OK
|
|
2732
2738
|
*/
|
|
2733
2739
|
searchLoanTasks: (data, query, params = {}) => this.request(Object.assign({ path: `/api/loans/tasks/search`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
2734
2740
|
/**
|
|
@@ -2739,8 +2745,8 @@ export class Api extends HttpClient {
|
|
|
2739
2745
|
* @summary Search Summary
|
|
2740
2746
|
* @request POST:/api/loans/tasks/search/summary
|
|
2741
2747
|
* @secure
|
|
2742
|
-
* @response `200` `(LoanTaskStatusSummary)[]`
|
|
2743
|
-
* @response `422` `UnprocessableEntity`
|
|
2748
|
+
* @response `200` `(LoanTaskStatusSummary)[]` OK
|
|
2749
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2744
2750
|
*/
|
|
2745
2751
|
searchLoanTasksSummary: (data, params = {}) => this.request(Object.assign({ path: `/api/loans/tasks/search/summary`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
2746
2752
|
/**
|
|
@@ -2751,7 +2757,7 @@ export class Api extends HttpClient {
|
|
|
2751
2757
|
* @summary Get All
|
|
2752
2758
|
* @request GET:/api/loans/{loanID}/tasks
|
|
2753
2759
|
* @secure
|
|
2754
|
-
* @response `200` `(UserLoanTask)[]`
|
|
2760
|
+
* @response `200` `(UserLoanTask)[]` OK
|
|
2755
2761
|
* @response `404` `ProblemDetails` Not Found
|
|
2756
2762
|
*/
|
|
2757
2763
|
getLoanTasks: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2763,7 +2769,7 @@ export class Api extends HttpClient {
|
|
|
2763
2769
|
* @summary Get by ID
|
|
2764
2770
|
* @request GET:/api/loans/{loanID}/tasks/{id}
|
|
2765
2771
|
* @secure
|
|
2766
|
-
* @response `200` `UserLoanTask`
|
|
2772
|
+
* @response `200` `UserLoanTask` OK
|
|
2767
2773
|
* @response `404` `ProblemDetails` Not Found
|
|
2768
2774
|
*/
|
|
2769
2775
|
getLoanTask: (id, loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2775,7 +2781,7 @@ export class Api extends HttpClient {
|
|
|
2775
2781
|
* @summary Get Difference
|
|
2776
2782
|
* @request GET:/api/loans/{loanID}/tasks/diff
|
|
2777
2783
|
* @secure
|
|
2778
|
-
* @response `200` `(UserLoanTask)[]`
|
|
2784
|
+
* @response `200` `(UserLoanTask)[]` OK
|
|
2779
2785
|
* @response `404` `ProblemDetails` Not Found
|
|
2780
2786
|
*/
|
|
2781
2787
|
getLoanTaskDifference: (loanId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks/diff`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2811,7 +2817,7 @@ export class Api extends HttpClient {
|
|
|
2811
2817
|
* @summary Replace
|
|
2812
2818
|
* @request PUT:/api/loans/{loanID}/tasks/{userLoanTaskID}
|
|
2813
2819
|
* @secure
|
|
2814
|
-
* @response `200` `UserLoanTask`
|
|
2820
|
+
* @response `200` `UserLoanTask` OK
|
|
2815
2821
|
* @response `404` `ProblemDetails` Not Found
|
|
2816
2822
|
*/
|
|
2817
2823
|
replaceLoanTask: (loanId, userLoanTaskId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks/${userLoanTaskId}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
@@ -2835,9 +2841,9 @@ export class Api extends HttpClient {
|
|
|
2835
2841
|
* @summary Create
|
|
2836
2842
|
* @request POST:/api/loans/{loanID}/tasks/{loanTaskId}/verifications
|
|
2837
2843
|
* @secure
|
|
2838
|
-
* @response `200` `UserLoanTask`
|
|
2844
|
+
* @response `200` `UserLoanTask` OK
|
|
2839
2845
|
* @response `404` `ProblemDetails` Not Found
|
|
2840
|
-
* @response `422` `UnprocessableEntity`
|
|
2846
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2841
2847
|
*/
|
|
2842
2848
|
createLoanTaskVerification: (loanId, loanTaskId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks/${loanTaskId}/verifications`, method: "POST", secure: true, format: "json" }, params)),
|
|
2843
2849
|
/**
|
|
@@ -2848,7 +2854,7 @@ export class Api extends HttpClient {
|
|
|
2848
2854
|
* @summary Get User Loan Consents
|
|
2849
2855
|
* @request GET:/api/loans/{loanId}/users/{userId}/consents
|
|
2850
2856
|
* @secure
|
|
2851
|
-
* @response `200` `(UserLoanConsent)[]`
|
|
2857
|
+
* @response `200` `(UserLoanConsent)[]` OK
|
|
2852
2858
|
* @response `403` `ProblemDetails` Forbidden
|
|
2853
2859
|
*/
|
|
2854
2860
|
getLoanUserConsents: (loanId, userId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/users/${userId}/consents`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2860,7 +2866,7 @@ export class Api extends HttpClient {
|
|
|
2860
2866
|
* @summary Get Loan User
|
|
2861
2867
|
* @request GET:/api/loans/{loanId}/users/{userId}
|
|
2862
2868
|
* @secure
|
|
2863
|
-
* @response `200` `LoanUser`
|
|
2869
|
+
* @response `200` `LoanUser` OK
|
|
2864
2870
|
*/
|
|
2865
2871
|
getLoanUser: (loanId, userId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/users/${userId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
2866
2872
|
/**
|
|
@@ -2904,7 +2910,7 @@ export class Api extends HttpClient {
|
|
|
2904
2910
|
* @summary Search LOS operation tracking
|
|
2905
2911
|
* @request POST:/api/los-operation-tracking/search
|
|
2906
2912
|
* @secure
|
|
2907
|
-
* @response `200` `LosOperationTrackingPaginated`
|
|
2913
|
+
* @response `200` `LosOperationTrackingPaginated` OK
|
|
2908
2914
|
*/
|
|
2909
2915
|
searchLosOperationTracking: (data, query, params = {}) => this.request(Object.assign({ path: `/api/los-operation-tracking/search`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
2910
2916
|
/**
|
|
@@ -2915,7 +2921,7 @@ export class Api extends HttpClient {
|
|
|
2915
2921
|
* @summary Get All
|
|
2916
2922
|
* @request GET:/api/milestones
|
|
2917
2923
|
* @secure
|
|
2918
|
-
* @response `200` `(MilestoneConfiguration)[]`
|
|
2924
|
+
* @response `200` `(MilestoneConfiguration)[]` OK
|
|
2919
2925
|
*/
|
|
2920
2926
|
getMilestones: (params = {}) => this.request(Object.assign({ path: `/api/milestones`, method: "GET", secure: true, format: "json" }, params)),
|
|
2921
2927
|
/**
|
|
@@ -2927,7 +2933,7 @@ export class Api extends HttpClient {
|
|
|
2927
2933
|
* @request POST:/api/milestones
|
|
2928
2934
|
* @secure
|
|
2929
2935
|
* @response `201` `MilestoneConfiguration` Created
|
|
2930
|
-
* @response `422` `UnprocessableEntity`
|
|
2936
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2931
2937
|
*/
|
|
2932
2938
|
createMilestone: (data, params = {}) => this.request(Object.assign({ path: `/api/milestones`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
2933
2939
|
/**
|
|
@@ -2938,7 +2944,7 @@ export class Api extends HttpClient {
|
|
|
2938
2944
|
* @summary Get By ID
|
|
2939
2945
|
* @request GET:/api/milestones/{id}
|
|
2940
2946
|
* @secure
|
|
2941
|
-
* @response `200` `MilestoneConfiguration`
|
|
2947
|
+
* @response `200` `MilestoneConfiguration` OK
|
|
2942
2948
|
* @response `404` `Error` Not Found
|
|
2943
2949
|
*/
|
|
2944
2950
|
getMilestone: (id, params = {}) => this.request(Object.assign({ path: `/api/milestones/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -2950,9 +2956,9 @@ export class Api extends HttpClient {
|
|
|
2950
2956
|
* @summary Replace
|
|
2951
2957
|
* @request PUT:/api/milestones/{id}
|
|
2952
2958
|
* @secure
|
|
2953
|
-
* @response `200` `MilestoneConfiguration`
|
|
2959
|
+
* @response `200` `MilestoneConfiguration` OK
|
|
2954
2960
|
* @response `404` `Error` Not Found
|
|
2955
|
-
* @response `422` `UnprocessableEntity`
|
|
2961
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
2956
2962
|
*/
|
|
2957
2963
|
replaceMilestone: (id, data, params = {}) => this.request(Object.assign({ path: `/api/milestones/${id}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
2958
2964
|
/**
|
|
@@ -2975,10 +2981,10 @@ export class Api extends HttpClient {
|
|
|
2975
2981
|
* @summary Idempotently seed the test loan officer, site configuration, loan and completed borrower used by mobile app store reviewers.
|
|
2976
2982
|
* @request POST:/api/mobile-app-review/seed
|
|
2977
2983
|
* @secure
|
|
2978
|
-
* @response `200` `MobileAppReviewSeed`
|
|
2984
|
+
* @response `200` `MobileAppReviewSeed` OK
|
|
2979
2985
|
* @response `400` `ProblemDetails` Bad Request
|
|
2980
2986
|
* @response `404` `ProblemDetails` Not Found
|
|
2981
|
-
* @response `422` `ProblemDetails`
|
|
2987
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
2982
2988
|
*/
|
|
2983
2989
|
seedMobileAppReview: (data, params = {}) => this.request(Object.assign({ path: `/api/mobile-app-review/seed`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
2984
2990
|
/**
|
|
@@ -2989,8 +2995,8 @@ export class Api extends HttpClient {
|
|
|
2989
2995
|
* @summary Calculate Monthly Payment
|
|
2990
2996
|
* @request POST:/api/mortgage-calculators/monthly-payment
|
|
2991
2997
|
* @secure
|
|
2992
|
-
* @response `200` `MonthlyPaymentCalculator`
|
|
2993
|
-
* @response `422` `ProblemDetails`
|
|
2998
|
+
* @response `200` `MonthlyPaymentCalculator` OK
|
|
2999
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
2994
3000
|
*/
|
|
2995
3001
|
calculateMortgageMonthlyPayment: (data, params = {}) => this.request(Object.assign({ path: `/api/mortgage-calculators/monthly-payment`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
2996
3002
|
/**
|
|
@@ -3001,8 +3007,8 @@ export class Api extends HttpClient {
|
|
|
3001
3007
|
* @summary Calculate Affordability
|
|
3002
3008
|
* @request POST:/api/mortgage-calculators/affordability
|
|
3003
3009
|
* @secure
|
|
3004
|
-
* @response `200` `AffordabilityCalculator`
|
|
3005
|
-
* @response `422` `ProblemDetails`
|
|
3010
|
+
* @response `200` `AffordabilityCalculator` OK
|
|
3011
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
3006
3012
|
*/
|
|
3007
3013
|
calculateMortgageAffordability: (data, params = {}) => this.request(Object.assign({ path: `/api/mortgage-calculators/affordability`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3008
3014
|
/**
|
|
@@ -3013,8 +3019,8 @@ export class Api extends HttpClient {
|
|
|
3013
3019
|
* @summary Calculate Loan Comparison
|
|
3014
3020
|
* @request POST:/api/mortgage-calculators/loan-comparison
|
|
3015
3021
|
* @secure
|
|
3016
|
-
* @response `200` `LoanComparisonCalculator`
|
|
3017
|
-
* @response `422` `ProblemDetails`
|
|
3022
|
+
* @response `200` `LoanComparisonCalculator` OK
|
|
3023
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
3018
3024
|
*/
|
|
3019
3025
|
calculateMortgageLoanComparison: (data, params = {}) => this.request(Object.assign({ path: `/api/mortgage-calculators/loan-comparison`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3020
3026
|
/**
|
|
@@ -3025,8 +3031,8 @@ export class Api extends HttpClient {
|
|
|
3025
3031
|
* @summary Calculate Refinance
|
|
3026
3032
|
* @request POST:/api/mortgage-calculators/refinance
|
|
3027
3033
|
* @secure
|
|
3028
|
-
* @response `200` `RefinanceCalculator`
|
|
3029
|
-
* @response `422` `ProblemDetails`
|
|
3034
|
+
* @response `200` `RefinanceCalculator` OK
|
|
3035
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
3030
3036
|
*/
|
|
3031
3037
|
calculateMortgageRefinance: (data, params = {}) => this.request(Object.assign({ path: `/api/mortgage-calculators/refinance`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3032
3038
|
/**
|
|
@@ -3037,8 +3043,8 @@ export class Api extends HttpClient {
|
|
|
3037
3043
|
* @summary Send Notification for Loan
|
|
3038
3044
|
* @request POST:/api/notifications
|
|
3039
3045
|
* @secure
|
|
3040
|
-
* @response `200` `void`
|
|
3041
|
-
* @response `422` `UnprocessableEntity`
|
|
3046
|
+
* @response `200` `void` OK
|
|
3047
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3042
3048
|
*/
|
|
3043
3049
|
sendNotificationForLoan: (data, params = {}) => this.request(Object.assign({ path: `/api/notifications`, method: "POST", body: data, secure: true, type: "application/json" }, params)),
|
|
3044
3050
|
/**
|
|
@@ -3049,8 +3055,8 @@ export class Api extends HttpClient {
|
|
|
3049
3055
|
* @summary Send Test Notification for Loan
|
|
3050
3056
|
* @request POST:/api/notifications/test
|
|
3051
3057
|
* @secure
|
|
3052
|
-
* @response `200` `void`
|
|
3053
|
-
* @response `422` `UnprocessableEntity`
|
|
3058
|
+
* @response `200` `void` OK
|
|
3059
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3054
3060
|
*/
|
|
3055
3061
|
sendTestNotificationForLoan: (data, params = {}) => this.request(Object.assign({ path: `/api/notifications/test`, method: "POST", body: data, secure: true, type: "application/json" }, params)),
|
|
3056
3062
|
/**
|
|
@@ -3061,7 +3067,7 @@ export class Api extends HttpClient {
|
|
|
3061
3067
|
* @summary Get All
|
|
3062
3068
|
* @request GET:/api/notification-templates
|
|
3063
3069
|
* @secure
|
|
3064
|
-
* @response `200` `(NotificationTemplateBase)[]`
|
|
3070
|
+
* @response `200` `(NotificationTemplateBase)[]` OK
|
|
3065
3071
|
*/
|
|
3066
3072
|
getNotificationTemplates: (query, params = {}) => this.request(Object.assign({ path: `/api/notification-templates`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
3067
3073
|
/**
|
|
@@ -3073,7 +3079,7 @@ export class Api extends HttpClient {
|
|
|
3073
3079
|
* @request POST:/api/notification-templates
|
|
3074
3080
|
* @secure
|
|
3075
3081
|
* @response `201` `NotificationTemplate` Created
|
|
3076
|
-
* @response `422` `UnprocessableEntity`
|
|
3082
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3077
3083
|
*/
|
|
3078
3084
|
createNotificationTemplate: (data, params = {}) => this.request(Object.assign({ path: `/api/notification-templates`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3079
3085
|
/**
|
|
@@ -3084,7 +3090,7 @@ export class Api extends HttpClient {
|
|
|
3084
3090
|
* @summary Search
|
|
3085
3091
|
* @request POST:/api/notification-templates/search
|
|
3086
3092
|
* @secure
|
|
3087
|
-
* @response `200` `NotificationTemplateBasePaginated`
|
|
3093
|
+
* @response `200` `NotificationTemplateBasePaginated` OK
|
|
3088
3094
|
*/
|
|
3089
3095
|
searchNotificationTemplates: (data, query, params = {}) => this.request(Object.assign({ path: `/api/notification-templates/search`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3090
3096
|
/**
|
|
@@ -3095,7 +3101,7 @@ export class Api extends HttpClient {
|
|
|
3095
3101
|
* @summary Get by ID
|
|
3096
3102
|
* @request GET:/api/notification-templates/{id}
|
|
3097
3103
|
* @secure
|
|
3098
|
-
* @response `200` `NotificationTemplate`
|
|
3104
|
+
* @response `200` `NotificationTemplate` OK
|
|
3099
3105
|
*/
|
|
3100
3106
|
getNotificationTemplate: (id, params = {}) => this.request(Object.assign({ path: `/api/notification-templates/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
3101
3107
|
/**
|
|
@@ -3106,8 +3112,8 @@ export class Api extends HttpClient {
|
|
|
3106
3112
|
* @summary Replace
|
|
3107
3113
|
* @request PUT:/api/notification-templates/{id}
|
|
3108
3114
|
* @secure
|
|
3109
|
-
* @response `200` `NotificationTemplate`
|
|
3110
|
-
* @response `422` `UnprocessableEntity`
|
|
3115
|
+
* @response `200` `NotificationTemplate` OK
|
|
3116
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3111
3117
|
*/
|
|
3112
3118
|
replaceNotificationTemplate: (id, data, params = {}) => this.request(Object.assign({ path: `/api/notification-templates/${id}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3113
3119
|
/**
|
|
@@ -3129,7 +3135,7 @@ export class Api extends HttpClient {
|
|
|
3129
3135
|
* @summary Restore
|
|
3130
3136
|
* @request POST:/api/notification-templates/{id}/restore
|
|
3131
3137
|
* @secure
|
|
3132
|
-
* @response `200` `NotificationTemplate`
|
|
3138
|
+
* @response `200` `NotificationTemplate` OK
|
|
3133
3139
|
*/
|
|
3134
3140
|
restoreNotificationTemplate: (id, params = {}) => this.request(Object.assign({ path: `/api/notification-templates/${id}/restore`, method: "POST", secure: true, format: "json" }, params)),
|
|
3135
3141
|
/**
|
|
@@ -3140,7 +3146,7 @@ export class Api extends HttpClient {
|
|
|
3140
3146
|
* @summary Get All
|
|
3141
3147
|
* @request GET:/api/notification-templates/{notificationId}/versions
|
|
3142
3148
|
* @secure
|
|
3143
|
-
* @response `200` `(NotificationTemplateVersion)[]`
|
|
3149
|
+
* @response `200` `(NotificationTemplateVersion)[]` OK
|
|
3144
3150
|
*/
|
|
3145
3151
|
getNotificationTemplateVersions: (notificationId, params = {}) => this.request(Object.assign({ path: `/api/notification-templates/${notificationId}/versions`, method: "GET", secure: true, format: "json" }, params)),
|
|
3146
3152
|
/**
|
|
@@ -3151,7 +3157,7 @@ export class Api extends HttpClient {
|
|
|
3151
3157
|
* @summary Create
|
|
3152
3158
|
* @request POST:/api/notification-templates/{notificationId}/versions
|
|
3153
3159
|
* @secure
|
|
3154
|
-
* @response `200` `NotificationTemplateVersion`
|
|
3160
|
+
* @response `200` `NotificationTemplateVersion` OK
|
|
3155
3161
|
*/
|
|
3156
3162
|
createNotificationTemplateVersion: (notificationId, data, params = {}) => this.request(Object.assign({ path: `/api/notification-templates/${notificationId}/versions`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3157
3163
|
/**
|
|
@@ -3162,7 +3168,7 @@ export class Api extends HttpClient {
|
|
|
3162
3168
|
* @summary Get by ID
|
|
3163
3169
|
* @request GET:/api/notification-templates/{notificationId}/versions/{id}
|
|
3164
3170
|
* @secure
|
|
3165
|
-
* @response `200` `NotificationTemplateVersion`
|
|
3171
|
+
* @response `200` `NotificationTemplateVersion` OK
|
|
3166
3172
|
*/
|
|
3167
3173
|
getNotificationTemplateVersion: (notificationId, id, params = {}) => this.request(Object.assign({ path: `/api/notification-templates/${notificationId}/versions/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
3168
3174
|
/**
|
|
@@ -3173,7 +3179,7 @@ export class Api extends HttpClient {
|
|
|
3173
3179
|
* @summary Replace
|
|
3174
3180
|
* @request PUT:/api/notification-templates/{notificationId}/versions/{id}
|
|
3175
3181
|
* @secure
|
|
3176
|
-
* @response `200` `NotificationTemplateVersion`
|
|
3182
|
+
* @response `200` `NotificationTemplateVersion` OK
|
|
3177
3183
|
*/
|
|
3178
3184
|
replaceNotificationTemplateVersion: (notificationId, id, data, params = {}) => this.request(Object.assign({ path: `/api/notification-templates/${notificationId}/versions/${id}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3179
3185
|
/**
|
|
@@ -3184,7 +3190,7 @@ export class Api extends HttpClient {
|
|
|
3184
3190
|
* @summary Delete
|
|
3185
3191
|
* @request DELETE:/api/notification-templates/{notificationId}/versions/{id}
|
|
3186
3192
|
* @secure
|
|
3187
|
-
* @response `200` `NotificationTemplateVersion`
|
|
3193
|
+
* @response `200` `NotificationTemplateVersion` OK
|
|
3188
3194
|
*/
|
|
3189
3195
|
deleteNotificationTemplateVersion: (notificationId, id, params = {}) => this.request(Object.assign({ path: `/api/notification-templates/${notificationId}/versions/${id}`, method: "DELETE", secure: true, format: "json" }, params)),
|
|
3190
3196
|
/**
|
|
@@ -3195,7 +3201,7 @@ export class Api extends HttpClient {
|
|
|
3195
3201
|
* @summary Get All
|
|
3196
3202
|
* @request GET:/api/partners
|
|
3197
3203
|
* @secure
|
|
3198
|
-
* @response `200` `BranchUserPaginated`
|
|
3204
|
+
* @response `200` `BranchUserPaginated` OK
|
|
3199
3205
|
*/
|
|
3200
3206
|
getPartners: (query, params = {}) => this.request(Object.assign({ path: `/api/partners`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
3201
3207
|
/**
|
|
@@ -3206,7 +3212,7 @@ export class Api extends HttpClient {
|
|
|
3206
3212
|
* @summary Search
|
|
3207
3213
|
* @request POST:/api/partners/search
|
|
3208
3214
|
* @secure
|
|
3209
|
-
* @response `200` `BranchUserPaginated`
|
|
3215
|
+
* @response `200` `BranchUserPaginated` OK
|
|
3210
3216
|
*/
|
|
3211
3217
|
searchPartners: (data, query, params = {}) => this.request(Object.assign({ path: `/api/partners/search`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3212
3218
|
/**
|
|
@@ -3217,7 +3223,7 @@ export class Api extends HttpClient {
|
|
|
3217
3223
|
* @summary Get by ID
|
|
3218
3224
|
* @request GET:/api/partners/{id}
|
|
3219
3225
|
* @secure
|
|
3220
|
-
* @response `200` `BranchUser`
|
|
3226
|
+
* @response `200` `BranchUser` OK
|
|
3221
3227
|
*/
|
|
3222
3228
|
getPartner: (id, params = {}) => this.request(Object.assign({ path: `/api/partners/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
3223
3229
|
/**
|
|
@@ -3228,8 +3234,8 @@ export class Api extends HttpClient {
|
|
|
3228
3234
|
* @summary Create Site Configuration
|
|
3229
3235
|
* @request POST:/api/partners/{realtorId}/site-configurations
|
|
3230
3236
|
* @secure
|
|
3231
|
-
* @response `200` `SiteConfiguration`
|
|
3232
|
-
* @response `422` `UnprocessableEntity`
|
|
3237
|
+
* @response `200` `SiteConfiguration` OK
|
|
3238
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3233
3239
|
*/
|
|
3234
3240
|
createPartnerSiteConfiguration: (realtorId, data, params = {}) => this.request(Object.assign({ path: `/api/partners/${realtorId}/site-configurations`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3235
3241
|
/**
|
|
@@ -3240,7 +3246,7 @@ export class Api extends HttpClient {
|
|
|
3240
3246
|
* @summary Get Site Configuration
|
|
3241
3247
|
* @request GET:/api/partners/{realtorId}/site-configurations/{siteConfigurationId}
|
|
3242
3248
|
* @secure
|
|
3243
|
-
* @response `200` `SiteConfigurationWithInherited`
|
|
3249
|
+
* @response `200` `SiteConfigurationWithInherited` OK
|
|
3244
3250
|
*/
|
|
3245
3251
|
getPartnerSiteConfiguration: (realtorId, siteConfigurationId, params = {}) => this.request(Object.assign({ path: `/api/partners/${realtorId}/site-configurations/${siteConfigurationId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
3246
3252
|
/**
|
|
@@ -3251,8 +3257,8 @@ export class Api extends HttpClient {
|
|
|
3251
3257
|
* @summary Replace Site Configuration
|
|
3252
3258
|
* @request PUT:/api/partners/{realtorId}/site-configurations/{siteConfigurationId}
|
|
3253
3259
|
* @secure
|
|
3254
|
-
* @response `200` `SiteConfiguration`
|
|
3255
|
-
* @response `422` `UnprocessableEntity`
|
|
3260
|
+
* @response `200` `SiteConfiguration` OK
|
|
3261
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3256
3262
|
*/
|
|
3257
3263
|
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: "application/json", format: "json" }, params)),
|
|
3258
3264
|
/**
|
|
@@ -3263,7 +3269,7 @@ export class Api extends HttpClient {
|
|
|
3263
3269
|
* @summary Get By ID
|
|
3264
3270
|
* @request GET:/api/site-configurations/{id}
|
|
3265
3271
|
* @secure
|
|
3266
|
-
* @response `200` `SiteConfiguration`
|
|
3272
|
+
* @response `200` `SiteConfiguration` OK
|
|
3267
3273
|
*/
|
|
3268
3274
|
getSiteConfiguration: (id, params = {}) => this.request(Object.assign({ path: `/api/site-configurations/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
3269
3275
|
/**
|
|
@@ -3275,8 +3281,8 @@ export class Api extends HttpClient {
|
|
|
3275
3281
|
* @request POST:/api/site-configurations/url
|
|
3276
3282
|
* @deprecated
|
|
3277
3283
|
* @secure
|
|
3278
|
-
* @response `200` `SiteConfigurationByUrl`
|
|
3279
|
-
* @response `422` `UnprocessableEntity`
|
|
3284
|
+
* @response `200` `SiteConfigurationByUrl` OK
|
|
3285
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3280
3286
|
*/
|
|
3281
3287
|
searchSiteConfigurationByUrl: (data, params = {}) => this.request(Object.assign({ path: `/api/site-configurations/url`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3282
3288
|
/**
|
|
@@ -3287,8 +3293,8 @@ export class Api extends HttpClient {
|
|
|
3287
3293
|
* @summary Get By URL
|
|
3288
3294
|
* @request GET:/api/site-configurations
|
|
3289
3295
|
* @secure
|
|
3290
|
-
* @response `200` `SiteConfigurationByUrl`
|
|
3291
|
-
* @response `422` `UnprocessableEntity`
|
|
3296
|
+
* @response `200` `SiteConfigurationByUrl` OK
|
|
3297
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3292
3298
|
*/
|
|
3293
3299
|
getSiteConfigurationByUrl: (query, params = {}) => this.request(Object.assign({ path: `/api/site-configurations`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
3294
3300
|
/**
|
|
@@ -3300,8 +3306,8 @@ export class Api extends HttpClient {
|
|
|
3300
3306
|
* @request POST:/api/site-configurations/louser
|
|
3301
3307
|
* @deprecated
|
|
3302
3308
|
* @secure
|
|
3303
|
-
* @response `200` `SiteConfiguration`
|
|
3304
|
-
* @response `422` `UnprocessableEntity`
|
|
3309
|
+
* @response `200` `SiteConfiguration` OK
|
|
3310
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3305
3311
|
*/
|
|
3306
3312
|
searchSiteConfigurationByLoanOfficerUser: (data, params = {}) => this.request(Object.assign({ path: `/api/site-configurations/louser`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3307
3313
|
/**
|
|
@@ -3312,8 +3318,8 @@ export class Api extends HttpClient {
|
|
|
3312
3318
|
* @summary Get By Loan Officer User
|
|
3313
3319
|
* @request GET:/api/site-configurations/louser/{loUserId}
|
|
3314
3320
|
* @secure
|
|
3315
|
-
* @response `200` `SiteConfiguration`
|
|
3316
|
-
* @response `422` `UnprocessableEntity`
|
|
3321
|
+
* @response `200` `SiteConfiguration` OK
|
|
3322
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3317
3323
|
*/
|
|
3318
3324
|
getSiteConfigurationByLoanOfficerUser: (loUserId, params = {}) => this.request(Object.assign({ path: `/api/site-configurations/louser/${loUserId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
3319
3325
|
/**
|
|
@@ -3324,8 +3330,8 @@ export class Api extends HttpClient {
|
|
|
3324
3330
|
* @summary Search
|
|
3325
3331
|
* @request POST:/api/site-configurations/search
|
|
3326
3332
|
* @secure
|
|
3327
|
-
* @response `200` `SiteConfigurationSummaryPaginated`
|
|
3328
|
-
* @response `422` `UnprocessableEntity`
|
|
3333
|
+
* @response `200` `SiteConfigurationSummaryPaginated` OK
|
|
3334
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3329
3335
|
*/
|
|
3330
3336
|
searchSiteConfigurations: (data, query, params = {}) => this.request(Object.assign({ path: `/api/site-configurations/search`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3331
3337
|
/**
|
|
@@ -3336,7 +3342,7 @@ export class Api extends HttpClient {
|
|
|
3336
3342
|
* @summary Get Forms by Site Configuration
|
|
3337
3343
|
* @request GET:/api/site-configurations/{id}/forms
|
|
3338
3344
|
* @secure
|
|
3339
|
-
* @response `200` `(AdminAccessGetForms)[]`
|
|
3345
|
+
* @response `200` `(AdminAccessGetForms)[]` OK
|
|
3340
3346
|
*/
|
|
3341
3347
|
getFormsBySiteConfiguration: (id, params = {}) => this.request(Object.assign({ path: `/api/site-configurations/${id}/forms`, method: "GET", secure: true, format: "json" }, params)),
|
|
3342
3348
|
/**
|
|
@@ -3347,7 +3353,7 @@ export class Api extends HttpClient {
|
|
|
3347
3353
|
* @summary Get Saml Metadata
|
|
3348
3354
|
* @request GET:/api/site-configurations/sso/saml/{ssoIntegration}/metadata
|
|
3349
3355
|
* @secure
|
|
3350
|
-
* @response `200` `File`
|
|
3356
|
+
* @response `200` `File` OK
|
|
3351
3357
|
* @response `404` `ProblemDetails` Not Found
|
|
3352
3358
|
*/
|
|
3353
3359
|
getSamlMetadata: (sSoIntegration, ssoIntegration, params = {}) => this.request(Object.assign({ path: `/api/site-configurations/sso/saml/${ssoIntegration}/metadata`, method: "GET", secure: true }, params)),
|
|
@@ -3359,7 +3365,7 @@ export class Api extends HttpClient {
|
|
|
3359
3365
|
* @summary Create or Replace Saml Metadata
|
|
3360
3366
|
* @request POST:/api/site-configurations/sso/saml/{ssoIntegration}/metadata
|
|
3361
3367
|
* @secure
|
|
3362
|
-
* @response `200` `File`
|
|
3368
|
+
* @response `200` `File` OK
|
|
3363
3369
|
*/
|
|
3364
3370
|
createOrReplaceSamlMetadata: (sSoIntegration, ssoIntegration, params = {}) => this.request(Object.assign({ path: `/api/site-configurations/sso/saml/${ssoIntegration}/metadata`, method: "POST", secure: true }, params)),
|
|
3365
3371
|
/**
|
|
@@ -3370,7 +3376,7 @@ export class Api extends HttpClient {
|
|
|
3370
3376
|
* @summary List all site configurations assigned to a workflow
|
|
3371
3377
|
* @request GET:/api/workflows/{workflowId}/site-configurations
|
|
3372
3378
|
* @secure
|
|
3373
|
-
* @response `200` `(SiteConfigurationForm)[]`
|
|
3379
|
+
* @response `200` `(SiteConfigurationForm)[]` OK
|
|
3374
3380
|
*/
|
|
3375
3381
|
getWorkflowSiteConfigurations: (workflowId, params = {}) => this.request(Object.assign({ path: `/api/workflows/${workflowId}/site-configurations`, method: "GET", secure: true, format: "json" }, params)),
|
|
3376
3382
|
/**
|
|
@@ -3381,7 +3387,7 @@ export class Api extends HttpClient {
|
|
|
3381
3387
|
* @summary Get the workflow-site configuration assignment by composite key
|
|
3382
3388
|
* @request GET:/api/workflows/{workflowId}/site-configurations/{siteConfigurationId}
|
|
3383
3389
|
* @secure
|
|
3384
|
-
* @response `200` `SiteConfigurationForm`
|
|
3390
|
+
* @response `200` `SiteConfigurationForm` OK
|
|
3385
3391
|
* @response `404` `ProblemDetails` Not Found
|
|
3386
3392
|
*/
|
|
3387
3393
|
getWorkflowSiteConfiguration: (workflowId, siteConfigurationId, params = {}) => this.request(Object.assign({ path: `/api/workflows/${workflowId}/site-configurations/${siteConfigurationId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -3395,7 +3401,7 @@ export class Api extends HttpClient {
|
|
|
3395
3401
|
* @secure
|
|
3396
3402
|
* @response `201` `SiteConfigurationForm` Created
|
|
3397
3403
|
* @response `409` `ProblemDetails` Conflict
|
|
3398
|
-
* @response `422` `UnprocessableEntity`
|
|
3404
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3399
3405
|
*/
|
|
3400
3406
|
createWorkflowSiteConfiguration: (workflowId, siteConfigurationId, params = {}) => this.request(Object.assign({ path: `/api/workflows/${workflowId}/site-configurations/${siteConfigurationId}`, method: "POST", secure: true, format: "json" }, params)),
|
|
3401
3407
|
/**
|
|
@@ -3417,7 +3423,7 @@ export class Api extends HttpClient {
|
|
|
3417
3423
|
* @summary Get By Site Configuration Slug
|
|
3418
3424
|
* @request POST:/api/site-forms
|
|
3419
3425
|
* @secure
|
|
3420
|
-
* @response `200` `GetForm`
|
|
3426
|
+
* @response `200` `GetForm` OK
|
|
3421
3427
|
*/
|
|
3422
3428
|
getFormBySiteConfigurationSlug: (data, params = {}) => this.request(Object.assign({ path: `/api/site-forms`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3423
3429
|
/**
|
|
@@ -3428,7 +3434,7 @@ export class Api extends HttpClient {
|
|
|
3428
3434
|
* @summary Get by Users
|
|
3429
3435
|
* @request GET:/api/surveys
|
|
3430
3436
|
* @secure
|
|
3431
|
-
* @response `200` `(SocialSurveyRecord)[]`
|
|
3437
|
+
* @response `200` `(SocialSurveyRecord)[]` OK
|
|
3432
3438
|
*/
|
|
3433
3439
|
getSurveysByUsers: (query, params = {}) => this.request(Object.assign({ path: `/api/surveys`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
3434
3440
|
/**
|
|
@@ -3439,8 +3445,8 @@ export class Api extends HttpClient {
|
|
|
3439
3445
|
* @summary Get by User
|
|
3440
3446
|
* @request POST:/api/surveys
|
|
3441
3447
|
* @secure
|
|
3442
|
-
* @response `200` `(SocialSurveyRecord)[]`
|
|
3443
|
-
* @response `422` `UnprocessableEntity`
|
|
3448
|
+
* @response `200` `(SocialSurveyRecord)[]` OK
|
|
3449
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3444
3450
|
*/
|
|
3445
3451
|
getSurveysByUser: (data, params = {}) => this.request(Object.assign({ path: `/api/surveys`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3446
3452
|
/**
|
|
@@ -3451,7 +3457,7 @@ export class Api extends HttpClient {
|
|
|
3451
3457
|
* @summary Get All
|
|
3452
3458
|
* @request GET:/api/tasks
|
|
3453
3459
|
* @secure
|
|
3454
|
-
* @response `200` `Task`
|
|
3460
|
+
* @response `200` `Task` OK
|
|
3455
3461
|
* @response `404` `ProblemDetails` Not Found
|
|
3456
3462
|
*/
|
|
3457
3463
|
getTasks: (query, params = {}) => this.request(Object.assign({ path: `/api/tasks`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
@@ -3474,7 +3480,7 @@ export class Api extends HttpClient {
|
|
|
3474
3480
|
* @summary Get By ID
|
|
3475
3481
|
* @request GET:/api/tasks/{id}
|
|
3476
3482
|
* @secure
|
|
3477
|
-
* @response `200` `Task`
|
|
3483
|
+
* @response `200` `Task` OK
|
|
3478
3484
|
* @response `404` `ProblemDetails` Not Found
|
|
3479
3485
|
*/
|
|
3480
3486
|
getTask: (id, params = {}) => this.request(Object.assign({ path: `/api/tasks/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -3486,10 +3492,10 @@ export class Api extends HttpClient {
|
|
|
3486
3492
|
* @summary Replace
|
|
3487
3493
|
* @request PUT:/api/tasks/{id}
|
|
3488
3494
|
* @secure
|
|
3489
|
-
* @response `200` `
|
|
3495
|
+
* @response `200` `Task` OK
|
|
3490
3496
|
* @response `404` `ProblemDetails` Not Found
|
|
3491
3497
|
*/
|
|
3492
|
-
replaceTask: (id, data, params = {}) => this.request(Object.assign({ path: `/api/tasks/${id}`, method: "PUT", body: data, secure: true, type: "application/json" }, params)),
|
|
3498
|
+
replaceTask: (id, data, params = {}) => this.request(Object.assign({ path: `/api/tasks/${id}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3493
3499
|
/**
|
|
3494
3500
|
* No description
|
|
3495
3501
|
*
|
|
@@ -3510,7 +3516,7 @@ export class Api extends HttpClient {
|
|
|
3510
3516
|
* @summary Search
|
|
3511
3517
|
* @request POST:/api/tasks/search
|
|
3512
3518
|
* @secure
|
|
3513
|
-
* @response `200` `TaskPaginated`
|
|
3519
|
+
* @response `200` `TaskPaginated` OK
|
|
3514
3520
|
*/
|
|
3515
3521
|
searchTasks: (data, query, params = {}) => this.request(Object.assign({ path: `/api/tasks/search`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3516
3522
|
/**
|
|
@@ -3520,7 +3526,7 @@ export class Api extends HttpClient {
|
|
|
3520
3526
|
* @name IntegrationsLosLoansCreate
|
|
3521
3527
|
* @request POST:/api/integrations/los/loans
|
|
3522
3528
|
* @secure
|
|
3523
|
-
* @response `200` `void`
|
|
3529
|
+
* @response `200` `void` OK
|
|
3524
3530
|
*/
|
|
3525
3531
|
integrationsLosLoansCreate: (data, params = {}) => this.request(Object.assign({ path: `/api/integrations/los/loans`, method: "POST", body: data, secure: true, type: "application/json" }, params)),
|
|
3526
3532
|
/**
|
|
@@ -3528,9 +3534,10 @@ export class Api extends HttpClient {
|
|
|
3528
3534
|
*
|
|
3529
3535
|
* @tags TheBigPOS
|
|
3530
3536
|
* @name SearchEncompassLogs
|
|
3537
|
+
* @summary Search Encompass Logs
|
|
3531
3538
|
* @request POST:/api/los/encompass/logs/{losId}/search
|
|
3532
3539
|
* @secure
|
|
3533
|
-
* @response `200` `EncompassRequestLogPaginated`
|
|
3540
|
+
* @response `200` `EncompassRequestLogPaginated` OK
|
|
3534
3541
|
*/
|
|
3535
3542
|
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: "application/json", format: "json" }, params)),
|
|
3536
3543
|
/**
|
|
@@ -3538,9 +3545,10 @@ export class Api extends HttpClient {
|
|
|
3538
3545
|
*
|
|
3539
3546
|
* @tags TheBigPOS
|
|
3540
3547
|
* @name GetEncompassCredentials
|
|
3548
|
+
* @summary Get Encompass Credentials for the current account
|
|
3541
3549
|
* @request GET:/api/los/encompass/credentials
|
|
3542
3550
|
* @secure
|
|
3543
|
-
* @response `200` `EncompassCredentialsDetail`
|
|
3551
|
+
* @response `200` `EncompassCredentialsDetail` OK
|
|
3544
3552
|
* @response `204` `void` No Content
|
|
3545
3553
|
*/
|
|
3546
3554
|
getEncompassCredentials: (params = {}) => this.request(Object.assign({ path: `/api/los/encompass/credentials`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -3549,6 +3557,7 @@ export class Api extends HttpClient {
|
|
|
3549
3557
|
*
|
|
3550
3558
|
* @tags TheBigPOS
|
|
3551
3559
|
* @name CreateEncompassCredentials
|
|
3560
|
+
* @summary Create Encompass Credentials for the current account
|
|
3552
3561
|
* @request POST:/api/los/encompass/credentials
|
|
3553
3562
|
* @secure
|
|
3554
3563
|
* @response `201` `LosCredentials` Created
|
|
@@ -3559,9 +3568,10 @@ export class Api extends HttpClient {
|
|
|
3559
3568
|
*
|
|
3560
3569
|
* @tags TheBigPOS
|
|
3561
3570
|
* @name UpdateEncompassCredentials
|
|
3571
|
+
* @summary Update Encompass Credentials for the current account
|
|
3562
3572
|
* @request PUT:/api/los/encompass/credentials
|
|
3563
3573
|
* @secure
|
|
3564
|
-
* @response `200` `EncompassCredentialsDetail`
|
|
3574
|
+
* @response `200` `EncompassCredentialsDetail` OK
|
|
3565
3575
|
*/
|
|
3566
3576
|
updateEncompassCredentials: (data, params = {}) => this.request(Object.assign({ path: `/api/los/encompass/credentials`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3567
3577
|
/**
|
|
@@ -3569,9 +3579,10 @@ export class Api extends HttpClient {
|
|
|
3569
3579
|
*
|
|
3570
3580
|
* @tags TheBigPOS
|
|
3571
3581
|
* @name GetEncompassWebhooks
|
|
3582
|
+
* @summary Get Encompass webhooks filtered by current domain
|
|
3572
3583
|
* @request GET:/api/los/encompass/webhooks
|
|
3573
3584
|
* @secure
|
|
3574
|
-
* @response `200` `(LosWebhook)[]`
|
|
3585
|
+
* @response `200` `(LosWebhook)[]` OK
|
|
3575
3586
|
*/
|
|
3576
3587
|
getEncompassWebhooks: (params = {}) => this.request(Object.assign({ path: `/api/los/encompass/webhooks`, method: "GET", secure: true, format: "json" }, params)),
|
|
3577
3588
|
/**
|
|
@@ -3579,6 +3590,7 @@ export class Api extends HttpClient {
|
|
|
3579
3590
|
*
|
|
3580
3591
|
* @tags TheBigPOS
|
|
3581
3592
|
* @name CreateEncompassWebhook
|
|
3593
|
+
* @summary Register a webhook in Encompass
|
|
3582
3594
|
* @request POST:/api/los/encompass/webhooks
|
|
3583
3595
|
* @secure
|
|
3584
3596
|
* @response `201` `LosWebhook` Created
|
|
@@ -3589,6 +3601,7 @@ export class Api extends HttpClient {
|
|
|
3589
3601
|
*
|
|
3590
3602
|
* @tags TheBigPOS
|
|
3591
3603
|
* @name DeleteEncompassWebhook
|
|
3604
|
+
* @summary Delete a webhook from Encompass
|
|
3592
3605
|
* @request DELETE:/api/los/encompass/webhooks/{webhookId}
|
|
3593
3606
|
* @secure
|
|
3594
3607
|
* @response `204` `void` No Content
|
|
@@ -3599,9 +3612,10 @@ export class Api extends HttpClient {
|
|
|
3599
3612
|
*
|
|
3600
3613
|
* @tags TheBigPOS
|
|
3601
3614
|
* @name SearchLosSyncs
|
|
3615
|
+
* @summary Search LOS Sync History
|
|
3602
3616
|
* @request POST:/api/los/encompass/syncs/{loanId}/search
|
|
3603
3617
|
* @secure
|
|
3604
|
-
* @response `200` `LosSyncPaginated`
|
|
3618
|
+
* @response `200` `LosSyncPaginated` OK
|
|
3605
3619
|
*/
|
|
3606
3620
|
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: "application/json", format: "json" }, params)),
|
|
3607
3621
|
/**
|
|
@@ -3612,7 +3626,7 @@ export class Api extends HttpClient {
|
|
|
3612
3626
|
* @summary Get usage report by ID
|
|
3613
3627
|
* @request GET:/api/usage-reports/{id}
|
|
3614
3628
|
* @secure
|
|
3615
|
-
* @response `200` `UsageReport`
|
|
3629
|
+
* @response `200` `UsageReport` OK
|
|
3616
3630
|
* @response `404` `ProblemDetails` Not Found
|
|
3617
3631
|
*/
|
|
3618
3632
|
getUsageReportById: (id, params = {}) => this.request(Object.assign({ path: `/api/usage-reports/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -3624,7 +3638,7 @@ export class Api extends HttpClient {
|
|
|
3624
3638
|
* @summary Get usage reports by month and year
|
|
3625
3639
|
* @request GET:/api/usage-reports
|
|
3626
3640
|
* @secure
|
|
3627
|
-
* @response `200` `(UsageReport)[]`
|
|
3641
|
+
* @response `200` `(UsageReport)[]` OK
|
|
3628
3642
|
* @response `400` `ProblemDetails` Bad Request
|
|
3629
3643
|
*/
|
|
3630
3644
|
getUsageReportsByPeriod: (query, params = {}) => this.request(Object.assign({ path: `/api/usage-reports`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
@@ -3648,7 +3662,7 @@ export class Api extends HttpClient {
|
|
|
3648
3662
|
* @summary Get usage report execution dashboard with active execution, recent history, and statistics
|
|
3649
3663
|
* @request GET:/api/usage-reports/dashboard
|
|
3650
3664
|
* @secure
|
|
3651
|
-
* @response `200` `UsageReportDashboard`
|
|
3665
|
+
* @response `200` `UsageReportDashboard` OK
|
|
3652
3666
|
*/
|
|
3653
3667
|
getUsageReportDashboard: (params = {}) => this.request(Object.assign({ path: `/api/usage-reports/dashboard`, method: "GET", secure: true, format: "json" }, params)),
|
|
3654
3668
|
/**
|
|
@@ -3659,7 +3673,7 @@ export class Api extends HttpClient {
|
|
|
3659
3673
|
* @summary Get usage report execution status by correlation ID
|
|
3660
3674
|
* @request GET:/api/usage-reports/executions/{correlationId}
|
|
3661
3675
|
* @secure
|
|
3662
|
-
* @response `200` `UsageReportExecution`
|
|
3676
|
+
* @response `200` `UsageReportExecution` OK
|
|
3663
3677
|
* @response `404` `ProblemDetails` Not Found
|
|
3664
3678
|
*/
|
|
3665
3679
|
getUsageReportExecution: (correlationId, params = {}) => this.request(Object.assign({ path: `/api/usage-reports/executions/${correlationId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -3671,7 +3685,7 @@ export class Api extends HttpClient {
|
|
|
3671
3685
|
* @summary Get usage report executions by month and year
|
|
3672
3686
|
* @request GET:/api/usage-reports/executions
|
|
3673
3687
|
* @secure
|
|
3674
|
-
* @response `200` `(UsageReportExecution)[]`
|
|
3688
|
+
* @response `200` `(UsageReportExecution)[]` OK
|
|
3675
3689
|
* @response `400` `ProblemDetails` Bad Request
|
|
3676
3690
|
*/
|
|
3677
3691
|
getUsageReportExecutionsByPeriod: (query, params = {}) => this.request(Object.assign({ path: `/api/usage-reports/executions`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
@@ -3707,7 +3721,7 @@ export class Api extends HttpClient {
|
|
|
3707
3721
|
* @summary Get draft users
|
|
3708
3722
|
* @request GET:/api/loans/drafts/{draftId}/users
|
|
3709
3723
|
* @secure
|
|
3710
|
-
* @response `200` `UserDraftPaginated`
|
|
3724
|
+
* @response `200` `UserDraftPaginated` OK
|
|
3711
3725
|
*/
|
|
3712
3726
|
getDraftUsers: (draftId, query, params = {}) => this.request(Object.assign({ path: `/api/loans/drafts/${draftId}/users`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
3713
3727
|
/**
|
|
@@ -3718,7 +3732,7 @@ export class Api extends HttpClient {
|
|
|
3718
3732
|
* @summary Get draft user
|
|
3719
3733
|
* @request GET:/api/loans/drafts/{draftId}/users/{userId}
|
|
3720
3734
|
* @secure
|
|
3721
|
-
* @response `200` `UserDraft`
|
|
3735
|
+
* @response `200` `UserDraft` OK
|
|
3722
3736
|
*/
|
|
3723
3737
|
getDraftUser: (draftId, userId, params = {}) => this.request(Object.assign({ path: `/api/loans/drafts/${draftId}/users/${userId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
3724
3738
|
/**
|
|
@@ -3729,7 +3743,7 @@ export class Api extends HttpClient {
|
|
|
3729
3743
|
* @summary Add draft user
|
|
3730
3744
|
* @request POST:/api/loans/drafts/{draftId}/users/{userId}
|
|
3731
3745
|
* @secure
|
|
3732
|
-
* @response `200` `UserDraft`
|
|
3746
|
+
* @response `200` `UserDraft` OK
|
|
3733
3747
|
*/
|
|
3734
3748
|
addDraftUsers: (draftId, userId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/drafts/${draftId}/users/${userId}`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3735
3749
|
/**
|
|
@@ -3751,7 +3765,7 @@ export class Api extends HttpClient {
|
|
|
3751
3765
|
* @summary Get All
|
|
3752
3766
|
* @request GET:/api/user-groups/{groupId}/scopes
|
|
3753
3767
|
* @secure
|
|
3754
|
-
* @response `200` `(UserGroupAccessScope)[]`
|
|
3768
|
+
* @response `200` `(UserGroupAccessScope)[]` OK
|
|
3755
3769
|
*/
|
|
3756
3770
|
getUserGroupAccessScopes: (groupId, params = {}) => this.request(Object.assign({ path: `/api/user-groups/${groupId}/scopes`, method: "GET", secure: true, format: "json" }, params)),
|
|
3757
3771
|
/**
|
|
@@ -3762,7 +3776,7 @@ export class Api extends HttpClient {
|
|
|
3762
3776
|
* @summary Create a new scope
|
|
3763
3777
|
* @request POST:/api/user-groups/{groupId}/scopes
|
|
3764
3778
|
* @secure
|
|
3765
|
-
* @response `200` `UserGroupAccessScope`
|
|
3779
|
+
* @response `200` `UserGroupAccessScope` OK
|
|
3766
3780
|
*/
|
|
3767
3781
|
createUserGroupAccessScope: (groupId, data, params = {}) => this.request(Object.assign({ path: `/api/user-groups/${groupId}/scopes`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3768
3782
|
/**
|
|
@@ -3784,7 +3798,7 @@ export class Api extends HttpClient {
|
|
|
3784
3798
|
* @summary Get All
|
|
3785
3799
|
* @request GET:/api/user-groups/{groupId}/members
|
|
3786
3800
|
* @secure
|
|
3787
|
-
* @response `200` `(UserGroupMember)[]`
|
|
3801
|
+
* @response `200` `(UserGroupMember)[]` OK
|
|
3788
3802
|
*/
|
|
3789
3803
|
getUserGroupMembers: (groupId, params = {}) => this.request(Object.assign({ path: `/api/user-groups/${groupId}/members`, method: "GET", secure: true, format: "json" }, params)),
|
|
3790
3804
|
/**
|
|
@@ -3795,7 +3809,7 @@ export class Api extends HttpClient {
|
|
|
3795
3809
|
* @summary Create User Group Member
|
|
3796
3810
|
* @request POST:/api/user-groups/{groupId}/members
|
|
3797
3811
|
* @secure
|
|
3798
|
-
* @response `200` `UserGroupMember`
|
|
3812
|
+
* @response `200` `UserGroupMember` OK
|
|
3799
3813
|
*/
|
|
3800
3814
|
createUserGroupMember: (groupId, data, query, params = {}) => this.request(Object.assign({ path: `/api/user-groups/${groupId}/members`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3801
3815
|
/**
|
|
@@ -3817,7 +3831,7 @@ export class Api extends HttpClient {
|
|
|
3817
3831
|
* @summary Get All
|
|
3818
3832
|
* @request POST:/api/user-groups/search
|
|
3819
3833
|
* @secure
|
|
3820
|
-
* @response `200` `UserGroupPaginated`
|
|
3834
|
+
* @response `200` `UserGroupPaginated` OK
|
|
3821
3835
|
*/
|
|
3822
3836
|
searchUserGroups: (query, params = {}) => this.request(Object.assign({ path: `/api/user-groups/search`, method: "POST", query: query, secure: true, format: "json" }, params)),
|
|
3823
3837
|
/**
|
|
@@ -3828,7 +3842,7 @@ export class Api extends HttpClient {
|
|
|
3828
3842
|
* @summary Get User Group by ID
|
|
3829
3843
|
* @request GET:/api/user-groups/{groupId}
|
|
3830
3844
|
* @secure
|
|
3831
|
-
* @response `200` `UserGroup`
|
|
3845
|
+
* @response `200` `UserGroup` OK
|
|
3832
3846
|
*/
|
|
3833
3847
|
getUserGroup: (groupId, params = {}) => this.request(Object.assign({ path: `/api/user-groups/${groupId}`, method: "GET", secure: true, format: "json" }, params)),
|
|
3834
3848
|
/**
|
|
@@ -3839,7 +3853,7 @@ export class Api extends HttpClient {
|
|
|
3839
3853
|
* @summary Update User Group
|
|
3840
3854
|
* @request PUT:/api/user-groups/{groupId}
|
|
3841
3855
|
* @secure
|
|
3842
|
-
* @response `200` `UserGroup`
|
|
3856
|
+
* @response `200` `UserGroup` OK
|
|
3843
3857
|
*/
|
|
3844
3858
|
updateUserGroup: (groupId, data, params = {}) => this.request(Object.assign({ path: `/api/user-groups/${groupId}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
3845
3859
|
/**
|
|
@@ -3874,7 +3888,7 @@ export class Api extends HttpClient {
|
|
|
3874
3888
|
* @secure
|
|
3875
3889
|
* @response `204` `void` No Content
|
|
3876
3890
|
* @response `404` `Error` Not Found
|
|
3877
|
-
* @response `422` `UnprocessableEntity`
|
|
3891
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3878
3892
|
*/
|
|
3879
3893
|
requestImpersonation: (data, params = {}) => this.request(Object.assign({ path: `/api/users/impersonation/request`, method: "POST", body: data, secure: true, type: "application/json" }, params)),
|
|
3880
3894
|
/**
|
|
@@ -3887,7 +3901,7 @@ export class Api extends HttpClient {
|
|
|
3887
3901
|
* @secure
|
|
3888
3902
|
* @response `204` `void` No Content
|
|
3889
3903
|
* @response `404` `Error` Not Found
|
|
3890
|
-
* @response `422` `UnprocessableEntity`
|
|
3904
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3891
3905
|
*/
|
|
3892
3906
|
allowImpersonation: (data, params = {}) => this.request(Object.assign({ path: `/api/users/impersonation/allow`, method: "POST", body: data, secure: true, type: "application/json" }, params)),
|
|
3893
3907
|
/**
|
|
@@ -3900,7 +3914,7 @@ export class Api extends HttpClient {
|
|
|
3900
3914
|
* @secure
|
|
3901
3915
|
* @response `204` `void` No Content
|
|
3902
3916
|
* @response `404` `Error` Not Found
|
|
3903
|
-
* @response `422` `UnprocessableEntity`
|
|
3917
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3904
3918
|
*/
|
|
3905
3919
|
allowImpersonationWithGuid: (allowToken, params = {}) => this.request(Object.assign({ path: `/api/users/impersonation/allow/${allowToken}`, method: "POST", secure: true }, params)),
|
|
3906
3920
|
/**
|
|
@@ -3912,7 +3926,7 @@ export class Api extends HttpClient {
|
|
|
3912
3926
|
* @request POST:/api/users/impersonation
|
|
3913
3927
|
* @secure
|
|
3914
3928
|
* @response `204` `void` No Content
|
|
3915
|
-
* @response `422` `UnprocessableEntity`
|
|
3929
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3916
3930
|
*/
|
|
3917
3931
|
beginImpersonation: (params = {}) => this.request(Object.assign({ path: `/api/users/impersonation`, method: "POST", secure: true }, params)),
|
|
3918
3932
|
/**
|
|
@@ -3924,7 +3938,7 @@ export class Api extends HttpClient {
|
|
|
3924
3938
|
* @request DELETE:/api/users/impersonation
|
|
3925
3939
|
* @secure
|
|
3926
3940
|
* @response `204` `void` No Content
|
|
3927
|
-
* @response `422` `UnprocessableEntity`
|
|
3941
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3928
3942
|
*/
|
|
3929
3943
|
stopImpersonation: (params = {}) => this.request(Object.assign({ path: `/api/users/impersonation`, method: "DELETE", secure: true }, params)),
|
|
3930
3944
|
/**
|
|
@@ -3937,7 +3951,7 @@ export class Api extends HttpClient {
|
|
|
3937
3951
|
* @secure
|
|
3938
3952
|
* @response `204` `void` No Content
|
|
3939
3953
|
* @response `404` `Error` Not Found
|
|
3940
|
-
* @response `422` `UnprocessableEntity`
|
|
3954
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3941
3955
|
*/
|
|
3942
3956
|
forceImpersonation: (data, params = {}) => this.request(Object.assign({ path: `/api/users/impersonation/force`, method: "POST", body: data, secure: true, type: "application/json" }, params)),
|
|
3943
3957
|
/**
|
|
@@ -3949,7 +3963,7 @@ export class Api extends HttpClient {
|
|
|
3949
3963
|
* @request POST:/api/users/impersonation/extend
|
|
3950
3964
|
* @secure
|
|
3951
3965
|
* @response `204` `void` No Content
|
|
3952
|
-
* @response `422` `UnprocessableEntity`
|
|
3966
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3953
3967
|
*/
|
|
3954
3968
|
extendImpersonation: (params = {}) => this.request(Object.assign({ path: `/api/users/impersonation/extend`, method: "POST", secure: true }, params)),
|
|
3955
3969
|
/**
|
|
@@ -3961,7 +3975,7 @@ export class Api extends HttpClient {
|
|
|
3961
3975
|
* @request POST:/api/users/invites
|
|
3962
3976
|
* @secure
|
|
3963
3977
|
* @response `204` `void` No Content
|
|
3964
|
-
* @response `422` `UnprocessableEntity`
|
|
3978
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3965
3979
|
*/
|
|
3966
3980
|
inviteUser: (data, params = {}) => this.request(Object.assign({ path: `/api/users/invites`, method: "POST", body: data, secure: true, type: "application/json" }, params)),
|
|
3967
3981
|
/**
|
|
@@ -3985,8 +3999,8 @@ export class Api extends HttpClient {
|
|
|
3985
3999
|
* @summary Verify
|
|
3986
4000
|
* @request GET:/api/users/invites/{token}/verify
|
|
3987
4001
|
* @secure
|
|
3988
|
-
* @response `200` `Invite`
|
|
3989
|
-
* @response `422` `UnprocessableEntity`
|
|
4002
|
+
* @response `200` `Invite` OK
|
|
4003
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
3990
4004
|
*/
|
|
3991
4005
|
verifyUserInvite: (token, params = {}) => this.request(Object.assign({ path: `/api/users/invites/${token}/verify`, method: "GET", secure: true, format: "json" }, params)),
|
|
3992
4006
|
/**
|
|
@@ -3997,7 +4011,7 @@ export class Api extends HttpClient {
|
|
|
3997
4011
|
* @summary Get All
|
|
3998
4012
|
* @request GET:/api/users/{userID}/relations
|
|
3999
4013
|
* @secure
|
|
4000
|
-
* @response `200` `(UserRelation)[]`
|
|
4014
|
+
* @response `200` `(UserRelation)[]` OK
|
|
4001
4015
|
*/
|
|
4002
4016
|
getUserRelations: (userId, params = {}) => this.request(Object.assign({ path: `/api/users/${userId}/relations`, method: "GET", secure: true, format: "json" }, params)),
|
|
4003
4017
|
/**
|
|
@@ -4019,7 +4033,7 @@ export class Api extends HttpClient {
|
|
|
4019
4033
|
* @summary Get by ID
|
|
4020
4034
|
* @request GET:/api/users/{userID}/relations/{id}
|
|
4021
4035
|
* @secure
|
|
4022
|
-
* @response `200` `UserRelation`
|
|
4036
|
+
* @response `200` `UserRelation` OK
|
|
4023
4037
|
*/
|
|
4024
4038
|
getUserRelation: (userId, id, params = {}) => this.request(Object.assign({ path: `/api/users/${userId}/relations/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
4025
4039
|
/**
|
|
@@ -4041,7 +4055,7 @@ export class Api extends HttpClient {
|
|
|
4041
4055
|
* @summary Get All
|
|
4042
4056
|
* @request GET:/api/users
|
|
4043
4057
|
* @secure
|
|
4044
|
-
* @response `200` `(User)[]`
|
|
4058
|
+
* @response `200` `(User)[]` OK
|
|
4045
4059
|
*/
|
|
4046
4060
|
getUsers: (query, params = {}) => this.request(Object.assign({ path: `/api/users`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
4047
4061
|
/**
|
|
@@ -4052,8 +4066,8 @@ export class Api extends HttpClient {
|
|
|
4052
4066
|
* @summary Create
|
|
4053
4067
|
* @request POST:/api/users
|
|
4054
4068
|
* @secure
|
|
4055
|
-
* @response `200` `DetailedUser`
|
|
4056
|
-
* @response `422` `UnprocessableEntity`
|
|
4069
|
+
* @response `200` `DetailedUser` OK
|
|
4070
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
4057
4071
|
*/
|
|
4058
4072
|
createUser: (data, params = {}) => this.request(Object.assign({ path: `/api/users`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
4059
4073
|
/**
|
|
@@ -4064,7 +4078,7 @@ export class Api extends HttpClient {
|
|
|
4064
4078
|
* @summary Search
|
|
4065
4079
|
* @request POST:/api/users/search
|
|
4066
4080
|
* @secure
|
|
4067
|
-
* @response `200` `UserPaginated`
|
|
4081
|
+
* @response `200` `UserPaginated` OK
|
|
4068
4082
|
*/
|
|
4069
4083
|
searchUsers: (data, query, params = {}) => this.request(Object.assign({ path: `/api/users/search`, method: "POST", query: query, body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
4070
4084
|
/**
|
|
@@ -4075,7 +4089,7 @@ export class Api extends HttpClient {
|
|
|
4075
4089
|
* @summary Get by Email
|
|
4076
4090
|
* @request POST:/api/users/byemail
|
|
4077
4091
|
* @secure
|
|
4078
|
-
* @response `200` `AdminAccessUser`
|
|
4092
|
+
* @response `200` `AdminAccessUser` OK
|
|
4079
4093
|
*/
|
|
4080
4094
|
getUserByEmail: (data, params = {}) => this.request(Object.assign({ path: `/api/users/byemail`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
4081
4095
|
/**
|
|
@@ -4086,8 +4100,8 @@ export class Api extends HttpClient {
|
|
|
4086
4100
|
* @summary Sign Up
|
|
4087
4101
|
* @request POST:/api/users/register
|
|
4088
4102
|
* @secure
|
|
4089
|
-
* @response `200` `User`
|
|
4090
|
-
* @response `422` `UnprocessableEntity`
|
|
4103
|
+
* @response `200` `User` OK
|
|
4104
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
4091
4105
|
*/
|
|
4092
4106
|
signUp: (data, params = {}) => this.request(Object.assign({ path: `/api/users/register`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
4093
4107
|
/**
|
|
@@ -4098,8 +4112,8 @@ export class Api extends HttpClient {
|
|
|
4098
4112
|
* @summary Update
|
|
4099
4113
|
* @request PUT:/api/users/{id}
|
|
4100
4114
|
* @secure
|
|
4101
|
-
* @response `200` `DetailedUser`
|
|
4102
|
-
* @response `422` `UnprocessableEntity`
|
|
4115
|
+
* @response `200` `DetailedUser` OK
|
|
4116
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
4103
4117
|
*/
|
|
4104
4118
|
replaceUser: (id, data, params = {}) => this.request(Object.assign({ path: `/api/users/${id}`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
4105
4119
|
/**
|
|
@@ -4133,7 +4147,7 @@ export class Api extends HttpClient {
|
|
|
4133
4147
|
* @request POST:/api/users/change-password
|
|
4134
4148
|
* @secure
|
|
4135
4149
|
* @response `204` `void` No Content
|
|
4136
|
-
* @response `422` `UnprocessableEntity`
|
|
4150
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
4137
4151
|
*/
|
|
4138
4152
|
changePassword: (data, params = {}) => this.request(Object.assign({ path: `/api/users/change-password`, method: "POST", body: data, secure: true, type: "application/json" }, params)),
|
|
4139
4153
|
/**
|
|
@@ -4145,7 +4159,7 @@ export class Api extends HttpClient {
|
|
|
4145
4159
|
* @request POST:/api/users/verify-password
|
|
4146
4160
|
* @secure
|
|
4147
4161
|
* @response `204` `void` No Content
|
|
4148
|
-
* @response `422` `UnprocessableEntity`
|
|
4162
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
4149
4163
|
*/
|
|
4150
4164
|
verifyPassword: (data, params = {}) => this.request(Object.assign({ path: `/api/users/verify-password`, method: "POST", body: data, secure: true, type: "application/json" }, params)),
|
|
4151
4165
|
/**
|
|
@@ -4157,7 +4171,7 @@ export class Api extends HttpClient {
|
|
|
4157
4171
|
* @request POST:/api/users/{id}/override-password
|
|
4158
4172
|
* @secure
|
|
4159
4173
|
* @response `204` `void` No Content
|
|
4160
|
-
* @response `422` `UnprocessableEntity`
|
|
4174
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
4161
4175
|
*/
|
|
4162
4176
|
overridePassword: (id, data, params = {}) => this.request(Object.assign({ path: `/api/users/${id}/override-password`, method: "POST", body: data, secure: true, type: "application/json" }, params)),
|
|
4163
4177
|
/**
|
|
@@ -4169,7 +4183,7 @@ export class Api extends HttpClient {
|
|
|
4169
4183
|
* @request POST:/api/users/forgot-password
|
|
4170
4184
|
* @secure
|
|
4171
4185
|
* @response `204` `void` No Content
|
|
4172
|
-
* @response `422` `UnprocessableEntity`
|
|
4186
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
4173
4187
|
*/
|
|
4174
4188
|
forgotPassword: (data, params = {}) => this.request(Object.assign({ path: `/api/users/forgot-password`, method: "POST", body: data, secure: true, type: "application/json" }, params)),
|
|
4175
4189
|
/**
|
|
@@ -4181,7 +4195,7 @@ export class Api extends HttpClient {
|
|
|
4181
4195
|
* @request POST:/api/users/mobile-phone/send-code
|
|
4182
4196
|
* @secure
|
|
4183
4197
|
* @response `204` `void` No Content
|
|
4184
|
-
* @response `422` `UnprocessableEntity`
|
|
4198
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
4185
4199
|
*/
|
|
4186
4200
|
sendMobilePhoneVerificationCode: (params = {}) => this.request(Object.assign({ path: `/api/users/mobile-phone/send-code`, method: "POST", secure: true }, params)),
|
|
4187
4201
|
/**
|
|
@@ -4193,7 +4207,7 @@ export class Api extends HttpClient {
|
|
|
4193
4207
|
* @request PUT:/api/users/mobile-phone/verify-code
|
|
4194
4208
|
* @secure
|
|
4195
4209
|
* @response `204` `void` No Content
|
|
4196
|
-
* @response `422` `UnprocessableEntity`
|
|
4210
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
4197
4211
|
*/
|
|
4198
4212
|
verifyUserMobilePhone: (data, params = {}) => this.request(Object.assign({ path: `/api/users/mobile-phone/verify-code`, method: "PUT", body: data, secure: true, type: "application/json" }, params)),
|
|
4199
4213
|
/**
|
|
@@ -4204,7 +4218,7 @@ export class Api extends HttpClient {
|
|
|
4204
4218
|
* @summary Get
|
|
4205
4219
|
* @request GET:/api/users/me
|
|
4206
4220
|
* @secure
|
|
4207
|
-
* @response `200` `ImpersonatedDetailedUser`
|
|
4221
|
+
* @response `200` `ImpersonatedDetailedUser` OK
|
|
4208
4222
|
* @response `401` `ProblemDetails` Unauthorized
|
|
4209
4223
|
*/
|
|
4210
4224
|
getMe: (params = {}) => this.request(Object.assign({ path: `/api/users/me`, method: "GET", secure: true, format: "json" }, params)),
|
|
@@ -4216,7 +4230,7 @@ export class Api extends HttpClient {
|
|
|
4216
4230
|
* @summary Replace
|
|
4217
4231
|
* @request PUT:/api/users/me
|
|
4218
4232
|
* @secure
|
|
4219
|
-
* @response `200` `DetailedUser`
|
|
4233
|
+
* @response `200` `DetailedUser` OK
|
|
4220
4234
|
*/
|
|
4221
4235
|
replaceMe: (data, params = {}) => this.request(Object.assign({ path: `/api/users/me`, method: "PUT", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
4222
4236
|
/**
|
|
@@ -4238,7 +4252,7 @@ export class Api extends HttpClient {
|
|
|
4238
4252
|
* @summary Get Relationships
|
|
4239
4253
|
* @request GET:/api/users/me/relationships
|
|
4240
4254
|
* @secure
|
|
4241
|
-
* @response `200` `(UserRelationship)[]`
|
|
4255
|
+
* @response `200` `(UserRelationship)[]` OK
|
|
4242
4256
|
*/
|
|
4243
4257
|
getMyRelationships: (params = {}) => this.request(Object.assign({ path: `/api/users/me/relationships`, method: "GET", secure: true, format: "json" }, params)),
|
|
4244
4258
|
/**
|
|
@@ -4249,7 +4263,7 @@ export class Api extends HttpClient {
|
|
|
4249
4263
|
* @summary Get Relationship Prospects
|
|
4250
4264
|
* @request GET:/api/users/me/relationships/prospects
|
|
4251
4265
|
* @secure
|
|
4252
|
-
* @response `200` `(UserRelationshipProspect)[]`
|
|
4266
|
+
* @response `200` `(UserRelationshipProspect)[]` OK
|
|
4253
4267
|
*/
|
|
4254
4268
|
getMyRelationshipProspects: (params = {}) => this.request(Object.assign({ path: `/api/users/me/relationships/prospects`, method: "GET", secure: true, format: "json" }, params)),
|
|
4255
4269
|
/**
|
|
@@ -4282,7 +4296,7 @@ export class Api extends HttpClient {
|
|
|
4282
4296
|
* @summary Get Workflow
|
|
4283
4297
|
* @request POST:/api/workflow
|
|
4284
4298
|
* @secure
|
|
4285
|
-
* @response `200` `GetForm`
|
|
4299
|
+
* @response `200` `GetForm` OK
|
|
4286
4300
|
*/
|
|
4287
4301
|
getWorkflow: (data, params = {}) => this.request(Object.assign({ path: `/api/workflow`, method: "POST", body: data, secure: true, type: "application/json", format: "json" }, params)),
|
|
4288
4302
|
};
|
|
@@ -4294,7 +4308,7 @@ export class Api extends HttpClient {
|
|
|
4294
4308
|
* @name LogoutList
|
|
4295
4309
|
* @request GET:/sso/logout
|
|
4296
4310
|
* @secure
|
|
4297
|
-
* @response `200` `void`
|
|
4311
|
+
* @response `200` `void` OK
|
|
4298
4312
|
*/
|
|
4299
4313
|
logoutList: (params = {}) => this.request(Object.assign({ path: `/sso/logout`, method: "GET", secure: true }, params)),
|
|
4300
4314
|
};
|