@otr-app/shared-backend-generated-client 2.4.48 → 2.4.50

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.
@@ -18,10 +18,12 @@ export interface ActivityFeedModel {
18
18
  activityType?: ActivityFeedModel.ActivityTypeEnum;
19
19
  caseStatus?: ActivityFeedModel.CaseStatusEnum;
20
20
  city?: string;
21
+ hasStateViolationData?: boolean;
21
22
  ownerName?: string;
22
23
  privacyMode?: ActivityFeedModel.PrivacyModeEnum;
23
24
  profilePicUrl?: string;
24
25
  regionCode?: string;
26
+ totalLegalFeeInCents?: number;
25
27
  violationDescription?: string;
26
28
  }
27
29
  export namespace ActivityFeedModel {
@@ -23,6 +23,8 @@ export interface CaseActionDomain {
23
23
  courtDateActionNote?: string;
24
24
  courtDateActionTitle?: string;
25
25
  isDeleted?: boolean;
26
+ label1?: string;
27
+ label2?: string;
26
28
  }
27
29
  export namespace CaseActionDomain {
28
30
  export type ActionTypeEnum = 'CASE_ACCEPT' | 'CASE_COUNTER_ACCEPTED' | 'CASE_COUNTER_DECLINED' | 'CASE_COUNTER_INITIATED' | 'CASE_COUNTER_WITHDRAWN' | 'CASE_DECLINE' | 'CITATION_DATA_EXTRACTED' | 'COURT_DATE_REMOVED' | 'COURT_DATE_SCHEDULED' | 'DISCOVERY_RECEIVED' | 'DISCOVERY_REQUESTED' | 'DISPUTE_FILED' | 'DRIVER_LICENSE_REQUESTED' | 'FAILED_PAYMENT_ATTEMPT' | 'NOTICE_OF_APPEARANCE_FILED' | 'OTHER' | 'OVERDUE_BALANCE_PAID' | 'REVIEWED_BY_LAWFIRM' | 'SOCIAL_MEDIA_ASK' | 'TICKET_MAILED_TO_COURT';
@@ -14,7 +14,9 @@
14
14
  export interface CaseTransferHistory {
15
15
  decisionDate?: string;
16
16
  decisionStatus?: CaseTransferHistory.DecisionStatusEnum;
17
+ declineCategory?: string;
17
18
  declineNote?: string;
19
+ declineReasonType?: string;
18
20
  discountInCents?: number;
19
21
  lawfirmCaseCreationDate?: string;
20
22
  lawfirmCaseId?: string;
@@ -16,10 +16,12 @@ export interface ActivityFeedModel {
16
16
  "activityType"?: ActivityFeedModel.ActivityTypeEnum;
17
17
  "caseStatus"?: ActivityFeedModel.CaseStatusEnum;
18
18
  "city"?: string;
19
+ "hasStateViolationData"?: boolean;
19
20
  "ownerName"?: string;
20
21
  "privacyMode"?: ActivityFeedModel.PrivacyModeEnum;
21
22
  "profilePicUrl"?: string;
22
23
  "regionCode"?: string;
24
+ "totalLegalFeeInCents"?: number;
23
25
  "violationDescription"?: string;
24
26
  }
25
27
  export declare namespace ActivityFeedModel {
@@ -21,6 +21,8 @@ export interface CaseActionDomain {
21
21
  "courtDateActionNote"?: string;
22
22
  "courtDateActionTitle"?: string;
23
23
  "isDeleted"?: boolean;
24
+ "label1"?: string;
25
+ "label2"?: string;
24
26
  }
25
27
  export declare namespace CaseActionDomain {
26
28
  enum ActionTypeEnum {
@@ -12,7 +12,9 @@
12
12
  export interface CaseTransferHistory {
13
13
  "decisionDate"?: string;
14
14
  "decisionStatus"?: CaseTransferHistory.DecisionStatusEnum;
15
+ "declineCategory"?: string;
15
16
  "declineNote"?: string;
17
+ "declineReasonType"?: string;
16
18
  "discountInCents"?: number;
17
19
  "lawfirmCaseCreationDate"?: string;
18
20
  "lawfirmCaseId"?: string;
@@ -51,6 +51,12 @@ export interface ActivityFeedModel {
51
51
  * @memberof ActivityFeedModel
52
52
  */
53
53
  city?: string;
54
+ /**
55
+ *
56
+ * @type {boolean}
57
+ * @memberof ActivityFeedModel
58
+ */
59
+ hasStateViolationData?: boolean;
54
60
  /**
55
61
  *
56
62
  * @type {string}
@@ -75,6 +81,12 @@ export interface ActivityFeedModel {
75
81
  * @memberof ActivityFeedModel
76
82
  */
77
83
  regionCode?: string;
84
+ /**
85
+ *
86
+ * @type {number}
87
+ * @memberof ActivityFeedModel
88
+ */
89
+ totalLegalFeeInCents?: number;
78
90
  /**
79
91
  *
80
92
  * @type {string}
@@ -26,10 +26,12 @@ export function ActivityFeedModelFromJSONTyped(json, ignoreDiscriminator) {
26
26
  'activityType': !exists(json, 'activityType') ? undefined : json['activityType'],
27
27
  'caseStatus': !exists(json, 'caseStatus') ? undefined : json['caseStatus'],
28
28
  'city': !exists(json, 'city') ? undefined : json['city'],
29
+ 'hasStateViolationData': !exists(json, 'hasStateViolationData') ? undefined : json['hasStateViolationData'],
29
30
  'ownerName': !exists(json, 'ownerName') ? undefined : json['ownerName'],
30
31
  'privacyMode': !exists(json, 'privacyMode') ? undefined : json['privacyMode'],
31
32
  'profilePicUrl': !exists(json, 'profilePicUrl') ? undefined : json['profilePicUrl'],
32
33
  'regionCode': !exists(json, 'regionCode') ? undefined : json['regionCode'],
34
+ 'totalLegalFeeInCents': !exists(json, 'totalLegalFeeInCents') ? undefined : json['totalLegalFeeInCents'],
33
35
  'violationDescription': !exists(json, 'violationDescription') ? undefined : json['violationDescription'],
34
36
  };
35
37
  }
@@ -47,10 +49,12 @@ export function ActivityFeedModelToJSON(value) {
47
49
  'activityType': value.activityType,
48
50
  'caseStatus': value.caseStatus,
49
51
  'city': value.city,
52
+ 'hasStateViolationData': value.hasStateViolationData,
50
53
  'ownerName': value.ownerName,
51
54
  'privacyMode': value.privacyMode,
52
55
  'profilePicUrl': value.profilePicUrl,
53
56
  'regionCode': value.regionCode,
57
+ 'totalLegalFeeInCents': value.totalLegalFeeInCents,
54
58
  'violationDescription': value.violationDescription,
55
59
  };
56
60
  }
@@ -76,6 +76,18 @@ export interface CaseActionDomain {
76
76
  * @memberof CaseActionDomain
77
77
  */
78
78
  isDeleted?: boolean;
79
+ /**
80
+ *
81
+ * @type {string}
82
+ * @memberof CaseActionDomain
83
+ */
84
+ label1?: string;
85
+ /**
86
+ *
87
+ * @type {string}
88
+ * @memberof CaseActionDomain
89
+ */
90
+ label2?: string;
79
91
  }
80
92
  export declare function CaseActionDomainFromJSON(json: any): CaseActionDomain;
81
93
  export declare function CaseActionDomainFromJSONTyped(json: any, ignoreDiscriminator: boolean): CaseActionDomain;
@@ -31,6 +31,8 @@ export function CaseActionDomainFromJSONTyped(json, ignoreDiscriminator) {
31
31
  'courtDateActionNote': !exists(json, 'courtDateActionNote') ? undefined : json['courtDateActionNote'],
32
32
  'courtDateActionTitle': !exists(json, 'courtDateActionTitle') ? undefined : json['courtDateActionTitle'],
33
33
  'isDeleted': !exists(json, 'isDeleted') ? undefined : json['isDeleted'],
34
+ 'label1': !exists(json, 'label1') ? undefined : json['label1'],
35
+ 'label2': !exists(json, 'label2') ? undefined : json['label2'],
34
36
  };
35
37
  }
36
38
  export function CaseActionDomainToJSON(value) {
@@ -51,6 +53,8 @@ export function CaseActionDomainToJSON(value) {
51
53
  'courtDateActionNote': value.courtDateActionNote,
52
54
  'courtDateActionTitle': value.courtDateActionTitle,
53
55
  'isDeleted': value.isDeleted,
56
+ 'label1': value.label1,
57
+ 'label2': value.label2,
54
58
  };
55
59
  }
56
60
  /**
@@ -27,12 +27,24 @@ export interface CaseTransferHistory {
27
27
  * @memberof CaseTransferHistory
28
28
  */
29
29
  decisionStatus?: CaseTransferHistoryDecisionStatusEnum;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof CaseTransferHistory
34
+ */
35
+ declineCategory?: string;
30
36
  /**
31
37
  *
32
38
  * @type {string}
33
39
  * @memberof CaseTransferHistory
34
40
  */
35
41
  declineNote?: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof CaseTransferHistory
46
+ */
47
+ declineReasonType?: string;
36
48
  /**
37
49
  *
38
50
  * @type {number}
@@ -22,7 +22,9 @@ export function CaseTransferHistoryFromJSONTyped(json, ignoreDiscriminator) {
22
22
  return {
23
23
  'decisionDate': !exists(json, 'decisionDate') ? undefined : (new Date(json['decisionDate'])),
24
24
  'decisionStatus': !exists(json, 'decisionStatus') ? undefined : json['decisionStatus'],
25
+ 'declineCategory': !exists(json, 'declineCategory') ? undefined : json['declineCategory'],
25
26
  'declineNote': !exists(json, 'declineNote') ? undefined : json['declineNote'],
27
+ 'declineReasonType': !exists(json, 'declineReasonType') ? undefined : json['declineReasonType'],
26
28
  'discountInCents': !exists(json, 'discountInCents') ? undefined : json['discountInCents'],
27
29
  'lawfirmCaseCreationDate': !exists(json, 'lawfirmCaseCreationDate') ? undefined : (new Date(json['lawfirmCaseCreationDate'])),
28
30
  'lawfirmCaseId': !exists(json, 'lawfirmCaseId') ? undefined : json['lawfirmCaseId'],
@@ -42,7 +44,9 @@ export function CaseTransferHistoryToJSON(value) {
42
44
  return {
43
45
  'decisionDate': value.decisionDate === undefined ? undefined : (value.decisionDate.toISOString()),
44
46
  'decisionStatus': value.decisionStatus,
47
+ 'declineCategory': value.declineCategory,
45
48
  'declineNote': value.declineNote,
49
+ 'declineReasonType': value.declineReasonType,
46
50
  'discountInCents': value.discountInCents,
47
51
  'lawfirmCaseCreationDate': value.lawfirmCaseCreationDate === undefined ? undefined : (value.lawfirmCaseCreationDate.toISOString()),
48
52
  'lawfirmCaseId': value.lawfirmCaseId,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.4.48",
3
+ "version": "2.4.50",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"