File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -121,6 +121,8 @@ models/liveness-params.ts
121121models/log-level.ts
122122models/mdldevice-engagement.ts
123123models/mdldevice-retrieval.ts
124+ models/mdlitem.ts
125+ models/mdlresult.ts
124126models/mdlserver-retrieval.ts
125127models/measure-system.ts
126128models/message.ts
Original file line number Diff line number Diff line change @@ -86,6 +86,9 @@ import type { LicenseResult } from './license-result';
8686import type { ListVerifiedFields } from './list-verified-fields' ;
8787// May contain unused imports in some cases
8888// @ts -ignore
89+ import type { MDLResult } from './mdlresult' ;
90+ // May contain unused imports in some cases
91+ // @ts -ignore
8992import type { MRZDetectorResult } from './mrzdetector-result' ;
9093// May contain unused imports in some cases
9194// @ts -ignore
@@ -152,6 +155,6 @@ import type { VDSNCDataResult } from './vdsncdata-result';
152155 * @type ContainerListListInner
153156 * @export
154157 */
155- export type ContainerListListInner = AuthenticityResult | BarcodePositionResult | ByteArrayResult | ChosenDocumentTypeResult | DocBarCodeInfo | DocumentBinaryInfoResult | DocumentImageResult | DocumentPositionResult | DocumentTypesCandidatesResult | EncryptedRCLResult | FaceDetectionResult | GraphicsResult | ImageQualityResult | ImagesResult | LexicalAnalysisResult | LicenseResult | MRZDetectorResult | MRZPositionResult | MRZTestQualityResult | RFIDGraphicsInfoResult | RFIDTextDataResult | StatusResult | TextDataResult | TextResult | VDSDataResult | VDSNCDataResult ;
158+ export type ContainerListListInner = AuthenticityResult | BarcodePositionResult | ByteArrayResult | ChosenDocumentTypeResult | DocBarCodeInfo | DocumentBinaryInfoResult | DocumentImageResult | DocumentPositionResult | DocumentTypesCandidatesResult | EncryptedRCLResult | FaceDetectionResult | GraphicsResult | ImageQualityResult | ImagesResult | LexicalAnalysisResult | LicenseResult | MDLResult | MRZDetectorResult | MRZPositionResult | MRZTestQualityResult | RFIDGraphicsInfoResult | RFIDTextDataResult | StatusResult | TextDataResult | TextResult | VDSDataResult | VDSNCDataResult ;
156159
157160
Original file line number Diff line number Diff line change @@ -113,6 +113,8 @@ export * from './liveness-params';
113113export * from './log-level' ;
114114export * from './mdldevice-engagement' ;
115115export * from './mdldevice-retrieval' ;
116+ export * from './mdlitem' ;
117+ export * from './mdlresult' ;
116118export * from './mdlserver-retrieval' ;
117119export * from './mrzdetector-result' ;
118120export * from './mrzformat' ;
Original file line number Diff line number Diff line change 1+ /* tslint:disable */
2+ /* eslint-disable */
3+ /**
4+ * NOTE: This file is auto generated by OpenAPI Generator.
5+ * Do not edit the file manually.
6+ */
7+
8+
9+
10+ /**
11+ *
12+ * @export
13+ * @interface MDLItem
14+ */
15+ export interface MDLItem {
16+ /**
17+ *
18+ * @type {{ [key: string]: any; } }
19+ * @memberof MDLItem
20+ */
21+ 'MDLParsedResponse' : { [ key : string ] : any ; } ;
22+ }
23+
Original file line number Diff line number Diff line change 1+ /* tslint:disable */
2+ /* eslint-disable */
3+ /**
4+ * NOTE: This file is auto generated by OpenAPI Generator.
5+ * Do not edit the file manually.
6+ */
7+
8+
9+ // May contain unused imports in some cases
10+ // @ts -ignore
11+ import type { MDLItem } from './mdlitem' ;
12+ // May contain unused imports in some cases
13+ // @ts -ignore
14+ import type { Result } from './result' ;
15+ // May contain unused imports in some cases
16+ // @ts -ignore
17+ import type { ResultItem } from './result-item' ;
18+
19+ /**
20+ * @type MDLResult
21+ * @export
22+ */
23+ export type MDLResult = MDLItem & ResultItem ;
24+
25+
You can’t perform that action at this time.
0 commit comments