@otr-app/shared-backend-generated-client 2.5.112 → 2.5.114
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/dashboardCaseUserModel.ts +10 -0
- package/dist/angular/model/violationModel.ts +1 -0
- package/dist/typescript/model/DashboardCaseUserModel.d.ts +8 -0
- package/dist/typescript/model/DashboardCaseUserModel.js +9 -1
- package/dist/typescript/model/ViolationModel.d.ts +1 -0
- package/dist/typescript-fetch/models/DashboardCaseUserModel.d.ts +15 -0
- package/dist/typescript-fetch/models/DashboardCaseUserModel.js +12 -0
- package/dist/typescript-fetch/models/ViolationModel.d.ts +6 -0
- package/dist/typescript-fetch/models/ViolationModel.js +2 -0
- package/dist/typescript-open-api/otr-backend.d.ts +12 -8
- package/dist/typescript-open-api/otr-backend.js +6 -6
- package/package.json +1 -1
|
@@ -18,5 +18,15 @@ export interface DashboardCaseUserModel {
|
|
|
18
18
|
lastName?: string;
|
|
19
19
|
profileImageUrl?: string;
|
|
20
20
|
userId?: number;
|
|
21
|
+
verificationStatus?: DashboardCaseUserModel.VerificationStatusEnum;
|
|
21
22
|
}
|
|
23
|
+
export namespace DashboardCaseUserModel {
|
|
24
|
+
export type VerificationStatusEnum = 'CANCELLED' | 'PENDING' | 'VERIFIED';
|
|
25
|
+
export const VerificationStatusEnum = {
|
|
26
|
+
Cancelled: 'CANCELLED' as VerificationStatusEnum,
|
|
27
|
+
Pending: 'PENDING' as VerificationStatusEnum,
|
|
28
|
+
Verified: 'VERIFIED' as VerificationStatusEnum
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
|
|
22
32
|
|
|
@@ -21,6 +21,7 @@ export interface ViolationModel {
|
|
|
21
21
|
penalties?: Array<ViolationPenaltyModel>;
|
|
22
22
|
trafficViolationDesc?: string;
|
|
23
23
|
trafficViolationTypeId?: number;
|
|
24
|
+
uniqueId?: string;
|
|
24
25
|
userFriendlyName?: string;
|
|
25
26
|
userFriendlyShortForm?: string;
|
|
26
27
|
violationClassification?: ViolationModel.ViolationClassificationEnum;
|
|
@@ -16,4 +16,12 @@ export interface DashboardCaseUserModel {
|
|
|
16
16
|
"lastName"?: string;
|
|
17
17
|
"profileImageUrl"?: string;
|
|
18
18
|
"userId"?: number;
|
|
19
|
+
"verificationStatus"?: DashboardCaseUserModel.VerificationStatusEnum;
|
|
20
|
+
}
|
|
21
|
+
export declare namespace DashboardCaseUserModel {
|
|
22
|
+
enum VerificationStatusEnum {
|
|
23
|
+
CANCELLED,
|
|
24
|
+
PENDING,
|
|
25
|
+
VERIFIED
|
|
26
|
+
}
|
|
19
27
|
}
|
|
@@ -9,4 +9,12 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
export
|
|
12
|
+
export var DashboardCaseUserModel;
|
|
13
|
+
(function (DashboardCaseUserModel) {
|
|
14
|
+
let VerificationStatusEnum;
|
|
15
|
+
(function (VerificationStatusEnum) {
|
|
16
|
+
VerificationStatusEnum[VerificationStatusEnum["CANCELLED"] = 'CANCELLED'] = "CANCELLED";
|
|
17
|
+
VerificationStatusEnum[VerificationStatusEnum["PENDING"] = 'PENDING'] = "PENDING";
|
|
18
|
+
VerificationStatusEnum[VerificationStatusEnum["VERIFIED"] = 'VERIFIED'] = "VERIFIED";
|
|
19
|
+
})(VerificationStatusEnum = DashboardCaseUserModel.VerificationStatusEnum || (DashboardCaseUserModel.VerificationStatusEnum = {}));
|
|
20
|
+
})(DashboardCaseUserModel || (DashboardCaseUserModel = {}));
|
|
@@ -19,6 +19,7 @@ export interface ViolationModel {
|
|
|
19
19
|
"penalties"?: Array<models.ViolationPenaltyModel>;
|
|
20
20
|
"trafficViolationDesc"?: string;
|
|
21
21
|
"trafficViolationTypeId"?: number;
|
|
22
|
+
"uniqueId"?: string;
|
|
22
23
|
"userFriendlyName"?: string;
|
|
23
24
|
"userFriendlyShortForm"?: string;
|
|
24
25
|
"violationClassification"?: ViolationModel.ViolationClassificationEnum;
|
|
@@ -51,7 +51,22 @@ export interface DashboardCaseUserModel {
|
|
|
51
51
|
* @memberof DashboardCaseUserModel
|
|
52
52
|
*/
|
|
53
53
|
userId?: number;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof DashboardCaseUserModel
|
|
58
|
+
*/
|
|
59
|
+
verificationStatus?: DashboardCaseUserModelVerificationStatusEnum;
|
|
54
60
|
}
|
|
55
61
|
export declare function DashboardCaseUserModelFromJSON(json: any): DashboardCaseUserModel;
|
|
56
62
|
export declare function DashboardCaseUserModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DashboardCaseUserModel;
|
|
57
63
|
export declare function DashboardCaseUserModelToJSON(value?: DashboardCaseUserModel | null): any;
|
|
64
|
+
/**
|
|
65
|
+
* @export
|
|
66
|
+
* @enum {string}
|
|
67
|
+
*/
|
|
68
|
+
export declare enum DashboardCaseUserModelVerificationStatusEnum {
|
|
69
|
+
CANCELLED = "CANCELLED",
|
|
70
|
+
PENDING = "PENDING",
|
|
71
|
+
VERIFIED = "VERIFIED"
|
|
72
|
+
}
|
|
@@ -26,6 +26,7 @@ export function DashboardCaseUserModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
26
26
|
'lastName': !exists(json, 'lastName') ? undefined : json['lastName'],
|
|
27
27
|
'profileImageUrl': !exists(json, 'profileImageUrl') ? undefined : json['profileImageUrl'],
|
|
28
28
|
'userId': !exists(json, 'userId') ? undefined : json['userId'],
|
|
29
|
+
'verificationStatus': !exists(json, 'verificationStatus') ? undefined : json['verificationStatus'],
|
|
29
30
|
};
|
|
30
31
|
}
|
|
31
32
|
export function DashboardCaseUserModelToJSON(value) {
|
|
@@ -42,5 +43,16 @@ export function DashboardCaseUserModelToJSON(value) {
|
|
|
42
43
|
'lastName': value.lastName,
|
|
43
44
|
'profileImageUrl': value.profileImageUrl,
|
|
44
45
|
'userId': value.userId,
|
|
46
|
+
'verificationStatus': value.verificationStatus,
|
|
45
47
|
};
|
|
46
48
|
}
|
|
49
|
+
/**
|
|
50
|
+
* @export
|
|
51
|
+
* @enum {string}
|
|
52
|
+
*/
|
|
53
|
+
export var DashboardCaseUserModelVerificationStatusEnum;
|
|
54
|
+
(function (DashboardCaseUserModelVerificationStatusEnum) {
|
|
55
|
+
DashboardCaseUserModelVerificationStatusEnum["CANCELLED"] = "CANCELLED";
|
|
56
|
+
DashboardCaseUserModelVerificationStatusEnum["PENDING"] = "PENDING";
|
|
57
|
+
DashboardCaseUserModelVerificationStatusEnum["VERIFIED"] = "VERIFIED";
|
|
58
|
+
})(DashboardCaseUserModelVerificationStatusEnum || (DashboardCaseUserModelVerificationStatusEnum = {}));
|
|
@@ -29,6 +29,7 @@ export function ViolationModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
29
29
|
'penalties': !exists(json, 'penalties') ? undefined : (json['penalties'].map(ViolationPenaltyModelFromJSON)),
|
|
30
30
|
'trafficViolationDesc': !exists(json, 'trafficViolationDesc') ? undefined : json['trafficViolationDesc'],
|
|
31
31
|
'trafficViolationTypeId': !exists(json, 'trafficViolationTypeId') ? undefined : json['trafficViolationTypeId'],
|
|
32
|
+
'uniqueId': !exists(json, 'uniqueId') ? undefined : json['uniqueId'],
|
|
32
33
|
'userFriendlyName': !exists(json, 'userFriendlyName') ? undefined : json['userFriendlyName'],
|
|
33
34
|
'userFriendlyShortForm': !exists(json, 'userFriendlyShortForm') ? undefined : json['userFriendlyShortForm'],
|
|
34
35
|
'violationClassification': !exists(json, 'violationClassification') ? undefined : json['violationClassification'],
|
|
@@ -51,6 +52,7 @@ export function ViolationModelToJSON(value) {
|
|
|
51
52
|
'penalties': value.penalties === undefined ? undefined : (value.penalties.map(ViolationPenaltyModelToJSON)),
|
|
52
53
|
'trafficViolationDesc': value.trafficViolationDesc,
|
|
53
54
|
'trafficViolationTypeId': value.trafficViolationTypeId,
|
|
55
|
+
'uniqueId': value.uniqueId,
|
|
54
56
|
'userFriendlyName': value.userFriendlyName,
|
|
55
57
|
'userFriendlyShortForm': value.userFriendlyShortForm,
|
|
56
58
|
'violationClassification': value.violationClassification,
|
|
@@ -10013,6 +10013,8 @@ export interface components {
|
|
|
10013
10013
|
profileImageUrl?: string;
|
|
10014
10014
|
/** Format: int64 */
|
|
10015
10015
|
userId?: number;
|
|
10016
|
+
/** @enum {string} */
|
|
10017
|
+
verificationStatus?: DashboardCaseUserModelVerificationStatus;
|
|
10016
10018
|
};
|
|
10017
10019
|
/** DashboardCitationModel */
|
|
10018
10020
|
DashboardCitationModel: {
|
|
@@ -11177,7 +11179,7 @@ export interface components {
|
|
|
11177
11179
|
expiryDateUtc?: string;
|
|
11178
11180
|
fullName?: string;
|
|
11179
11181
|
/** @enum {string} */
|
|
11180
|
-
inviteStatus?:
|
|
11182
|
+
inviteStatus?: DashboardCaseUserModelVerificationStatus;
|
|
11181
11183
|
profilePictureUrl?: string;
|
|
11182
11184
|
/** @enum {string} */
|
|
11183
11185
|
relationshipType?: GetHouseHoldMateModelRelationshipType;
|
|
@@ -11211,7 +11213,7 @@ export interface components {
|
|
|
11211
11213
|
/** Format: int64 */
|
|
11212
11214
|
userId?: number;
|
|
11213
11215
|
/** @enum {string} */
|
|
11214
|
-
verificationStatus?:
|
|
11216
|
+
verificationStatus?: DashboardCaseUserModelVerificationStatus;
|
|
11215
11217
|
};
|
|
11216
11218
|
/** GetLastLoginResponse */
|
|
11217
11219
|
GetLastLoginResponse: {
|
|
@@ -12743,7 +12745,7 @@ export interface components {
|
|
|
12743
12745
|
lastname?: string;
|
|
12744
12746
|
roleTypes?: AuthorModelUserRole[];
|
|
12745
12747
|
/** @enum {string} */
|
|
12746
|
-
verificationStatus?:
|
|
12748
|
+
verificationStatus?: DashboardCaseUserModelVerificationStatus;
|
|
12747
12749
|
};
|
|
12748
12750
|
/** LawyerLicenseModel */
|
|
12749
12751
|
LawyerLicenseModel: {
|
|
@@ -16630,6 +16632,8 @@ export interface components {
|
|
|
16630
16632
|
trafficViolationDesc?: string;
|
|
16631
16633
|
/** Format: int64 */
|
|
16632
16634
|
trafficViolationTypeId?: number;
|
|
16635
|
+
/** Format: uuid */
|
|
16636
|
+
uniqueId?: string;
|
|
16633
16637
|
userFriendlyName?: string;
|
|
16634
16638
|
userFriendlyShortForm?: string;
|
|
16635
16639
|
/** @enum {string} */
|
|
@@ -41490,6 +41494,11 @@ export declare enum DashboardCaseCounterOfferModelCounterOfferStatus {
|
|
|
41490
41494
|
PENDING = "PENDING",
|
|
41491
41495
|
WITHDRAWN = "WITHDRAWN"
|
|
41492
41496
|
}
|
|
41497
|
+
export declare enum DashboardCaseUserModelVerificationStatus {
|
|
41498
|
+
CANCELLED = "CANCELLED",
|
|
41499
|
+
PENDING = "PENDING",
|
|
41500
|
+
VERIFIED = "VERIFIED"
|
|
41501
|
+
}
|
|
41493
41502
|
export declare enum DeleteNotificationByPagesRequestPageTypes {
|
|
41494
41503
|
CASE_ACTION = "CASE_ACTION",
|
|
41495
41504
|
CASE_MESSAGES = "CASE_MESSAGES",
|
|
@@ -41607,11 +41616,6 @@ export declare enum GenerateTemplateRequestEmailTemplateId {
|
|
|
41607
41616
|
TICKET_EVAL_WITH_CITATION_2ND_FOLLOW_UP = "TICKET_EVAL_WITH_CITATION_2ND_FOLLOW_UP",
|
|
41608
41617
|
TICKET_EVAL_WITH_CITATION_CLOSE_OUT = "TICKET_EVAL_WITH_CITATION_CLOSE_OUT"
|
|
41609
41618
|
}
|
|
41610
|
-
export declare enum GetHouseHoldMateModelInviteStatus {
|
|
41611
|
-
CANCELLED = "CANCELLED",
|
|
41612
|
-
PENDING = "PENDING",
|
|
41613
|
-
VERIFIED = "VERIFIED"
|
|
41614
|
-
}
|
|
41615
41619
|
export declare enum GetHouseHoldMateModelRelationshipType {
|
|
41616
41620
|
OWNER = "OWNER",
|
|
41617
41621
|
SIBLING = "SIBLING",
|
|
@@ -837,6 +837,12 @@ export var DashboardCaseCounterOfferModelCounterOfferStatus;
|
|
|
837
837
|
DashboardCaseCounterOfferModelCounterOfferStatus["PENDING"] = "PENDING";
|
|
838
838
|
DashboardCaseCounterOfferModelCounterOfferStatus["WITHDRAWN"] = "WITHDRAWN";
|
|
839
839
|
})(DashboardCaseCounterOfferModelCounterOfferStatus || (DashboardCaseCounterOfferModelCounterOfferStatus = {}));
|
|
840
|
+
export var DashboardCaseUserModelVerificationStatus;
|
|
841
|
+
(function (DashboardCaseUserModelVerificationStatus) {
|
|
842
|
+
DashboardCaseUserModelVerificationStatus["CANCELLED"] = "CANCELLED";
|
|
843
|
+
DashboardCaseUserModelVerificationStatus["PENDING"] = "PENDING";
|
|
844
|
+
DashboardCaseUserModelVerificationStatus["VERIFIED"] = "VERIFIED";
|
|
845
|
+
})(DashboardCaseUserModelVerificationStatus || (DashboardCaseUserModelVerificationStatus = {}));
|
|
840
846
|
export var DeleteNotificationByPagesRequestPageTypes;
|
|
841
847
|
(function (DeleteNotificationByPagesRequestPageTypes) {
|
|
842
848
|
DeleteNotificationByPagesRequestPageTypes["CASE_ACTION"] = "CASE_ACTION";
|
|
@@ -967,12 +973,6 @@ export var GenerateTemplateRequestEmailTemplateId;
|
|
|
967
973
|
GenerateTemplateRequestEmailTemplateId["TICKET_EVAL_WITH_CITATION_2ND_FOLLOW_UP"] = "TICKET_EVAL_WITH_CITATION_2ND_FOLLOW_UP";
|
|
968
974
|
GenerateTemplateRequestEmailTemplateId["TICKET_EVAL_WITH_CITATION_CLOSE_OUT"] = "TICKET_EVAL_WITH_CITATION_CLOSE_OUT";
|
|
969
975
|
})(GenerateTemplateRequestEmailTemplateId || (GenerateTemplateRequestEmailTemplateId = {}));
|
|
970
|
-
export var GetHouseHoldMateModelInviteStatus;
|
|
971
|
-
(function (GetHouseHoldMateModelInviteStatus) {
|
|
972
|
-
GetHouseHoldMateModelInviteStatus["CANCELLED"] = "CANCELLED";
|
|
973
|
-
GetHouseHoldMateModelInviteStatus["PENDING"] = "PENDING";
|
|
974
|
-
GetHouseHoldMateModelInviteStatus["VERIFIED"] = "VERIFIED";
|
|
975
|
-
})(GetHouseHoldMateModelInviteStatus || (GetHouseHoldMateModelInviteStatus = {}));
|
|
976
976
|
export var GetHouseHoldMateModelRelationshipType;
|
|
977
977
|
(function (GetHouseHoldMateModelRelationshipType) {
|
|
978
978
|
GetHouseHoldMateModelRelationshipType["OWNER"] = "OWNER";
|