@otr-app/shared-backend-generated-client 2.3.36 → 2.3.38
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/model/citationsResponseModel.ts +6 -0
- package/dist/angular/model/getCitationsWithMissingFieldsRequest.ts +2 -0
- package/dist/typescript/model/CitationsResponseModel.d.ts +5 -0
- package/dist/typescript/model/CitationsResponseModel.js +4 -0
- package/dist/typescript/model/GetCitationsWithMissingFieldsRequest.d.ts +2 -0
- package/package.json +1 -1
|
@@ -21,6 +21,8 @@ export interface CitationsResponseModel {
|
|
|
21
21
|
countyName?: string;
|
|
22
22
|
courtName?: string;
|
|
23
23
|
creationDateUtc?: Timestamp;
|
|
24
|
+
experimentName?: CitationsResponseModel.ExperimentNameEnum;
|
|
25
|
+
groupName?: string;
|
|
24
26
|
hasPhoto?: boolean;
|
|
25
27
|
involvesAccident?: boolean;
|
|
26
28
|
lawfirmId?: string;
|
|
@@ -83,6 +85,10 @@ export namespace CitationsResponseModel {
|
|
|
83
85
|
CdlInPersonalVehicle: 'CDL_IN_PERSONAL_VEHICLE' as CdlStatusEnum,
|
|
84
86
|
NoCdl: 'NO_CDL' as CdlStatusEnum
|
|
85
87
|
};
|
|
88
|
+
export type ExperimentNameEnum = 'PRINCETON_PROJECT_1';
|
|
89
|
+
export const ExperimentNameEnum = {
|
|
90
|
+
PrincetonProject1: 'PRINCETON_PROJECT_1' as ExperimentNameEnum
|
|
91
|
+
};
|
|
86
92
|
export type MaxViolationClassificationEnum = 'CLASS_1_FELONY' | 'CLASS_1_MISDEMEANOR' | 'CLASS_2_FELONY' | 'CLASS_2_MISDEMEANOR' | 'CLASS_3_FELONY' | 'CLASS_3_MISDEMEANOR' | 'CLASS_4_FELONY' | 'CLASS_4_MISDEMEANOR' | 'CLASS_5_FELONY' | 'CLASS_6_FELONY' | 'CLASS_A1_MISDEMEANOR' | 'CLASS_A_FELONY' | 'CLASS_A_INFRACTION' | 'CLASS_A_MISDEMEANOR' | 'CLASS_A_VIOLATION' | 'CLASS_B_FELONY' | 'CLASS_B_INFRACTION' | 'CLASS_B_MISDEMEANOR' | 'CLASS_B_VIOLATION' | 'CLASS_C_FELONY' | 'CLASS_C_INFRACTION' | 'CLASS_C_MISDEMEANOR' | 'CLASS_C_VIOLATION' | 'CLASS_D_FELONY' | 'CLASS_D_MISDEMEANOR' | 'CLASS_D_VIOLATION' | 'CLASS_E_FELONY' | 'CLASS_F_FELONY' | 'CLASS_H_FELONY' | 'DISORDERLY_PERSONS_OFFENSE' | 'FELONY' | 'FELONY_1ST_DEGREE' | 'FELONY_2ND_DEGREE' | 'FELONY_3RD_DEGREE' | 'FELONY_4TH_DEGREE' | 'FELONY_5TH_DEGREE' | 'GROSS_MISDEMEANOR' | 'HIGH_AND_AGGRAVATED_MISDEMEANOR' | 'INFRACTION' | 'LEVEL_4_FELONY' | 'LEVEL_5_FELONY' | 'LEVEL_6_FELONY' | 'MINOR_MISDEMEANOR' | 'MISDEMEANOR' | 'MISDEMEANOR_1ST_DEGREE' | 'MISDEMEANOR_2ND_DEGREE' | 'MISDEMEANOR_3RD_DEGREE' | 'MISDEMEANOR_4TH_DEGREE' | 'MISDEMEANOR_WITH_REFUND' | 'NON_MOVING' | 'NON_REPORTABLE' | 'PETTY_MISDEMEANOR' | 'QUASI_CRIMINAL' | 'SUMMARY_OFFENSE' | 'SUMMARY_OFFENSE_NO_REFUND' | 'WOBBLER_TO_FELONY' | 'WOBBLER_TO_MISDEMEANOR';
|
|
87
93
|
export const MaxViolationClassificationEnum = {
|
|
88
94
|
Class1Felony: 'CLASS_1_FELONY' as MaxViolationClassificationEnum,
|
|
@@ -12,10 +12,12 @@
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
export interface GetCitationsWithMissingFieldsRequest {
|
|
15
|
+
endDate?: string;
|
|
15
16
|
maxRecords?: number;
|
|
16
17
|
selectedStates?: Array<GetCitationsWithMissingFieldsRequest.SelectedStatesEnum>;
|
|
17
18
|
showMissingCourtRecords?: boolean;
|
|
18
19
|
showMissingNameRecords?: boolean;
|
|
20
|
+
startDate?: string;
|
|
19
21
|
trailingDays?: number;
|
|
20
22
|
}
|
|
21
23
|
export namespace GetCitationsWithMissingFieldsRequest {
|
|
@@ -19,6 +19,8 @@ export interface CitationsResponseModel {
|
|
|
19
19
|
"countyName"?: string;
|
|
20
20
|
"courtName"?: string;
|
|
21
21
|
"creationDateUtc"?: models.Timestamp;
|
|
22
|
+
"experimentName"?: CitationsResponseModel.ExperimentNameEnum;
|
|
23
|
+
"groupName"?: string;
|
|
22
24
|
"hasPhoto"?: boolean;
|
|
23
25
|
"involvesAccident"?: boolean;
|
|
24
26
|
"lawfirmId"?: string;
|
|
@@ -79,6 +81,9 @@ export declare namespace CitationsResponseModel {
|
|
|
79
81
|
CDLINPERSONALVEHICLE,
|
|
80
82
|
NOCDL
|
|
81
83
|
}
|
|
84
|
+
enum ExperimentNameEnum {
|
|
85
|
+
PRINCETONPROJECT1
|
|
86
|
+
}
|
|
82
87
|
enum MaxViolationClassificationEnum {
|
|
83
88
|
CLASS1FELONY,
|
|
84
89
|
CLASS1MISDEMEANOR,
|
|
@@ -60,6 +60,10 @@ var CitationsResponseModel;
|
|
|
60
60
|
CdlStatusEnum[CdlStatusEnum["CDLINPERSONALVEHICLE"] = 'CDL_IN_PERSONAL_VEHICLE'] = "CDLINPERSONALVEHICLE";
|
|
61
61
|
CdlStatusEnum[CdlStatusEnum["NOCDL"] = 'NO_CDL'] = "NOCDL";
|
|
62
62
|
})(CdlStatusEnum = CitationsResponseModel.CdlStatusEnum || (CitationsResponseModel.CdlStatusEnum = {}));
|
|
63
|
+
var ExperimentNameEnum;
|
|
64
|
+
(function (ExperimentNameEnum) {
|
|
65
|
+
ExperimentNameEnum[ExperimentNameEnum["PRINCETONPROJECT1"] = 'PRINCETON_PROJECT_1'] = "PRINCETONPROJECT1";
|
|
66
|
+
})(ExperimentNameEnum = CitationsResponseModel.ExperimentNameEnum || (CitationsResponseModel.ExperimentNameEnum = {}));
|
|
63
67
|
var MaxViolationClassificationEnum;
|
|
64
68
|
(function (MaxViolationClassificationEnum) {
|
|
65
69
|
MaxViolationClassificationEnum[MaxViolationClassificationEnum["CLASS1FELONY"] = 'CLASS_1_FELONY'] = "CLASS1FELONY";
|
|
@@ -10,10 +10,12 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
export interface GetCitationsWithMissingFieldsRequest {
|
|
13
|
+
"endDate"?: string;
|
|
13
14
|
"maxRecords"?: number;
|
|
14
15
|
"selectedStates"?: Array<GetCitationsWithMissingFieldsRequest.SelectedStatesEnum>;
|
|
15
16
|
"showMissingCourtRecords"?: boolean;
|
|
16
17
|
"showMissingNameRecords"?: boolean;
|
|
18
|
+
"startDate"?: string;
|
|
17
19
|
"trailingDays"?: number;
|
|
18
20
|
}
|
|
19
21
|
export declare namespace GetCitationsWithMissingFieldsRequest {
|