@otr-app/shared-backend-generated-client 2.3.137 → 2.3.138
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,15 +12,8 @@
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
export interface PredictCitationTextRequest {
|
|
15
|
-
|
|
15
|
+
citationId?: number;
|
|
16
16
|
imageInBase64?: string;
|
|
17
|
+
regionCode?: string;
|
|
17
18
|
}
|
|
18
|
-
export namespace PredictCitationTextRequest {
|
|
19
|
-
export type DocumentPredictionTypeEnum = 'PARKING_TICKET' | 'TRAFFIC_TICKET';
|
|
20
|
-
export const DocumentPredictionTypeEnum = {
|
|
21
|
-
ParkingTicket: 'PARKING_TICKET' as DocumentPredictionTypeEnum,
|
|
22
|
-
TrafficTicket: 'TRAFFIC_TICKET' as DocumentPredictionTypeEnum
|
|
23
|
-
};
|
|
24
|
-
}
|
|
25
|
-
|
|
26
19
|
|
|
@@ -10,12 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
export interface PredictCitationTextRequest {
|
|
13
|
-
"
|
|
13
|
+
"citationId"?: number;
|
|
14
14
|
"imageInBase64"?: string;
|
|
15
|
-
|
|
16
|
-
export declare namespace PredictCitationTextRequest {
|
|
17
|
-
enum DocumentPredictionTypeEnum {
|
|
18
|
-
PARKINGTICKET,
|
|
19
|
-
TRAFFICTICKET
|
|
20
|
-
}
|
|
15
|
+
"regionCode"?: string;
|
|
21
16
|
}
|
|
@@ -11,12 +11,3 @@
|
|
|
11
11
|
* Do not edit the class manually.
|
|
12
12
|
*/
|
|
13
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
-
exports.PredictCitationTextRequest = void 0;
|
|
15
|
-
var PredictCitationTextRequest;
|
|
16
|
-
(function (PredictCitationTextRequest) {
|
|
17
|
-
var DocumentPredictionTypeEnum;
|
|
18
|
-
(function (DocumentPredictionTypeEnum) {
|
|
19
|
-
DocumentPredictionTypeEnum[DocumentPredictionTypeEnum["PARKINGTICKET"] = 'PARKING_TICKET'] = "PARKINGTICKET";
|
|
20
|
-
DocumentPredictionTypeEnum[DocumentPredictionTypeEnum["TRAFFICTICKET"] = 'TRAFFIC_TICKET'] = "TRAFFICTICKET";
|
|
21
|
-
})(DocumentPredictionTypeEnum = PredictCitationTextRequest.DocumentPredictionTypeEnum || (PredictCitationTextRequest.DocumentPredictionTypeEnum = {}));
|
|
22
|
-
})(PredictCitationTextRequest = exports.PredictCitationTextRequest || (exports.PredictCitationTextRequest = {}));
|