@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.
@@ -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;
@@ -82,6 +82,12 @@ export interface DashboardCaseModel {
82
82
  * @memberof DashboardCaseModel
83
83
  */
84
84
  hasLeftLawyerReview?: boolean;
85
+ /**
86
+ *
87
+ * @type {Date}
88
+ * @memberof DashboardCaseModel
89
+ */
90
+ lastActivityDateUtc?: Date;
85
91
  /**
86
92
  *
87
93
  * @type {number}
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.75",
3
+ "version": "2.5.76",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"