@otr-app/shared-backend-generated-client 2.5.113 → 2.5.115
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/getCaseUserModel.ts +7 -0
- package/dist/angular/model/violationModel.ts +1 -0
- package/dist/typescript/model/GetCaseUserModel.d.ts +6 -0
- package/dist/typescript/model/GetCaseUserModel.js +6 -0
- package/dist/typescript/model/ViolationModel.d.ts +1 -0
- package/dist/typescript-fetch/models/GetCaseUserModel.d.ts +15 -0
- package/dist/typescript-fetch/models/GetCaseUserModel.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 +4 -0
- package/package.json +1 -1
|
@@ -32,6 +32,7 @@ export interface GetCaseUserModel {
|
|
|
32
32
|
relationshipToClient?: GetCaseUserModel.RelationshipToClientEnum;
|
|
33
33
|
signedProfilePictureUrl?: string;
|
|
34
34
|
userId?: number;
|
|
35
|
+
verificationStatus?: GetCaseUserModel.VerificationStatusEnum;
|
|
35
36
|
}
|
|
36
37
|
export namespace GetCaseUserModel {
|
|
37
38
|
export type RelationshipToClientEnum = 'CHILD' | 'COPILOT' | 'EMPLOYER' | 'FAMILY_MEMBER' | 'FRIEND' | 'LAWYER' | 'OTHER' | 'PARENT' | 'SELF' | 'SERVICE_PROVIDER' | 'SIGNIFICANT_OTHER' | 'UNKNOWN';
|
|
@@ -49,6 +50,12 @@ export namespace GetCaseUserModel {
|
|
|
49
50
|
SignificantOther: 'SIGNIFICANT_OTHER' as RelationshipToClientEnum,
|
|
50
51
|
Unknown: 'UNKNOWN' as RelationshipToClientEnum
|
|
51
52
|
};
|
|
53
|
+
export type VerificationStatusEnum = 'CANCELLED' | 'PENDING' | 'VERIFIED';
|
|
54
|
+
export const VerificationStatusEnum = {
|
|
55
|
+
Cancelled: 'CANCELLED' as VerificationStatusEnum,
|
|
56
|
+
Pending: 'PENDING' as VerificationStatusEnum,
|
|
57
|
+
Verified: 'VERIFIED' as VerificationStatusEnum
|
|
58
|
+
};
|
|
52
59
|
}
|
|
53
60
|
|
|
54
61
|
|
|
@@ -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;
|
|
@@ -30,6 +30,7 @@ export interface GetCaseUserModel {
|
|
|
30
30
|
"relationshipToClient"?: GetCaseUserModel.RelationshipToClientEnum;
|
|
31
31
|
"signedProfilePictureUrl"?: string;
|
|
32
32
|
"userId"?: number;
|
|
33
|
+
"verificationStatus"?: GetCaseUserModel.VerificationStatusEnum;
|
|
33
34
|
}
|
|
34
35
|
export declare namespace GetCaseUserModel {
|
|
35
36
|
enum RelationshipToClientEnum {
|
|
@@ -46,4 +47,9 @@ export declare namespace GetCaseUserModel {
|
|
|
46
47
|
SIGNIFICANTOTHER,
|
|
47
48
|
UNKNOWN
|
|
48
49
|
}
|
|
50
|
+
enum VerificationStatusEnum {
|
|
51
|
+
CANCELLED,
|
|
52
|
+
PENDING,
|
|
53
|
+
VERIFIED
|
|
54
|
+
}
|
|
49
55
|
}
|
|
@@ -26,4 +26,10 @@ export var GetCaseUserModel;
|
|
|
26
26
|
RelationshipToClientEnum[RelationshipToClientEnum["SIGNIFICANTOTHER"] = 'SIGNIFICANT_OTHER'] = "SIGNIFICANTOTHER";
|
|
27
27
|
RelationshipToClientEnum[RelationshipToClientEnum["UNKNOWN"] = 'UNKNOWN'] = "UNKNOWN";
|
|
28
28
|
})(RelationshipToClientEnum = GetCaseUserModel.RelationshipToClientEnum || (GetCaseUserModel.RelationshipToClientEnum = {}));
|
|
29
|
+
let VerificationStatusEnum;
|
|
30
|
+
(function (VerificationStatusEnum) {
|
|
31
|
+
VerificationStatusEnum[VerificationStatusEnum["CANCELLED"] = 'CANCELLED'] = "CANCELLED";
|
|
32
|
+
VerificationStatusEnum[VerificationStatusEnum["PENDING"] = 'PENDING'] = "PENDING";
|
|
33
|
+
VerificationStatusEnum[VerificationStatusEnum["VERIFIED"] = 'VERIFIED'] = "VERIFIED";
|
|
34
|
+
})(VerificationStatusEnum = GetCaseUserModel.VerificationStatusEnum || (GetCaseUserModel.VerificationStatusEnum = {}));
|
|
29
35
|
})(GetCaseUserModel || (GetCaseUserModel = {}));
|
|
@@ -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;
|
|
@@ -130,6 +130,12 @@ export interface GetCaseUserModel {
|
|
|
130
130
|
* @memberof GetCaseUserModel
|
|
131
131
|
*/
|
|
132
132
|
userId?: number;
|
|
133
|
+
/**
|
|
134
|
+
*
|
|
135
|
+
* @type {string}
|
|
136
|
+
* @memberof GetCaseUserModel
|
|
137
|
+
*/
|
|
138
|
+
verificationStatus?: GetCaseUserModelVerificationStatusEnum;
|
|
133
139
|
}
|
|
134
140
|
export declare function GetCaseUserModelFromJSON(json: any): GetCaseUserModel;
|
|
135
141
|
export declare function GetCaseUserModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCaseUserModel;
|
|
@@ -152,3 +158,12 @@ export declare enum GetCaseUserModelRelationshipToClientEnum {
|
|
|
152
158
|
SIGNIFICANTOTHER = "SIGNIFICANT_OTHER",
|
|
153
159
|
UNKNOWN = "UNKNOWN"
|
|
154
160
|
}
|
|
161
|
+
/**
|
|
162
|
+
* @export
|
|
163
|
+
* @enum {string}
|
|
164
|
+
*/
|
|
165
|
+
export declare enum GetCaseUserModelVerificationStatusEnum {
|
|
166
|
+
CANCELLED = "CANCELLED",
|
|
167
|
+
PENDING = "PENDING",
|
|
168
|
+
VERIFIED = "VERIFIED"
|
|
169
|
+
}
|
|
@@ -40,6 +40,7 @@ export function GetCaseUserModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
40
40
|
'relationshipToClient': !exists(json, 'relationshipToClient') ? undefined : json['relationshipToClient'],
|
|
41
41
|
'signedProfilePictureUrl': !exists(json, 'signedProfilePictureUrl') ? undefined : json['signedProfilePictureUrl'],
|
|
42
42
|
'userId': !exists(json, 'userId') ? undefined : json['userId'],
|
|
43
|
+
'verificationStatus': !exists(json, 'verificationStatus') ? undefined : json['verificationStatus'],
|
|
43
44
|
};
|
|
44
45
|
}
|
|
45
46
|
export function GetCaseUserModelToJSON(value) {
|
|
@@ -69,6 +70,7 @@ export function GetCaseUserModelToJSON(value) {
|
|
|
69
70
|
'relationshipToClient': value.relationshipToClient,
|
|
70
71
|
'signedProfilePictureUrl': value.signedProfilePictureUrl,
|
|
71
72
|
'userId': value.userId,
|
|
73
|
+
'verificationStatus': value.verificationStatus,
|
|
72
74
|
};
|
|
73
75
|
}
|
|
74
76
|
/**
|
|
@@ -90,3 +92,13 @@ export var GetCaseUserModelRelationshipToClientEnum;
|
|
|
90
92
|
GetCaseUserModelRelationshipToClientEnum["SIGNIFICANTOTHER"] = "SIGNIFICANT_OTHER";
|
|
91
93
|
GetCaseUserModelRelationshipToClientEnum["UNKNOWN"] = "UNKNOWN";
|
|
92
94
|
})(GetCaseUserModelRelationshipToClientEnum || (GetCaseUserModelRelationshipToClientEnum = {}));
|
|
95
|
+
/**
|
|
96
|
+
* @export
|
|
97
|
+
* @enum {string}
|
|
98
|
+
*/
|
|
99
|
+
export var GetCaseUserModelVerificationStatusEnum;
|
|
100
|
+
(function (GetCaseUserModelVerificationStatusEnum) {
|
|
101
|
+
GetCaseUserModelVerificationStatusEnum["CANCELLED"] = "CANCELLED";
|
|
102
|
+
GetCaseUserModelVerificationStatusEnum["PENDING"] = "PENDING";
|
|
103
|
+
GetCaseUserModelVerificationStatusEnum["VERIFIED"] = "VERIFIED";
|
|
104
|
+
})(GetCaseUserModelVerificationStatusEnum || (GetCaseUserModelVerificationStatusEnum = {}));
|
|
@@ -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,
|
|
@@ -10917,6 +10917,8 @@ export interface components {
|
|
|
10917
10917
|
signedProfilePictureUrl?: string;
|
|
10918
10918
|
/** Format: int64 */
|
|
10919
10919
|
userId?: number;
|
|
10920
|
+
/** @enum {string} */
|
|
10921
|
+
verificationStatus?: DashboardCaseUserModelVerificationStatus;
|
|
10920
10922
|
};
|
|
10921
10923
|
/** GetCaseUsersResponse */
|
|
10922
10924
|
GetCaseUsersResponse: {
|
|
@@ -16632,6 +16634,8 @@ export interface components {
|
|
|
16632
16634
|
trafficViolationDesc?: string;
|
|
16633
16635
|
/** Format: int64 */
|
|
16634
16636
|
trafficViolationTypeId?: number;
|
|
16637
|
+
/** Format: uuid */
|
|
16638
|
+
uniqueId?: string;
|
|
16635
16639
|
userFriendlyName?: string;
|
|
16636
16640
|
userFriendlyShortForm?: string;
|
|
16637
16641
|
/** @enum {string} */
|