@otr-app/shared-backend-generated-client 2.5.102 → 2.5.104
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 +3 -0
- package/dist/angular/api/caseUserController.service.ts +69 -0
- package/dist/angular/api/socialLoginController.service.ts +76 -0
- package/dist/angular/model/acceptParticipantInviteRequest.ts +17 -0
- package/dist/angular/model/getSocialProfileRequest.ts +26 -0
- package/dist/angular/model/getSocialProfileResponse.ts +18 -0
- package/dist/angular/model/models.ts +3 -0
- package/dist/angular/model/socialLoginRequest.ts +1 -0
- package/dist/angular/model/socialLoginUser.ts +2 -0
- package/dist/otrBackendService.js +82 -0
- package/dist/otrBackendService.min.js +7 -7
- package/dist/typescript/api/CaseUserControllerApi.d.ts +6 -0
- package/dist/typescript/api/CaseUserControllerApi.js +25 -0
- package/dist/typescript/api/SocialLoginControllerApi.d.ts +7 -0
- package/dist/typescript/api/SocialLoginControllerApi.js +31 -0
- package/dist/typescript/model/AcceptParticipantInviteRequest.d.ts +14 -0
- package/dist/typescript/model/AcceptParticipantInviteRequest.js +12 -0
- package/dist/typescript/model/GetSocialProfileRequest.d.ts +21 -0
- package/dist/typescript/model/GetSocialProfileRequest.js +19 -0
- package/dist/typescript/model/GetSocialProfileResponse.d.ts +15 -0
- package/dist/typescript/model/GetSocialProfileResponse.js +12 -0
- package/dist/typescript/model/SocialLoginRequest.d.ts +1 -0
- package/dist/typescript/model/SocialLoginUser.d.ts +2 -0
- package/dist/typescript/model/models.d.ts +3 -0
- package/dist/typescript/model/models.js +3 -0
- package/dist/typescript-fetch/apis/CaseUserControllerApi.d.ts +12 -1
- package/dist/typescript-fetch/apis/CaseUserControllerApi.js +30 -1
- package/dist/typescript-fetch/apis/SocialLoginControllerApi.d.ts +26 -1
- package/dist/typescript-fetch/apis/SocialLoginControllerApi.js +48 -1
- package/dist/typescript-fetch/models/AcceptParticipantInviteRequest.d.ts +27 -0
- package/dist/typescript-fetch/models/AcceptParticipantInviteRequest.js +35 -0
- package/dist/typescript-fetch/models/GetSocialProfileRequest.d.ts +41 -0
- package/dist/typescript-fetch/models/GetSocialProfileRequest.js +47 -0
- package/dist/typescript-fetch/models/GetSocialProfileResponse.d.ts +33 -0
- package/dist/typescript-fetch/models/GetSocialProfileResponse.js +38 -0
- package/dist/typescript-fetch/models/SocialLoginRequest.d.ts +6 -0
- package/dist/typescript-fetch/models/SocialLoginRequest.js +2 -0
- package/dist/typescript-fetch/models/SocialLoginUser.d.ts +12 -0
- package/dist/typescript-fetch/models/SocialLoginUser.js +4 -0
- package/dist/typescript-fetch/models/index.d.ts +3 -0
- package/dist/typescript-fetch/models/index.js +3 -0
- package/dist/typescript-open-api/otr-backend.d.ts +184 -27
- package/dist/typescript-open-api/otr-backend.js +15 -15
- package/package.json +1 -1
|
@@ -89,6 +89,12 @@ export interface SocialLoginRequest {
|
|
|
89
89
|
* @memberof SocialLoginRequest
|
|
90
90
|
*/
|
|
91
91
|
userReferralSourceTypeId?: number;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {string}
|
|
95
|
+
* @memberof SocialLoginRequest
|
|
96
|
+
*/
|
|
97
|
+
verifyEmailCode?: string;
|
|
92
98
|
}
|
|
93
99
|
export declare function SocialLoginRequestFromJSON(json: any): SocialLoginRequest;
|
|
94
100
|
export declare function SocialLoginRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SocialLoginRequest;
|
|
@@ -32,6 +32,7 @@ export function SocialLoginRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
32
32
|
'referralSourceData': !exists(json, 'referralSourceData') ? undefined : json['referralSourceData'],
|
|
33
33
|
'userAccessToken': !exists(json, 'userAccessToken') ? undefined : json['userAccessToken'],
|
|
34
34
|
'userReferralSourceTypeId': !exists(json, 'userReferralSourceTypeId') ? undefined : json['userReferralSourceTypeId'],
|
|
35
|
+
'verifyEmailCode': !exists(json, 'verifyEmailCode') ? undefined : json['verifyEmailCode'],
|
|
35
36
|
};
|
|
36
37
|
}
|
|
37
38
|
export function SocialLoginRequestToJSON(value) {
|
|
@@ -54,6 +55,7 @@ export function SocialLoginRequestToJSON(value) {
|
|
|
54
55
|
'referralSourceData': value.referralSourceData,
|
|
55
56
|
'userAccessToken': value.userAccessToken,
|
|
56
57
|
'userReferralSourceTypeId': value.userReferralSourceTypeId,
|
|
58
|
+
'verifyEmailCode': value.verifyEmailCode,
|
|
57
59
|
};
|
|
58
60
|
}
|
|
59
61
|
/**
|
|
@@ -22,6 +22,12 @@ export interface SocialLoginUser {
|
|
|
22
22
|
* @memberof SocialLoginUser
|
|
23
23
|
*/
|
|
24
24
|
emailAddress?: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {boolean}
|
|
28
|
+
* @memberof SocialLoginUser
|
|
29
|
+
*/
|
|
30
|
+
emailConfirmed?: boolean;
|
|
25
31
|
/**
|
|
26
32
|
*
|
|
27
33
|
* @type {string}
|
|
@@ -34,6 +40,12 @@ export interface SocialLoginUser {
|
|
|
34
40
|
* @memberof SocialLoginUser
|
|
35
41
|
*/
|
|
36
42
|
intercomUserHash?: string;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {boolean}
|
|
46
|
+
* @memberof SocialLoginUser
|
|
47
|
+
*/
|
|
48
|
+
isEmailConfirmed?: boolean;
|
|
37
49
|
/**
|
|
38
50
|
*
|
|
39
51
|
* @type {boolean}
|
|
@@ -22,8 +22,10 @@ export function SocialLoginUserFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
22
22
|
}
|
|
23
23
|
return {
|
|
24
24
|
'emailAddress': !exists(json, 'emailAddress') ? undefined : json['emailAddress'],
|
|
25
|
+
'emailConfirmed': !exists(json, 'emailConfirmed') ? undefined : json['emailConfirmed'],
|
|
25
26
|
'firstname': !exists(json, 'firstname') ? undefined : json['firstname'],
|
|
26
27
|
'intercomUserHash': !exists(json, 'intercomUserHash') ? undefined : json['intercomUserHash'],
|
|
28
|
+
'isEmailConfirmed': !exists(json, 'isEmailConfirmed') ? undefined : json['isEmailConfirmed'],
|
|
27
29
|
'isEmailPrivate': !exists(json, 'isEmailPrivate') ? undefined : json['isEmailPrivate'],
|
|
28
30
|
'isTestUser': !exists(json, 'isTestUser') ? undefined : json['isTestUser'],
|
|
29
31
|
'lastname': !exists(json, 'lastname') ? undefined : json['lastname'],
|
|
@@ -44,8 +46,10 @@ export function SocialLoginUserToJSON(value) {
|
|
|
44
46
|
}
|
|
45
47
|
return {
|
|
46
48
|
'emailAddress': value.emailAddress,
|
|
49
|
+
'emailConfirmed': value.emailConfirmed,
|
|
47
50
|
'firstname': value.firstname,
|
|
48
51
|
'intercomUserHash': value.intercomUserHash,
|
|
52
|
+
'isEmailConfirmed': value.isEmailConfirmed,
|
|
49
53
|
'isEmailPrivate': value.isEmailPrivate,
|
|
50
54
|
'isTestUser': value.isTestUser,
|
|
51
55
|
'lastname': value.lastname,
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './AcceptCaseCounterRequest';
|
|
2
|
+
export * from './AcceptParticipantInviteRequest';
|
|
2
3
|
export * from './AccountLevelFee';
|
|
3
4
|
export * from './AccountLevelFeeRequest';
|
|
4
5
|
export * from './AccountLevelFeeResponse';
|
|
@@ -385,6 +386,8 @@ export * from './GetReferralCodeResponse';
|
|
|
385
386
|
export * from './GetReferralCodesResponse';
|
|
386
387
|
export * from './GetReferralsHistoryResponse';
|
|
387
388
|
export * from './GetRegionsWithViolationsResponse';
|
|
389
|
+
export * from './GetSocialProfileRequest';
|
|
390
|
+
export * from './GetSocialProfileResponse';
|
|
388
391
|
export * from './GetStripeChargeResponse';
|
|
389
392
|
export * from './GetStripeChargesResponse';
|
|
390
393
|
export * from './GetStripeConnectedAccountsResponse';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './AcceptCaseCounterRequest';
|
|
2
|
+
export * from './AcceptParticipantInviteRequest';
|
|
2
3
|
export * from './AccountLevelFee';
|
|
3
4
|
export * from './AccountLevelFeeRequest';
|
|
4
5
|
export * from './AccountLevelFeeResponse';
|
|
@@ -385,6 +386,8 @@ export * from './GetReferralCodeResponse';
|
|
|
385
386
|
export * from './GetReferralCodesResponse';
|
|
386
387
|
export * from './GetReferralsHistoryResponse';
|
|
387
388
|
export * from './GetRegionsWithViolationsResponse';
|
|
389
|
+
export * from './GetSocialProfileRequest';
|
|
390
|
+
export * from './GetSocialProfileResponse';
|
|
388
391
|
export * from './GetStripeChargeResponse';
|
|
389
392
|
export * from './GetStripeChargesResponse';
|
|
390
393
|
export * from './GetStripeConnectedAccountsResponse';
|
|
@@ -1283,6 +1283,23 @@ export interface paths {
|
|
|
1283
1283
|
patch?: never;
|
|
1284
1284
|
trace?: never;
|
|
1285
1285
|
};
|
|
1286
|
+
"/api/v1/cases/participants/accept-invite": {
|
|
1287
|
+
parameters: {
|
|
1288
|
+
query?: never;
|
|
1289
|
+
header?: never;
|
|
1290
|
+
path?: never;
|
|
1291
|
+
cookie?: never;
|
|
1292
|
+
};
|
|
1293
|
+
get?: never;
|
|
1294
|
+
/** acceptParticipantInvite */
|
|
1295
|
+
put: operations["acceptParticipantInviteUsingPUT"];
|
|
1296
|
+
post?: never;
|
|
1297
|
+
delete?: never;
|
|
1298
|
+
options?: never;
|
|
1299
|
+
head?: never;
|
|
1300
|
+
patch?: never;
|
|
1301
|
+
trace?: never;
|
|
1302
|
+
};
|
|
1286
1303
|
"/api/v1/cases/{caseId}/participants/invite": {
|
|
1287
1304
|
parameters: {
|
|
1288
1305
|
query?: never;
|
|
@@ -5738,6 +5755,23 @@ export interface paths {
|
|
|
5738
5755
|
patch?: never;
|
|
5739
5756
|
trace?: never;
|
|
5740
5757
|
};
|
|
5758
|
+
"/api/v1/connect/{loginProvider}/get-profile": {
|
|
5759
|
+
parameters: {
|
|
5760
|
+
query?: never;
|
|
5761
|
+
header?: never;
|
|
5762
|
+
path?: never;
|
|
5763
|
+
cookie?: never;
|
|
5764
|
+
};
|
|
5765
|
+
get?: never;
|
|
5766
|
+
put?: never;
|
|
5767
|
+
/** getProfile */
|
|
5768
|
+
post: operations["getProfileUsingPOST"];
|
|
5769
|
+
delete?: never;
|
|
5770
|
+
options?: never;
|
|
5771
|
+
head?: never;
|
|
5772
|
+
patch?: never;
|
|
5773
|
+
trace?: never;
|
|
5774
|
+
};
|
|
5741
5775
|
"/api/v1/lawfirms/{lawfirmId}/paymentmethods": {
|
|
5742
5776
|
parameters: {
|
|
5743
5777
|
query?: never;
|
|
@@ -7259,6 +7293,10 @@ export interface components {
|
|
|
7259
7293
|
/** @enum {string} */
|
|
7260
7294
|
paymentPlanType?: AcceptCaseCounterRequestPaymentPlanType;
|
|
7261
7295
|
};
|
|
7296
|
+
/** AcceptParticipantInviteRequest */
|
|
7297
|
+
AcceptParticipantInviteRequest: {
|
|
7298
|
+
token: string;
|
|
7299
|
+
};
|
|
7262
7300
|
/** AccountLevelFee */
|
|
7263
7301
|
AccountLevelFee: {
|
|
7264
7302
|
/** @enum {string} */
|
|
@@ -7807,7 +7845,7 @@ export interface components {
|
|
|
7807
7845
|
firstName?: string;
|
|
7808
7846
|
lastName?: string;
|
|
7809
7847
|
/** @enum {string} */
|
|
7810
|
-
loginProvider:
|
|
7848
|
+
loginProvider: PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider;
|
|
7811
7849
|
providerToken: string;
|
|
7812
7850
|
};
|
|
7813
7851
|
/** AssociateOAuthAccountResponse */
|
|
@@ -10347,7 +10385,7 @@ export interface components {
|
|
|
10347
10385
|
isTestUser?: boolean;
|
|
10348
10386
|
lastname?: string;
|
|
10349
10387
|
/** @enum {string} */
|
|
10350
|
-
loginProvider?:
|
|
10388
|
+
loginProvider?: PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider;
|
|
10351
10389
|
profilePictureUrl?: string;
|
|
10352
10390
|
roles?: components["schemas"]["UserRoleDomain"][];
|
|
10353
10391
|
unsubscribed?: boolean;
|
|
@@ -11543,6 +11581,17 @@ export interface components {
|
|
|
11543
11581
|
GetRegionsWithViolationsResponse: {
|
|
11544
11582
|
regions?: components["schemas"]["AvailableRegion"][];
|
|
11545
11583
|
};
|
|
11584
|
+
/** GetSocialProfileRequest */
|
|
11585
|
+
GetSocialProfileRequest: {
|
|
11586
|
+
/** @enum {string} */
|
|
11587
|
+
accessType?: GetSocialProfileRequestAccessType;
|
|
11588
|
+
userAccessToken: string;
|
|
11589
|
+
};
|
|
11590
|
+
/** GetSocialProfileResponse */
|
|
11591
|
+
GetSocialProfileResponse: {
|
|
11592
|
+
emailAddress?: string;
|
|
11593
|
+
newAccount?: boolean;
|
|
11594
|
+
};
|
|
11546
11595
|
/** GetStripeChargeResponse */
|
|
11547
11596
|
GetStripeChargeResponse: {
|
|
11548
11597
|
stripeCharge?: components["schemas"]["StripeChargeDomain"];
|
|
@@ -12045,7 +12094,7 @@ export interface components {
|
|
|
12045
12094
|
/** Format: date-time */
|
|
12046
12095
|
loginDateUtc?: string;
|
|
12047
12096
|
/** @enum {string} */
|
|
12048
|
-
socialLoginProvider?:
|
|
12097
|
+
socialLoginProvider?: PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider;
|
|
12049
12098
|
userHandle?: string;
|
|
12050
12099
|
};
|
|
12051
12100
|
/** LastLoginDateModel */
|
|
@@ -13531,7 +13580,7 @@ export interface components {
|
|
|
13531
13580
|
isEmailConfirmed?: boolean;
|
|
13532
13581
|
lastname?: string;
|
|
13533
13582
|
/** @enum {string} */
|
|
13534
|
-
loginProvider?:
|
|
13583
|
+
loginProvider?: PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider;
|
|
13535
13584
|
password?: string;
|
|
13536
13585
|
phoneNumbers?: components["schemas"]["PhoneNumberDomain"][];
|
|
13537
13586
|
shouldOptInForMarketingNotifications?: boolean;
|
|
@@ -14134,7 +14183,7 @@ export interface components {
|
|
|
14134
14183
|
genderType?: CaseGender;
|
|
14135
14184
|
lastname?: string;
|
|
14136
14185
|
/** @enum {string} */
|
|
14137
|
-
loginProvider?:
|
|
14186
|
+
loginProvider?: PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider;
|
|
14138
14187
|
/** Format: int32 */
|
|
14139
14188
|
numBookingCancelations?: number;
|
|
14140
14189
|
/** Format: int32 */
|
|
@@ -14151,7 +14200,7 @@ export interface components {
|
|
|
14151
14200
|
/** RemoveAdditionalUserHandleRequest */
|
|
14152
14201
|
RemoveAdditionalUserHandleRequest: {
|
|
14153
14202
|
/** @enum {string} */
|
|
14154
|
-
loginProvider?:
|
|
14203
|
+
loginProvider?: PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider;
|
|
14155
14204
|
};
|
|
14156
14205
|
/** RemoveCoverageRequest */
|
|
14157
14206
|
RemoveCoverageRequest: {
|
|
@@ -14741,7 +14790,7 @@ export interface components {
|
|
|
14741
14790
|
/** SetPrimaryUserHandleRequest */
|
|
14742
14791
|
SetPrimaryUserHandleRequest: {
|
|
14743
14792
|
/** @enum {string} */
|
|
14744
|
-
loginProvider?:
|
|
14793
|
+
loginProvider?: PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider;
|
|
14745
14794
|
};
|
|
14746
14795
|
/** SetReferralSourceRequest */
|
|
14747
14796
|
SetReferralSourceRequest: {
|
|
@@ -14836,7 +14885,7 @@ export interface components {
|
|
|
14836
14885
|
/** SocialLoginRequest */
|
|
14837
14886
|
SocialLoginRequest: {
|
|
14838
14887
|
/** @enum {string} */
|
|
14839
|
-
accessType?:
|
|
14888
|
+
accessType?: GetSocialProfileRequestAccessType;
|
|
14840
14889
|
/** Format: int64 */
|
|
14841
14890
|
citationId?: number;
|
|
14842
14891
|
/** @enum {string} */
|
|
@@ -14853,6 +14902,7 @@ export interface components {
|
|
|
14853
14902
|
userAccessToken?: string;
|
|
14854
14903
|
/** Format: int32 */
|
|
14855
14904
|
userReferralSourceTypeId?: number;
|
|
14905
|
+
verifyEmailCode?: string;
|
|
14856
14906
|
};
|
|
14857
14907
|
/** SocialLoginResponse */
|
|
14858
14908
|
SocialLoginResponse: {
|
|
@@ -14864,8 +14914,10 @@ export interface components {
|
|
|
14864
14914
|
/** SocialLoginUser */
|
|
14865
14915
|
SocialLoginUser: {
|
|
14866
14916
|
emailAddress?: string;
|
|
14917
|
+
emailConfirmed?: boolean;
|
|
14867
14918
|
firstname?: string;
|
|
14868
14919
|
intercomUserHash?: string;
|
|
14920
|
+
isEmailConfirmed?: boolean;
|
|
14869
14921
|
isEmailPrivate?: boolean;
|
|
14870
14922
|
isTestUser?: boolean;
|
|
14871
14923
|
lastname?: string;
|
|
@@ -15896,7 +15948,7 @@ export interface components {
|
|
|
15896
15948
|
isUserAccountEnabled?: boolean;
|
|
15897
15949
|
lastname?: string;
|
|
15898
15950
|
/** @enum {string} */
|
|
15899
|
-
loginProvider?:
|
|
15951
|
+
loginProvider?: PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider;
|
|
15900
15952
|
/** @enum {string} */
|
|
15901
15953
|
privacyMode?: ActivityFeedModelPrivacyMode;
|
|
15902
15954
|
profilePicture?: string;
|
|
@@ -15979,7 +16031,7 @@ export interface components {
|
|
|
15979
16031
|
formerUserId?: number;
|
|
15980
16032
|
lastLoginAttributes?: components["schemas"]["LastLoginAttributes"];
|
|
15981
16033
|
/** @enum {string} */
|
|
15982
|
-
loginProvider?:
|
|
16034
|
+
loginProvider?: PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider;
|
|
15983
16035
|
merged?: boolean;
|
|
15984
16036
|
primary?: boolean;
|
|
15985
16037
|
profilePictureUrl?: string;
|
|
@@ -16071,7 +16123,7 @@ export interface components {
|
|
|
16071
16123
|
lawfirmId?: number;
|
|
16072
16124
|
lawyerJobTitle?: components["schemas"]["LawfirmJobTitleModel"];
|
|
16073
16125
|
/** @enum {string} */
|
|
16074
|
-
loginProvider?:
|
|
16126
|
+
loginProvider?: PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider;
|
|
16075
16127
|
/** Format: int32 */
|
|
16076
16128
|
numBookingCancelations?: number;
|
|
16077
16129
|
/** Format: int32 */
|
|
@@ -16140,7 +16192,7 @@ export interface components {
|
|
|
16140
16192
|
lawfirmId?: number;
|
|
16141
16193
|
lawyerJobTitle?: components["schemas"]["LawfirmJobTitleModelReq"];
|
|
16142
16194
|
/** @enum {string} */
|
|
16143
|
-
loginProvider?:
|
|
16195
|
+
loginProvider?: PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider;
|
|
16144
16196
|
/** Format: int32 */
|
|
16145
16197
|
numBookingCancelations?: number;
|
|
16146
16198
|
/** Format: int32 */
|
|
@@ -16210,7 +16262,7 @@ export interface components {
|
|
|
16210
16262
|
lawfirmId?: number;
|
|
16211
16263
|
lawyerJobTitle?: components["schemas"]["LawfirmJobTitleModelRes"];
|
|
16212
16264
|
/** @enum {string} */
|
|
16213
|
-
loginProvider?:
|
|
16265
|
+
loginProvider?: PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider;
|
|
16214
16266
|
/** Format: int32 */
|
|
16215
16267
|
numBookingCancelations?: number;
|
|
16216
16268
|
/** Format: int32 */
|
|
@@ -20810,6 +20862,56 @@ export interface operations {
|
|
|
20810
20862
|
};
|
|
20811
20863
|
};
|
|
20812
20864
|
};
|
|
20865
|
+
acceptParticipantInviteUsingPUT: {
|
|
20866
|
+
parameters: {
|
|
20867
|
+
query?: never;
|
|
20868
|
+
header?: never;
|
|
20869
|
+
path?: never;
|
|
20870
|
+
cookie?: never;
|
|
20871
|
+
};
|
|
20872
|
+
requestBody?: {
|
|
20873
|
+
content: {
|
|
20874
|
+
"application/json": components["schemas"]["AcceptParticipantInviteRequest"];
|
|
20875
|
+
};
|
|
20876
|
+
};
|
|
20877
|
+
responses: {
|
|
20878
|
+
/** @description OK */
|
|
20879
|
+
200: {
|
|
20880
|
+
headers: {
|
|
20881
|
+
[name: string]: unknown;
|
|
20882
|
+
};
|
|
20883
|
+
content?: never;
|
|
20884
|
+
};
|
|
20885
|
+
/** @description Created */
|
|
20886
|
+
201: {
|
|
20887
|
+
headers: {
|
|
20888
|
+
[name: string]: unknown;
|
|
20889
|
+
};
|
|
20890
|
+
content?: never;
|
|
20891
|
+
};
|
|
20892
|
+
/** @description Unauthorized */
|
|
20893
|
+
401: {
|
|
20894
|
+
headers: {
|
|
20895
|
+
[name: string]: unknown;
|
|
20896
|
+
};
|
|
20897
|
+
content?: never;
|
|
20898
|
+
};
|
|
20899
|
+
/** @description Forbidden */
|
|
20900
|
+
403: {
|
|
20901
|
+
headers: {
|
|
20902
|
+
[name: string]: unknown;
|
|
20903
|
+
};
|
|
20904
|
+
content?: never;
|
|
20905
|
+
};
|
|
20906
|
+
/** @description Not Found */
|
|
20907
|
+
404: {
|
|
20908
|
+
headers: {
|
|
20909
|
+
[name: string]: unknown;
|
|
20910
|
+
};
|
|
20911
|
+
content?: never;
|
|
20912
|
+
};
|
|
20913
|
+
};
|
|
20914
|
+
};
|
|
20813
20915
|
inviteCaseParticipantUsingPOST: {
|
|
20814
20916
|
parameters: {
|
|
20815
20917
|
query?: never;
|
|
@@ -35443,6 +35545,61 @@ export interface operations {
|
|
|
35443
35545
|
};
|
|
35444
35546
|
};
|
|
35445
35547
|
};
|
|
35548
|
+
getProfileUsingPOST: {
|
|
35549
|
+
parameters: {
|
|
35550
|
+
query?: never;
|
|
35551
|
+
header?: never;
|
|
35552
|
+
path: {
|
|
35553
|
+
/** @description loginProvider */
|
|
35554
|
+
loginProvider: PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider;
|
|
35555
|
+
};
|
|
35556
|
+
cookie?: never;
|
|
35557
|
+
};
|
|
35558
|
+
requestBody?: {
|
|
35559
|
+
content: {
|
|
35560
|
+
"application/json": components["schemas"]["GetSocialProfileRequest"];
|
|
35561
|
+
};
|
|
35562
|
+
};
|
|
35563
|
+
responses: {
|
|
35564
|
+
/** @description OK */
|
|
35565
|
+
200: {
|
|
35566
|
+
headers: {
|
|
35567
|
+
[name: string]: unknown;
|
|
35568
|
+
};
|
|
35569
|
+
content: {
|
|
35570
|
+
"*/*": components["schemas"]["GetSocialProfileResponse"];
|
|
35571
|
+
};
|
|
35572
|
+
};
|
|
35573
|
+
/** @description Created */
|
|
35574
|
+
201: {
|
|
35575
|
+
headers: {
|
|
35576
|
+
[name: string]: unknown;
|
|
35577
|
+
};
|
|
35578
|
+
content?: never;
|
|
35579
|
+
};
|
|
35580
|
+
/** @description Unauthorized */
|
|
35581
|
+
401: {
|
|
35582
|
+
headers: {
|
|
35583
|
+
[name: string]: unknown;
|
|
35584
|
+
};
|
|
35585
|
+
content?: never;
|
|
35586
|
+
};
|
|
35587
|
+
/** @description Forbidden */
|
|
35588
|
+
403: {
|
|
35589
|
+
headers: {
|
|
35590
|
+
[name: string]: unknown;
|
|
35591
|
+
};
|
|
35592
|
+
content?: never;
|
|
35593
|
+
};
|
|
35594
|
+
/** @description Not Found */
|
|
35595
|
+
404: {
|
|
35596
|
+
headers: {
|
|
35597
|
+
[name: string]: unknown;
|
|
35598
|
+
};
|
|
35599
|
+
content?: never;
|
|
35600
|
+
};
|
|
35601
|
+
};
|
|
35602
|
+
};
|
|
35446
35603
|
getLawfirmPaymentMethodsUsingGET: {
|
|
35447
35604
|
parameters: {
|
|
35448
35605
|
query?: never;
|
|
@@ -38320,7 +38477,7 @@ export interface operations {
|
|
|
38320
38477
|
/** @description email */
|
|
38321
38478
|
email?: string;
|
|
38322
38479
|
/** @description loginProvider */
|
|
38323
|
-
loginProvider?:
|
|
38480
|
+
loginProvider?: PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider;
|
|
38324
38481
|
};
|
|
38325
38482
|
header?: never;
|
|
38326
38483
|
path?: never;
|
|
@@ -40836,6 +40993,15 @@ export declare enum PathsApiV1ReferralsSourcesGetParametersQueryFlavor {
|
|
|
40836
40993
|
ALL = "ALL",
|
|
40837
40994
|
ENABLED = "ENABLED"
|
|
40838
40995
|
}
|
|
40996
|
+
export declare enum PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider {
|
|
40997
|
+
APPLE = "APPLE",
|
|
40998
|
+
EMAIL = "EMAIL",
|
|
40999
|
+
FACEBOOK = "FACEBOOK",
|
|
41000
|
+
GOOGLE = "GOOGLE",
|
|
41001
|
+
PHONE = "PHONE",
|
|
41002
|
+
TWITTER = "TWITTER",
|
|
41003
|
+
UNKNOWN = "UNKNOWN"
|
|
41004
|
+
}
|
|
40839
41005
|
export declare enum PathsApiV1RedirectsGetParametersQueryPageType {
|
|
40840
41006
|
DEBUG = "DEBUG",
|
|
40841
41007
|
SEO = "SEO",
|
|
@@ -40869,15 +41035,6 @@ export declare enum PathsApiV1UsersSendVerificationCodePostParametersQueryVerifi
|
|
|
40869
41035
|
CODE_ONLY = "CODE_ONLY",
|
|
40870
41036
|
WEB_LINK = "WEB_LINK"
|
|
40871
41037
|
}
|
|
40872
|
-
export declare enum PathsApiV1UsersVerifyAccountPutParametersQueryLoginProvider {
|
|
40873
|
-
APPLE = "APPLE",
|
|
40874
|
-
EMAIL = "EMAIL",
|
|
40875
|
-
FACEBOOK = "FACEBOOK",
|
|
40876
|
-
GOOGLE = "GOOGLE",
|
|
40877
|
-
PHONE = "PHONE",
|
|
40878
|
-
TWITTER = "TWITTER",
|
|
40879
|
-
UNKNOWN = "UNKNOWN"
|
|
40880
|
-
}
|
|
40881
41038
|
export declare enum PathsApiV1UsersUserIdSocialProfilesDeleteParametersQueryPlatform {
|
|
40882
41039
|
INSTAGRAM = "INSTAGRAM",
|
|
40883
41040
|
SNAPCHAT = "SNAPCHAT",
|
|
@@ -41321,6 +41478,10 @@ export declare enum GetReferralCodeResponseOwnerType {
|
|
|
41321
41478
|
LAWFIRM = "LAWFIRM",
|
|
41322
41479
|
OTR = "OTR"
|
|
41323
41480
|
}
|
|
41481
|
+
export declare enum GetSocialProfileRequestAccessType {
|
|
41482
|
+
classic = "classic",
|
|
41483
|
+
limited = "limited"
|
|
41484
|
+
}
|
|
41324
41485
|
export declare enum HypotheticalPlanEligibilityModelHypotheticalEligibility {
|
|
41325
41486
|
FULLY_ELIGIBLE = "FULLY_ELIGIBLE",
|
|
41326
41487
|
NOT_ELIGIBLE = "NOT_ELIGIBLE",
|
|
@@ -41604,10 +41765,6 @@ export declare enum SettingResponseType {
|
|
|
41604
41765
|
List = "List",
|
|
41605
41766
|
String = "String"
|
|
41606
41767
|
}
|
|
41607
|
-
export declare enum SocialLoginRequestAccessType {
|
|
41608
|
-
classic = "classic",
|
|
41609
|
-
limited = "limited"
|
|
41610
|
-
}
|
|
41611
41768
|
export declare enum SourceDelivered_as {
|
|
41612
41769
|
ADMIN_INITIATED = "ADMIN_INITIATED",
|
|
41613
41770
|
INBOUND = "INBOUND",
|
|
@@ -439,6 +439,16 @@ export var PathsApiV1ReferralsSourcesGetParametersQueryFlavor;
|
|
|
439
439
|
PathsApiV1ReferralsSourcesGetParametersQueryFlavor["ALL"] = "ALL";
|
|
440
440
|
PathsApiV1ReferralsSourcesGetParametersQueryFlavor["ENABLED"] = "ENABLED";
|
|
441
441
|
})(PathsApiV1ReferralsSourcesGetParametersQueryFlavor || (PathsApiV1ReferralsSourcesGetParametersQueryFlavor = {}));
|
|
442
|
+
export var PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider;
|
|
443
|
+
(function (PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider) {
|
|
444
|
+
PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider["APPLE"] = "APPLE";
|
|
445
|
+
PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider["EMAIL"] = "EMAIL";
|
|
446
|
+
PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider["FACEBOOK"] = "FACEBOOK";
|
|
447
|
+
PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider["GOOGLE"] = "GOOGLE";
|
|
448
|
+
PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider["PHONE"] = "PHONE";
|
|
449
|
+
PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider["TWITTER"] = "TWITTER";
|
|
450
|
+
PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider["UNKNOWN"] = "UNKNOWN";
|
|
451
|
+
})(PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider || (PathsApiV1ConnectLoginProviderGetProfilePostParametersPathLoginProvider = {}));
|
|
442
452
|
export var PathsApiV1RedirectsGetParametersQueryPageType;
|
|
443
453
|
(function (PathsApiV1RedirectsGetParametersQueryPageType) {
|
|
444
454
|
PathsApiV1RedirectsGetParametersQueryPageType["DEBUG"] = "DEBUG";
|
|
@@ -475,16 +485,6 @@ export var PathsApiV1UsersSendVerificationCodePostParametersQueryVerificationMet
|
|
|
475
485
|
PathsApiV1UsersSendVerificationCodePostParametersQueryVerificationMethod["CODE_ONLY"] = "CODE_ONLY";
|
|
476
486
|
PathsApiV1UsersSendVerificationCodePostParametersQueryVerificationMethod["WEB_LINK"] = "WEB_LINK";
|
|
477
487
|
})(PathsApiV1UsersSendVerificationCodePostParametersQueryVerificationMethod || (PathsApiV1UsersSendVerificationCodePostParametersQueryVerificationMethod = {}));
|
|
478
|
-
export var PathsApiV1UsersVerifyAccountPutParametersQueryLoginProvider;
|
|
479
|
-
(function (PathsApiV1UsersVerifyAccountPutParametersQueryLoginProvider) {
|
|
480
|
-
PathsApiV1UsersVerifyAccountPutParametersQueryLoginProvider["APPLE"] = "APPLE";
|
|
481
|
-
PathsApiV1UsersVerifyAccountPutParametersQueryLoginProvider["EMAIL"] = "EMAIL";
|
|
482
|
-
PathsApiV1UsersVerifyAccountPutParametersQueryLoginProvider["FACEBOOK"] = "FACEBOOK";
|
|
483
|
-
PathsApiV1UsersVerifyAccountPutParametersQueryLoginProvider["GOOGLE"] = "GOOGLE";
|
|
484
|
-
PathsApiV1UsersVerifyAccountPutParametersQueryLoginProvider["PHONE"] = "PHONE";
|
|
485
|
-
PathsApiV1UsersVerifyAccountPutParametersQueryLoginProvider["TWITTER"] = "TWITTER";
|
|
486
|
-
PathsApiV1UsersVerifyAccountPutParametersQueryLoginProvider["UNKNOWN"] = "UNKNOWN";
|
|
487
|
-
})(PathsApiV1UsersVerifyAccountPutParametersQueryLoginProvider || (PathsApiV1UsersVerifyAccountPutParametersQueryLoginProvider = {}));
|
|
488
488
|
export var PathsApiV1UsersUserIdSocialProfilesDeleteParametersQueryPlatform;
|
|
489
489
|
(function (PathsApiV1UsersUserIdSocialProfilesDeleteParametersQueryPlatform) {
|
|
490
490
|
PathsApiV1UsersUserIdSocialProfilesDeleteParametersQueryPlatform["INSTAGRAM"] = "INSTAGRAM";
|
|
@@ -986,6 +986,11 @@ export var GetReferralCodeResponseOwnerType;
|
|
|
986
986
|
GetReferralCodeResponseOwnerType["LAWFIRM"] = "LAWFIRM";
|
|
987
987
|
GetReferralCodeResponseOwnerType["OTR"] = "OTR";
|
|
988
988
|
})(GetReferralCodeResponseOwnerType || (GetReferralCodeResponseOwnerType = {}));
|
|
989
|
+
export var GetSocialProfileRequestAccessType;
|
|
990
|
+
(function (GetSocialProfileRequestAccessType) {
|
|
991
|
+
GetSocialProfileRequestAccessType["classic"] = "classic";
|
|
992
|
+
GetSocialProfileRequestAccessType["limited"] = "limited";
|
|
993
|
+
})(GetSocialProfileRequestAccessType || (GetSocialProfileRequestAccessType = {}));
|
|
989
994
|
export var HypotheticalPlanEligibilityModelHypotheticalEligibility;
|
|
990
995
|
(function (HypotheticalPlanEligibilityModelHypotheticalEligibility) {
|
|
991
996
|
HypotheticalPlanEligibilityModelHypotheticalEligibility["FULLY_ELIGIBLE"] = "FULLY_ELIGIBLE";
|
|
@@ -1311,11 +1316,6 @@ export var SettingResponseType;
|
|
|
1311
1316
|
SettingResponseType["List"] = "List";
|
|
1312
1317
|
SettingResponseType["String"] = "String";
|
|
1313
1318
|
})(SettingResponseType || (SettingResponseType = {}));
|
|
1314
|
-
export var SocialLoginRequestAccessType;
|
|
1315
|
-
(function (SocialLoginRequestAccessType) {
|
|
1316
|
-
SocialLoginRequestAccessType["classic"] = "classic";
|
|
1317
|
-
SocialLoginRequestAccessType["limited"] = "limited";
|
|
1318
|
-
})(SocialLoginRequestAccessType || (SocialLoginRequestAccessType = {}));
|
|
1319
1319
|
export var SourceDelivered_as;
|
|
1320
1320
|
(function (SourceDelivered_as) {
|
|
1321
1321
|
SourceDelivered_as["ADMIN_INITIATED"] = "ADMIN_INITIATED";
|