@regulaforensics/document-reader-webclient 9.3.790-rc → 9.3.792-nightly
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 +12 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1771,6 +1771,18 @@ export declare interface DatabaseDocument {
|
|
|
1771
1771
|
* @memberof DatabaseDocument
|
|
1772
1772
|
*/
|
|
1773
1773
|
'deprecated'?: boolean;
|
|
1774
|
+
/**
|
|
1775
|
+
* ICAO country code.
|
|
1776
|
+
* @type {string}
|
|
1777
|
+
* @memberof DatabaseDocument
|
|
1778
|
+
*/
|
|
1779
|
+
'icao_code'?: string;
|
|
1780
|
+
/**
|
|
1781
|
+
* Document codes.
|
|
1782
|
+
* @type {string}
|
|
1783
|
+
* @memberof DatabaseDocument
|
|
1784
|
+
*/
|
|
1785
|
+
'doc_codes'?: string;
|
|
1774
1786
|
}
|
|
1775
1787
|
|
|
1776
1788
|
/**
|
package/package.json
CHANGED