@otr-app/shared-backend-generated-client 2.5.6 → 2.5.7

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.
@@ -29,6 +29,7 @@ export interface DashboardCaseModel {
29
29
  caseUserDetails?: CaseUserDetailsModel;
30
30
  citation?: DashboardCitationModel;
31
31
  court?: DashboardCourtModel;
32
+ courtDate?: string;
32
33
  disputeModel?: DashboardDisputeModel;
33
34
  engagementLetter?: EngagementLetterModel;
34
35
  hasLeftLawyerReview?: boolean;
@@ -18,6 +18,7 @@ export interface DashboardCaseModel {
18
18
  "caseUserDetails"?: models.CaseUserDetailsModel;
19
19
  "citation"?: models.DashboardCitationModel;
20
20
  "court"?: models.DashboardCourtModel;
21
+ "courtDate"?: string;
21
22
  "disputeModel"?: models.DashboardDisputeModel;
22
23
  "engagementLetter"?: models.EngagementLetterModel;
23
24
  "hasLeftLawyerReview"?: boolean;
@@ -58,6 +58,12 @@ export interface DashboardCaseModel {
58
58
  * @memberof DashboardCaseModel
59
59
  */
60
60
  court?: DashboardCourtModel;
61
+ /**
62
+ *
63
+ * @type {Date}
64
+ * @memberof DashboardCaseModel
65
+ */
66
+ courtDate?: Date;
61
67
  /**
62
68
  *
63
69
  * @type {DashboardDisputeModel}
@@ -28,6 +28,7 @@ export function DashboardCaseModelFromJSONTyped(json, ignoreDiscriminator) {
28
28
  'caseUserDetails': !exists(json, 'caseUserDetails') ? undefined : CaseUserDetailsModelFromJSON(json['caseUserDetails']),
29
29
  'citation': !exists(json, 'citation') ? undefined : DashboardCitationModelFromJSON(json['citation']),
30
30
  'court': !exists(json, 'court') ? undefined : DashboardCourtModelFromJSON(json['court']),
31
+ 'courtDate': !exists(json, 'courtDate') ? undefined : (new Date(json['courtDate'])),
31
32
  'disputeModel': !exists(json, 'disputeModel') ? undefined : DashboardDisputeModelFromJSON(json['disputeModel']),
32
33
  'engagementLetter': !exists(json, 'engagementLetter') ? undefined : EngagementLetterModelFromJSON(json['engagementLetter']),
33
34
  'hasLeftLawyerReview': !exists(json, 'hasLeftLawyerReview') ? undefined : json['hasLeftLawyerReview'],
@@ -60,6 +61,7 @@ export function DashboardCaseModelToJSON(value) {
60
61
  'caseUserDetails': CaseUserDetailsModelToJSON(value.caseUserDetails),
61
62
  'citation': DashboardCitationModelToJSON(value.citation),
62
63
  'court': DashboardCourtModelToJSON(value.court),
64
+ 'courtDate': value.courtDate === undefined ? undefined : (value.courtDate.toISOString()),
63
65
  'disputeModel': DashboardDisputeModelToJSON(value.disputeModel),
64
66
  'engagementLetter': EngagementLetterModelToJSON(value.engagementLetter),
65
67
  'hasLeftLawyerReview': value.hasLeftLawyerReview,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.6",
3
+ "version": "2.5.7",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"