@otr-app/shared-backend-generated-client 2.4.63 → 2.4.65
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 +4 -0
- package/dist/angular/api/caseCounterOfferController.service.ts +17 -4
- package/dist/angular/model/acceptCaseCounterRequest.ts +17 -0
- package/dist/angular/model/getLastLoginResponse.ts +3 -0
- package/dist/angular/model/lastLoginAttributes.ts +18 -0
- package/dist/angular/model/lastLoginDateByUserAccount.ts +58 -0
- package/dist/angular/model/lastLoginItem.ts +46 -0
- package/dist/angular/model/models.ts +4 -0
- package/dist/angular/model/userAccountModel.ts +2 -0
- package/dist/angular/model/userDomain.ts +1 -0
- package/dist/angular/model/userDomainReq.ts +1 -0
- package/dist/angular/model/userDomainRes.ts +1 -0
- package/dist/otrBackendService.js +5 -0
- package/dist/otrBackendService.min.js +1 -1
- package/dist/typescript/api/CaseCounterOfferControllerApi.d.ts +2 -1
- package/dist/typescript/api/CaseCounterOfferControllerApi.js +3 -1
- package/dist/typescript/model/AcceptCaseCounterRequest.d.ts +14 -0
- package/dist/typescript/model/AcceptCaseCounterRequest.js +12 -0
- package/dist/typescript/model/GetLastLoginResponse.d.ts +2 -0
- package/dist/typescript/model/LastLoginAttributes.d.ts +15 -0
- package/dist/typescript/model/LastLoginAttributes.js +12 -0
- package/dist/typescript/model/LastLoginDateByUserAccount.d.ts +52 -0
- package/dist/typescript/model/LastLoginDateByUserAccount.js +49 -0
- package/dist/typescript/model/LastLoginItem.d.ts +41 -0
- package/dist/typescript/model/LastLoginItem.js +39 -0
- package/dist/typescript/model/UserAccountModel.d.ts +2 -0
- package/dist/typescript/model/UserDomain.d.ts +1 -0
- package/dist/typescript/model/UserDomainReq.d.ts +1 -0
- package/dist/typescript/model/UserDomainRes.d.ts +1 -0
- package/dist/typescript/model/models.d.ts +4 -0
- package/dist/typescript/model/models.js +4 -0
- package/dist/typescript-fetch/apis/CaseCounterOfferControllerApi.d.ts +2 -1
- package/dist/typescript-fetch/apis/CaseCounterOfferControllerApi.js +3 -1
- package/dist/typescript-fetch/models/AcceptCaseCounterRequest.d.ts +27 -0
- package/dist/typescript-fetch/models/AcceptCaseCounterRequest.js +35 -0
- package/dist/typescript-fetch/models/GetLastLoginResponse.d.ts +13 -1
- package/dist/typescript-fetch/models/GetLastLoginResponse.js +5 -1
- package/dist/typescript-fetch/models/LastLoginAttributes.d.ts +28 -0
- package/dist/typescript-fetch/models/LastLoginAttributes.js +37 -0
- package/dist/typescript-fetch/models/LastLoginDateByUserAccount.d.ts +86 -0
- package/dist/typescript-fetch/models/LastLoginDateByUserAccount.js +85 -0
- package/dist/typescript-fetch/models/LastLoginItem.d.ts +61 -0
- package/dist/typescript-fetch/models/LastLoginItem.js +67 -0
- package/dist/typescript-fetch/models/UserAccountModel.d.ts +7 -0
- package/dist/typescript-fetch/models/UserAccountModel.js +3 -0
- package/dist/typescript-fetch/models/UserDomain.d.ts +6 -0
- package/dist/typescript-fetch/models/UserDomain.js +2 -0
- package/dist/typescript-fetch/models/UserDomainReq.d.ts +6 -0
- package/dist/typescript-fetch/models/UserDomainReq.js +2 -0
- package/dist/typescript-fetch/models/UserDomainRes.d.ts +6 -0
- package/dist/typescript-fetch/models/UserDomainRes.js +2 -0
- package/dist/typescript-fetch/models/index.d.ts +4 -0
- package/dist/typescript-fetch/models/index.js +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface LastLoginItem
|
|
16
|
+
*/
|
|
17
|
+
export interface LastLoginItem {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof LastLoginItem
|
|
22
|
+
*/
|
|
23
|
+
clientType?: LastLoginItemClientTypeEnum;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {Date}
|
|
27
|
+
* @memberof LastLoginItem
|
|
28
|
+
*/
|
|
29
|
+
lastLoginDateUtc?: Date;
|
|
30
|
+
}
|
|
31
|
+
export declare function LastLoginItemFromJSON(json: any): LastLoginItem;
|
|
32
|
+
export declare function LastLoginItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): LastLoginItem;
|
|
33
|
+
export declare function LastLoginItemToJSON(value?: LastLoginItem | null): any;
|
|
34
|
+
/**
|
|
35
|
+
* @export
|
|
36
|
+
* @enum {string}
|
|
37
|
+
*/
|
|
38
|
+
export declare enum LastLoginItemClientTypeEnum {
|
|
39
|
+
ANDROID = "ANDROID",
|
|
40
|
+
DESKTOPWEBAPP = "DESKTOP_WEBAPP",
|
|
41
|
+
DMVGO = "DMV_GO",
|
|
42
|
+
DMVORG = "DMV_ORG",
|
|
43
|
+
EMAIL = "EMAIL",
|
|
44
|
+
FRESHDESK = "FRESH_DESK",
|
|
45
|
+
IOS = "IOS",
|
|
46
|
+
LOCALHOST = "LOCALHOST",
|
|
47
|
+
MOBILEWEBAPP = "MOBILE_WEBAPP",
|
|
48
|
+
OTRADMINCONSOLE = "OTR_ADMIN_CONSOLE",
|
|
49
|
+
OTRADMINCONSOLEDEVO = "OTR_ADMIN_CONSOLE_DEVO",
|
|
50
|
+
OTRADMINCONSOLELOCALHOST = "OTR_ADMIN_CONSOLE_LOCALHOST",
|
|
51
|
+
OTREXPLORER = "OTR_EXPLORER",
|
|
52
|
+
OTRJOBSCHEDULER = "OTR_JOB_SCHEDULER",
|
|
53
|
+
OTRLAWFIRMPORTAL = "OTR_LAWFIRM_PORTAL",
|
|
54
|
+
OTRLAWFIRMPORTALDEVO = "OTR_LAWFIRM_PORTAL_DEVO",
|
|
55
|
+
OTRLAWFIRMPORTALLOCALHOST = "OTR_LAWFIRM_PORTAL_LOCALHOST",
|
|
56
|
+
OTRWEBSITE = "OTR_WEBSITE",
|
|
57
|
+
OTRWEBSITEDEVO = "OTR_WEBSITE_DEVO",
|
|
58
|
+
OTRWEBSITELOCALHOST = "OTR_WEBSITE_LOCALHOST",
|
|
59
|
+
OTRWIDGET = "OTR_WIDGET",
|
|
60
|
+
UNKNOWN = "UNKNOWN"
|
|
61
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OffTheRecord Rest Service API - Devo
|
|
5
|
+
* A service to handle your traffic tickets
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { exists } from '../runtime';
|
|
15
|
+
export function LastLoginItemFromJSON(json) {
|
|
16
|
+
return LastLoginItemFromJSONTyped(json, false);
|
|
17
|
+
}
|
|
18
|
+
export function LastLoginItemFromJSONTyped(json, ignoreDiscriminator) {
|
|
19
|
+
if ((json === undefined) || (json === null)) {
|
|
20
|
+
return json;
|
|
21
|
+
}
|
|
22
|
+
return {
|
|
23
|
+
'clientType': !exists(json, 'clientType') ? undefined : json['clientType'],
|
|
24
|
+
'lastLoginDateUtc': !exists(json, 'lastLoginDateUtc') ? undefined : (new Date(json['lastLoginDateUtc'])),
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
export function LastLoginItemToJSON(value) {
|
|
28
|
+
if (value === undefined) {
|
|
29
|
+
return undefined;
|
|
30
|
+
}
|
|
31
|
+
if (value === null) {
|
|
32
|
+
return null;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'clientType': value.clientType,
|
|
36
|
+
'lastLoginDateUtc': value.lastLoginDateUtc === undefined ? undefined : (value.lastLoginDateUtc.toISOString()),
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* @export
|
|
41
|
+
* @enum {string}
|
|
42
|
+
*/
|
|
43
|
+
export var LastLoginItemClientTypeEnum;
|
|
44
|
+
(function (LastLoginItemClientTypeEnum) {
|
|
45
|
+
LastLoginItemClientTypeEnum["ANDROID"] = "ANDROID";
|
|
46
|
+
LastLoginItemClientTypeEnum["DESKTOPWEBAPP"] = "DESKTOP_WEBAPP";
|
|
47
|
+
LastLoginItemClientTypeEnum["DMVGO"] = "DMV_GO";
|
|
48
|
+
LastLoginItemClientTypeEnum["DMVORG"] = "DMV_ORG";
|
|
49
|
+
LastLoginItemClientTypeEnum["EMAIL"] = "EMAIL";
|
|
50
|
+
LastLoginItemClientTypeEnum["FRESHDESK"] = "FRESH_DESK";
|
|
51
|
+
LastLoginItemClientTypeEnum["IOS"] = "IOS";
|
|
52
|
+
LastLoginItemClientTypeEnum["LOCALHOST"] = "LOCALHOST";
|
|
53
|
+
LastLoginItemClientTypeEnum["MOBILEWEBAPP"] = "MOBILE_WEBAPP";
|
|
54
|
+
LastLoginItemClientTypeEnum["OTRADMINCONSOLE"] = "OTR_ADMIN_CONSOLE";
|
|
55
|
+
LastLoginItemClientTypeEnum["OTRADMINCONSOLEDEVO"] = "OTR_ADMIN_CONSOLE_DEVO";
|
|
56
|
+
LastLoginItemClientTypeEnum["OTRADMINCONSOLELOCALHOST"] = "OTR_ADMIN_CONSOLE_LOCALHOST";
|
|
57
|
+
LastLoginItemClientTypeEnum["OTREXPLORER"] = "OTR_EXPLORER";
|
|
58
|
+
LastLoginItemClientTypeEnum["OTRJOBSCHEDULER"] = "OTR_JOB_SCHEDULER";
|
|
59
|
+
LastLoginItemClientTypeEnum["OTRLAWFIRMPORTAL"] = "OTR_LAWFIRM_PORTAL";
|
|
60
|
+
LastLoginItemClientTypeEnum["OTRLAWFIRMPORTALDEVO"] = "OTR_LAWFIRM_PORTAL_DEVO";
|
|
61
|
+
LastLoginItemClientTypeEnum["OTRLAWFIRMPORTALLOCALHOST"] = "OTR_LAWFIRM_PORTAL_LOCALHOST";
|
|
62
|
+
LastLoginItemClientTypeEnum["OTRWEBSITE"] = "OTR_WEBSITE";
|
|
63
|
+
LastLoginItemClientTypeEnum["OTRWEBSITEDEVO"] = "OTR_WEBSITE_DEVO";
|
|
64
|
+
LastLoginItemClientTypeEnum["OTRWEBSITELOCALHOST"] = "OTR_WEBSITE_LOCALHOST";
|
|
65
|
+
LastLoginItemClientTypeEnum["OTRWIDGET"] = "OTR_WIDGET";
|
|
66
|
+
LastLoginItemClientTypeEnum["UNKNOWN"] = "UNKNOWN";
|
|
67
|
+
})(LastLoginItemClientTypeEnum || (LastLoginItemClientTypeEnum = {}));
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { LastLoginAttributes } from './';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -27,6 +28,12 @@ export interface UserAccountModel {
|
|
|
27
28
|
* @memberof UserAccountModel
|
|
28
29
|
*/
|
|
29
30
|
formerUserId?: number;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {LastLoginAttributes}
|
|
34
|
+
* @memberof UserAccountModel
|
|
35
|
+
*/
|
|
36
|
+
lastLoginAttributes?: LastLoginAttributes;
|
|
30
37
|
/**
|
|
31
38
|
*
|
|
32
39
|
* @type {string}
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
import { exists } from '../runtime';
|
|
15
|
+
import { LastLoginAttributesFromJSON, LastLoginAttributesToJSON, } from './';
|
|
15
16
|
export function UserAccountModelFromJSON(json) {
|
|
16
17
|
return UserAccountModelFromJSONTyped(json, false);
|
|
17
18
|
}
|
|
@@ -22,6 +23,7 @@ export function UserAccountModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
22
23
|
return {
|
|
23
24
|
'accountCreationDateUtc': !exists(json, 'accountCreationDateUtc') ? undefined : (new Date(json['accountCreationDateUtc'])),
|
|
24
25
|
'formerUserId': !exists(json, 'formerUserId') ? undefined : json['formerUserId'],
|
|
26
|
+
'lastLoginAttributes': !exists(json, 'lastLoginAttributes') ? undefined : LastLoginAttributesFromJSON(json['lastLoginAttributes']),
|
|
25
27
|
'loginProvider': !exists(json, 'loginProvider') ? undefined : json['loginProvider'],
|
|
26
28
|
'merged': !exists(json, 'merged') ? undefined : json['merged'],
|
|
27
29
|
'primary': !exists(json, 'primary') ? undefined : json['primary'],
|
|
@@ -40,6 +42,7 @@ export function UserAccountModelToJSON(value) {
|
|
|
40
42
|
return {
|
|
41
43
|
'accountCreationDateUtc': value.accountCreationDateUtc === undefined ? undefined : (value.accountCreationDateUtc.toISOString()),
|
|
42
44
|
'formerUserId': value.formerUserId,
|
|
45
|
+
'lastLoginAttributes': LastLoginAttributesToJSON(value.lastLoginAttributes),
|
|
43
46
|
'loginProvider': value.loginProvider,
|
|
44
47
|
'merged': value.merged,
|
|
45
48
|
'primary': value.primary,
|
|
@@ -42,6 +42,7 @@ export function UserDomainFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
42
42
|
'isPaymentPlansAllowed': !exists(json, 'isPaymentPlansAllowed') ? undefined : json['isPaymentPlansAllowed'],
|
|
43
43
|
'isTestUser': !exists(json, 'isTestUser') ? undefined : json['isTestUser'],
|
|
44
44
|
'isUnsubscribed': !exists(json, 'isUnsubscribed') ? undefined : json['isUnsubscribed'],
|
|
45
|
+
'lastLoginDateUtc': !exists(json, 'lastLoginDateUtc') ? undefined : (new Date(json['lastLoginDateUtc'])),
|
|
45
46
|
'lastname': !exists(json, 'lastname') ? undefined : json['lastname'],
|
|
46
47
|
'lawfirmId': !exists(json, 'lawfirmId') ? undefined : json['lawfirmId'],
|
|
47
48
|
'lawyerJobTitle': !exists(json, 'lawyerJobTitle') ? undefined : json['lawyerJobTitle'],
|
|
@@ -99,6 +100,7 @@ export function UserDomainToJSON(value) {
|
|
|
99
100
|
'isPaymentPlansAllowed': value.isPaymentPlansAllowed,
|
|
100
101
|
'isTestUser': value.isTestUser,
|
|
101
102
|
'isUnsubscribed': value.isUnsubscribed,
|
|
103
|
+
'lastLoginDateUtc': value.lastLoginDateUtc === undefined ? undefined : (value.lastLoginDateUtc.toISOString()),
|
|
102
104
|
'lastname': value.lastname,
|
|
103
105
|
'lawfirmId': value.lawfirmId,
|
|
104
106
|
'lawyerJobTitle': value.lawyerJobTitle,
|
|
@@ -41,6 +41,7 @@ export function UserDomainReqFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
41
41
|
'isPaymentPlansAllowed': !exists(json, 'isPaymentPlansAllowed') ? undefined : json['isPaymentPlansAllowed'],
|
|
42
42
|
'isTestUser': !exists(json, 'isTestUser') ? undefined : json['isTestUser'],
|
|
43
43
|
'isUnsubscribed': !exists(json, 'isUnsubscribed') ? undefined : json['isUnsubscribed'],
|
|
44
|
+
'lastLoginDateUtc': !exists(json, 'lastLoginDateUtc') ? undefined : (new Date(json['lastLoginDateUtc'])),
|
|
44
45
|
'lastname': !exists(json, 'lastname') ? undefined : json['lastname'],
|
|
45
46
|
'lawfirmId': !exists(json, 'lawfirmId') ? undefined : json['lawfirmId'],
|
|
46
47
|
'lawyerJobTitle': !exists(json, 'lawyerJobTitle') ? undefined : json['lawyerJobTitle'],
|
|
@@ -97,6 +98,7 @@ export function UserDomainReqToJSON(value) {
|
|
|
97
98
|
'isPaymentPlansAllowed': value.isPaymentPlansAllowed,
|
|
98
99
|
'isTestUser': value.isTestUser,
|
|
99
100
|
'isUnsubscribed': value.isUnsubscribed,
|
|
101
|
+
'lastLoginDateUtc': value.lastLoginDateUtc === undefined ? undefined : (value.lastLoginDateUtc.toISOString()),
|
|
100
102
|
'lastname': value.lastname,
|
|
101
103
|
'lawfirmId': value.lawfirmId,
|
|
102
104
|
'lawyerJobTitle': value.lawyerJobTitle,
|
|
@@ -42,6 +42,7 @@ export function UserDomainResFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
42
42
|
'isPaymentPlansAllowed': !exists(json, 'isPaymentPlansAllowed') ? undefined : json['isPaymentPlansAllowed'],
|
|
43
43
|
'isTestUser': !exists(json, 'isTestUser') ? undefined : json['isTestUser'],
|
|
44
44
|
'isUnsubscribed': !exists(json, 'isUnsubscribed') ? undefined : json['isUnsubscribed'],
|
|
45
|
+
'lastLoginDateUtc': !exists(json, 'lastLoginDateUtc') ? undefined : (new Date(json['lastLoginDateUtc'])),
|
|
45
46
|
'lastname': !exists(json, 'lastname') ? undefined : json['lastname'],
|
|
46
47
|
'lawfirmId': !exists(json, 'lawfirmId') ? undefined : json['lawfirmId'],
|
|
47
48
|
'lawyerJobTitle': !exists(json, 'lawyerJobTitle') ? undefined : json['lawyerJobTitle'],
|
|
@@ -99,6 +100,7 @@ export function UserDomainResToJSON(value) {
|
|
|
99
100
|
'isPaymentPlansAllowed': value.isPaymentPlansAllowed,
|
|
100
101
|
'isTestUser': value.isTestUser,
|
|
101
102
|
'isUnsubscribed': value.isUnsubscribed,
|
|
103
|
+
'lastLoginDateUtc': value.lastLoginDateUtc === undefined ? undefined : (value.lastLoginDateUtc.toISOString()),
|
|
102
104
|
'lastname': value.lastname,
|
|
103
105
|
'lawfirmId': value.lawfirmId,
|
|
104
106
|
'lawyerJobTitle': value.lawyerJobTitle,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from './AcceptCaseCounterRequest';
|
|
1
2
|
export * from './AccountLevelFee';
|
|
2
3
|
export * from './AccountLevelFeeRequest';
|
|
3
4
|
export * from './AccountLevelFeeResponse';
|
|
@@ -414,7 +415,10 @@ export * from './InviteHouseholdMateRequest';
|
|
|
414
415
|
export * from './InviteLawyerToLawfirmRequest';
|
|
415
416
|
export * from './IsRefundEligibleResponse';
|
|
416
417
|
export * from './IsUserLoggedInResponse';
|
|
418
|
+
export * from './LastLoginAttributes';
|
|
419
|
+
export * from './LastLoginDateByUserAccount';
|
|
417
420
|
export * from './LastLoginDateModel';
|
|
421
|
+
export * from './LastLoginItem';
|
|
418
422
|
export * from './Lawfirm';
|
|
419
423
|
export * from './LawfirmAuditEventModel';
|
|
420
424
|
export * from './LawfirmBankPayoutModel';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from './AcceptCaseCounterRequest';
|
|
1
2
|
export * from './AccountLevelFee';
|
|
2
3
|
export * from './AccountLevelFeeRequest';
|
|
3
4
|
export * from './AccountLevelFeeResponse';
|
|
@@ -414,7 +415,10 @@ export * from './InviteHouseholdMateRequest';
|
|
|
414
415
|
export * from './InviteLawyerToLawfirmRequest';
|
|
415
416
|
export * from './IsRefundEligibleResponse';
|
|
416
417
|
export * from './IsUserLoggedInResponse';
|
|
418
|
+
export * from './LastLoginAttributes';
|
|
419
|
+
export * from './LastLoginDateByUserAccount';
|
|
417
420
|
export * from './LastLoginDateModel';
|
|
421
|
+
export * from './LastLoginItem';
|
|
418
422
|
export * from './Lawfirm';
|
|
419
423
|
export * from './LawfirmAuditEventModel';
|
|
420
424
|
export * from './LawfirmBankPayoutModel';
|