@otr-app/shared-backend-generated-client 2.5.75 → 2.5.76
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/dashboardCaseModel.ts +1 -0
- package/dist/typescript/model/DashboardCaseModel.d.ts +1 -0
- package/dist/typescript-fetch/models/DashboardCaseModel.d.ts +6 -0
- package/dist/typescript-fetch/models/DashboardCaseModel.js +2 -0
- package/dist/typescript-open-api/otr-backend.d.ts +2 -0
- package/package.json +1 -1
|
@@ -33,6 +33,7 @@ export interface DashboardCaseModel {
|
|
|
33
33
|
disputeModel?: DashboardDisputeModel;
|
|
34
34
|
engagementLetter?: EngagementLetterModel;
|
|
35
35
|
hasLeftLawyerReview?: boolean;
|
|
36
|
+
lastActivityDateUtc?: string;
|
|
36
37
|
lawfirmId?: number;
|
|
37
38
|
lawfirmName?: string;
|
|
38
39
|
lawfirmProfilePictureUrl?: string;
|
|
@@ -22,6 +22,7 @@ export interface DashboardCaseModel {
|
|
|
22
22
|
"disputeModel"?: models.DashboardDisputeModel;
|
|
23
23
|
"engagementLetter"?: models.EngagementLetterModel;
|
|
24
24
|
"hasLeftLawyerReview"?: boolean;
|
|
25
|
+
"lastActivityDateUtc"?: string;
|
|
25
26
|
"lawfirmId"?: number;
|
|
26
27
|
"lawfirmName"?: string;
|
|
27
28
|
"lawfirmProfilePictureUrl"?: string;
|
|
@@ -32,6 +32,7 @@ export function DashboardCaseModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
32
32
|
'disputeModel': !exists(json, 'disputeModel') ? undefined : DashboardDisputeModelFromJSON(json['disputeModel']),
|
|
33
33
|
'engagementLetter': !exists(json, 'engagementLetter') ? undefined : EngagementLetterModelFromJSON(json['engagementLetter']),
|
|
34
34
|
'hasLeftLawyerReview': !exists(json, 'hasLeftLawyerReview') ? undefined : json['hasLeftLawyerReview'],
|
|
35
|
+
'lastActivityDateUtc': !exists(json, 'lastActivityDateUtc') ? undefined : (new Date(json['lastActivityDateUtc'])),
|
|
35
36
|
'lawfirmId': !exists(json, 'lawfirmId') ? undefined : json['lawfirmId'],
|
|
36
37
|
'lawfirmName': !exists(json, 'lawfirmName') ? undefined : json['lawfirmName'],
|
|
37
38
|
'lawfirmProfilePictureUrl': !exists(json, 'lawfirmProfilePictureUrl') ? undefined : json['lawfirmProfilePictureUrl'],
|
|
@@ -67,6 +68,7 @@ export function DashboardCaseModelToJSON(value) {
|
|
|
67
68
|
'disputeModel': DashboardDisputeModelToJSON(value.disputeModel),
|
|
68
69
|
'engagementLetter': EngagementLetterModelToJSON(value.engagementLetter),
|
|
69
70
|
'hasLeftLawyerReview': value.hasLeftLawyerReview,
|
|
71
|
+
'lastActivityDateUtc': value.lastActivityDateUtc === undefined ? undefined : (value.lastActivityDateUtc.toISOString()),
|
|
70
72
|
'lawfirmId': value.lawfirmId,
|
|
71
73
|
'lawfirmName': value.lawfirmName,
|
|
72
74
|
'lawfirmProfilePictureUrl': value.lawfirmProfilePictureUrl,
|
|
@@ -9854,6 +9854,8 @@ export interface components {
|
|
|
9854
9854
|
disputeModel?: components["schemas"]["DashboardDisputeModel"];
|
|
9855
9855
|
engagementLetter?: components["schemas"]["EngagementLetterModel"];
|
|
9856
9856
|
hasLeftLawyerReview?: boolean;
|
|
9857
|
+
/** Format: date-time */
|
|
9858
|
+
lastActivityDateUtc?: string;
|
|
9857
9859
|
/** Format: int64 */
|
|
9858
9860
|
lawfirmId?: number;
|
|
9859
9861
|
lawfirmName?: string;
|