@otr-app/shared-backend-generated-client 2.4.98 → 2.4.99
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/.openapi-generator/FILES +1 -0
- package/dist/angular/model/dashboardCaseModel.ts +2 -0
- package/dist/angular/model/dashboardDisputeModel.ts +19 -0
- package/dist/angular/model/models.ts +1 -0
- package/dist/typescript/model/DashboardCaseModel.d.ts +1 -0
- package/dist/typescript/model/DashboardDisputeModel.d.ts +16 -0
- package/dist/typescript/model/DashboardDisputeModel.js +12 -0
- package/dist/typescript/model/models.d.ts +1 -0
- package/dist/typescript/model/models.js +1 -0
- package/dist/typescript-fetch/models/DashboardCaseModel.d.ts +7 -1
- package/dist/typescript-fetch/models/DashboardCaseModel.js +3 -1
- package/dist/typescript-fetch/models/DashboardDisputeModel.d.ts +39 -0
- package/dist/typescript-fetch/models/DashboardDisputeModel.js +40 -0
- package/dist/typescript-fetch/models/index.d.ts +1 -0
- package/dist/typescript-fetch/models/index.js +1 -0
- package/package.json +1 -1
|
@@ -321,6 +321,7 @@ model/dashboardCaseModel.ts
|
|
|
321
321
|
model/dashboardCaseUserModel.ts
|
|
322
322
|
model/dashboardCitationModel.ts
|
|
323
323
|
model/dashboardCourtModel.ts
|
|
324
|
+
model/dashboardDisputeModel.ts
|
|
324
325
|
model/dashboardStatusModel.ts
|
|
325
326
|
model/declineCaseCounterRequest.ts
|
|
326
327
|
model/declineCategory.ts
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
import { DashboardStatusModel } from './dashboardStatusModel';
|
|
13
13
|
import { DashboardCourtModel } from './dashboardCourtModel';
|
|
14
14
|
import { ViolationModel0 } from './violationModel0';
|
|
15
|
+
import { DashboardDisputeModel } from './dashboardDisputeModel';
|
|
15
16
|
import { DashboardCaseCounterOfferModel } from './dashboardCaseCounterOfferModel';
|
|
16
17
|
import { CaseUserDetailsModel } from './caseUserDetailsModel';
|
|
17
18
|
import { DashboardCitationModel } from './dashboardCitationModel';
|
|
@@ -28,6 +29,7 @@ export interface DashboardCaseModel {
|
|
|
28
29
|
caseUserDetails?: CaseUserDetailsModel;
|
|
29
30
|
citation?: DashboardCitationModel;
|
|
30
31
|
court?: DashboardCourtModel;
|
|
32
|
+
dispute?: DashboardDisputeModel;
|
|
31
33
|
engagementLetter?: EngagementLetterModel;
|
|
32
34
|
hasLeftLawyerReview?: boolean;
|
|
33
35
|
lawfirmId?: number;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
export interface DashboardDisputeModel {
|
|
15
|
+
amountDisputedInCents?: number;
|
|
16
|
+
disputeReason?: string;
|
|
17
|
+
hasDispute?: boolean;
|
|
18
|
+
}
|
|
19
|
+
|
|
@@ -197,6 +197,7 @@ export * from './dashboardCaseModel';
|
|
|
197
197
|
export * from './dashboardCaseUserModel';
|
|
198
198
|
export * from './dashboardCitationModel';
|
|
199
199
|
export * from './dashboardCourtModel';
|
|
200
|
+
export * from './dashboardDisputeModel';
|
|
200
201
|
export * from './dashboardStatusModel';
|
|
201
202
|
export * from './declineCaseCounterRequest';
|
|
202
203
|
export * from './declineCategory';
|
|
@@ -18,6 +18,7 @@ export interface DashboardCaseModel {
|
|
|
18
18
|
"caseUserDetails"?: models.CaseUserDetailsModel;
|
|
19
19
|
"citation"?: models.DashboardCitationModel;
|
|
20
20
|
"court"?: models.DashboardCourtModel;
|
|
21
|
+
"dispute"?: models.DashboardDisputeModel;
|
|
21
22
|
"engagementLetter"?: models.EngagementLetterModel;
|
|
22
23
|
"hasLeftLawyerReview"?: boolean;
|
|
23
24
|
"lawfirmId"?: number;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface DashboardDisputeModel {
|
|
13
|
+
"amountDisputedInCents"?: number;
|
|
14
|
+
"disputeReason"?: string;
|
|
15
|
+
"hasDispute"?: boolean;
|
|
16
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export {};
|
|
@@ -197,6 +197,7 @@ export * from './DashboardCaseModel';
|
|
|
197
197
|
export * from './DashboardCaseUserModel';
|
|
198
198
|
export * from './DashboardCitationModel';
|
|
199
199
|
export * from './DashboardCourtModel';
|
|
200
|
+
export * from './DashboardDisputeModel';
|
|
200
201
|
export * from './DashboardStatusModel';
|
|
201
202
|
export * from './DeclineCaseCounterRequest';
|
|
202
203
|
export * from './DeclineCategory';
|
|
@@ -197,6 +197,7 @@ export * from './DashboardCaseModel';
|
|
|
197
197
|
export * from './DashboardCaseUserModel';
|
|
198
198
|
export * from './DashboardCitationModel';
|
|
199
199
|
export * from './DashboardCourtModel';
|
|
200
|
+
export * from './DashboardDisputeModel';
|
|
200
201
|
export * from './DashboardStatusModel';
|
|
201
202
|
export * from './DeclineCaseCounterRequest';
|
|
202
203
|
export * from './DeclineCategory';
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { CaseUserDetailsModel, DashboardAuthorModel, DashboardCaseCounterOfferModel, DashboardCitationModel, DashboardCourtModel, DashboardStatusModel, EngagementLetterModel, OverduePaymentModel, ViolationModel0 } from './';
|
|
12
|
+
import { CaseUserDetailsModel, DashboardAuthorModel, DashboardCaseCounterOfferModel, DashboardCitationModel, DashboardCourtModel, DashboardDisputeModel, DashboardStatusModel, EngagementLetterModel, OverduePaymentModel, ViolationModel0 } from './';
|
|
13
13
|
/**
|
|
14
14
|
*
|
|
15
15
|
* @export
|
|
@@ -58,6 +58,12 @@ export interface DashboardCaseModel {
|
|
|
58
58
|
* @memberof DashboardCaseModel
|
|
59
59
|
*/
|
|
60
60
|
court?: DashboardCourtModel;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {DashboardDisputeModel}
|
|
64
|
+
* @memberof DashboardCaseModel
|
|
65
|
+
*/
|
|
66
|
+
dispute?: DashboardDisputeModel;
|
|
61
67
|
/**
|
|
62
68
|
*
|
|
63
69
|
* @type {EngagementLetterModel}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
import { exists } from '../runtime';
|
|
15
|
-
import { CaseUserDetailsModelFromJSON, CaseUserDetailsModelToJSON, DashboardAuthorModelFromJSON, DashboardAuthorModelToJSON, DashboardCaseCounterOfferModelFromJSON, DashboardCaseCounterOfferModelToJSON, DashboardCitationModelFromJSON, DashboardCitationModelToJSON, DashboardCourtModelFromJSON, DashboardCourtModelToJSON, DashboardStatusModelFromJSON, DashboardStatusModelToJSON, EngagementLetterModelFromJSON, EngagementLetterModelToJSON, OverduePaymentModelFromJSON, OverduePaymentModelToJSON, ViolationModel0FromJSON, ViolationModel0ToJSON, } from './';
|
|
15
|
+
import { CaseUserDetailsModelFromJSON, CaseUserDetailsModelToJSON, DashboardAuthorModelFromJSON, DashboardAuthorModelToJSON, DashboardCaseCounterOfferModelFromJSON, DashboardCaseCounterOfferModelToJSON, DashboardCitationModelFromJSON, DashboardCitationModelToJSON, DashboardCourtModelFromJSON, DashboardCourtModelToJSON, DashboardDisputeModelFromJSON, DashboardDisputeModelToJSON, DashboardStatusModelFromJSON, DashboardStatusModelToJSON, EngagementLetterModelFromJSON, EngagementLetterModelToJSON, OverduePaymentModelFromJSON, OverduePaymentModelToJSON, ViolationModel0FromJSON, ViolationModel0ToJSON, } from './';
|
|
16
16
|
export function DashboardCaseModelFromJSON(json) {
|
|
17
17
|
return DashboardCaseModelFromJSONTyped(json, false);
|
|
18
18
|
}
|
|
@@ -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
|
+
'dispute': !exists(json, 'dispute') ? undefined : DashboardDisputeModelFromJSON(json['dispute']),
|
|
31
32
|
'engagementLetter': !exists(json, 'engagementLetter') ? undefined : EngagementLetterModelFromJSON(json['engagementLetter']),
|
|
32
33
|
'hasLeftLawyerReview': !exists(json, 'hasLeftLawyerReview') ? undefined : json['hasLeftLawyerReview'],
|
|
33
34
|
'lawfirmId': !exists(json, 'lawfirmId') ? undefined : json['lawfirmId'],
|
|
@@ -59,6 +60,7 @@ export function DashboardCaseModelToJSON(value) {
|
|
|
59
60
|
'caseUserDetails': CaseUserDetailsModelToJSON(value.caseUserDetails),
|
|
60
61
|
'citation': DashboardCitationModelToJSON(value.citation),
|
|
61
62
|
'court': DashboardCourtModelToJSON(value.court),
|
|
63
|
+
'dispute': DashboardDisputeModelToJSON(value.dispute),
|
|
62
64
|
'engagementLetter': EngagementLetterModelToJSON(value.engagementLetter),
|
|
63
65
|
'hasLeftLawyerReview': value.hasLeftLawyerReview,
|
|
64
66
|
'lawfirmId': value.lawfirmId,
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface DashboardDisputeModel
|
|
16
|
+
*/
|
|
17
|
+
export interface DashboardDisputeModel {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof DashboardDisputeModel
|
|
22
|
+
*/
|
|
23
|
+
amountDisputedInCents?: number;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof DashboardDisputeModel
|
|
28
|
+
*/
|
|
29
|
+
disputeReason?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {boolean}
|
|
33
|
+
* @memberof DashboardDisputeModel
|
|
34
|
+
*/
|
|
35
|
+
hasDispute?: boolean;
|
|
36
|
+
}
|
|
37
|
+
export declare function DashboardDisputeModelFromJSON(json: any): DashboardDisputeModel;
|
|
38
|
+
export declare function DashboardDisputeModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DashboardDisputeModel;
|
|
39
|
+
export declare function DashboardDisputeModelToJSON(value?: DashboardDisputeModel | null): any;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OffTheRecord Rest Service API - Devo
|
|
5
|
+
* A service to handle your traffic tickets
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { exists } from '../runtime';
|
|
15
|
+
export function DashboardDisputeModelFromJSON(json) {
|
|
16
|
+
return DashboardDisputeModelFromJSONTyped(json, false);
|
|
17
|
+
}
|
|
18
|
+
export function DashboardDisputeModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
19
|
+
if ((json === undefined) || (json === null)) {
|
|
20
|
+
return json;
|
|
21
|
+
}
|
|
22
|
+
return {
|
|
23
|
+
'amountDisputedInCents': !exists(json, 'amountDisputedInCents') ? undefined : json['amountDisputedInCents'],
|
|
24
|
+
'disputeReason': !exists(json, 'disputeReason') ? undefined : json['disputeReason'],
|
|
25
|
+
'hasDispute': !exists(json, 'hasDispute') ? undefined : json['hasDispute'],
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
export function DashboardDisputeModelToJSON(value) {
|
|
29
|
+
if (value === undefined) {
|
|
30
|
+
return undefined;
|
|
31
|
+
}
|
|
32
|
+
if (value === null) {
|
|
33
|
+
return null;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
'amountDisputedInCents': value.amountDisputedInCents,
|
|
37
|
+
'disputeReason': value.disputeReason,
|
|
38
|
+
'hasDispute': value.hasDispute,
|
|
39
|
+
};
|
|
40
|
+
}
|
|
@@ -197,6 +197,7 @@ export * from './DashboardCaseModel';
|
|
|
197
197
|
export * from './DashboardCaseUserModel';
|
|
198
198
|
export * from './DashboardCitationModel';
|
|
199
199
|
export * from './DashboardCourtModel';
|
|
200
|
+
export * from './DashboardDisputeModel';
|
|
200
201
|
export * from './DashboardStatusModel';
|
|
201
202
|
export * from './DeclineCaseCounterRequest';
|
|
202
203
|
export * from './DeclineCategory';
|
|
@@ -197,6 +197,7 @@ export * from './DashboardCaseModel';
|
|
|
197
197
|
export * from './DashboardCaseUserModel';
|
|
198
198
|
export * from './DashboardCitationModel';
|
|
199
199
|
export * from './DashboardCourtModel';
|
|
200
|
+
export * from './DashboardDisputeModel';
|
|
200
201
|
export * from './DashboardStatusModel';
|
|
201
202
|
export * from './DeclineCaseCounterRequest';
|
|
202
203
|
export * from './DeclineCategory';
|