@otr-app/shared-backend-generated-client 2.5.4 → 2.5.6
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/dashboardCaseCountsDto.ts +20 -0
- package/dist/angular/model/listDashboardCasesResponse.ts +2 -0
- package/dist/angular/model/models.ts +1 -0
- package/dist/typescript/model/DashboardCaseCountsDto.d.ts +17 -0
- package/dist/typescript/model/DashboardCaseCountsDto.js +12 -0
- package/dist/typescript/model/ListDashboardCasesResponse.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/DashboardCaseCountsDto.d.ts +45 -0
- package/dist/typescript-fetch/models/DashboardCaseCountsDto.js +42 -0
- package/dist/typescript-fetch/models/ListDashboardCasesResponse.d.ts +7 -1
- package/dist/typescript-fetch/models/ListDashboardCasesResponse.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 +10 -2
- package/package.json +1 -1
|
@@ -317,6 +317,7 @@ model/customerServiceAgentDomain.ts
|
|
|
317
317
|
model/dashboardAddressModel.ts
|
|
318
318
|
model/dashboardAuthorModel.ts
|
|
319
319
|
model/dashboardCaseCounterOfferModel.ts
|
|
320
|
+
model/dashboardCaseCountsDto.ts
|
|
320
321
|
model/dashboardCaseModel.ts
|
|
321
322
|
model/dashboardCaseUserModel.ts
|
|
322
323
|
model/dashboardCitationModel.ts
|
|
@@ -0,0 +1,20 @@
|
|
|
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 DashboardCaseCountsDto {
|
|
15
|
+
active?: number;
|
|
16
|
+
canceled?: number;
|
|
17
|
+
resolved?: number;
|
|
18
|
+
unconfirmed?: number;
|
|
19
|
+
}
|
|
20
|
+
|
|
@@ -10,10 +10,12 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { DashboardCaseModel } from './dashboardCaseModel';
|
|
13
|
+
import { DashboardCaseCountsDto } from './dashboardCaseCountsDto';
|
|
13
14
|
|
|
14
15
|
|
|
15
16
|
export interface ListDashboardCasesResponse {
|
|
16
17
|
cases?: Array<DashboardCaseModel>;
|
|
18
|
+
counts?: DashboardCaseCountsDto;
|
|
17
19
|
previousPageToken?: string;
|
|
18
20
|
}
|
|
19
21
|
|
|
@@ -193,6 +193,7 @@ export * from './customerServiceAgentDomain';
|
|
|
193
193
|
export * from './dashboardAddressModel';
|
|
194
194
|
export * from './dashboardAuthorModel';
|
|
195
195
|
export * from './dashboardCaseCounterOfferModel';
|
|
196
|
+
export * from './dashboardCaseCountsDto';
|
|
196
197
|
export * from './dashboardCaseModel';
|
|
197
198
|
export * from './dashboardCaseUserModel';
|
|
198
199
|
export * from './dashboardCitationModel';
|
|
@@ -0,0 +1,17 @@
|
|
|
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 DashboardCaseCountsDto {
|
|
13
|
+
"active"?: number;
|
|
14
|
+
"canceled"?: number;
|
|
15
|
+
"resolved"?: number;
|
|
16
|
+
"unconfirmed"?: number;
|
|
17
|
+
}
|
|
@@ -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 {};
|
|
@@ -193,6 +193,7 @@ export * from './CustomerServiceAgentDomain';
|
|
|
193
193
|
export * from './DashboardAddressModel';
|
|
194
194
|
export * from './DashboardAuthorModel';
|
|
195
195
|
export * from './DashboardCaseCounterOfferModel';
|
|
196
|
+
export * from './DashboardCaseCountsDto';
|
|
196
197
|
export * from './DashboardCaseModel';
|
|
197
198
|
export * from './DashboardCaseUserModel';
|
|
198
199
|
export * from './DashboardCitationModel';
|
|
@@ -193,6 +193,7 @@ export * from './CustomerServiceAgentDomain';
|
|
|
193
193
|
export * from './DashboardAddressModel';
|
|
194
194
|
export * from './DashboardAuthorModel';
|
|
195
195
|
export * from './DashboardCaseCounterOfferModel';
|
|
196
|
+
export * from './DashboardCaseCountsDto';
|
|
196
197
|
export * from './DashboardCaseModel';
|
|
197
198
|
export * from './DashboardCaseUserModel';
|
|
198
199
|
export * from './DashboardCitationModel';
|
|
@@ -0,0 +1,45 @@
|
|
|
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 DashboardCaseCountsDto
|
|
16
|
+
*/
|
|
17
|
+
export interface DashboardCaseCountsDto {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof DashboardCaseCountsDto
|
|
22
|
+
*/
|
|
23
|
+
active?: number;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof DashboardCaseCountsDto
|
|
28
|
+
*/
|
|
29
|
+
canceled?: number;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof DashboardCaseCountsDto
|
|
34
|
+
*/
|
|
35
|
+
resolved?: number;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof DashboardCaseCountsDto
|
|
40
|
+
*/
|
|
41
|
+
unconfirmed?: number;
|
|
42
|
+
}
|
|
43
|
+
export declare function DashboardCaseCountsDtoFromJSON(json: any): DashboardCaseCountsDto;
|
|
44
|
+
export declare function DashboardCaseCountsDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): DashboardCaseCountsDto;
|
|
45
|
+
export declare function DashboardCaseCountsDtoToJSON(value?: DashboardCaseCountsDto | null): any;
|
|
@@ -0,0 +1,42 @@
|
|
|
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 DashboardCaseCountsDtoFromJSON(json) {
|
|
16
|
+
return DashboardCaseCountsDtoFromJSONTyped(json, false);
|
|
17
|
+
}
|
|
18
|
+
export function DashboardCaseCountsDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
19
|
+
if ((json === undefined) || (json === null)) {
|
|
20
|
+
return json;
|
|
21
|
+
}
|
|
22
|
+
return {
|
|
23
|
+
'active': !exists(json, 'active') ? undefined : json['active'],
|
|
24
|
+
'canceled': !exists(json, 'canceled') ? undefined : json['canceled'],
|
|
25
|
+
'resolved': !exists(json, 'resolved') ? undefined : json['resolved'],
|
|
26
|
+
'unconfirmed': !exists(json, 'unconfirmed') ? undefined : json['unconfirmed'],
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
export function DashboardCaseCountsDtoToJSON(value) {
|
|
30
|
+
if (value === undefined) {
|
|
31
|
+
return undefined;
|
|
32
|
+
}
|
|
33
|
+
if (value === null) {
|
|
34
|
+
return null;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'active': value.active,
|
|
38
|
+
'canceled': value.canceled,
|
|
39
|
+
'resolved': value.resolved,
|
|
40
|
+
'unconfirmed': value.unconfirmed,
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { DashboardCaseModel } from './';
|
|
12
|
+
import { DashboardCaseCountsDto, DashboardCaseModel } from './';
|
|
13
13
|
/**
|
|
14
14
|
*
|
|
15
15
|
* @export
|
|
@@ -22,6 +22,12 @@ export interface ListDashboardCasesResponse {
|
|
|
22
22
|
* @memberof ListDashboardCasesResponse
|
|
23
23
|
*/
|
|
24
24
|
cases?: Array<DashboardCaseModel>;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {DashboardCaseCountsDto}
|
|
28
|
+
* @memberof ListDashboardCasesResponse
|
|
29
|
+
*/
|
|
30
|
+
counts?: DashboardCaseCountsDto;
|
|
25
31
|
/**
|
|
26
32
|
*
|
|
27
33
|
* @type {string}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
import { exists } from '../runtime';
|
|
15
|
-
import { DashboardCaseModelFromJSON, DashboardCaseModelToJSON, } from './';
|
|
15
|
+
import { DashboardCaseCountsDtoFromJSON, DashboardCaseCountsDtoToJSON, DashboardCaseModelFromJSON, DashboardCaseModelToJSON, } from './';
|
|
16
16
|
export function ListDashboardCasesResponseFromJSON(json) {
|
|
17
17
|
return ListDashboardCasesResponseFromJSONTyped(json, false);
|
|
18
18
|
}
|
|
@@ -22,6 +22,7 @@ export function ListDashboardCasesResponseFromJSONTyped(json, ignoreDiscriminato
|
|
|
22
22
|
}
|
|
23
23
|
return {
|
|
24
24
|
'cases': !exists(json, 'cases') ? undefined : (json['cases'].map(DashboardCaseModelFromJSON)),
|
|
25
|
+
'counts': !exists(json, 'counts') ? undefined : DashboardCaseCountsDtoFromJSON(json['counts']),
|
|
25
26
|
'previousPageToken': !exists(json, 'previousPageToken') ? undefined : json['previousPageToken'],
|
|
26
27
|
};
|
|
27
28
|
}
|
|
@@ -34,6 +35,7 @@ export function ListDashboardCasesResponseToJSON(value) {
|
|
|
34
35
|
}
|
|
35
36
|
return {
|
|
36
37
|
'cases': value.cases === undefined ? undefined : (value.cases.map(DashboardCaseModelToJSON)),
|
|
38
|
+
'counts': DashboardCaseCountsDtoToJSON(value.counts),
|
|
37
39
|
'previousPageToken': value.previousPageToken,
|
|
38
40
|
};
|
|
39
41
|
}
|
|
@@ -193,6 +193,7 @@ export * from './CustomerServiceAgentDomain';
|
|
|
193
193
|
export * from './DashboardAddressModel';
|
|
194
194
|
export * from './DashboardAuthorModel';
|
|
195
195
|
export * from './DashboardCaseCounterOfferModel';
|
|
196
|
+
export * from './DashboardCaseCountsDto';
|
|
196
197
|
export * from './DashboardCaseModel';
|
|
197
198
|
export * from './DashboardCaseUserModel';
|
|
198
199
|
export * from './DashboardCitationModel';
|
|
@@ -193,6 +193,7 @@ export * from './CustomerServiceAgentDomain';
|
|
|
193
193
|
export * from './DashboardAddressModel';
|
|
194
194
|
export * from './DashboardAuthorModel';
|
|
195
195
|
export * from './DashboardCaseCounterOfferModel';
|
|
196
|
+
export * from './DashboardCaseCountsDto';
|
|
196
197
|
export * from './DashboardCaseModel';
|
|
197
198
|
export * from './DashboardCaseUserModel';
|
|
198
199
|
export * from './DashboardCitationModel';
|
|
@@ -16065,7 +16065,13 @@ export interface components {
|
|
|
16065
16065
|
};
|
|
16066
16066
|
/** ViolationModel0 */
|
|
16067
16067
|
ViolationModel0: {
|
|
16068
|
+
isCriminal?: boolean;
|
|
16069
|
+
isMoving?: boolean;
|
|
16068
16070
|
userFriendlyName?: string;
|
|
16071
|
+
/** @enum {string} */
|
|
16072
|
+
violationClassification?: PathsApiV1LawfirmsLawfirmIdAccountFeesDeleteParametersQueryClassification;
|
|
16073
|
+
violationClassificationDescription?: string;
|
|
16074
|
+
violationClassificationFriendlyName?: string;
|
|
16069
16075
|
};
|
|
16070
16076
|
/** ViolationNames */
|
|
16071
16077
|
ViolationNames: {
|
|
@@ -16204,8 +16210,7 @@ export interface components {
|
|
|
16204
16210
|
/** WorkflowViolationModel */
|
|
16205
16211
|
WorkflowViolationModel: {
|
|
16206
16212
|
classDescription?: string;
|
|
16207
|
-
|
|
16208
|
-
isWobblerToCriminal?: boolean;
|
|
16213
|
+
criminal?: boolean;
|
|
16209
16214
|
penalties?: components["schemas"]["WorkflowViolationPenaltyModel"][];
|
|
16210
16215
|
trafficViolationDesc?: string;
|
|
16211
16216
|
/** Format: int64 */
|
|
@@ -16213,6 +16218,7 @@ export interface components {
|
|
|
16213
16218
|
/** @enum {string} */
|
|
16214
16219
|
violationClassification?: PathsApiV1LawfirmsLawfirmIdAccountFeesDeleteParametersQueryClassification;
|
|
16215
16220
|
violationCode?: string;
|
|
16221
|
+
wobblerToCriminal?: boolean;
|
|
16216
16222
|
};
|
|
16217
16223
|
/** WorkflowViolationPenaltyModel */
|
|
16218
16224
|
WorkflowViolationPenaltyModel: {
|
|
@@ -16335,6 +16341,8 @@ export interface operations {
|
|
|
16335
16341
|
limit: number;
|
|
16336
16342
|
/** @description regionCode */
|
|
16337
16343
|
regionCode?: string;
|
|
16344
|
+
/** @description preferredRegionCode */
|
|
16345
|
+
preferredRegionCode?: boolean;
|
|
16338
16346
|
/** @description previousPageToken */
|
|
16339
16347
|
previousPageToken?: string;
|
|
16340
16348
|
/** @description nextPageToken */
|