Skip to content

Commit 9c7f2b4

Browse files
Merge pull request #299 from regulaforensics/develop
Develop -> Stable
2 parents 2977745 + 0f65767 commit 9c7f2b4

5 files changed

Lines changed: 56 additions & 1 deletion

File tree

src/.openapi-generator/FILES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,8 @@ models/liveness-params.ts
121121
models/log-level.ts
122122
models/mdldevice-engagement.ts
123123
models/mdldevice-retrieval.ts
124+
models/mdlitem.ts
125+
models/mdlresult.ts
124126
models/mdlserver-retrieval.ts
125127
models/measure-system.ts
126128
models/message.ts

src/models/container-list-list-inner.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ import type { LicenseResult } from './license-result';
8686
import 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
8992
import 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

src/models/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,8 @@ export * from './liveness-params';
113113
export * from './log-level';
114114
export * from './mdldevice-engagement';
115115
export * from './mdldevice-retrieval';
116+
export * from './mdlitem';
117+
export * from './mdlresult';
116118
export * from './mdlserver-retrieval';
117119
export * from './mrzdetector-result';
118120
export * from './mrzformat';

src/models/mdlitem.ts

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+

src/models/mdlresult.ts

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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+

0 commit comments

Comments
 (0)