@otr-app/shared-backend-generated-client 2.5.7 → 2.5.8
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/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';
|