@otr-app/shared-backend-generated-client 2.3.152 → 2.3.153
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.
|
@@ -12,22 +12,9 @@
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
export interface PredictImageClassificationResponse {
|
|
15
|
-
|
|
16
|
-
blurLevelConfidenceLevel?: number;
|
|
17
|
-
blurry?: boolean;
|
|
15
|
+
document?: boolean;
|
|
18
16
|
documentType?: PredictImageClassificationResponse.DocumentTypeEnum;
|
|
19
|
-
documentTypeConfidenceLevel?: number;
|
|
20
|
-
exposure?: string;
|
|
21
|
-
exposureConfidenceLevel?: number;
|
|
22
|
-
federal?: boolean;
|
|
23
|
-
imageCategory?: PredictImageClassificationResponse.ImageCategoryEnum;
|
|
24
|
-
isBlurryConfidenceLevel?: number;
|
|
25
|
-
isFederalConfidenceLevel?: number;
|
|
26
|
-
isTypedConfidenceLevel?: number;
|
|
27
17
|
regionCode?: string;
|
|
28
|
-
regionConfidenceLevel?: number;
|
|
29
|
-
regionName?: string;
|
|
30
|
-
typed?: boolean;
|
|
31
18
|
}
|
|
32
19
|
export namespace PredictImageClassificationResponse {
|
|
33
20
|
export type DocumentTypeEnum = 'CAMERA_TICKET' | 'CASE_DOCKET' | 'CASE_RESOLUTION' | 'CHANGE_OF_COUNCIL' | 'COLLECTIONS_NOTICE' | 'COURT_NOTICE' | 'DRIVER_LICENSE' | 'FAILURE_TO_APPEAR' | 'FAILURE_TO_PAY' | 'INSURANCE_CARD' | 'NOTICE_OF_APPEARANCE' | 'NOT_A_DOCUMENT' | 'PARKING_TICKET' | 'POLICE_REPORT' | 'REMINDER_NOTICE' | 'REQUEST_FOR_DISCOVERY' | 'SCREENSHOT_TICKET_LIST' | 'SCREENSHOT_TRAFFIC_TICKET' | 'SUSPENSION_NOTICE' | 'TRAFFIC_TICKET' | 'UNRECOGNIZED_DOCUMENT' | 'WARNING_NOTICE' | 'WARRANT';
|
|
@@ -56,17 +43,6 @@ export namespace PredictImageClassificationResponse {
|
|
|
56
43
|
WarningNotice: 'WARNING_NOTICE' as DocumentTypeEnum,
|
|
57
44
|
Warrant: 'WARRANT' as DocumentTypeEnum
|
|
58
45
|
};
|
|
59
|
-
export type ImageCategoryEnum = 'DOCUMENT' | 'GROUP_PHOTO' | 'KEYBOARD' | 'LANDSCAPE' | 'LICENSE_PLATE' | 'OTHER' | 'PET' | 'SELFIE';
|
|
60
|
-
export const ImageCategoryEnum = {
|
|
61
|
-
Document: 'DOCUMENT' as ImageCategoryEnum,
|
|
62
|
-
GroupPhoto: 'GROUP_PHOTO' as ImageCategoryEnum,
|
|
63
|
-
Keyboard: 'KEYBOARD' as ImageCategoryEnum,
|
|
64
|
-
Landscape: 'LANDSCAPE' as ImageCategoryEnum,
|
|
65
|
-
LicensePlate: 'LICENSE_PLATE' as ImageCategoryEnum,
|
|
66
|
-
Other: 'OTHER' as ImageCategoryEnum,
|
|
67
|
-
Pet: 'PET' as ImageCategoryEnum,
|
|
68
|
-
Selfie: 'SELFIE' as ImageCategoryEnum
|
|
69
|
-
};
|
|
70
46
|
}
|
|
71
47
|
|
|
72
48
|
|
|
@@ -10,22 +10,9 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
export interface PredictImageClassificationResponse {
|
|
13
|
-
"
|
|
14
|
-
"blurLevelConfidenceLevel"?: number;
|
|
15
|
-
"blurry"?: boolean;
|
|
13
|
+
"document"?: boolean;
|
|
16
14
|
"documentType"?: PredictImageClassificationResponse.DocumentTypeEnum;
|
|
17
|
-
"documentTypeConfidenceLevel"?: number;
|
|
18
|
-
"exposure"?: string;
|
|
19
|
-
"exposureConfidenceLevel"?: number;
|
|
20
|
-
"federal"?: boolean;
|
|
21
|
-
"imageCategory"?: PredictImageClassificationResponse.ImageCategoryEnum;
|
|
22
|
-
"isBlurryConfidenceLevel"?: number;
|
|
23
|
-
"isFederalConfidenceLevel"?: number;
|
|
24
|
-
"isTypedConfidenceLevel"?: number;
|
|
25
15
|
"regionCode"?: string;
|
|
26
|
-
"regionConfidenceLevel"?: number;
|
|
27
|
-
"regionName"?: string;
|
|
28
|
-
"typed"?: boolean;
|
|
29
16
|
}
|
|
30
17
|
export declare namespace PredictImageClassificationResponse {
|
|
31
18
|
enum DocumentTypeEnum {
|
|
@@ -53,14 +40,4 @@ export declare namespace PredictImageClassificationResponse {
|
|
|
53
40
|
WARNINGNOTICE,
|
|
54
41
|
WARRANT
|
|
55
42
|
}
|
|
56
|
-
enum ImageCategoryEnum {
|
|
57
|
-
DOCUMENT,
|
|
58
|
-
GROUPPHOTO,
|
|
59
|
-
KEYBOARD,
|
|
60
|
-
LANDSCAPE,
|
|
61
|
-
LICENSEPLATE,
|
|
62
|
-
OTHER,
|
|
63
|
-
PET,
|
|
64
|
-
SELFIE
|
|
65
|
-
}
|
|
66
43
|
}
|
|
@@ -40,15 +40,4 @@ var PredictImageClassificationResponse;
|
|
|
40
40
|
DocumentTypeEnum[DocumentTypeEnum["WARNINGNOTICE"] = 'WARNING_NOTICE'] = "WARNINGNOTICE";
|
|
41
41
|
DocumentTypeEnum[DocumentTypeEnum["WARRANT"] = 'WARRANT'] = "WARRANT";
|
|
42
42
|
})(DocumentTypeEnum = PredictImageClassificationResponse.DocumentTypeEnum || (PredictImageClassificationResponse.DocumentTypeEnum = {}));
|
|
43
|
-
var ImageCategoryEnum;
|
|
44
|
-
(function (ImageCategoryEnum) {
|
|
45
|
-
ImageCategoryEnum[ImageCategoryEnum["DOCUMENT"] = 'DOCUMENT'] = "DOCUMENT";
|
|
46
|
-
ImageCategoryEnum[ImageCategoryEnum["GROUPPHOTO"] = 'GROUP_PHOTO'] = "GROUPPHOTO";
|
|
47
|
-
ImageCategoryEnum[ImageCategoryEnum["KEYBOARD"] = 'KEYBOARD'] = "KEYBOARD";
|
|
48
|
-
ImageCategoryEnum[ImageCategoryEnum["LANDSCAPE"] = 'LANDSCAPE'] = "LANDSCAPE";
|
|
49
|
-
ImageCategoryEnum[ImageCategoryEnum["LICENSEPLATE"] = 'LICENSE_PLATE'] = "LICENSEPLATE";
|
|
50
|
-
ImageCategoryEnum[ImageCategoryEnum["OTHER"] = 'OTHER'] = "OTHER";
|
|
51
|
-
ImageCategoryEnum[ImageCategoryEnum["PET"] = 'PET'] = "PET";
|
|
52
|
-
ImageCategoryEnum[ImageCategoryEnum["SELFIE"] = 'SELFIE'] = "SELFIE";
|
|
53
|
-
})(ImageCategoryEnum = PredictImageClassificationResponse.ImageCategoryEnum || (PredictImageClassificationResponse.ImageCategoryEnum = {}));
|
|
54
43
|
})(PredictImageClassificationResponse = exports.PredictImageClassificationResponse || (exports.PredictImageClassificationResponse = {}));
|