@otr-app/shared-backend-generated-client 2.5.53 → 2.5.54
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/model/socialLoginRequest.ts +6 -0
- package/dist/typescript/model/SocialLoginRequest.d.ts +5 -0
- package/dist/typescript/model/SocialLoginRequest.js +5 -0
- package/dist/typescript-fetch/models/SocialLoginRequest.d.ts +14 -0
- package/dist/typescript-fetch/models/SocialLoginRequest.js +11 -0
- package/dist/typescript-open-api/otr-backend.d.ts +6 -0
- package/dist/typescript-open-api/otr-backend.js +5 -0
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
export interface SocialLoginRequest {
|
|
15
|
+
accessType?: SocialLoginRequest.AccessTypeEnum;
|
|
15
16
|
citationId?: number;
|
|
16
17
|
clientType?: SocialLoginRequest.ClientTypeEnum;
|
|
17
18
|
fingerPrintId?: string;
|
|
@@ -25,6 +26,11 @@ export interface SocialLoginRequest {
|
|
|
25
26
|
userReferralSourceTypeId?: number;
|
|
26
27
|
}
|
|
27
28
|
export namespace SocialLoginRequest {
|
|
29
|
+
export type AccessTypeEnum = 'classic' | 'limited';
|
|
30
|
+
export const AccessTypeEnum = {
|
|
31
|
+
Classic: 'classic' as AccessTypeEnum,
|
|
32
|
+
Limited: 'limited' as AccessTypeEnum
|
|
33
|
+
};
|
|
28
34
|
export type ClientTypeEnum = 'ANDROID' | 'DESKTOP_WEBAPP' | 'DMV_GO' | 'DMV_ORG' | 'EMAIL' | 'FRESH_DESK' | 'IOS' | 'LOCALHOST' | 'MOBILE_WEBAPP' | 'OTR_ADMIN_CONSOLE' | 'OTR_ADMIN_CONSOLE_DEVO' | 'OTR_ADMIN_CONSOLE_LOCALHOST' | 'OTR_EXPLORER' | 'OTR_JOB_SCHEDULER' | 'OTR_LAWFIRM_PORTAL' | 'OTR_LAWFIRM_PORTAL_DEVO' | 'OTR_LAWFIRM_PORTAL_LOCALHOST' | 'OTR_WEBSITE' | 'OTR_WEBSITE_DEVO' | 'OTR_WEBSITE_LOCALHOST' | 'OTR_WIDGET' | 'UNKNOWN';
|
|
29
35
|
export const ClientTypeEnum = {
|
|
30
36
|
Android: 'ANDROID' as ClientTypeEnum,
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
export interface SocialLoginRequest {
|
|
13
|
+
"accessType"?: SocialLoginRequest.AccessTypeEnum;
|
|
13
14
|
"citationId"?: number;
|
|
14
15
|
"clientType"?: SocialLoginRequest.ClientTypeEnum;
|
|
15
16
|
"fingerPrintId"?: string;
|
|
@@ -25,6 +26,10 @@ export interface SocialLoginRequest {
|
|
|
25
26
|
"userReferralSourceTypeId"?: number;
|
|
26
27
|
}
|
|
27
28
|
export declare namespace SocialLoginRequest {
|
|
29
|
+
enum AccessTypeEnum {
|
|
30
|
+
Classic,
|
|
31
|
+
Limited
|
|
32
|
+
}
|
|
28
33
|
enum ClientTypeEnum {
|
|
29
34
|
ANDROID,
|
|
30
35
|
DESKTOPWEBAPP,
|
|
@@ -11,6 +11,11 @@
|
|
|
11
11
|
*/
|
|
12
12
|
export var SocialLoginRequest;
|
|
13
13
|
(function (SocialLoginRequest) {
|
|
14
|
+
let AccessTypeEnum;
|
|
15
|
+
(function (AccessTypeEnum) {
|
|
16
|
+
AccessTypeEnum[AccessTypeEnum["Classic"] = 'classic'] = "Classic";
|
|
17
|
+
AccessTypeEnum[AccessTypeEnum["Limited"] = 'limited'] = "Limited";
|
|
18
|
+
})(AccessTypeEnum = SocialLoginRequest.AccessTypeEnum || (SocialLoginRequest.AccessTypeEnum = {}));
|
|
14
19
|
let ClientTypeEnum;
|
|
15
20
|
(function (ClientTypeEnum) {
|
|
16
21
|
ClientTypeEnum[ClientTypeEnum["ANDROID"] = 'ANDROID'] = "ANDROID";
|
|
@@ -15,6 +15,12 @@
|
|
|
15
15
|
* @interface SocialLoginRequest
|
|
16
16
|
*/
|
|
17
17
|
export interface SocialLoginRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SocialLoginRequest
|
|
22
|
+
*/
|
|
23
|
+
accessType?: SocialLoginRequestAccessTypeEnum;
|
|
18
24
|
/**
|
|
19
25
|
*
|
|
20
26
|
* @type {number}
|
|
@@ -91,6 +97,14 @@ export declare function SocialLoginRequestToJSON(value?: SocialLoginRequest | nu
|
|
|
91
97
|
* @export
|
|
92
98
|
* @enum {string}
|
|
93
99
|
*/
|
|
100
|
+
export declare enum SocialLoginRequestAccessTypeEnum {
|
|
101
|
+
Classic = "classic",
|
|
102
|
+
Limited = "limited"
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* @export
|
|
106
|
+
* @enum {string}
|
|
107
|
+
*/
|
|
94
108
|
export declare enum SocialLoginRequestClientTypeEnum {
|
|
95
109
|
ANDROID = "ANDROID",
|
|
96
110
|
DESKTOPWEBAPP = "DESKTOP_WEBAPP",
|
|
@@ -20,6 +20,7 @@ export function SocialLoginRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
20
20
|
return json;
|
|
21
21
|
}
|
|
22
22
|
return {
|
|
23
|
+
'accessType': !exists(json, 'accessType') ? undefined : json['accessType'],
|
|
23
24
|
'citationId': !exists(json, 'citationId') ? undefined : json['citationId'],
|
|
24
25
|
'clientType': !exists(json, 'clientType') ? undefined : json['clientType'],
|
|
25
26
|
'fingerPrintId': !exists(json, 'fingerPrintId') ? undefined : json['fingerPrintId'],
|
|
@@ -41,6 +42,7 @@ export function SocialLoginRequestToJSON(value) {
|
|
|
41
42
|
return null;
|
|
42
43
|
}
|
|
43
44
|
return {
|
|
45
|
+
'accessType': value.accessType,
|
|
44
46
|
'citationId': value.citationId,
|
|
45
47
|
'clientType': value.clientType,
|
|
46
48
|
'fingerPrintId': value.fingerPrintId,
|
|
@@ -58,6 +60,15 @@ export function SocialLoginRequestToJSON(value) {
|
|
|
58
60
|
* @export
|
|
59
61
|
* @enum {string}
|
|
60
62
|
*/
|
|
63
|
+
export var SocialLoginRequestAccessTypeEnum;
|
|
64
|
+
(function (SocialLoginRequestAccessTypeEnum) {
|
|
65
|
+
SocialLoginRequestAccessTypeEnum["Classic"] = "classic";
|
|
66
|
+
SocialLoginRequestAccessTypeEnum["Limited"] = "limited";
|
|
67
|
+
})(SocialLoginRequestAccessTypeEnum || (SocialLoginRequestAccessTypeEnum = {}));
|
|
68
|
+
/**
|
|
69
|
+
* @export
|
|
70
|
+
* @enum {string}
|
|
71
|
+
*/
|
|
61
72
|
export var SocialLoginRequestClientTypeEnum;
|
|
62
73
|
(function (SocialLoginRequestClientTypeEnum) {
|
|
63
74
|
SocialLoginRequestClientTypeEnum["ANDROID"] = "ANDROID";
|
|
@@ -14630,6 +14630,8 @@ export interface components {
|
|
|
14630
14630
|
};
|
|
14631
14631
|
/** SocialLoginRequest */
|
|
14632
14632
|
SocialLoginRequest: {
|
|
14633
|
+
/** @enum {string} */
|
|
14634
|
+
accessType?: SocialLoginRequestAccessType;
|
|
14633
14635
|
/** Format: int64 */
|
|
14634
14636
|
citationId?: number;
|
|
14635
14637
|
/** @enum {string} */
|
|
@@ -41143,6 +41145,10 @@ export declare enum SettingResponseType {
|
|
|
41143
41145
|
List = "List",
|
|
41144
41146
|
String = "String"
|
|
41145
41147
|
}
|
|
41148
|
+
export declare enum SocialLoginRequestAccessType {
|
|
41149
|
+
classic = "classic",
|
|
41150
|
+
limited = "limited"
|
|
41151
|
+
}
|
|
41146
41152
|
export declare enum SourceDelivered_as {
|
|
41147
41153
|
ADMIN_INITIATED = "ADMIN_INITIATED",
|
|
41148
41154
|
INBOUND = "INBOUND",
|
|
@@ -1285,6 +1285,11 @@ export var SettingResponseType;
|
|
|
1285
1285
|
SettingResponseType["List"] = "List";
|
|
1286
1286
|
SettingResponseType["String"] = "String";
|
|
1287
1287
|
})(SettingResponseType || (SettingResponseType = {}));
|
|
1288
|
+
export var SocialLoginRequestAccessType;
|
|
1289
|
+
(function (SocialLoginRequestAccessType) {
|
|
1290
|
+
SocialLoginRequestAccessType["classic"] = "classic";
|
|
1291
|
+
SocialLoginRequestAccessType["limited"] = "limited";
|
|
1292
|
+
})(SocialLoginRequestAccessType || (SocialLoginRequestAccessType = {}));
|
|
1288
1293
|
export var SourceDelivered_as;
|
|
1289
1294
|
(function (SourceDelivered_as) {
|
|
1290
1295
|
SourceDelivered_as["ADMIN_INITIATED"] = "ADMIN_INITIATED";
|