@otr-app/shared-backend-generated-client 2.5.7 → 2.5.10
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/models.ts +1 -0
- package/dist/angular/model/unavailableMatchAttributesModel.ts +19 -0
- package/dist/angular/model/workflowCaseModel.ts +2 -0
- package/dist/typescript/model/UnavailableMatchAttributesModel.d.ts +16 -0
- package/dist/typescript/model/UnavailableMatchAttributesModel.js +12 -0
- package/dist/typescript/model/WorkflowCaseModel.d.ts +1 -0
- package/dist/typescript/model/models.d.ts +1 -0
- package/dist/typescript/model/models.js +1 -0
- package/dist/typescript-fetch/models/UnavailableMatchAttributesModel.d.ts +39 -0
- package/dist/typescript-fetch/models/UnavailableMatchAttributesModel.js +40 -0
- package/dist/typescript-fetch/models/WorkflowCaseModel.d.ts +7 -1
- package/dist/typescript-fetch/models/WorkflowCaseModel.js +3 -1
- package/dist/typescript-fetch/models/index.d.ts +1 -0
- package/dist/typescript-fetch/models/index.js +1 -0
- package/dist/typescript-open-api/otr-backend.d.ts +25 -4
- package/package.json +1 -1
|
@@ -868,6 +868,7 @@ model/topics.ts
|
|
|
868
868
|
model/trafficViolationInputRequest.ts
|
|
869
869
|
model/transferCaseRequest.ts
|
|
870
870
|
model/uSStateDomain.ts
|
|
871
|
+
model/unavailableMatchAttributesModel.ts
|
|
871
872
|
model/updateAddress.ts
|
|
872
873
|
model/updateCaseActionRequest.ts
|
|
873
874
|
model/updateCaseActionResponse.ts
|
|
@@ -743,6 +743,7 @@ export * from './topics';
|
|
|
743
743
|
export * from './trafficViolationInputRequest';
|
|
744
744
|
export * from './transferCaseRequest';
|
|
745
745
|
export * from './uSStateDomain';
|
|
746
|
+
export * from './unavailableMatchAttributesModel';
|
|
746
747
|
export * from './updateAddress';
|
|
747
748
|
export * from './updateCaseActionRequest';
|
|
748
749
|
export * from './updateCaseActionResponse';
|
|
@@ -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 UnavailableMatchAttributesModel {
|
|
15
|
+
algorithmName?: string;
|
|
16
|
+
lawfirmId?: string;
|
|
17
|
+
reasonNotAvailable?: string;
|
|
18
|
+
}
|
|
19
|
+
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { SubscriptionDiscountEligibility } from './subscriptionDiscountEligibility';
|
|
13
|
+
import { UnavailableMatchAttributesModel } from './unavailableMatchAttributesModel';
|
|
13
14
|
import { WorkflowViolationPenaltyModel } from './workflowViolationPenaltyModel';
|
|
14
15
|
import { WorkflowCitationModel } from './workflowCitationModel';
|
|
15
16
|
import { LetterOfEngagement } from './letterOfEngagement';
|
|
@@ -25,6 +26,7 @@ export interface WorkflowCaseModel {
|
|
|
25
26
|
citation?: WorkflowCitationModel;
|
|
26
27
|
courtAppointmentDate?: Timestamp;
|
|
27
28
|
isLawfirmCodeApplied?: boolean;
|
|
29
|
+
latestUnavailableMatchAttributes?: UnavailableMatchAttributesModel;
|
|
28
30
|
legalServices?: Array<LegalServiceModel>;
|
|
29
31
|
letterOfEngagement?: LetterOfEngagement;
|
|
30
32
|
maxPenalties?: Array<WorkflowViolationPenaltyModel>;
|
|
@@ -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 UnavailableMatchAttributesModel {
|
|
13
|
+
"algorithmName"?: string;
|
|
14
|
+
"lawfirmId"?: string;
|
|
15
|
+
"reasonNotAvailable"?: string;
|
|
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 {};
|
|
@@ -17,6 +17,7 @@ export interface WorkflowCaseModel {
|
|
|
17
17
|
"citation"?: models.WorkflowCitationModel;
|
|
18
18
|
"courtAppointmentDate"?: models.Timestamp;
|
|
19
19
|
"isLawfirmCodeApplied"?: boolean;
|
|
20
|
+
"latestUnavailableMatchAttributes"?: models.UnavailableMatchAttributesModel;
|
|
20
21
|
"legalServices"?: Array<models.LegalServiceModel>;
|
|
21
22
|
"letterOfEngagement"?: models.LetterOfEngagement;
|
|
22
23
|
"maxPenalties"?: Array<models.WorkflowViolationPenaltyModel>;
|
|
@@ -743,6 +743,7 @@ export * from './Topics';
|
|
|
743
743
|
export * from './TrafficViolationInputRequest';
|
|
744
744
|
export * from './TransferCaseRequest';
|
|
745
745
|
export * from './USStateDomain';
|
|
746
|
+
export * from './UnavailableMatchAttributesModel';
|
|
746
747
|
export * from './UpdateAddress';
|
|
747
748
|
export * from './UpdateCaseActionRequest';
|
|
748
749
|
export * from './UpdateCaseActionResponse';
|
|
@@ -743,6 +743,7 @@ export * from './Topics';
|
|
|
743
743
|
export * from './TrafficViolationInputRequest';
|
|
744
744
|
export * from './TransferCaseRequest';
|
|
745
745
|
export * from './USStateDomain';
|
|
746
|
+
export * from './UnavailableMatchAttributesModel';
|
|
746
747
|
export * from './UpdateAddress';
|
|
747
748
|
export * from './UpdateCaseActionRequest';
|
|
748
749
|
export * from './UpdateCaseActionResponse';
|
|
@@ -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 UnavailableMatchAttributesModel
|
|
16
|
+
*/
|
|
17
|
+
export interface UnavailableMatchAttributesModel {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UnavailableMatchAttributesModel
|
|
22
|
+
*/
|
|
23
|
+
algorithmName?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UnavailableMatchAttributesModel
|
|
28
|
+
*/
|
|
29
|
+
lawfirmId?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof UnavailableMatchAttributesModel
|
|
34
|
+
*/
|
|
35
|
+
reasonNotAvailable?: string;
|
|
36
|
+
}
|
|
37
|
+
export declare function UnavailableMatchAttributesModelFromJSON(json: any): UnavailableMatchAttributesModel;
|
|
38
|
+
export declare function UnavailableMatchAttributesModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnavailableMatchAttributesModel;
|
|
39
|
+
export declare function UnavailableMatchAttributesModelToJSON(value?: UnavailableMatchAttributesModel | 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 UnavailableMatchAttributesModelFromJSON(json) {
|
|
16
|
+
return UnavailableMatchAttributesModelFromJSONTyped(json, false);
|
|
17
|
+
}
|
|
18
|
+
export function UnavailableMatchAttributesModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
19
|
+
if ((json === undefined) || (json === null)) {
|
|
20
|
+
return json;
|
|
21
|
+
}
|
|
22
|
+
return {
|
|
23
|
+
'algorithmName': !exists(json, 'algorithmName') ? undefined : json['algorithmName'],
|
|
24
|
+
'lawfirmId': !exists(json, 'lawfirmId') ? undefined : json['lawfirmId'],
|
|
25
|
+
'reasonNotAvailable': !exists(json, 'reasonNotAvailable') ? undefined : json['reasonNotAvailable'],
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
export function UnavailableMatchAttributesModelToJSON(value) {
|
|
29
|
+
if (value === undefined) {
|
|
30
|
+
return undefined;
|
|
31
|
+
}
|
|
32
|
+
if (value === null) {
|
|
33
|
+
return null;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
'algorithmName': value.algorithmName,
|
|
37
|
+
'lawfirmId': value.lawfirmId,
|
|
38
|
+
'reasonNotAvailable': value.reasonNotAvailable,
|
|
39
|
+
};
|
|
40
|
+
}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { LegalServiceModel, LetterOfEngagement, PaymentPlanTypeModel, SubscriptionDiscountEligibility, Timestamp, WorkflowCitationModel, WorkflowViolationPenaltyModel } from './';
|
|
12
|
+
import { LegalServiceModel, LetterOfEngagement, PaymentPlanTypeModel, SubscriptionDiscountEligibility, Timestamp, UnavailableMatchAttributesModel, WorkflowCitationModel, WorkflowViolationPenaltyModel } from './';
|
|
13
13
|
/**
|
|
14
14
|
*
|
|
15
15
|
* @export
|
|
@@ -52,6 +52,12 @@ export interface WorkflowCaseModel {
|
|
|
52
52
|
* @memberof WorkflowCaseModel
|
|
53
53
|
*/
|
|
54
54
|
isLawfirmCodeApplied?: boolean;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {UnavailableMatchAttributesModel}
|
|
58
|
+
* @memberof WorkflowCaseModel
|
|
59
|
+
*/
|
|
60
|
+
latestUnavailableMatchAttributes?: UnavailableMatchAttributesModel;
|
|
55
61
|
/**
|
|
56
62
|
*
|
|
57
63
|
* @type {Array<LegalServiceModel>}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
import { exists } from '../runtime';
|
|
15
|
-
import { LegalServiceModelFromJSON, LegalServiceModelToJSON, LetterOfEngagementFromJSON, LetterOfEngagementToJSON, PaymentPlanTypeModelFromJSON, PaymentPlanTypeModelToJSON, SubscriptionDiscountEligibilityFromJSON, SubscriptionDiscountEligibilityToJSON, TimestampFromJSON, TimestampToJSON, WorkflowCitationModelFromJSON, WorkflowCitationModelToJSON, WorkflowViolationPenaltyModelFromJSON, WorkflowViolationPenaltyModelToJSON, } from './';
|
|
15
|
+
import { LegalServiceModelFromJSON, LegalServiceModelToJSON, LetterOfEngagementFromJSON, LetterOfEngagementToJSON, PaymentPlanTypeModelFromJSON, PaymentPlanTypeModelToJSON, SubscriptionDiscountEligibilityFromJSON, SubscriptionDiscountEligibilityToJSON, TimestampFromJSON, TimestampToJSON, UnavailableMatchAttributesModelFromJSON, UnavailableMatchAttributesModelToJSON, WorkflowCitationModelFromJSON, WorkflowCitationModelToJSON, WorkflowViolationPenaltyModelFromJSON, WorkflowViolationPenaltyModelToJSON, } from './';
|
|
16
16
|
export function WorkflowCaseModelFromJSON(json) {
|
|
17
17
|
return WorkflowCaseModelFromJSONTyped(json, false);
|
|
18
18
|
}
|
|
@@ -27,6 +27,7 @@ export function WorkflowCaseModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
27
27
|
'citation': !exists(json, 'citation') ? undefined : WorkflowCitationModelFromJSON(json['citation']),
|
|
28
28
|
'courtAppointmentDate': !exists(json, 'courtAppointmentDate') ? undefined : TimestampFromJSON(json['courtAppointmentDate']),
|
|
29
29
|
'isLawfirmCodeApplied': !exists(json, 'isLawfirmCodeApplied') ? undefined : json['isLawfirmCodeApplied'],
|
|
30
|
+
'latestUnavailableMatchAttributes': !exists(json, 'latestUnavailableMatchAttributes') ? undefined : UnavailableMatchAttributesModelFromJSON(json['latestUnavailableMatchAttributes']),
|
|
30
31
|
'legalServices': !exists(json, 'legalServices') ? undefined : (json['legalServices'].map(LegalServiceModelFromJSON)),
|
|
31
32
|
'letterOfEngagement': !exists(json, 'letterOfEngagement') ? undefined : LetterOfEngagementFromJSON(json['letterOfEngagement']),
|
|
32
33
|
'maxPenalties': !exists(json, 'maxPenalties') ? undefined : (json['maxPenalties'].map(WorkflowViolationPenaltyModelFromJSON)),
|
|
@@ -51,6 +52,7 @@ export function WorkflowCaseModelToJSON(value) {
|
|
|
51
52
|
'citation': WorkflowCitationModelToJSON(value.citation),
|
|
52
53
|
'courtAppointmentDate': TimestampToJSON(value.courtAppointmentDate),
|
|
53
54
|
'isLawfirmCodeApplied': value.isLawfirmCodeApplied,
|
|
55
|
+
'latestUnavailableMatchAttributes': UnavailableMatchAttributesModelToJSON(value.latestUnavailableMatchAttributes),
|
|
54
56
|
'legalServices': value.legalServices === undefined ? undefined : (value.legalServices.map(LegalServiceModelToJSON)),
|
|
55
57
|
'letterOfEngagement': LetterOfEngagementToJSON(value.letterOfEngagement),
|
|
56
58
|
'maxPenalties': value.maxPenalties === undefined ? undefined : (value.maxPenalties.map(WorkflowViolationPenaltyModelToJSON)),
|
|
@@ -743,6 +743,7 @@ export * from './Topics';
|
|
|
743
743
|
export * from './TrafficViolationInputRequest';
|
|
744
744
|
export * from './TransferCaseRequest';
|
|
745
745
|
export * from './USStateDomain';
|
|
746
|
+
export * from './UnavailableMatchAttributesModel';
|
|
746
747
|
export * from './UpdateAddress';
|
|
747
748
|
export * from './UpdateCaseActionRequest';
|
|
748
749
|
export * from './UpdateCaseActionResponse';
|
|
@@ -743,6 +743,7 @@ export * from './Topics';
|
|
|
743
743
|
export * from './TrafficViolationInputRequest';
|
|
744
744
|
export * from './TransferCaseRequest';
|
|
745
745
|
export * from './USStateDomain';
|
|
746
|
+
export * from './UnavailableMatchAttributesModel';
|
|
746
747
|
export * from './UpdateAddress';
|
|
747
748
|
export * from './UpdateCaseActionRequest';
|
|
748
749
|
export * from './UpdateCaseActionResponse';
|
|
@@ -9667,6 +9667,17 @@ export interface components {
|
|
|
9667
9667
|
/** @enum {string} */
|
|
9668
9668
|
counterOfferStatus?: DashboardCaseCounterOfferModelCounterOfferStatus;
|
|
9669
9669
|
};
|
|
9670
|
+
/** DashboardCaseCountsDto */
|
|
9671
|
+
DashboardCaseCountsDto: {
|
|
9672
|
+
/** Format: int32 */
|
|
9673
|
+
active?: number;
|
|
9674
|
+
/** Format: int32 */
|
|
9675
|
+
canceled?: number;
|
|
9676
|
+
/** Format: int32 */
|
|
9677
|
+
resolved?: number;
|
|
9678
|
+
/** Format: int32 */
|
|
9679
|
+
unconfirmed?: number;
|
|
9680
|
+
};
|
|
9670
9681
|
/** DashboardCaseModel */
|
|
9671
9682
|
DashboardCaseModel: {
|
|
9672
9683
|
authorModel?: components["schemas"]["DashboardAuthorModel"];
|
|
@@ -9677,6 +9688,8 @@ export interface components {
|
|
|
9677
9688
|
caseUserDetails?: components["schemas"]["CaseUserDetailsModel"];
|
|
9678
9689
|
citation?: components["schemas"]["DashboardCitationModel"];
|
|
9679
9690
|
court?: components["schemas"]["DashboardCourtModel"];
|
|
9691
|
+
/** Format: date-time */
|
|
9692
|
+
courtDate?: string;
|
|
9680
9693
|
disputeModel?: components["schemas"]["DashboardDisputeModel"];
|
|
9681
9694
|
engagementLetter?: components["schemas"]["EngagementLetterModel"];
|
|
9682
9695
|
hasLeftLawyerReview?: boolean;
|
|
@@ -12572,6 +12585,7 @@ export interface components {
|
|
|
12572
12585
|
/** ListDashboardCasesResponse */
|
|
12573
12586
|
ListDashboardCasesResponse: {
|
|
12574
12587
|
cases?: components["schemas"]["DashboardCaseModel"][];
|
|
12588
|
+
counts?: components["schemas"]["DashboardCaseCountsDto"];
|
|
12575
12589
|
previousPageToken?: string;
|
|
12576
12590
|
};
|
|
12577
12591
|
/** ListEligibleStatusResponse */
|
|
@@ -15225,6 +15239,12 @@ export interface components {
|
|
|
15225
15239
|
stateCode?: string;
|
|
15226
15240
|
stateName?: string;
|
|
15227
15241
|
};
|
|
15242
|
+
/** UnavailableMatchAttributesModel */
|
|
15243
|
+
UnavailableMatchAttributesModel: {
|
|
15244
|
+
algorithmName?: string;
|
|
15245
|
+
lawfirmId?: string;
|
|
15246
|
+
reasonNotAvailable?: string;
|
|
15247
|
+
};
|
|
15228
15248
|
/** UpdateAddress */
|
|
15229
15249
|
UpdateAddress: {
|
|
15230
15250
|
addressLine1?: string;
|
|
@@ -16138,6 +16158,7 @@ export interface components {
|
|
|
16138
16158
|
citation?: components["schemas"]["WorkflowCitationModel"];
|
|
16139
16159
|
courtAppointmentDate?: components["schemas"]["Timestamp"];
|
|
16140
16160
|
isLawfirmCodeApplied?: boolean;
|
|
16161
|
+
latestUnavailableMatchAttributes?: components["schemas"]["UnavailableMatchAttributesModel"];
|
|
16141
16162
|
legalServices?: components["schemas"]["LegalServiceModel"][];
|
|
16142
16163
|
letterOfEngagement?: components["schemas"]["LetterOfEngagement"];
|
|
16143
16164
|
maxPenalties?: components["schemas"]["WorkflowViolationPenaltyModel"][];
|
|
@@ -31213,16 +31234,16 @@ export interface operations {
|
|
|
31213
31234
|
limit?: number;
|
|
31214
31235
|
/** @description previousPageToken */
|
|
31215
31236
|
previousPageToken?: string;
|
|
31216
|
-
/** @description statusCategories */
|
|
31217
|
-
statusCategories?: PathsApiV1CaseStatusesGetParametersQueryCategories;
|
|
31218
31237
|
/** @description sortBy */
|
|
31219
31238
|
sortBy?: PathsApiV3UsersUserIdCasesGetParametersQuerySortBy;
|
|
31220
|
-
/** @description caseStatuses */
|
|
31221
|
-
caseStatuses?: PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCaseStatuses;
|
|
31222
31239
|
/** @description includeDeleted */
|
|
31223
31240
|
includeDeleted?: boolean;
|
|
31224
31241
|
/** @description needsAttention */
|
|
31225
31242
|
needsAttention?: boolean;
|
|
31243
|
+
/** @description statusCategories */
|
|
31244
|
+
statusCategories?: PathsApiV1CaseStatusesGetParametersQueryCategories;
|
|
31245
|
+
/** @description caseStatuses */
|
|
31246
|
+
caseStatuses?: PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCaseStatuses;
|
|
31226
31247
|
};
|
|
31227
31248
|
header?: never;
|
|
31228
31249
|
path: {
|