@regulaforensics/document-reader-webclient 9.2.724-nightly → 9.2.726-rc
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/index.d.ts +21 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1142,6 +1142,24 @@ export declare interface BinaryData {
|
|
|
1142
1142
|
'RFID_ePassp_Directory'?: Array<RfidDataFileType>;
|
|
1143
1143
|
}
|
|
1144
1144
|
|
|
1145
|
+
/**
|
|
1146
|
+
* NOTE: This file is auto generated by OpenAPI Generator.
|
|
1147
|
+
* Do not edit the file manually.
|
|
1148
|
+
*/
|
|
1149
|
+
/**
|
|
1150
|
+
*
|
|
1151
|
+
* @export
|
|
1152
|
+
* @interface BsiTr03135
|
|
1153
|
+
*/
|
|
1154
|
+
export declare interface BsiTr03135 {
|
|
1155
|
+
/**
|
|
1156
|
+
* When enabled, returns processing results in accordance with the BSI TR-03135 standard in addition to the existing processing results.
|
|
1157
|
+
* @type {boolean}
|
|
1158
|
+
* @memberof BsiTr03135
|
|
1159
|
+
*/
|
|
1160
|
+
'generateResult'?: boolean;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1145
1163
|
/**
|
|
1146
1164
|
* NOTE: This file is auto generated by OpenAPI Generator.
|
|
1147
1165
|
* Do not edit the file manually.
|
|
@@ -9189,11 +9207,11 @@ export declare interface ProcessParams {
|
|
|
9189
9207
|
*/
|
|
9190
9208
|
'returnTransliteratedFields'?: boolean;
|
|
9191
9209
|
/**
|
|
9192
|
-
*
|
|
9193
|
-
* @type {
|
|
9210
|
+
*
|
|
9211
|
+
* @type {BsiTr03135}
|
|
9194
9212
|
* @memberof ProcessParams
|
|
9195
9213
|
*/
|
|
9196
|
-
'
|
|
9214
|
+
'bsiTr03135'?: BsiTr03135;
|
|
9197
9215
|
}
|
|
9198
9216
|
|
|
9199
9217
|
/**
|
package/package.json
CHANGED