@otr-app/shared-backend-generated-client 2.5.166 → 2.5.167
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/angular/.openapi-generator/FILES +1 -0
- package/dist/angular/api/api.ts +3 -1
- package/dist/angular/api/conversationController.service.ts +64 -0
- package/dist/angular/api/webSocketController.service.ts +272 -0
- package/dist/angular/api.module.ts +1 -0
- package/dist/angular/model/validateDirectMailResponse.ts +3 -2
- package/dist/otrBackendService.js +156 -0
- package/dist/otrBackendService.min.js +8 -8
- package/dist/typescript/api/ConversationControllerApi.d.ts +7 -0
- package/dist/typescript/api/ConversationControllerApi.js +31 -0
- package/dist/typescript/api/WebSocketControllerApi.d.ts +37 -0
- package/dist/typescript/api/WebSocketControllerApi.js +99 -0
- package/dist/typescript/api/api.d.ts +3 -1
- package/dist/typescript/api/api.js +3 -1
- package/dist/typescript/api.module.js +1 -0
- package/dist/typescript/model/ValidateDirectMailResponse.d.ts +2 -1
- package/dist/typescript/model/ValidateDirectMailResponse.js +1 -0
- package/dist/typescript-fetch/apis/ConversationControllerApi.d.ts +12 -0
- package/dist/typescript-fetch/apis/ConversationControllerApi.js +33 -0
- package/dist/typescript-fetch/apis/WebSocketControllerApi.d.ts +50 -0
- package/dist/typescript-fetch/apis/WebSocketControllerApi.js +118 -0
- package/dist/typescript-fetch/apis/index.d.ts +1 -0
- package/dist/typescript-fetch/apis/index.js +1 -0
- package/dist/typescript-fetch/models/ValidateDirectMailResponse.d.ts +2 -1
- package/dist/typescript-fetch/models/ValidateDirectMailResponse.js +1 -0
- package/dist/typescript-open-api/otr-backend.d.ts +269 -1
- package/dist/typescript-open-api/otr-backend.js +1 -0
- package/package.json +1 -1
|
@@ -2112,6 +2112,23 @@ export interface paths {
|
|
|
2112
2112
|
patch?: never;
|
|
2113
2113
|
trace?: never;
|
|
2114
2114
|
};
|
|
2115
|
+
"/api/v1/cases/conversation/typing/{caseId}": {
|
|
2116
|
+
parameters: {
|
|
2117
|
+
query?: never;
|
|
2118
|
+
header?: never;
|
|
2119
|
+
path?: never;
|
|
2120
|
+
cookie?: never;
|
|
2121
|
+
};
|
|
2122
|
+
get?: never;
|
|
2123
|
+
/** setTyping */
|
|
2124
|
+
put: operations["setTypingUsingPUT"];
|
|
2125
|
+
post?: never;
|
|
2126
|
+
delete?: never;
|
|
2127
|
+
options?: never;
|
|
2128
|
+
head?: never;
|
|
2129
|
+
patch?: never;
|
|
2130
|
+
trace?: never;
|
|
2131
|
+
};
|
|
2115
2132
|
"/api/v1/cases/{caseId}/conversation": {
|
|
2116
2133
|
parameters: {
|
|
2117
2134
|
query?: never;
|
|
@@ -7277,6 +7294,57 @@ export interface paths {
|
|
|
7277
7294
|
patch?: never;
|
|
7278
7295
|
trace?: never;
|
|
7279
7296
|
};
|
|
7297
|
+
"/api/v1/websocket/connect": {
|
|
7298
|
+
parameters: {
|
|
7299
|
+
query?: never;
|
|
7300
|
+
header?: never;
|
|
7301
|
+
path?: never;
|
|
7302
|
+
cookie?: never;
|
|
7303
|
+
};
|
|
7304
|
+
get?: never;
|
|
7305
|
+
put?: never;
|
|
7306
|
+
/** connect */
|
|
7307
|
+
post: operations["connectUsingPOST"];
|
|
7308
|
+
delete?: never;
|
|
7309
|
+
options?: never;
|
|
7310
|
+
head?: never;
|
|
7311
|
+
patch?: never;
|
|
7312
|
+
trace?: never;
|
|
7313
|
+
};
|
|
7314
|
+
"/api/v1/websocket/default": {
|
|
7315
|
+
parameters: {
|
|
7316
|
+
query?: never;
|
|
7317
|
+
header?: never;
|
|
7318
|
+
path?: never;
|
|
7319
|
+
cookie?: never;
|
|
7320
|
+
};
|
|
7321
|
+
get?: never;
|
|
7322
|
+
put?: never;
|
|
7323
|
+
/** defaultHandler */
|
|
7324
|
+
post: operations["defaultHandlerUsingPOST"];
|
|
7325
|
+
delete?: never;
|
|
7326
|
+
options?: never;
|
|
7327
|
+
head?: never;
|
|
7328
|
+
patch?: never;
|
|
7329
|
+
trace?: never;
|
|
7330
|
+
};
|
|
7331
|
+
"/api/v1/websocket/disconnect": {
|
|
7332
|
+
parameters: {
|
|
7333
|
+
query?: never;
|
|
7334
|
+
header?: never;
|
|
7335
|
+
path?: never;
|
|
7336
|
+
cookie?: never;
|
|
7337
|
+
};
|
|
7338
|
+
get?: never;
|
|
7339
|
+
put?: never;
|
|
7340
|
+
/** disconnect */
|
|
7341
|
+
post: operations["disconnectUsingPOST"];
|
|
7342
|
+
delete?: never;
|
|
7343
|
+
options?: never;
|
|
7344
|
+
head?: never;
|
|
7345
|
+
patch?: never;
|
|
7346
|
+
trace?: never;
|
|
7347
|
+
};
|
|
7280
7348
|
"/api/v1/forward-message": {
|
|
7281
7349
|
parameters: {
|
|
7282
7350
|
query?: never;
|
|
@@ -23640,6 +23708,58 @@ export interface operations {
|
|
|
23640
23708
|
};
|
|
23641
23709
|
};
|
|
23642
23710
|
};
|
|
23711
|
+
setTypingUsingPUT: {
|
|
23712
|
+
parameters: {
|
|
23713
|
+
query?: never;
|
|
23714
|
+
header: {
|
|
23715
|
+
/** @description connectionId */
|
|
23716
|
+
connectionId: string;
|
|
23717
|
+
};
|
|
23718
|
+
path: {
|
|
23719
|
+
/** @description caseId */
|
|
23720
|
+
caseId: string;
|
|
23721
|
+
};
|
|
23722
|
+
cookie?: never;
|
|
23723
|
+
};
|
|
23724
|
+
requestBody?: never;
|
|
23725
|
+
responses: {
|
|
23726
|
+
/** @description OK */
|
|
23727
|
+
200: {
|
|
23728
|
+
headers: {
|
|
23729
|
+
[name: string]: unknown;
|
|
23730
|
+
};
|
|
23731
|
+
content?: never;
|
|
23732
|
+
};
|
|
23733
|
+
/** @description Created */
|
|
23734
|
+
201: {
|
|
23735
|
+
headers: {
|
|
23736
|
+
[name: string]: unknown;
|
|
23737
|
+
};
|
|
23738
|
+
content?: never;
|
|
23739
|
+
};
|
|
23740
|
+
/** @description Unauthorized */
|
|
23741
|
+
401: {
|
|
23742
|
+
headers: {
|
|
23743
|
+
[name: string]: unknown;
|
|
23744
|
+
};
|
|
23745
|
+
content?: never;
|
|
23746
|
+
};
|
|
23747
|
+
/** @description Forbidden */
|
|
23748
|
+
403: {
|
|
23749
|
+
headers: {
|
|
23750
|
+
[name: string]: unknown;
|
|
23751
|
+
};
|
|
23752
|
+
content?: never;
|
|
23753
|
+
};
|
|
23754
|
+
/** @description Not Found */
|
|
23755
|
+
404: {
|
|
23756
|
+
headers: {
|
|
23757
|
+
[name: string]: unknown;
|
|
23758
|
+
};
|
|
23759
|
+
content?: never;
|
|
23760
|
+
};
|
|
23761
|
+
};
|
|
23762
|
+
};
|
|
23643
23763
|
getConversationUsingGET: {
|
|
23644
23764
|
parameters: {
|
|
23645
23765
|
query?: {
|
|
@@ -40794,6 +40914,153 @@ export interface operations {
|
|
|
40794
40914
|
};
|
|
40795
40915
|
};
|
|
40796
40916
|
};
|
|
40917
|
+
connectUsingPOST: {
|
|
40918
|
+
parameters: {
|
|
40919
|
+
query?: never;
|
|
40920
|
+
header: {
|
|
40921
|
+
/** @description connectionId */
|
|
40922
|
+
connectionId: string;
|
|
40923
|
+
};
|
|
40924
|
+
path?: never;
|
|
40925
|
+
cookie?: never;
|
|
40926
|
+
};
|
|
40927
|
+
requestBody?: never;
|
|
40928
|
+
responses: {
|
|
40929
|
+
/** @description OK */
|
|
40930
|
+
200: {
|
|
40931
|
+
headers: {
|
|
40932
|
+
[name: string]: unknown;
|
|
40933
|
+
};
|
|
40934
|
+
content?: never;
|
|
40935
|
+
};
|
|
40936
|
+
/** @description Created */
|
|
40937
|
+
201: {
|
|
40938
|
+
headers: {
|
|
40939
|
+
[name: string]: unknown;
|
|
40940
|
+
};
|
|
40941
|
+
content?: never;
|
|
40942
|
+
};
|
|
40943
|
+
/** @description Unauthorized */
|
|
40944
|
+
401: {
|
|
40945
|
+
headers: {
|
|
40946
|
+
[name: string]: unknown;
|
|
40947
|
+
};
|
|
40948
|
+
content?: never;
|
|
40949
|
+
};
|
|
40950
|
+
/** @description Forbidden */
|
|
40951
|
+
403: {
|
|
40952
|
+
headers: {
|
|
40953
|
+
[name: string]: unknown;
|
|
40954
|
+
};
|
|
40955
|
+
content?: never;
|
|
40956
|
+
};
|
|
40957
|
+
/** @description Not Found */
|
|
40958
|
+
404: {
|
|
40959
|
+
headers: {
|
|
40960
|
+
[name: string]: unknown;
|
|
40961
|
+
};
|
|
40962
|
+
content?: never;
|
|
40963
|
+
};
|
|
40964
|
+
};
|
|
40965
|
+
};
|
|
40966
|
+
defaultHandlerUsingPOST: {
|
|
40967
|
+
parameters: {
|
|
40968
|
+
query?: never;
|
|
40969
|
+
header: {
|
|
40970
|
+
/** @description connectionId */
|
|
40971
|
+
connectionId: string;
|
|
40972
|
+
};
|
|
40973
|
+
path?: never;
|
|
40974
|
+
cookie?: never;
|
|
40975
|
+
};
|
|
40976
|
+
requestBody?: never;
|
|
40977
|
+
responses: {
|
|
40978
|
+
/** @description OK */
|
|
40979
|
+
200: {
|
|
40980
|
+
headers: {
|
|
40981
|
+
[name: string]: unknown;
|
|
40982
|
+
};
|
|
40983
|
+
content?: never;
|
|
40984
|
+
};
|
|
40985
|
+
/** @description Created */
|
|
40986
|
+
201: {
|
|
40987
|
+
headers: {
|
|
40988
|
+
[name: string]: unknown;
|
|
40989
|
+
};
|
|
40990
|
+
content?: never;
|
|
40991
|
+
};
|
|
40992
|
+
/** @description Unauthorized */
|
|
40993
|
+
401: {
|
|
40994
|
+
headers: {
|
|
40995
|
+
[name: string]: unknown;
|
|
40996
|
+
};
|
|
40997
|
+
content?: never;
|
|
40998
|
+
};
|
|
40999
|
+
/** @description Forbidden */
|
|
41000
|
+
403: {
|
|
41001
|
+
headers: {
|
|
41002
|
+
[name: string]: unknown;
|
|
41003
|
+
};
|
|
41004
|
+
content?: never;
|
|
41005
|
+
};
|
|
41006
|
+
/** @description Not Found */
|
|
41007
|
+
404: {
|
|
41008
|
+
headers: {
|
|
41009
|
+
[name: string]: unknown;
|
|
41010
|
+
};
|
|
41011
|
+
content?: never;
|
|
41012
|
+
};
|
|
41013
|
+
};
|
|
41014
|
+
};
|
|
41015
|
+
disconnectUsingPOST: {
|
|
41016
|
+
parameters: {
|
|
41017
|
+
query?: never;
|
|
41018
|
+
header: {
|
|
41019
|
+
/** @description connectionId */
|
|
41020
|
+
connectionId: string;
|
|
41021
|
+
};
|
|
41022
|
+
path?: never;
|
|
41023
|
+
cookie?: never;
|
|
41024
|
+
};
|
|
41025
|
+
requestBody?: never;
|
|
41026
|
+
responses: {
|
|
41027
|
+
/** @description OK */
|
|
41028
|
+
200: {
|
|
41029
|
+
headers: {
|
|
41030
|
+
[name: string]: unknown;
|
|
41031
|
+
};
|
|
41032
|
+
content?: never;
|
|
41033
|
+
};
|
|
41034
|
+
/** @description Created */
|
|
41035
|
+
201: {
|
|
41036
|
+
headers: {
|
|
41037
|
+
[name: string]: unknown;
|
|
41038
|
+
};
|
|
41039
|
+
content?: never;
|
|
41040
|
+
};
|
|
41041
|
+
/** @description Unauthorized */
|
|
41042
|
+
401: {
|
|
41043
|
+
headers: {
|
|
41044
|
+
[name: string]: unknown;
|
|
41045
|
+
};
|
|
41046
|
+
content?: never;
|
|
41047
|
+
};
|
|
41048
|
+
/** @description Forbidden */
|
|
41049
|
+
403: {
|
|
41050
|
+
headers: {
|
|
41051
|
+
[name: string]: unknown;
|
|
41052
|
+
};
|
|
41053
|
+
content?: never;
|
|
41054
|
+
};
|
|
41055
|
+
/** @description Not Found */
|
|
41056
|
+
404: {
|
|
41057
|
+
headers: {
|
|
41058
|
+
[name: string]: unknown;
|
|
41059
|
+
};
|
|
41060
|
+
content?: never;
|
|
41061
|
+
};
|
|
41062
|
+
};
|
|
41063
|
+
};
|
|
40797
41064
|
forwardMessageUsingPOST: {
|
|
40798
41065
|
parameters: {
|
|
40799
41066
|
query?: never;
|
|
@@ -42439,7 +42706,8 @@ export declare enum ValidateDirectMailResponseOtrError {
|
|
|
42439
42706
|
USER_NOT_FOUND_IN_LAWFIRM = "USER_NOT_FOUND_IN_LAWFIRM",
|
|
42440
42707
|
VERIFICATION_CODE_NOT_NUMERIC = "VERIFICATION_CODE_NOT_NUMERIC",
|
|
42441
42708
|
VERIFICATION_CODE_NOT_VALID = "VERIFICATION_CODE_NOT_VALID",
|
|
42442
|
-
VERIFICATION_LINK_NOT_VALID = "VERIFICATION_LINK_NOT_VALID"
|
|
42709
|
+
VERIFICATION_LINK_NOT_VALID = "VERIFICATION_LINK_NOT_VALID",
|
|
42710
|
+
WEBSOCKET_CONNECTION_NOT_FOUND = "WEBSOCKET_CONNECTION_NOT_FOUND"
|
|
42443
42711
|
}
|
|
42444
42712
|
export declare enum ValidatePhoneNumberResponsePhoneType {
|
|
42445
42713
|
CELLULAR = "CELLULAR",
|
|
@@ -1687,6 +1687,7 @@ export var ValidateDirectMailResponseOtrError;
|
|
|
1687
1687
|
ValidateDirectMailResponseOtrError["VERIFICATION_CODE_NOT_NUMERIC"] = "VERIFICATION_CODE_NOT_NUMERIC";
|
|
1688
1688
|
ValidateDirectMailResponseOtrError["VERIFICATION_CODE_NOT_VALID"] = "VERIFICATION_CODE_NOT_VALID";
|
|
1689
1689
|
ValidateDirectMailResponseOtrError["VERIFICATION_LINK_NOT_VALID"] = "VERIFICATION_LINK_NOT_VALID";
|
|
1690
|
+
ValidateDirectMailResponseOtrError["WEBSOCKET_CONNECTION_NOT_FOUND"] = "WEBSOCKET_CONNECTION_NOT_FOUND";
|
|
1690
1691
|
})(ValidateDirectMailResponseOtrError || (ValidateDirectMailResponseOtrError = {}));
|
|
1691
1692
|
export var ValidatePhoneNumberResponsePhoneType;
|
|
1692
1693
|
(function (ValidatePhoneNumberResponsePhoneType) {
|