@matech/thebigpos-sdk 2.37.6-aibi-12 → 2.37.8
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/.husky/pre-commit +2 -2
- package/LICENSE +21 -21
- package/README.md +73 -73
- package/dist/index.d.ts +424 -1165
- package/dist/index.js +15 -401
- package/dist/index.js.map +1 -1
- package/docs/sdk_generation.md +149 -0
- package/package.json +39 -39
- package/scripts/apply-json-patch-content-type.js +56 -56
- package/src/index.ts +533 -1610
- package/tsconfig.json +27 -27
package/dist/index.d.ts
CHANGED
|
@@ -55,16 +55,6 @@ export type BorrowerRelationship = "NotApplicable" | "Spouse" | "NonSpouse";
|
|
|
55
55
|
export type BorrowerApplicationStatus = "Draft" | "Complete";
|
|
56
56
|
export type BillingType = "ClosedLoan" | "LoanOfficer";
|
|
57
57
|
export type AuditChangeType = "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored";
|
|
58
|
-
export type AiUrlSourceScope = "FullDomain" | "SpecificPath";
|
|
59
|
-
export type AiUrlSourceCategory = "Regulatory" | "Guidelines" | "MarketData" | "Custom";
|
|
60
|
-
export type AiStructuredDataType = "Table" | "DocumentAnalysis" | "DocumentList" | "GeneratedDocument";
|
|
61
|
-
export type AiQueryTemplateName = "PipelineSummary" | "LoanDetail" | "LoansClosing" | "StaleLoans" | "LoansByType" | "LoansByOfficer" | "AverageLoanAmount" | "LockedVsUnlocked" | "LoansByPurpose" | "LoansByPropertyState" | "LoansByRate" | "DtiLtvRisk" | "DisclosureTracking" | "NewLoans" | "ExpiringLocks" | "ClosedLoans";
|
|
62
|
-
export type AiPromptCategory = "DocumentAnalysis" | "DataQuery" | "General" | "Action";
|
|
63
|
-
export type AiOutputType = "Text" | "Document";
|
|
64
|
-
export type AiIntent = "Greeting" | "Invalid" | "Relevant" | "LoanSpecific" | "DocumentList" | "GeneralKnowledge" | "Blocked" | "Action";
|
|
65
|
-
export type AiGuardrailCategory = "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
|
|
66
|
-
export type AiDisplayHint = "Table" | "SummaryCards" | "RankedList" | "Comparison" | "ExecutiveBrief";
|
|
67
|
-
export type AiAuditEventType = "Error" | "GuardrailBlockedPre" | "GuardrailPassedPre" | "IntentClassified" | "LoanResolvedFromMessage" | "DocumentNotFound" | "GuardrailBlockedPost" | "GuardrailPassedPost" | "DocumentAnalyzed" | "DocumentList" | "DocumentResolutionAmbiguous" | "ResponseGenerated" | "ParametersExtracted" | "QueryExecuted" | "LoanContextNotFound" | "LoanContextLoaded" | "GuardrailBlockedBedrock" | "PromptMatched";
|
|
68
58
|
export type AddressFamily = "Unspecified" | "Unix" | "InterNetwork" | "ImpLink" | "Pup" | "Chaos" | "NS" | "Ipx" | "Iso" | "Osi" | "Ecma" | "DataKit" | "Ccitt" | "Sna" | "DecNet" | "DataLink" | "Lat" | "HyperChannel" | "AppleTalk" | "NetBios" | "VoiceView" | "FireFox" | "Banyan" | "Atm" | "InterNetworkV6" | "Cluster" | "Ieee12844" | "Irda" | "NetworkDesigners" | "Max" | "Packet" | "ControllerAreaNetwork" | "Unknown";
|
|
69
59
|
export interface ASOSettings {
|
|
70
60
|
enabled: boolean;
|
|
@@ -115,7 +105,7 @@ export interface AccountBilling {
|
|
|
115
105
|
contractedRate: number;
|
|
116
106
|
}
|
|
117
107
|
export interface AccountBillingRequest {
|
|
118
|
-
billingType:
|
|
108
|
+
billingType: AccountBillingRequestBillingTypeEnum;
|
|
119
109
|
/**
|
|
120
110
|
* @format double
|
|
121
111
|
* @min 0
|
|
@@ -129,7 +119,6 @@ export interface AccountSettings {
|
|
|
129
119
|
smsNumber?: string | null;
|
|
130
120
|
ssoHostOverride?: string | null;
|
|
131
121
|
isEarlyAdopter: boolean;
|
|
132
|
-
isAIEnabled: boolean;
|
|
133
122
|
}
|
|
134
123
|
export interface AccountSettingsRequest {
|
|
135
124
|
isSmsEnabled: boolean;
|
|
@@ -329,220 +318,6 @@ export interface AffordabilityCalculatorRequest {
|
|
|
329
318
|
*/
|
|
330
319
|
annualInsurance: number;
|
|
331
320
|
}
|
|
332
|
-
export interface AiAdminStats {
|
|
333
|
-
/** @format int32 */
|
|
334
|
-
totalRequests: number;
|
|
335
|
-
/** @format int32 */
|
|
336
|
-
blockedRequests: number;
|
|
337
|
-
/** @format double */
|
|
338
|
-
averageResponseTimeMs: number;
|
|
339
|
-
intentDistribution: Record<string, number>;
|
|
340
|
-
topQueryTemplates: Record<string, number>;
|
|
341
|
-
period: string;
|
|
342
|
-
}
|
|
343
|
-
export interface AiAuditLog {
|
|
344
|
-
/** @format uuid */
|
|
345
|
-
id: string;
|
|
346
|
-
/** @format uuid */
|
|
347
|
-
requestId: string;
|
|
348
|
-
/** @format uuid */
|
|
349
|
-
userId: string;
|
|
350
|
-
eventType: "Error" | "GuardrailBlockedPre" | "GuardrailPassedPre" | "IntentClassified" | "LoanResolvedFromMessage" | "DocumentNotFound" | "GuardrailBlockedPost" | "GuardrailPassedPost" | "DocumentAnalyzed" | "DocumentList" | "DocumentResolutionAmbiguous" | "ResponseGenerated" | "ParametersExtracted" | "QueryExecuted" | "LoanContextNotFound" | "LoanContextLoaded" | "GuardrailBlockedBedrock" | "PromptMatched";
|
|
351
|
-
details?: any;
|
|
352
|
-
/** @format date-time */
|
|
353
|
-
createdAt: string;
|
|
354
|
-
}
|
|
355
|
-
export interface AiAuditLogPaginated {
|
|
356
|
-
rows: AiAuditLog[];
|
|
357
|
-
pagination: Pagination;
|
|
358
|
-
/** @format int64 */
|
|
359
|
-
count: number;
|
|
360
|
-
}
|
|
361
|
-
export interface AiCanonicalField {
|
|
362
|
-
/** @format uuid */
|
|
363
|
-
id: string;
|
|
364
|
-
canonicalName: string;
|
|
365
|
-
displayName: string;
|
|
366
|
-
description: string;
|
|
367
|
-
allowedRoles: string[];
|
|
368
|
-
efPath?: string | null;
|
|
369
|
-
isPii: boolean;
|
|
370
|
-
isActive: boolean;
|
|
371
|
-
dataSource: string;
|
|
372
|
-
isDefault: boolean;
|
|
373
|
-
category?: string | null;
|
|
374
|
-
jsonPropertyName?: string | null;
|
|
375
|
-
textractKey?: string | null;
|
|
376
|
-
textractKeyAliases?: string | null;
|
|
377
|
-
hasAccountOverride: boolean;
|
|
378
|
-
/** @format date-time */
|
|
379
|
-
createdAt: string;
|
|
380
|
-
/** @format date-time */
|
|
381
|
-
updatedAt?: string | null;
|
|
382
|
-
}
|
|
383
|
-
export interface AiChat {
|
|
384
|
-
/** @format uuid */
|
|
385
|
-
conversationId: string;
|
|
386
|
-
/** @format uuid */
|
|
387
|
-
messageId: string;
|
|
388
|
-
response: AiChatBody;
|
|
389
|
-
metadata: AiChatMetadata;
|
|
390
|
-
}
|
|
391
|
-
export interface AiChatBody {
|
|
392
|
-
text: string;
|
|
393
|
-
data?: AiChatStructuredData | null;
|
|
394
|
-
suggestedFollowUps: string[];
|
|
395
|
-
}
|
|
396
|
-
export interface AiChatMessage {
|
|
397
|
-
/** @format uuid */
|
|
398
|
-
id: string;
|
|
399
|
-
userMessage: string;
|
|
400
|
-
assistantResponse: string;
|
|
401
|
-
intent?: AiIntent | null;
|
|
402
|
-
fieldsAccessed?: string[] | null;
|
|
403
|
-
/** @format date-time */
|
|
404
|
-
createdAt: string;
|
|
405
|
-
}
|
|
406
|
-
export interface AiChatMetadata {
|
|
407
|
-
intent: "Greeting" | "Invalid" | "Relevant" | "LoanSpecific" | "DocumentList" | "GeneralKnowledge" | "Blocked" | "Action";
|
|
408
|
-
fieldsAccessed: string[];
|
|
409
|
-
/** @format int64 */
|
|
410
|
-
queryTimeMs: number;
|
|
411
|
-
/** @format int64 */
|
|
412
|
-
llmTimeMs: number;
|
|
413
|
-
wasBlocked: boolean;
|
|
414
|
-
blockedReason?: string | null;
|
|
415
|
-
}
|
|
416
|
-
export interface AiChatRequest {
|
|
417
|
-
/**
|
|
418
|
-
* @minLength 1
|
|
419
|
-
* @maxLength 2000
|
|
420
|
-
*/
|
|
421
|
-
message: string;
|
|
422
|
-
/** @format uuid */
|
|
423
|
-
conversationId?: string | null;
|
|
424
|
-
/** @format uuid */
|
|
425
|
-
loanId?: string | null;
|
|
426
|
-
documentIds?: string[] | null;
|
|
427
|
-
/** @format uuid */
|
|
428
|
-
promptId?: string | null;
|
|
429
|
-
}
|
|
430
|
-
export interface AiChatStructuredData {
|
|
431
|
-
type: "Table" | "DocumentAnalysis" | "DocumentList" | "GeneratedDocument";
|
|
432
|
-
displayHint?: AiDisplayHint | null;
|
|
433
|
-
detectedDocumentType?: string | null;
|
|
434
|
-
columns: string[];
|
|
435
|
-
rows: string[][];
|
|
436
|
-
/** @format uuid */
|
|
437
|
-
generatedDocumentId?: string | null;
|
|
438
|
-
generatedFileName?: string | null;
|
|
439
|
-
}
|
|
440
|
-
export interface AiConversationDetail {
|
|
441
|
-
/** @format uuid */
|
|
442
|
-
id: string;
|
|
443
|
-
/** @format date-time */
|
|
444
|
-
createdAt: string;
|
|
445
|
-
/** @format date-time */
|
|
446
|
-
updatedAt?: string | null;
|
|
447
|
-
messages: AiChatMessage[];
|
|
448
|
-
}
|
|
449
|
-
export interface AiConversationListItem {
|
|
450
|
-
/** @format uuid */
|
|
451
|
-
id: string;
|
|
452
|
-
preview: string;
|
|
453
|
-
/** @format int32 */
|
|
454
|
-
messageCount: number;
|
|
455
|
-
/** @format date-time */
|
|
456
|
-
createdAt: string;
|
|
457
|
-
/** @format date-time */
|
|
458
|
-
updatedAt?: string | null;
|
|
459
|
-
}
|
|
460
|
-
export interface AiConversationListItemPaginated {
|
|
461
|
-
rows: AiConversationListItem[];
|
|
462
|
-
pagination: Pagination;
|
|
463
|
-
/** @format int64 */
|
|
464
|
-
count: number;
|
|
465
|
-
}
|
|
466
|
-
export interface AiGuardrail {
|
|
467
|
-
/** @format uuid */
|
|
468
|
-
id: string;
|
|
469
|
-
name: string;
|
|
470
|
-
category: "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
|
|
471
|
-
description?: string | null;
|
|
472
|
-
keywords: string[];
|
|
473
|
-
responseTemplate: string;
|
|
474
|
-
isDefault: boolean;
|
|
475
|
-
isEnabled: boolean;
|
|
476
|
-
hasAccountOverride: boolean;
|
|
477
|
-
/** @format date-time */
|
|
478
|
-
createdAt: string;
|
|
479
|
-
/** @format date-time */
|
|
480
|
-
updatedAt?: string | null;
|
|
481
|
-
}
|
|
482
|
-
export interface AiPrompt {
|
|
483
|
-
/** @format uuid */
|
|
484
|
-
id: string;
|
|
485
|
-
title: string;
|
|
486
|
-
icon: string;
|
|
487
|
-
slug: string;
|
|
488
|
-
description: string;
|
|
489
|
-
documentTypes: string[];
|
|
490
|
-
applicableGuidelines: string[];
|
|
491
|
-
allowedRoles: string[];
|
|
492
|
-
systemPrompt: string;
|
|
493
|
-
userPromptTemplate: string;
|
|
494
|
-
followUpPrompts: string[];
|
|
495
|
-
/** @format int32 */
|
|
496
|
-
sortOrder: number;
|
|
497
|
-
isDefault: boolean;
|
|
498
|
-
/** @format uuid */
|
|
499
|
-
accountId?: string | null;
|
|
500
|
-
isActive: boolean;
|
|
501
|
-
category?: AiPromptCategory | null;
|
|
502
|
-
queryTemplateName?: AiQueryTemplateName | null;
|
|
503
|
-
displayHint?: AiDisplayHint | null;
|
|
504
|
-
bedrockModelId?: string | null;
|
|
505
|
-
requiredDataSources?: string[] | null;
|
|
506
|
-
outputType?: AiOutputType | null;
|
|
507
|
-
hasAccountOverride: boolean;
|
|
508
|
-
/** @format date-time */
|
|
509
|
-
createdAt: string;
|
|
510
|
-
/** @format date-time */
|
|
511
|
-
updatedAt?: string | null;
|
|
512
|
-
}
|
|
513
|
-
export interface AiPromptSummary {
|
|
514
|
-
/** @format uuid */
|
|
515
|
-
id: string;
|
|
516
|
-
title: string;
|
|
517
|
-
icon: string;
|
|
518
|
-
slug: string;
|
|
519
|
-
description: string;
|
|
520
|
-
documentTypes: string[];
|
|
521
|
-
applicableGuidelines: string[];
|
|
522
|
-
followUpPrompts: string[];
|
|
523
|
-
/** @format int32 */
|
|
524
|
-
sortOrder: number;
|
|
525
|
-
category?: AiPromptCategory | null;
|
|
526
|
-
queryTemplateName?: AiQueryTemplateName | null;
|
|
527
|
-
displayHint?: AiDisplayHint | null;
|
|
528
|
-
bedrockModelId?: string | null;
|
|
529
|
-
requiredDataSources?: string[] | null;
|
|
530
|
-
outputType?: AiOutputType | null;
|
|
531
|
-
}
|
|
532
|
-
export interface AiUrlSource {
|
|
533
|
-
/** @format uuid */
|
|
534
|
-
id: string;
|
|
535
|
-
name: string;
|
|
536
|
-
url: string;
|
|
537
|
-
description?: string | null;
|
|
538
|
-
category: "Regulatory" | "Guidelines" | "MarketData" | "Custom";
|
|
539
|
-
scope: "FullDomain" | "SpecificPath";
|
|
540
|
-
isActive: boolean;
|
|
541
|
-
/** @format date-time */
|
|
542
|
-
createdAt: string;
|
|
543
|
-
/** @format date-time */
|
|
544
|
-
updatedAt?: string | null;
|
|
545
|
-
}
|
|
546
321
|
export interface AllowImpersonationRequest {
|
|
547
322
|
/**
|
|
548
323
|
* @format email
|
|
@@ -645,10 +420,13 @@ export interface AuditLogEntry {
|
|
|
645
420
|
/** @format uuid */
|
|
646
421
|
id: string;
|
|
647
422
|
entityType: string;
|
|
648
|
-
changeType:
|
|
423
|
+
changeType: AuditLogEntryChangeTypeEnum;
|
|
649
424
|
/** @format uuid */
|
|
650
425
|
entityId: string;
|
|
651
426
|
performedBy?: AuditLogUser | null;
|
|
427
|
+
rootEntityType?: string | null;
|
|
428
|
+
/** @format uuid */
|
|
429
|
+
rootEntityId?: string | null;
|
|
652
430
|
changes?: any;
|
|
653
431
|
/** @format date-time */
|
|
654
432
|
createdAt: string;
|
|
@@ -670,6 +448,9 @@ export interface AuditLogSearchCriteria {
|
|
|
670
448
|
startDate?: string | null;
|
|
671
449
|
/** @format date-time */
|
|
672
450
|
endDate?: string | null;
|
|
451
|
+
rootEntityType?: string | null;
|
|
452
|
+
/** @format uuid */
|
|
453
|
+
rootEntityId?: string | null;
|
|
673
454
|
}
|
|
674
455
|
export interface AuditLogUser {
|
|
675
456
|
/** @format uuid */
|
|
@@ -902,7 +683,7 @@ export interface CorporateSearchCriteria {
|
|
|
902
683
|
isActive?: boolean | null;
|
|
903
684
|
}
|
|
904
685
|
export interface CreateAccessScopeRequest {
|
|
905
|
-
scopeType:
|
|
686
|
+
scopeType: CreateAccessScopeRequestScopeTypeEnum;
|
|
906
687
|
/** @format uuid */
|
|
907
688
|
userId?: string | null;
|
|
908
689
|
/** @format uuid */
|
|
@@ -925,87 +706,10 @@ export interface CreateAccountRequest {
|
|
|
925
706
|
*/
|
|
926
707
|
nlmsid: number;
|
|
927
708
|
settings: AccountSettingsRequest;
|
|
928
|
-
environment:
|
|
709
|
+
environment: CreateAccountRequestEnvironmentEnum;
|
|
929
710
|
losIntegration: LOSIntegration;
|
|
930
711
|
billingSettings: AccountBillingRequest;
|
|
931
712
|
}
|
|
932
|
-
export interface CreateAiCanonicalFieldRequest {
|
|
933
|
-
/**
|
|
934
|
-
* @minLength 1
|
|
935
|
-
* @maxLength 200
|
|
936
|
-
*/
|
|
937
|
-
displayName: string;
|
|
938
|
-
/** @minLength 1 */
|
|
939
|
-
description: string;
|
|
940
|
-
/** @minItems 1 */
|
|
941
|
-
allowedRoles: string[];
|
|
942
|
-
isPii: boolean;
|
|
943
|
-
/** @minLength 1 */
|
|
944
|
-
dataSource: string;
|
|
945
|
-
category?: string | null;
|
|
946
|
-
}
|
|
947
|
-
export interface CreateAiGuardrailRequest {
|
|
948
|
-
/**
|
|
949
|
-
* @minLength 1
|
|
950
|
-
* @maxLength 200
|
|
951
|
-
*/
|
|
952
|
-
name: string;
|
|
953
|
-
category: "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
|
|
954
|
-
description?: string | null;
|
|
955
|
-
/** @minItems 1 */
|
|
956
|
-
keywords: string[];
|
|
957
|
-
/** @minLength 1 */
|
|
958
|
-
responseTemplate: string;
|
|
959
|
-
}
|
|
960
|
-
export interface CreateAiPromptRequest {
|
|
961
|
-
/**
|
|
962
|
-
* @minLength 1
|
|
963
|
-
* @maxLength 200
|
|
964
|
-
*/
|
|
965
|
-
title: string;
|
|
966
|
-
icon: string;
|
|
967
|
-
/**
|
|
968
|
-
* @minLength 1
|
|
969
|
-
* @maxLength 100
|
|
970
|
-
*/
|
|
971
|
-
slug: string;
|
|
972
|
-
/**
|
|
973
|
-
* @minLength 1
|
|
974
|
-
* @maxLength 500
|
|
975
|
-
*/
|
|
976
|
-
description: string;
|
|
977
|
-
documentTypes: string[];
|
|
978
|
-
applicableGuidelines: string[];
|
|
979
|
-
allowedRoles: string[];
|
|
980
|
-
/** @minLength 1 */
|
|
981
|
-
systemPrompt: string;
|
|
982
|
-
/** @minLength 1 */
|
|
983
|
-
userPromptTemplate: string;
|
|
984
|
-
followUpPrompts: string[];
|
|
985
|
-
/** @format int32 */
|
|
986
|
-
sortOrder: number;
|
|
987
|
-
category?: AiPromptCategory | null;
|
|
988
|
-
queryTemplateName?: AiQueryTemplateName | null;
|
|
989
|
-
displayHint?: AiDisplayHint | null;
|
|
990
|
-
bedrockModelId?: string | null;
|
|
991
|
-
requiredDataSources?: string[] | null;
|
|
992
|
-
outputType?: AiOutputType | null;
|
|
993
|
-
}
|
|
994
|
-
export interface CreateAiUrlSourceRequest {
|
|
995
|
-
/**
|
|
996
|
-
* @minLength 1
|
|
997
|
-
* @maxLength 200
|
|
998
|
-
*/
|
|
999
|
-
name: string;
|
|
1000
|
-
/**
|
|
1001
|
-
* @minLength 1
|
|
1002
|
-
* @maxLength 2048
|
|
1003
|
-
*/
|
|
1004
|
-
url: string;
|
|
1005
|
-
description?: string | null;
|
|
1006
|
-
category: "Regulatory" | "Guidelines" | "MarketData" | "Custom";
|
|
1007
|
-
scope: "FullDomain" | "SpecificPath";
|
|
1008
|
-
}
|
|
1009
713
|
export interface CreateBranchRequest {
|
|
1010
714
|
/**
|
|
1011
715
|
* @minLength 1
|
|
@@ -1032,7 +736,7 @@ export interface CreateDocumentTemplateRequest {
|
|
|
1032
736
|
export interface CreateGroupMemberRequest {
|
|
1033
737
|
/** @format uuid */
|
|
1034
738
|
userId: string;
|
|
1035
|
-
loanRole:
|
|
739
|
+
loanRole: CreateGroupMemberRequestLoanRoleEnum;
|
|
1036
740
|
}
|
|
1037
741
|
export interface CreateInviteRequest {
|
|
1038
742
|
/** @minLength 1 */
|
|
@@ -1043,7 +747,7 @@ export interface CreateInviteRequest {
|
|
|
1043
747
|
emailAddress: string;
|
|
1044
748
|
phoneNumber?: string | null;
|
|
1045
749
|
/** @deprecated */
|
|
1046
|
-
relationship:
|
|
750
|
+
relationship: CreateInviteRequestRelationshipEnum;
|
|
1047
751
|
loanID: string;
|
|
1048
752
|
route?: string | null;
|
|
1049
753
|
/** @format uuid */
|
|
@@ -1065,7 +769,7 @@ export interface CreateLoanImportRequest {
|
|
|
1065
769
|
* @minLength 1
|
|
1066
770
|
*/
|
|
1067
771
|
startDate: string;
|
|
1068
|
-
importMode:
|
|
772
|
+
importMode: CreateLoanImportRequestImportModeEnum;
|
|
1069
773
|
}
|
|
1070
774
|
export interface CreateSession {
|
|
1071
775
|
sessionId: string;
|
|
@@ -1083,7 +787,7 @@ export interface CreateUserDeviceRequest {
|
|
|
1083
787
|
token: string;
|
|
1084
788
|
}
|
|
1085
789
|
export interface CreateUserDraft {
|
|
1086
|
-
loanRole:
|
|
790
|
+
loanRole: CreateUserDraftLoanRoleEnum;
|
|
1087
791
|
}
|
|
1088
792
|
export interface CreateUserGroupRequest {
|
|
1089
793
|
/**
|
|
@@ -1375,7 +1079,7 @@ export interface Draft {
|
|
|
1375
1079
|
siteConfiguration: SiteConfigurationReduced;
|
|
1376
1080
|
/** @format uuid */
|
|
1377
1081
|
loanID?: string | null;
|
|
1378
|
-
type:
|
|
1082
|
+
type: DraftTypeEnum;
|
|
1379
1083
|
isCoBorrower: boolean;
|
|
1380
1084
|
}
|
|
1381
1085
|
export interface DraftContent {
|
|
@@ -1393,7 +1097,7 @@ export interface DraftContent {
|
|
|
1393
1097
|
siteConfiguration: SiteConfigurationReduced;
|
|
1394
1098
|
/** @format uuid */
|
|
1395
1099
|
loanID?: string | null;
|
|
1396
|
-
type:
|
|
1100
|
+
type: DraftContentTypeEnum;
|
|
1397
1101
|
isCoBorrower: boolean;
|
|
1398
1102
|
applicationPayload: any;
|
|
1399
1103
|
}
|
|
@@ -1410,6 +1114,7 @@ export interface DraftLoanOfficerReassignRequest {
|
|
|
1410
1114
|
export interface DraftRequest {
|
|
1411
1115
|
applicationPayload: any;
|
|
1412
1116
|
customData?: any;
|
|
1117
|
+
isCoBorrower: boolean;
|
|
1413
1118
|
}
|
|
1414
1119
|
export interface EConsentInformation {
|
|
1415
1120
|
status: string;
|
|
@@ -1506,14 +1211,24 @@ export interface EncompassPackageList {
|
|
|
1506
1211
|
/** @format int32 */
|
|
1507
1212
|
totalPages: number;
|
|
1508
1213
|
}
|
|
1214
|
+
export interface EncompassRecipientItem {
|
|
1215
|
+
/** @format uuid */
|
|
1216
|
+
id: string;
|
|
1217
|
+
/** @format uuid */
|
|
1218
|
+
packageId: string;
|
|
1219
|
+
recipientId: string;
|
|
1220
|
+
status: string;
|
|
1221
|
+
/** @format date-time */
|
|
1222
|
+
createdAt: string;
|
|
1223
|
+
}
|
|
1509
1224
|
export interface EncompassRequestLog {
|
|
1510
1225
|
/** @format uuid */
|
|
1511
1226
|
id: string;
|
|
1512
1227
|
losId?: string | null;
|
|
1513
1228
|
/** @format uuid */
|
|
1514
1229
|
accountId: string;
|
|
1515
|
-
operationType:
|
|
1516
|
-
outcome:
|
|
1230
|
+
operationType: EncompassRequestLogOperationTypeEnum;
|
|
1231
|
+
outcome: EncompassRequestLogOutcomeEnum;
|
|
1517
1232
|
message: string;
|
|
1518
1233
|
endpoint?: string | null;
|
|
1519
1234
|
httpMethod?: string | null;
|
|
@@ -1564,7 +1279,7 @@ export interface FileSearchCriteria {
|
|
|
1564
1279
|
export interface FileWithBytes {
|
|
1565
1280
|
name: string;
|
|
1566
1281
|
/** @format byte */
|
|
1567
|
-
data:
|
|
1282
|
+
data: Blob;
|
|
1568
1283
|
fileName: string;
|
|
1569
1284
|
mimeType?: string | null;
|
|
1570
1285
|
extension?: string | null;
|
|
@@ -1730,7 +1445,7 @@ export interface FusionFieldDisplay {
|
|
|
1730
1445
|
fieldValue: string;
|
|
1731
1446
|
}
|
|
1732
1447
|
export interface FusionReportFilter {
|
|
1733
|
-
filterType:
|
|
1448
|
+
filterType: FusionReportFilterFilterTypeEnum;
|
|
1734
1449
|
targetField: string;
|
|
1735
1450
|
targetValue: string;
|
|
1736
1451
|
}
|
|
@@ -1750,17 +1465,6 @@ export interface GenerateDocumentRequest {
|
|
|
1750
1465
|
preview: boolean;
|
|
1751
1466
|
recipients: string[];
|
|
1752
1467
|
}
|
|
1753
|
-
export interface GenerateSystemPrompt {
|
|
1754
|
-
systemPrompt: string;
|
|
1755
|
-
}
|
|
1756
|
-
export interface GenerateSystemPromptRequest {
|
|
1757
|
-
/**
|
|
1758
|
-
* @minLength 1
|
|
1759
|
-
* @maxLength 2000
|
|
1760
|
-
*/
|
|
1761
|
-
description: string;
|
|
1762
|
-
category: "DocumentAnalysis" | "DataQuery" | "General" | "Action";
|
|
1763
|
-
}
|
|
1764
1468
|
export interface GetApplications {
|
|
1765
1469
|
applications: ApplicationRowData[];
|
|
1766
1470
|
}
|
|
@@ -1855,7 +1559,7 @@ export interface GuidPatchOperation {
|
|
|
1855
1559
|
from?: string | null;
|
|
1856
1560
|
}
|
|
1857
1561
|
export interface IPAddress {
|
|
1858
|
-
addressFamily:
|
|
1562
|
+
addressFamily: IpAddressAddressFamilyEnum;
|
|
1859
1563
|
/** @format int64 */
|
|
1860
1564
|
scopeId: number;
|
|
1861
1565
|
isIPv6Multicast: boolean;
|
|
@@ -2161,7 +1865,7 @@ export interface LoanBorrower {
|
|
|
2161
1865
|
citizenship?: LoanCitizenship | null;
|
|
2162
1866
|
maritalStatus?: LoanMaritalStatus | null;
|
|
2163
1867
|
languagePreference?: LoanLanguagePreference | null;
|
|
2164
|
-
applicationStatus:
|
|
1868
|
+
applicationStatus: LoanBorrowerApplicationStatusEnum;
|
|
2165
1869
|
/** @format int32 */
|
|
2166
1870
|
numberOfDependents?: number | null;
|
|
2167
1871
|
isPrimaryBorrower: boolean;
|
|
@@ -3018,7 +2722,7 @@ export interface LoanContact {
|
|
|
3018
2722
|
email?: string | null;
|
|
3019
2723
|
phone?: string | null;
|
|
3020
2724
|
companyName?: string | null;
|
|
3021
|
-
role:
|
|
2725
|
+
role: LoanContactRoleEnum;
|
|
3022
2726
|
}
|
|
3023
2727
|
export interface LoanContactList {
|
|
3024
2728
|
email: string;
|
|
@@ -3143,13 +2847,13 @@ export interface LoanImport {
|
|
|
3143
2847
|
/** @format int32 */
|
|
3144
2848
|
importedCount: number;
|
|
3145
2849
|
statusMessage?: string | null;
|
|
3146
|
-
status:
|
|
3147
|
-
importMode:
|
|
2850
|
+
status: LoanImportStatusEnum;
|
|
2851
|
+
importMode: LoanImportImportModeEnum;
|
|
3148
2852
|
/** @format date-time */
|
|
3149
2853
|
createdAt?: string | null;
|
|
3150
2854
|
}
|
|
3151
2855
|
export interface LoanImportLog {
|
|
3152
|
-
level:
|
|
2856
|
+
level: LoanImportLogLevelEnum;
|
|
3153
2857
|
message: string;
|
|
3154
2858
|
/** @format date-time */
|
|
3155
2859
|
createdAt: string;
|
|
@@ -3204,8 +2908,8 @@ export interface LoanListPaginated {
|
|
|
3204
2908
|
export interface LoanLog {
|
|
3205
2909
|
/** @format uuid */
|
|
3206
2910
|
id: string;
|
|
3207
|
-
level:
|
|
3208
|
-
type:
|
|
2911
|
+
level: LoanLogLevelEnum;
|
|
2912
|
+
type: LoanLogTypeEnum;
|
|
3209
2913
|
message: string;
|
|
3210
2914
|
/** @format date-time */
|
|
3211
2915
|
createdAt: string;
|
|
@@ -3213,8 +2917,8 @@ export interface LoanLog {
|
|
|
3213
2917
|
export interface LoanLogDetail {
|
|
3214
2918
|
/** @format uuid */
|
|
3215
2919
|
id: string;
|
|
3216
|
-
level:
|
|
3217
|
-
type:
|
|
2920
|
+
level: LoanLogDetailLevelEnum;
|
|
2921
|
+
type: LoanLogDetailTypeEnum;
|
|
3218
2922
|
message: string;
|
|
3219
2923
|
/** @format date-time */
|
|
3220
2924
|
createdAt: string;
|
|
@@ -3477,7 +3181,7 @@ export interface LoanUser {
|
|
|
3477
3181
|
email: string;
|
|
3478
3182
|
phone?: string | null;
|
|
3479
3183
|
role: string;
|
|
3480
|
-
loanRole:
|
|
3184
|
+
loanRole: LoanUserLoanRoleEnum;
|
|
3481
3185
|
isUser: boolean;
|
|
3482
3186
|
/** @format date-time */
|
|
3483
3187
|
createdAt: string;
|
|
@@ -4084,7 +3788,7 @@ export interface SSOTokenRequest {
|
|
|
4084
3788
|
redirectUri: string;
|
|
4085
3789
|
}
|
|
4086
3790
|
export interface SamlMetadataRequest {
|
|
4087
|
-
ssoIntegration:
|
|
3791
|
+
ssoIntegration: SamlMetadataRequestSsoIntegrationEnum;
|
|
4088
3792
|
}
|
|
4089
3793
|
export interface SendForgotPasswordRequest {
|
|
4090
3794
|
/**
|
|
@@ -4119,7 +3823,7 @@ export interface SiteConfiguration {
|
|
|
4119
3823
|
deletedAt?: string | null;
|
|
4120
3824
|
/** @format uuid */
|
|
4121
3825
|
id: string;
|
|
4122
|
-
type:
|
|
3826
|
+
type: SiteConfigurationTypeEnum;
|
|
4123
3827
|
/** @format uuid */
|
|
4124
3828
|
entityID: string;
|
|
4125
3829
|
/** @format int32 */
|
|
@@ -4313,7 +4017,7 @@ export interface SiteConfigurationByUrl {
|
|
|
4313
4017
|
deletedAt?: string | null;
|
|
4314
4018
|
/** @format uuid */
|
|
4315
4019
|
id: string;
|
|
4316
|
-
type:
|
|
4020
|
+
type: SiteConfigurationByUrlTypeEnum;
|
|
4317
4021
|
/** @format uuid */
|
|
4318
4022
|
entityID: string;
|
|
4319
4023
|
/** @format int32 */
|
|
@@ -4524,7 +4228,7 @@ export interface SiteConfigurationForm {
|
|
|
4524
4228
|
export interface SiteConfigurationReduced {
|
|
4525
4229
|
/** @format uuid */
|
|
4526
4230
|
id: string;
|
|
4527
|
-
type:
|
|
4231
|
+
type: SiteConfigurationReducedTypeEnum;
|
|
4528
4232
|
url?: string | null;
|
|
4529
4233
|
name: string;
|
|
4530
4234
|
/** @format int64 */
|
|
@@ -4541,7 +4245,7 @@ export interface SiteConfigurationRequest {
|
|
|
4541
4245
|
entityID: string;
|
|
4542
4246
|
/** @format int32 */
|
|
4543
4247
|
entityType: number;
|
|
4544
|
-
type:
|
|
4248
|
+
type: SiteConfigurationRequestTypeEnum;
|
|
4545
4249
|
url: string;
|
|
4546
4250
|
name: string;
|
|
4547
4251
|
introduction?: string | null;
|
|
@@ -4716,7 +4420,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
4716
4420
|
export interface SiteConfigurationSummary {
|
|
4717
4421
|
/** @format uuid */
|
|
4718
4422
|
id: string;
|
|
4719
|
-
type:
|
|
4423
|
+
type: SiteConfigurationSummaryTypeEnum;
|
|
4720
4424
|
url?: string | null;
|
|
4721
4425
|
name: string;
|
|
4722
4426
|
/** @format int64 */
|
|
@@ -4760,13 +4464,6 @@ export interface SocialSurveyRecord {
|
|
|
4760
4464
|
/** @format date-time */
|
|
4761
4465
|
reviewCompletedTimeStamp?: string | null;
|
|
4762
4466
|
}
|
|
4763
|
-
export interface SupportedModel {
|
|
4764
|
-
modelId: string;
|
|
4765
|
-
displayName: string;
|
|
4766
|
-
provider: string;
|
|
4767
|
-
description?: string | null;
|
|
4768
|
-
isDefault: boolean;
|
|
4769
|
-
}
|
|
4770
4467
|
export interface SurveyEmailRequest {
|
|
4771
4468
|
/** @minLength 1 */
|
|
4772
4469
|
loanOfficerEmailAddress: string;
|
|
@@ -5004,75 +4701,6 @@ export interface UpdateAccountRequest {
|
|
|
5004
4701
|
asoSettings?: ASOSettings | null;
|
|
5005
4702
|
settings: AccountSettingsRequest;
|
|
5006
4703
|
}
|
|
5007
|
-
export interface UpdateAiCanonicalFieldRequest {
|
|
5008
|
-
/**
|
|
5009
|
-
* @minLength 1
|
|
5010
|
-
* @maxLength 200
|
|
5011
|
-
*/
|
|
5012
|
-
displayName: string;
|
|
5013
|
-
/** @minLength 1 */
|
|
5014
|
-
description: string;
|
|
5015
|
-
/** @minItems 1 */
|
|
5016
|
-
allowedRoles: string[];
|
|
5017
|
-
isPii: boolean;
|
|
5018
|
-
}
|
|
5019
|
-
export interface UpdateAiGuardrailRequest {
|
|
5020
|
-
/**
|
|
5021
|
-
* @minLength 1
|
|
5022
|
-
* @maxLength 200
|
|
5023
|
-
*/
|
|
5024
|
-
name: string;
|
|
5025
|
-
category: "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
|
|
5026
|
-
description?: string | null;
|
|
5027
|
-
/** @minItems 1 */
|
|
5028
|
-
keywords: string[];
|
|
5029
|
-
/** @minLength 1 */
|
|
5030
|
-
responseTemplate: string;
|
|
5031
|
-
}
|
|
5032
|
-
export interface UpdateAiPromptRequest {
|
|
5033
|
-
/**
|
|
5034
|
-
* @minLength 1
|
|
5035
|
-
* @maxLength 200
|
|
5036
|
-
*/
|
|
5037
|
-
title: string;
|
|
5038
|
-
icon: string;
|
|
5039
|
-
/**
|
|
5040
|
-
* @minLength 1
|
|
5041
|
-
* @maxLength 500
|
|
5042
|
-
*/
|
|
5043
|
-
description: string;
|
|
5044
|
-
documentTypes: string[];
|
|
5045
|
-
applicableGuidelines: string[];
|
|
5046
|
-
allowedRoles: string[];
|
|
5047
|
-
/** @minLength 1 */
|
|
5048
|
-
systemPrompt: string;
|
|
5049
|
-
/** @minLength 1 */
|
|
5050
|
-
userPromptTemplate: string;
|
|
5051
|
-
followUpPrompts: string[];
|
|
5052
|
-
/** @format int32 */
|
|
5053
|
-
sortOrder: number;
|
|
5054
|
-
category?: AiPromptCategory | null;
|
|
5055
|
-
queryTemplateName?: AiQueryTemplateName | null;
|
|
5056
|
-
displayHint?: AiDisplayHint | null;
|
|
5057
|
-
bedrockModelId?: string | null;
|
|
5058
|
-
requiredDataSources?: string[] | null;
|
|
5059
|
-
outputType?: AiOutputType | null;
|
|
5060
|
-
}
|
|
5061
|
-
export interface UpdateAiUrlSourceRequest {
|
|
5062
|
-
/**
|
|
5063
|
-
* @minLength 1
|
|
5064
|
-
* @maxLength 200
|
|
5065
|
-
*/
|
|
5066
|
-
name: string;
|
|
5067
|
-
/**
|
|
5068
|
-
* @minLength 1
|
|
5069
|
-
* @maxLength 2048
|
|
5070
|
-
*/
|
|
5071
|
-
url: string;
|
|
5072
|
-
description?: string | null;
|
|
5073
|
-
category: "Regulatory" | "Guidelines" | "MarketData" | "Custom";
|
|
5074
|
-
scope: "FullDomain" | "SpecificPath";
|
|
5075
|
-
}
|
|
5076
4704
|
export interface UpdateDocumentTemplateRequest {
|
|
5077
4705
|
/** @minLength 1 */
|
|
5078
4706
|
htmlBody: string;
|
|
@@ -5369,7 +4997,7 @@ export interface UserDevice {
|
|
|
5369
4997
|
export interface UserDraft {
|
|
5370
4998
|
/** @format uuid */
|
|
5371
4999
|
draftID: string;
|
|
5372
|
-
role:
|
|
5000
|
+
role: UserDraftRoleEnum;
|
|
5373
5001
|
user: User;
|
|
5374
5002
|
}
|
|
5375
5003
|
export interface UserDraftPaginated {
|
|
@@ -5393,7 +5021,7 @@ export interface UserGroupAccessScope {
|
|
|
5393
5021
|
id: string;
|
|
5394
5022
|
/** @format uuid */
|
|
5395
5023
|
groupId: string;
|
|
5396
|
-
scopeType:
|
|
5024
|
+
scopeType: UserGroupAccessScopeScopeTypeEnum;
|
|
5397
5025
|
/** @format uuid */
|
|
5398
5026
|
userId?: string | null;
|
|
5399
5027
|
/** @format uuid */
|
|
@@ -5426,7 +5054,7 @@ export interface UserLoan {
|
|
|
5426
5054
|
deletedAt?: string | null;
|
|
5427
5055
|
loanID: string;
|
|
5428
5056
|
user: User;
|
|
5429
|
-
role:
|
|
5057
|
+
role: UserLoanRoleEnum;
|
|
5430
5058
|
/** @format int32 */
|
|
5431
5059
|
borrowerPair?: number | null;
|
|
5432
5060
|
/** @format int32 */
|
|
@@ -5438,10 +5066,10 @@ export interface UserLoanConsent {
|
|
|
5438
5066
|
id: string;
|
|
5439
5067
|
/** @format uuid */
|
|
5440
5068
|
userLoanID: string;
|
|
5441
|
-
type:
|
|
5069
|
+
type: UserLoanConsentTypeEnum;
|
|
5442
5070
|
providedConsent: boolean;
|
|
5443
5071
|
ipAddress?: string | null;
|
|
5444
|
-
losSyncStatus:
|
|
5072
|
+
losSyncStatus: UserLoanConsentLosSyncStatusEnum;
|
|
5445
5073
|
/** @format date-time */
|
|
5446
5074
|
createdAt: string;
|
|
5447
5075
|
}
|
|
@@ -5573,7 +5201,7 @@ export interface UserSummary {
|
|
|
5573
5201
|
id: string;
|
|
5574
5202
|
name?: string | null;
|
|
5575
5203
|
email?: string | null;
|
|
5576
|
-
role:
|
|
5204
|
+
role: UserSummaryRoleEnum;
|
|
5577
5205
|
}
|
|
5578
5206
|
export interface VerifyPasswordRequest {
|
|
5579
5207
|
/**
|
|
@@ -5606,6 +5234,49 @@ export interface Workflow {
|
|
|
5606
5234
|
tileSubtitle: string;
|
|
5607
5235
|
icon: string;
|
|
5608
5236
|
}
|
|
5237
|
+
export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
|
|
5238
|
+
export type AuditLogEntryChangeTypeEnum = "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored";
|
|
5239
|
+
export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
|
|
5240
|
+
export type CreateAccountRequestEnvironmentEnum = "Development" | "Staging" | "UAT" | "Production";
|
|
5241
|
+
export type CreateGroupMemberRequestLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5242
|
+
/** @deprecated */
|
|
5243
|
+
export type CreateInviteRequestRelationshipEnum = "NotApplicable" | "Spouse" | "NonSpouse";
|
|
5244
|
+
export type CreateLoanImportRequestImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5245
|
+
export type CreateUserDraftLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5246
|
+
export type DraftTypeEnum = "NewLoan" | "EditLoan";
|
|
5247
|
+
export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
|
|
5248
|
+
export type EncompassRequestLogOperationTypeEnum = "FieldUpdate" | "EConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
|
|
5249
|
+
export type EncompassRequestLogOutcomeEnum = "Success" | "Failure" | "PartialSuccess";
|
|
5250
|
+
export type FusionReportFilterFilterTypeEnum = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
|
|
5251
|
+
export type IpAddressAddressFamilyEnum = "Unspecified" | "Unix" | "InterNetwork" | "ImpLink" | "Pup" | "Chaos" | "NS" | "Ipx" | "Iso" | "Osi" | "Ecma" | "DataKit" | "Ccitt" | "Sna" | "DecNet" | "DataLink" | "Lat" | "HyperChannel" | "AppleTalk" | "NetBios" | "VoiceView" | "FireFox" | "Banyan" | "Atm" | "InterNetworkV6" | "Cluster" | "Ieee12844" | "Irda" | "NetworkDesigners" | "Max" | "Packet" | "ControllerAreaNetwork" | "Unknown";
|
|
5252
|
+
export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
|
|
5253
|
+
export type LoanContactRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5254
|
+
export type LoanImportStatusEnum = "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
|
|
5255
|
+
export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5256
|
+
export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5257
|
+
export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5258
|
+
export type LoanLogTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "EConsent" | "SensitiveDataPurge" | "ClosingDateUpdated";
|
|
5259
|
+
export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5260
|
+
export type LoanLogDetailTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "EConsent" | "SensitiveDataPurge" | "ClosingDateUpdated";
|
|
5261
|
+
export type LoanUserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5262
|
+
export type SamlMetadataRequestSsoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5263
|
+
export type SiteConfigurationTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5264
|
+
export type SiteConfigurationByUrlTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5265
|
+
export type SiteConfigurationReducedTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5266
|
+
export type SiteConfigurationRequestTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5267
|
+
export type SiteConfigurationSummaryTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5268
|
+
export type UserDraftRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5269
|
+
export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
|
|
5270
|
+
export type UserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5271
|
+
export type UserLoanConsentTypeEnum = "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
5272
|
+
export type UserLoanConsentLosSyncStatusEnum = "NotStarted" | "Failed" | "Success";
|
|
5273
|
+
export type UserSummaryRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5274
|
+
/** @default "Realtor" */
|
|
5275
|
+
export type GetPartnersParamsRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5276
|
+
export type GetSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5277
|
+
export type GetSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5278
|
+
export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5279
|
+
export type CreateOrReplaceSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5609
5280
|
import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
|
|
5610
5281
|
export type QueryParamsType = Record<string | number, any>;
|
|
5611
5282
|
export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
|
|
@@ -5651,7 +5322,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
5651
5322
|
}
|
|
5652
5323
|
/**
|
|
5653
5324
|
* @title The Big POS API
|
|
5654
|
-
* @version v2.37.
|
|
5325
|
+
* @version v2.37.8
|
|
5655
5326
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
5656
5327
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
5657
5328
|
*/
|
|
@@ -5665,7 +5336,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5665
5336
|
* @secure
|
|
5666
5337
|
* @response `200` `void` Success
|
|
5667
5338
|
*/
|
|
5668
|
-
postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
5339
|
+
postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5669
5340
|
/**
|
|
5670
5341
|
* No description
|
|
5671
5342
|
*
|
|
@@ -5675,7 +5346,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5675
5346
|
* @secure
|
|
5676
5347
|
* @response `200` `string` Success
|
|
5677
5348
|
*/
|
|
5678
|
-
getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any
|
|
5349
|
+
getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
5679
5350
|
api: {
|
|
5680
5351
|
/**
|
|
5681
5352
|
* No description
|
|
@@ -5688,7 +5359,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5688
5359
|
* @response `200` `Account` Success
|
|
5689
5360
|
* @response `404` `ProblemDetails` Not Found
|
|
5690
5361
|
*/
|
|
5691
|
-
getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any
|
|
5362
|
+
getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5692
5363
|
/**
|
|
5693
5364
|
* No description
|
|
5694
5365
|
*
|
|
@@ -5701,7 +5372,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5701
5372
|
* @response `404` `ProblemDetails` Not Found
|
|
5702
5373
|
* @response `422` `ProblemDetails` Client Error
|
|
5703
5374
|
*/
|
|
5704
|
-
replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any
|
|
5375
|
+
replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5705
5376
|
/**
|
|
5706
5377
|
* No description
|
|
5707
5378
|
*
|
|
@@ -5712,7 +5383,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5712
5383
|
* @secure
|
|
5713
5384
|
* @response `200` `SiteConfiguration` Success
|
|
5714
5385
|
*/
|
|
5715
|
-
getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
5386
|
+
getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5716
5387
|
/**
|
|
5717
5388
|
* No description
|
|
5718
5389
|
*
|
|
@@ -5724,7 +5395,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5724
5395
|
* @response `200` `SiteConfiguration` Success
|
|
5725
5396
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5726
5397
|
*/
|
|
5727
|
-
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
5398
|
+
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5728
5399
|
/**
|
|
5729
5400
|
* No description
|
|
5730
5401
|
*
|
|
@@ -5735,7 +5406,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5735
5406
|
* @secure
|
|
5736
5407
|
* @response `200` `(Account)[]` Success
|
|
5737
5408
|
*/
|
|
5738
|
-
getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any
|
|
5409
|
+
getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any>>;
|
|
5739
5410
|
/**
|
|
5740
5411
|
* No description
|
|
5741
5412
|
*
|
|
@@ -5747,7 +5418,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5747
5418
|
* @response `201` `Account` Created
|
|
5748
5419
|
* @response `422` `ProblemDetails` Client Error
|
|
5749
5420
|
*/
|
|
5750
|
-
createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any
|
|
5421
|
+
createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5751
5422
|
/**
|
|
5752
5423
|
* No description
|
|
5753
5424
|
*
|
|
@@ -5759,7 +5430,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5759
5430
|
* @response `201` `Account` Created
|
|
5760
5431
|
* @response `422` `ProblemDetails` Client Error
|
|
5761
5432
|
*/
|
|
5762
|
-
getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any
|
|
5433
|
+
getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5763
5434
|
/**
|
|
5764
5435
|
* No description
|
|
5765
5436
|
*
|
|
@@ -5775,7 +5446,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5775
5446
|
deleteAccount: (id: string, query?: {
|
|
5776
5447
|
/** @default false */
|
|
5777
5448
|
hardDelete?: boolean;
|
|
5778
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Account, any
|
|
5449
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5779
5450
|
/**
|
|
5780
5451
|
* No description
|
|
5781
5452
|
*
|
|
@@ -5788,431 +5459,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5788
5459
|
* @response `404` `ProblemDetails` Not Found
|
|
5789
5460
|
* @response `422` `ProblemDetails` Client Error
|
|
5790
5461
|
*/
|
|
5791
|
-
updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any
|
|
5792
|
-
/**
|
|
5793
|
-
* No description
|
|
5794
|
-
*
|
|
5795
|
-
* @tags AiAdmin
|
|
5796
|
-
* @name GetAiAuditLogs
|
|
5797
|
-
* @summary Get paginated audit logs
|
|
5798
|
-
* @request GET:/api/ai/admin/audit-logs
|
|
5799
|
-
* @secure
|
|
5800
|
-
* @response `200` `AiAuditLogPaginated` Success
|
|
5801
|
-
*/
|
|
5802
|
-
getAiAuditLogs: (query?: {
|
|
5803
|
-
eventType?: AiAuditEventType;
|
|
5804
|
-
/** @format date-time */
|
|
5805
|
-
startDate?: string;
|
|
5806
|
-
/** @format date-time */
|
|
5807
|
-
endDate?: string;
|
|
5808
|
-
/** @format int32 */
|
|
5809
|
-
pageSize?: number;
|
|
5810
|
-
/** @format int32 */
|
|
5811
|
-
pageNumber?: number;
|
|
5812
|
-
sortBy?: string;
|
|
5813
|
-
sortDirection?: string;
|
|
5814
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AiAuditLogPaginated, any, {}>>;
|
|
5815
|
-
/**
|
|
5816
|
-
* No description
|
|
5817
|
-
*
|
|
5818
|
-
* @tags AiAdmin
|
|
5819
|
-
* @name GetAiAdminStats
|
|
5820
|
-
* @summary Get AI admin dashboard stats
|
|
5821
|
-
* @request GET:/api/ai/admin/stats
|
|
5822
|
-
* @secure
|
|
5823
|
-
* @response `200` `AiAdminStats` Success
|
|
5824
|
-
*/
|
|
5825
|
-
getAiAdminStats: (query?: {
|
|
5826
|
-
/** @format date-time */
|
|
5827
|
-
startDate?: string;
|
|
5828
|
-
/** @format date-time */
|
|
5829
|
-
endDate?: string;
|
|
5830
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AiAdminStats, any, {}>>;
|
|
5831
|
-
/**
|
|
5832
|
-
* No description
|
|
5833
|
-
*
|
|
5834
|
-
* @tags AiAdminPrompt
|
|
5835
|
-
* @name GetAiPrompts
|
|
5836
|
-
* @summary Get all prompts
|
|
5837
|
-
* @request GET:/api/ai/admin/prompts
|
|
5838
|
-
* @secure
|
|
5839
|
-
* @response `200` `(AiPrompt)[]` Success
|
|
5840
|
-
*/
|
|
5841
|
-
getAiPrompts: (params?: RequestParams) => Promise<AxiosResponse<AiPrompt[], any, {}>>;
|
|
5842
|
-
/**
|
|
5843
|
-
* No description
|
|
5844
|
-
*
|
|
5845
|
-
* @tags AiAdminPrompt
|
|
5846
|
-
* @name CreateAiPrompt
|
|
5847
|
-
* @summary Create custom prompt
|
|
5848
|
-
* @request POST:/api/ai/admin/prompts
|
|
5849
|
-
* @secure
|
|
5850
|
-
* @response `201` `AiPrompt` Created
|
|
5851
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
5852
|
-
*/
|
|
5853
|
-
createAiPrompt: (data: CreateAiPromptRequest, params?: RequestParams) => Promise<AxiosResponse<AiPrompt, any, {}>>;
|
|
5854
|
-
/**
|
|
5855
|
-
* No description
|
|
5856
|
-
*
|
|
5857
|
-
* @tags AiAdminPrompt
|
|
5858
|
-
* @name GetAiPrompt
|
|
5859
|
-
* @summary Get prompt by ID
|
|
5860
|
-
* @request GET:/api/ai/admin/prompts/{id}
|
|
5861
|
-
* @secure
|
|
5862
|
-
* @response `200` `AiPrompt` Success
|
|
5863
|
-
* @response `404` `ProblemDetails` Not Found
|
|
5864
|
-
*/
|
|
5865
|
-
getAiPrompt: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiPrompt, any, {}>>;
|
|
5866
|
-
/**
|
|
5867
|
-
* No description
|
|
5868
|
-
*
|
|
5869
|
-
* @tags AiAdminPrompt
|
|
5870
|
-
* @name UpdateAiPrompt
|
|
5871
|
-
* @summary Update prompt
|
|
5872
|
-
* @request PUT:/api/ai/admin/prompts/{id}
|
|
5873
|
-
* @secure
|
|
5874
|
-
* @response `200` `AiPrompt` Success
|
|
5875
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
5876
|
-
* @response `404` `ProblemDetails` Not Found
|
|
5877
|
-
*/
|
|
5878
|
-
updateAiPrompt: (id: string, data: UpdateAiPromptRequest, params?: RequestParams) => Promise<AxiosResponse<AiPrompt, any, {}>>;
|
|
5879
|
-
/**
|
|
5880
|
-
* No description
|
|
5881
|
-
*
|
|
5882
|
-
* @tags AiAdminPrompt
|
|
5883
|
-
* @name DeleteAiPrompt
|
|
5884
|
-
* @summary Delete prompt
|
|
5885
|
-
* @request DELETE:/api/ai/admin/prompts/{id}
|
|
5886
|
-
* @secure
|
|
5887
|
-
* @response `204` `void` No Content
|
|
5888
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
5889
|
-
* @response `404` `ProblemDetails` Not Found
|
|
5890
|
-
*/
|
|
5891
|
-
deleteAiPrompt: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5892
|
-
/**
|
|
5893
|
-
* No description
|
|
5894
|
-
*
|
|
5895
|
-
* @tags AiAdminPrompt
|
|
5896
|
-
* @name ToggleAiPrompt
|
|
5897
|
-
* @summary Toggle prompt active/inactive
|
|
5898
|
-
* @request PATCH:/api/ai/admin/prompts/{id}/toggle
|
|
5899
|
-
* @secure
|
|
5900
|
-
* @response `200` `AiPrompt` Success
|
|
5901
|
-
* @response `404` `ProblemDetails` Not Found
|
|
5902
|
-
*/
|
|
5903
|
-
toggleAiPrompt: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiPrompt, any, {}>>;
|
|
5904
|
-
/**
|
|
5905
|
-
* No description
|
|
5906
|
-
*
|
|
5907
|
-
* @tags AiAdminPrompt
|
|
5908
|
-
* @name GenerateAiSystemPrompt
|
|
5909
|
-
* @summary Generate a system prompt from description
|
|
5910
|
-
* @request POST:/api/ai/admin/prompts/generate
|
|
5911
|
-
* @secure
|
|
5912
|
-
* @response `200` `GenerateSystemPrompt` Success
|
|
5913
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
5914
|
-
*/
|
|
5915
|
-
generateAiSystemPrompt: (data: GenerateSystemPromptRequest, params?: RequestParams) => Promise<AxiosResponse<GenerateSystemPrompt, any, {}>>;
|
|
5916
|
-
/**
|
|
5917
|
-
* No description
|
|
5918
|
-
*
|
|
5919
|
-
* @tags AiAdminPrompt
|
|
5920
|
-
* @name GetSupportedModels
|
|
5921
|
-
* @summary Get supported LLM models
|
|
5922
|
-
* @request GET:/api/ai/admin/prompts/supported-models
|
|
5923
|
-
* @secure
|
|
5924
|
-
* @response `200` `(SupportedModel)[]` Success
|
|
5925
|
-
*/
|
|
5926
|
-
getSupportedModels: (params?: RequestParams) => Promise<AxiosResponse<SupportedModel[], any, {}>>;
|
|
5927
|
-
/**
|
|
5928
|
-
* No description
|
|
5929
|
-
*
|
|
5930
|
-
* @tags AiCanonicalField
|
|
5931
|
-
* @name GetAiCanonicalFields
|
|
5932
|
-
* @summary Get all canonical fields
|
|
5933
|
-
* @request GET:/api/ai/admin/fields
|
|
5934
|
-
* @secure
|
|
5935
|
-
* @response `200` `(AiCanonicalField)[]` Success
|
|
5936
|
-
*/
|
|
5937
|
-
getAiCanonicalFields: (params?: RequestParams) => Promise<AxiosResponse<AiCanonicalField[], any, {}>>;
|
|
5938
|
-
/**
|
|
5939
|
-
* No description
|
|
5940
|
-
*
|
|
5941
|
-
* @tags AiCanonicalField
|
|
5942
|
-
* @name CreateAiCanonicalField
|
|
5943
|
-
* @summary Create canonical field
|
|
5944
|
-
* @request POST:/api/ai/admin/fields
|
|
5945
|
-
* @secure
|
|
5946
|
-
* @response `201` `AiCanonicalField` Created
|
|
5947
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
5948
|
-
*/
|
|
5949
|
-
createAiCanonicalField: (data: CreateAiCanonicalFieldRequest, params?: RequestParams) => Promise<AxiosResponse<AiCanonicalField, any, {}>>;
|
|
5950
|
-
/**
|
|
5951
|
-
* No description
|
|
5952
|
-
*
|
|
5953
|
-
* @tags AiCanonicalField
|
|
5954
|
-
* @name GetAiCanonicalField
|
|
5955
|
-
* @summary Get canonical field by ID
|
|
5956
|
-
* @request GET:/api/ai/admin/fields/{id}
|
|
5957
|
-
* @secure
|
|
5958
|
-
* @response `200` `AiCanonicalField` Success
|
|
5959
|
-
* @response `404` `ProblemDetails` Not Found
|
|
5960
|
-
*/
|
|
5961
|
-
getAiCanonicalField: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiCanonicalField, any, {}>>;
|
|
5962
|
-
/**
|
|
5963
|
-
* No description
|
|
5964
|
-
*
|
|
5965
|
-
* @tags AiCanonicalField
|
|
5966
|
-
* @name UpdateAiCanonicalField
|
|
5967
|
-
* @summary Update canonical field
|
|
5968
|
-
* @request PUT:/api/ai/admin/fields/{id}
|
|
5969
|
-
* @secure
|
|
5970
|
-
* @response `200` `AiCanonicalField` Success
|
|
5971
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
5972
|
-
* @response `404` `ProblemDetails` Not Found
|
|
5973
|
-
*/
|
|
5974
|
-
updateAiCanonicalField: (id: string, data: UpdateAiCanonicalFieldRequest, params?: RequestParams) => Promise<AxiosResponse<AiCanonicalField, any, {}>>;
|
|
5975
|
-
/**
|
|
5976
|
-
* No description
|
|
5977
|
-
*
|
|
5978
|
-
* @tags AiCanonicalField
|
|
5979
|
-
* @name DeleteAiCanonicalField
|
|
5980
|
-
* @summary Delete canonical field
|
|
5981
|
-
* @request DELETE:/api/ai/admin/fields/{id}
|
|
5982
|
-
* @secure
|
|
5983
|
-
* @response `204` `void` No Content
|
|
5984
|
-
* @response `404` `ProblemDetails` Not Found
|
|
5985
|
-
*/
|
|
5986
|
-
deleteAiCanonicalField: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5987
|
-
/**
|
|
5988
|
-
* No description
|
|
5989
|
-
*
|
|
5990
|
-
* @tags AiCanonicalField
|
|
5991
|
-
* @name ToggleAiCanonicalField
|
|
5992
|
-
* @summary Toggle canonical field active/inactive
|
|
5993
|
-
* @request PATCH:/api/ai/admin/fields/{id}/toggle
|
|
5994
|
-
* @secure
|
|
5995
|
-
* @response `200` `AiCanonicalField` Success
|
|
5996
|
-
* @response `404` `ProblemDetails` Not Found
|
|
5997
|
-
*/
|
|
5998
|
-
toggleAiCanonicalField: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiCanonicalField, any, {}>>;
|
|
5999
|
-
/**
|
|
6000
|
-
* No description
|
|
6001
|
-
*
|
|
6002
|
-
* @tags AiChat
|
|
6003
|
-
* @name AiChat
|
|
6004
|
-
* @summary Send AI chat message
|
|
6005
|
-
* @request POST:/api/ai/chat
|
|
6006
|
-
* @secure
|
|
6007
|
-
* @response `200` `AiChat` Success
|
|
6008
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
6009
|
-
* @response `401` `ProblemDetails` Unauthorized
|
|
6010
|
-
*/
|
|
6011
|
-
aiChat: (data: AiChatRequest, params?: RequestParams) => Promise<AxiosResponse<AiChat, any, {}>>;
|
|
6012
|
-
/**
|
|
6013
|
-
* No description
|
|
6014
|
-
*
|
|
6015
|
-
* @tags AiConversation
|
|
6016
|
-
* @name GetAiConversations
|
|
6017
|
-
* @summary Get user conversations
|
|
6018
|
-
* @request GET:/api/ai/conversations
|
|
6019
|
-
* @secure
|
|
6020
|
-
* @response `200` `AiConversationListItemPaginated` Success
|
|
6021
|
-
*/
|
|
6022
|
-
getAiConversations: (query?: {
|
|
6023
|
-
/** @format int32 */
|
|
6024
|
-
pageSize?: number;
|
|
6025
|
-
/** @format int32 */
|
|
6026
|
-
pageNumber?: number;
|
|
6027
|
-
sortBy?: string;
|
|
6028
|
-
sortDirection?: string;
|
|
6029
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AiConversationListItemPaginated, any, {}>>;
|
|
6030
|
-
/**
|
|
6031
|
-
* No description
|
|
6032
|
-
*
|
|
6033
|
-
* @tags AiConversation
|
|
6034
|
-
* @name GetAiConversation
|
|
6035
|
-
* @summary Get conversation with messages
|
|
6036
|
-
* @request GET:/api/ai/conversations/{id}
|
|
6037
|
-
* @secure
|
|
6038
|
-
* @response `200` `AiConversationDetail` Success
|
|
6039
|
-
* @response `403` `ProblemDetails` Forbidden
|
|
6040
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6041
|
-
*/
|
|
6042
|
-
getAiConversation: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiConversationDetail, any, {}>>;
|
|
6043
|
-
/**
|
|
6044
|
-
* No description
|
|
6045
|
-
*
|
|
6046
|
-
* @tags AiConversation
|
|
6047
|
-
* @name DeleteAiConversation
|
|
6048
|
-
* @summary Delete conversation
|
|
6049
|
-
* @request DELETE:/api/ai/conversations/{id}
|
|
6050
|
-
* @secure
|
|
6051
|
-
* @response `204` `void` No Content
|
|
6052
|
-
* @response `403` `ProblemDetails` Forbidden
|
|
6053
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6054
|
-
*/
|
|
6055
|
-
deleteAiConversation: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6056
|
-
/**
|
|
6057
|
-
* No description
|
|
6058
|
-
*
|
|
6059
|
-
* @tags AiGuardrail
|
|
6060
|
-
* @name GetAiGuardrails
|
|
6061
|
-
* @summary Get all guardrails
|
|
6062
|
-
* @request GET:/api/ai/admin/guardrails
|
|
6063
|
-
* @secure
|
|
6064
|
-
* @response `200` `(AiGuardrail)[]` Success
|
|
6065
|
-
*/
|
|
6066
|
-
getAiGuardrails: (params?: RequestParams) => Promise<AxiosResponse<AiGuardrail[], any, {}>>;
|
|
6067
|
-
/**
|
|
6068
|
-
* No description
|
|
6069
|
-
*
|
|
6070
|
-
* @tags AiGuardrail
|
|
6071
|
-
* @name CreateAiGuardrail
|
|
6072
|
-
* @summary Create custom guardrail
|
|
6073
|
-
* @request POST:/api/ai/admin/guardrails
|
|
6074
|
-
* @secure
|
|
6075
|
-
* @response `201` `AiGuardrail` Created
|
|
6076
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
6077
|
-
*/
|
|
6078
|
-
createAiGuardrail: (data: CreateAiGuardrailRequest, params?: RequestParams) => Promise<AxiosResponse<AiGuardrail, any, {}>>;
|
|
6079
|
-
/**
|
|
6080
|
-
* No description
|
|
6081
|
-
*
|
|
6082
|
-
* @tags AiGuardrail
|
|
6083
|
-
* @name GetAiGuardrail
|
|
6084
|
-
* @summary Get guardrail by ID
|
|
6085
|
-
* @request GET:/api/ai/admin/guardrails/{id}
|
|
6086
|
-
* @secure
|
|
6087
|
-
* @response `200` `AiGuardrail` Success
|
|
6088
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6089
|
-
*/
|
|
6090
|
-
getAiGuardrail: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiGuardrail, any, {}>>;
|
|
6091
|
-
/**
|
|
6092
|
-
* No description
|
|
6093
|
-
*
|
|
6094
|
-
* @tags AiGuardrail
|
|
6095
|
-
* @name UpdateAiGuardrail
|
|
6096
|
-
* @summary Update guardrail
|
|
6097
|
-
* @request PUT:/api/ai/admin/guardrails/{id}
|
|
6098
|
-
* @secure
|
|
6099
|
-
* @response `200` `AiGuardrail` Success
|
|
6100
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
6101
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6102
|
-
*/
|
|
6103
|
-
updateAiGuardrail: (id: string, data: UpdateAiGuardrailRequest, params?: RequestParams) => Promise<AxiosResponse<AiGuardrail, any, {}>>;
|
|
6104
|
-
/**
|
|
6105
|
-
* No description
|
|
6106
|
-
*
|
|
6107
|
-
* @tags AiGuardrail
|
|
6108
|
-
* @name DeleteAiGuardrail
|
|
6109
|
-
* @summary Delete guardrail
|
|
6110
|
-
* @request DELETE:/api/ai/admin/guardrails/{id}
|
|
6111
|
-
* @secure
|
|
6112
|
-
* @response `204` `void` No Content
|
|
6113
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
6114
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6115
|
-
*/
|
|
6116
|
-
deleteAiGuardrail: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6117
|
-
/**
|
|
6118
|
-
* No description
|
|
6119
|
-
*
|
|
6120
|
-
* @tags AiGuardrail
|
|
6121
|
-
* @name ToggleAiGuardrail
|
|
6122
|
-
* @summary Toggle guardrail enabled/disabled
|
|
6123
|
-
* @request PATCH:/api/ai/admin/guardrails/{id}/toggle
|
|
6124
|
-
* @secure
|
|
6125
|
-
* @response `200` `AiGuardrail` Success
|
|
6126
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6127
|
-
*/
|
|
6128
|
-
toggleAiGuardrail: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiGuardrail, any, {}>>;
|
|
6129
|
-
/**
|
|
6130
|
-
* No description
|
|
6131
|
-
*
|
|
6132
|
-
* @tags AiPrompt
|
|
6133
|
-
* @name GetAvailablePrompts
|
|
6134
|
-
* @summary Get available prompts for current user
|
|
6135
|
-
* @request GET:/api/ai/prompts
|
|
6136
|
-
* @secure
|
|
6137
|
-
* @response `200` `(AiPromptSummary)[]` Success
|
|
6138
|
-
*/
|
|
6139
|
-
getAvailablePrompts: (query?: {
|
|
6140
|
-
documentType?: string;
|
|
6141
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AiPromptSummary[], any, {}>>;
|
|
6142
|
-
/**
|
|
6143
|
-
* No description
|
|
6144
|
-
*
|
|
6145
|
-
* @tags AiUrlSource
|
|
6146
|
-
* @name GetAiUrlSources
|
|
6147
|
-
* @summary Get all URL sources
|
|
6148
|
-
* @request GET:/api/ai/admin/url-sources
|
|
6149
|
-
* @secure
|
|
6150
|
-
* @response `200` `(AiUrlSource)[]` Success
|
|
6151
|
-
*/
|
|
6152
|
-
getAiUrlSources: (params?: RequestParams) => Promise<AxiosResponse<AiUrlSource[], any, {}>>;
|
|
6153
|
-
/**
|
|
6154
|
-
* No description
|
|
6155
|
-
*
|
|
6156
|
-
* @tags AiUrlSource
|
|
6157
|
-
* @name CreateAiUrlSource
|
|
6158
|
-
* @summary Create URL source
|
|
6159
|
-
* @request POST:/api/ai/admin/url-sources
|
|
6160
|
-
* @secure
|
|
6161
|
-
* @response `201` `AiUrlSource` Created
|
|
6162
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
6163
|
-
* @response `409` `ProblemDetails` Conflict
|
|
6164
|
-
*/
|
|
6165
|
-
createAiUrlSource: (data: CreateAiUrlSourceRequest, params?: RequestParams) => Promise<AxiosResponse<AiUrlSource, any, {}>>;
|
|
6166
|
-
/**
|
|
6167
|
-
* No description
|
|
6168
|
-
*
|
|
6169
|
-
* @tags AiUrlSource
|
|
6170
|
-
* @name GetAiUrlSource
|
|
6171
|
-
* @summary Get URL source by ID
|
|
6172
|
-
* @request GET:/api/ai/admin/url-sources/{id}
|
|
6173
|
-
* @secure
|
|
6174
|
-
* @response `200` `AiUrlSource` Success
|
|
6175
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6176
|
-
*/
|
|
6177
|
-
getAiUrlSource: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiUrlSource, any, {}>>;
|
|
6178
|
-
/**
|
|
6179
|
-
* No description
|
|
6180
|
-
*
|
|
6181
|
-
* @tags AiUrlSource
|
|
6182
|
-
* @name UpdateAiUrlSource
|
|
6183
|
-
* @summary Update URL source
|
|
6184
|
-
* @request PUT:/api/ai/admin/url-sources/{id}
|
|
6185
|
-
* @secure
|
|
6186
|
-
* @response `200` `AiUrlSource` Success
|
|
6187
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
6188
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6189
|
-
* @response `409` `ProblemDetails` Conflict
|
|
6190
|
-
*/
|
|
6191
|
-
updateAiUrlSource: (id: string, data: UpdateAiUrlSourceRequest, params?: RequestParams) => Promise<AxiosResponse<AiUrlSource, any, {}>>;
|
|
6192
|
-
/**
|
|
6193
|
-
* No description
|
|
6194
|
-
*
|
|
6195
|
-
* @tags AiUrlSource
|
|
6196
|
-
* @name DeleteAiUrlSource
|
|
6197
|
-
* @summary Delete URL source
|
|
6198
|
-
* @request DELETE:/api/ai/admin/url-sources/{id}
|
|
6199
|
-
* @secure
|
|
6200
|
-
* @response `204` `void` No Content
|
|
6201
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6202
|
-
*/
|
|
6203
|
-
deleteAiUrlSource: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6204
|
-
/**
|
|
6205
|
-
* No description
|
|
6206
|
-
*
|
|
6207
|
-
* @tags AiUrlSource
|
|
6208
|
-
* @name ToggleAiUrlSource
|
|
6209
|
-
* @summary Toggle URL source active/inactive
|
|
6210
|
-
* @request PATCH:/api/ai/admin/url-sources/{id}/toggle
|
|
6211
|
-
* @secure
|
|
6212
|
-
* @response `200` `AiUrlSource` Success
|
|
6213
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6214
|
-
*/
|
|
6215
|
-
toggleAiUrlSource: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiUrlSource, any, {}>>;
|
|
5462
|
+
updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any>>;
|
|
6216
5463
|
/**
|
|
6217
5464
|
* No description
|
|
6218
5465
|
*
|
|
@@ -6230,7 +5477,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6230
5477
|
pageNumber?: number;
|
|
6231
5478
|
sortBy?: string;
|
|
6232
5479
|
sortDirection?: string;
|
|
6233
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any
|
|
5480
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any>>;
|
|
6234
5481
|
/**
|
|
6235
5482
|
* No description
|
|
6236
5483
|
*
|
|
@@ -6242,7 +5489,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6242
5489
|
* @response `200` `AuditLogEntry` Success
|
|
6243
5490
|
* @response `404` `ProblemDetails` Not Found
|
|
6244
5491
|
*/
|
|
6245
|
-
getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any
|
|
5492
|
+
getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any>>;
|
|
6246
5493
|
/**
|
|
6247
5494
|
* No description
|
|
6248
5495
|
*
|
|
@@ -6255,7 +5502,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6255
5502
|
* @response `401` `ProblemDetails` Unauthorized
|
|
6256
5503
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6257
5504
|
*/
|
|
6258
|
-
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any
|
|
5505
|
+
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
6259
5506
|
/**
|
|
6260
5507
|
* No description
|
|
6261
5508
|
*
|
|
@@ -6267,7 +5514,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6267
5514
|
* @response `200` `ForcePasswordReset` Success
|
|
6268
5515
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6269
5516
|
*/
|
|
6270
|
-
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any
|
|
5517
|
+
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
|
|
6271
5518
|
/**
|
|
6272
5519
|
* No description
|
|
6273
5520
|
*
|
|
@@ -6279,7 +5526,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6279
5526
|
* @response `200` `ForcePasswordReset` Success
|
|
6280
5527
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6281
5528
|
*/
|
|
6282
|
-
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any
|
|
5529
|
+
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
|
|
6283
5530
|
/**
|
|
6284
5531
|
* No description
|
|
6285
5532
|
*
|
|
@@ -6291,7 +5538,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6291
5538
|
* @response `200` `Token` Success
|
|
6292
5539
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6293
5540
|
*/
|
|
6294
|
-
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any
|
|
5541
|
+
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
6295
5542
|
/**
|
|
6296
5543
|
* No description
|
|
6297
5544
|
*
|
|
@@ -6303,7 +5550,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6303
5550
|
* @response `200` `SSOToken` Success
|
|
6304
5551
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6305
5552
|
*/
|
|
6306
|
-
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any
|
|
5553
|
+
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any>>;
|
|
6307
5554
|
/**
|
|
6308
5555
|
* No description
|
|
6309
5556
|
*
|
|
@@ -6315,7 +5562,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6315
5562
|
* @response `204` `NoContentResult` No Content
|
|
6316
5563
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6317
5564
|
*/
|
|
6318
|
-
logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any
|
|
5565
|
+
logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any>>;
|
|
6319
5566
|
/**
|
|
6320
5567
|
* No description
|
|
6321
5568
|
*
|
|
@@ -6334,7 +5581,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6334
5581
|
pageNumber?: number;
|
|
6335
5582
|
sortBy?: string;
|
|
6336
5583
|
sortDirection?: string;
|
|
6337
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any
|
|
5584
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
6338
5585
|
/**
|
|
6339
5586
|
* No description
|
|
6340
5587
|
*
|
|
@@ -6346,7 +5593,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6346
5593
|
* @response `200` `GetBranch` Success
|
|
6347
5594
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6348
5595
|
*/
|
|
6349
|
-
createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any
|
|
5596
|
+
createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
6350
5597
|
/**
|
|
6351
5598
|
* No description
|
|
6352
5599
|
*
|
|
@@ -6364,7 +5611,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6364
5611
|
pageNumber?: number;
|
|
6365
5612
|
sortBy?: string;
|
|
6366
5613
|
sortDirection?: string;
|
|
6367
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any
|
|
5614
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
6368
5615
|
/**
|
|
6369
5616
|
* No description
|
|
6370
5617
|
*
|
|
@@ -6375,7 +5622,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6375
5622
|
* @secure
|
|
6376
5623
|
* @response `200` `GetBranch` Success
|
|
6377
5624
|
*/
|
|
6378
|
-
getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any
|
|
5625
|
+
getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
6379
5626
|
/**
|
|
6380
5627
|
* No description
|
|
6381
5628
|
*
|
|
@@ -6387,7 +5634,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6387
5634
|
* @response `200` `GetBranch` Success
|
|
6388
5635
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6389
5636
|
*/
|
|
6390
|
-
replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any
|
|
5637
|
+
replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
6391
5638
|
/**
|
|
6392
5639
|
* No description
|
|
6393
5640
|
*
|
|
@@ -6398,7 +5645,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6398
5645
|
* @secure
|
|
6399
5646
|
* @response `204` `void` No Content
|
|
6400
5647
|
*/
|
|
6401
|
-
deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
5648
|
+
deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6402
5649
|
/**
|
|
6403
5650
|
* No description
|
|
6404
5651
|
*
|
|
@@ -6410,7 +5657,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6410
5657
|
* @response `204` `void` No Content
|
|
6411
5658
|
* @response `400` `ProblemDetails` Bad Request
|
|
6412
5659
|
*/
|
|
6413
|
-
restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
5660
|
+
restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6414
5661
|
/**
|
|
6415
5662
|
* No description
|
|
6416
5663
|
*
|
|
@@ -6422,7 +5669,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6422
5669
|
* @response `200` `SiteConfiguration` Success
|
|
6423
5670
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6424
5671
|
*/
|
|
6425
|
-
createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
5672
|
+
createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6426
5673
|
/**
|
|
6427
5674
|
* No description
|
|
6428
5675
|
*
|
|
@@ -6433,7 +5680,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6433
5680
|
* @secure
|
|
6434
5681
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
6435
5682
|
*/
|
|
6436
|
-
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any
|
|
5683
|
+
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
6437
5684
|
/**
|
|
6438
5685
|
* No description
|
|
6439
5686
|
*
|
|
@@ -6447,7 +5694,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6447
5694
|
*/
|
|
6448
5695
|
replaceBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
6449
5696
|
applyToChildren?: boolean;
|
|
6450
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
5697
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6451
5698
|
/**
|
|
6452
5699
|
* No description
|
|
6453
5700
|
*
|
|
@@ -6458,7 +5705,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6458
5705
|
* @secure
|
|
6459
5706
|
* @response `200` `(LoanOfficerPublic)[]` Success
|
|
6460
5707
|
*/
|
|
6461
|
-
getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any
|
|
5708
|
+
getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
|
|
6462
5709
|
/**
|
|
6463
5710
|
* No description
|
|
6464
5711
|
*
|
|
@@ -6471,7 +5718,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6471
5718
|
*/
|
|
6472
5719
|
getBusinessRules: (query?: {
|
|
6473
5720
|
showAll?: boolean;
|
|
6474
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any
|
|
5721
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any>>;
|
|
6475
5722
|
/**
|
|
6476
5723
|
* No description
|
|
6477
5724
|
*
|
|
@@ -6483,7 +5730,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6483
5730
|
* @response `200` `BusinessRule` Success
|
|
6484
5731
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6485
5732
|
*/
|
|
6486
|
-
createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any
|
|
5733
|
+
createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
6487
5734
|
/**
|
|
6488
5735
|
* No description
|
|
6489
5736
|
*
|
|
@@ -6494,7 +5741,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6494
5741
|
* @secure
|
|
6495
5742
|
* @response `200` `BusinessRule` Success
|
|
6496
5743
|
*/
|
|
6497
|
-
getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any
|
|
5744
|
+
getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
6498
5745
|
/**
|
|
6499
5746
|
* No description
|
|
6500
5747
|
*
|
|
@@ -6506,7 +5753,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6506
5753
|
* @response `200` `BusinessRule` Success
|
|
6507
5754
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6508
5755
|
*/
|
|
6509
|
-
replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any
|
|
5756
|
+
replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
6510
5757
|
/**
|
|
6511
5758
|
* No description
|
|
6512
5759
|
*
|
|
@@ -6517,7 +5764,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6517
5764
|
* @secure
|
|
6518
5765
|
* @response `204` `void` No Content
|
|
6519
5766
|
*/
|
|
6520
|
-
deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
5767
|
+
deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6521
5768
|
/**
|
|
6522
5769
|
* No description
|
|
6523
5770
|
*
|
|
@@ -6528,7 +5775,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6528
5775
|
* @secure
|
|
6529
5776
|
* @response `200` `BusinessRule` Success
|
|
6530
5777
|
*/
|
|
6531
|
-
restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any
|
|
5778
|
+
restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
6532
5779
|
/**
|
|
6533
5780
|
* @description Returns closed loan counts per account within the specified date range, including POS vs non-POS breakdown and utilization ratios.
|
|
6534
5781
|
*
|
|
@@ -6539,7 +5786,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6539
5786
|
* @secure
|
|
6540
5787
|
* @response `200` `ClosedLoansReport` Success
|
|
6541
5788
|
*/
|
|
6542
|
-
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any
|
|
5789
|
+
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any>>;
|
|
6543
5790
|
/**
|
|
6544
5791
|
* No description
|
|
6545
5792
|
*
|
|
@@ -6558,7 +5805,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6558
5805
|
pageNumber?: number;
|
|
6559
5806
|
sortBy?: string;
|
|
6560
5807
|
sortDirection?: string;
|
|
6561
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any
|
|
5808
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
6562
5809
|
/**
|
|
6563
5810
|
* No description
|
|
6564
5811
|
*
|
|
@@ -6570,7 +5817,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6570
5817
|
* @response `200` `Corporate` Success
|
|
6571
5818
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6572
5819
|
*/
|
|
6573
|
-
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any
|
|
5820
|
+
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
6574
5821
|
/**
|
|
6575
5822
|
* No description
|
|
6576
5823
|
*
|
|
@@ -6588,7 +5835,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6588
5835
|
pageNumber?: number;
|
|
6589
5836
|
sortBy?: string;
|
|
6590
5837
|
sortDirection?: string;
|
|
6591
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any
|
|
5838
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
6592
5839
|
/**
|
|
6593
5840
|
* No description
|
|
6594
5841
|
*
|
|
@@ -6599,7 +5846,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6599
5846
|
* @secure
|
|
6600
5847
|
* @response `200` `Corporate` Success
|
|
6601
5848
|
*/
|
|
6602
|
-
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any
|
|
5849
|
+
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
6603
5850
|
/**
|
|
6604
5851
|
* No description
|
|
6605
5852
|
*
|
|
@@ -6611,7 +5858,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6611
5858
|
* @response `200` `Corporate` Success
|
|
6612
5859
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6613
5860
|
*/
|
|
6614
|
-
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any
|
|
5861
|
+
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
6615
5862
|
/**
|
|
6616
5863
|
* No description
|
|
6617
5864
|
*
|
|
@@ -6622,7 +5869,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6622
5869
|
* @secure
|
|
6623
5870
|
* @response `204` `void` No Content
|
|
6624
5871
|
*/
|
|
6625
|
-
deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
5872
|
+
deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6626
5873
|
/**
|
|
6627
5874
|
* No description
|
|
6628
5875
|
*
|
|
@@ -6633,7 +5880,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6633
5880
|
* @secure
|
|
6634
5881
|
* @response `204` `void` No Content
|
|
6635
5882
|
*/
|
|
6636
|
-
restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
5883
|
+
restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6637
5884
|
/**
|
|
6638
5885
|
* No description
|
|
6639
5886
|
*
|
|
@@ -6645,7 +5892,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6645
5892
|
* @response `200` `SiteConfiguration` Success
|
|
6646
5893
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6647
5894
|
*/
|
|
6648
|
-
createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
5895
|
+
createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6649
5896
|
/**
|
|
6650
5897
|
* No description
|
|
6651
5898
|
*
|
|
@@ -6656,7 +5903,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6656
5903
|
* @secure
|
|
6657
5904
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
6658
5905
|
*/
|
|
6659
|
-
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any
|
|
5906
|
+
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
6660
5907
|
/**
|
|
6661
5908
|
* No description
|
|
6662
5909
|
*
|
|
@@ -6670,7 +5917,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6670
5917
|
*/
|
|
6671
5918
|
replaceCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
6672
5919
|
applyToChildren?: boolean;
|
|
6673
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
5920
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6674
5921
|
/**
|
|
6675
5922
|
* No description
|
|
6676
5923
|
*
|
|
@@ -6681,7 +5928,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6681
5928
|
* @secure
|
|
6682
5929
|
* @response `200` `(BranchReduced)[]` Success
|
|
6683
5930
|
*/
|
|
6684
|
-
getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any
|
|
5931
|
+
getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any>>;
|
|
6685
5932
|
/**
|
|
6686
5933
|
* No description
|
|
6687
5934
|
*
|
|
@@ -6692,7 +5939,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6692
5939
|
* @secure
|
|
6693
5940
|
* @response `200` `(LoanOfficerPublic)[]` Success
|
|
6694
5941
|
*/
|
|
6695
|
-
getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any
|
|
5942
|
+
getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
|
|
6696
5943
|
/**
|
|
6697
5944
|
* No description
|
|
6698
5945
|
*
|
|
@@ -6712,7 +5959,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6712
5959
|
pageNumber?: number;
|
|
6713
5960
|
sortBy?: string;
|
|
6714
5961
|
sortDirection?: string;
|
|
6715
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any
|
|
5962
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any>>;
|
|
6716
5963
|
/**
|
|
6717
5964
|
* No description
|
|
6718
5965
|
*
|
|
@@ -6723,7 +5970,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6723
5970
|
* @secure
|
|
6724
5971
|
* @response `200` `Device` Success
|
|
6725
5972
|
*/
|
|
6726
|
-
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any
|
|
5973
|
+
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
6727
5974
|
/**
|
|
6728
5975
|
* No description
|
|
6729
5976
|
*
|
|
@@ -6734,7 +5981,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6734
5981
|
* @secure
|
|
6735
5982
|
* @response `200` `Device` Success
|
|
6736
5983
|
*/
|
|
6737
|
-
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any
|
|
5984
|
+
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
6738
5985
|
/**
|
|
6739
5986
|
* No description
|
|
6740
5987
|
*
|
|
@@ -6745,7 +5992,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6745
5992
|
* @secure
|
|
6746
5993
|
* @response `200` `DeviceMDM` Success
|
|
6747
5994
|
*/
|
|
6748
|
-
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any
|
|
5995
|
+
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any>>;
|
|
6749
5996
|
/**
|
|
6750
5997
|
* No description
|
|
6751
5998
|
*
|
|
@@ -6756,7 +6003,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6756
6003
|
* @secure
|
|
6757
6004
|
* @response `200` `Action` Success
|
|
6758
6005
|
*/
|
|
6759
|
-
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any
|
|
6006
|
+
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any>>;
|
|
6760
6007
|
/**
|
|
6761
6008
|
* No description
|
|
6762
6009
|
*
|
|
@@ -6770,7 +6017,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6770
6017
|
getDocumentBuckets: (query?: {
|
|
6771
6018
|
/** @default false */
|
|
6772
6019
|
includeSystemBuckets?: boolean;
|
|
6773
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string[], any
|
|
6020
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
6774
6021
|
/**
|
|
6775
6022
|
* No description
|
|
6776
6023
|
*
|
|
@@ -6783,7 +6030,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6783
6030
|
*/
|
|
6784
6031
|
getDocumentTemplates: (query?: {
|
|
6785
6032
|
showAll?: boolean;
|
|
6786
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any
|
|
6033
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
6787
6034
|
/**
|
|
6788
6035
|
* No description
|
|
6789
6036
|
*
|
|
@@ -6796,7 +6043,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6796
6043
|
* @response `404` `ProblemDetails` Not Found
|
|
6797
6044
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6798
6045
|
*/
|
|
6799
|
-
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any
|
|
6046
|
+
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
6800
6047
|
/**
|
|
6801
6048
|
* No description
|
|
6802
6049
|
*
|
|
@@ -6812,7 +6059,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6812
6059
|
showAll?: boolean;
|
|
6813
6060
|
/** @default true */
|
|
6814
6061
|
publishedOnly?: boolean;
|
|
6815
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any
|
|
6062
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
6816
6063
|
/**
|
|
6817
6064
|
* No description
|
|
6818
6065
|
*
|
|
@@ -6824,7 +6071,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6824
6071
|
* @response `200` `DocumentTemplate` Success
|
|
6825
6072
|
* @response `404` `ProblemDetails` Not Found
|
|
6826
6073
|
*/
|
|
6827
|
-
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any
|
|
6074
|
+
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any>>;
|
|
6828
6075
|
/**
|
|
6829
6076
|
* No description
|
|
6830
6077
|
*
|
|
@@ -6838,7 +6085,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6838
6085
|
* @response `404` `ProblemDetails` Not Found
|
|
6839
6086
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6840
6087
|
*/
|
|
6841
|
-
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any
|
|
6088
|
+
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
6842
6089
|
/**
|
|
6843
6090
|
* No description
|
|
6844
6091
|
*
|
|
@@ -6851,7 +6098,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6851
6098
|
* @response `401` `ProblemDetails` Unauthorized
|
|
6852
6099
|
* @response `404` `ProblemDetails` Not Found
|
|
6853
6100
|
*/
|
|
6854
|
-
deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
6101
|
+
deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6855
6102
|
/**
|
|
6856
6103
|
* No description
|
|
6857
6104
|
*
|
|
@@ -6864,7 +6111,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6864
6111
|
* @response `401` `ProblemDetails` Unauthorized
|
|
6865
6112
|
* @response `404` `ProblemDetails` Not Found
|
|
6866
6113
|
*/
|
|
6867
|
-
restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
6114
|
+
restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6868
6115
|
/**
|
|
6869
6116
|
* No description
|
|
6870
6117
|
*
|
|
@@ -6875,7 +6122,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6875
6122
|
* @secure
|
|
6876
6123
|
* @response `200` `(DocumentTemplateVersion)[]` Success
|
|
6877
6124
|
*/
|
|
6878
|
-
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any
|
|
6125
|
+
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any>>;
|
|
6879
6126
|
/**
|
|
6880
6127
|
* No description
|
|
6881
6128
|
*
|
|
@@ -6886,7 +6133,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6886
6133
|
* @secure
|
|
6887
6134
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6888
6135
|
*/
|
|
6889
|
-
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any
|
|
6136
|
+
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6890
6137
|
/**
|
|
6891
6138
|
* No description
|
|
6892
6139
|
*
|
|
@@ -6897,7 +6144,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6897
6144
|
* @secure
|
|
6898
6145
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6899
6146
|
*/
|
|
6900
|
-
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any
|
|
6147
|
+
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6901
6148
|
/**
|
|
6902
6149
|
* No description
|
|
6903
6150
|
*
|
|
@@ -6908,7 +6155,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6908
6155
|
* @secure
|
|
6909
6156
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6910
6157
|
*/
|
|
6911
|
-
replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any
|
|
6158
|
+
replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6912
6159
|
/**
|
|
6913
6160
|
* No description
|
|
6914
6161
|
*
|
|
@@ -6919,7 +6166,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6919
6166
|
* @secure
|
|
6920
6167
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6921
6168
|
*/
|
|
6922
|
-
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any
|
|
6169
|
+
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6923
6170
|
/**
|
|
6924
6171
|
* No description
|
|
6925
6172
|
*
|
|
@@ -6945,7 +6192,19 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6945
6192
|
* @default 20
|
|
6946
6193
|
*/
|
|
6947
6194
|
pageSize?: number;
|
|
6948
|
-
}, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any
|
|
6195
|
+
}, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any>>;
|
|
6196
|
+
/**
|
|
6197
|
+
* No description
|
|
6198
|
+
*
|
|
6199
|
+
* @tags Encompass Recipients
|
|
6200
|
+
* @name GetUserRecipients
|
|
6201
|
+
* @request GET:/api/los/encompass/eclose/recipients
|
|
6202
|
+
* @secure
|
|
6203
|
+
* @response `200` `(EncompassRecipientItem)[]` Success
|
|
6204
|
+
* @response `401` `EncompassError` Unauthorized
|
|
6205
|
+
* @response `500` `EncompassError` Server Error
|
|
6206
|
+
*/
|
|
6207
|
+
getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any>>;
|
|
6949
6208
|
/**
|
|
6950
6209
|
* No description
|
|
6951
6210
|
*
|
|
@@ -6960,7 +6219,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6960
6219
|
* @response `404` `EncompassError` Not Found
|
|
6961
6220
|
* @response `500` `EncompassError` Server Error
|
|
6962
6221
|
*/
|
|
6963
|
-
createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any
|
|
6222
|
+
createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any>>;
|
|
6964
6223
|
/**
|
|
6965
6224
|
* No description
|
|
6966
6225
|
*
|
|
@@ -6980,7 +6239,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6980
6239
|
sortDirection?: string;
|
|
6981
6240
|
/** @default false */
|
|
6982
6241
|
includeDeleted?: boolean;
|
|
6983
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any
|
|
6242
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
6984
6243
|
/**
|
|
6985
6244
|
* No description
|
|
6986
6245
|
*
|
|
@@ -6998,7 +6257,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6998
6257
|
file?: File;
|
|
6999
6258
|
isPublic?: boolean;
|
|
7000
6259
|
bucket?: string;
|
|
7001
|
-
}, params?: RequestParams) => Promise<AxiosResponse<File, any
|
|
6260
|
+
}, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
7002
6261
|
/**
|
|
7003
6262
|
* No description
|
|
7004
6263
|
*
|
|
@@ -7009,7 +6268,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7009
6268
|
* @secure
|
|
7010
6269
|
* @response `201` `File` Created
|
|
7011
6270
|
*/
|
|
7012
|
-
getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any
|
|
6271
|
+
getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
7013
6272
|
/**
|
|
7014
6273
|
* No description
|
|
7015
6274
|
*
|
|
@@ -7021,7 +6280,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7021
6280
|
* @response `200` `string` Success
|
|
7022
6281
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7023
6282
|
*/
|
|
7024
|
-
replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any
|
|
6283
|
+
replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7025
6284
|
/**
|
|
7026
6285
|
* No description
|
|
7027
6286
|
*
|
|
@@ -7032,7 +6291,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7032
6291
|
* @secure
|
|
7033
6292
|
* @response `204` `void` No Content
|
|
7034
6293
|
*/
|
|
7035
|
-
deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
6294
|
+
deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7036
6295
|
/**
|
|
7037
6296
|
* No description
|
|
7038
6297
|
*
|
|
@@ -7050,7 +6309,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7050
6309
|
pageNumber?: number;
|
|
7051
6310
|
sortBy?: string;
|
|
7052
6311
|
sortDirection?: string;
|
|
7053
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any
|
|
6312
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
7054
6313
|
/**
|
|
7055
6314
|
* No description
|
|
7056
6315
|
*
|
|
@@ -7063,7 +6322,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7063
6322
|
*/
|
|
7064
6323
|
getForms: (query?: {
|
|
7065
6324
|
showAll?: boolean;
|
|
7066
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any
|
|
6325
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
|
|
7067
6326
|
/**
|
|
7068
6327
|
* No description
|
|
7069
6328
|
*
|
|
@@ -7075,7 +6334,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7075
6334
|
* @response `201` `Form` Created
|
|
7076
6335
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7077
6336
|
*/
|
|
7078
|
-
createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any
|
|
6337
|
+
createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
7079
6338
|
/**
|
|
7080
6339
|
* No description
|
|
7081
6340
|
*
|
|
@@ -7086,7 +6345,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7086
6345
|
* @secure
|
|
7087
6346
|
* @response `200` `Form` Success
|
|
7088
6347
|
*/
|
|
7089
|
-
getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any
|
|
6348
|
+
getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
7090
6349
|
/**
|
|
7091
6350
|
* No description
|
|
7092
6351
|
*
|
|
@@ -7098,7 +6357,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7098
6357
|
* @response `200` `Form` Success
|
|
7099
6358
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7100
6359
|
*/
|
|
7101
|
-
replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any
|
|
6360
|
+
replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
7102
6361
|
/**
|
|
7103
6362
|
* No description
|
|
7104
6363
|
*
|
|
@@ -7109,7 +6368,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7109
6368
|
* @secure
|
|
7110
6369
|
* @response `204` `void` No Content
|
|
7111
6370
|
*/
|
|
7112
|
-
deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
6371
|
+
deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7113
6372
|
/**
|
|
7114
6373
|
* No description
|
|
7115
6374
|
*
|
|
@@ -7120,7 +6379,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7120
6379
|
* @secure
|
|
7121
6380
|
* @response `200` `Form` Success
|
|
7122
6381
|
*/
|
|
7123
|
-
restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any
|
|
6382
|
+
restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
7124
6383
|
/**
|
|
7125
6384
|
* No description
|
|
7126
6385
|
*
|
|
@@ -7135,7 +6394,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7135
6394
|
/** @format binary */
|
|
7136
6395
|
file?: File;
|
|
7137
6396
|
name?: string;
|
|
7138
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any
|
|
6397
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any>>;
|
|
7139
6398
|
/**
|
|
7140
6399
|
* No description
|
|
7141
6400
|
*
|
|
@@ -7146,7 +6405,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7146
6405
|
* @secure
|
|
7147
6406
|
* @response `204` `void` No Content
|
|
7148
6407
|
*/
|
|
7149
|
-
deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
6408
|
+
deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7150
6409
|
/**
|
|
7151
6410
|
* No description
|
|
7152
6411
|
*
|
|
@@ -7160,7 +6419,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7160
6419
|
downloadFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, query?: {
|
|
7161
6420
|
/** @format uuid */
|
|
7162
6421
|
siteConfigurationId?: string;
|
|
7163
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any
|
|
6422
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any>>;
|
|
7164
6423
|
/**
|
|
7165
6424
|
* No description
|
|
7166
6425
|
*
|
|
@@ -7178,7 +6437,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7178
6437
|
pageNumber?: number;
|
|
7179
6438
|
sortBy?: string;
|
|
7180
6439
|
sortDirection?: string;
|
|
7181
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any
|
|
6440
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
7182
6441
|
/**
|
|
7183
6442
|
* No description
|
|
7184
6443
|
*
|
|
@@ -7191,7 +6450,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7191
6450
|
*/
|
|
7192
6451
|
createFormSubmission: (data: FormSubmissionRequest, query?: {
|
|
7193
6452
|
formID?: string;
|
|
7194
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any
|
|
6453
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
7195
6454
|
/**
|
|
7196
6455
|
* No description
|
|
7197
6456
|
*
|
|
@@ -7202,7 +6461,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7202
6461
|
* @secure
|
|
7203
6462
|
* @response `200` `FormSubmission` Success
|
|
7204
6463
|
*/
|
|
7205
|
-
getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any
|
|
6464
|
+
getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
7206
6465
|
/**
|
|
7207
6466
|
* No description
|
|
7208
6467
|
*
|
|
@@ -7213,7 +6472,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7213
6472
|
* @secure
|
|
7214
6473
|
* @response `200` `FormSubmission` Success
|
|
7215
6474
|
*/
|
|
7216
|
-
replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any
|
|
6475
|
+
replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
7217
6476
|
/**
|
|
7218
6477
|
* No description
|
|
7219
6478
|
*
|
|
@@ -7224,7 +6483,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7224
6483
|
* @secure
|
|
7225
6484
|
* @response `204` `void` No Content
|
|
7226
6485
|
*/
|
|
7227
|
-
deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
6486
|
+
deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7228
6487
|
/**
|
|
7229
6488
|
* No description
|
|
7230
6489
|
*
|
|
@@ -7242,7 +6501,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7242
6501
|
pageNumber?: number;
|
|
7243
6502
|
sortBy?: string;
|
|
7244
6503
|
sortDirection?: string;
|
|
7245
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any
|
|
6504
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
7246
6505
|
/**
|
|
7247
6506
|
* No description
|
|
7248
6507
|
*
|
|
@@ -7253,7 +6512,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7253
6512
|
* @secure
|
|
7254
6513
|
* @response `200` `(FormVersion)[]` Success
|
|
7255
6514
|
*/
|
|
7256
|
-
getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any
|
|
6515
|
+
getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any>>;
|
|
7257
6516
|
/**
|
|
7258
6517
|
* No description
|
|
7259
6518
|
*
|
|
@@ -7264,7 +6523,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7264
6523
|
* @secure
|
|
7265
6524
|
* @response `200` `FormVersion` Success
|
|
7266
6525
|
*/
|
|
7267
|
-
createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any
|
|
6526
|
+
createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
7268
6527
|
/**
|
|
7269
6528
|
* No description
|
|
7270
6529
|
*
|
|
@@ -7275,7 +6534,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7275
6534
|
* @secure
|
|
7276
6535
|
* @response `200` `FormVersion` Success
|
|
7277
6536
|
*/
|
|
7278
|
-
getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any
|
|
6537
|
+
getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
7279
6538
|
/**
|
|
7280
6539
|
* No description
|
|
7281
6540
|
*
|
|
@@ -7286,7 +6545,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7286
6545
|
* @secure
|
|
7287
6546
|
* @response `200` `FormVersion` Success
|
|
7288
6547
|
*/
|
|
7289
|
-
replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any
|
|
6548
|
+
replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
7290
6549
|
/**
|
|
7291
6550
|
* No description
|
|
7292
6551
|
*
|
|
@@ -7297,7 +6556,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7297
6556
|
* @secure
|
|
7298
6557
|
* @response `200` `FormVersion` Success
|
|
7299
6558
|
*/
|
|
7300
|
-
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any
|
|
6559
|
+
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
7301
6560
|
/**
|
|
7302
6561
|
* No description
|
|
7303
6562
|
*
|
|
@@ -7308,7 +6567,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7308
6567
|
* @secure
|
|
7309
6568
|
* @response `200` `Record<string,any>` Success
|
|
7310
6569
|
*/
|
|
7311
|
-
getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any
|
|
6570
|
+
getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any>>;
|
|
7312
6571
|
/**
|
|
7313
6572
|
* No description
|
|
7314
6573
|
*
|
|
@@ -7321,7 +6580,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7321
6580
|
* @response `200` `string` Success
|
|
7322
6581
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7323
6582
|
*/
|
|
7324
|
-
updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any
|
|
6583
|
+
updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7325
6584
|
/**
|
|
7326
6585
|
* No description
|
|
7327
6586
|
*
|
|
@@ -7332,7 +6591,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7332
6591
|
* @secure
|
|
7333
6592
|
* @response `200` `GetReport` Success
|
|
7334
6593
|
*/
|
|
7335
|
-
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any
|
|
6594
|
+
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any>>;
|
|
7336
6595
|
/**
|
|
7337
6596
|
* No description
|
|
7338
6597
|
*
|
|
@@ -7349,7 +6608,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7349
6608
|
createLoan: (data: any, query?: {
|
|
7350
6609
|
/** @default false */
|
|
7351
6610
|
isPatch?: boolean;
|
|
7352
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string, any
|
|
6611
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7353
6612
|
/**
|
|
7354
6613
|
* No description
|
|
7355
6614
|
*
|
|
@@ -7365,7 +6624,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7365
6624
|
createLoanInternal: (data: any, query?: {
|
|
7366
6625
|
/** @default false */
|
|
7367
6626
|
isPatch?: boolean;
|
|
7368
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string, any
|
|
6627
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7369
6628
|
/**
|
|
7370
6629
|
* No description
|
|
7371
6630
|
*
|
|
@@ -7377,7 +6636,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7377
6636
|
* @response `200` `string` Success
|
|
7378
6637
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7379
6638
|
*/
|
|
7380
|
-
updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any
|
|
6639
|
+
updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7381
6640
|
/**
|
|
7382
6641
|
* No description
|
|
7383
6642
|
*
|
|
@@ -7390,7 +6649,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7390
6649
|
* @response `202` `string` Accepted
|
|
7391
6650
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7392
6651
|
*/
|
|
7393
|
-
updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any
|
|
6652
|
+
updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7394
6653
|
/**
|
|
7395
6654
|
* No description
|
|
7396
6655
|
*
|
|
@@ -7401,7 +6660,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7401
6660
|
* @secure
|
|
7402
6661
|
* @response `200` `(DocumentData)[]` Success
|
|
7403
6662
|
*/
|
|
7404
|
-
getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any
|
|
6663
|
+
getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any>>;
|
|
7405
6664
|
/**
|
|
7406
6665
|
* No description
|
|
7407
6666
|
*
|
|
@@ -7415,7 +6674,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7415
6674
|
getLoanDocumentContent: (loanId: string, documentId: string, query?: {
|
|
7416
6675
|
/** @default "base64" */
|
|
7417
6676
|
contentType?: string;
|
|
7418
|
-
}, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
6677
|
+
}, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7419
6678
|
/**
|
|
7420
6679
|
* No description
|
|
7421
6680
|
*
|
|
@@ -7426,7 +6685,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7426
6685
|
* @secure
|
|
7427
6686
|
* @response `204` `void` No Content
|
|
7428
6687
|
*/
|
|
7429
|
-
getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
6688
|
+
getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7430
6689
|
/**
|
|
7431
6690
|
* No description
|
|
7432
6691
|
*
|
|
@@ -7437,7 +6696,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7437
6696
|
* @secure
|
|
7438
6697
|
* @response `200` `(PreliminaryCondition)[]` Success
|
|
7439
6698
|
*/
|
|
7440
|
-
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any
|
|
6699
|
+
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any>>;
|
|
7441
6700
|
/**
|
|
7442
6701
|
* No description
|
|
7443
6702
|
*
|
|
@@ -7448,7 +6707,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7448
6707
|
* @secure
|
|
7449
6708
|
* @response `200` `(UnderwritingCondition)[]` Success
|
|
7450
6709
|
*/
|
|
7451
|
-
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any
|
|
6710
|
+
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any>>;
|
|
7452
6711
|
/**
|
|
7453
6712
|
* No description
|
|
7454
6713
|
*
|
|
@@ -7459,7 +6718,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7459
6718
|
* @secure
|
|
7460
6719
|
* @response `200` `string` Success
|
|
7461
6720
|
*/
|
|
7462
|
-
getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any
|
|
6721
|
+
getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7463
6722
|
/**
|
|
7464
6723
|
* No description
|
|
7465
6724
|
*
|
|
@@ -7471,7 +6730,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7471
6730
|
* @secure
|
|
7472
6731
|
* @response `200` `DocumentDataRequest` Success
|
|
7473
6732
|
*/
|
|
7474
|
-
createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any
|
|
6733
|
+
createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
|
|
7475
6734
|
/**
|
|
7476
6735
|
* No description
|
|
7477
6736
|
*
|
|
@@ -7488,7 +6747,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7488
6747
|
createEditDraftForLoan: (loanId: string, query?: {
|
|
7489
6748
|
/** @default false */
|
|
7490
6749
|
isCoBorrower?: boolean;
|
|
7491
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Draft, any
|
|
6750
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7492
6751
|
/**
|
|
7493
6752
|
* No description
|
|
7494
6753
|
*
|
|
@@ -7504,7 +6763,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7504
6763
|
file?: File;
|
|
7505
6764
|
/** @format int32 */
|
|
7506
6765
|
weight?: number;
|
|
7507
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any
|
|
6766
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
|
|
7508
6767
|
/**
|
|
7509
6768
|
* No description
|
|
7510
6769
|
*
|
|
@@ -7515,7 +6774,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7515
6774
|
* @secure
|
|
7516
6775
|
* @response `200` `ListingFile` Success
|
|
7517
6776
|
*/
|
|
7518
|
-
updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any
|
|
6777
|
+
updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
|
|
7519
6778
|
/**
|
|
7520
6779
|
* No description
|
|
7521
6780
|
*
|
|
@@ -7526,7 +6785,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7526
6785
|
* @secure
|
|
7527
6786
|
* @response `204` `Listing` No Content
|
|
7528
6787
|
*/
|
|
7529
|
-
removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any
|
|
6788
|
+
removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7530
6789
|
/**
|
|
7531
6790
|
* No description
|
|
7532
6791
|
*
|
|
@@ -7544,7 +6803,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7544
6803
|
file?: File;
|
|
7545
6804
|
/** @format int32 */
|
|
7546
6805
|
weight?: number;
|
|
7547
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any
|
|
6806
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any>>;
|
|
7548
6807
|
/**
|
|
7549
6808
|
* No description
|
|
7550
6809
|
*
|
|
@@ -7555,7 +6814,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7555
6814
|
* @secure
|
|
7556
6815
|
* @response `200` `(ListingPhoto)[]` Success
|
|
7557
6816
|
*/
|
|
7558
|
-
updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any
|
|
6817
|
+
updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any>>;
|
|
7559
6818
|
/**
|
|
7560
6819
|
* No description
|
|
7561
6820
|
*
|
|
@@ -7566,7 +6825,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7566
6825
|
* @secure
|
|
7567
6826
|
* @response `204` `Listing` No Content
|
|
7568
6827
|
*/
|
|
7569
|
-
removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any
|
|
6828
|
+
removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7570
6829
|
/**
|
|
7571
6830
|
* No description
|
|
7572
6831
|
*
|
|
@@ -7584,7 +6843,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7584
6843
|
pageNumber?: number;
|
|
7585
6844
|
sortBy?: string;
|
|
7586
6845
|
sortDirection?: string;
|
|
7587
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any
|
|
6846
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
7588
6847
|
/**
|
|
7589
6848
|
* No description
|
|
7590
6849
|
*
|
|
@@ -7595,7 +6854,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7595
6854
|
* @secure
|
|
7596
6855
|
* @response `201` `Listing` Created
|
|
7597
6856
|
*/
|
|
7598
|
-
createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any
|
|
6857
|
+
createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7599
6858
|
/**
|
|
7600
6859
|
* No description
|
|
7601
6860
|
*
|
|
@@ -7606,7 +6865,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7606
6865
|
* @secure
|
|
7607
6866
|
* @response `200` `Listing` Success
|
|
7608
6867
|
*/
|
|
7609
|
-
getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any
|
|
6868
|
+
getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7610
6869
|
/**
|
|
7611
6870
|
* No description
|
|
7612
6871
|
*
|
|
@@ -7617,7 +6876,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7617
6876
|
* @secure
|
|
7618
6877
|
* @response `200` `Listing` Success
|
|
7619
6878
|
*/
|
|
7620
|
-
getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any
|
|
6879
|
+
getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7621
6880
|
/**
|
|
7622
6881
|
* No description
|
|
7623
6882
|
*
|
|
@@ -7628,7 +6887,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7628
6887
|
* @secure
|
|
7629
6888
|
* @response `200` `Listing` Success
|
|
7630
6889
|
*/
|
|
7631
|
-
replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any
|
|
6890
|
+
replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7632
6891
|
/**
|
|
7633
6892
|
* No description
|
|
7634
6893
|
*
|
|
@@ -7639,7 +6898,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7639
6898
|
* @secure
|
|
7640
6899
|
* @response `204` `void` No Content
|
|
7641
6900
|
*/
|
|
7642
|
-
deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
6901
|
+
deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7643
6902
|
/**
|
|
7644
6903
|
* No description
|
|
7645
6904
|
*
|
|
@@ -7657,7 +6916,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7657
6916
|
pageNumber?: number;
|
|
7658
6917
|
sortBy?: string;
|
|
7659
6918
|
sortDirection?: string;
|
|
7660
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any
|
|
6919
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
7661
6920
|
/**
|
|
7662
6921
|
* No description
|
|
7663
6922
|
*
|
|
@@ -7671,7 +6930,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7671
6930
|
updateListingBackgroundImage: (id: string, data: {
|
|
7672
6931
|
/** @format binary */
|
|
7673
6932
|
file?: File;
|
|
7674
|
-
}, params?: RequestParams) => Promise<AxiosResponse<File, any
|
|
6933
|
+
}, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
7675
6934
|
/**
|
|
7676
6935
|
* No description
|
|
7677
6936
|
*
|
|
@@ -7682,7 +6941,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7682
6941
|
* @secure
|
|
7683
6942
|
* @response `204` `void` No Content
|
|
7684
6943
|
*/
|
|
7685
|
-
deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
6944
|
+
deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7686
6945
|
/**
|
|
7687
6946
|
* No description
|
|
7688
6947
|
*
|
|
@@ -7693,7 +6952,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7693
6952
|
* @secure
|
|
7694
6953
|
* @response `200` `File` Success
|
|
7695
6954
|
*/
|
|
7696
|
-
getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any
|
|
6955
|
+
getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
7697
6956
|
/**
|
|
7698
6957
|
* No description
|
|
7699
6958
|
*
|
|
@@ -7704,7 +6963,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7704
6963
|
* @secure
|
|
7705
6964
|
* @response `200` `RunLOCalculation` Success
|
|
7706
6965
|
*/
|
|
7707
|
-
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any
|
|
6966
|
+
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
7708
6967
|
/**
|
|
7709
6968
|
* No description
|
|
7710
6969
|
*
|
|
@@ -7717,7 +6976,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7717
6976
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7718
6977
|
* @response `423` `UnprocessableEntity` Client Error
|
|
7719
6978
|
*/
|
|
7720
|
-
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any
|
|
6979
|
+
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
7721
6980
|
/**
|
|
7722
6981
|
* No description
|
|
7723
6982
|
*
|
|
@@ -7728,7 +6987,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7728
6987
|
* @secure
|
|
7729
6988
|
* @response `200` `LoanComparison` Success
|
|
7730
6989
|
*/
|
|
7731
|
-
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any
|
|
6990
|
+
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any>>;
|
|
7732
6991
|
/**
|
|
7733
6992
|
* No description
|
|
7734
6993
|
*
|
|
@@ -7741,7 +7000,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7741
7000
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7742
7001
|
* @response `423` `UnprocessableEntity` Client Error
|
|
7743
7002
|
*/
|
|
7744
|
-
createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any
|
|
7003
|
+
createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any>>;
|
|
7745
7004
|
/**
|
|
7746
7005
|
* No description
|
|
7747
7006
|
*
|
|
@@ -7752,7 +7011,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7752
7011
|
* @secure
|
|
7753
7012
|
* @response `204` `void` No Content
|
|
7754
7013
|
*/
|
|
7755
|
-
deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7014
|
+
deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7756
7015
|
/**
|
|
7757
7016
|
* No description
|
|
7758
7017
|
*
|
|
@@ -7764,7 +7023,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7764
7023
|
* @response `204` `void` No Content
|
|
7765
7024
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7766
7025
|
*/
|
|
7767
|
-
createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7026
|
+
createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7768
7027
|
/**
|
|
7769
7028
|
* No description
|
|
7770
7029
|
*
|
|
@@ -7775,7 +7034,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7775
7034
|
* @secure
|
|
7776
7035
|
* @response `200` `(string)[]` Success
|
|
7777
7036
|
*/
|
|
7778
|
-
getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any
|
|
7037
|
+
getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
7779
7038
|
/**
|
|
7780
7039
|
* No description
|
|
7781
7040
|
*
|
|
@@ -7786,7 +7045,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7786
7045
|
* @secure
|
|
7787
7046
|
* @response `201` `(string)[]` Created
|
|
7788
7047
|
*/
|
|
7789
|
-
createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any
|
|
7048
|
+
createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
7790
7049
|
/**
|
|
7791
7050
|
* No description
|
|
7792
7051
|
*
|
|
@@ -7801,7 +7060,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7801
7060
|
getLoanDocument: (loanId: string, documentId: string, query?: {
|
|
7802
7061
|
/** @default false */
|
|
7803
7062
|
preview?: boolean;
|
|
7804
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any
|
|
7063
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7805
7064
|
/**
|
|
7806
7065
|
* No description
|
|
7807
7066
|
*
|
|
@@ -7819,7 +7078,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7819
7078
|
pageNumber?: number;
|
|
7820
7079
|
sortBy?: string;
|
|
7821
7080
|
sortDirection?: string;
|
|
7822
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any
|
|
7081
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any>>;
|
|
7823
7082
|
/**
|
|
7824
7083
|
* @description Returns all documents grouped by folder for sidebar display. Use folderNamesOnly=true to get simplified response with folder names and counts for mobile (Files array will be empty).
|
|
7825
7084
|
*
|
|
@@ -7833,7 +7092,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7833
7092
|
getLoanDocumentFolders: (loanId: string, data: DocumentFoldersRequest, query?: {
|
|
7834
7093
|
/** @default false */
|
|
7835
7094
|
folderNamesOnly?: boolean;
|
|
7836
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any
|
|
7095
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any>>;
|
|
7837
7096
|
/**
|
|
7838
7097
|
* No description
|
|
7839
7098
|
*
|
|
@@ -7842,10 +7101,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7842
7101
|
* @summary Download By ID
|
|
7843
7102
|
* @request GET:/api/loans/{loanId}/documents/{documentId}/download
|
|
7844
7103
|
* @secure
|
|
7845
|
-
* @response `200` `
|
|
7104
|
+
* @response `200` `Blob` Success
|
|
7846
7105
|
* @response `404` `ProblemDetails` Not Found
|
|
7847
7106
|
*/
|
|
7848
|
-
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
7107
|
+
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<Blob, any>>;
|
|
7849
7108
|
/**
|
|
7850
7109
|
* No description
|
|
7851
7110
|
*
|
|
@@ -7863,7 +7122,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7863
7122
|
/** @format binary */
|
|
7864
7123
|
file?: File;
|
|
7865
7124
|
bucket?: string;
|
|
7866
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any
|
|
7125
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7867
7126
|
/**
|
|
7868
7127
|
* No description
|
|
7869
7128
|
*
|
|
@@ -7876,7 +7135,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7876
7135
|
* @response `404` `ProblemDetails` Not Found
|
|
7877
7136
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7878
7137
|
*/
|
|
7879
|
-
retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any
|
|
7138
|
+
retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7880
7139
|
/**
|
|
7881
7140
|
* No description
|
|
7882
7141
|
*
|
|
@@ -7887,7 +7146,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7887
7146
|
* @secure
|
|
7888
7147
|
* @response `200` `DocumentDataRequest` Success
|
|
7889
7148
|
*/
|
|
7890
|
-
generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any
|
|
7149
|
+
generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
|
|
7891
7150
|
/**
|
|
7892
7151
|
* No description
|
|
7893
7152
|
*
|
|
@@ -7900,7 +7159,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7900
7159
|
* @response `400` `ProblemDetails` Bad Request
|
|
7901
7160
|
* @response `404` `ProblemDetails` Not Found
|
|
7902
7161
|
*/
|
|
7903
|
-
sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7162
|
+
sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7904
7163
|
/**
|
|
7905
7164
|
* @description Fetches all documents from Encompass that don't exist locally and stores them in S3
|
|
7906
7165
|
*
|
|
@@ -7912,7 +7171,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7912
7171
|
* @response `200` `DocumentSync` Success
|
|
7913
7172
|
* @response `404` `ProblemDetails` Not Found
|
|
7914
7173
|
*/
|
|
7915
|
-
syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any
|
|
7174
|
+
syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any>>;
|
|
7916
7175
|
/**
|
|
7917
7176
|
* @description Re-attempts to push a failed document to LOS
|
|
7918
7177
|
*
|
|
@@ -7925,7 +7184,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7925
7184
|
* @response `404` `ProblemDetails` Not Found
|
|
7926
7185
|
* @response `423` `ProblemDetails` Client Error
|
|
7927
7186
|
*/
|
|
7928
|
-
retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7187
|
+
retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7929
7188
|
/**
|
|
7930
7189
|
* No description
|
|
7931
7190
|
*
|
|
@@ -7936,7 +7195,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7936
7195
|
* @secure
|
|
7937
7196
|
* @response `201` `Draft` Created
|
|
7938
7197
|
*/
|
|
7939
|
-
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any
|
|
7198
|
+
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7940
7199
|
/**
|
|
7941
7200
|
* No description
|
|
7942
7201
|
*
|
|
@@ -7947,7 +7206,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7947
7206
|
* @secure
|
|
7948
7207
|
* @response `200` `(DraftContent)[]` Success
|
|
7949
7208
|
*/
|
|
7950
|
-
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any
|
|
7209
|
+
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any>>;
|
|
7951
7210
|
/**
|
|
7952
7211
|
* No description
|
|
7953
7212
|
*
|
|
@@ -7958,7 +7217,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7958
7217
|
* @secure
|
|
7959
7218
|
* @response `200` `DraftContent` Success
|
|
7960
7219
|
*/
|
|
7961
|
-
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any
|
|
7220
|
+
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any>>;
|
|
7962
7221
|
/**
|
|
7963
7222
|
* No description
|
|
7964
7223
|
*
|
|
@@ -7969,7 +7228,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7969
7228
|
* @secure
|
|
7970
7229
|
* @response `200` `Draft` Success
|
|
7971
7230
|
*/
|
|
7972
|
-
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any
|
|
7231
|
+
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7973
7232
|
/**
|
|
7974
7233
|
* No description
|
|
7975
7234
|
*
|
|
@@ -7980,7 +7239,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7980
7239
|
* @secure
|
|
7981
7240
|
* @response `204` `void` No Content
|
|
7982
7241
|
*/
|
|
7983
|
-
deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7242
|
+
deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7984
7243
|
/**
|
|
7985
7244
|
* No description
|
|
7986
7245
|
*
|
|
@@ -7998,7 +7257,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7998
7257
|
pageNumber?: number;
|
|
7999
7258
|
sortBy?: string;
|
|
8000
7259
|
sortDirection?: string;
|
|
8001
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any
|
|
7260
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any>>;
|
|
8002
7261
|
/**
|
|
8003
7262
|
* No description
|
|
8004
7263
|
*
|
|
@@ -8009,7 +7268,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8009
7268
|
* @secure
|
|
8010
7269
|
* @response `200` `Draft` Success
|
|
8011
7270
|
*/
|
|
8012
|
-
reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any
|
|
7271
|
+
reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
8013
7272
|
/**
|
|
8014
7273
|
* No description
|
|
8015
7274
|
*
|
|
@@ -8020,7 +7279,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8020
7279
|
* @secure
|
|
8021
7280
|
* @response `200` `Draft` Success
|
|
8022
7281
|
*/
|
|
8023
|
-
restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any
|
|
7282
|
+
restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
8024
7283
|
/**
|
|
8025
7284
|
* No description
|
|
8026
7285
|
*
|
|
@@ -8040,7 +7299,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8040
7299
|
pageNumber?: number;
|
|
8041
7300
|
sortBy?: string;
|
|
8042
7301
|
sortDirection?: string;
|
|
8043
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any
|
|
7302
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any>>;
|
|
8044
7303
|
/**
|
|
8045
7304
|
* No description
|
|
8046
7305
|
*
|
|
@@ -8051,7 +7310,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8051
7310
|
* @secure
|
|
8052
7311
|
* @response `201` `LoanImport` Created
|
|
8053
7312
|
*/
|
|
8054
|
-
createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any
|
|
7313
|
+
createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
|
|
8055
7314
|
/**
|
|
8056
7315
|
* No description
|
|
8057
7316
|
*
|
|
@@ -8062,7 +7321,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8062
7321
|
* @secure
|
|
8063
7322
|
* @response `200` `LoanImport` Success
|
|
8064
7323
|
*/
|
|
8065
|
-
getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any
|
|
7324
|
+
getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
|
|
8066
7325
|
/**
|
|
8067
7326
|
* No description
|
|
8068
7327
|
*
|
|
@@ -8080,7 +7339,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8080
7339
|
pageNumber?: number;
|
|
8081
7340
|
sortBy?: string;
|
|
8082
7341
|
sortDirection?: string;
|
|
8083
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any
|
|
7342
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any>>;
|
|
8084
7343
|
/**
|
|
8085
7344
|
* No description
|
|
8086
7345
|
*
|
|
@@ -8092,7 +7351,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8092
7351
|
* @response `200` `(Invite)[]` Success
|
|
8093
7352
|
* @response `404` `ProblemDetails` Not Found
|
|
8094
7353
|
*/
|
|
8095
|
-
getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any
|
|
7354
|
+
getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
|
|
8096
7355
|
/**
|
|
8097
7356
|
* No description
|
|
8098
7357
|
*
|
|
@@ -8104,7 +7363,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8104
7363
|
* @response `200` `(Invite)[]` Success
|
|
8105
7364
|
* @response `404` `ProblemDetails` Not Found
|
|
8106
7365
|
*/
|
|
8107
|
-
inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any
|
|
7366
|
+
inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
|
|
8108
7367
|
/**
|
|
8109
7368
|
* No description
|
|
8110
7369
|
*
|
|
@@ -8122,7 +7381,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8122
7381
|
pageNumber?: number;
|
|
8123
7382
|
sortBy?: string;
|
|
8124
7383
|
sortDirection?: string;
|
|
8125
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any
|
|
7384
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any>>;
|
|
8126
7385
|
/**
|
|
8127
7386
|
* No description
|
|
8128
7387
|
*
|
|
@@ -8134,7 +7393,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8134
7393
|
* @response `200` `LoanLogDetail` Success
|
|
8135
7394
|
* @response `404` `ProblemDetails` Not Found
|
|
8136
7395
|
*/
|
|
8137
|
-
getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any
|
|
7396
|
+
getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any>>;
|
|
8138
7397
|
/**
|
|
8139
7398
|
* No description
|
|
8140
7399
|
*
|
|
@@ -8153,7 +7412,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8153
7412
|
pageNumber?: number;
|
|
8154
7413
|
sortBy?: string;
|
|
8155
7414
|
sortDirection?: string;
|
|
8156
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any
|
|
7415
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
8157
7416
|
/**
|
|
8158
7417
|
* No description
|
|
8159
7418
|
*
|
|
@@ -8171,7 +7430,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8171
7430
|
pageNumber?: number;
|
|
8172
7431
|
sortBy?: string;
|
|
8173
7432
|
sortDirection?: string;
|
|
8174
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any
|
|
7433
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
8175
7434
|
/**
|
|
8176
7435
|
* No description
|
|
8177
7436
|
*
|
|
@@ -8182,7 +7441,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8182
7441
|
* @secure
|
|
8183
7442
|
* @response `200` `BranchUser` Success
|
|
8184
7443
|
*/
|
|
8185
|
-
getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any
|
|
7444
|
+
getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
|
|
8186
7445
|
/**
|
|
8187
7446
|
* No description
|
|
8188
7447
|
*
|
|
@@ -8194,7 +7453,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8194
7453
|
* @response `200` `SiteConfiguration` Success
|
|
8195
7454
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8196
7455
|
*/
|
|
8197
|
-
createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
7456
|
+
createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8198
7457
|
/**
|
|
8199
7458
|
* No description
|
|
8200
7459
|
*
|
|
@@ -8205,7 +7464,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8205
7464
|
* @secure
|
|
8206
7465
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
8207
7466
|
*/
|
|
8208
|
-
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any
|
|
7467
|
+
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
8209
7468
|
/**
|
|
8210
7469
|
* No description
|
|
8211
7470
|
*
|
|
@@ -8219,7 +7478,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8219
7478
|
*/
|
|
8220
7479
|
replaceLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
8221
7480
|
applyToChildren?: boolean;
|
|
8222
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
7481
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8223
7482
|
/**
|
|
8224
7483
|
* No description
|
|
8225
7484
|
*
|
|
@@ -8237,7 +7496,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8237
7496
|
pageNumber?: number;
|
|
8238
7497
|
sortBy?: string;
|
|
8239
7498
|
sortDirection?: string;
|
|
8240
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any
|
|
7499
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any>>;
|
|
8241
7500
|
/**
|
|
8242
7501
|
* No description
|
|
8243
7502
|
*
|
|
@@ -8249,7 +7508,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8249
7508
|
* @response `200` `any` Success
|
|
8250
7509
|
* @response `404` `ProblemDetails` Not Found
|
|
8251
7510
|
*/
|
|
8252
|
-
getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any
|
|
7511
|
+
getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
8253
7512
|
/**
|
|
8254
7513
|
* No description
|
|
8255
7514
|
*
|
|
@@ -8261,7 +7520,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8261
7520
|
* @response `200` `LoanQueueWithData` Success
|
|
8262
7521
|
* @response `404` `ProblemDetails` Not Found
|
|
8263
7522
|
*/
|
|
8264
|
-
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any
|
|
7523
|
+
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any>>;
|
|
8265
7524
|
/**
|
|
8266
7525
|
* No description
|
|
8267
7526
|
*
|
|
@@ -8273,7 +7532,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8273
7532
|
* @response `204` `void` No Content
|
|
8274
7533
|
* @response `404` `ProblemDetails` Not Found
|
|
8275
7534
|
*/
|
|
8276
|
-
deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7535
|
+
deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8277
7536
|
/**
|
|
8278
7537
|
* No description
|
|
8279
7538
|
*
|
|
@@ -8285,7 +7544,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8285
7544
|
* @response `204` `void` No Content
|
|
8286
7545
|
* @response `404` `ProblemDetails` Not Found
|
|
8287
7546
|
*/
|
|
8288
|
-
retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7547
|
+
retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8289
7548
|
/**
|
|
8290
7549
|
* No description
|
|
8291
7550
|
*
|
|
@@ -8297,7 +7556,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8297
7556
|
* @response `200` `Loan` Success
|
|
8298
7557
|
* @response `404` `ProblemDetails` Not Found
|
|
8299
7558
|
*/
|
|
8300
|
-
getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any
|
|
7559
|
+
getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
8301
7560
|
/**
|
|
8302
7561
|
* No description
|
|
8303
7562
|
*
|
|
@@ -8308,7 +7567,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8308
7567
|
* @secure
|
|
8309
7568
|
* @response `200` `GetApplications` Success
|
|
8310
7569
|
*/
|
|
8311
|
-
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any
|
|
7570
|
+
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any>>;
|
|
8312
7571
|
/**
|
|
8313
7572
|
* No description
|
|
8314
7573
|
*
|
|
@@ -8322,7 +7581,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8322
7581
|
* @response `401` `ProblemDetails` Unauthorized
|
|
8323
7582
|
* @response `403` `ProblemDetails` Forbidden
|
|
8324
7583
|
*/
|
|
8325
|
-
createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any
|
|
7584
|
+
createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any>>;
|
|
8326
7585
|
/**
|
|
8327
7586
|
* No description
|
|
8328
7587
|
*
|
|
@@ -8340,7 +7599,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8340
7599
|
pageNumber?: number;
|
|
8341
7600
|
sortBy?: string;
|
|
8342
7601
|
sortDirection?: string;
|
|
8343
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any
|
|
7602
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any>>;
|
|
8344
7603
|
/**
|
|
8345
7604
|
* No description
|
|
8346
7605
|
*
|
|
@@ -8356,7 +7615,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8356
7615
|
* @response `404` `ProblemDetails` Not Found
|
|
8357
7616
|
* @response `409` `any` Conflict
|
|
8358
7617
|
*/
|
|
8359
|
-
updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any
|
|
7618
|
+
updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
8360
7619
|
/**
|
|
8361
7620
|
* No description
|
|
8362
7621
|
*
|
|
@@ -8369,7 +7628,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8369
7628
|
* @response `400` `ProblemDetails` Bad Request
|
|
8370
7629
|
* @response `404` `ProblemDetails` Not Found
|
|
8371
7630
|
*/
|
|
8372
|
-
completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7631
|
+
completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8373
7632
|
/**
|
|
8374
7633
|
* No description
|
|
8375
7634
|
*
|
|
@@ -8380,7 +7639,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8380
7639
|
* @secure
|
|
8381
7640
|
* @response `200` `Loan` Success
|
|
8382
7641
|
*/
|
|
8383
|
-
importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any
|
|
7642
|
+
importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
8384
7643
|
/**
|
|
8385
7644
|
* No description
|
|
8386
7645
|
*
|
|
@@ -8392,7 +7651,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8392
7651
|
* @response `202` `void` Accepted
|
|
8393
7652
|
* @response `404` `ProblemDetails` Not Found
|
|
8394
7653
|
*/
|
|
8395
|
-
syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7654
|
+
syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8396
7655
|
/**
|
|
8397
7656
|
* No description
|
|
8398
7657
|
*
|
|
@@ -8411,7 +7670,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8411
7670
|
pageNumber?: number;
|
|
8412
7671
|
sortBy?: string;
|
|
8413
7672
|
sortDirection?: string;
|
|
8414
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any
|
|
7673
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any>>;
|
|
8415
7674
|
/**
|
|
8416
7675
|
* No description
|
|
8417
7676
|
*
|
|
@@ -8423,7 +7682,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8423
7682
|
* @response `200` `TaskComment` Success
|
|
8424
7683
|
* @response `404` `ProblemDetails` Not Found
|
|
8425
7684
|
*/
|
|
8426
|
-
getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any
|
|
7685
|
+
getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
8427
7686
|
/**
|
|
8428
7687
|
* No description
|
|
8429
7688
|
*
|
|
@@ -8435,7 +7694,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8435
7694
|
* @response `201` `TaskComment` Created
|
|
8436
7695
|
* @response `404` `ProblemDetails` Not Found
|
|
8437
7696
|
*/
|
|
8438
|
-
createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any
|
|
7697
|
+
createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
8439
7698
|
/**
|
|
8440
7699
|
* No description
|
|
8441
7700
|
*
|
|
@@ -8447,7 +7706,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8447
7706
|
* @response `200` `TaskComment` Success
|
|
8448
7707
|
* @response `404` `ProblemDetails` Not Found
|
|
8449
7708
|
*/
|
|
8450
|
-
replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any
|
|
7709
|
+
replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
8451
7710
|
/**
|
|
8452
7711
|
* No description
|
|
8453
7712
|
*
|
|
@@ -8459,7 +7718,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8459
7718
|
* @response `204` `void` No Content
|
|
8460
7719
|
* @response `404` `ProblemDetails` Not Found
|
|
8461
7720
|
*/
|
|
8462
|
-
deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7721
|
+
deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8463
7722
|
/**
|
|
8464
7723
|
* No description
|
|
8465
7724
|
*
|
|
@@ -8477,7 +7736,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8477
7736
|
/** @format binary */
|
|
8478
7737
|
file?: File;
|
|
8479
7738
|
bucket?: string;
|
|
8480
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any
|
|
7739
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8481
7740
|
/**
|
|
8482
7741
|
* No description
|
|
8483
7742
|
*
|
|
@@ -8489,7 +7748,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8489
7748
|
* @response `204` `UserLoanTask` No Content
|
|
8490
7749
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8491
7750
|
*/
|
|
8492
|
-
createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any
|
|
7751
|
+
createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8493
7752
|
/**
|
|
8494
7753
|
* No description
|
|
8495
7754
|
*
|
|
@@ -8501,7 +7760,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8501
7760
|
* @response `200` `(UserLoanTask)[]` Success
|
|
8502
7761
|
* @response `404` `ProblemDetails` Not Found
|
|
8503
7762
|
*/
|
|
8504
|
-
getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any
|
|
7763
|
+
getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
8505
7764
|
/**
|
|
8506
7765
|
* No description
|
|
8507
7766
|
*
|
|
@@ -8513,7 +7772,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8513
7772
|
* @response `200` `UserLoanTask` Success
|
|
8514
7773
|
* @response `404` `ProblemDetails` Not Found
|
|
8515
7774
|
*/
|
|
8516
|
-
getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any
|
|
7775
|
+
getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8517
7776
|
/**
|
|
8518
7777
|
* @description Get the difference between the current loan tasks and the tasks generated by business rules
|
|
8519
7778
|
*
|
|
@@ -8525,7 +7784,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8525
7784
|
* @response `200` `(UserLoanTask)[]` Success
|
|
8526
7785
|
* @response `404` `ProblemDetails` Not Found
|
|
8527
7786
|
*/
|
|
8528
|
-
getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any
|
|
7787
|
+
getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
8529
7788
|
/**
|
|
8530
7789
|
* No description
|
|
8531
7790
|
*
|
|
@@ -8537,7 +7796,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8537
7796
|
* @response `201` `UserLoanTask` Created
|
|
8538
7797
|
* @response `404` `ProblemDetails` Not Found
|
|
8539
7798
|
*/
|
|
8540
|
-
createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any
|
|
7799
|
+
createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8541
7800
|
/**
|
|
8542
7801
|
* No description
|
|
8543
7802
|
*
|
|
@@ -8549,7 +7808,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8549
7808
|
* @response `201` `(UserLoanTask)[]` Created
|
|
8550
7809
|
* @response `404` `ProblemDetails` Not Found
|
|
8551
7810
|
*/
|
|
8552
|
-
importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any
|
|
7811
|
+
importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
8553
7812
|
/**
|
|
8554
7813
|
* No description
|
|
8555
7814
|
*
|
|
@@ -8561,7 +7820,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8561
7820
|
* @response `200` `UserLoanTask` Success
|
|
8562
7821
|
* @response `404` `ProblemDetails` Not Found
|
|
8563
7822
|
*/
|
|
8564
|
-
replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any
|
|
7823
|
+
replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8565
7824
|
/**
|
|
8566
7825
|
* No description
|
|
8567
7826
|
*
|
|
@@ -8573,7 +7832,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8573
7832
|
* @response `204` `void` No Content
|
|
8574
7833
|
* @response `404` `ProblemDetails` Not Found
|
|
8575
7834
|
*/
|
|
8576
|
-
deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7835
|
+
deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8577
7836
|
/**
|
|
8578
7837
|
* No description
|
|
8579
7838
|
*
|
|
@@ -8585,7 +7844,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8585
7844
|
* @response `204` `void` No Content
|
|
8586
7845
|
* @response `404` `ProblemDetails` Not Found
|
|
8587
7846
|
*/
|
|
8588
|
-
sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7847
|
+
sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8589
7848
|
/**
|
|
8590
7849
|
* No description
|
|
8591
7850
|
*
|
|
@@ -8598,7 +7857,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8598
7857
|
* @response `404` `ProblemDetails` Not Found
|
|
8599
7858
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8600
7859
|
*/
|
|
8601
|
-
createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any
|
|
7860
|
+
createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8602
7861
|
/**
|
|
8603
7862
|
* No description
|
|
8604
7863
|
*
|
|
@@ -8609,7 +7868,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8609
7868
|
* @secure
|
|
8610
7869
|
* @response `200` `(UserLoanConsent)[]` Success
|
|
8611
7870
|
*/
|
|
8612
|
-
getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any
|
|
7871
|
+
getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any>>;
|
|
8613
7872
|
/**
|
|
8614
7873
|
* No description
|
|
8615
7874
|
*
|
|
@@ -8620,7 +7879,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8620
7879
|
* @secure
|
|
8621
7880
|
* @response `200` `LoanUser` Success
|
|
8622
7881
|
*/
|
|
8623
|
-
getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any
|
|
7882
|
+
getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
8624
7883
|
/**
|
|
8625
7884
|
* No description
|
|
8626
7885
|
*
|
|
@@ -8631,7 +7890,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8631
7890
|
* @secure
|
|
8632
7891
|
* @response `201` `LoanUser` Created
|
|
8633
7892
|
*/
|
|
8634
|
-
addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any
|
|
7893
|
+
addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
8635
7894
|
/**
|
|
8636
7895
|
* No description
|
|
8637
7896
|
*
|
|
@@ -8642,7 +7901,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8642
7901
|
* @secure
|
|
8643
7902
|
* @response `204` `LoanUser` No Content
|
|
8644
7903
|
*/
|
|
8645
|
-
removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any
|
|
7904
|
+
removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
8646
7905
|
/**
|
|
8647
7906
|
* No description
|
|
8648
7907
|
*
|
|
@@ -8653,7 +7912,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8653
7912
|
* @secure
|
|
8654
7913
|
* @response `204` `void` No Content
|
|
8655
7914
|
*/
|
|
8656
|
-
sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7915
|
+
sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8657
7916
|
/**
|
|
8658
7917
|
* No description
|
|
8659
7918
|
*
|
|
@@ -8664,7 +7923,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8664
7923
|
* @secure
|
|
8665
7924
|
* @response `200` `(MilestoneConfiguration)[]` Success
|
|
8666
7925
|
*/
|
|
8667
|
-
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any
|
|
7926
|
+
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any>>;
|
|
8668
7927
|
/**
|
|
8669
7928
|
* No description
|
|
8670
7929
|
*
|
|
@@ -8676,7 +7935,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8676
7935
|
* @response `201` `MilestoneConfiguration` Created
|
|
8677
7936
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8678
7937
|
*/
|
|
8679
|
-
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any
|
|
7938
|
+
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
8680
7939
|
/**
|
|
8681
7940
|
* No description
|
|
8682
7941
|
*
|
|
@@ -8688,7 +7947,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8688
7947
|
* @response `200` `MilestoneConfiguration` Success
|
|
8689
7948
|
* @response `404` `Error` Not Found
|
|
8690
7949
|
*/
|
|
8691
|
-
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any
|
|
7950
|
+
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
8692
7951
|
/**
|
|
8693
7952
|
* No description
|
|
8694
7953
|
*
|
|
@@ -8701,7 +7960,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8701
7960
|
* @response `404` `Error` Not Found
|
|
8702
7961
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8703
7962
|
*/
|
|
8704
|
-
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any
|
|
7963
|
+
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
8705
7964
|
/**
|
|
8706
7965
|
* No description
|
|
8707
7966
|
*
|
|
@@ -8713,7 +7972,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8713
7972
|
* @response `204` `void` No Content
|
|
8714
7973
|
* @response `404` `Error` Not Found
|
|
8715
7974
|
*/
|
|
8716
|
-
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7975
|
+
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8717
7976
|
/**
|
|
8718
7977
|
* No description
|
|
8719
7978
|
*
|
|
@@ -8725,7 +7984,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8725
7984
|
* @response `200` `MonthlyPaymentCalculator` Success
|
|
8726
7985
|
* @response `422` `ProblemDetails` Client Error
|
|
8727
7986
|
*/
|
|
8728
|
-
calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any
|
|
7987
|
+
calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any>>;
|
|
8729
7988
|
/**
|
|
8730
7989
|
* No description
|
|
8731
7990
|
*
|
|
@@ -8737,7 +7996,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8737
7996
|
* @response `200` `AffordabilityCalculator` Success
|
|
8738
7997
|
* @response `422` `ProblemDetails` Client Error
|
|
8739
7998
|
*/
|
|
8740
|
-
calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any
|
|
7999
|
+
calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any>>;
|
|
8741
8000
|
/**
|
|
8742
8001
|
* No description
|
|
8743
8002
|
*
|
|
@@ -8749,7 +8008,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8749
8008
|
* @response `200` `LoanComparisonCalculator` Success
|
|
8750
8009
|
* @response `422` `ProblemDetails` Client Error
|
|
8751
8010
|
*/
|
|
8752
|
-
calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any
|
|
8011
|
+
calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any>>;
|
|
8753
8012
|
/**
|
|
8754
8013
|
* No description
|
|
8755
8014
|
*
|
|
@@ -8761,7 +8020,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8761
8020
|
* @response `200` `RefinanceCalculator` Success
|
|
8762
8021
|
* @response `422` `ProblemDetails` Client Error
|
|
8763
8022
|
*/
|
|
8764
|
-
calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any
|
|
8023
|
+
calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any>>;
|
|
8765
8024
|
/**
|
|
8766
8025
|
* No description
|
|
8767
8026
|
*
|
|
@@ -8773,7 +8032,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8773
8032
|
* @response `200` `void` Success
|
|
8774
8033
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8775
8034
|
*/
|
|
8776
|
-
sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8035
|
+
sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8777
8036
|
/**
|
|
8778
8037
|
* No description
|
|
8779
8038
|
*
|
|
@@ -8785,7 +8044,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8785
8044
|
* @response `200` `void` Success
|
|
8786
8045
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8787
8046
|
*/
|
|
8788
|
-
sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8047
|
+
sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8789
8048
|
/**
|
|
8790
8049
|
* No description
|
|
8791
8050
|
*
|
|
@@ -8798,7 +8057,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8798
8057
|
*/
|
|
8799
8058
|
getNotificationTemplates: (query?: {
|
|
8800
8059
|
showAll?: boolean;
|
|
8801
|
-
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any
|
|
8060
|
+
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any>>;
|
|
8802
8061
|
/**
|
|
8803
8062
|
* No description
|
|
8804
8063
|
*
|
|
@@ -8810,7 +8069,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8810
8069
|
* @response `201` `NotificationTemplate` Created
|
|
8811
8070
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8812
8071
|
*/
|
|
8813
|
-
createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any
|
|
8072
|
+
createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8814
8073
|
/**
|
|
8815
8074
|
* No description
|
|
8816
8075
|
*
|
|
@@ -8821,7 +8080,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8821
8080
|
* @secure
|
|
8822
8081
|
* @response `200` `NotificationTemplate` Success
|
|
8823
8082
|
*/
|
|
8824
|
-
getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any
|
|
8083
|
+
getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8825
8084
|
/**
|
|
8826
8085
|
* No description
|
|
8827
8086
|
*
|
|
@@ -8833,7 +8092,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8833
8092
|
* @response `200` `NotificationTemplate` Success
|
|
8834
8093
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8835
8094
|
*/
|
|
8836
|
-
replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any
|
|
8095
|
+
replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8837
8096
|
/**
|
|
8838
8097
|
* No description
|
|
8839
8098
|
*
|
|
@@ -8844,7 +8103,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8844
8103
|
* @secure
|
|
8845
8104
|
* @response `204` `void` No Content
|
|
8846
8105
|
*/
|
|
8847
|
-
deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8106
|
+
deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8848
8107
|
/**
|
|
8849
8108
|
* No description
|
|
8850
8109
|
*
|
|
@@ -8855,7 +8114,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8855
8114
|
* @secure
|
|
8856
8115
|
* @response `200` `NotificationTemplate` Success
|
|
8857
8116
|
*/
|
|
8858
|
-
restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any
|
|
8117
|
+
restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8859
8118
|
/**
|
|
8860
8119
|
* No description
|
|
8861
8120
|
*
|
|
@@ -8866,7 +8125,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8866
8125
|
* @secure
|
|
8867
8126
|
* @response `200` `(NotificationTemplateVersion)[]` Success
|
|
8868
8127
|
*/
|
|
8869
|
-
getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any
|
|
8128
|
+
getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any>>;
|
|
8870
8129
|
/**
|
|
8871
8130
|
* No description
|
|
8872
8131
|
*
|
|
@@ -8877,7 +8136,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8877
8136
|
* @secure
|
|
8878
8137
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8879
8138
|
*/
|
|
8880
|
-
createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any
|
|
8139
|
+
createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8881
8140
|
/**
|
|
8882
8141
|
* No description
|
|
8883
8142
|
*
|
|
@@ -8888,7 +8147,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8888
8147
|
* @secure
|
|
8889
8148
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8890
8149
|
*/
|
|
8891
|
-
getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any
|
|
8150
|
+
getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8892
8151
|
/**
|
|
8893
8152
|
* No description
|
|
8894
8153
|
*
|
|
@@ -8899,7 +8158,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8899
8158
|
* @secure
|
|
8900
8159
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8901
8160
|
*/
|
|
8902
|
-
replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any
|
|
8161
|
+
replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8903
8162
|
/**
|
|
8904
8163
|
* No description
|
|
8905
8164
|
*
|
|
@@ -8910,7 +8169,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8910
8169
|
* @secure
|
|
8911
8170
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8912
8171
|
*/
|
|
8913
|
-
deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any
|
|
8172
|
+
deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8914
8173
|
/**
|
|
8915
8174
|
* No description
|
|
8916
8175
|
*
|
|
@@ -8924,14 +8183,14 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8924
8183
|
getPartners: (query?: {
|
|
8925
8184
|
showAll?: boolean;
|
|
8926
8185
|
/** @default "Realtor" */
|
|
8927
|
-
role?:
|
|
8186
|
+
role?: GetPartnersParamsRoleEnum;
|
|
8928
8187
|
/** @format int32 */
|
|
8929
8188
|
pageSize?: number;
|
|
8930
8189
|
/** @format int32 */
|
|
8931
8190
|
pageNumber?: number;
|
|
8932
8191
|
sortBy?: string;
|
|
8933
8192
|
sortDirection?: string;
|
|
8934
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any
|
|
8193
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
8935
8194
|
/**
|
|
8936
8195
|
* No description
|
|
8937
8196
|
*
|
|
@@ -8949,7 +8208,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8949
8208
|
pageNumber?: number;
|
|
8950
8209
|
sortBy?: string;
|
|
8951
8210
|
sortDirection?: string;
|
|
8952
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any
|
|
8211
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
8953
8212
|
/**
|
|
8954
8213
|
* No description
|
|
8955
8214
|
*
|
|
@@ -8960,7 +8219,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8960
8219
|
* @secure
|
|
8961
8220
|
* @response `200` `BranchUser` Success
|
|
8962
8221
|
*/
|
|
8963
|
-
getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any
|
|
8222
|
+
getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
|
|
8964
8223
|
/**
|
|
8965
8224
|
* No description
|
|
8966
8225
|
*
|
|
@@ -8972,7 +8231,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8972
8231
|
* @response `200` `SiteConfiguration` Success
|
|
8973
8232
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8974
8233
|
*/
|
|
8975
|
-
createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
8234
|
+
createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8976
8235
|
/**
|
|
8977
8236
|
* No description
|
|
8978
8237
|
*
|
|
@@ -8983,7 +8242,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8983
8242
|
* @secure
|
|
8984
8243
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
8985
8244
|
*/
|
|
8986
|
-
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any
|
|
8245
|
+
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
8987
8246
|
/**
|
|
8988
8247
|
* No description
|
|
8989
8248
|
*
|
|
@@ -8997,7 +8256,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8997
8256
|
*/
|
|
8998
8257
|
replacePartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
8999
8258
|
applyToChildren?: boolean;
|
|
9000
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
8259
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
9001
8260
|
/**
|
|
9002
8261
|
* No description
|
|
9003
8262
|
*
|
|
@@ -9008,7 +8267,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9008
8267
|
* @secure
|
|
9009
8268
|
* @response `200` `SiteConfiguration` Success
|
|
9010
8269
|
*/
|
|
9011
|
-
getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
8270
|
+
getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
9012
8271
|
/**
|
|
9013
8272
|
* No description
|
|
9014
8273
|
*
|
|
@@ -9021,7 +8280,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9021
8280
|
* @response `200` `SiteConfigurationByUrl` Success
|
|
9022
8281
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9023
8282
|
*/
|
|
9024
|
-
searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any
|
|
8283
|
+
searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
|
|
9025
8284
|
/**
|
|
9026
8285
|
* No description
|
|
9027
8286
|
*
|
|
@@ -9035,7 +8294,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9035
8294
|
*/
|
|
9036
8295
|
getSiteConfigurationByUrl: (query?: {
|
|
9037
8296
|
url?: string;
|
|
9038
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any
|
|
8297
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
|
|
9039
8298
|
/**
|
|
9040
8299
|
* No description
|
|
9041
8300
|
*
|
|
@@ -9048,7 +8307,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9048
8307
|
* @response `200` `SiteConfiguration` Success
|
|
9049
8308
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9050
8309
|
*/
|
|
9051
|
-
searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
8310
|
+
searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
9052
8311
|
/**
|
|
9053
8312
|
* No description
|
|
9054
8313
|
*
|
|
@@ -9060,7 +8319,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9060
8319
|
* @response `200` `SiteConfiguration` Success
|
|
9061
8320
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9062
8321
|
*/
|
|
9063
|
-
getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
8322
|
+
getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
9064
8323
|
/**
|
|
9065
8324
|
* No description
|
|
9066
8325
|
*
|
|
@@ -9079,7 +8338,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9079
8338
|
pageNumber?: number;
|
|
9080
8339
|
sortBy?: string;
|
|
9081
8340
|
sortDirection?: string;
|
|
9082
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any
|
|
8341
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any>>;
|
|
9083
8342
|
/**
|
|
9084
8343
|
* No description
|
|
9085
8344
|
*
|
|
@@ -9090,7 +8349,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9090
8349
|
* @secure
|
|
9091
8350
|
* @response `200` `(AdminAccessGetForms)[]` Success
|
|
9092
8351
|
*/
|
|
9093
|
-
getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any
|
|
8352
|
+
getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
|
|
9094
8353
|
/**
|
|
9095
8354
|
* No description
|
|
9096
8355
|
*
|
|
@@ -9102,7 +8361,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9102
8361
|
* @response `200` `File` Success
|
|
9103
8362
|
* @response `404` `ProblemDetails` Not Found
|
|
9104
8363
|
*/
|
|
9105
|
-
getSamlMetadata: (sSoIntegration:
|
|
8364
|
+
getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
9106
8365
|
/**
|
|
9107
8366
|
* No description
|
|
9108
8367
|
*
|
|
@@ -9113,7 +8372,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9113
8372
|
* @secure
|
|
9114
8373
|
* @response `200` `File` Success
|
|
9115
8374
|
*/
|
|
9116
|
-
createOrReplaceSamlMetadata: (sSoIntegration:
|
|
8375
|
+
createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
9117
8376
|
/**
|
|
9118
8377
|
* No description
|
|
9119
8378
|
*
|
|
@@ -9124,7 +8383,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9124
8383
|
* @secure
|
|
9125
8384
|
* @response `200` `(SiteConfigurationForm)[]` Success
|
|
9126
8385
|
*/
|
|
9127
|
-
getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any
|
|
8386
|
+
getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any>>;
|
|
9128
8387
|
/**
|
|
9129
8388
|
* No description
|
|
9130
8389
|
*
|
|
@@ -9136,7 +8395,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9136
8395
|
* @response `200` `SiteConfigurationForm` Success
|
|
9137
8396
|
* @response `404` `ProblemDetails` Not Found
|
|
9138
8397
|
*/
|
|
9139
|
-
getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any
|
|
8398
|
+
getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
|
|
9140
8399
|
/**
|
|
9141
8400
|
* No description
|
|
9142
8401
|
*
|
|
@@ -9149,7 +8408,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9149
8408
|
* @response `409` `ProblemDetails` Conflict
|
|
9150
8409
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9151
8410
|
*/
|
|
9152
|
-
createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any
|
|
8411
|
+
createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
|
|
9153
8412
|
/**
|
|
9154
8413
|
* No description
|
|
9155
8414
|
*
|
|
@@ -9160,7 +8419,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9160
8419
|
* @secure
|
|
9161
8420
|
* @response `204` `void` No Content
|
|
9162
8421
|
*/
|
|
9163
|
-
deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8422
|
+
deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9164
8423
|
/**
|
|
9165
8424
|
* No description
|
|
9166
8425
|
*
|
|
@@ -9171,7 +8430,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9171
8430
|
* @secure
|
|
9172
8431
|
* @response `200` `GetForm` Success
|
|
9173
8432
|
*/
|
|
9174
|
-
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any
|
|
8433
|
+
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
|
|
9175
8434
|
/**
|
|
9176
8435
|
* No description
|
|
9177
8436
|
*
|
|
@@ -9185,7 +8444,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9185
8444
|
getSurveysByUsers: (query?: {
|
|
9186
8445
|
/** @format int32 */
|
|
9187
8446
|
limit?: number;
|
|
9188
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any
|
|
8447
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
|
|
9189
8448
|
/**
|
|
9190
8449
|
* No description
|
|
9191
8450
|
*
|
|
@@ -9197,7 +8456,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9197
8456
|
* @response `200` `(SocialSurveyRecord)[]` Success
|
|
9198
8457
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9199
8458
|
*/
|
|
9200
|
-
getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any
|
|
8459
|
+
getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
|
|
9201
8460
|
/**
|
|
9202
8461
|
* No description
|
|
9203
8462
|
*
|
|
@@ -9216,7 +8475,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9216
8475
|
pageNumber?: number;
|
|
9217
8476
|
sortBy?: string;
|
|
9218
8477
|
sortDirection?: string;
|
|
9219
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Task, any
|
|
8478
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
9220
8479
|
/**
|
|
9221
8480
|
* No description
|
|
9222
8481
|
*
|
|
@@ -9227,7 +8486,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9227
8486
|
* @secure
|
|
9228
8487
|
* @response `201` `Task` Created
|
|
9229
8488
|
*/
|
|
9230
|
-
createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any
|
|
8489
|
+
createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
9231
8490
|
/**
|
|
9232
8491
|
* No description
|
|
9233
8492
|
*
|
|
@@ -9239,7 +8498,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9239
8498
|
* @response `200` `Task` Success
|
|
9240
8499
|
* @response `404` `ProblemDetails` Not Found
|
|
9241
8500
|
*/
|
|
9242
|
-
getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any
|
|
8501
|
+
getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
9243
8502
|
/**
|
|
9244
8503
|
* No description
|
|
9245
8504
|
*
|
|
@@ -9251,7 +8510,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9251
8510
|
* @response `200` `void` Success
|
|
9252
8511
|
* @response `404` `ProblemDetails` Not Found
|
|
9253
8512
|
*/
|
|
9254
|
-
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8513
|
+
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9255
8514
|
/**
|
|
9256
8515
|
* No description
|
|
9257
8516
|
*
|
|
@@ -9263,7 +8522,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9263
8522
|
* @response `204` `void` No Content
|
|
9264
8523
|
* @response `404` `ProblemDetails` Not Found
|
|
9265
8524
|
*/
|
|
9266
|
-
deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8525
|
+
deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9267
8526
|
/**
|
|
9268
8527
|
* No description
|
|
9269
8528
|
*
|
|
@@ -9281,7 +8540,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9281
8540
|
pageNumber?: number;
|
|
9282
8541
|
sortBy?: string;
|
|
9283
8542
|
sortDirection?: string;
|
|
9284
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any
|
|
8543
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any>>;
|
|
9285
8544
|
/**
|
|
9286
8545
|
* No description
|
|
9287
8546
|
*
|
|
@@ -9291,7 +8550,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9291
8550
|
* @secure
|
|
9292
8551
|
* @response `200` `void` Success
|
|
9293
8552
|
*/
|
|
9294
|
-
integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8553
|
+
integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9295
8554
|
/**
|
|
9296
8555
|
* No description
|
|
9297
8556
|
*
|
|
@@ -9308,7 +8567,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9308
8567
|
pageNumber: number;
|
|
9309
8568
|
sortBy?: string;
|
|
9310
8569
|
sortDirection?: string;
|
|
9311
|
-
}, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any
|
|
8570
|
+
}, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any>>;
|
|
9312
8571
|
/**
|
|
9313
8572
|
* No description
|
|
9314
8573
|
*
|
|
@@ -9320,7 +8579,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9320
8579
|
* @response `200` `UsageReport` Success
|
|
9321
8580
|
* @response `404` `ProblemDetails` Not Found
|
|
9322
8581
|
*/
|
|
9323
|
-
getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any
|
|
8582
|
+
getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any>>;
|
|
9324
8583
|
/**
|
|
9325
8584
|
* No description
|
|
9326
8585
|
*
|
|
@@ -9337,7 +8596,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9337
8596
|
month?: number;
|
|
9338
8597
|
/** @format int32 */
|
|
9339
8598
|
year?: number;
|
|
9340
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any
|
|
8599
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any>>;
|
|
9341
8600
|
/**
|
|
9342
8601
|
* No description
|
|
9343
8602
|
*
|
|
@@ -9354,7 +8613,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9354
8613
|
month?: number;
|
|
9355
8614
|
/** @format int32 */
|
|
9356
8615
|
year?: number;
|
|
9357
|
-
}, params?: RequestParams) => Promise<AxiosResponse<any, any
|
|
8616
|
+
}, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
9358
8617
|
/**
|
|
9359
8618
|
* No description
|
|
9360
8619
|
*
|
|
@@ -9365,7 +8624,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9365
8624
|
* @secure
|
|
9366
8625
|
* @response `200` `UsageReportDashboard` Success
|
|
9367
8626
|
*/
|
|
9368
|
-
getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any
|
|
8627
|
+
getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any>>;
|
|
9369
8628
|
/**
|
|
9370
8629
|
* No description
|
|
9371
8630
|
*
|
|
@@ -9377,7 +8636,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9377
8636
|
* @response `200` `UsageReportExecution` Success
|
|
9378
8637
|
* @response `404` `ProblemDetails` Not Found
|
|
9379
8638
|
*/
|
|
9380
|
-
getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any
|
|
8639
|
+
getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any>>;
|
|
9381
8640
|
/**
|
|
9382
8641
|
* No description
|
|
9383
8642
|
*
|
|
@@ -9394,7 +8653,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9394
8653
|
month?: number;
|
|
9395
8654
|
/** @format int32 */
|
|
9396
8655
|
year?: number;
|
|
9397
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any
|
|
8656
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any>>;
|
|
9398
8657
|
/**
|
|
9399
8658
|
* No description
|
|
9400
8659
|
*
|
|
@@ -9406,7 +8665,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9406
8665
|
* @response `201` `UserDevice` Created
|
|
9407
8666
|
* @response `400` `ProblemDetails` Bad Request
|
|
9408
8667
|
*/
|
|
9409
|
-
createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any
|
|
8668
|
+
createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any>>;
|
|
9410
8669
|
/**
|
|
9411
8670
|
* No description
|
|
9412
8671
|
*
|
|
@@ -9418,7 +8677,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9418
8677
|
* @response `204` `void` No Content
|
|
9419
8678
|
* @response `404` `ProblemDetails` Not Found
|
|
9420
8679
|
*/
|
|
9421
|
-
deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8680
|
+
deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9422
8681
|
/**
|
|
9423
8682
|
* No description
|
|
9424
8683
|
*
|
|
@@ -9436,7 +8695,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9436
8695
|
pageNumber?: number;
|
|
9437
8696
|
sortBy?: string;
|
|
9438
8697
|
sortDirection?: string;
|
|
9439
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any
|
|
8698
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any>>;
|
|
9440
8699
|
/**
|
|
9441
8700
|
* No description
|
|
9442
8701
|
*
|
|
@@ -9447,7 +8706,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9447
8706
|
* @secure
|
|
9448
8707
|
* @response `200` `UserDraft` Success
|
|
9449
8708
|
*/
|
|
9450
|
-
getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any
|
|
8709
|
+
getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
|
|
9451
8710
|
/**
|
|
9452
8711
|
* No description
|
|
9453
8712
|
*
|
|
@@ -9458,7 +8717,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9458
8717
|
* @secure
|
|
9459
8718
|
* @response `200` `UserDraft` Success
|
|
9460
8719
|
*/
|
|
9461
|
-
addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any
|
|
8720
|
+
addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
|
|
9462
8721
|
/**
|
|
9463
8722
|
* No description
|
|
9464
8723
|
*
|
|
@@ -9469,7 +8728,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9469
8728
|
* @secure
|
|
9470
8729
|
* @response `204` `void` No Content
|
|
9471
8730
|
*/
|
|
9472
|
-
deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8731
|
+
deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9473
8732
|
/**
|
|
9474
8733
|
* No description
|
|
9475
8734
|
*
|
|
@@ -9480,7 +8739,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9480
8739
|
* @secure
|
|
9481
8740
|
* @response `200` `(UserGroupAccessScope)[]` Success
|
|
9482
8741
|
*/
|
|
9483
|
-
getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any
|
|
8742
|
+
getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any>>;
|
|
9484
8743
|
/**
|
|
9485
8744
|
* No description
|
|
9486
8745
|
*
|
|
@@ -9491,7 +8750,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9491
8750
|
* @secure
|
|
9492
8751
|
* @response `200` `UserGroupAccessScope` Success
|
|
9493
8752
|
*/
|
|
9494
|
-
createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any
|
|
8753
|
+
createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any>>;
|
|
9495
8754
|
/**
|
|
9496
8755
|
* No description
|
|
9497
8756
|
*
|
|
@@ -9502,7 +8761,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9502
8761
|
* @secure
|
|
9503
8762
|
* @response `204` `void` No Content
|
|
9504
8763
|
*/
|
|
9505
|
-
deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8764
|
+
deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9506
8765
|
/**
|
|
9507
8766
|
* No description
|
|
9508
8767
|
*
|
|
@@ -9513,7 +8772,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9513
8772
|
* @secure
|
|
9514
8773
|
* @response `200` `(UserGroupMember)[]` Success
|
|
9515
8774
|
*/
|
|
9516
|
-
getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any
|
|
8775
|
+
getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any>>;
|
|
9517
8776
|
/**
|
|
9518
8777
|
* No description
|
|
9519
8778
|
*
|
|
@@ -9527,7 +8786,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9527
8786
|
createUserGroupMember: (groupId: string, data: CreateGroupMemberRequest, query?: {
|
|
9528
8787
|
/** @format uuid */
|
|
9529
8788
|
userId?: string;
|
|
9530
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any
|
|
8789
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any>>;
|
|
9531
8790
|
/**
|
|
9532
8791
|
* No description
|
|
9533
8792
|
*
|
|
@@ -9538,7 +8797,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9538
8797
|
* @secure
|
|
9539
8798
|
* @response `204` `void` No Content
|
|
9540
8799
|
*/
|
|
9541
|
-
deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8800
|
+
deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9542
8801
|
/**
|
|
9543
8802
|
* No description
|
|
9544
8803
|
*
|
|
@@ -9557,7 +8816,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9557
8816
|
pageNumber?: number;
|
|
9558
8817
|
sortBy?: string;
|
|
9559
8818
|
sortDirection?: string;
|
|
9560
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any
|
|
8819
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any>>;
|
|
9561
8820
|
/**
|
|
9562
8821
|
* No description
|
|
9563
8822
|
*
|
|
@@ -9568,7 +8827,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9568
8827
|
* @secure
|
|
9569
8828
|
* @response `200` `UserGroup` Success
|
|
9570
8829
|
*/
|
|
9571
|
-
getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any
|
|
8830
|
+
getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
9572
8831
|
/**
|
|
9573
8832
|
* No description
|
|
9574
8833
|
*
|
|
@@ -9579,7 +8838,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9579
8838
|
* @secure
|
|
9580
8839
|
* @response `200` `UserGroup` Success
|
|
9581
8840
|
*/
|
|
9582
|
-
updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any
|
|
8841
|
+
updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
9583
8842
|
/**
|
|
9584
8843
|
* No description
|
|
9585
8844
|
*
|
|
@@ -9590,7 +8849,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9590
8849
|
* @secure
|
|
9591
8850
|
* @response `204` `void` No Content
|
|
9592
8851
|
*/
|
|
9593
|
-
deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8852
|
+
deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9594
8853
|
/**
|
|
9595
8854
|
* No description
|
|
9596
8855
|
*
|
|
@@ -9601,7 +8860,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9601
8860
|
* @secure
|
|
9602
8861
|
* @response `201` `UserGroup` Created
|
|
9603
8862
|
*/
|
|
9604
|
-
createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any
|
|
8863
|
+
createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
9605
8864
|
/**
|
|
9606
8865
|
* No description
|
|
9607
8866
|
*
|
|
@@ -9614,7 +8873,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9614
8873
|
* @response `404` `Error` Not Found
|
|
9615
8874
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9616
8875
|
*/
|
|
9617
|
-
requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8876
|
+
requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9618
8877
|
/**
|
|
9619
8878
|
* No description
|
|
9620
8879
|
*
|
|
@@ -9627,7 +8886,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9627
8886
|
* @response `404` `Error` Not Found
|
|
9628
8887
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9629
8888
|
*/
|
|
9630
|
-
allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8889
|
+
allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9631
8890
|
/**
|
|
9632
8891
|
* No description
|
|
9633
8892
|
*
|
|
@@ -9640,7 +8899,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9640
8899
|
* @response `404` `Error` Not Found
|
|
9641
8900
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9642
8901
|
*/
|
|
9643
|
-
allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8902
|
+
allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9644
8903
|
/**
|
|
9645
8904
|
* No description
|
|
9646
8905
|
*
|
|
@@ -9652,7 +8911,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9652
8911
|
* @response `204` `void` No Content
|
|
9653
8912
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9654
8913
|
*/
|
|
9655
|
-
beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8914
|
+
beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9656
8915
|
/**
|
|
9657
8916
|
* No description
|
|
9658
8917
|
*
|
|
@@ -9664,7 +8923,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9664
8923
|
* @response `204` `void` No Content
|
|
9665
8924
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9666
8925
|
*/
|
|
9667
|
-
stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8926
|
+
stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9668
8927
|
/**
|
|
9669
8928
|
* No description
|
|
9670
8929
|
*
|
|
@@ -9677,7 +8936,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9677
8936
|
* @response `404` `Error` Not Found
|
|
9678
8937
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9679
8938
|
*/
|
|
9680
|
-
forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8939
|
+
forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9681
8940
|
/**
|
|
9682
8941
|
* No description
|
|
9683
8942
|
*
|
|
@@ -9689,7 +8948,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9689
8948
|
* @response `204` `void` No Content
|
|
9690
8949
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9691
8950
|
*/
|
|
9692
|
-
extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8951
|
+
extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9693
8952
|
/**
|
|
9694
8953
|
* No description
|
|
9695
8954
|
*
|
|
@@ -9701,7 +8960,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9701
8960
|
* @response `204` `void` No Content
|
|
9702
8961
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9703
8962
|
*/
|
|
9704
|
-
inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8963
|
+
inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9705
8964
|
/**
|
|
9706
8965
|
* No description
|
|
9707
8966
|
*
|
|
@@ -9714,7 +8973,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9714
8973
|
* @response `401` `UnprocessableEntity` Unauthorized
|
|
9715
8974
|
* @response `404` `UnprocessableEntity` Not Found
|
|
9716
8975
|
*/
|
|
9717
|
-
resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8976
|
+
resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9718
8977
|
/**
|
|
9719
8978
|
* No description
|
|
9720
8979
|
*
|
|
@@ -9726,7 +8985,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9726
8985
|
* @response `200` `Invite` Success
|
|
9727
8986
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9728
8987
|
*/
|
|
9729
|
-
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any
|
|
8988
|
+
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any>>;
|
|
9730
8989
|
/**
|
|
9731
8990
|
* No description
|
|
9732
8991
|
*
|
|
@@ -9737,7 +8996,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9737
8996
|
* @secure
|
|
9738
8997
|
* @response `200` `(UserRelation)[]` Success
|
|
9739
8998
|
*/
|
|
9740
|
-
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any
|
|
8999
|
+
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any>>;
|
|
9741
9000
|
/**
|
|
9742
9001
|
* No description
|
|
9743
9002
|
*
|
|
@@ -9748,7 +9007,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9748
9007
|
* @secure
|
|
9749
9008
|
* @response `204` `void` No Content
|
|
9750
9009
|
*/
|
|
9751
|
-
createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9010
|
+
createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9752
9011
|
/**
|
|
9753
9012
|
* No description
|
|
9754
9013
|
*
|
|
@@ -9759,7 +9018,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9759
9018
|
* @secure
|
|
9760
9019
|
* @response `200` `UserRelation` Success
|
|
9761
9020
|
*/
|
|
9762
|
-
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any
|
|
9021
|
+
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any>>;
|
|
9763
9022
|
/**
|
|
9764
9023
|
* No description
|
|
9765
9024
|
*
|
|
@@ -9770,7 +9029,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9770
9029
|
* @secure
|
|
9771
9030
|
* @response `204` `void` No Content
|
|
9772
9031
|
*/
|
|
9773
|
-
deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9032
|
+
deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9774
9033
|
/**
|
|
9775
9034
|
* No description
|
|
9776
9035
|
*
|
|
@@ -9788,7 +9047,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9788
9047
|
pageNumber?: number;
|
|
9789
9048
|
sortBy?: string;
|
|
9790
9049
|
sortDirection?: string;
|
|
9791
|
-
}, params?: RequestParams) => Promise<AxiosResponse<User[], any
|
|
9050
|
+
}, params?: RequestParams) => Promise<AxiosResponse<User[], any>>;
|
|
9792
9051
|
/**
|
|
9793
9052
|
* No description
|
|
9794
9053
|
*
|
|
@@ -9800,7 +9059,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9800
9059
|
* @response `200` `DetailedUser` Success
|
|
9801
9060
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9802
9061
|
*/
|
|
9803
|
-
createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any
|
|
9062
|
+
createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9804
9063
|
/**
|
|
9805
9064
|
* No description
|
|
9806
9065
|
*
|
|
@@ -9818,7 +9077,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9818
9077
|
pageNumber?: number;
|
|
9819
9078
|
sortBy?: string;
|
|
9820
9079
|
sortDirection?: string;
|
|
9821
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any
|
|
9080
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any>>;
|
|
9822
9081
|
/**
|
|
9823
9082
|
* No description
|
|
9824
9083
|
*
|
|
@@ -9829,7 +9088,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9829
9088
|
* @secure
|
|
9830
9089
|
* @response `200` `AdminAccessUser` Success
|
|
9831
9090
|
*/
|
|
9832
|
-
getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any
|
|
9091
|
+
getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any>>;
|
|
9833
9092
|
/**
|
|
9834
9093
|
* No description
|
|
9835
9094
|
*
|
|
@@ -9841,7 +9100,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9841
9100
|
* @response `200` `User` Success
|
|
9842
9101
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9843
9102
|
*/
|
|
9844
|
-
signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any
|
|
9103
|
+
signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any>>;
|
|
9845
9104
|
/**
|
|
9846
9105
|
* No description
|
|
9847
9106
|
*
|
|
@@ -9853,7 +9112,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9853
9112
|
* @response `200` `DetailedUser` Success
|
|
9854
9113
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9855
9114
|
*/
|
|
9856
|
-
replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any
|
|
9115
|
+
replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9857
9116
|
/**
|
|
9858
9117
|
* No description
|
|
9859
9118
|
*
|
|
@@ -9867,7 +9126,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9867
9126
|
deleteUser: (id: string, query?: {
|
|
9868
9127
|
/** @default false */
|
|
9869
9128
|
permanent?: boolean;
|
|
9870
|
-
}, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9129
|
+
}, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9871
9130
|
/**
|
|
9872
9131
|
* No description
|
|
9873
9132
|
*
|
|
@@ -9878,7 +9137,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9878
9137
|
* @secure
|
|
9879
9138
|
* @response `204` `void` No Content
|
|
9880
9139
|
*/
|
|
9881
|
-
restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9140
|
+
restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9882
9141
|
/**
|
|
9883
9142
|
* No description
|
|
9884
9143
|
*
|
|
@@ -9890,7 +9149,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9890
9149
|
* @response `204` `void` No Content
|
|
9891
9150
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9892
9151
|
*/
|
|
9893
|
-
changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9152
|
+
changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9894
9153
|
/**
|
|
9895
9154
|
* No description
|
|
9896
9155
|
*
|
|
@@ -9902,7 +9161,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9902
9161
|
* @response `204` `void` No Content
|
|
9903
9162
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9904
9163
|
*/
|
|
9905
|
-
verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9164
|
+
verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9906
9165
|
/**
|
|
9907
9166
|
* No description
|
|
9908
9167
|
*
|
|
@@ -9914,7 +9173,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9914
9173
|
* @response `204` `void` No Content
|
|
9915
9174
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9916
9175
|
*/
|
|
9917
|
-
overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9176
|
+
overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9918
9177
|
/**
|
|
9919
9178
|
* No description
|
|
9920
9179
|
*
|
|
@@ -9926,7 +9185,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9926
9185
|
* @response `204` `void` No Content
|
|
9927
9186
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9928
9187
|
*/
|
|
9929
|
-
forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9188
|
+
forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9930
9189
|
/**
|
|
9931
9190
|
* No description
|
|
9932
9191
|
*
|
|
@@ -9938,7 +9197,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9938
9197
|
* @response `204` `void` No Content
|
|
9939
9198
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9940
9199
|
*/
|
|
9941
|
-
sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9200
|
+
sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9942
9201
|
/**
|
|
9943
9202
|
* No description
|
|
9944
9203
|
*
|
|
@@ -9950,7 +9209,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9950
9209
|
* @response `204` `void` No Content
|
|
9951
9210
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9952
9211
|
*/
|
|
9953
|
-
verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9212
|
+
verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9954
9213
|
/**
|
|
9955
9214
|
* No description
|
|
9956
9215
|
*
|
|
@@ -9962,7 +9221,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9962
9221
|
* @response `200` `ImpersonatedDetailedUser` Success
|
|
9963
9222
|
* @response `401` `ProblemDetails` Unauthorized
|
|
9964
9223
|
*/
|
|
9965
|
-
getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any
|
|
9224
|
+
getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any>>;
|
|
9966
9225
|
/**
|
|
9967
9226
|
* No description
|
|
9968
9227
|
*
|
|
@@ -9973,7 +9232,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9973
9232
|
* @secure
|
|
9974
9233
|
* @response `200` `DetailedUser` Success
|
|
9975
9234
|
*/
|
|
9976
|
-
replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any
|
|
9235
|
+
replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9977
9236
|
/**
|
|
9978
9237
|
* @description Update the phone number If changed will send a verification code to the new number
|
|
9979
9238
|
*
|
|
@@ -9984,7 +9243,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9984
9243
|
* @secure
|
|
9985
9244
|
* @response `204` `DetailedUser` No Content
|
|
9986
9245
|
*/
|
|
9987
|
-
updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any
|
|
9246
|
+
updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9988
9247
|
/**
|
|
9989
9248
|
* No description
|
|
9990
9249
|
*
|
|
@@ -9995,7 +9254,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9995
9254
|
* @secure
|
|
9996
9255
|
* @response `200` `(UserRelationship)[]` Success
|
|
9997
9256
|
*/
|
|
9998
|
-
getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any
|
|
9257
|
+
getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any>>;
|
|
9999
9258
|
/**
|
|
10000
9259
|
* No description
|
|
10001
9260
|
*
|
|
@@ -10006,7 +9265,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10006
9265
|
* @secure
|
|
10007
9266
|
* @response `200` `(UserRelationshipProspect)[]` Success
|
|
10008
9267
|
*/
|
|
10009
|
-
getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any
|
|
9268
|
+
getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any>>;
|
|
10010
9269
|
/**
|
|
10011
9270
|
* No description
|
|
10012
9271
|
*
|
|
@@ -10017,7 +9276,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10017
9276
|
* @secure
|
|
10018
9277
|
* @response `204` `void` No Content
|
|
10019
9278
|
*/
|
|
10020
|
-
deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9279
|
+
deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10021
9280
|
/**
|
|
10022
9281
|
* No description
|
|
10023
9282
|
*
|
|
@@ -10028,7 +9287,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10028
9287
|
* @secure
|
|
10029
9288
|
* @response `204` `void` No Content
|
|
10030
9289
|
*/
|
|
10031
|
-
deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9290
|
+
deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10032
9291
|
/**
|
|
10033
9292
|
* No description
|
|
10034
9293
|
*
|
|
@@ -10039,7 +9298,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10039
9298
|
* @secure
|
|
10040
9299
|
* @response `200` `GetForm` Success
|
|
10041
9300
|
*/
|
|
10042
|
-
getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any
|
|
9301
|
+
getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
|
|
10043
9302
|
};
|
|
10044
9303
|
sso: {
|
|
10045
9304
|
/**
|
|
@@ -10051,6 +9310,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10051
9310
|
* @secure
|
|
10052
9311
|
* @response `200` `void` Success
|
|
10053
9312
|
*/
|
|
10054
|
-
logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9313
|
+
logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10055
9314
|
};
|
|
10056
9315
|
}
|