react-native-scanbot-barcode-scanner-sdk 7.1.2-rc.2 → 8.0.0-rc.1
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/LICENSE +1 -1
- package/Libraries.txt +437 -17
- package/README.md +32 -34
- package/RNScanbotBarcodeSDK.podspec +3 -2
- package/android/gradle.properties +3 -3
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/ScanbotBarcodeSdkModule.kt +117 -69
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/ScanbotBarcodeSdkPluginResultDelegate.kt +3 -2
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/components/barcode_scanner_view/ScanbotBarcodeScannerView.kt +76 -50
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/components/barcode_scanner_view/ScanbotBarcodeScannerViewEvents.kt +24 -1
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/components/barcode_scanner_view/ScanbotBarcodeScannerViewManager.kt +66 -55
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/components/barcode_scanner_view/models/ScanbotBarcodeScannerModels.kt +1 -1
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/extensions/Extensions.kt +19 -0
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerLegacyView.h +8 -7
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerLegacyView.m +92 -221
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerView.h +12 -8
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerView.mm +147 -317
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewController+Utils.swift +74 -0
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewController.swift +429 -0
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewManager.mm +17 -23
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewOperators.h +95 -0
- package/ios/ScanbotBarcodeSdk.m +58 -76
- package/ios/ScanbotBarcodeSdkPluginResultDelegate.m +2 -6
- package/lib/commonjs/Barcode.js +51 -0
- package/lib/commonjs/Barcode.js.map +1 -0
- package/lib/commonjs/ImageProcessor.js +24 -0
- package/lib/commonjs/ImageProcessor.js.map +1 -0
- package/lib/commonjs/Sdk.js +57 -0
- package/lib/commonjs/Sdk.js.map +1 -0
- package/lib/commonjs/{component → components}/barcode-camera-view/ScanbotBarcodeCameraView.js +14 -9
- package/lib/commonjs/components/barcode-camera-view/ScanbotBarcodeCameraView.js.map +1 -0
- package/lib/commonjs/components/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js.map +1 -0
- package/lib/commonjs/components/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js.map +1 -0
- package/lib/commonjs/{component/barcode-camera-view → components}/index.js +3 -3
- package/lib/commonjs/components/index.js.map +1 -0
- package/lib/commonjs/components/spec/ScanbotBarcodeScannerViewNativeComponent.js.map +1 -0
- package/lib/commonjs/impl/BarcodeScannerImpl.js +59 -0
- package/lib/commonjs/impl/BarcodeScannerImpl.js.map +1 -0
- package/lib/commonjs/impl/ImageProcessorImpl.js +20 -0
- package/lib/commonjs/impl/ImageProcessorImpl.js.map +1 -0
- package/lib/commonjs/impl/SdkImpl.js +27 -0
- package/lib/commonjs/impl/SdkImpl.js.map +1 -0
- package/lib/commonjs/impl/index.js +39 -0
- package/lib/commonjs/impl/index.js.map +1 -0
- package/lib/commonjs/impl/scanbotBarcodeSDKModule.js +22 -0
- package/lib/commonjs/impl/scanbotBarcodeSDKModule.js.map +1 -0
- package/lib/commonjs/index.js +18 -162
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/types/base/SdkConfiguration.js +106 -0
- package/lib/commonjs/types/base/SdkConfiguration.js.map +1 -0
- package/lib/commonjs/{base/barcodeSDKConfigurations.js → types/base/customTypes.js} +1 -1
- package/lib/commonjs/types/base/customTypes.js.map +1 -0
- package/lib/commonjs/types/base/errors.js +139 -0
- package/lib/commonjs/types/base/errors.js.map +1 -0
- package/lib/commonjs/types/base/index.js +50 -0
- package/lib/commonjs/types/base/index.js.map +1 -0
- package/lib/commonjs/types/base/utils.js +59 -0
- package/lib/commonjs/types/base/utils.js.map +1 -0
- package/lib/commonjs/{barcode → types/core/barcode}/BarcodeConfigurationTypes.js +244 -74
- package/lib/commonjs/types/core/barcode/BarcodeConfigurationTypes.js.map +1 -0
- package/lib/commonjs/{barcode → types/core/barcode}/BarcodeDocumentTypes.js +62 -10
- package/lib/commonjs/types/core/barcode/BarcodeDocumentTypes.js.map +1 -0
- package/lib/commonjs/{barcode → types/core/barcode}/BarcodeScannerTypes.js +39 -28
- package/lib/commonjs/types/core/barcode/BarcodeScannerTypes.js.map +1 -0
- package/lib/commonjs/{barcode → types/core/barcode}/BarcodeTypes.js +31 -12
- package/lib/commonjs/types/core/barcode/BarcodeTypes.js.map +1 -0
- package/lib/commonjs/types/core/barcode/index.js.map +1 -0
- package/lib/commonjs/types/core/camera/Camera.js +23 -0
- package/lib/commonjs/types/core/camera/Camera.js.map +1 -0
- package/lib/commonjs/types/core/camera/index.js +17 -0
- package/lib/commonjs/types/core/camera/index.js.map +1 -0
- package/lib/commonjs/types/core/common/CommonTypes.js +29 -0
- package/lib/commonjs/types/core/common/CommonTypes.js.map +1 -0
- package/lib/commonjs/{utils/json → types/core/common}/JsonSerializationTypes.js +2 -3
- package/lib/commonjs/types/core/common/JsonSerializationTypes.js.map +1 -0
- package/lib/commonjs/types/core/common/index.js +28 -0
- package/lib/commonjs/types/core/common/index.js.map +1 -0
- package/lib/commonjs/{documents → types/core/generic_document}/BarcodeDocumentModel.js +1131 -160
- package/lib/commonjs/types/core/generic_document/BarcodeDocumentModel.js.map +1 -0
- package/lib/commonjs/{documents → types/core/generic_document}/CommonFieldType.js +6 -3
- package/lib/commonjs/types/core/generic_document/CommonFieldType.js.map +1 -0
- package/lib/commonjs/{documents → types/core/generic_document}/GenericDocument.js +13 -18
- package/lib/commonjs/types/core/generic_document/GenericDocument.js.map +1 -0
- package/lib/commonjs/types/core/generic_document/index.js.map +1 -0
- package/lib/commonjs/{utils → types/core}/geometry/Geometry.js +4 -8
- package/lib/commonjs/types/core/geometry/Geometry.js.map +1 -0
- package/lib/commonjs/types/core/geometry/index.js +17 -0
- package/lib/commonjs/types/core/geometry/index.js.map +1 -0
- package/lib/commonjs/{imageRef → types/core/image}/ImageRefTypes.js +157 -69
- package/lib/commonjs/types/core/image/ImageRefTypes.js.map +1 -0
- package/lib/commonjs/types/core/image/ImageTypes.js +41 -0
- package/lib/commonjs/types/core/image/ImageTypes.js.map +1 -0
- package/lib/commonjs/{imageRef → types/core/image}/image.js +54 -50
- package/lib/commonjs/types/core/image/image.js.map +1 -0
- package/lib/commonjs/{imageRef → types/core/image}/index.js +0 -11
- package/lib/commonjs/types/core/image/index.js.map +1 -0
- package/lib/commonjs/types/core/index.js +105 -0
- package/lib/commonjs/types/core/index.js.map +1 -0
- package/lib/commonjs/types/core/licensing/LicensingTypes.js +239 -0
- package/lib/commonjs/types/core/licensing/LicensingTypes.js.map +1 -0
- package/lib/commonjs/types/core/licensing/index.js +17 -0
- package/lib/commonjs/types/core/licensing/index.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/ArTrackingOverlayConfiguration.js +8 -14
- package/lib/commonjs/types/core/ui_v2/barcode/ArTrackingOverlayConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeInfoMapping.js +4 -8
- package/lib/commonjs/types/core/ui_v2/barcode/BarcodeInfoMapping.js.map +1 -0
- package/lib/commonjs/types/core/ui_v2/barcode/BarcodeItemMapper.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerScreenConfiguration.js +17 -19
- package/lib/commonjs/types/core/ui_v2/barcode/BarcodeScannerScreenConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerUiResult.js +3 -6
- package/lib/commonjs/types/core/ui_v2/barcode/BarcodeScannerUiResult.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeTextLocalization.js +1 -3
- package/lib/commonjs/types/core/ui_v2/barcode/BarcodeTextLocalization.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeUseCase.js +6 -6
- package/lib/commonjs/types/core/ui_v2/barcode/BarcodeUseCase.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/FindAndPickScanningModeUseCase.js +6 -9
- package/lib/commonjs/types/core/ui_v2/barcode/FindAndPickScanningModeUseCase.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/MultipleScanningModeUseCase.js +11 -14
- package/lib/commonjs/types/core/ui_v2/barcode/MultipleScanningModeUseCase.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/SingleScanningModeUseCase.js +4 -6
- package/lib/commonjs/types/core/ui_v2/barcode/SingleScanningModeUseCase.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/ActionBarConfiguration.js +2 -4
- package/lib/commonjs/types/core/ui_v2/common/ActionBarConfiguration.js.map +1 -0
- package/lib/commonjs/types/core/ui_v2/common/BottomBarConfiguration.js +23 -0
- package/lib/commonjs/types/core/ui_v2/common/BottomBarConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/CameraConfiguration.js +11 -3
- package/lib/commonjs/types/core/ui_v2/common/CameraConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/CameraPermission.js +2 -4
- package/lib/commonjs/types/core/ui_v2/common/CameraPermission.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/Common.js +20 -35
- package/lib/commonjs/types/core/ui_v2/common/Common.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/NavigationBarConfiguration.js +1 -0
- package/lib/commonjs/types/core/ui_v2/common/NavigationBarConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/ScanCompletionOverlay.js +2 -4
- package/lib/commonjs/types/core/ui_v2/common/ScanCompletionOverlay.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/ScanbotAlertDialog.js +2 -4
- package/lib/commonjs/types/core/ui_v2/common/ScanbotAlertDialog.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/TopBarConfiguration.js +4 -4
- package/lib/commonjs/types/core/ui_v2/common/TopBarConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/UserGuidanceConfiguration.js +3 -6
- package/lib/commonjs/types/core/ui_v2/common/UserGuidanceConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/ViewFinderConfiguration.js +14 -19
- package/lib/commonjs/types/core/ui_v2/common/ViewFinderConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/index.js +15 -15
- package/lib/commonjs/types/core/ui_v2/index.js.map +1 -0
- package/lib/commonjs/{imageRef → types/core/utils}/ObjectPoolTypes.js +2 -4
- package/lib/commonjs/types/core/utils/ObjectPoolTypes.js.map +1 -0
- package/lib/commonjs/types/core/utils/index.js +28 -0
- package/lib/commonjs/types/core/utils/index.js.map +1 -0
- package/lib/commonjs/types/core/utils/utils.js +10 -0
- package/lib/commonjs/types/core/utils/utils.js.map +1 -0
- package/lib/commonjs/types/index.js +28 -0
- package/lib/commonjs/types/index.js.map +1 -0
- package/lib/module/Barcode.js +45 -0
- package/lib/module/Barcode.js.map +1 -0
- package/lib/module/ImageProcessor.js +19 -0
- package/lib/module/ImageProcessor.js.map +1 -0
- package/lib/module/Sdk.js +51 -0
- package/lib/module/Sdk.js.map +1 -0
- package/lib/module/{component → components}/barcode-camera-view/ScanbotBarcodeCameraView.js +10 -4
- package/lib/module/components/barcode-camera-view/ScanbotBarcodeCameraView.js.map +1 -0
- package/lib/module/components/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js.map +1 -0
- package/lib/module/components/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js.map +1 -0
- package/lib/module/components/index.js +4 -0
- package/lib/module/components/index.js.map +1 -0
- package/lib/module/components/spec/ScanbotBarcodeScannerViewNativeComponent.js.map +1 -0
- package/lib/module/impl/BarcodeScannerImpl.js +53 -0
- package/lib/module/impl/BarcodeScannerImpl.js.map +1 -0
- package/lib/module/impl/ImageProcessorImpl.js +15 -0
- package/lib/module/impl/ImageProcessorImpl.js.map +1 -0
- package/lib/module/impl/SdkImpl.js +22 -0
- package/lib/module/impl/SdkImpl.js.map +1 -0
- package/lib/module/impl/index.js +4 -0
- package/lib/module/impl/index.js.map +1 -0
- package/lib/module/impl/scanbotBarcodeSDKModule.js +16 -0
- package/lib/module/impl/scanbotBarcodeSDKModule.js.map +1 -0
- package/lib/module/index.js +5 -119
- package/lib/module/index.js.map +1 -1
- package/lib/module/types/base/SdkConfiguration.js +100 -0
- package/lib/module/types/base/SdkConfiguration.js.map +1 -0
- package/lib/module/types/base/customTypes.js +2 -0
- package/lib/module/types/base/customTypes.js.map +1 -0
- package/lib/module/types/base/errors.js +119 -0
- package/lib/module/types/base/errors.js.map +1 -0
- package/lib/module/types/base/index.js +5 -0
- package/lib/module/types/base/index.js.map +1 -0
- package/lib/module/types/base/utils.js +52 -0
- package/lib/module/types/base/utils.js.map +1 -0
- package/lib/module/{barcode → types/core/barcode}/BarcodeConfigurationTypes.js +244 -76
- package/lib/module/types/core/barcode/BarcodeConfigurationTypes.js.map +1 -0
- package/lib/module/{barcode → types/core/barcode}/BarcodeDocumentTypes.js +60 -9
- package/lib/module/types/core/barcode/BarcodeDocumentTypes.js.map +1 -0
- package/lib/module/{barcode → types/core/barcode}/BarcodeScannerTypes.js +39 -28
- package/lib/module/types/core/barcode/BarcodeScannerTypes.js.map +1 -0
- package/lib/module/{barcode → types/core/barcode}/BarcodeTypes.js +30 -11
- package/lib/module/types/core/barcode/BarcodeTypes.js.map +1 -0
- package/lib/module/types/core/barcode/index.js.map +1 -0
- package/lib/module/types/core/camera/Camera.js +17 -0
- package/lib/module/types/core/camera/Camera.js.map +1 -0
- package/lib/module/types/core/camera/index.js +2 -0
- package/lib/module/types/core/camera/index.js.map +1 -0
- package/lib/module/types/core/common/CommonTypes.js +23 -0
- package/lib/module/types/core/common/CommonTypes.js.map +1 -0
- package/lib/module/{utils/json → types/core/common}/JsonSerializationTypes.js +2 -4
- package/lib/module/types/core/common/JsonSerializationTypes.js.map +1 -0
- package/lib/module/types/core/common/index.js +3 -0
- package/lib/module/types/core/common/index.js.map +1 -0
- package/lib/module/{documents → types/core/generic_document}/BarcodeDocumentModel.js +1129 -159
- package/lib/module/types/core/generic_document/BarcodeDocumentModel.js.map +1 -0
- package/lib/module/{documents → types/core/generic_document}/CommonFieldType.js +6 -3
- package/lib/module/types/core/generic_document/CommonFieldType.js.map +1 -0
- package/lib/module/{documents → types/core/generic_document}/GenericDocument.js +13 -18
- package/lib/module/types/core/generic_document/GenericDocument.js.map +1 -0
- package/lib/module/types/core/generic_document/index.js.map +1 -0
- package/lib/module/{utils → types/core}/geometry/Geometry.js +4 -9
- package/lib/module/types/core/geometry/Geometry.js.map +1 -0
- package/lib/module/types/core/geometry/index.js +2 -0
- package/lib/module/types/core/geometry/index.js.map +1 -0
- package/lib/module/{imageRef → types/core/image}/ImageRefTypes.js +156 -68
- package/lib/module/types/core/image/ImageRefTypes.js.map +1 -0
- package/lib/module/types/core/image/ImageTypes.js +35 -0
- package/lib/module/types/core/image/ImageTypes.js.map +1 -0
- package/lib/module/{imageRef → types/core/image}/image.js +54 -49
- package/lib/module/types/core/image/image.js.map +1 -0
- package/lib/module/{imageRef → types/core/image}/index.js +0 -1
- package/lib/module/types/core/image/index.js.map +1 -0
- package/lib/module/types/core/index.js +10 -0
- package/lib/module/types/core/index.js.map +1 -0
- package/lib/module/types/core/licensing/LicensingTypes.js +233 -0
- package/lib/module/types/core/licensing/LicensingTypes.js.map +1 -0
- package/lib/module/types/core/licensing/index.js +2 -0
- package/lib/module/types/core/licensing/index.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/ArTrackingOverlayConfiguration.js +8 -14
- package/lib/module/types/core/ui_v2/barcode/ArTrackingOverlayConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeInfoMapping.js +4 -9
- package/lib/module/types/core/ui_v2/barcode/BarcodeInfoMapping.js.map +1 -0
- package/lib/module/types/core/ui_v2/barcode/BarcodeItemMapper.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerScreenConfiguration.js +17 -19
- package/lib/module/types/core/ui_v2/barcode/BarcodeScannerScreenConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerUiResult.js +3 -7
- package/lib/module/types/core/ui_v2/barcode/BarcodeScannerUiResult.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeTextLocalization.js +1 -4
- package/lib/module/types/core/ui_v2/barcode/BarcodeTextLocalization.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeUseCase.js +6 -6
- package/lib/module/types/core/ui_v2/barcode/BarcodeUseCase.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/FindAndPickScanningModeUseCase.js +6 -9
- package/lib/module/types/core/ui_v2/barcode/FindAndPickScanningModeUseCase.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/MultipleScanningModeUseCase.js +11 -14
- package/lib/module/types/core/ui_v2/barcode/MultipleScanningModeUseCase.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/SingleScanningModeUseCase.js +4 -6
- package/lib/module/types/core/ui_v2/barcode/SingleScanningModeUseCase.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/ActionBarConfiguration.js +2 -4
- package/lib/module/types/core/ui_v2/common/ActionBarConfiguration.js.map +1 -0
- package/lib/module/types/core/ui_v2/common/BottomBarConfiguration.js +17 -0
- package/lib/module/types/core/ui_v2/common/BottomBarConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/CameraConfiguration.js +11 -4
- package/lib/module/types/core/ui_v2/common/CameraConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/CameraPermission.js +2 -5
- package/lib/module/types/core/ui_v2/common/CameraPermission.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/Common.js +20 -36
- package/lib/module/types/core/ui_v2/common/Common.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/NavigationBarConfiguration.js +1 -0
- package/lib/module/types/core/ui_v2/common/NavigationBarConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/ScanCompletionOverlay.js +2 -4
- package/lib/module/types/core/ui_v2/common/ScanCompletionOverlay.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/ScanbotAlertDialog.js +2 -4
- package/lib/module/types/core/ui_v2/common/ScanbotAlertDialog.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/TopBarConfiguration.js +4 -4
- package/lib/module/types/core/ui_v2/common/TopBarConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/UserGuidanceConfiguration.js +3 -6
- package/lib/module/types/core/ui_v2/common/UserGuidanceConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/ViewFinderConfiguration.js +14 -19
- package/lib/module/types/core/ui_v2/common/ViewFinderConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/index.js +2 -2
- package/lib/module/types/core/ui_v2/index.js.map +1 -0
- package/lib/module/{imageRef → types/core/utils}/ObjectPoolTypes.js +2 -5
- package/lib/module/types/core/utils/ObjectPoolTypes.js.map +1 -0
- package/lib/module/types/core/utils/index.js +3 -0
- package/lib/module/types/core/utils/index.js.map +1 -0
- package/lib/module/types/core/utils/utils.js +8 -0
- package/lib/module/types/core/utils/utils.js.map +1 -0
- package/lib/module/types/index.js +3 -0
- package/lib/module/types/index.js.map +1 -0
- package/lib/typescript/src/Barcode.d.ts +47 -0
- package/lib/typescript/src/Barcode.d.ts.map +1 -0
- package/lib/typescript/src/ImageProcessor.d.ts +12 -0
- package/lib/typescript/src/ImageProcessor.d.ts.map +1 -0
- package/lib/typescript/src/Sdk.d.ts +58 -0
- package/lib/typescript/src/Sdk.d.ts.map +1 -0
- package/lib/typescript/src/components/barcode-camera-view/ScanbotBarcodeCameraView.d.ts.map +1 -0
- package/lib/typescript/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewProperties.d.ts +17 -12
- package/lib/typescript/src/components/barcode-camera-view/ScanbotBarcodeCameraViewProperties.d.ts.map +1 -0
- package/lib/typescript/src/components/barcode-camera-view/ScanbotBarcodeCameraViewTypes.d.ts.map +1 -0
- package/lib/typescript/src/components/index.d.ts +4 -0
- package/lib/typescript/src/components/index.d.ts.map +1 -0
- package/lib/typescript/src/{component → components}/spec/ScanbotBarcodeScannerViewNativeComponent.d.ts +6 -0
- package/lib/typescript/src/components/spec/ScanbotBarcodeScannerViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/impl/BarcodeScannerImpl.d.ts +2 -0
- package/lib/typescript/src/impl/BarcodeScannerImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/ImageProcessorImpl.d.ts +2 -0
- package/lib/typescript/src/impl/ImageProcessorImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/SdkImpl.d.ts +2 -0
- package/lib/typescript/src/impl/SdkImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/index.d.ts +4 -0
- package/lib/typescript/src/impl/index.d.ts.map +1 -0
- package/lib/typescript/src/impl/scanbotBarcodeSDKModule.d.ts +2 -0
- package/lib/typescript/src/impl/scanbotBarcodeSDKModule.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +5 -66
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/types/base/SdkConfiguration.d.ts +74 -0
- package/lib/typescript/src/types/base/SdkConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/types/base/customTypes.d.ts +15 -0
- package/lib/typescript/src/types/base/customTypes.d.ts.map +1 -0
- package/lib/typescript/src/types/base/errors.d.ts +55 -0
- package/lib/typescript/src/types/base/errors.d.ts.map +1 -0
- package/lib/typescript/src/types/base/index.d.ts +5 -0
- package/lib/typescript/src/types/base/index.d.ts.map +1 -0
- package/lib/typescript/src/types/base/utils.d.ts +3 -0
- package/lib/typescript/src/types/base/utils.d.ts.map +1 -0
- package/lib/typescript/src/{barcode → types/core/barcode}/BarcodeConfigurationTypes.d.ts +203 -36
- package/lib/typescript/src/types/core/barcode/BarcodeConfigurationTypes.d.ts.map +1 -0
- package/lib/typescript/src/types/core/barcode/BarcodeDocumentTypes.d.ts +117 -0
- package/lib/typescript/src/types/core/barcode/BarcodeDocumentTypes.d.ts.map +1 -0
- package/lib/typescript/src/{barcode → types/core/barcode}/BarcodeScannerTypes.d.ts +68 -21
- package/lib/typescript/src/types/core/barcode/BarcodeScannerTypes.d.ts.map +1 -0
- package/lib/typescript/src/{barcode → types/core/barcode}/BarcodeTypes.d.ts +390 -13
- package/lib/typescript/src/types/core/barcode/BarcodeTypes.d.ts.map +1 -0
- package/lib/typescript/src/types/core/barcode/index.d.ts.map +1 -0
- package/lib/typescript/src/types/core/camera/Camera.d.ts +26 -0
- package/lib/typescript/src/types/core/camera/Camera.d.ts.map +1 -0
- package/lib/typescript/src/types/core/camera/index.d.ts +2 -0
- package/lib/typescript/src/types/core/camera/index.d.ts.map +1 -0
- package/lib/typescript/src/types/core/common/CommonTypes.d.ts +36 -0
- package/lib/typescript/src/types/core/common/CommonTypes.d.ts.map +1 -0
- package/lib/typescript/src/{utils/json → types/core/common}/JsonSerializationTypes.d.ts +13 -4
- package/lib/typescript/src/types/core/common/JsonSerializationTypes.d.ts.map +1 -0
- package/lib/typescript/src/types/core/common/index.d.ts +3 -0
- package/lib/typescript/src/types/core/common/index.d.ts.map +1 -0
- package/lib/typescript/src/types/core/generic_document/BarcodeDocumentModel.d.ts +2360 -0
- package/lib/typescript/src/types/core/generic_document/BarcodeDocumentModel.d.ts.map +1 -0
- package/lib/typescript/src/types/core/generic_document/CommonFieldType.d.ts +176 -0
- package/lib/typescript/src/types/core/generic_document/CommonFieldType.d.ts.map +1 -0
- package/lib/typescript/src/{documents → types/core/generic_document}/GenericDocument.d.ts +82 -14
- package/lib/typescript/src/types/core/generic_document/GenericDocument.d.ts.map +1 -0
- package/lib/typescript/src/types/core/generic_document/index.d.ts.map +1 -0
- package/lib/typescript/src/{utils → types/core}/geometry/Geometry.d.ts +6 -5
- package/lib/typescript/src/types/core/geometry/Geometry.d.ts.map +1 -0
- package/lib/typescript/src/types/core/geometry/index.d.ts +2 -0
- package/lib/typescript/src/types/core/geometry/index.d.ts.map +1 -0
- package/lib/typescript/src/{imageRef → types/core/image}/ImageRefTypes.d.ts +208 -40
- package/lib/typescript/src/types/core/image/ImageRefTypes.d.ts.map +1 -0
- package/lib/typescript/src/types/core/image/ImageTypes.d.ts +63 -0
- package/lib/typescript/src/types/core/image/ImageTypes.d.ts.map +1 -0
- package/lib/typescript/src/{imageRef → types/core/image}/image.d.ts +6 -10
- package/lib/typescript/src/types/core/image/image.d.ts.map +1 -0
- package/lib/typescript/src/{imageRef → types/core/image}/index.d.ts +0 -1
- package/lib/typescript/src/types/core/image/index.d.ts.map +1 -0
- package/lib/typescript/src/types/core/index.d.ts +10 -0
- package/lib/typescript/src/types/core/index.d.ts.map +1 -0
- package/lib/typescript/src/types/core/licensing/LicensingTypes.d.ts +243 -0
- package/lib/typescript/src/types/core/licensing/LicensingTypes.d.ts.map +1 -0
- package/lib/typescript/src/types/core/licensing/index.d.ts +2 -0
- package/lib/typescript/src/types/core/licensing/index.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/ArTrackingOverlayConfiguration.d.ts +27 -10
- package/lib/typescript/src/types/core/ui_v2/barcode/ArTrackingOverlayConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeInfoMapping.d.ts +6 -6
- package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeInfoMapping.d.ts.map +1 -0
- package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeItemMapper.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerScreenConfiguration.d.ts +14 -14
- package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeScannerScreenConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerUiResult.d.ts +4 -4
- package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeScannerUiResult.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeTextLocalization.d.ts +2 -2
- package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeTextLocalization.d.ts.map +1 -0
- package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeUseCase.d.ts +8 -0
- package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeUseCase.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/FindAndPickScanningModeUseCase.d.ts +6 -6
- package/lib/typescript/src/types/core/ui_v2/barcode/FindAndPickScanningModeUseCase.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/MultipleScanningModeUseCase.d.ts +42 -15
- package/lib/typescript/src/types/core/ui_v2/barcode/MultipleScanningModeUseCase.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/SingleScanningModeUseCase.d.ts +5 -5
- package/lib/typescript/src/types/core/ui_v2/barcode/SingleScanningModeUseCase.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/ActionBarConfiguration.d.ts +3 -3
- package/lib/typescript/src/types/core/ui_v2/common/ActionBarConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/types/core/ui_v2/common/BottomBarConfiguration.d.ts +26 -0
- package/lib/typescript/src/types/core/ui_v2/common/BottomBarConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/CameraConfiguration.d.ts +25 -5
- package/lib/typescript/src/types/core/ui_v2/common/CameraConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/CameraPermission.d.ts +4 -4
- package/lib/typescript/src/types/core/ui_v2/common/CameraPermission.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/Common.d.ts +55 -24
- package/lib/typescript/src/types/core/ui_v2/common/Common.d.ts.map +1 -0
- package/lib/typescript/src/types/core/ui_v2/common/NavigationBarConfiguration.d.ts +26 -0
- package/lib/typescript/src/types/core/ui_v2/common/NavigationBarConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/ScanCompletionOverlay.d.ts +3 -3
- package/lib/typescript/src/types/core/ui_v2/common/ScanCompletionOverlay.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/ScanbotAlertDialog.d.ts +3 -3
- package/lib/typescript/src/types/core/ui_v2/common/ScanbotAlertDialog.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/TopBarConfiguration.d.ts +33 -7
- package/lib/typescript/src/types/core/ui_v2/common/TopBarConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/UserGuidanceConfiguration.d.ts +4 -4
- package/lib/typescript/src/types/core/ui_v2/common/UserGuidanceConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/ViewFinderConfiguration.d.ts +7 -7
- package/lib/typescript/src/types/core/ui_v2/common/ViewFinderConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/index.d.ts +2 -2
- package/lib/typescript/src/types/core/ui_v2/index.d.ts.map +1 -0
- package/lib/typescript/src/{imageRef → types/core/utils}/ObjectPoolTypes.d.ts +3 -3
- package/lib/typescript/src/types/core/utils/ObjectPoolTypes.d.ts.map +1 -0
- package/lib/typescript/src/types/core/utils/index.d.ts +3 -0
- package/lib/typescript/src/types/core/utils/index.d.ts.map +1 -0
- package/lib/typescript/src/types/core/utils/utils.d.ts +28 -0
- package/lib/typescript/src/types/core/utils/utils.d.ts.map +1 -0
- package/lib/typescript/src/types/index.d.ts +3 -0
- package/lib/typescript/src/types/index.d.ts.map +1 -0
- package/package.json +13 -13
- package/src/Barcode.ts +67 -0
- package/src/ImageProcessor.ts +18 -0
- package/src/Sdk.ts +53 -0
- package/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraView.tsx +13 -4
- package/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewProperties.ts +22 -14
- package/src/components/index.ts +3 -0
- package/src/{component → components}/spec/ScanbotBarcodeScannerViewNativeComponent.ts +3 -0
- package/src/impl/BarcodeScannerImpl.ts +115 -0
- package/src/impl/ImageProcessorImpl.ts +14 -0
- package/src/impl/SdkImpl.ts +28 -0
- package/src/impl/index.ts +3 -0
- package/src/impl/scanbotBarcodeSDKModule.ts +22 -0
- package/src/index.ts +5 -178
- package/src/types/base/SdkConfiguration.ts +120 -0
- package/src/types/base/customTypes.ts +14 -0
- package/src/types/base/errors.ts +158 -0
- package/src/types/base/index.ts +4 -0
- package/src/types/base/utils.ts +53 -0
- package/src/{barcode → types/core/barcode}/BarcodeConfigurationTypes.ts +294 -83
- package/src/types/core/barcode/BarcodeDocumentTypes.ts +218 -0
- package/src/{barcode → types/core/barcode}/BarcodeScannerTypes.ts +91 -44
- package/src/{barcode → types/core/barcode}/BarcodeTypes.ts +315 -19
- package/src/types/core/camera/Camera.ts +33 -0
- package/src/types/core/camera/index.ts +1 -0
- package/src/types/core/common/CommonTypes.ts +43 -0
- package/src/{utils/json → types/core/common}/JsonSerializationTypes.ts +16 -5
- package/src/types/core/common/index.ts +2 -0
- package/src/{documents → types/core/generic_document}/BarcodeDocumentModel.ts +1524 -172
- package/src/{documents → types/core/generic_document}/CommonFieldType.ts +96 -7
- package/src/{documents → types/core/generic_document}/GenericDocument.ts +77 -28
- package/src/{utils → types/core}/geometry/Geometry.ts +6 -8
- package/src/types/core/geometry/index.ts +1 -0
- package/src/{imageRef → types/core/image}/ImageRefTypes.ts +277 -83
- package/src/types/core/image/ImageTypes.ts +78 -0
- package/src/{imageRef → types/core/image}/image.ts +44 -76
- package/src/{imageRef → types/core/image}/index.ts +0 -1
- package/src/types/core/index.ts +9 -0
- package/src/types/core/licensing/LicensingTypes.ts +377 -0
- package/src/types/core/licensing/index.ts +1 -0
- package/src/{ui_v2 → types/core/ui_v2}/barcode/ArTrackingOverlayConfiguration.ts +28 -17
- package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeInfoMapping.ts +6 -9
- package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerScreenConfiguration.ts +18 -25
- package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerUiResult.ts +5 -7
- package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeTextLocalization.ts +2 -3
- package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeUseCase.ts +6 -5
- package/src/{ui_v2 → types/core/ui_v2}/barcode/FindAndPickScanningModeUseCase.ts +17 -19
- package/src/{ui_v2 → types/core/ui_v2}/barcode/MultipleScanningModeUseCase.ts +50 -25
- package/src/{ui_v2 → types/core/ui_v2}/barcode/SingleScanningModeUseCase.ts +9 -10
- package/src/{ui_v2 → types/core/ui_v2}/common/ActionBarConfiguration.ts +3 -4
- package/src/types/core/ui_v2/common/BottomBarConfiguration.ts +33 -0
- package/src/{ui_v2 → types/core/ui_v2}/common/CameraConfiguration.ts +33 -7
- package/src/{ui_v2 → types/core/ui_v2}/common/CameraPermission.ts +4 -5
- package/src/{ui_v2 → types/core/ui_v2}/common/Common.ts +62 -41
- package/src/{ui_v2 → types/core/ui_v2}/common/NavigationBarConfiguration.ts +19 -2
- package/src/{ui_v2 → types/core/ui_v2}/common/ScanCompletionOverlay.ts +3 -4
- package/src/{ui_v2 → types/core/ui_v2}/common/ScanbotAlertDialog.ts +3 -4
- package/src/{ui_v2 → types/core/ui_v2}/common/TopBarConfiguration.ts +37 -13
- package/src/{ui_v2 → types/core/ui_v2}/common/UserGuidanceConfiguration.ts +4 -6
- package/src/{ui_v2 → types/core/ui_v2}/common/ViewFinderConfiguration.ts +15 -17
- package/src/{ui_v2 → types/core/ui_v2}/index.ts +2 -4
- package/src/{imageRef → types/core/utils}/ObjectPoolTypes.ts +3 -4
- package/src/types/core/utils/index.ts +2 -0
- package/src/types/core/utils/utils.ts +45 -0
- package/src/types/index.ts +2 -0
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/extensions/IntExtensions.kt +0 -7
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewControllerWrapper.h +0 -121
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewControllerWrapper.m +0 -307
- package/lib/commonjs/barcode/BarcodeConfigurationTypes.js.map +0 -1
- package/lib/commonjs/barcode/BarcodeDocumentTypes.js.map +0 -1
- package/lib/commonjs/barcode/BarcodeScannerTypes.js.map +0 -1
- package/lib/commonjs/barcode/BarcodeTypes.js.map +0 -1
- package/lib/commonjs/barcode/index.js.map +0 -1
- package/lib/commonjs/base/barcodeSDKConfigurations.js.map +0 -1
- package/lib/commonjs/base/barcodeSDKTypes.js +0 -2
- package/lib/commonjs/base/barcodeSDKTypes.js.map +0 -1
- package/lib/commonjs/base/index.js +0 -28
- package/lib/commonjs/base/index.js.map +0 -1
- package/lib/commonjs/component/barcode-camera-view/ScanbotBarcodeCameraView.js.map +0 -1
- package/lib/commonjs/component/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js.map +0 -1
- package/lib/commonjs/component/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js.map +0 -1
- package/lib/commonjs/component/barcode-camera-view/index.js.map +0 -1
- package/lib/commonjs/component/spec/ScanbotBarcodeScannerViewNativeComponent.js.map +0 -1
- package/lib/commonjs/documents/BarcodeDocumentModel.js.map +0 -1
- package/lib/commonjs/documents/CommonFieldType.js.map +0 -1
- package/lib/commonjs/documents/GenericDocument.js.map +0 -1
- package/lib/commonjs/documents/index.js.map +0 -1
- package/lib/commonjs/imageRef/ImageRefTypes.js.map +0 -1
- package/lib/commonjs/imageRef/ImageTypes.js +0 -24
- package/lib/commonjs/imageRef/ImageTypes.js.map +0 -1
- package/lib/commonjs/imageRef/ObjectPoolTypes.js.map +0 -1
- package/lib/commonjs/imageRef/image.js.map +0 -1
- package/lib/commonjs/imageRef/index.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/ArTrackingOverlayConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/BarcodeInfoMapping.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/BarcodeItemMapper.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/BarcodeScannerConfiguration.js +0 -179
- package/lib/commonjs/ui_v2/barcode/BarcodeScannerConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/BarcodeScannerScreenConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/BarcodeScannerUiResult.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/BarcodeTextLocalization.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/BarcodeUseCase.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/FindAndPickScanningModeUseCase.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/MultipleScanningModeUseCase.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/SingleScanningModeUseCase.js.map +0 -1
- package/lib/commonjs/ui_v2/common/ActionBarConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/common/CameraConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/common/CameraPermission.js.map +0 -1
- package/lib/commonjs/ui_v2/common/Common.js.map +0 -1
- package/lib/commonjs/ui_v2/common/NavigationBarConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/common/ScanCompletionOverlay.js.map +0 -1
- package/lib/commonjs/ui_v2/common/ScanbotAlertDialog.js.map +0 -1
- package/lib/commonjs/ui_v2/common/TopBarConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/common/UserGuidanceConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/common/ViewFinderConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/index.js.map +0 -1
- package/lib/commonjs/utils/geometry/Geometry.js.map +0 -1
- package/lib/commonjs/utils/index.js +0 -39
- package/lib/commonjs/utils/index.js.map +0 -1
- package/lib/commonjs/utils/json/JsonSerializationTypes.js.map +0 -1
- package/lib/commonjs/utils/utils.js +0 -31
- package/lib/commonjs/utils/utils.js.map +0 -1
- package/lib/module/barcode/BarcodeConfigurationTypes.js.map +0 -1
- package/lib/module/barcode/BarcodeDocumentTypes.js.map +0 -1
- package/lib/module/barcode/BarcodeScannerTypes.js.map +0 -1
- package/lib/module/barcode/BarcodeTypes.js.map +0 -1
- package/lib/module/barcode/index.js.map +0 -1
- package/lib/module/base/barcodeSDKConfigurations.js +0 -2
- package/lib/module/base/barcodeSDKConfigurations.js.map +0 -1
- package/lib/module/base/barcodeSDKTypes.js +0 -2
- package/lib/module/base/barcodeSDKTypes.js.map +0 -1
- package/lib/module/base/index.js +0 -3
- package/lib/module/base/index.js.map +0 -1
- package/lib/module/component/barcode-camera-view/ScanbotBarcodeCameraView.js.map +0 -1
- package/lib/module/component/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js.map +0 -1
- package/lib/module/component/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js.map +0 -1
- package/lib/module/component/barcode-camera-view/index.js +0 -4
- package/lib/module/component/barcode-camera-view/index.js.map +0 -1
- package/lib/module/component/spec/ScanbotBarcodeScannerViewNativeComponent.js.map +0 -1
- package/lib/module/documents/BarcodeDocumentModel.js.map +0 -1
- package/lib/module/documents/CommonFieldType.js.map +0 -1
- package/lib/module/documents/GenericDocument.js.map +0 -1
- package/lib/module/documents/index.js.map +0 -1
- package/lib/module/imageRef/ImageRefTypes.js.map +0 -1
- package/lib/module/imageRef/ImageTypes.js +0 -18
- package/lib/module/imageRef/ImageTypes.js.map +0 -1
- package/lib/module/imageRef/ObjectPoolTypes.js.map +0 -1
- package/lib/module/imageRef/image.js.map +0 -1
- package/lib/module/imageRef/index.js.map +0 -1
- package/lib/module/ui_v2/barcode/ArTrackingOverlayConfiguration.js.map +0 -1
- package/lib/module/ui_v2/barcode/BarcodeInfoMapping.js.map +0 -1
- package/lib/module/ui_v2/barcode/BarcodeItemMapper.js.map +0 -1
- package/lib/module/ui_v2/barcode/BarcodeScannerConfiguration.js +0 -173
- package/lib/module/ui_v2/barcode/BarcodeScannerConfiguration.js.map +0 -1
- package/lib/module/ui_v2/barcode/BarcodeScannerScreenConfiguration.js.map +0 -1
- package/lib/module/ui_v2/barcode/BarcodeScannerUiResult.js.map +0 -1
- package/lib/module/ui_v2/barcode/BarcodeTextLocalization.js.map +0 -1
- package/lib/module/ui_v2/barcode/BarcodeUseCase.js.map +0 -1
- package/lib/module/ui_v2/barcode/FindAndPickScanningModeUseCase.js.map +0 -1
- package/lib/module/ui_v2/barcode/MultipleScanningModeUseCase.js.map +0 -1
- package/lib/module/ui_v2/barcode/SingleScanningModeUseCase.js.map +0 -1
- package/lib/module/ui_v2/common/ActionBarConfiguration.js.map +0 -1
- package/lib/module/ui_v2/common/CameraConfiguration.js.map +0 -1
- package/lib/module/ui_v2/common/CameraPermission.js.map +0 -1
- package/lib/module/ui_v2/common/Common.js.map +0 -1
- package/lib/module/ui_v2/common/NavigationBarConfiguration.js.map +0 -1
- package/lib/module/ui_v2/common/ScanCompletionOverlay.js.map +0 -1
- package/lib/module/ui_v2/common/ScanbotAlertDialog.js.map +0 -1
- package/lib/module/ui_v2/common/TopBarConfiguration.js.map +0 -1
- package/lib/module/ui_v2/common/UserGuidanceConfiguration.js.map +0 -1
- package/lib/module/ui_v2/common/ViewFinderConfiguration.js.map +0 -1
- package/lib/module/ui_v2/index.js.map +0 -1
- package/lib/module/utils/geometry/Geometry.js.map +0 -1
- package/lib/module/utils/index.js +0 -4
- package/lib/module/utils/index.js.map +0 -1
- package/lib/module/utils/json/JsonSerializationTypes.js.map +0 -1
- package/lib/module/utils/utils.js +0 -22
- package/lib/module/utils/utils.js.map +0 -1
- package/lib/typescript/src/barcode/BarcodeConfigurationTypes.d.ts.map +0 -1
- package/lib/typescript/src/barcode/BarcodeDocumentTypes.d.ts +0 -50
- package/lib/typescript/src/barcode/BarcodeDocumentTypes.d.ts.map +0 -1
- package/lib/typescript/src/barcode/BarcodeScannerTypes.d.ts.map +0 -1
- package/lib/typescript/src/barcode/BarcodeTypes.d.ts.map +0 -1
- package/lib/typescript/src/barcode/index.d.ts.map +0 -1
- package/lib/typescript/src/base/barcodeSDKConfigurations.d.ts +0 -60
- package/lib/typescript/src/base/barcodeSDKConfigurations.d.ts.map +0 -1
- package/lib/typescript/src/base/barcodeSDKTypes.d.ts +0 -46
- package/lib/typescript/src/base/barcodeSDKTypes.d.ts.map +0 -1
- package/lib/typescript/src/base/index.d.ts +0 -3
- package/lib/typescript/src/base/index.d.ts.map +0 -1
- package/lib/typescript/src/component/barcode-camera-view/ScanbotBarcodeCameraView.d.ts.map +0 -1
- package/lib/typescript/src/component/barcode-camera-view/ScanbotBarcodeCameraViewProperties.d.ts.map +0 -1
- package/lib/typescript/src/component/barcode-camera-view/ScanbotBarcodeCameraViewTypes.d.ts.map +0 -1
- package/lib/typescript/src/component/barcode-camera-view/index.d.ts +0 -4
- package/lib/typescript/src/component/barcode-camera-view/index.d.ts.map +0 -1
- package/lib/typescript/src/component/spec/ScanbotBarcodeScannerViewNativeComponent.d.ts.map +0 -1
- package/lib/typescript/src/documents/BarcodeDocumentModel.d.ts +0 -1458
- package/lib/typescript/src/documents/BarcodeDocumentModel.d.ts.map +0 -1
- package/lib/typescript/src/documents/CommonFieldType.d.ts +0 -61
- package/lib/typescript/src/documents/CommonFieldType.d.ts.map +0 -1
- package/lib/typescript/src/documents/GenericDocument.d.ts.map +0 -1
- package/lib/typescript/src/documents/index.d.ts.map +0 -1
- package/lib/typescript/src/imageRef/ImageRefTypes.d.ts.map +0 -1
- package/lib/typescript/src/imageRef/ImageTypes.d.ts +0 -15
- package/lib/typescript/src/imageRef/ImageTypes.d.ts.map +0 -1
- package/lib/typescript/src/imageRef/ObjectPoolTypes.d.ts.map +0 -1
- package/lib/typescript/src/imageRef/image.d.ts.map +0 -1
- package/lib/typescript/src/imageRef/index.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/ArTrackingOverlayConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/BarcodeInfoMapping.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/BarcodeItemMapper.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/BarcodeScannerConfiguration.d.ts +0 -114
- package/lib/typescript/src/ui_v2/barcode/BarcodeScannerConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/BarcodeScannerScreenConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/BarcodeScannerUiResult.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/BarcodeTextLocalization.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/BarcodeUseCase.d.ts +0 -8
- package/lib/typescript/src/ui_v2/barcode/BarcodeUseCase.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/FindAndPickScanningModeUseCase.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/MultipleScanningModeUseCase.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/SingleScanningModeUseCase.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/ActionBarConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/CameraConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/CameraPermission.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/Common.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/NavigationBarConfiguration.d.ts +0 -13
- package/lib/typescript/src/ui_v2/common/NavigationBarConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/ScanCompletionOverlay.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/ScanbotAlertDialog.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/TopBarConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/UserGuidanceConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/ViewFinderConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/index.d.ts.map +0 -1
- package/lib/typescript/src/utils/geometry/Geometry.d.ts.map +0 -1
- package/lib/typescript/src/utils/index.d.ts +0 -4
- package/lib/typescript/src/utils/index.d.ts.map +0 -1
- package/lib/typescript/src/utils/json/JsonSerializationTypes.d.ts.map +0 -1
- package/lib/typescript/src/utils/utils.d.ts +0 -17
- package/lib/typescript/src/utils/utils.d.ts.map +0 -1
- package/src/barcode/BarcodeDocumentTypes.ts +0 -120
- package/src/base/barcodeSDKConfigurations.ts +0 -70
- package/src/base/barcodeSDKTypes.ts +0 -44
- package/src/base/index.ts +0 -2
- package/src/component/barcode-camera-view/index.ts +0 -3
- package/src/imageRef/ImageTypes.ts +0 -23
- package/src/ui_v2/barcode/BarcodeScannerConfiguration.ts +0 -207
- package/src/utils/index.ts +0 -3
- package/src/utils/utils.ts +0 -42
- /package/lib/commonjs/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js +0 -0
- /package/lib/commonjs/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js +0 -0
- /package/lib/commonjs/{component → components}/spec/ScanbotBarcodeScannerViewNativeComponent.js +0 -0
- /package/lib/commonjs/{barcode → types/core/barcode}/index.js +0 -0
- /package/lib/commonjs/{documents → types/core/generic_document}/index.js +0 -0
- /package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeItemMapper.js +0 -0
- /package/lib/module/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js +0 -0
- /package/lib/module/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js +0 -0
- /package/lib/module/{component → components}/spec/ScanbotBarcodeScannerViewNativeComponent.js +0 -0
- /package/lib/module/{barcode → types/core/barcode}/index.js +0 -0
- /package/lib/module/{documents → types/core/generic_document}/index.js +0 -0
- /package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeItemMapper.js +0 -0
- /package/lib/typescript/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraView.d.ts +0 -0
- /package/lib/typescript/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewTypes.d.ts +0 -0
- /package/lib/typescript/src/{barcode → types/core/barcode}/index.d.ts +0 -0
- /package/lib/typescript/src/{documents → types/core/generic_document}/index.d.ts +0 -0
- /package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeItemMapper.d.ts +0 -0
- /package/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewTypes.ts +0 -0
- /package/src/{barcode → types/core/barcode}/index.ts +0 -0
- /package/src/{documents → types/core/generic_document}/index.ts +0 -0
- /package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeItemMapper.ts +0 -0
|
@@ -3,93 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { Field, GenericDocument } from './GenericDocument';
|
|
5
5
|
|
|
6
|
-
/// All possible root document types.
|
|
7
|
-
export type BarcodeDocumentModelRootType =
|
|
8
|
-
| typeof BoardingPassDocumentType
|
|
9
|
-
| typeof SwissQRDocumentType
|
|
10
|
-
| typeof DEMedicalPlanDocumentType
|
|
11
|
-
| typeof IDCardPDF417DocumentType
|
|
12
|
-
| typeof GS1DocumentType
|
|
13
|
-
| typeof SEPADocumentType
|
|
14
|
-
| typeof MedicalCertificateDocumentType
|
|
15
|
-
| typeof VCardDocumentType
|
|
16
|
-
| typeof AAMVADocumentType
|
|
17
|
-
| typeof HIBCDocumentType;
|
|
18
|
-
|
|
19
|
-
export const BoardingPassDocumentType = 'BoardingPass';
|
|
20
|
-
export const BoardingPassLegDocumentType = 'Leg';
|
|
21
|
-
export const SwissQRDocumentType = 'SwissQR';
|
|
22
|
-
export const DEMedicalPlanDocumentType = 'DEMedicalPlan';
|
|
23
|
-
export const DEMedicalPlanPatientDocumentType = 'Patient';
|
|
24
|
-
export const DEMedicalPlanDoctorDocumentType = 'Doctor';
|
|
25
|
-
export const DEMedicalPlanSubheadingDocumentType = 'Subheading';
|
|
26
|
-
export const DEMedicalPlanSubheadingMedicineDocumentType = 'Medicine';
|
|
27
|
-
export const DEMedicalPlanSubheadingMedicineSubstanceDocumentType = 'Substance';
|
|
28
|
-
export const DEMedicalPlanSubheadingPrescriptionDocumentType = 'Prescription';
|
|
29
|
-
export const IDCardPDF417DocumentType = 'IDCardPDF417';
|
|
30
|
-
export const GS1DocumentType = 'GS1';
|
|
31
|
-
export const GS1ElementDocumentType = 'Element';
|
|
32
|
-
export const GS1ElementValidationErrorDocumentType = 'ValidationError';
|
|
33
|
-
export const SEPADocumentType = 'SEPA';
|
|
34
|
-
export const MedicalCertificateDocumentType = 'MedicalCertificate';
|
|
35
|
-
export const VCardDocumentType = 'VCard';
|
|
36
|
-
export const VCardEntryDocumentType = 'Entry';
|
|
37
|
-
export const VCardVersionDocumentType = 'Version';
|
|
38
|
-
export const VCardSourceDocumentType = 'Source';
|
|
39
|
-
export const VCardKindDocumentType = 'Kind';
|
|
40
|
-
export const VCardXMLDocumentType = 'XML';
|
|
41
|
-
export const VCardNameDocumentType = 'Name';
|
|
42
|
-
export const VCardFormattedNameDocumentType = 'FormattedName';
|
|
43
|
-
export const VCardNicknameDocumentType = 'Nickname';
|
|
44
|
-
export const VCardBirthdayDocumentType = 'Birthday';
|
|
45
|
-
export const VCardAnniversaryDocumentType = 'Anniversary';
|
|
46
|
-
export const VCardGenderDocumentType = 'Gender';
|
|
47
|
-
export const VCardDeliveryAddressDocumentType = 'DeliveryAddress';
|
|
48
|
-
export const VCardLabelDocumentType = 'Label';
|
|
49
|
-
export const VCardPhotoDocumentType = 'Photo';
|
|
50
|
-
export const VCardTelephoneNumberDocumentType = 'TelephoneNumber';
|
|
51
|
-
export const VCardEmailDocumentType = 'Email';
|
|
52
|
-
export const VCardIMPPDocumentType = 'IMPP';
|
|
53
|
-
export const VCardLanguagesDocumentType = 'Languages';
|
|
54
|
-
export const VCardTimeZoneDocumentType = 'TimeZone';
|
|
55
|
-
export const VCardGeoLocationDocumentType = 'GeoLocation';
|
|
56
|
-
export const VCardTitleDocumentType = 'Title';
|
|
57
|
-
export const VCardRoleDocumentType = 'Role';
|
|
58
|
-
export const VCardLogoDocumentType = 'Logo';
|
|
59
|
-
export const VCardAgentDocumentType = 'Agent';
|
|
60
|
-
export const VCardOrganisationDocumentType = 'Organisation';
|
|
61
|
-
export const VCardMemberDocumentType = 'Member';
|
|
62
|
-
export const VCardRelatedDocumentType = 'Related';
|
|
63
|
-
export const VCardCategoriesDocumentType = 'Categories';
|
|
64
|
-
export const VCardNoteDocumentType = 'Note';
|
|
65
|
-
export const VCardProductIdDocumentType = 'ProductId';
|
|
66
|
-
export const VCardRevisionDocumentType = 'Revision';
|
|
67
|
-
export const VCardSoundDocumentType = 'Sound';
|
|
68
|
-
export const VCardUIDDocumentType = 'UID';
|
|
69
|
-
export const VCardClientPIDMapDocumentType = 'ClientPIDMap';
|
|
70
|
-
export const VCardURLDocumentType = 'URL';
|
|
71
|
-
export const VCardPublicKeyDocumentType = 'PublicKey';
|
|
72
|
-
export const VCardBusyTimeURLDocumentType = 'BusyTimeURL';
|
|
73
|
-
export const VCardCalendarURIForRequestsDocumentType = 'CalendarURIForRequests';
|
|
74
|
-
export const VCardCalendarURIDocumentType = 'CalendarURI';
|
|
75
|
-
export const VCardSortStringDocumentType = 'SortString';
|
|
76
|
-
export const VCardClassificationDocumentType = 'Classification';
|
|
77
|
-
export const VCardCustomDocumentType = 'Custom';
|
|
78
|
-
export const AAMVADocumentType = 'AAMVA';
|
|
79
|
-
export const AAMVATitleDataDocumentType = 'TitleData';
|
|
80
|
-
export const AAMVARegistrationDataDocumentType = 'RegistrationData';
|
|
81
|
-
export const AAMVAMotorCarrierDataDocumentType = 'MotorCarrierData';
|
|
82
|
-
export const AAMVARegistrantAndVehicleDataDocumentType = 'RegistrantAndVehicleData';
|
|
83
|
-
export const AAMVAVehicleOwnerDataDocumentType = 'VehicleOwnerData';
|
|
84
|
-
export const AAMVAVehicleDataDocumentType = 'VehicleData';
|
|
85
|
-
export const AAMVAVehicleSafetyInspectionDataDocumentType = 'VehicleSafetyInspectionData';
|
|
86
|
-
export const AAMVADLIDDocumentType = 'DLID';
|
|
87
|
-
export const AAMVADriverLicenseDocumentType = 'DriverLicense';
|
|
88
|
-
export const AAMVAIDCardDocumentType = 'IDCard';
|
|
89
|
-
export const AAMVAEnhancedDriverLicenseDocumentType = 'EnhancedDriverLicense';
|
|
90
|
-
export const AAMVARawDocumentDocumentType = 'RawDocument';
|
|
91
|
-
export const HIBCDocumentType = 'HIBC';
|
|
92
|
-
|
|
93
6
|
/** Boarding Pass */
|
|
94
7
|
export class BoardingPass {
|
|
95
8
|
private _document: GenericDocument;
|
|
@@ -98,6 +11,21 @@ export class BoardingPass {
|
|
|
98
11
|
return this._document;
|
|
99
12
|
}
|
|
100
13
|
|
|
14
|
+
public static readonly DOCUMENT_TYPE = 'BoardingPass';
|
|
15
|
+
public static readonly ELECTRONIC_TICKET_INDICATOR_FIELD_NAME = 'ElectronicTicketIndicator';
|
|
16
|
+
public static readonly ELECTRONIC_TICKET_INDICATOR_FIELD_NAME_NORMALIZED =
|
|
17
|
+
'BoardingPass.ElectronicTicketIndicator';
|
|
18
|
+
public static readonly FORMAT_CODE_FIELD_NAME = 'FormatCode';
|
|
19
|
+
public static readonly FORMAT_CODE_FIELD_NAME_NORMALIZED = 'BoardingPass.FormatCode';
|
|
20
|
+
public static readonly NUMBER_OF_LEGS_FIELD_NAME = 'NumberOfLegs';
|
|
21
|
+
public static readonly NUMBER_OF_LEGS_FIELD_NAME_NORMALIZED = 'BoardingPass.NumberOfLegs';
|
|
22
|
+
public static readonly PASSENGER_NAME_FIELD_NAME = 'PassengerName';
|
|
23
|
+
public static readonly PASSENGER_NAME_FIELD_NAME_NORMALIZED = 'BoardingPass.PassengerName';
|
|
24
|
+
public static readonly SECURITY_DATA_FIELD_NAME = 'SecurityData';
|
|
25
|
+
public static readonly SECURITY_DATA_FIELD_NAME_NORMALIZED = 'BoardingPass.SecurityData';
|
|
26
|
+
public static readonly SECURITY_DATA_TYPE_FIELD_NAME = 'SecurityDataType';
|
|
27
|
+
public static readonly SECURITY_DATA_TYPE_FIELD_NAME_NORMALIZED = 'BoardingPass.SecurityDataType';
|
|
28
|
+
|
|
101
29
|
constructor(document: GenericDocument) {
|
|
102
30
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
103
31
|
throw new Error(
|
|
@@ -109,7 +37,7 @@ export class BoardingPass {
|
|
|
109
37
|
}
|
|
110
38
|
|
|
111
39
|
requiredDocumentType(): string {
|
|
112
|
-
return
|
|
40
|
+
return BoardingPass.DOCUMENT_TYPE;
|
|
113
41
|
}
|
|
114
42
|
|
|
115
43
|
/** Electronic Ticket */
|
|
@@ -161,6 +89,103 @@ export namespace BoardingPass {
|
|
|
161
89
|
return this._document;
|
|
162
90
|
}
|
|
163
91
|
|
|
92
|
+
public static readonly DOCUMENT_TYPE = 'Leg';
|
|
93
|
+
public static readonly AIRLINE_DESIGNATOR_OF_BOARDING_PASS_ISSUER_FIELD_NAME =
|
|
94
|
+
'AirlineDesignatorOfBoardingPassIssuer';
|
|
95
|
+
public static readonly AIRLINE_DESIGNATOR_OF_BOARDING_PASS_ISSUER_FIELD_NAME_NORMALIZED =
|
|
96
|
+
'BoardingPass.Leg.AirlineDesignatorOfBoardingPassIssuer';
|
|
97
|
+
public static readonly AIRLINE_NUMERIC_CODE_FIELD_NAME = 'AirlineNumericCode';
|
|
98
|
+
public static readonly AIRLINE_NUMERIC_CODE_FIELD_NAME_NORMALIZED =
|
|
99
|
+
'BoardingPass.Leg.AirlineNumericCode';
|
|
100
|
+
public static readonly BAGGAGE_TAG_LICENSE_PLATE_NUMBERS_FIELD_NAME =
|
|
101
|
+
'BaggageTagLicensePlateNumbers';
|
|
102
|
+
public static readonly BAGGAGE_TAG_LICENSE_PLATE_NUMBERS_FIELD_NAME_NORMALIZED =
|
|
103
|
+
'BoardingPass.Leg.BaggageTagLicensePlateNumbers';
|
|
104
|
+
public static readonly CHECK_IN_SEQUENCE_NUMBER_FIELD_NAME = 'CheckInSequenceNumber';
|
|
105
|
+
public static readonly CHECK_IN_SEQUENCE_NUMBER_FIELD_NAME_NORMALIZED =
|
|
106
|
+
'BoardingPass.Leg.CheckInSequenceNumber';
|
|
107
|
+
public static readonly COMPARTMENT_CODE_FIELD_NAME = 'CompartmentCode';
|
|
108
|
+
public static readonly COMPARTMENT_CODE_FIELD_NAME_NORMALIZED =
|
|
109
|
+
'BoardingPass.Leg.CompartmentCode';
|
|
110
|
+
public static readonly DATE_OF_BOARDING_PASS_ISSUANCE_JULIAN_FIELD_NAME =
|
|
111
|
+
'DateOfBoardingPassIssuanceJulian';
|
|
112
|
+
public static readonly DATE_OF_BOARDING_PASS_ISSUANCE_JULIAN_FIELD_NAME_NORMALIZED =
|
|
113
|
+
'BoardingPass.Leg.DateOfBoardingPassIssuanceJulian';
|
|
114
|
+
public static readonly DATE_OF_FLIGHT_JULIAN_FIELD_NAME = 'DateOfFlightJulian';
|
|
115
|
+
public static readonly DATE_OF_FLIGHT_JULIAN_FIELD_NAME_NORMALIZED =
|
|
116
|
+
'BoardingPass.Leg.DateOfFlightJulian';
|
|
117
|
+
public static readonly DEPARTURE_AIRPORT_CODE_FIELD_NAME = 'DepartureAirportCode';
|
|
118
|
+
public static readonly DEPARTURE_AIRPORT_CODE_FIELD_NAME_NORMALIZED =
|
|
119
|
+
'BoardingPass.Leg.DepartureAirportCode';
|
|
120
|
+
public static readonly DESTINATION_AIRPORT_CODE_FIELD_NAME = 'DestinationAirportCode';
|
|
121
|
+
public static readonly DESTINATION_AIRPORT_CODE_FIELD_NAME_NORMALIZED =
|
|
122
|
+
'BoardingPass.Leg.DestinationAirportCode';
|
|
123
|
+
public static readonly DOCUMENT_FORM_SERIAL_NUMBER_FIELD_NAME = 'DocumentFormSerialNumber';
|
|
124
|
+
public static readonly DOCUMENT_FORM_SERIAL_NUMBER_FIELD_NAME_NORMALIZED =
|
|
125
|
+
'BoardingPass.Leg.DocumentFormSerialNumber';
|
|
126
|
+
public static readonly DOCUMENT_TYPE_FIELD_NAME = 'DocumentType';
|
|
127
|
+
public static readonly DOCUMENT_TYPE_FIELD_NAME_NORMALIZED = 'BoardingPass.Leg.DocumentType';
|
|
128
|
+
public static readonly FAST_TRACK_FIELD_NAME = 'FastTrack';
|
|
129
|
+
public static readonly FAST_TRACK_FIELD_NAME_NORMALIZED = 'BoardingPass.Leg.FastTrack';
|
|
130
|
+
public static readonly FIRST_NON_CONSECUTIVE_BAGGAGE_TAG_LICENSE_PLATE_NUMBER_FIELD_NAME =
|
|
131
|
+
'FirstNonConsecutiveBaggageTagLicensePlateNumber';
|
|
132
|
+
public static readonly FIRST_NON_CONSECUTIVE_BAGGAGE_TAG_LICENSE_PLATE_NUMBER_FIELD_NAME_NORMALIZED =
|
|
133
|
+
'BoardingPass.Leg.FirstNonConsecutiveBaggageTagLicensePlateNumber';
|
|
134
|
+
public static readonly FLIGHT_NUMBER_FIELD_NAME = 'FlightNumber';
|
|
135
|
+
public static readonly FLIGHT_NUMBER_FIELD_NAME_NORMALIZED = 'BoardingPass.Leg.FlightNumber';
|
|
136
|
+
public static readonly FOR_INDIVIDUAL_AIRLINE_USE_FIELD_NAME = 'ForIndividualAirlineUse';
|
|
137
|
+
public static readonly FOR_INDIVIDUAL_AIRLINE_USE_FIELD_NAME_NORMALIZED =
|
|
138
|
+
'BoardingPass.Leg.ForIndividualAirlineUse';
|
|
139
|
+
public static readonly FREE_BAGGAGE_ALLOWANCE_FIELD_NAME = 'FreeBaggageAllowance';
|
|
140
|
+
public static readonly FREE_BAGGAGE_ALLOWANCE_FIELD_NAME_NORMALIZED =
|
|
141
|
+
'BoardingPass.Leg.FreeBaggageAllowance';
|
|
142
|
+
public static readonly FREQUENT_FLYER_AIRLINE_DESIGNATOR_FIELD_NAME =
|
|
143
|
+
'FrequentFlyerAirlineDesignator';
|
|
144
|
+
public static readonly FREQUENT_FLYER_AIRLINE_DESIGNATOR_FIELD_NAME_NORMALIZED =
|
|
145
|
+
'BoardingPass.Leg.FrequentFlyerAirlineDesignator';
|
|
146
|
+
public static readonly FREQUENT_FLYER_NUMBER_FIELD_NAME = 'FrequentFlyerNumber';
|
|
147
|
+
public static readonly FREQUENT_FLYER_NUMBER_FIELD_NAME_NORMALIZED =
|
|
148
|
+
'BoardingPass.Leg.FrequentFlyerNumber';
|
|
149
|
+
public static readonly IDAD_INDICATOR_FIELD_NAME = 'IDADIndicator';
|
|
150
|
+
public static readonly IDAD_INDICATOR_FIELD_NAME_NORMALIZED = 'BoardingPass.Leg.IDADIndicator';
|
|
151
|
+
public static readonly INTERNATIONAL_DOCUMENTATION_VERIFICATION_FIELD_NAME =
|
|
152
|
+
'InternationalDocumentationVerification';
|
|
153
|
+
public static readonly INTERNATIONAL_DOCUMENTATION_VERIFICATION_FIELD_NAME_NORMALIZED =
|
|
154
|
+
'BoardingPass.Leg.InternationalDocumentationVerification';
|
|
155
|
+
public static readonly MARKETING_CARRIER_DESIGNATOR_FIELD_NAME = 'MarketingCarrierDesignator';
|
|
156
|
+
public static readonly MARKETING_CARRIER_DESIGNATOR_FIELD_NAME_NORMALIZED =
|
|
157
|
+
'BoardingPass.Leg.MarketingCarrierDesignator';
|
|
158
|
+
public static readonly OPERATING_CARRIER_DESIGNATOR_FIELD_NAME = 'OperatingCarrierDesignator';
|
|
159
|
+
public static readonly OPERATING_CARRIER_DESIGNATOR_FIELD_NAME_NORMALIZED =
|
|
160
|
+
'BoardingPass.Leg.OperatingCarrierDesignator';
|
|
161
|
+
public static readonly OPERATING_CARRIER_PNR_CODE_FIELD_NAME = 'OperatingCarrierPNRCode';
|
|
162
|
+
public static readonly OPERATING_CARRIER_PNR_CODE_FIELD_NAME_NORMALIZED =
|
|
163
|
+
'BoardingPass.Leg.OperatingCarrierPNRCode';
|
|
164
|
+
public static readonly PASSENGER_DESCRIPTION_FIELD_NAME = 'PassengerDescription';
|
|
165
|
+
public static readonly PASSENGER_DESCRIPTION_FIELD_NAME_NORMALIZED =
|
|
166
|
+
'BoardingPass.Leg.PassengerDescription';
|
|
167
|
+
public static readonly PASSENGER_STATUS_FIELD_NAME = 'PassengerStatus';
|
|
168
|
+
public static readonly PASSENGER_STATUS_FIELD_NAME_NORMALIZED =
|
|
169
|
+
'BoardingPass.Leg.PassengerStatus';
|
|
170
|
+
public static readonly SEAT_NUMBER_FIELD_NAME = 'SeatNumber';
|
|
171
|
+
public static readonly SEAT_NUMBER_FIELD_NAME_NORMALIZED = 'BoardingPass.Leg.SeatNumber';
|
|
172
|
+
public static readonly SECOND_NON_CONSECUTIVE_BAGGAGE_TAG_LICENSE_PLATE_NUMBER_FIELD_NAME =
|
|
173
|
+
'SecondNonConsecutiveBaggageTagLicensePlateNumber';
|
|
174
|
+
public static readonly SECOND_NON_CONSECUTIVE_BAGGAGE_TAG_LICENSE_PLATE_NUMBER_FIELD_NAME_NORMALIZED =
|
|
175
|
+
'BoardingPass.Leg.SecondNonConsecutiveBaggageTagLicensePlateNumber';
|
|
176
|
+
public static readonly SELECTEE_INDICATOR_FIELD_NAME = 'SelecteeIndicator';
|
|
177
|
+
public static readonly SELECTEE_INDICATOR_FIELD_NAME_NORMALIZED =
|
|
178
|
+
'BoardingPass.Leg.SelecteeIndicator';
|
|
179
|
+
public static readonly SOURCE_OF_BOARDING_PASS_ISSUANCE_FIELD_NAME =
|
|
180
|
+
'SourceOfBoardingPassIssuance';
|
|
181
|
+
public static readonly SOURCE_OF_BOARDING_PASS_ISSUANCE_FIELD_NAME_NORMALIZED =
|
|
182
|
+
'BoardingPass.Leg.SourceOfBoardingPassIssuance';
|
|
183
|
+
public static readonly SOURCE_OF_CHECK_IN_FIELD_NAME = 'SourceOfCheckIn';
|
|
184
|
+
public static readonly SOURCE_OF_CHECK_IN_FIELD_NAME_NORMALIZED =
|
|
185
|
+
'BoardingPass.Leg.SourceOfCheckIn';
|
|
186
|
+
public static readonly VERSION_NUMBER_FIELD_NAME = 'VersionNumber';
|
|
187
|
+
public static readonly VERSION_NUMBER_FIELD_NAME_NORMALIZED = 'BoardingPass.Leg.VersionNumber';
|
|
188
|
+
|
|
164
189
|
constructor(document: GenericDocument) {
|
|
165
190
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
166
191
|
throw new Error(
|
|
@@ -172,7 +197,7 @@ export namespace BoardingPass {
|
|
|
172
197
|
}
|
|
173
198
|
|
|
174
199
|
requiredDocumentType(): string {
|
|
175
|
-
return
|
|
200
|
+
return BoardingPass.Leg.DOCUMENT_TYPE;
|
|
176
201
|
}
|
|
177
202
|
|
|
178
203
|
/** Airline Designator Of Boarding Pass Issuer */
|
|
@@ -366,6 +391,92 @@ export class SwissQR {
|
|
|
366
391
|
return this._document;
|
|
367
392
|
}
|
|
368
393
|
|
|
394
|
+
public static readonly DOCUMENT_TYPE = 'SwissQR';
|
|
395
|
+
public static readonly ADDITIONAL_BILLING_INFORMATION_FIELD_NAME = 'AdditionalBillingInformation';
|
|
396
|
+
public static readonly ADDITIONAL_BILLING_INFORMATION_FIELD_NAME_NORMALIZED =
|
|
397
|
+
'SwissQR.AdditionalBillingInformation';
|
|
398
|
+
public static readonly ADDITIONAL_INFO_TRAILER_FIELD_NAME = 'AdditionalInfoTrailer';
|
|
399
|
+
public static readonly ADDITIONAL_INFO_TRAILER_FIELD_NAME_NORMALIZED =
|
|
400
|
+
'SwissQR.AdditionalInfoTrailer';
|
|
401
|
+
public static readonly ADDITIONAL_INFO_UNSTRUCTURED_FIELD_NAME = 'AdditionalInfoUnstructured';
|
|
402
|
+
public static readonly ADDITIONAL_INFO_UNSTRUCTURED_FIELD_NAME_NORMALIZED =
|
|
403
|
+
'SwissQR.AdditionalInfoUnstructured';
|
|
404
|
+
public static readonly ALTERNATIVE_PROCEDURE_PARAMETER_FIELD_NAME =
|
|
405
|
+
'AlternativeProcedureParameter';
|
|
406
|
+
public static readonly ALTERNATIVE_PROCEDURE_PARAMETER_FIELD_NAME_NORMALIZED =
|
|
407
|
+
'SwissQR.AlternativeProcedureParameter';
|
|
408
|
+
public static readonly AMOUNT_FIELD_NAME = 'Amount';
|
|
409
|
+
public static readonly AMOUNT_FIELD_NAME_NORMALIZED = 'SwissQR.Amount';
|
|
410
|
+
public static readonly CURRENCY_FIELD_NAME = 'Currency';
|
|
411
|
+
public static readonly CURRENCY_FIELD_NAME_NORMALIZED = 'SwissQR.Currency';
|
|
412
|
+
public static readonly DEBTOR_ADDRESS_TYPE_FIELD_NAME = 'DebtorAddressType';
|
|
413
|
+
public static readonly DEBTOR_ADDRESS_TYPE_FIELD_NAME_NORMALIZED = 'SwissQR.DebtorAddressType';
|
|
414
|
+
public static readonly DEBTOR_BUILDING_OR_ADDRESS_LINE_2_FIELD_NAME =
|
|
415
|
+
'DebtorBuildingOrAddressLine2';
|
|
416
|
+
public static readonly DEBTOR_BUILDING_OR_ADDRESS_LINE_2_FIELD_NAME_NORMALIZED =
|
|
417
|
+
'SwissQR.DebtorBuildingOrAddressLine2';
|
|
418
|
+
public static readonly DEBTOR_COUNTRY_FIELD_NAME = 'DebtorCountry';
|
|
419
|
+
public static readonly DEBTOR_COUNTRY_FIELD_NAME_NORMALIZED = 'SwissQR.DebtorCountry';
|
|
420
|
+
public static readonly DEBTOR_NAME_FIELD_NAME = 'DebtorName';
|
|
421
|
+
public static readonly DEBTOR_NAME_FIELD_NAME_NORMALIZED = 'SwissQR.DebtorName';
|
|
422
|
+
public static readonly DEBTOR_PLACE_FIELD_NAME = 'DebtorPlace';
|
|
423
|
+
public static readonly DEBTOR_PLACE_FIELD_NAME_NORMALIZED = 'SwissQR.DebtorPlace';
|
|
424
|
+
public static readonly DEBTOR_POSTAL_CODE_FIELD_NAME = 'DebtorPostalCode';
|
|
425
|
+
public static readonly DEBTOR_POSTAL_CODE_FIELD_NAME_NORMALIZED = 'SwissQR.DebtorPostalCode';
|
|
426
|
+
public static readonly DEBTOR_STREET_OR_ADDRESS_LINE_1_FIELD_NAME = 'DebtorStreetOrAddressLine1';
|
|
427
|
+
public static readonly DEBTOR_STREET_OR_ADDRESS_LINE_1_FIELD_NAME_NORMALIZED =
|
|
428
|
+
'SwissQR.DebtorStreetOrAddressLine1';
|
|
429
|
+
public static readonly DUE_DATE_FIELD_NAME = 'DueDate';
|
|
430
|
+
public static readonly DUE_DATE_FIELD_NAME_NORMALIZED = 'SwissQR.DueDate';
|
|
431
|
+
public static readonly ENCODING_FIELD_NAME = 'Encoding';
|
|
432
|
+
public static readonly ENCODING_FIELD_NAME_NORMALIZED = 'SwissQR.Encoding';
|
|
433
|
+
public static readonly FINAL_PAYEE_ADDRESS_TYPE_FIELD_NAME = 'FinalPayeeAddressType';
|
|
434
|
+
public static readonly FINAL_PAYEE_ADDRESS_TYPE_FIELD_NAME_NORMALIZED =
|
|
435
|
+
'SwissQR.FinalPayeeAddressType';
|
|
436
|
+
public static readonly FINAL_PAYEE_BUILDING_OR_ADDRESS_LINE_2_FIELD_NAME =
|
|
437
|
+
'FinalPayeeBuildingOrAddressLine2';
|
|
438
|
+
public static readonly FINAL_PAYEE_BUILDING_OR_ADDRESS_LINE_2_FIELD_NAME_NORMALIZED =
|
|
439
|
+
'SwissQR.FinalPayeeBuildingOrAddressLine2';
|
|
440
|
+
public static readonly FINAL_PAYEE_COUNTRY_FIELD_NAME = 'FinalPayeeCountry';
|
|
441
|
+
public static readonly FINAL_PAYEE_COUNTRY_FIELD_NAME_NORMALIZED = 'SwissQR.FinalPayeeCountry';
|
|
442
|
+
public static readonly FINAL_PAYEE_NAME_FIELD_NAME = 'FinalPayeeName';
|
|
443
|
+
public static readonly FINAL_PAYEE_NAME_FIELD_NAME_NORMALIZED = 'SwissQR.FinalPayeeName';
|
|
444
|
+
public static readonly FINAL_PAYEE_PLACE_FIELD_NAME = 'FinalPayeePlace';
|
|
445
|
+
public static readonly FINAL_PAYEE_PLACE_FIELD_NAME_NORMALIZED = 'SwissQR.FinalPayeePlace';
|
|
446
|
+
public static readonly FINAL_PAYEE_POSTAL_CODE_FIELD_NAME = 'FinalPayeePostalCode';
|
|
447
|
+
public static readonly FINAL_PAYEE_POSTAL_CODE_FIELD_NAME_NORMALIZED =
|
|
448
|
+
'SwissQR.FinalPayeePostalCode';
|
|
449
|
+
public static readonly FINAL_PAYEE_STREET_OR_ADDRESS_LINE_1_FIELD_NAME =
|
|
450
|
+
'FinalPayeeStreetOrAddressLine1';
|
|
451
|
+
public static readonly FINAL_PAYEE_STREET_OR_ADDRESS_LINE_1_FIELD_NAME_NORMALIZED =
|
|
452
|
+
'SwissQR.FinalPayeeStreetOrAddressLine1';
|
|
453
|
+
public static readonly IBAN_FIELD_NAME = 'IBAN';
|
|
454
|
+
public static readonly IBAN_FIELD_NAME_NORMALIZED = 'SwissQR.IBAN';
|
|
455
|
+
public static readonly MAJOR_VERSION_FIELD_NAME = 'MajorVersion';
|
|
456
|
+
public static readonly MAJOR_VERSION_FIELD_NAME_NORMALIZED = 'SwissQR.MajorVersion';
|
|
457
|
+
public static readonly PAYEE_ADDRESS_TYPE_FIELD_NAME = 'PayeeAddressType';
|
|
458
|
+
public static readonly PAYEE_ADDRESS_TYPE_FIELD_NAME_NORMALIZED = 'SwissQR.PayeeAddressType';
|
|
459
|
+
public static readonly PAYEE_BUILDING_OR_ADDRESS_LINE_2_FIELD_NAME =
|
|
460
|
+
'PayeeBuildingOrAddressLine2';
|
|
461
|
+
public static readonly PAYEE_BUILDING_OR_ADDRESS_LINE_2_FIELD_NAME_NORMALIZED =
|
|
462
|
+
'SwissQR.PayeeBuildingOrAddressLine2';
|
|
463
|
+
public static readonly PAYEE_COUNTRY_FIELD_NAME = 'PayeeCountry';
|
|
464
|
+
public static readonly PAYEE_COUNTRY_FIELD_NAME_NORMALIZED = 'SwissQR.PayeeCountry';
|
|
465
|
+
public static readonly PAYEE_NAME_FIELD_NAME = 'PayeeName';
|
|
466
|
+
public static readonly PAYEE_NAME_FIELD_NAME_NORMALIZED = 'SwissQR.PayeeName';
|
|
467
|
+
public static readonly PAYEE_PLACE_FIELD_NAME = 'PayeePlace';
|
|
468
|
+
public static readonly PAYEE_PLACE_FIELD_NAME_NORMALIZED = 'SwissQR.PayeePlace';
|
|
469
|
+
public static readonly PAYEE_POSTAL_CODE_FIELD_NAME = 'PayeePostalCode';
|
|
470
|
+
public static readonly PAYEE_POSTAL_CODE_FIELD_NAME_NORMALIZED = 'SwissQR.PayeePostalCode';
|
|
471
|
+
public static readonly PAYEE_STREET_OR_ADDRESS_LINE_1_FIELD_NAME = 'PayeeStreetOrAddressLine1';
|
|
472
|
+
public static readonly PAYEE_STREET_OR_ADDRESS_LINE_1_FIELD_NAME_NORMALIZED =
|
|
473
|
+
'SwissQR.PayeeStreetOrAddressLine1';
|
|
474
|
+
public static readonly PAYMENT_REFERENCE_FIELD_NAME = 'PaymentReference';
|
|
475
|
+
public static readonly PAYMENT_REFERENCE_FIELD_NAME_NORMALIZED = 'SwissQR.PaymentReference';
|
|
476
|
+
public static readonly PAYMENT_REFERENCE_TYPE_FIELD_NAME = 'PaymentReferenceType';
|
|
477
|
+
public static readonly PAYMENT_REFERENCE_TYPE_FIELD_NAME_NORMALIZED =
|
|
478
|
+
'SwissQR.PaymentReferenceType';
|
|
479
|
+
|
|
369
480
|
constructor(document: GenericDocument) {
|
|
370
481
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
371
482
|
throw new Error(
|
|
@@ -377,7 +488,7 @@ export class SwissQR {
|
|
|
377
488
|
}
|
|
378
489
|
|
|
379
490
|
requiredDocumentType(): string {
|
|
380
|
-
return
|
|
491
|
+
return SwissQR.DOCUMENT_TYPE;
|
|
381
492
|
}
|
|
382
493
|
|
|
383
494
|
/** Additional Billing Information */
|
|
@@ -558,6 +669,24 @@ export class DEMedicalPlan {
|
|
|
558
669
|
return this._document;
|
|
559
670
|
}
|
|
560
671
|
|
|
672
|
+
public static readonly DOCUMENT_TYPE = 'DEMedicalPlan';
|
|
673
|
+
public static readonly CURRENT_PAGE_FIELD_NAME = 'CurrentPage';
|
|
674
|
+
public static readonly CURRENT_PAGE_FIELD_NAME_NORMALIZED = 'DEMedicalPlan.CurrentPage';
|
|
675
|
+
public static readonly DOCUMENT_VERSION_NUMBER_FIELD_NAME = 'DocumentVersionNumber';
|
|
676
|
+
public static readonly DOCUMENT_VERSION_NUMBER_FIELD_NAME_NORMALIZED =
|
|
677
|
+
'DEMedicalPlan.DocumentVersionNumber';
|
|
678
|
+
public static readonly GUID_FIELD_NAME = 'GUID';
|
|
679
|
+
public static readonly GUID_FIELD_NAME_NORMALIZED = 'DEMedicalPlan.GUID';
|
|
680
|
+
public static readonly LANGUAGE_COUNTRY_CODE_FIELD_NAME = 'LanguageCountryCode';
|
|
681
|
+
public static readonly LANGUAGE_COUNTRY_CODE_FIELD_NAME_NORMALIZED =
|
|
682
|
+
'DEMedicalPlan.LanguageCountryCode';
|
|
683
|
+
public static readonly PATCH_VERSION_NUMBER_FIELD_NAME = 'PatchVersionNumber';
|
|
684
|
+
public static readonly PATCH_VERSION_NUMBER_FIELD_NAME_NORMALIZED =
|
|
685
|
+
'DEMedicalPlan.PatchVersionNumber';
|
|
686
|
+
public static readonly TOTAL_NUMBER_OF_PAGES_FIELD_NAME = 'TotalNumberOfPages';
|
|
687
|
+
public static readonly TOTAL_NUMBER_OF_PAGES_FIELD_NAME_NORMALIZED =
|
|
688
|
+
'DEMedicalPlan.TotalNumberOfPages';
|
|
689
|
+
|
|
561
690
|
constructor(document: GenericDocument) {
|
|
562
691
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
563
692
|
throw new Error(
|
|
@@ -569,7 +698,7 @@ export class DEMedicalPlan {
|
|
|
569
698
|
}
|
|
570
699
|
|
|
571
700
|
requiredDocumentType(): string {
|
|
572
|
-
return
|
|
701
|
+
return DEMedicalPlan.DOCUMENT_TYPE;
|
|
573
702
|
}
|
|
574
703
|
|
|
575
704
|
/** Current Page */
|
|
@@ -633,6 +762,42 @@ export namespace DEMedicalPlan {
|
|
|
633
762
|
return this._document;
|
|
634
763
|
}
|
|
635
764
|
|
|
765
|
+
public static readonly DOCUMENT_TYPE = 'Patient';
|
|
766
|
+
public static readonly ALLERGIES_AND_INTOLERANCES_FIELD_NAME = 'AllergiesAndIntolerances';
|
|
767
|
+
public static readonly ALLERGIES_AND_INTOLERANCES_FIELD_NAME_NORMALIZED =
|
|
768
|
+
'DEMedicalPlan.Patient.AllergiesAndIntolerances';
|
|
769
|
+
public static readonly BIRTH_DATE_FIELD_NAME = 'BirthDate';
|
|
770
|
+
public static readonly BIRTH_DATE_FIELD_NAME_NORMALIZED = 'DEMedicalPlan.Patient.BirthDate';
|
|
771
|
+
public static readonly BREAST_FEEDING_FIELD_NAME = 'BreastFeeding';
|
|
772
|
+
public static readonly BREAST_FEEDING_FIELD_NAME_NORMALIZED =
|
|
773
|
+
'DEMedicalPlan.Patient.BreastFeeding';
|
|
774
|
+
public static readonly CREATININE_VALUE_FIELD_NAME = 'CreatinineValue';
|
|
775
|
+
public static readonly CREATININE_VALUE_FIELD_NAME_NORMALIZED =
|
|
776
|
+
'DEMedicalPlan.Patient.CreatinineValue';
|
|
777
|
+
public static readonly FIRST_NAME_FIELD_NAME = 'FirstName';
|
|
778
|
+
public static readonly FIRST_NAME_FIELD_NAME_NORMALIZED = 'DEMedicalPlan.Patient.FirstName';
|
|
779
|
+
public static readonly GENDER_FIELD_NAME = 'Gender';
|
|
780
|
+
public static readonly GENDER_FIELD_NAME_NORMALIZED = 'DEMedicalPlan.Patient.Gender';
|
|
781
|
+
public static readonly HEIGHT_FIELD_NAME = 'Height';
|
|
782
|
+
public static readonly HEIGHT_FIELD_NAME_NORMALIZED = 'DEMedicalPlan.Patient.Height';
|
|
783
|
+
public static readonly LAST_NAME_FIELD_NAME = 'LastName';
|
|
784
|
+
public static readonly LAST_NAME_FIELD_NAME_NORMALIZED = 'DEMedicalPlan.Patient.LastName';
|
|
785
|
+
public static readonly PATIENT_FREE_TEXT_FIELD_NAME = 'PatientFreeText';
|
|
786
|
+
public static readonly PATIENT_FREE_TEXT_FIELD_NAME_NORMALIZED =
|
|
787
|
+
'DEMedicalPlan.Patient.PatientFreeText';
|
|
788
|
+
public static readonly PATIENT_ID_FIELD_NAME = 'PatientID';
|
|
789
|
+
public static readonly PATIENT_ID_FIELD_NAME_NORMALIZED = 'DEMedicalPlan.Patient.PatientID';
|
|
790
|
+
public static readonly PRE_NAME_FIELD_NAME = 'PreName';
|
|
791
|
+
public static readonly PRE_NAME_FIELD_NAME_NORMALIZED = 'DEMedicalPlan.Patient.PreName';
|
|
792
|
+
public static readonly PREGNANT_FIELD_NAME = 'Pregnant';
|
|
793
|
+
public static readonly PREGNANT_FIELD_NAME_NORMALIZED = 'DEMedicalPlan.Patient.Pregnant';
|
|
794
|
+
public static readonly SUFFIX_FIELD_NAME = 'Suffix';
|
|
795
|
+
public static readonly SUFFIX_FIELD_NAME_NORMALIZED = 'DEMedicalPlan.Patient.Suffix';
|
|
796
|
+
public static readonly TITLE_FIELD_NAME = 'Title';
|
|
797
|
+
public static readonly TITLE_FIELD_NAME_NORMALIZED = 'DEMedicalPlan.Patient.Title';
|
|
798
|
+
public static readonly WEIGHT_FIELD_NAME = 'Weight';
|
|
799
|
+
public static readonly WEIGHT_FIELD_NAME_NORMALIZED = 'DEMedicalPlan.Patient.Weight';
|
|
800
|
+
|
|
636
801
|
constructor(document: GenericDocument) {
|
|
637
802
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
638
803
|
throw new Error(
|
|
@@ -644,7 +809,7 @@ export namespace DEMedicalPlan {
|
|
|
644
809
|
}
|
|
645
810
|
|
|
646
811
|
requiredDocumentType(): string {
|
|
647
|
-
return
|
|
812
|
+
return DEMedicalPlan.Patient.DOCUMENT_TYPE;
|
|
648
813
|
}
|
|
649
814
|
|
|
650
815
|
/** Allergies And Intolerances */
|
|
@@ -731,6 +896,31 @@ export namespace DEMedicalPlan {
|
|
|
731
896
|
return this._document;
|
|
732
897
|
}
|
|
733
898
|
|
|
899
|
+
public static readonly DOCUMENT_TYPE = 'Doctor';
|
|
900
|
+
public static readonly DOCTOR_NUMBER_FIELD_NAME = 'DoctorNumber';
|
|
901
|
+
public static readonly DOCTOR_NUMBER_FIELD_NAME_NORMALIZED =
|
|
902
|
+
'DEMedicalPlan.Doctor.DoctorNumber';
|
|
903
|
+
public static readonly EMAIL_FIELD_NAME = 'Email';
|
|
904
|
+
public static readonly EMAIL_FIELD_NAME_NORMALIZED = 'DEMedicalPlan.Doctor.Email';
|
|
905
|
+
public static readonly HOSPITAL_ID_FIELD_NAME = 'HospitalID';
|
|
906
|
+
public static readonly HOSPITAL_ID_FIELD_NAME_NORMALIZED = 'DEMedicalPlan.Doctor.HospitalID';
|
|
907
|
+
public static readonly ISSUER_NAME_FIELD_NAME = 'IssuerName';
|
|
908
|
+
public static readonly ISSUER_NAME_FIELD_NAME_NORMALIZED = 'DEMedicalPlan.Doctor.IssuerName';
|
|
909
|
+
public static readonly ISSUING_DATE_AND_TIME_FIELD_NAME = 'IssuingDateAndTime';
|
|
910
|
+
public static readonly ISSUING_DATE_AND_TIME_FIELD_NAME_NORMALIZED =
|
|
911
|
+
'DEMedicalPlan.Doctor.IssuingDateAndTime';
|
|
912
|
+
public static readonly PHARMACY_ID_FIELD_NAME = 'PharmacyID';
|
|
913
|
+
public static readonly PHARMACY_ID_FIELD_NAME_NORMALIZED = 'DEMedicalPlan.Doctor.PharmacyID';
|
|
914
|
+
public static readonly PLACE_FIELD_NAME = 'Place';
|
|
915
|
+
public static readonly PLACE_FIELD_NAME_NORMALIZED = 'DEMedicalPlan.Doctor.Place';
|
|
916
|
+
public static readonly POSTAL_CODE_FIELD_NAME = 'PostalCode';
|
|
917
|
+
public static readonly POSTAL_CODE_FIELD_NAME_NORMALIZED = 'DEMedicalPlan.Doctor.PostalCode';
|
|
918
|
+
public static readonly STREET_FIELD_NAME = 'Street';
|
|
919
|
+
public static readonly STREET_FIELD_NAME_NORMALIZED = 'DEMedicalPlan.Doctor.Street';
|
|
920
|
+
public static readonly TELEPHONE_NUMBER_FIELD_NAME = 'TelephoneNumber';
|
|
921
|
+
public static readonly TELEPHONE_NUMBER_FIELD_NAME_NORMALIZED =
|
|
922
|
+
'DEMedicalPlan.Doctor.TelephoneNumber';
|
|
923
|
+
|
|
734
924
|
constructor(document: GenericDocument) {
|
|
735
925
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
736
926
|
throw new Error(
|
|
@@ -742,7 +932,7 @@ export namespace DEMedicalPlan {
|
|
|
742
932
|
}
|
|
743
933
|
|
|
744
934
|
requiredDocumentType(): string {
|
|
745
|
-
return
|
|
935
|
+
return DEMedicalPlan.Doctor.DOCUMENT_TYPE;
|
|
746
936
|
}
|
|
747
937
|
|
|
748
938
|
/** Doctor Number */
|
|
@@ -804,6 +994,16 @@ export namespace DEMedicalPlan {
|
|
|
804
994
|
return this._document;
|
|
805
995
|
}
|
|
806
996
|
|
|
997
|
+
public static readonly DOCUMENT_TYPE = 'Subheading';
|
|
998
|
+
public static readonly GENERAL_NOTE_FIELD_NAME = 'GeneralNote';
|
|
999
|
+
public static readonly GENERAL_NOTE_FIELD_NAME_NORMALIZED =
|
|
1000
|
+
'DEMedicalPlan.Subheading.GeneralNote';
|
|
1001
|
+
public static readonly KEY_WORDS_FIELD_NAME = 'KeyWords';
|
|
1002
|
+
public static readonly KEY_WORDS_FIELD_NAME_NORMALIZED = 'DEMedicalPlan.Subheading.KeyWords';
|
|
1003
|
+
public static readonly SUBHEADING_FREE_TEXT_FIELD_NAME = 'SubheadingFreeText';
|
|
1004
|
+
public static readonly SUBHEADING_FREE_TEXT_FIELD_NAME_NORMALIZED =
|
|
1005
|
+
'DEMedicalPlan.Subheading.SubheadingFreeText';
|
|
1006
|
+
|
|
807
1007
|
constructor(document: GenericDocument) {
|
|
808
1008
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
809
1009
|
throw new Error(
|
|
@@ -815,7 +1015,7 @@ export namespace DEMedicalPlan {
|
|
|
815
1015
|
}
|
|
816
1016
|
|
|
817
1017
|
requiredDocumentType(): string {
|
|
818
|
-
return
|
|
1018
|
+
return DEMedicalPlan.Subheading.DOCUMENT_TYPE;
|
|
819
1019
|
}
|
|
820
1020
|
|
|
821
1021
|
/** General Note */
|
|
@@ -857,6 +1057,50 @@ export namespace DEMedicalPlan {
|
|
|
857
1057
|
return this._document;
|
|
858
1058
|
}
|
|
859
1059
|
|
|
1060
|
+
public static readonly DOCUMENT_TYPE = 'Medicine';
|
|
1061
|
+
public static readonly DOSAGE_FORM_FIELD_NAME = 'DosageForm';
|
|
1062
|
+
public static readonly DOSAGE_FORM_FIELD_NAME_NORMALIZED =
|
|
1063
|
+
'DEMedicalPlan.Subheading.Medicine.DosageForm';
|
|
1064
|
+
public static readonly DOSAGE_FORM_FREE_TEXT_FIELD_NAME = 'DosageFormFreeText';
|
|
1065
|
+
public static readonly DOSAGE_FORM_FREE_TEXT_FIELD_NAME_NORMALIZED =
|
|
1066
|
+
'DEMedicalPlan.Subheading.Medicine.DosageFormFreeText';
|
|
1067
|
+
public static readonly DOSAGE_FREE_TEXT_FIELD_NAME = 'DosageFreeText';
|
|
1068
|
+
public static readonly DOSAGE_FREE_TEXT_FIELD_NAME_NORMALIZED =
|
|
1069
|
+
'DEMedicalPlan.Subheading.Medicine.DosageFreeText';
|
|
1070
|
+
public static readonly DOSING_UNIT_FIELD_NAME = 'DosingUnit';
|
|
1071
|
+
public static readonly DOSING_UNIT_FIELD_NAME_NORMALIZED =
|
|
1072
|
+
'DEMedicalPlan.Subheading.Medicine.DosingUnit';
|
|
1073
|
+
public static readonly DOSING_UNIT_FREE_TEXT_FIELD_NAME = 'DosingUnitFreeText';
|
|
1074
|
+
public static readonly DOSING_UNIT_FREE_TEXT_FIELD_NAME_NORMALIZED =
|
|
1075
|
+
'DEMedicalPlan.Subheading.Medicine.DosingUnitFreeText';
|
|
1076
|
+
public static readonly DRUG_NAME_FIELD_NAME = 'DrugName';
|
|
1077
|
+
public static readonly DRUG_NAME_FIELD_NAME_NORMALIZED =
|
|
1078
|
+
'DEMedicalPlan.Subheading.Medicine.DrugName';
|
|
1079
|
+
public static readonly EVENING_FIELD_NAME = 'Evening';
|
|
1080
|
+
public static readonly EVENING_FIELD_NAME_NORMALIZED =
|
|
1081
|
+
'DEMedicalPlan.Subheading.Medicine.Evening';
|
|
1082
|
+
public static readonly GENERAL_NOTES_FIELD_NAME = 'GeneralNotes';
|
|
1083
|
+
public static readonly GENERAL_NOTES_FIELD_NAME_NORMALIZED =
|
|
1084
|
+
'DEMedicalPlan.Subheading.Medicine.GeneralNotes';
|
|
1085
|
+
public static readonly MIDDAY_FIELD_NAME = 'Midday';
|
|
1086
|
+
public static readonly MIDDAY_FIELD_NAME_NORMALIZED =
|
|
1087
|
+
'DEMedicalPlan.Subheading.Medicine.Midday';
|
|
1088
|
+
public static readonly MORNING_FIELD_NAME = 'Morning';
|
|
1089
|
+
public static readonly MORNING_FIELD_NAME_NORMALIZED =
|
|
1090
|
+
'DEMedicalPlan.Subheading.Medicine.Morning';
|
|
1091
|
+
public static readonly NIGHT_FIELD_NAME = 'Night';
|
|
1092
|
+
public static readonly NIGHT_FIELD_NAME_NORMALIZED =
|
|
1093
|
+
'DEMedicalPlan.Subheading.Medicine.Night';
|
|
1094
|
+
public static readonly PHARMACEUTICAL_NUMBER_FIELD_NAME = 'PharmaceuticalNumber';
|
|
1095
|
+
public static readonly PHARMACEUTICAL_NUMBER_FIELD_NAME_NORMALIZED =
|
|
1096
|
+
'DEMedicalPlan.Subheading.Medicine.PharmaceuticalNumber';
|
|
1097
|
+
public static readonly REASON_FOR_TREATMENT_FIELD_NAME = 'ReasonForTreatment';
|
|
1098
|
+
public static readonly REASON_FOR_TREATMENT_FIELD_NAME_NORMALIZED =
|
|
1099
|
+
'DEMedicalPlan.Subheading.Medicine.ReasonForTreatment';
|
|
1100
|
+
public static readonly RELEVANT_INFO_FIELD_NAME = 'RelevantInfo';
|
|
1101
|
+
public static readonly RELEVANT_INFO_FIELD_NAME_NORMALIZED =
|
|
1102
|
+
'DEMedicalPlan.Subheading.Medicine.RelevantInfo';
|
|
1103
|
+
|
|
860
1104
|
constructor(document: GenericDocument) {
|
|
861
1105
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
862
1106
|
throw new Error(
|
|
@@ -868,7 +1112,7 @@ export namespace DEMedicalPlan {
|
|
|
868
1112
|
}
|
|
869
1113
|
|
|
870
1114
|
requiredDocumentType(): string {
|
|
871
|
-
return
|
|
1115
|
+
return DEMedicalPlan.Subheading.Medicine.DOCUMENT_TYPE;
|
|
872
1116
|
}
|
|
873
1117
|
|
|
874
1118
|
/** Dosage Form */
|
|
@@ -958,6 +1202,14 @@ export namespace DEMedicalPlan {
|
|
|
958
1202
|
return this._document;
|
|
959
1203
|
}
|
|
960
1204
|
|
|
1205
|
+
public static readonly DOCUMENT_TYPE = 'Substance';
|
|
1206
|
+
public static readonly ACTIVE_SUBSTANCE_FIELD_NAME = 'ActiveSubstance';
|
|
1207
|
+
public static readonly ACTIVE_SUBSTANCE_FIELD_NAME_NORMALIZED =
|
|
1208
|
+
'DEMedicalPlan.Subheading.Medicine.Substance.ActiveSubstance';
|
|
1209
|
+
public static readonly POTENCY_FIELD_NAME = 'Potency';
|
|
1210
|
+
public static readonly POTENCY_FIELD_NAME_NORMALIZED =
|
|
1211
|
+
'DEMedicalPlan.Subheading.Medicine.Substance.Potency';
|
|
1212
|
+
|
|
961
1213
|
constructor(document: GenericDocument) {
|
|
962
1214
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
963
1215
|
throw new Error(
|
|
@@ -969,7 +1221,7 @@ export namespace DEMedicalPlan {
|
|
|
969
1221
|
}
|
|
970
1222
|
|
|
971
1223
|
requiredDocumentType(): string {
|
|
972
|
-
return
|
|
1224
|
+
return DEMedicalPlan.Subheading.Medicine.Substance.DOCUMENT_TYPE;
|
|
973
1225
|
}
|
|
974
1226
|
|
|
975
1227
|
/** Active Substance */
|
|
@@ -992,6 +1244,14 @@ export namespace DEMedicalPlan {
|
|
|
992
1244
|
return this._document;
|
|
993
1245
|
}
|
|
994
1246
|
|
|
1247
|
+
public static readonly DOCUMENT_TYPE = 'Prescription';
|
|
1248
|
+
public static readonly GENERAL_INFORMATION_FIELD_NAME = 'GeneralInformation';
|
|
1249
|
+
public static readonly GENERAL_INFORMATION_FIELD_NAME_NORMALIZED =
|
|
1250
|
+
'DEMedicalPlan.Subheading.Prescription.GeneralInformation';
|
|
1251
|
+
public static readonly PRESCRIPTION_FREE_TEXT_FIELD_NAME = 'PrescriptionFreeText';
|
|
1252
|
+
public static readonly PRESCRIPTION_FREE_TEXT_FIELD_NAME_NORMALIZED =
|
|
1253
|
+
'DEMedicalPlan.Subheading.Prescription.PrescriptionFreeText';
|
|
1254
|
+
|
|
995
1255
|
constructor(document: GenericDocument) {
|
|
996
1256
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
997
1257
|
throw new Error(
|
|
@@ -1003,7 +1263,7 @@ export namespace DEMedicalPlan {
|
|
|
1003
1263
|
}
|
|
1004
1264
|
|
|
1005
1265
|
requiredDocumentType(): string {
|
|
1006
|
-
return
|
|
1266
|
+
return DEMedicalPlan.Subheading.Prescription.DOCUMENT_TYPE;
|
|
1007
1267
|
}
|
|
1008
1268
|
|
|
1009
1269
|
/** General Information */
|
|
@@ -1027,6 +1287,22 @@ export class IDCardPDF417 {
|
|
|
1027
1287
|
return this._document;
|
|
1028
1288
|
}
|
|
1029
1289
|
|
|
1290
|
+
public static readonly DOCUMENT_TYPE = 'IDCardPDF417';
|
|
1291
|
+
public static readonly BIRTH_DATE_FIELD_NAME = 'BirthDate';
|
|
1292
|
+
public static readonly BIRTH_DATE_FIELD_NAME_NORMALIZED = 'IDCardPDF417.BirthDate';
|
|
1293
|
+
public static readonly DATE_EXPIRED_FIELD_NAME = 'DateExpired';
|
|
1294
|
+
public static readonly DATE_EXPIRED_FIELD_NAME_NORMALIZED = 'IDCardPDF417.DateExpired';
|
|
1295
|
+
public static readonly DATE_ISSUED_FIELD_NAME = 'DateIssued';
|
|
1296
|
+
public static readonly DATE_ISSUED_FIELD_NAME_NORMALIZED = 'IDCardPDF417.DateIssued';
|
|
1297
|
+
public static readonly DOCUMENT_CODE_FIELD_NAME = 'DocumentCode';
|
|
1298
|
+
public static readonly DOCUMENT_CODE_FIELD_NAME_NORMALIZED = 'IDCardPDF417.DocumentCode';
|
|
1299
|
+
public static readonly FIRST_NAME_FIELD_NAME = 'FirstName';
|
|
1300
|
+
public static readonly FIRST_NAME_FIELD_NAME_NORMALIZED = 'IDCardPDF417.FirstName';
|
|
1301
|
+
public static readonly LAST_NAME_FIELD_NAME = 'LastName';
|
|
1302
|
+
public static readonly LAST_NAME_FIELD_NAME_NORMALIZED = 'IDCardPDF417.LastName';
|
|
1303
|
+
public static readonly OPTIONAL_FIELD_NAME = 'Optional';
|
|
1304
|
+
public static readonly OPTIONAL_FIELD_NAME_NORMALIZED = 'IDCardPDF417.Optional';
|
|
1305
|
+
|
|
1030
1306
|
constructor(document: GenericDocument) {
|
|
1031
1307
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
1032
1308
|
throw new Error(
|
|
@@ -1038,7 +1314,7 @@ export class IDCardPDF417 {
|
|
|
1038
1314
|
}
|
|
1039
1315
|
|
|
1040
1316
|
requiredDocumentType(): string {
|
|
1041
|
-
return
|
|
1317
|
+
return IDCardPDF417.DOCUMENT_TYPE;
|
|
1042
1318
|
}
|
|
1043
1319
|
|
|
1044
1320
|
/** Birth Date. The format is ISO8601 with delimiters */
|
|
@@ -1085,6 +1361,8 @@ export class GS1 {
|
|
|
1085
1361
|
return this._document;
|
|
1086
1362
|
}
|
|
1087
1363
|
|
|
1364
|
+
public static readonly DOCUMENT_TYPE = 'GS1';
|
|
1365
|
+
|
|
1088
1366
|
constructor(document: GenericDocument) {
|
|
1089
1367
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
1090
1368
|
throw new Error(
|
|
@@ -1096,7 +1374,7 @@ export class GS1 {
|
|
|
1096
1374
|
}
|
|
1097
1375
|
|
|
1098
1376
|
requiredDocumentType(): string {
|
|
1099
|
-
return
|
|
1377
|
+
return GS1.DOCUMENT_TYPE;
|
|
1100
1378
|
}
|
|
1101
1379
|
|
|
1102
1380
|
/** An array of all children of type "Element". */
|
|
@@ -1116,6 +1394,18 @@ export namespace GS1 {
|
|
|
1116
1394
|
return this._document;
|
|
1117
1395
|
}
|
|
1118
1396
|
|
|
1397
|
+
public static readonly DOCUMENT_TYPE = 'Element';
|
|
1398
|
+
public static readonly APPLICATION_IDENTIFIER_FIELD_NAME = 'ApplicationIdentifier';
|
|
1399
|
+
public static readonly APPLICATION_IDENTIFIER_FIELD_NAME_NORMALIZED =
|
|
1400
|
+
'GS1.Element.ApplicationIdentifier';
|
|
1401
|
+
public static readonly DATA_TITLE_FIELD_NAME = 'DataTitle';
|
|
1402
|
+
public static readonly DATA_TITLE_FIELD_NAME_NORMALIZED = 'GS1.Element.DataTitle';
|
|
1403
|
+
public static readonly ELEMENT_DESCRIPTION_FIELD_NAME = 'ElementDescription';
|
|
1404
|
+
public static readonly ELEMENT_DESCRIPTION_FIELD_NAME_NORMALIZED =
|
|
1405
|
+
'GS1.Element.ElementDescription';
|
|
1406
|
+
public static readonly RAW_VALUE_FIELD_NAME = 'RawValue';
|
|
1407
|
+
public static readonly RAW_VALUE_FIELD_NAME_NORMALIZED = 'GS1.Element.RawValue';
|
|
1408
|
+
|
|
1119
1409
|
constructor(document: GenericDocument) {
|
|
1120
1410
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
1121
1411
|
throw new Error(
|
|
@@ -1127,7 +1417,7 @@ export namespace GS1 {
|
|
|
1127
1417
|
}
|
|
1128
1418
|
|
|
1129
1419
|
requiredDocumentType(): string {
|
|
1130
|
-
return
|
|
1420
|
+
return GS1.Element.DOCUMENT_TYPE;
|
|
1131
1421
|
}
|
|
1132
1422
|
|
|
1133
1423
|
/** Application Identifier */
|
|
@@ -1169,6 +1459,12 @@ export namespace GS1 {
|
|
|
1169
1459
|
return this._document;
|
|
1170
1460
|
}
|
|
1171
1461
|
|
|
1462
|
+
public static readonly DOCUMENT_TYPE = 'ValidationError';
|
|
1463
|
+
public static readonly CODE_FIELD_NAME = 'Code';
|
|
1464
|
+
public static readonly CODE_FIELD_NAME_NORMALIZED = 'GS1.Element.ValidationError.Code';
|
|
1465
|
+
public static readonly REASON_FIELD_NAME = 'Reason';
|
|
1466
|
+
public static readonly REASON_FIELD_NAME_NORMALIZED = 'GS1.Element.ValidationError.Reason';
|
|
1467
|
+
|
|
1172
1468
|
constructor(document: GenericDocument) {
|
|
1173
1469
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
1174
1470
|
throw new Error(
|
|
@@ -1180,7 +1476,7 @@ export namespace GS1 {
|
|
|
1180
1476
|
}
|
|
1181
1477
|
|
|
1182
1478
|
requiredDocumentType(): string {
|
|
1183
|
-
return
|
|
1479
|
+
return GS1.Element.ValidationError.DOCUMENT_TYPE;
|
|
1184
1480
|
}
|
|
1185
1481
|
|
|
1186
1482
|
/** Error Code */
|
|
@@ -1204,6 +1500,30 @@ export class SEPA {
|
|
|
1204
1500
|
return this._document;
|
|
1205
1501
|
}
|
|
1206
1502
|
|
|
1503
|
+
public static readonly DOCUMENT_TYPE = 'SEPA';
|
|
1504
|
+
public static readonly AMOUNT_FIELD_NAME = 'Amount';
|
|
1505
|
+
public static readonly AMOUNT_FIELD_NAME_NORMALIZED = 'SEPA.Amount';
|
|
1506
|
+
public static readonly CHARACTER_SET_FIELD_NAME = 'CharacterSet';
|
|
1507
|
+
public static readonly CHARACTER_SET_FIELD_NAME_NORMALIZED = 'SEPA.CharacterSet';
|
|
1508
|
+
public static readonly IDENTIFICATION_FIELD_NAME = 'Identification';
|
|
1509
|
+
public static readonly IDENTIFICATION_FIELD_NAME_NORMALIZED = 'SEPA.Identification';
|
|
1510
|
+
public static readonly INFORMATION_FIELD_NAME = 'Information';
|
|
1511
|
+
public static readonly INFORMATION_FIELD_NAME_NORMALIZED = 'SEPA.Information';
|
|
1512
|
+
public static readonly PURPOSE_FIELD_NAME = 'Purpose';
|
|
1513
|
+
public static readonly PURPOSE_FIELD_NAME_NORMALIZED = 'SEPA.Purpose';
|
|
1514
|
+
public static readonly RECEIVER_BIC_FIELD_NAME = 'ReceiverBIC';
|
|
1515
|
+
public static readonly RECEIVER_BIC_FIELD_NAME_NORMALIZED = 'SEPA.ReceiverBIC';
|
|
1516
|
+
public static readonly RECEIVER_IBAN_FIELD_NAME = 'ReceiverIBAN';
|
|
1517
|
+
public static readonly RECEIVER_IBAN_FIELD_NAME_NORMALIZED = 'SEPA.ReceiverIBAN';
|
|
1518
|
+
public static readonly RECEIVER_NAME_FIELD_NAME = 'ReceiverName';
|
|
1519
|
+
public static readonly RECEIVER_NAME_FIELD_NAME_NORMALIZED = 'SEPA.ReceiverName';
|
|
1520
|
+
public static readonly REMITTANCE_FIELD_NAME = 'Remittance';
|
|
1521
|
+
public static readonly REMITTANCE_FIELD_NAME_NORMALIZED = 'SEPA.Remittance';
|
|
1522
|
+
public static readonly SERVICE_TAG_FIELD_NAME = 'ServiceTag';
|
|
1523
|
+
public static readonly SERVICE_TAG_FIELD_NAME_NORMALIZED = 'SEPA.ServiceTag';
|
|
1524
|
+
public static readonly VERSION_FIELD_NAME = 'Version';
|
|
1525
|
+
public static readonly VERSION_FIELD_NAME_NORMALIZED = 'SEPA.Version';
|
|
1526
|
+
|
|
1207
1527
|
constructor(document: GenericDocument) {
|
|
1208
1528
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
1209
1529
|
throw new Error(
|
|
@@ -1215,7 +1535,7 @@ export class SEPA {
|
|
|
1215
1535
|
}
|
|
1216
1536
|
|
|
1217
1537
|
requiredDocumentType(): string {
|
|
1218
|
-
return
|
|
1538
|
+
return SEPA.DOCUMENT_TYPE;
|
|
1219
1539
|
}
|
|
1220
1540
|
|
|
1221
1541
|
/** Amount */
|
|
@@ -1282,6 +1602,61 @@ export class MedicalCertificate {
|
|
|
1282
1602
|
return this._document;
|
|
1283
1603
|
}
|
|
1284
1604
|
|
|
1605
|
+
public static readonly DOCUMENT_TYPE = 'MedicalCertificate';
|
|
1606
|
+
public static readonly ACCIDENT_FIELD_NAME = 'Accident';
|
|
1607
|
+
public static readonly ACCIDENT_FIELD_NAME_NORMALIZED = 'MedicalCertificate.Accident';
|
|
1608
|
+
public static readonly ASSIGNED_TO_ACCIDENT_INSURANCE_DOCTOR_FIELD_NAME =
|
|
1609
|
+
'AssignedToAccidentInsuranceDoctor';
|
|
1610
|
+
public static readonly ASSIGNED_TO_ACCIDENT_INSURANCE_DOCTOR_FIELD_NAME_NORMALIZED =
|
|
1611
|
+
'MedicalCertificate.AssignedToAccidentInsuranceDoctor';
|
|
1612
|
+
public static readonly BIRTH_DATE_FIELD_NAME = 'BirthDate';
|
|
1613
|
+
public static readonly BIRTH_DATE_FIELD_NAME_NORMALIZED = 'MedicalCertificate.BirthDate';
|
|
1614
|
+
public static readonly CHILD_NEEDS_CARE_FROM_FIELD_NAME = 'ChildNeedsCareFrom';
|
|
1615
|
+
public static readonly CHILD_NEEDS_CARE_FROM_FIELD_NAME_NORMALIZED =
|
|
1616
|
+
'MedicalCertificate.ChildNeedsCareFrom';
|
|
1617
|
+
public static readonly CHILD_NEEDS_CARE_UNTIL_FIELD_NAME = 'ChildNeedsCareUntil';
|
|
1618
|
+
public static readonly CHILD_NEEDS_CARE_UNTIL_FIELD_NAME_NORMALIZED =
|
|
1619
|
+
'MedicalCertificate.ChildNeedsCareUntil';
|
|
1620
|
+
public static readonly DIAGNOSE_FIELD_NAME = 'Diagnose';
|
|
1621
|
+
public static readonly DIAGNOSE_FIELD_NAME_NORMALIZED = 'MedicalCertificate.Diagnose';
|
|
1622
|
+
public static readonly DIAGNOSED_ON_FIELD_NAME = 'DiagnosedOn';
|
|
1623
|
+
public static readonly DIAGNOSED_ON_FIELD_NAME_NORMALIZED = 'MedicalCertificate.DiagnosedOn';
|
|
1624
|
+
public static readonly DOCTOR_NUMBER_FIELD_NAME = 'DoctorNumber';
|
|
1625
|
+
public static readonly DOCTOR_NUMBER_FIELD_NAME_NORMALIZED = 'MedicalCertificate.DoctorNumber';
|
|
1626
|
+
public static readonly DOCUMENT_DATE_FIELD_NAME = 'DocumentDate';
|
|
1627
|
+
public static readonly DOCUMENT_DATE_FIELD_NAME_NORMALIZED = 'MedicalCertificate.DocumentDate';
|
|
1628
|
+
public static readonly FIRST_NAME_FIELD_NAME = 'FirstName';
|
|
1629
|
+
public static readonly FIRST_NAME_FIELD_NAME_NORMALIZED = 'MedicalCertificate.FirstName';
|
|
1630
|
+
public static readonly HEALTH_INSURANCE_NUMBER_FIELD_NAME = 'HealthInsuranceNumber';
|
|
1631
|
+
public static readonly HEALTH_INSURANCE_NUMBER_FIELD_NAME_NORMALIZED =
|
|
1632
|
+
'MedicalCertificate.HealthInsuranceNumber';
|
|
1633
|
+
public static readonly INCAPABLE_OF_WORK_SINCE_FIELD_NAME = 'IncapableOfWorkSince';
|
|
1634
|
+
public static readonly INCAPABLE_OF_WORK_SINCE_FIELD_NAME_NORMALIZED =
|
|
1635
|
+
'MedicalCertificate.IncapableOfWorkSince';
|
|
1636
|
+
public static readonly INCAPABLE_OF_WORK_UNTIL_FIELD_NAME = 'IncapableOfWorkUntil';
|
|
1637
|
+
public static readonly INCAPABLE_OF_WORK_UNTIL_FIELD_NAME_NORMALIZED =
|
|
1638
|
+
'MedicalCertificate.IncapableOfWorkUntil';
|
|
1639
|
+
public static readonly INITIAL_CERTIFICATE_FIELD_NAME = 'InitialCertificate';
|
|
1640
|
+
public static readonly INITIAL_CERTIFICATE_FIELD_NAME_NORMALIZED =
|
|
1641
|
+
'MedicalCertificate.InitialCertificate';
|
|
1642
|
+
public static readonly INSURED_PERSON_NUMBER_FIELD_NAME = 'InsuredPersonNumber';
|
|
1643
|
+
public static readonly INSURED_PERSON_NUMBER_FIELD_NAME_NORMALIZED =
|
|
1644
|
+
'MedicalCertificate.InsuredPersonNumber';
|
|
1645
|
+
public static readonly LAST_NAME_FIELD_NAME = 'LastName';
|
|
1646
|
+
public static readonly LAST_NAME_FIELD_NAME_NORMALIZED = 'MedicalCertificate.LastName';
|
|
1647
|
+
public static readonly PLACE_OF_OPERATION_NUMBER_FIELD_NAME = 'PlaceOfOperationNumber';
|
|
1648
|
+
public static readonly PLACE_OF_OPERATION_NUMBER_FIELD_NAME_NORMALIZED =
|
|
1649
|
+
'MedicalCertificate.PlaceOfOperationNumber';
|
|
1650
|
+
public static readonly RENEWED_CERTIFICATE_FIELD_NAME = 'RenewedCertificate';
|
|
1651
|
+
public static readonly RENEWED_CERTIFICATE_FIELD_NAME_NORMALIZED =
|
|
1652
|
+
'MedicalCertificate.RenewedCertificate';
|
|
1653
|
+
public static readonly REQUIRES_CARE_FIELD_NAME = 'RequiresCare';
|
|
1654
|
+
public static readonly REQUIRES_CARE_FIELD_NAME_NORMALIZED = 'MedicalCertificate.RequiresCare';
|
|
1655
|
+
public static readonly STATUS_FIELD_NAME = 'Status';
|
|
1656
|
+
public static readonly STATUS_FIELD_NAME_NORMALIZED = 'MedicalCertificate.Status';
|
|
1657
|
+
public static readonly WORK_ACCIDENT_FIELD_NAME = 'WorkAccident';
|
|
1658
|
+
public static readonly WORK_ACCIDENT_FIELD_NAME_NORMALIZED = 'MedicalCertificate.WorkAccident';
|
|
1659
|
+
|
|
1285
1660
|
constructor(document: GenericDocument) {
|
|
1286
1661
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
1287
1662
|
throw new Error(
|
|
@@ -1293,7 +1668,7 @@ export class MedicalCertificate {
|
|
|
1293
1668
|
}
|
|
1294
1669
|
|
|
1295
1670
|
requiredDocumentType(): string {
|
|
1296
|
-
return
|
|
1671
|
+
return MedicalCertificate.DOCUMENT_TYPE;
|
|
1297
1672
|
}
|
|
1298
1673
|
|
|
1299
1674
|
/** Accident */
|
|
@@ -1412,6 +1787,8 @@ export class VCard {
|
|
|
1412
1787
|
return this._document;
|
|
1413
1788
|
}
|
|
1414
1789
|
|
|
1790
|
+
public static readonly DOCUMENT_TYPE = 'VCard';
|
|
1791
|
+
|
|
1415
1792
|
constructor(document: GenericDocument) {
|
|
1416
1793
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
1417
1794
|
throw new Error(
|
|
@@ -1423,7 +1800,7 @@ export class VCard {
|
|
|
1423
1800
|
}
|
|
1424
1801
|
|
|
1425
1802
|
requiredDocumentType(): string {
|
|
1426
|
-
return
|
|
1803
|
+
return VCard.DOCUMENT_TYPE;
|
|
1427
1804
|
}
|
|
1428
1805
|
|
|
1429
1806
|
/** The child document of type "Version". */
|
|
@@ -1535,11 +1912,11 @@ export class VCard {
|
|
|
1535
1912
|
.map((c: GenericDocument) => new VCard.IMPP(c));
|
|
1536
1913
|
}
|
|
1537
1914
|
|
|
1538
|
-
/** An array of all children of type "
|
|
1539
|
-
get
|
|
1915
|
+
/** An array of all children of type "Language". */
|
|
1916
|
+
get languages(): VCard.Language[] {
|
|
1540
1917
|
return this.document.children
|
|
1541
|
-
.filter((c: GenericDocument) => c.type.name === '
|
|
1542
|
-
.map((c: GenericDocument) => new VCard.
|
|
1918
|
+
.filter((c: GenericDocument) => c.type.name === 'Language')
|
|
1919
|
+
.map((c: GenericDocument) => new VCard.Language(c));
|
|
1543
1920
|
}
|
|
1544
1921
|
|
|
1545
1922
|
/** An array of all children of type "TimeZone". */
|
|
@@ -1605,11 +1982,11 @@ export class VCard {
|
|
|
1605
1982
|
.map((c: GenericDocument) => new VCard.Related(c));
|
|
1606
1983
|
}
|
|
1607
1984
|
|
|
1608
|
-
/** An array of all children of type "
|
|
1609
|
-
get
|
|
1985
|
+
/** An array of all children of type "Category". */
|
|
1986
|
+
get categories(): VCard.Category[] {
|
|
1610
1987
|
return this.document.children
|
|
1611
|
-
.filter((c: GenericDocument) => c.type.name === '
|
|
1612
|
-
.map((c: GenericDocument) => new VCard.
|
|
1988
|
+
.filter((c: GenericDocument) => c.type.name === 'Category')
|
|
1989
|
+
.map((c: GenericDocument) => new VCard.Category(c));
|
|
1613
1990
|
}
|
|
1614
1991
|
|
|
1615
1992
|
/** An array of all children of type "Note". */
|
|
@@ -1666,7 +2043,7 @@ export class VCard {
|
|
|
1666
2043
|
}
|
|
1667
2044
|
|
|
1668
2045
|
/** An array of all children of type "BusyTimeURL". */
|
|
1669
|
-
get
|
|
2046
|
+
get busyTimeURLs(): VCard.BusyTimeURL[] {
|
|
1670
2047
|
return this.document.children
|
|
1671
2048
|
.filter((c: GenericDocument) => c.type.name === 'BusyTimeURL')
|
|
1672
2049
|
.map((c: GenericDocument) => new VCard.BusyTimeURL(c));
|
|
@@ -1680,7 +2057,7 @@ export class VCard {
|
|
|
1680
2057
|
}
|
|
1681
2058
|
|
|
1682
2059
|
/** An array of all children of type "CalendarURI". */
|
|
1683
|
-
get
|
|
2060
|
+
get calendarURIs(): VCard.CalendarURI[] {
|
|
1684
2061
|
return this.document.children
|
|
1685
2062
|
.filter((c: GenericDocument) => c.type.name === 'CalendarURI')
|
|
1686
2063
|
.map((c: GenericDocument) => new VCard.CalendarURI(c));
|
|
@@ -1717,6 +2094,13 @@ export namespace VCard {
|
|
|
1717
2094
|
return this._document;
|
|
1718
2095
|
}
|
|
1719
2096
|
|
|
2097
|
+
public static readonly RAW_VALUE_FIELD_NAME = 'RawValue';
|
|
2098
|
+
public static readonly RAW_VALUE_FIELD_NAME_NORMALIZED = 'VCard.Entry.RawValue';
|
|
2099
|
+
public static readonly TYPE_MODIFIER_FIELD_NAME = 'TypeModifier';
|
|
2100
|
+
public static readonly TYPE_MODIFIER_FIELD_NAME_NORMALIZED = 'VCard.Entry.TypeModifier';
|
|
2101
|
+
public static readonly VALUE_FIELD_NAME = 'Value';
|
|
2102
|
+
public static readonly VALUE_FIELD_NAME_NORMALIZED = 'VCard.Entry.Value';
|
|
2103
|
+
|
|
1720
2104
|
constructor(document: GenericDocument) {
|
|
1721
2105
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
1722
2106
|
throw new Error(
|
|
@@ -1747,456 +2131,714 @@ export namespace VCard {
|
|
|
1747
2131
|
|
|
1748
2132
|
/** Version */
|
|
1749
2133
|
export class Version extends Entry {
|
|
2134
|
+
public static readonly DOCUMENT_TYPE = 'Version';
|
|
2135
|
+
|
|
1750
2136
|
constructor(document: GenericDocument) {
|
|
1751
2137
|
super(document);
|
|
1752
2138
|
}
|
|
1753
2139
|
|
|
1754
2140
|
requiredDocumentType(): string {
|
|
1755
|
-
return
|
|
2141
|
+
return VCard.Version.DOCUMENT_TYPE;
|
|
1756
2142
|
}
|
|
1757
2143
|
}
|
|
1758
2144
|
|
|
1759
2145
|
/** Source */
|
|
1760
2146
|
export class Source extends Entry {
|
|
2147
|
+
public static readonly DOCUMENT_TYPE = 'Source';
|
|
2148
|
+
|
|
1761
2149
|
constructor(document: GenericDocument) {
|
|
1762
2150
|
super(document);
|
|
1763
2151
|
}
|
|
1764
2152
|
|
|
1765
2153
|
requiredDocumentType(): string {
|
|
1766
|
-
return
|
|
2154
|
+
return VCard.Source.DOCUMENT_TYPE;
|
|
1767
2155
|
}
|
|
1768
2156
|
}
|
|
1769
2157
|
|
|
1770
2158
|
/** Kind */
|
|
1771
2159
|
export class Kind extends Entry {
|
|
2160
|
+
public static readonly DOCUMENT_TYPE = 'Kind';
|
|
2161
|
+
|
|
1772
2162
|
constructor(document: GenericDocument) {
|
|
1773
2163
|
super(document);
|
|
1774
2164
|
}
|
|
1775
2165
|
|
|
1776
2166
|
requiredDocumentType(): string {
|
|
1777
|
-
return
|
|
2167
|
+
return VCard.Kind.DOCUMENT_TYPE;
|
|
1778
2168
|
}
|
|
1779
2169
|
}
|
|
1780
2170
|
|
|
1781
2171
|
/** XML */
|
|
1782
2172
|
export class XML extends Entry {
|
|
2173
|
+
public static readonly DOCUMENT_TYPE = 'XML';
|
|
2174
|
+
|
|
1783
2175
|
constructor(document: GenericDocument) {
|
|
1784
2176
|
super(document);
|
|
1785
2177
|
}
|
|
1786
2178
|
|
|
1787
2179
|
requiredDocumentType(): string {
|
|
1788
|
-
return
|
|
2180
|
+
return VCard.XML.DOCUMENT_TYPE;
|
|
1789
2181
|
}
|
|
1790
2182
|
}
|
|
1791
2183
|
|
|
1792
2184
|
/** Name */
|
|
1793
2185
|
export class Name extends Entry {
|
|
2186
|
+
public static readonly DOCUMENT_TYPE = 'Name';
|
|
2187
|
+
|
|
1794
2188
|
constructor(document: GenericDocument) {
|
|
1795
2189
|
super(document);
|
|
1796
2190
|
}
|
|
1797
2191
|
|
|
1798
2192
|
requiredDocumentType(): string {
|
|
1799
|
-
return
|
|
2193
|
+
return VCard.Name.DOCUMENT_TYPE;
|
|
1800
2194
|
}
|
|
1801
2195
|
}
|
|
1802
2196
|
|
|
1803
2197
|
/** Formatted Name */
|
|
1804
2198
|
export class FormattedName extends Entry {
|
|
2199
|
+
public static readonly DOCUMENT_TYPE = 'FormattedName';
|
|
2200
|
+
|
|
1805
2201
|
constructor(document: GenericDocument) {
|
|
1806
2202
|
super(document);
|
|
1807
2203
|
}
|
|
1808
2204
|
|
|
1809
2205
|
requiredDocumentType(): string {
|
|
1810
|
-
return
|
|
2206
|
+
return VCard.FormattedName.DOCUMENT_TYPE;
|
|
1811
2207
|
}
|
|
1812
2208
|
}
|
|
1813
2209
|
|
|
1814
2210
|
/** Nickname */
|
|
1815
2211
|
export class Nickname extends Entry {
|
|
2212
|
+
public static readonly DOCUMENT_TYPE = 'Nickname';
|
|
2213
|
+
|
|
1816
2214
|
constructor(document: GenericDocument) {
|
|
1817
2215
|
super(document);
|
|
1818
2216
|
}
|
|
1819
2217
|
|
|
1820
2218
|
requiredDocumentType(): string {
|
|
1821
|
-
return
|
|
2219
|
+
return VCard.Nickname.DOCUMENT_TYPE;
|
|
1822
2220
|
}
|
|
1823
2221
|
}
|
|
1824
2222
|
|
|
1825
2223
|
/** Birthday */
|
|
1826
2224
|
export class Birthday extends Entry {
|
|
2225
|
+
public static readonly DOCUMENT_TYPE = 'Birthday';
|
|
2226
|
+
|
|
1827
2227
|
constructor(document: GenericDocument) {
|
|
1828
2228
|
super(document);
|
|
1829
2229
|
}
|
|
1830
2230
|
|
|
1831
2231
|
requiredDocumentType(): string {
|
|
1832
|
-
return
|
|
2232
|
+
return VCard.Birthday.DOCUMENT_TYPE;
|
|
1833
2233
|
}
|
|
1834
2234
|
}
|
|
1835
2235
|
|
|
1836
2236
|
/** Anniversary */
|
|
1837
2237
|
export class Anniversary extends Entry {
|
|
2238
|
+
public static readonly DOCUMENT_TYPE = 'Anniversary';
|
|
2239
|
+
|
|
1838
2240
|
constructor(document: GenericDocument) {
|
|
1839
2241
|
super(document);
|
|
1840
2242
|
}
|
|
1841
2243
|
|
|
1842
2244
|
requiredDocumentType(): string {
|
|
1843
|
-
return
|
|
2245
|
+
return VCard.Anniversary.DOCUMENT_TYPE;
|
|
1844
2246
|
}
|
|
1845
2247
|
}
|
|
1846
2248
|
|
|
1847
2249
|
/** Gender */
|
|
1848
2250
|
export class Gender extends Entry {
|
|
2251
|
+
public static readonly DOCUMENT_TYPE = 'Gender';
|
|
2252
|
+
|
|
1849
2253
|
constructor(document: GenericDocument) {
|
|
1850
2254
|
super(document);
|
|
1851
2255
|
}
|
|
1852
2256
|
|
|
1853
2257
|
requiredDocumentType(): string {
|
|
1854
|
-
return
|
|
2258
|
+
return VCard.Gender.DOCUMENT_TYPE;
|
|
1855
2259
|
}
|
|
1856
2260
|
}
|
|
1857
2261
|
|
|
1858
2262
|
/** Delivery Address */
|
|
1859
2263
|
export class DeliveryAddress extends Entry {
|
|
2264
|
+
public static readonly DOCUMENT_TYPE = 'DeliveryAddress';
|
|
2265
|
+
|
|
1860
2266
|
constructor(document: GenericDocument) {
|
|
1861
2267
|
super(document);
|
|
1862
2268
|
}
|
|
1863
2269
|
|
|
1864
2270
|
requiredDocumentType(): string {
|
|
1865
|
-
return
|
|
2271
|
+
return VCard.DeliveryAddress.DOCUMENT_TYPE;
|
|
1866
2272
|
}
|
|
1867
2273
|
}
|
|
1868
2274
|
|
|
1869
2275
|
/** Label */
|
|
1870
2276
|
export class Label extends Entry {
|
|
2277
|
+
public static readonly DOCUMENT_TYPE = 'Label';
|
|
2278
|
+
|
|
1871
2279
|
constructor(document: GenericDocument) {
|
|
1872
2280
|
super(document);
|
|
1873
2281
|
}
|
|
1874
2282
|
|
|
1875
2283
|
requiredDocumentType(): string {
|
|
1876
|
-
return
|
|
2284
|
+
return VCard.Label.DOCUMENT_TYPE;
|
|
1877
2285
|
}
|
|
1878
2286
|
}
|
|
1879
2287
|
|
|
1880
2288
|
/** Photo */
|
|
1881
2289
|
export class Photo extends Entry {
|
|
2290
|
+
public static readonly DOCUMENT_TYPE = 'Photo';
|
|
2291
|
+
|
|
1882
2292
|
constructor(document: GenericDocument) {
|
|
1883
2293
|
super(document);
|
|
1884
2294
|
}
|
|
1885
2295
|
|
|
1886
2296
|
requiredDocumentType(): string {
|
|
1887
|
-
return
|
|
2297
|
+
return VCard.Photo.DOCUMENT_TYPE;
|
|
1888
2298
|
}
|
|
1889
2299
|
}
|
|
1890
2300
|
|
|
1891
2301
|
/** Telephone Number */
|
|
1892
2302
|
export class TelephoneNumber extends Entry {
|
|
2303
|
+
public static readonly DOCUMENT_TYPE = 'TelephoneNumber';
|
|
2304
|
+
|
|
1893
2305
|
constructor(document: GenericDocument) {
|
|
1894
2306
|
super(document);
|
|
1895
2307
|
}
|
|
1896
2308
|
|
|
1897
2309
|
requiredDocumentType(): string {
|
|
1898
|
-
return
|
|
2310
|
+
return VCard.TelephoneNumber.DOCUMENT_TYPE;
|
|
1899
2311
|
}
|
|
1900
2312
|
}
|
|
1901
2313
|
|
|
1902
2314
|
/** Email */
|
|
1903
2315
|
export class Email extends Entry {
|
|
2316
|
+
public static readonly DOCUMENT_TYPE = 'Email';
|
|
2317
|
+
|
|
1904
2318
|
constructor(document: GenericDocument) {
|
|
1905
2319
|
super(document);
|
|
1906
2320
|
}
|
|
1907
2321
|
|
|
1908
2322
|
requiredDocumentType(): string {
|
|
1909
|
-
return
|
|
2323
|
+
return VCard.Email.DOCUMENT_TYPE;
|
|
1910
2324
|
}
|
|
1911
2325
|
}
|
|
1912
2326
|
|
|
1913
2327
|
/** IMPP */
|
|
1914
2328
|
export class IMPP extends Entry {
|
|
2329
|
+
public static readonly DOCUMENT_TYPE = 'IMPP';
|
|
2330
|
+
|
|
1915
2331
|
constructor(document: GenericDocument) {
|
|
1916
2332
|
super(document);
|
|
1917
2333
|
}
|
|
1918
2334
|
|
|
1919
2335
|
requiredDocumentType(): string {
|
|
1920
|
-
return
|
|
2336
|
+
return VCard.IMPP.DOCUMENT_TYPE;
|
|
1921
2337
|
}
|
|
1922
2338
|
}
|
|
1923
2339
|
|
|
1924
|
-
/**
|
|
1925
|
-
export class
|
|
2340
|
+
/** Language */
|
|
2341
|
+
export class Language extends Entry {
|
|
2342
|
+
public static readonly DOCUMENT_TYPE = 'Language';
|
|
2343
|
+
|
|
1926
2344
|
constructor(document: GenericDocument) {
|
|
1927
2345
|
super(document);
|
|
1928
2346
|
}
|
|
1929
2347
|
|
|
1930
2348
|
requiredDocumentType(): string {
|
|
1931
|
-
return
|
|
2349
|
+
return VCard.Language.DOCUMENT_TYPE;
|
|
1932
2350
|
}
|
|
1933
2351
|
}
|
|
1934
2352
|
|
|
1935
2353
|
/** Time Zone */
|
|
1936
2354
|
export class TimeZone extends Entry {
|
|
2355
|
+
public static readonly DOCUMENT_TYPE = 'TimeZone';
|
|
2356
|
+
|
|
1937
2357
|
constructor(document: GenericDocument) {
|
|
1938
2358
|
super(document);
|
|
1939
2359
|
}
|
|
1940
2360
|
|
|
1941
2361
|
requiredDocumentType(): string {
|
|
1942
|
-
return
|
|
2362
|
+
return VCard.TimeZone.DOCUMENT_TYPE;
|
|
1943
2363
|
}
|
|
1944
2364
|
}
|
|
1945
2365
|
|
|
1946
2366
|
/** Geo Location */
|
|
1947
2367
|
export class GeoLocation extends Entry {
|
|
2368
|
+
public static readonly DOCUMENT_TYPE = 'GeoLocation';
|
|
2369
|
+
|
|
1948
2370
|
constructor(document: GenericDocument) {
|
|
1949
2371
|
super(document);
|
|
1950
2372
|
}
|
|
1951
2373
|
|
|
1952
2374
|
requiredDocumentType(): string {
|
|
1953
|
-
return
|
|
2375
|
+
return VCard.GeoLocation.DOCUMENT_TYPE;
|
|
1954
2376
|
}
|
|
1955
2377
|
}
|
|
1956
2378
|
|
|
1957
2379
|
/** Title */
|
|
1958
2380
|
export class Title extends Entry {
|
|
2381
|
+
public static readonly DOCUMENT_TYPE = 'Title';
|
|
2382
|
+
|
|
1959
2383
|
constructor(document: GenericDocument) {
|
|
1960
2384
|
super(document);
|
|
1961
2385
|
}
|
|
1962
2386
|
|
|
1963
2387
|
requiredDocumentType(): string {
|
|
1964
|
-
return
|
|
2388
|
+
return VCard.Title.DOCUMENT_TYPE;
|
|
1965
2389
|
}
|
|
1966
2390
|
}
|
|
1967
2391
|
|
|
1968
2392
|
/** Role */
|
|
1969
2393
|
export class Role extends Entry {
|
|
2394
|
+
public static readonly DOCUMENT_TYPE = 'Role';
|
|
2395
|
+
|
|
1970
2396
|
constructor(document: GenericDocument) {
|
|
1971
2397
|
super(document);
|
|
1972
2398
|
}
|
|
1973
2399
|
|
|
1974
2400
|
requiredDocumentType(): string {
|
|
1975
|
-
return
|
|
2401
|
+
return VCard.Role.DOCUMENT_TYPE;
|
|
1976
2402
|
}
|
|
1977
2403
|
}
|
|
1978
2404
|
|
|
1979
2405
|
/** Logo */
|
|
1980
2406
|
export class Logo extends Entry {
|
|
2407
|
+
public static readonly DOCUMENT_TYPE = 'Logo';
|
|
2408
|
+
|
|
1981
2409
|
constructor(document: GenericDocument) {
|
|
1982
2410
|
super(document);
|
|
1983
2411
|
}
|
|
1984
2412
|
|
|
1985
2413
|
requiredDocumentType(): string {
|
|
1986
|
-
return
|
|
2414
|
+
return VCard.Logo.DOCUMENT_TYPE;
|
|
1987
2415
|
}
|
|
1988
2416
|
}
|
|
1989
2417
|
|
|
1990
2418
|
/** Agent */
|
|
1991
2419
|
export class Agent extends Entry {
|
|
2420
|
+
public static readonly DOCUMENT_TYPE = 'Agent';
|
|
2421
|
+
|
|
1992
2422
|
constructor(document: GenericDocument) {
|
|
1993
2423
|
super(document);
|
|
1994
2424
|
}
|
|
1995
2425
|
|
|
1996
2426
|
requiredDocumentType(): string {
|
|
1997
|
-
return
|
|
2427
|
+
return VCard.Agent.DOCUMENT_TYPE;
|
|
1998
2428
|
}
|
|
1999
2429
|
}
|
|
2000
2430
|
|
|
2001
2431
|
/** Organisation */
|
|
2002
2432
|
export class Organisation extends Entry {
|
|
2433
|
+
public static readonly DOCUMENT_TYPE = 'Organisation';
|
|
2434
|
+
|
|
2003
2435
|
constructor(document: GenericDocument) {
|
|
2004
2436
|
super(document);
|
|
2005
2437
|
}
|
|
2006
2438
|
|
|
2007
2439
|
requiredDocumentType(): string {
|
|
2008
|
-
return
|
|
2440
|
+
return VCard.Organisation.DOCUMENT_TYPE;
|
|
2009
2441
|
}
|
|
2010
2442
|
}
|
|
2011
2443
|
|
|
2012
2444
|
/** Member */
|
|
2013
2445
|
export class Member extends Entry {
|
|
2446
|
+
public static readonly DOCUMENT_TYPE = 'Member';
|
|
2447
|
+
|
|
2014
2448
|
constructor(document: GenericDocument) {
|
|
2015
2449
|
super(document);
|
|
2016
2450
|
}
|
|
2017
2451
|
|
|
2018
2452
|
requiredDocumentType(): string {
|
|
2019
|
-
return
|
|
2453
|
+
return VCard.Member.DOCUMENT_TYPE;
|
|
2020
2454
|
}
|
|
2021
2455
|
}
|
|
2022
2456
|
|
|
2023
2457
|
/** Related */
|
|
2024
2458
|
export class Related extends Entry {
|
|
2459
|
+
public static readonly DOCUMENT_TYPE = 'Related';
|
|
2460
|
+
|
|
2025
2461
|
constructor(document: GenericDocument) {
|
|
2026
2462
|
super(document);
|
|
2027
2463
|
}
|
|
2028
2464
|
|
|
2029
2465
|
requiredDocumentType(): string {
|
|
2030
|
-
return
|
|
2466
|
+
return VCard.Related.DOCUMENT_TYPE;
|
|
2031
2467
|
}
|
|
2032
2468
|
}
|
|
2033
2469
|
|
|
2034
|
-
/**
|
|
2035
|
-
export class
|
|
2470
|
+
/** Category */
|
|
2471
|
+
export class Category extends Entry {
|
|
2472
|
+
public static readonly DOCUMENT_TYPE = 'Category';
|
|
2473
|
+
|
|
2036
2474
|
constructor(document: GenericDocument) {
|
|
2037
2475
|
super(document);
|
|
2038
2476
|
}
|
|
2039
2477
|
|
|
2040
2478
|
requiredDocumentType(): string {
|
|
2041
|
-
return
|
|
2479
|
+
return VCard.Category.DOCUMENT_TYPE;
|
|
2042
2480
|
}
|
|
2043
2481
|
}
|
|
2044
2482
|
|
|
2045
2483
|
/** Note */
|
|
2046
2484
|
export class Note extends Entry {
|
|
2485
|
+
public static readonly DOCUMENT_TYPE = 'Note';
|
|
2486
|
+
|
|
2047
2487
|
constructor(document: GenericDocument) {
|
|
2048
2488
|
super(document);
|
|
2049
2489
|
}
|
|
2050
2490
|
|
|
2051
2491
|
requiredDocumentType(): string {
|
|
2052
|
-
return
|
|
2492
|
+
return VCard.Note.DOCUMENT_TYPE;
|
|
2053
2493
|
}
|
|
2054
2494
|
}
|
|
2055
2495
|
|
|
2056
2496
|
/** ProductId */
|
|
2057
2497
|
export class ProductId extends Entry {
|
|
2498
|
+
public static readonly DOCUMENT_TYPE = 'ProductId';
|
|
2499
|
+
|
|
2058
2500
|
constructor(document: GenericDocument) {
|
|
2059
2501
|
super(document);
|
|
2060
2502
|
}
|
|
2061
2503
|
|
|
2062
2504
|
requiredDocumentType(): string {
|
|
2063
|
-
return
|
|
2505
|
+
return VCard.ProductId.DOCUMENT_TYPE;
|
|
2064
2506
|
}
|
|
2065
2507
|
}
|
|
2066
2508
|
|
|
2067
2509
|
/** Revision */
|
|
2068
2510
|
export class Revision extends Entry {
|
|
2511
|
+
public static readonly DOCUMENT_TYPE = 'Revision';
|
|
2512
|
+
|
|
2069
2513
|
constructor(document: GenericDocument) {
|
|
2070
2514
|
super(document);
|
|
2071
2515
|
}
|
|
2072
2516
|
|
|
2073
2517
|
requiredDocumentType(): string {
|
|
2074
|
-
return
|
|
2518
|
+
return VCard.Revision.DOCUMENT_TYPE;
|
|
2075
2519
|
}
|
|
2076
2520
|
}
|
|
2077
2521
|
|
|
2078
2522
|
/** Sound */
|
|
2079
2523
|
export class Sound extends Entry {
|
|
2524
|
+
public static readonly DOCUMENT_TYPE = 'Sound';
|
|
2525
|
+
|
|
2080
2526
|
constructor(document: GenericDocument) {
|
|
2081
2527
|
super(document);
|
|
2082
2528
|
}
|
|
2083
2529
|
|
|
2084
2530
|
requiredDocumentType(): string {
|
|
2085
|
-
return
|
|
2531
|
+
return VCard.Sound.DOCUMENT_TYPE;
|
|
2086
2532
|
}
|
|
2087
2533
|
}
|
|
2088
2534
|
|
|
2089
2535
|
/** UID */
|
|
2090
2536
|
export class UID extends Entry {
|
|
2537
|
+
public static readonly DOCUMENT_TYPE = 'UID';
|
|
2538
|
+
|
|
2091
2539
|
constructor(document: GenericDocument) {
|
|
2092
2540
|
super(document);
|
|
2093
2541
|
}
|
|
2094
2542
|
|
|
2095
2543
|
requiredDocumentType(): string {
|
|
2096
|
-
return
|
|
2544
|
+
return VCard.UID.DOCUMENT_TYPE;
|
|
2097
2545
|
}
|
|
2098
2546
|
}
|
|
2099
2547
|
|
|
2100
2548
|
/** Client PID Map */
|
|
2101
2549
|
export class ClientPIDMap extends Entry {
|
|
2550
|
+
public static readonly DOCUMENT_TYPE = 'ClientPIDMap';
|
|
2551
|
+
|
|
2102
2552
|
constructor(document: GenericDocument) {
|
|
2103
2553
|
super(document);
|
|
2104
2554
|
}
|
|
2105
2555
|
|
|
2106
2556
|
requiredDocumentType(): string {
|
|
2107
|
-
return
|
|
2557
|
+
return VCard.ClientPIDMap.DOCUMENT_TYPE;
|
|
2108
2558
|
}
|
|
2109
2559
|
}
|
|
2110
2560
|
|
|
2111
2561
|
/** URL */
|
|
2112
2562
|
export class URL extends Entry {
|
|
2563
|
+
public static readonly DOCUMENT_TYPE = 'URL';
|
|
2564
|
+
|
|
2113
2565
|
constructor(document: GenericDocument) {
|
|
2114
2566
|
super(document);
|
|
2115
2567
|
}
|
|
2116
2568
|
|
|
2117
2569
|
requiredDocumentType(): string {
|
|
2118
|
-
return
|
|
2570
|
+
return VCard.URL.DOCUMENT_TYPE;
|
|
2119
2571
|
}
|
|
2120
2572
|
}
|
|
2121
2573
|
|
|
2122
2574
|
/** Public Key */
|
|
2123
2575
|
export class PublicKey extends Entry {
|
|
2576
|
+
public static readonly DOCUMENT_TYPE = 'PublicKey';
|
|
2577
|
+
|
|
2124
2578
|
constructor(document: GenericDocument) {
|
|
2125
2579
|
super(document);
|
|
2126
2580
|
}
|
|
2127
2581
|
|
|
2128
2582
|
requiredDocumentType(): string {
|
|
2129
|
-
return
|
|
2583
|
+
return VCard.PublicKey.DOCUMENT_TYPE;
|
|
2130
2584
|
}
|
|
2131
2585
|
}
|
|
2132
2586
|
|
|
2133
2587
|
/** Busy Time URL */
|
|
2134
2588
|
export class BusyTimeURL extends Entry {
|
|
2589
|
+
public static readonly DOCUMENT_TYPE = 'BusyTimeURL';
|
|
2590
|
+
|
|
2135
2591
|
constructor(document: GenericDocument) {
|
|
2136
2592
|
super(document);
|
|
2137
2593
|
}
|
|
2138
2594
|
|
|
2139
2595
|
requiredDocumentType(): string {
|
|
2140
|
-
return
|
|
2596
|
+
return VCard.BusyTimeURL.DOCUMENT_TYPE;
|
|
2141
2597
|
}
|
|
2142
2598
|
}
|
|
2143
2599
|
|
|
2144
2600
|
/** Calendar URI For Requests */
|
|
2145
2601
|
export class CalendarURIForRequests extends Entry {
|
|
2602
|
+
public static readonly DOCUMENT_TYPE = 'CalendarURIForRequests';
|
|
2603
|
+
|
|
2146
2604
|
constructor(document: GenericDocument) {
|
|
2147
2605
|
super(document);
|
|
2148
2606
|
}
|
|
2149
2607
|
|
|
2150
2608
|
requiredDocumentType(): string {
|
|
2151
|
-
return
|
|
2609
|
+
return VCard.CalendarURIForRequests.DOCUMENT_TYPE;
|
|
2152
2610
|
}
|
|
2153
2611
|
}
|
|
2154
2612
|
|
|
2155
2613
|
/** Calendar URI */
|
|
2156
2614
|
export class CalendarURI extends Entry {
|
|
2615
|
+
public static readonly DOCUMENT_TYPE = 'CalendarURI';
|
|
2616
|
+
|
|
2157
2617
|
constructor(document: GenericDocument) {
|
|
2158
2618
|
super(document);
|
|
2159
2619
|
}
|
|
2160
2620
|
|
|
2161
2621
|
requiredDocumentType(): string {
|
|
2162
|
-
return
|
|
2622
|
+
return VCard.CalendarURI.DOCUMENT_TYPE;
|
|
2163
2623
|
}
|
|
2164
2624
|
}
|
|
2165
2625
|
|
|
2166
2626
|
/** Sort String */
|
|
2167
2627
|
export class SortString extends Entry {
|
|
2628
|
+
public static readonly DOCUMENT_TYPE = 'SortString';
|
|
2629
|
+
|
|
2168
2630
|
constructor(document: GenericDocument) {
|
|
2169
2631
|
super(document);
|
|
2170
2632
|
}
|
|
2171
2633
|
|
|
2172
2634
|
requiredDocumentType(): string {
|
|
2173
|
-
return
|
|
2635
|
+
return VCard.SortString.DOCUMENT_TYPE;
|
|
2174
2636
|
}
|
|
2175
2637
|
}
|
|
2176
2638
|
|
|
2177
2639
|
/** Classification */
|
|
2178
2640
|
export class Classification extends Entry {
|
|
2641
|
+
public static readonly DOCUMENT_TYPE = 'Classification';
|
|
2642
|
+
|
|
2179
2643
|
constructor(document: GenericDocument) {
|
|
2180
2644
|
super(document);
|
|
2181
2645
|
}
|
|
2182
2646
|
|
|
2183
2647
|
requiredDocumentType(): string {
|
|
2184
|
-
return
|
|
2648
|
+
return VCard.Classification.DOCUMENT_TYPE;
|
|
2185
2649
|
}
|
|
2186
2650
|
}
|
|
2187
2651
|
|
|
2188
2652
|
/** Custom */
|
|
2189
2653
|
export class Custom extends Entry {
|
|
2654
|
+
public static readonly DOCUMENT_TYPE = 'Custom';
|
|
2655
|
+
|
|
2190
2656
|
constructor(document: GenericDocument) {
|
|
2191
2657
|
super(document);
|
|
2192
2658
|
}
|
|
2193
2659
|
|
|
2194
2660
|
requiredDocumentType(): string {
|
|
2195
|
-
return
|
|
2661
|
+
return VCard.Custom.DOCUMENT_TYPE;
|
|
2196
2662
|
}
|
|
2197
2663
|
}
|
|
2198
2664
|
}
|
|
2199
2665
|
|
|
2666
|
+
/** British Columbia (Canada) driver license */
|
|
2667
|
+
export class BritishColumbiaDriverLicense {
|
|
2668
|
+
private _document: GenericDocument;
|
|
2669
|
+
|
|
2670
|
+
get document(): GenericDocument {
|
|
2671
|
+
return this._document;
|
|
2672
|
+
}
|
|
2673
|
+
|
|
2674
|
+
public static readonly DOCUMENT_TYPE = 'BritishColumbiaDriverLicense';
|
|
2675
|
+
public static readonly ADDRESS_FIELD_NAME = 'Address';
|
|
2676
|
+
public static readonly ADDRESS_FIELD_NAME_NORMALIZED = 'BritishColumbiaDriverLicense.Address';
|
|
2677
|
+
public static readonly BIRTH_DATE_FIELD_NAME = 'BirthDate';
|
|
2678
|
+
public static readonly BIRTH_DATE_FIELD_NAME_NORMALIZED =
|
|
2679
|
+
'BritishColumbiaDriverLicense.BirthDate';
|
|
2680
|
+
public static readonly CARD_EXPIRY_FIELD_NAME = 'CardExpiry';
|
|
2681
|
+
public static readonly CARD_EXPIRY_FIELD_NAME_NORMALIZED =
|
|
2682
|
+
'BritishColumbiaDriverLicense.CardExpiry';
|
|
2683
|
+
public static readonly CARD_NUMBER_FIELD_NAME = 'CardNumber';
|
|
2684
|
+
public static readonly CARD_NUMBER_FIELD_NAME_NORMALIZED =
|
|
2685
|
+
'BritishColumbiaDriverLicense.CardNumber';
|
|
2686
|
+
public static readonly CITY_FIELD_NAME = 'City';
|
|
2687
|
+
public static readonly CITY_FIELD_NAME_NORMALIZED = 'BritishColumbiaDriverLicense.City';
|
|
2688
|
+
public static readonly ERROR_CONTROL_CODE_FIELD_NAME = 'ErrorControlCode';
|
|
2689
|
+
public static readonly ERROR_CONTROL_CODE_FIELD_NAME_NORMALIZED =
|
|
2690
|
+
'BritishColumbiaDriverLicense.ErrorControlCode';
|
|
2691
|
+
public static readonly EYE_COLOR_FIELD_NAME = 'EyeColor';
|
|
2692
|
+
public static readonly EYE_COLOR_FIELD_NAME_NORMALIZED = 'BritishColumbiaDriverLicense.EyeColor';
|
|
2693
|
+
public static readonly GIVEN_NAMES_FIELD_NAME = 'GivenNames';
|
|
2694
|
+
public static readonly GIVEN_NAMES_FIELD_NAME_NORMALIZED =
|
|
2695
|
+
'BritishColumbiaDriverLicense.GivenNames';
|
|
2696
|
+
public static readonly HAIR_COLOR_FIELD_NAME = 'HairColor';
|
|
2697
|
+
public static readonly HAIR_COLOR_FIELD_NAME_NORMALIZED =
|
|
2698
|
+
'BritishColumbiaDriverLicense.HairColor';
|
|
2699
|
+
public static readonly HEIGHT_FIELD_NAME = 'Height';
|
|
2700
|
+
public static readonly HEIGHT_FIELD_NAME_NORMALIZED = 'BritishColumbiaDriverLicense.Height';
|
|
2701
|
+
public static readonly LAST_NAME_FIELD_NAME = 'LastName';
|
|
2702
|
+
public static readonly LAST_NAME_FIELD_NAME_NORMALIZED = 'BritishColumbiaDriverLicense.LastName';
|
|
2703
|
+
public static readonly PERSONAL_HEALTH_NUMBER_FIELD_NAME = 'PersonalHealthNumber';
|
|
2704
|
+
public static readonly PERSONAL_HEALTH_NUMBER_FIELD_NAME_NORMALIZED =
|
|
2705
|
+
'BritishColumbiaDriverLicense.PersonalHealthNumber';
|
|
2706
|
+
public static readonly POSTAL_CODE_FIELD_NAME = 'PostalCode';
|
|
2707
|
+
public static readonly POSTAL_CODE_FIELD_NAME_NORMALIZED =
|
|
2708
|
+
'BritishColumbiaDriverLicense.PostalCode';
|
|
2709
|
+
public static readonly PROVINCE_FIELD_NAME = 'Province';
|
|
2710
|
+
public static readonly PROVINCE_FIELD_NAME_NORMALIZED = 'BritishColumbiaDriverLicense.Province';
|
|
2711
|
+
public static readonly PROVINCE_CODE_FIELD_NAME = 'ProvinceCode';
|
|
2712
|
+
public static readonly PROVINCE_CODE_FIELD_NAME_NORMALIZED =
|
|
2713
|
+
'BritishColumbiaDriverLicense.ProvinceCode';
|
|
2714
|
+
public static readonly SECURITY_FUNCTION_FIELD_NAME = 'SecurityFunction';
|
|
2715
|
+
public static readonly SECURITY_FUNCTION_FIELD_NAME_NORMALIZED =
|
|
2716
|
+
'BritishColumbiaDriverLicense.SecurityFunction';
|
|
2717
|
+
public static readonly SECURITY_VERSION_FIELD_NAME = 'SecurityVersion';
|
|
2718
|
+
public static readonly SECURITY_VERSION_FIELD_NAME_NORMALIZED =
|
|
2719
|
+
'BritishColumbiaDriverLicense.SecurityVersion';
|
|
2720
|
+
public static readonly SEX_FIELD_NAME = 'Sex';
|
|
2721
|
+
public static readonly SEX_FIELD_NAME_NORMALIZED = 'BritishColumbiaDriverLicense.Sex';
|
|
2722
|
+
public static readonly VERSION_FIELD_NAME = 'Version';
|
|
2723
|
+
public static readonly VERSION_FIELD_NAME_NORMALIZED = 'BritishColumbiaDriverLicense.Version';
|
|
2724
|
+
public static readonly WEIGHT_FIELD_NAME = 'Weight';
|
|
2725
|
+
public static readonly WEIGHT_FIELD_NAME_NORMALIZED = 'BritishColumbiaDriverLicense.Weight';
|
|
2726
|
+
|
|
2727
|
+
constructor(document: GenericDocument) {
|
|
2728
|
+
if (document.type.name !== this.requiredDocumentType()) {
|
|
2729
|
+
throw new Error(
|
|
2730
|
+
`Expected document type ${this.requiredDocumentType()}, got ${document.type.name}`
|
|
2731
|
+
);
|
|
2732
|
+
}
|
|
2733
|
+
|
|
2734
|
+
this._document = document;
|
|
2735
|
+
}
|
|
2736
|
+
|
|
2737
|
+
requiredDocumentType(): string {
|
|
2738
|
+
return BritishColumbiaDriverLicense.DOCUMENT_TYPE;
|
|
2739
|
+
}
|
|
2740
|
+
|
|
2741
|
+
/** Address */
|
|
2742
|
+
get address(): Field {
|
|
2743
|
+
return this.document.fields.find((f: Field) => f.type.name === 'Address') as Field;
|
|
2744
|
+
}
|
|
2745
|
+
|
|
2746
|
+
/** Birth date in CCYYMMDD format */
|
|
2747
|
+
get birthDate(): Field {
|
|
2748
|
+
return this.document.fields.find((f: Field) => f.type.name === 'BirthDate') as Field;
|
|
2749
|
+
}
|
|
2750
|
+
|
|
2751
|
+
/** Card expiry in YYMM format */
|
|
2752
|
+
get cardExpiry(): Field {
|
|
2753
|
+
return this.document.fields.find((f: Field) => f.type.name === 'CardExpiry') as Field;
|
|
2754
|
+
}
|
|
2755
|
+
|
|
2756
|
+
/** Card Number */
|
|
2757
|
+
get cardNumber(): Field {
|
|
2758
|
+
return this.document.fields.find((f: Field) => f.type.name === 'CardNumber') as Field;
|
|
2759
|
+
}
|
|
2760
|
+
|
|
2761
|
+
/** City */
|
|
2762
|
+
get city(): Field {
|
|
2763
|
+
return this.document.fields.find((f: Field) => f.type.name === 'City') as Field;
|
|
2764
|
+
}
|
|
2765
|
+
|
|
2766
|
+
/** Error control code */
|
|
2767
|
+
get errorControlCode(): Field {
|
|
2768
|
+
return this.document.fields.find((f: Field) => f.type.name === 'ErrorControlCode') as Field;
|
|
2769
|
+
}
|
|
2770
|
+
|
|
2771
|
+
/** Eye color */
|
|
2772
|
+
get eyeColor(): Field {
|
|
2773
|
+
return this.document.fields.find((f: Field) => f.type.name === 'EyeColor') as Field;
|
|
2774
|
+
}
|
|
2775
|
+
|
|
2776
|
+
/** Given names */
|
|
2777
|
+
get givenNames(): Field {
|
|
2778
|
+
return this.document.fields.find((f: Field) => f.type.name === 'GivenNames') as Field;
|
|
2779
|
+
}
|
|
2780
|
+
|
|
2781
|
+
/** Hair color */
|
|
2782
|
+
get hairColor(): Field {
|
|
2783
|
+
return this.document.fields.find((f: Field) => f.type.name === 'HairColor') as Field;
|
|
2784
|
+
}
|
|
2785
|
+
|
|
2786
|
+
/** Height */
|
|
2787
|
+
get height(): Field {
|
|
2788
|
+
return this.document.fields.find((f: Field) => f.type.name === 'Height') as Field;
|
|
2789
|
+
}
|
|
2790
|
+
|
|
2791
|
+
/** Last name */
|
|
2792
|
+
get lastName(): Field {
|
|
2793
|
+
return this.document.fields.find((f: Field) => f.type.name === 'LastName') as Field;
|
|
2794
|
+
}
|
|
2795
|
+
|
|
2796
|
+
/** Personal health number */
|
|
2797
|
+
get personalHealthNumber(): Field {
|
|
2798
|
+
return this.document.fields.find((f: Field) => f.type.name === 'PersonalHealthNumber') as Field;
|
|
2799
|
+
}
|
|
2800
|
+
|
|
2801
|
+
/** Postal code */
|
|
2802
|
+
get postalCode(): Field {
|
|
2803
|
+
return this.document.fields.find((f: Field) => f.type.name === 'PostalCode') as Field;
|
|
2804
|
+
}
|
|
2805
|
+
|
|
2806
|
+
/** Province */
|
|
2807
|
+
get province(): Field {
|
|
2808
|
+
return this.document.fields.find((f: Field) => f.type.name === 'Province') as Field;
|
|
2809
|
+
}
|
|
2810
|
+
|
|
2811
|
+
/** Province code */
|
|
2812
|
+
get provinceCode(): Field {
|
|
2813
|
+
return this.document.fields.find((f: Field) => f.type.name === 'ProvinceCode') as Field;
|
|
2814
|
+
}
|
|
2815
|
+
|
|
2816
|
+
/** Security function */
|
|
2817
|
+
get securityFunction(): Field {
|
|
2818
|
+
return this.document.fields.find((f: Field) => f.type.name === 'SecurityFunction') as Field;
|
|
2819
|
+
}
|
|
2820
|
+
|
|
2821
|
+
/** Security Version */
|
|
2822
|
+
get securityVersion(): Field {
|
|
2823
|
+
return this.document.fields.find((f: Field) => f.type.name === 'SecurityVersion') as Field;
|
|
2824
|
+
}
|
|
2825
|
+
|
|
2826
|
+
/** Sex */
|
|
2827
|
+
get sex(): Field {
|
|
2828
|
+
return this.document.fields.find((f: Field) => f.type.name === 'Sex') as Field;
|
|
2829
|
+
}
|
|
2830
|
+
|
|
2831
|
+
/** Version */
|
|
2832
|
+
get version(): Field {
|
|
2833
|
+
return this.document.fields.find((f: Field) => f.type.name === 'Version') as Field;
|
|
2834
|
+
}
|
|
2835
|
+
|
|
2836
|
+
/** Weight */
|
|
2837
|
+
get weight(): Field {
|
|
2838
|
+
return this.document.fields.find((f: Field) => f.type.name === 'Weight') as Field;
|
|
2839
|
+
}
|
|
2840
|
+
}
|
|
2841
|
+
|
|
2200
2842
|
/** AAMVA */
|
|
2201
2843
|
export class AAMVA {
|
|
2202
2844
|
private _document: GenericDocument;
|
|
@@ -2205,6 +2847,16 @@ export class AAMVA {
|
|
|
2205
2847
|
return this._document;
|
|
2206
2848
|
}
|
|
2207
2849
|
|
|
2850
|
+
public static readonly DOCUMENT_TYPE = 'AAMVA';
|
|
2851
|
+
public static readonly ISSUER_IDENTIFICATION_NUMBER_FIELD_NAME = 'IssuerIdentificationNumber';
|
|
2852
|
+
public static readonly ISSUER_IDENTIFICATION_NUMBER_FIELD_NAME_NORMALIZED =
|
|
2853
|
+
'AAMVA.IssuerIdentificationNumber';
|
|
2854
|
+
public static readonly JURISDICTION_VERSION_NUMBER_FIELD_NAME = 'JurisdictionVersionNumber';
|
|
2855
|
+
public static readonly JURISDICTION_VERSION_NUMBER_FIELD_NAME_NORMALIZED =
|
|
2856
|
+
'AAMVA.JurisdictionVersionNumber';
|
|
2857
|
+
public static readonly VERSION_FIELD_NAME = 'Version';
|
|
2858
|
+
public static readonly VERSION_FIELD_NAME_NORMALIZED = 'AAMVA.Version';
|
|
2859
|
+
|
|
2208
2860
|
constructor(document: GenericDocument) {
|
|
2209
2861
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
2210
2862
|
throw new Error(
|
|
@@ -2216,7 +2868,7 @@ export class AAMVA {
|
|
|
2216
2868
|
}
|
|
2217
2869
|
|
|
2218
2870
|
requiredDocumentType(): string {
|
|
2219
|
-
return
|
|
2871
|
+
return AAMVA.DOCUMENT_TYPE;
|
|
2220
2872
|
}
|
|
2221
2873
|
|
|
2222
2874
|
/** Issuer Identification Number */
|
|
@@ -2330,6 +2982,78 @@ export namespace AAMVA {
|
|
|
2330
2982
|
return this._document;
|
|
2331
2983
|
}
|
|
2332
2984
|
|
|
2985
|
+
public static readonly DOCUMENT_TYPE = 'TitleData';
|
|
2986
|
+
public static readonly ADDRESS_CITY_FIELD_NAME = 'AddressCity';
|
|
2987
|
+
public static readonly ADDRESS_CITY_FIELD_NAME_NORMALIZED = 'AAMVA.TitleData.AddressCity';
|
|
2988
|
+
public static readonly ADDRESS_JURISDICTION_CODE_FIELD_NAME = 'AddressJurisdictionCode';
|
|
2989
|
+
public static readonly ADDRESS_JURISDICTION_CODE_FIELD_NAME_NORMALIZED =
|
|
2990
|
+
'AAMVA.TitleData.AddressJurisdictionCode';
|
|
2991
|
+
public static readonly ADDRESS_STREET_FIELD_NAME = 'AddressStreet';
|
|
2992
|
+
public static readonly ADDRESS_STREET_FIELD_NAME_NORMALIZED = 'AAMVA.TitleData.AddressStreet';
|
|
2993
|
+
public static readonly ADDRESS_ZIP_CODE_FIELD_NAME = 'AddressZipCode';
|
|
2994
|
+
public static readonly ADDRESS_ZIP_CODE_FIELD_NAME_NORMALIZED =
|
|
2995
|
+
'AAMVA.TitleData.AddressZipCode';
|
|
2996
|
+
public static readonly BUSINESS_NAME_FIELD_NAME = 'BusinessName';
|
|
2997
|
+
public static readonly BUSINESS_NAME_FIELD_NAME_NORMALIZED = 'AAMVA.TitleData.BusinessName';
|
|
2998
|
+
public static readonly FAMILY_NAME_FIELD_NAME = 'FamilyName';
|
|
2999
|
+
public static readonly FAMILY_NAME_FIELD_NAME_NORMALIZED = 'AAMVA.TitleData.FamilyName';
|
|
3000
|
+
public static readonly FIRST_LIEN_HOLDER_ID_FIELD_NAME = 'FirstLienHolderId';
|
|
3001
|
+
public static readonly FIRST_LIEN_HOLDER_ID_FIELD_NAME_NORMALIZED =
|
|
3002
|
+
'AAMVA.TitleData.FirstLienHolderId';
|
|
3003
|
+
public static readonly FIRST_LIEN_HOLDER_NAME_FIELD_NAME = 'FirstLienHolderName';
|
|
3004
|
+
public static readonly FIRST_LIEN_HOLDER_NAME_FIELD_NAME_NORMALIZED =
|
|
3005
|
+
'AAMVA.TitleData.FirstLienHolderName';
|
|
3006
|
+
public static readonly GIVEN_NAME_FIELD_NAME = 'GivenName';
|
|
3007
|
+
public static readonly GIVEN_NAME_FIELD_NAME_NORMALIZED = 'AAMVA.TitleData.GivenName';
|
|
3008
|
+
public static readonly NEW_USED_INDICATOR_FIELD_NAME = 'NewUsedIndicator';
|
|
3009
|
+
public static readonly NEW_USED_INDICATOR_FIELD_NAME_NORMALIZED =
|
|
3010
|
+
'AAMVA.TitleData.NewUsedIndicator';
|
|
3011
|
+
public static readonly ODOMETER_DATE_FIELD_NAME = 'OdometerDate';
|
|
3012
|
+
public static readonly ODOMETER_DATE_FIELD_NAME_NORMALIZED = 'AAMVA.TitleData.OdometerDate';
|
|
3013
|
+
public static readonly ODOMETER_DISCLOSURE_FIELD_NAME = 'OdometerDisclosure';
|
|
3014
|
+
public static readonly ODOMETER_DISCLOSURE_FIELD_NAME_NORMALIZED =
|
|
3015
|
+
'AAMVA.TitleData.OdometerDisclosure';
|
|
3016
|
+
public static readonly ODOMETER_READING_KILOMETERS_FIELD_NAME = 'OdometerReadingKilometers';
|
|
3017
|
+
public static readonly ODOMETER_READING_KILOMETERS_FIELD_NAME_NORMALIZED =
|
|
3018
|
+
'AAMVA.TitleData.OdometerReadingKilometers';
|
|
3019
|
+
public static readonly ODOMETER_READING_MILEAGE_FIELD_NAME = 'OdometerReadingMileage';
|
|
3020
|
+
public static readonly ODOMETER_READING_MILEAGE_FIELD_NAME_NORMALIZED =
|
|
3021
|
+
'AAMVA.TitleData.OdometerReadingMileage';
|
|
3022
|
+
public static readonly PREVIOUS_TITLE_NUMBER_FIELD_NAME = 'PreviousTitleNumber';
|
|
3023
|
+
public static readonly PREVIOUS_TITLE_NUMBER_FIELD_NAME_NORMALIZED =
|
|
3024
|
+
'AAMVA.TitleData.PreviousTitleNumber';
|
|
3025
|
+
public static readonly PREVIOUS_TITLING_JURISDICTION_FIELD_NAME = 'PreviousTitlingJurisdiction';
|
|
3026
|
+
public static readonly PREVIOUS_TITLING_JURISDICTION_FIELD_NAME_NORMALIZED =
|
|
3027
|
+
'AAMVA.TitleData.PreviousTitlingJurisdiction';
|
|
3028
|
+
public static readonly TITLE_BRAND_FIELD_NAME = 'TitleBrand';
|
|
3029
|
+
public static readonly TITLE_BRAND_FIELD_NAME_NORMALIZED = 'AAMVA.TitleData.TitleBrand';
|
|
3030
|
+
public static readonly TITLE_ISSUE_DATE_FIELD_NAME = 'TitleIssueDate';
|
|
3031
|
+
public static readonly TITLE_ISSUE_DATE_FIELD_NAME_NORMALIZED =
|
|
3032
|
+
'AAMVA.TitleData.TitleIssueDate';
|
|
3033
|
+
public static readonly TITLE_NUMBER_FIELD_NAME = 'TitleNumber';
|
|
3034
|
+
public static readonly TITLE_NUMBER_FIELD_NAME_NORMALIZED = 'AAMVA.TitleData.TitleNumber';
|
|
3035
|
+
public static readonly TITLING_JURISDICTION_FIELD_NAME = 'TitlingJurisdiction';
|
|
3036
|
+
public static readonly TITLING_JURISDICTION_FIELD_NAME_NORMALIZED =
|
|
3037
|
+
'AAMVA.TitleData.TitlingJurisdiction';
|
|
3038
|
+
public static readonly VEHICLE_BODY_STYLE_FIELD_NAME = 'VehicleBodyStyle';
|
|
3039
|
+
public static readonly VEHICLE_BODY_STYLE_FIELD_NAME_NORMALIZED =
|
|
3040
|
+
'AAMVA.TitleData.VehicleBodyStyle';
|
|
3041
|
+
public static readonly VEHICLE_COLOR_FIELD_NAME = 'VehicleColor';
|
|
3042
|
+
public static readonly VEHICLE_COLOR_FIELD_NAME_NORMALIZED = 'AAMVA.TitleData.VehicleColor';
|
|
3043
|
+
public static readonly VEHICLE_IDENTIFICATION_NUMBER_FIELD_NAME = 'VehicleIdentificationNumber';
|
|
3044
|
+
public static readonly VEHICLE_IDENTIFICATION_NUMBER_FIELD_NAME_NORMALIZED =
|
|
3045
|
+
'AAMVA.TitleData.VehicleIdentificationNumber';
|
|
3046
|
+
public static readonly VEHICLE_MAKE_FIELD_NAME = 'VehicleMake';
|
|
3047
|
+
public static readonly VEHICLE_MAKE_FIELD_NAME_NORMALIZED = 'AAMVA.TitleData.VehicleMake';
|
|
3048
|
+
public static readonly VEHICLE_MODEL_FIELD_NAME = 'VehicleModel';
|
|
3049
|
+
public static readonly VEHICLE_MODEL_FIELD_NAME_NORMALIZED = 'AAMVA.TitleData.VehicleModel';
|
|
3050
|
+
public static readonly VEHICLE_MODEL_YEAR_FIELD_NAME = 'VehicleModelYear';
|
|
3051
|
+
public static readonly VEHICLE_MODEL_YEAR_FIELD_NAME_NORMALIZED =
|
|
3052
|
+
'AAMVA.TitleData.VehicleModelYear';
|
|
3053
|
+
public static readonly VEHICLE_PURCHASE_DATE_FIELD_NAME = 'VehiclePurchaseDate';
|
|
3054
|
+
public static readonly VEHICLE_PURCHASE_DATE_FIELD_NAME_NORMALIZED =
|
|
3055
|
+
'AAMVA.TitleData.VehiclePurchaseDate';
|
|
3056
|
+
|
|
2333
3057
|
constructor(document: GenericDocument) {
|
|
2334
3058
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
2335
3059
|
throw new Error(
|
|
@@ -2341,7 +3065,7 @@ export namespace AAMVA {
|
|
|
2341
3065
|
}
|
|
2342
3066
|
|
|
2343
3067
|
requiredDocumentType(): string {
|
|
2344
|
-
return
|
|
3068
|
+
return AAMVA.TitleData.DOCUMENT_TYPE;
|
|
2345
3069
|
}
|
|
2346
3070
|
|
|
2347
3071
|
/** Data element ID "NAT". City portion of the owner’s address. */
|
|
@@ -2488,6 +3212,72 @@ export namespace AAMVA {
|
|
|
2488
3212
|
return this._document;
|
|
2489
3213
|
}
|
|
2490
3214
|
|
|
3215
|
+
public static readonly DOCUMENT_TYPE = 'RegistrationData';
|
|
3216
|
+
public static readonly ADDRESS_CITY_FIELD_NAME = 'AddressCity';
|
|
3217
|
+
public static readonly ADDRESS_CITY_FIELD_NAME_NORMALIZED =
|
|
3218
|
+
'AAMVA.RegistrationData.AddressCity';
|
|
3219
|
+
public static readonly ADDRESS_JURISDICTION_CODE_FIELD_NAME = 'AddressJurisdictionCode';
|
|
3220
|
+
public static readonly ADDRESS_JURISDICTION_CODE_FIELD_NAME_NORMALIZED =
|
|
3221
|
+
'AAMVA.RegistrationData.AddressJurisdictionCode';
|
|
3222
|
+
public static readonly ADDRESS_STREET_FIELD_NAME = 'AddressStreet';
|
|
3223
|
+
public static readonly ADDRESS_STREET_FIELD_NAME_NORMALIZED =
|
|
3224
|
+
'AAMVA.RegistrationData.AddressStreet';
|
|
3225
|
+
public static readonly ADDRESS_ZIP_CODE_FIELD_NAME = 'AddressZipCode';
|
|
3226
|
+
public static readonly ADDRESS_ZIP_CODE_FIELD_NAME_NORMALIZED =
|
|
3227
|
+
'AAMVA.RegistrationData.AddressZipCode';
|
|
3228
|
+
public static readonly AXLES_FIELD_NAME = 'Axles';
|
|
3229
|
+
public static readonly AXLES_FIELD_NAME_NORMALIZED = 'AAMVA.RegistrationData.Axles';
|
|
3230
|
+
public static readonly BUSINESS_NAME_FIELD_NAME = 'BusinessName';
|
|
3231
|
+
public static readonly BUSINESS_NAME_FIELD_NAME_NORMALIZED =
|
|
3232
|
+
'AAMVA.RegistrationData.BusinessName';
|
|
3233
|
+
public static readonly FUEL_FIELD_NAME = 'Fuel';
|
|
3234
|
+
public static readonly FUEL_FIELD_NAME_NORMALIZED = 'AAMVA.RegistrationData.Fuel';
|
|
3235
|
+
public static readonly GROSS_VEHICLE_WEIGHT_FIELD_NAME = 'GrossVehicleWeight';
|
|
3236
|
+
public static readonly GROSS_VEHICLE_WEIGHT_FIELD_NAME_NORMALIZED =
|
|
3237
|
+
'AAMVA.RegistrationData.GrossVehicleWeight';
|
|
3238
|
+
public static readonly REGISTRANT_FAMILY_NAME_FIELD_NAME = 'RegistrantFamilyName';
|
|
3239
|
+
public static readonly REGISTRANT_FAMILY_NAME_FIELD_NAME_NORMALIZED =
|
|
3240
|
+
'AAMVA.RegistrationData.RegistrantFamilyName';
|
|
3241
|
+
public static readonly REGISTRANT_GIVEN_NAME_FIELD_NAME = 'RegistrantGivenName';
|
|
3242
|
+
public static readonly REGISTRANT_GIVEN_NAME_FIELD_NAME_NORMALIZED =
|
|
3243
|
+
'AAMVA.RegistrationData.RegistrantGivenName';
|
|
3244
|
+
public static readonly REGISTRATION_EXPIRY_DATE_FIELD_NAME = 'RegistrationExpiryDate';
|
|
3245
|
+
public static readonly REGISTRATION_EXPIRY_DATE_FIELD_NAME_NORMALIZED =
|
|
3246
|
+
'AAMVA.RegistrationData.RegistrationExpiryDate';
|
|
3247
|
+
public static readonly REGISTRATION_ISSUE_DATE_FIELD_NAME = 'RegistrationIssueDate';
|
|
3248
|
+
public static readonly REGISTRATION_ISSUE_DATE_FIELD_NAME_NORMALIZED =
|
|
3249
|
+
'AAMVA.RegistrationData.RegistrationIssueDate';
|
|
3250
|
+
public static readonly REGISTRATION_PLATE_NUMBER_FIELD_NAME = 'RegistrationPlateNumber';
|
|
3251
|
+
public static readonly REGISTRATION_PLATE_NUMBER_FIELD_NAME_NORMALIZED =
|
|
3252
|
+
'AAMVA.RegistrationData.RegistrationPlateNumber';
|
|
3253
|
+
public static readonly REGISTRATION_WINDOW_STICKER_DECAL_FIELD_NAME =
|
|
3254
|
+
'RegistrationWindowStickerDecal';
|
|
3255
|
+
public static readonly REGISTRATION_WINDOW_STICKER_DECAL_FIELD_NAME_NORMALIZED =
|
|
3256
|
+
'AAMVA.RegistrationData.RegistrationWindowStickerDecal';
|
|
3257
|
+
public static readonly REGISTRATION_YEAR_FIELD_NAME = 'RegistrationYear';
|
|
3258
|
+
public static readonly REGISTRATION_YEAR_FIELD_NAME_NORMALIZED =
|
|
3259
|
+
'AAMVA.RegistrationData.RegistrationYear';
|
|
3260
|
+
public static readonly VEHICLE_BODY_STYLE_FIELD_NAME = 'VehicleBodyStyle';
|
|
3261
|
+
public static readonly VEHICLE_BODY_STYLE_FIELD_NAME_NORMALIZED =
|
|
3262
|
+
'AAMVA.RegistrationData.VehicleBodyStyle';
|
|
3263
|
+
public static readonly VEHICLE_COLOR_FIELD_NAME = 'VehicleColor';
|
|
3264
|
+
public static readonly VEHICLE_COLOR_FIELD_NAME_NORMALIZED =
|
|
3265
|
+
'AAMVA.RegistrationData.VehicleColor';
|
|
3266
|
+
public static readonly VEHICLE_IDENTIFICATION_NUMBER_FIELD_NAME = 'VehicleIdentificationNumber';
|
|
3267
|
+
public static readonly VEHICLE_IDENTIFICATION_NUMBER_FIELD_NAME_NORMALIZED =
|
|
3268
|
+
'AAMVA.RegistrationData.VehicleIdentificationNumber';
|
|
3269
|
+
public static readonly VEHICLE_MAKE_FIELD_NAME = 'VehicleMake';
|
|
3270
|
+
public static readonly VEHICLE_MAKE_FIELD_NAME_NORMALIZED =
|
|
3271
|
+
'AAMVA.RegistrationData.VehicleMake';
|
|
3272
|
+
public static readonly VEHICLE_MODEL_FIELD_NAME = 'VehicleModel';
|
|
3273
|
+
public static readonly VEHICLE_MODEL_FIELD_NAME_NORMALIZED =
|
|
3274
|
+
'AAMVA.RegistrationData.VehicleModel';
|
|
3275
|
+
public static readonly VEHICLE_MODEL_YEAR_FIELD_NAME = 'VehicleModelYear';
|
|
3276
|
+
public static readonly VEHICLE_MODEL_YEAR_FIELD_NAME_NORMALIZED =
|
|
3277
|
+
'AAMVA.RegistrationData.VehicleModelYear';
|
|
3278
|
+
public static readonly VEHICLE_USE_FIELD_NAME = 'VehicleUse';
|
|
3279
|
+
public static readonly VEHICLE_USE_FIELD_NAME_NORMALIZED = 'AAMVA.RegistrationData.VehicleUse';
|
|
3280
|
+
|
|
2491
3281
|
constructor(document: GenericDocument) {
|
|
2492
3282
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
2493
3283
|
throw new Error(
|
|
@@ -2499,7 +3289,7 @@ export namespace AAMVA {
|
|
|
2499
3289
|
}
|
|
2500
3290
|
|
|
2501
3291
|
requiredDocumentType(): string {
|
|
2502
|
-
return
|
|
3292
|
+
return AAMVA.RegistrationData.DOCUMENT_TYPE;
|
|
2503
3293
|
}
|
|
2504
3294
|
|
|
2505
3295
|
/** Data element ID "RBK". City portion of the owner’s address. */
|
|
@@ -2623,6 +3413,24 @@ export namespace AAMVA {
|
|
|
2623
3413
|
return this._document;
|
|
2624
3414
|
}
|
|
2625
3415
|
|
|
3416
|
+
public static readonly DOCUMENT_TYPE = 'MotorCarrierData';
|
|
3417
|
+
public static readonly CARRIER_NAME_FIELD_NAME = 'CarrierName';
|
|
3418
|
+
public static readonly CARRIER_NAME_FIELD_NAME_NORMALIZED =
|
|
3419
|
+
'AAMVA.MotorCarrierData.CarrierName';
|
|
3420
|
+
public static readonly CITY_FIELD_NAME = 'City';
|
|
3421
|
+
public static readonly CITY_FIELD_NAME_NORMALIZED = 'AAMVA.MotorCarrierData.City';
|
|
3422
|
+
public static readonly JURISDICTION_FIELD_NAME = 'Jurisdiction';
|
|
3423
|
+
public static readonly JURISDICTION_FIELD_NAME_NORMALIZED =
|
|
3424
|
+
'AAMVA.MotorCarrierData.Jurisdiction';
|
|
3425
|
+
public static readonly STREET_ADDRESS_FIELD_NAME = 'StreetAddress';
|
|
3426
|
+
public static readonly STREET_ADDRESS_FIELD_NAME_NORMALIZED =
|
|
3427
|
+
'AAMVA.MotorCarrierData.StreetAddress';
|
|
3428
|
+
public static readonly USDOT_NUMBER_FIELD_NAME = 'USDOTNumber';
|
|
3429
|
+
public static readonly USDOT_NUMBER_FIELD_NAME_NORMALIZED =
|
|
3430
|
+
'AAMVA.MotorCarrierData.USDOTNumber';
|
|
3431
|
+
public static readonly ZIP_FIELD_NAME = 'Zip';
|
|
3432
|
+
public static readonly ZIP_FIELD_NAME_NORMALIZED = 'AAMVA.MotorCarrierData.Zip';
|
|
3433
|
+
|
|
2626
3434
|
constructor(document: GenericDocument) {
|
|
2627
3435
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
2628
3436
|
throw new Error(
|
|
@@ -2634,7 +3442,7 @@ export namespace AAMVA {
|
|
|
2634
3442
|
}
|
|
2635
3443
|
|
|
2636
3444
|
requiredDocumentType(): string {
|
|
2637
|
-
return
|
|
3445
|
+
return AAMVA.MotorCarrierData.DOCUMENT_TYPE;
|
|
2638
3446
|
}
|
|
2639
3447
|
|
|
2640
3448
|
/** Data element ID "MAA". The name of the carrier responsible for safety. This can be an individual, partnership or corporation responsible for the transportation of persons or property. This is the name that is recognized by law. */
|
|
@@ -2676,6 +3484,64 @@ export namespace AAMVA {
|
|
|
2676
3484
|
return this._document;
|
|
2677
3485
|
}
|
|
2678
3486
|
|
|
3487
|
+
public static readonly DOCUMENT_TYPE = 'RegistrantAndVehicleData';
|
|
3488
|
+
public static readonly ADDRESS_FIELD_NAME = 'Address';
|
|
3489
|
+
public static readonly ADDRESS_FIELD_NAME_NORMALIZED = 'AAMVA.RegistrantAndVehicleData.Address';
|
|
3490
|
+
public static readonly BASE_JURISDICTION_REGISTERED_WEIGHT_FIELD_NAME =
|
|
3491
|
+
'BaseJurisdictionRegisteredWeight';
|
|
3492
|
+
public static readonly BASE_JURISDICTION_REGISTERED_WEIGHT_FIELD_NAME_NORMALIZED =
|
|
3493
|
+
'AAMVA.RegistrantAndVehicleData.BaseJurisdictionRegisteredWeight';
|
|
3494
|
+
public static readonly CARRIER_NAME_REGISTRANT_FIELD_NAME = 'CarrierNameRegistrant';
|
|
3495
|
+
public static readonly CARRIER_NAME_REGISTRANT_FIELD_NAME_NORMALIZED =
|
|
3496
|
+
'AAMVA.RegistrantAndVehicleData.CarrierNameRegistrant';
|
|
3497
|
+
public static readonly CITY_FIELD_NAME = 'City';
|
|
3498
|
+
public static readonly CITY_FIELD_NAME_NORMALIZED = 'AAMVA.RegistrantAndVehicleData.City';
|
|
3499
|
+
public static readonly GROSS_VEHICLE_WEIGHT_FIELD_NAME = 'GrossVehicleWeight';
|
|
3500
|
+
public static readonly GROSS_VEHICLE_WEIGHT_FIELD_NAME_NORMALIZED =
|
|
3501
|
+
'AAMVA.RegistrantAndVehicleData.GrossVehicleWeight';
|
|
3502
|
+
public static readonly JURISDICTION_FIELD_NAME = 'Jurisdiction';
|
|
3503
|
+
public static readonly JURISDICTION_FIELD_NAME_NORMALIZED =
|
|
3504
|
+
'AAMVA.RegistrantAndVehicleData.Jurisdiction';
|
|
3505
|
+
public static readonly MODEL_YEAR_FIELD_NAME = 'ModelYear';
|
|
3506
|
+
public static readonly MODEL_YEAR_FIELD_NAME_NORMALIZED =
|
|
3507
|
+
'AAMVA.RegistrantAndVehicleData.ModelYear';
|
|
3508
|
+
public static readonly NUMBER_OF_SEATS_FIELD_NAME = 'NumberOfSeats';
|
|
3509
|
+
public static readonly NUMBER_OF_SEATS_FIELD_NAME_NORMALIZED =
|
|
3510
|
+
'AAMVA.RegistrantAndVehicleData.NumberOfSeats';
|
|
3511
|
+
public static readonly REGISTRATION_DECAL_NUMBER_FIELD_NAME = 'RegistrationDecalNumber';
|
|
3512
|
+
public static readonly REGISTRATION_DECAL_NUMBER_FIELD_NAME_NORMALIZED =
|
|
3513
|
+
'AAMVA.RegistrantAndVehicleData.RegistrationDecalNumber';
|
|
3514
|
+
public static readonly REGISTRATION_ENFORCEMENT_DATE_FIELD_NAME = 'RegistrationEnforcementDate';
|
|
3515
|
+
public static readonly REGISTRATION_ENFORCEMENT_DATE_FIELD_NAME_NORMALIZED =
|
|
3516
|
+
'AAMVA.RegistrantAndVehicleData.RegistrationEnforcementDate';
|
|
3517
|
+
public static readonly REGISTRATION_EXPIRATION_DATE_FIELD_NAME = 'RegistrationExpirationDate';
|
|
3518
|
+
public static readonly REGISTRATION_EXPIRATION_DATE_FIELD_NAME_NORMALIZED =
|
|
3519
|
+
'AAMVA.RegistrantAndVehicleData.RegistrationExpirationDate';
|
|
3520
|
+
public static readonly REGISTRATION_ISSUE_DATE_FIELD_NAME = 'RegistrationIssueDate';
|
|
3521
|
+
public static readonly REGISTRATION_ISSUE_DATE_FIELD_NAME_NORMALIZED =
|
|
3522
|
+
'AAMVA.RegistrantAndVehicleData.RegistrationIssueDate';
|
|
3523
|
+
public static readonly REGISTRATION_PLATE_NUMBER_FIELD_NAME = 'RegistrationPlateNumber';
|
|
3524
|
+
public static readonly REGISTRATION_PLATE_NUMBER_FIELD_NAME_NORMALIZED =
|
|
3525
|
+
'AAMVA.RegistrantAndVehicleData.RegistrationPlateNumber';
|
|
3526
|
+
public static readonly REGISTRATION_YEAR_FIELD_NAME = 'RegistrationYear';
|
|
3527
|
+
public static readonly REGISTRATION_YEAR_FIELD_NAME_NORMALIZED =
|
|
3528
|
+
'AAMVA.RegistrantAndVehicleData.RegistrationYear';
|
|
3529
|
+
public static readonly TYPE_OF_VEHICLE_FIELD_NAME = 'TypeOfVehicle';
|
|
3530
|
+
public static readonly TYPE_OF_VEHICLE_FIELD_NAME_NORMALIZED =
|
|
3531
|
+
'AAMVA.RegistrantAndVehicleData.TypeOfVehicle';
|
|
3532
|
+
public static readonly UNIT_NUMBER_FIELD_NAME = 'UnitNumber';
|
|
3533
|
+
public static readonly UNIT_NUMBER_FIELD_NAME_NORMALIZED =
|
|
3534
|
+
'AAMVA.RegistrantAndVehicleData.UnitNumber';
|
|
3535
|
+
public static readonly VEHICLE_IDENTIFICATION_NUMBER_FIELD_NAME = 'VehicleIdentificationNumber';
|
|
3536
|
+
public static readonly VEHICLE_IDENTIFICATION_NUMBER_FIELD_NAME_NORMALIZED =
|
|
3537
|
+
'AAMVA.RegistrantAndVehicleData.VehicleIdentificationNumber';
|
|
3538
|
+
public static readonly VEHICLE_MAKE_FIELD_NAME = 'VehicleMake';
|
|
3539
|
+
public static readonly VEHICLE_MAKE_FIELD_NAME_NORMALIZED =
|
|
3540
|
+
'AAMVA.RegistrantAndVehicleData.VehicleMake';
|
|
3541
|
+
public static readonly ZIP_CODE_FIELD_NAME = 'ZipCode';
|
|
3542
|
+
public static readonly ZIP_CODE_FIELD_NAME_NORMALIZED =
|
|
3543
|
+
'AAMVA.RegistrantAndVehicleData.ZipCode';
|
|
3544
|
+
|
|
2679
3545
|
constructor(document: GenericDocument) {
|
|
2680
3546
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
2681
3547
|
throw new Error(
|
|
@@ -2687,7 +3553,7 @@ export namespace AAMVA {
|
|
|
2687
3553
|
}
|
|
2688
3554
|
|
|
2689
3555
|
requiredDocumentType(): string {
|
|
2690
|
-
return
|
|
3556
|
+
return AAMVA.RegistrantAndVehicleData.DOCUMENT_TYPE;
|
|
2691
3557
|
}
|
|
2692
3558
|
|
|
2693
3559
|
/** Data element ID "RBI". The first line of the registrant’s residence address. */
|
|
@@ -2796,6 +3662,74 @@ export namespace AAMVA {
|
|
|
2796
3662
|
return this._document;
|
|
2797
3663
|
}
|
|
2798
3664
|
|
|
3665
|
+
public static readonly DOCUMENT_TYPE = 'VehicleOwnerData';
|
|
3666
|
+
public static readonly FIRST_OWNER_ID_NUMBER_FIELD_NAME = 'FirstOwnerIdNumber';
|
|
3667
|
+
public static readonly FIRST_OWNER_ID_NUMBER_FIELD_NAME_NORMALIZED =
|
|
3668
|
+
'AAMVA.VehicleOwnerData.FirstOwnerIdNumber';
|
|
3669
|
+
public static readonly FIRST_OWNER_LAST_NAME_FIELD_NAME = 'FirstOwnerLastName';
|
|
3670
|
+
public static readonly FIRST_OWNER_LAST_NAME_FIELD_NAME_NORMALIZED =
|
|
3671
|
+
'AAMVA.VehicleOwnerData.FirstOwnerLastName';
|
|
3672
|
+
public static readonly FIRST_OWNER_LEGAL_STATUS_FIELD_NAME = 'FirstOwnerLegalStatus';
|
|
3673
|
+
public static readonly FIRST_OWNER_LEGAL_STATUS_FIELD_NAME_NORMALIZED =
|
|
3674
|
+
'AAMVA.VehicleOwnerData.FirstOwnerLegalStatus';
|
|
3675
|
+
public static readonly FIRST_OWNER_MIDDLE_NAME_FIELD_NAME = 'FirstOwnerMiddleName';
|
|
3676
|
+
public static readonly FIRST_OWNER_MIDDLE_NAME_FIELD_NAME_NORMALIZED =
|
|
3677
|
+
'AAMVA.VehicleOwnerData.FirstOwnerMiddleName';
|
|
3678
|
+
public static readonly FIRST_OWNER_NAME_FIELD_NAME = 'FirstOwnerName';
|
|
3679
|
+
public static readonly FIRST_OWNER_NAME_FIELD_NAME_NORMALIZED =
|
|
3680
|
+
'AAMVA.VehicleOwnerData.FirstOwnerName';
|
|
3681
|
+
public static readonly FIRST_OWNER_TOTAL_NAME_FIELD_NAME = 'FirstOwnerTotalName';
|
|
3682
|
+
public static readonly FIRST_OWNER_TOTAL_NAME_FIELD_NAME_NORMALIZED =
|
|
3683
|
+
'AAMVA.VehicleOwnerData.FirstOwnerTotalName';
|
|
3684
|
+
public static readonly MAILING_ADDRESS_1_FIELD_NAME = 'MailingAddress1';
|
|
3685
|
+
public static readonly MAILING_ADDRESS_1_FIELD_NAME_NORMALIZED =
|
|
3686
|
+
'AAMVA.VehicleOwnerData.MailingAddress1';
|
|
3687
|
+
public static readonly MAILING_ADDRESS_2_FIELD_NAME = 'MailingAddress2';
|
|
3688
|
+
public static readonly MAILING_ADDRESS_2_FIELD_NAME_NORMALIZED =
|
|
3689
|
+
'AAMVA.VehicleOwnerData.MailingAddress2';
|
|
3690
|
+
public static readonly MAILING_CITY_FIELD_NAME = 'MailingCity';
|
|
3691
|
+
public static readonly MAILING_CITY_FIELD_NAME_NORMALIZED =
|
|
3692
|
+
'AAMVA.VehicleOwnerData.MailingCity';
|
|
3693
|
+
public static readonly MAILING_JURISDICTION_CODE_FIELD_NAME = 'MailingJurisdictionCode';
|
|
3694
|
+
public static readonly MAILING_JURISDICTION_CODE_FIELD_NAME_NORMALIZED =
|
|
3695
|
+
'AAMVA.VehicleOwnerData.MailingJurisdictionCode';
|
|
3696
|
+
public static readonly MAILING_ZIP_CODE_FIELD_NAME = 'MailingZipCode';
|
|
3697
|
+
public static readonly MAILING_ZIP_CODE_FIELD_NAME_NORMALIZED =
|
|
3698
|
+
'AAMVA.VehicleOwnerData.MailingZipCode';
|
|
3699
|
+
public static readonly RESIDENCE_ADDRESS_1_FIELD_NAME = 'ResidenceAddress1';
|
|
3700
|
+
public static readonly RESIDENCE_ADDRESS_1_FIELD_NAME_NORMALIZED =
|
|
3701
|
+
'AAMVA.VehicleOwnerData.ResidenceAddress1';
|
|
3702
|
+
public static readonly RESIDENCE_ADDRESS_2_FIELD_NAME = 'ResidenceAddress2';
|
|
3703
|
+
public static readonly RESIDENCE_ADDRESS_2_FIELD_NAME_NORMALIZED =
|
|
3704
|
+
'AAMVA.VehicleOwnerData.ResidenceAddress2';
|
|
3705
|
+
public static readonly RESIDENCE_CITY_FIELD_NAME = 'ResidenceCity';
|
|
3706
|
+
public static readonly RESIDENCE_CITY_FIELD_NAME_NORMALIZED =
|
|
3707
|
+
'AAMVA.VehicleOwnerData.ResidenceCity';
|
|
3708
|
+
public static readonly RESIDENCE_JURISDICTION_CODE_FIELD_NAME = 'ResidenceJurisdictionCode';
|
|
3709
|
+
public static readonly RESIDENCE_JURISDICTION_CODE_FIELD_NAME_NORMALIZED =
|
|
3710
|
+
'AAMVA.VehicleOwnerData.ResidenceJurisdictionCode';
|
|
3711
|
+
public static readonly RESIDENCE_ZIP_CODE_FIELD_NAME = 'ResidenceZipCode';
|
|
3712
|
+
public static readonly RESIDENCE_ZIP_CODE_FIELD_NAME_NORMALIZED =
|
|
3713
|
+
'AAMVA.VehicleOwnerData.ResidenceZipCode';
|
|
3714
|
+
public static readonly SECOND_OWNER_ID_NUMBER_FIELD_NAME = 'SecondOwnerIdNumber';
|
|
3715
|
+
public static readonly SECOND_OWNER_ID_NUMBER_FIELD_NAME_NORMALIZED =
|
|
3716
|
+
'AAMVA.VehicleOwnerData.SecondOwnerIdNumber';
|
|
3717
|
+
public static readonly SECOND_OWNER_LAST_NAME_FIELD_NAME = 'SecondOwnerLastName';
|
|
3718
|
+
public static readonly SECOND_OWNER_LAST_NAME_FIELD_NAME_NORMALIZED =
|
|
3719
|
+
'AAMVA.VehicleOwnerData.SecondOwnerLastName';
|
|
3720
|
+
public static readonly SECOND_OWNER_LEGAL_STATUS_FIELD_NAME = 'SecondOwnerLegalStatus';
|
|
3721
|
+
public static readonly SECOND_OWNER_LEGAL_STATUS_FIELD_NAME_NORMALIZED =
|
|
3722
|
+
'AAMVA.VehicleOwnerData.SecondOwnerLegalStatus';
|
|
3723
|
+
public static readonly SECOND_OWNER_MIDDLE_NAME_FIELD_NAME = 'SecondOwnerMiddleName';
|
|
3724
|
+
public static readonly SECOND_OWNER_MIDDLE_NAME_FIELD_NAME_NORMALIZED =
|
|
3725
|
+
'AAMVA.VehicleOwnerData.SecondOwnerMiddleName';
|
|
3726
|
+
public static readonly SECOND_OWNER_NAME_FIELD_NAME = 'SecondOwnerName';
|
|
3727
|
+
public static readonly SECOND_OWNER_NAME_FIELD_NAME_NORMALIZED =
|
|
3728
|
+
'AAMVA.VehicleOwnerData.SecondOwnerName';
|
|
3729
|
+
public static readonly SECOND_OWNER_TOTAL_NAME_FIELD_NAME = 'SecondOwnerTotalName';
|
|
3730
|
+
public static readonly SECOND_OWNER_TOTAL_NAME_FIELD_NAME_NORMALIZED =
|
|
3731
|
+
'AAMVA.VehicleOwnerData.SecondOwnerTotalName';
|
|
3732
|
+
|
|
2799
3733
|
constructor(document: GenericDocument) {
|
|
2800
3734
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
2801
3735
|
throw new Error(
|
|
@@ -2807,7 +3741,7 @@ export namespace AAMVA {
|
|
|
2807
3741
|
}
|
|
2808
3742
|
|
|
2809
3743
|
requiredDocumentType(): string {
|
|
2810
|
-
return
|
|
3744
|
+
return AAMVA.VehicleOwnerData.DOCUMENT_TYPE;
|
|
2811
3745
|
}
|
|
2812
3746
|
|
|
2813
3747
|
/** Data element ID "NAX". The unique customer number/ID of the first vehicle owner. */
|
|
@@ -2929,6 +3863,79 @@ export namespace AAMVA {
|
|
|
2929
3863
|
return this._document;
|
|
2930
3864
|
}
|
|
2931
3865
|
|
|
3866
|
+
public static readonly DOCUMENT_TYPE = 'VehicleData';
|
|
3867
|
+
public static readonly BODY_STYLE_FIELD_NAME = 'BodyStyle';
|
|
3868
|
+
public static readonly BODY_STYLE_FIELD_NAME_NORMALIZED = 'AAMVA.VehicleData.BodyStyle';
|
|
3869
|
+
public static readonly DATE_JUNKED_FIELD_NAME = 'DateJunked';
|
|
3870
|
+
public static readonly DATE_JUNKED_FIELD_NAME_NORMALIZED = 'AAMVA.VehicleData.DateJunked';
|
|
3871
|
+
public static readonly DATE_RECOVERED_FIELD_NAME = 'DateRecovered';
|
|
3872
|
+
public static readonly DATE_RECOVERED_FIELD_NAME_NORMALIZED = 'AAMVA.VehicleData.DateRecovered';
|
|
3873
|
+
public static readonly DATE_STOLEN_FIELD_NAME = 'DateStolen';
|
|
3874
|
+
public static readonly DATE_STOLEN_FIELD_NAME_NORMALIZED = 'AAMVA.VehicleData.DateStolen';
|
|
3875
|
+
public static readonly ENGINE_DISPLACEMENT_FIELD_NAME = 'EngineDisplacement';
|
|
3876
|
+
public static readonly ENGINE_DISPLACEMENT_FIELD_NAME_NORMALIZED =
|
|
3877
|
+
'AAMVA.VehicleData.EngineDisplacement';
|
|
3878
|
+
public static readonly ENGINE_SIZE_FIELD_NAME = 'EngineSize';
|
|
3879
|
+
public static readonly ENGINE_SIZE_FIELD_NAME_NORMALIZED = 'AAMVA.VehicleData.EngineSize';
|
|
3880
|
+
public static readonly FUEL_TYPE_FIELD_NAME = 'FuelType';
|
|
3881
|
+
public static readonly FUEL_TYPE_FIELD_NAME_NORMALIZED = 'AAMVA.VehicleData.FuelType';
|
|
3882
|
+
public static readonly HORSEPOWER_FIELD_NAME = 'Horsepower';
|
|
3883
|
+
public static readonly HORSEPOWER_FIELD_NAME_NORMALIZED = 'AAMVA.VehicleData.Horsepower';
|
|
3884
|
+
public static readonly IFTA_INDICATOR_FIELD_NAME = 'IFTAIndicator';
|
|
3885
|
+
public static readonly IFTA_INDICATOR_FIELD_NAME_NORMALIZED = 'AAMVA.VehicleData.IFTAIndicator';
|
|
3886
|
+
public static readonly IRP_INDICATOR_FIELD_NAME = 'IRPIndicator';
|
|
3887
|
+
public static readonly IRP_INDICATOR_FIELD_NAME_NORMALIZED = 'AAMVA.VehicleData.IRPIndicator';
|
|
3888
|
+
public static readonly JUNKED_INDICATOR_FIELD_NAME = 'JunkedIndicator';
|
|
3889
|
+
public static readonly JUNKED_INDICATOR_FIELD_NAME_NORMALIZED =
|
|
3890
|
+
'AAMVA.VehicleData.JunkedIndicator';
|
|
3891
|
+
public static readonly MSRP_FIELD_NAME = 'MSRP';
|
|
3892
|
+
public static readonly MSRP_FIELD_NAME_NORMALIZED = 'AAMVA.VehicleData.MSRP';
|
|
3893
|
+
public static readonly MAJOR_CODE_FIELD_NAME = 'MajorCode';
|
|
3894
|
+
public static readonly MAJOR_CODE_FIELD_NAME_NORMALIZED = 'AAMVA.VehicleData.MajorCode';
|
|
3895
|
+
public static readonly MAKE_YEAR_FIELD_NAME = 'MakeYear';
|
|
3896
|
+
public static readonly MAKE_YEAR_FIELD_NAME_NORMALIZED = 'AAMVA.VehicleData.MakeYear';
|
|
3897
|
+
public static readonly MANUFACTURE_GROSS_WEIGHT_FIELD_NAME = 'ManufactureGrossWeight';
|
|
3898
|
+
public static readonly MANUFACTURE_GROSS_WEIGHT_FIELD_NAME_NORMALIZED =
|
|
3899
|
+
'AAMVA.VehicleData.ManufactureGrossWeight';
|
|
3900
|
+
public static readonly MINOR_CODE_FIELD_NAME = 'MinorCode';
|
|
3901
|
+
public static readonly MINOR_CODE_FIELD_NAME_NORMALIZED = 'AAMVA.VehicleData.MinorCode';
|
|
3902
|
+
public static readonly NUMBER_OF_AXLES_FIELD_NAME = 'NumberOfAxles';
|
|
3903
|
+
public static readonly NUMBER_OF_AXLES_FIELD_NAME_NORMALIZED =
|
|
3904
|
+
'AAMVA.VehicleData.NumberOfAxles';
|
|
3905
|
+
public static readonly NUMBER_OF_CYLINDERS_FIELD_NAME = 'NumberOfCylinders';
|
|
3906
|
+
public static readonly NUMBER_OF_CYLINDERS_FIELD_NAME_NORMALIZED =
|
|
3907
|
+
'AAMVA.VehicleData.NumberOfCylinders';
|
|
3908
|
+
public static readonly NUMBER_OF_DOORS_FIELD_NAME = 'NumberOfDoors';
|
|
3909
|
+
public static readonly NUMBER_OF_DOORS_FIELD_NAME_NORMALIZED =
|
|
3910
|
+
'AAMVA.VehicleData.NumberOfDoors';
|
|
3911
|
+
public static readonly STOLEN_INDICATOR_FIELD_NAME = 'StolenIndicator';
|
|
3912
|
+
public static readonly STOLEN_INDICATOR_FIELD_NAME_NORMALIZED =
|
|
3913
|
+
'AAMVA.VehicleData.StolenIndicator';
|
|
3914
|
+
public static readonly TRANSMISSION_CODE_FIELD_NAME = 'TransmissionCode';
|
|
3915
|
+
public static readonly TRANSMISSION_CODE_FIELD_NAME_NORMALIZED =
|
|
3916
|
+
'AAMVA.VehicleData.TransmissionCode';
|
|
3917
|
+
public static readonly UNLADEN_WEIGHT_FIELD_NAME = 'UnladenWeight';
|
|
3918
|
+
public static readonly UNLADEN_WEIGHT_FIELD_NAME_NORMALIZED = 'AAMVA.VehicleData.UnladenWeight';
|
|
3919
|
+
public static readonly VLT_CLAC_FROM_DATE_FIELD_NAME = 'VLTClacFromDate';
|
|
3920
|
+
public static readonly VLT_CLAC_FROM_DATE_FIELD_NAME_NORMALIZED =
|
|
3921
|
+
'AAMVA.VehicleData.VLTClacFromDate';
|
|
3922
|
+
public static readonly VEHICLE_ID_NUMBER_FIELD_NAME = 'VehicleIdNumber';
|
|
3923
|
+
public static readonly VEHICLE_ID_NUMBER_FIELD_NAME_NORMALIZED =
|
|
3924
|
+
'AAMVA.VehicleData.VehicleIdNumber';
|
|
3925
|
+
public static readonly VEHICLE_IDENTIFICATION_NUMBER_FIELD_NAME = 'VehicleIdentificationNumber';
|
|
3926
|
+
public static readonly VEHICLE_IDENTIFICATION_NUMBER_FIELD_NAME_NORMALIZED =
|
|
3927
|
+
'AAMVA.VehicleData.VehicleIdentificationNumber';
|
|
3928
|
+
public static readonly VEHICLE_MAKE_FIELD_NAME = 'VehicleMake';
|
|
3929
|
+
public static readonly VEHICLE_MAKE_FIELD_NAME_NORMALIZED = 'AAMVA.VehicleData.VehicleMake';
|
|
3930
|
+
public static readonly VEHICLE_MODEL_FIELD_NAME = 'VehicleModel';
|
|
3931
|
+
public static readonly VEHICLE_MODEL_FIELD_NAME_NORMALIZED = 'AAMVA.VehicleData.VehicleModel';
|
|
3932
|
+
public static readonly VEHICLE_STATUS_CODE_FIELD_NAME = 'VehicleStatusCode';
|
|
3933
|
+
public static readonly VEHICLE_STATUS_CODE_FIELD_NAME_NORMALIZED =
|
|
3934
|
+
'AAMVA.VehicleData.VehicleStatusCode';
|
|
3935
|
+
public static readonly VEHICLE_TYPE_CODE_FIELD_NAME = 'VehicleTypeCode';
|
|
3936
|
+
public static readonly VEHICLE_TYPE_CODE_FIELD_NAME_NORMALIZED =
|
|
3937
|
+
'AAMVA.VehicleData.VehicleTypeCode';
|
|
3938
|
+
|
|
2932
3939
|
constructor(document: GenericDocument) {
|
|
2933
3940
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
2934
3941
|
throw new Error(
|
|
@@ -2940,7 +3947,7 @@ export namespace AAMVA {
|
|
|
2940
3947
|
}
|
|
2941
3948
|
|
|
2942
3949
|
requiredDocumentType(): string {
|
|
2943
|
-
return
|
|
3950
|
+
return AAMVA.VehicleData.DOCUMENT_TYPE;
|
|
2944
3951
|
}
|
|
2945
3952
|
|
|
2946
3953
|
/** Data element ID "VAO". Vehicle manufacture body style. */
|
|
@@ -3097,6 +4104,51 @@ export namespace AAMVA {
|
|
|
3097
4104
|
return this._document;
|
|
3098
4105
|
}
|
|
3099
4106
|
|
|
4107
|
+
public static readonly DOCUMENT_TYPE = 'VehicleSafetyInspectionData';
|
|
4108
|
+
public static readonly INSPECTION_ADDRESS_FIELD_NAME = 'InspectionAddress';
|
|
4109
|
+
public static readonly INSPECTION_ADDRESS_FIELD_NAME_NORMALIZED =
|
|
4110
|
+
'AAMVA.VehicleSafetyInspectionData.InspectionAddress';
|
|
4111
|
+
public static readonly INSPECTION_AIR_POLLUTION_DEVICE_CONDITIONS_FIELD_NAME =
|
|
4112
|
+
'InspectionAirPollutionDeviceConditions';
|
|
4113
|
+
public static readonly INSPECTION_AIR_POLLUTION_DEVICE_CONDITIONS_FIELD_NAME_NORMALIZED =
|
|
4114
|
+
'AAMVA.VehicleSafetyInspectionData.InspectionAirPollutionDeviceConditions';
|
|
4115
|
+
public static readonly INSPECTION_FACILITY_IDENTIFIER_FIELD_NAME =
|
|
4116
|
+
'InspectionFacilityIdentifier';
|
|
4117
|
+
public static readonly INSPECTION_FACILITY_IDENTIFIER_FIELD_NAME_NORMALIZED =
|
|
4118
|
+
'AAMVA.VehicleSafetyInspectionData.InspectionFacilityIdentifier';
|
|
4119
|
+
public static readonly INSPECTION_FORM_OR_STICKER_NUMBER_CURRENT_FIELD_NAME =
|
|
4120
|
+
'InspectionFormOrStickerNumberCurrent';
|
|
4121
|
+
public static readonly INSPECTION_FORM_OR_STICKER_NUMBER_CURRENT_FIELD_NAME_NORMALIZED =
|
|
4122
|
+
'AAMVA.VehicleSafetyInspectionData.InspectionFormOrStickerNumberCurrent';
|
|
4123
|
+
public static readonly INSPECTION_FORM_OR_STICKER_NUMBER_PREVIOUS_FIELD_NAME =
|
|
4124
|
+
'InspectionFormOrStickerNumberPrevious';
|
|
4125
|
+
public static readonly INSPECTION_FORM_OR_STICKER_NUMBER_PREVIOUS_FIELD_NAME_NORMALIZED =
|
|
4126
|
+
'AAMVA.VehicleSafetyInspectionData.InspectionFormOrStickerNumberPrevious';
|
|
4127
|
+
public static readonly INSPECTION_SMOG_CERTIFICATE_INDICATOR_FIELD_NAME =
|
|
4128
|
+
'InspectionSmogCertificateIndicator';
|
|
4129
|
+
public static readonly INSPECTION_SMOG_CERTIFICATE_INDICATOR_FIELD_NAME_NORMALIZED =
|
|
4130
|
+
'AAMVA.VehicleSafetyInspectionData.InspectionSmogCertificateIndicator';
|
|
4131
|
+
public static readonly INSPECTION_STATION_NUMBER_FIELD_NAME = 'InspectionStationNumber';
|
|
4132
|
+
public static readonly INSPECTION_STATION_NUMBER_FIELD_NAME_NORMALIZED =
|
|
4133
|
+
'AAMVA.VehicleSafetyInspectionData.InspectionStationNumber';
|
|
4134
|
+
public static readonly INSPECTOR_IDENTIFICATION_NUMBER_FIELD_NAME =
|
|
4135
|
+
'InspectorIdentificationNumber';
|
|
4136
|
+
public static readonly INSPECTOR_IDENTIFICATION_NUMBER_FIELD_NAME_NORMALIZED =
|
|
4137
|
+
'AAMVA.VehicleSafetyInspectionData.InspectorIdentificationNumber';
|
|
4138
|
+
public static readonly ODOMETER_READING_AT_INSPECTION_FIELD_NAME =
|
|
4139
|
+
'OdometerReadingAtInspection';
|
|
4140
|
+
public static readonly ODOMETER_READING_AT_INSPECTION_FIELD_NAME_NORMALIZED =
|
|
4141
|
+
'AAMVA.VehicleSafetyInspectionData.OdometerReadingAtInspection';
|
|
4142
|
+
public static readonly VEHICLE_BODY_TYPE_FIELD_NAME = 'VehicleBodyType';
|
|
4143
|
+
public static readonly VEHICLE_BODY_TYPE_FIELD_NAME_NORMALIZED =
|
|
4144
|
+
'AAMVA.VehicleSafetyInspectionData.VehicleBodyType';
|
|
4145
|
+
public static readonly VEHICLE_MAKE_FIELD_NAME = 'VehicleMake';
|
|
4146
|
+
public static readonly VEHICLE_MAKE_FIELD_NAME_NORMALIZED =
|
|
4147
|
+
'AAMVA.VehicleSafetyInspectionData.VehicleMake';
|
|
4148
|
+
public static readonly VEHICLE_MODEL_YEAR_FIELD_NAME = 'VehicleModelYear';
|
|
4149
|
+
public static readonly VEHICLE_MODEL_YEAR_FIELD_NAME_NORMALIZED =
|
|
4150
|
+
'AAMVA.VehicleSafetyInspectionData.VehicleModelYear';
|
|
4151
|
+
|
|
3100
4152
|
constructor(document: GenericDocument) {
|
|
3101
4153
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
3102
4154
|
throw new Error(
|
|
@@ -3108,7 +4160,7 @@ export namespace AAMVA {
|
|
|
3108
4160
|
}
|
|
3109
4161
|
|
|
3110
4162
|
requiredDocumentType(): string {
|
|
3111
|
-
return
|
|
4163
|
+
return AAMVA.VehicleSafetyInspectionData.DOCUMENT_TYPE;
|
|
3112
4164
|
}
|
|
3113
4165
|
|
|
3114
4166
|
/** Data element ID "IAN". The street name and number, city, state and zip code of the inspection facility. */
|
|
@@ -3192,6 +4244,249 @@ export namespace AAMVA {
|
|
|
3192
4244
|
return this._document;
|
|
3193
4245
|
}
|
|
3194
4246
|
|
|
4247
|
+
public static readonly ADDRESS_CITY_FIELD_NAME = 'AddressCity';
|
|
4248
|
+
public static readonly ADDRESS_CITY_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.AddressCity';
|
|
4249
|
+
public static readonly ADDRESS_JURISDICTION_CODE_FIELD_NAME = 'AddressJurisdictionCode';
|
|
4250
|
+
public static readonly ADDRESS_JURISDICTION_CODE_FIELD_NAME_NORMALIZED =
|
|
4251
|
+
'AAMVA.DLID.AddressJurisdictionCode';
|
|
4252
|
+
public static readonly ADDRESS_POSTAL_CODE_FIELD_NAME = 'AddressPostalCode';
|
|
4253
|
+
public static readonly ADDRESS_POSTAL_CODE_FIELD_NAME_NORMALIZED =
|
|
4254
|
+
'AAMVA.DLID.AddressPostalCode';
|
|
4255
|
+
public static readonly ADDRESS_STREET_1_FIELD_NAME = 'AddressStreet1';
|
|
4256
|
+
public static readonly ADDRESS_STREET_1_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.AddressStreet1';
|
|
4257
|
+
public static readonly ADDRESS_STREET_2_FIELD_NAME = 'AddressStreet2';
|
|
4258
|
+
public static readonly ADDRESS_STREET_2_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.AddressStreet2';
|
|
4259
|
+
public static readonly ADULT_INFORMATION_FIELD_NAME = 'AdultInformation';
|
|
4260
|
+
public static readonly ADULT_INFORMATION_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.AdultInformation';
|
|
4261
|
+
public static readonly ALIAS_FAMILY_NAME_FIELD_NAME = 'AliasFamilyName';
|
|
4262
|
+
public static readonly ALIAS_FAMILY_NAME_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.AliasFamilyName';
|
|
4263
|
+
public static readonly ALIAS_GIVEN_NAME_FIELD_NAME = 'AliasGivenName';
|
|
4264
|
+
public static readonly ALIAS_GIVEN_NAME_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.AliasGivenName';
|
|
4265
|
+
public static readonly ALIAS_MIDDLE_NAME_FIELD_NAME = 'AliasMiddleName';
|
|
4266
|
+
public static readonly ALIAS_MIDDLE_NAME_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.AliasMiddleName';
|
|
4267
|
+
public static readonly ALIAS_PREFIX_NAME_FIELD_NAME = 'AliasPrefixName';
|
|
4268
|
+
public static readonly ALIAS_PREFIX_NAME_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.AliasPrefixName';
|
|
4269
|
+
public static readonly ALIAS_SUFFIX_NAME_FIELD_NAME = 'AliasSuffixName';
|
|
4270
|
+
public static readonly ALIAS_SUFFIX_NAME_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.AliasSuffixName';
|
|
4271
|
+
public static readonly CARD_REVISION_DATE_FIELD_NAME = 'CardRevisionDate';
|
|
4272
|
+
public static readonly CARD_REVISION_DATE_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.CardRevisionDate';
|
|
4273
|
+
public static readonly COMPLIANCE_TYPE_FIELD_NAME = 'ComplianceType';
|
|
4274
|
+
public static readonly COMPLIANCE_TYPE_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.ComplianceType';
|
|
4275
|
+
public static readonly COUNTRY_IDENTIFICATION_FIELD_NAME = 'CountryIdentification';
|
|
4276
|
+
public static readonly COUNTRY_IDENTIFICATION_FIELD_NAME_NORMALIZED =
|
|
4277
|
+
'AAMVA.DLID.CountryIdentification';
|
|
4278
|
+
public static readonly CUSTOMER_FAMILY_NAME_FIELD_NAME = 'CustomerFamilyName';
|
|
4279
|
+
public static readonly CUSTOMER_FAMILY_NAME_FIELD_NAME_NORMALIZED =
|
|
4280
|
+
'AAMVA.DLID.CustomerFamilyName';
|
|
4281
|
+
public static readonly CUSTOMER_FIRST_NAME_FIELD_NAME = 'CustomerFirstName';
|
|
4282
|
+
public static readonly CUSTOMER_FIRST_NAME_FIELD_NAME_NORMALIZED =
|
|
4283
|
+
'AAMVA.DLID.CustomerFirstName';
|
|
4284
|
+
public static readonly CUSTOMER_GIVEN_NAMES_FIELD_NAME = 'CustomerGivenNames';
|
|
4285
|
+
public static readonly CUSTOMER_GIVEN_NAMES_FIELD_NAME_NORMALIZED =
|
|
4286
|
+
'AAMVA.DLID.CustomerGivenNames';
|
|
4287
|
+
public static readonly CUSTOMER_ID_NUMBER_FIELD_NAME = 'CustomerIdNumber';
|
|
4288
|
+
public static readonly CUSTOMER_ID_NUMBER_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.CustomerIdNumber';
|
|
4289
|
+
public static readonly CUSTOMER_MIDDLE_NAME_FIELD_NAME = 'CustomerMiddleName';
|
|
4290
|
+
public static readonly CUSTOMER_MIDDLE_NAME_FIELD_NAME_NORMALIZED =
|
|
4291
|
+
'AAMVA.DLID.CustomerMiddleName';
|
|
4292
|
+
public static readonly DATE_OF_BIRTH_FIELD_NAME = 'DateOfBirth';
|
|
4293
|
+
public static readonly DATE_OF_BIRTH_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.DateOfBirth';
|
|
4294
|
+
public static readonly DOCUMENT_DISCRIMINATOR_FIELD_NAME = 'DocumentDiscriminator';
|
|
4295
|
+
public static readonly DOCUMENT_DISCRIMINATOR_FIELD_NAME_NORMALIZED =
|
|
4296
|
+
'AAMVA.DLID.DocumentDiscriminator';
|
|
4297
|
+
public static readonly DOCUMENT_EXPIRATION_DATE_FIELD_NAME = 'DocumentExpirationDate';
|
|
4298
|
+
public static readonly DOCUMENT_EXPIRATION_DATE_FIELD_NAME_NORMALIZED =
|
|
4299
|
+
'AAMVA.DLID.DocumentExpirationDate';
|
|
4300
|
+
public static readonly DOCUMENT_ISSUE_DATE_FIELD_NAME = 'DocumentIssueDate';
|
|
4301
|
+
public static readonly DOCUMENT_ISSUE_DATE_FIELD_NAME_NORMALIZED =
|
|
4302
|
+
'AAMVA.DLID.DocumentIssueDate';
|
|
4303
|
+
public static readonly DRIVER_ALIAS_DATE_OF_BIRTH_FIELD_FIELD_NAME =
|
|
4304
|
+
'DriverAliasDateOfBirthField';
|
|
4305
|
+
public static readonly DRIVER_ALIAS_DATE_OF_BIRTH_FIELD_FIELD_NAME_NORMALIZED =
|
|
4306
|
+
'AAMVA.DLID.DriverAliasDateOfBirthField';
|
|
4307
|
+
public static readonly DRIVER_ALIAS_FIRST_NAME_FIELD_NAME = 'DriverAliasFirstName';
|
|
4308
|
+
public static readonly DRIVER_ALIAS_FIRST_NAME_FIELD_NAME_NORMALIZED =
|
|
4309
|
+
'AAMVA.DLID.DriverAliasFirstName';
|
|
4310
|
+
public static readonly DRIVER_ALIAS_LAST_NAME_FIELD_NAME = 'DriverAliasLastName';
|
|
4311
|
+
public static readonly DRIVER_ALIAS_LAST_NAME_FIELD_NAME_NORMALIZED =
|
|
4312
|
+
'AAMVA.DLID.DriverAliasLastName';
|
|
4313
|
+
public static readonly DRIVER_ALIAS_SOCIAL_SECURITY_NUMBER_FIELD_NAME =
|
|
4314
|
+
'DriverAliasSocialSecurityNumber';
|
|
4315
|
+
public static readonly DRIVER_ALIAS_SOCIAL_SECURITY_NUMBER_FIELD_NAME_NORMALIZED =
|
|
4316
|
+
'AAMVA.DLID.DriverAliasSocialSecurityNumber';
|
|
4317
|
+
public static readonly DRIVER_LAST_NAME_FIELD_NAME = 'DriverLastName';
|
|
4318
|
+
public static readonly DRIVER_LAST_NAME_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.DriverLastName';
|
|
4319
|
+
public static readonly DRIVER_LICENSE_CLASSIFICATION_CODE_FIELD_NAME =
|
|
4320
|
+
'DriverLicenseClassificationCode';
|
|
4321
|
+
public static readonly DRIVER_LICENSE_CLASSIFICATION_CODE_FIELD_NAME_NORMALIZED =
|
|
4322
|
+
'AAMVA.DLID.DriverLicenseClassificationCode';
|
|
4323
|
+
public static readonly DRIVER_LICENSE_ENDORSEMENTS_CODE_FIELD_NAME =
|
|
4324
|
+
'DriverLicenseEndorsementsCode';
|
|
4325
|
+
public static readonly DRIVER_LICENSE_ENDORSEMENTS_CODE_FIELD_NAME_NORMALIZED =
|
|
4326
|
+
'AAMVA.DLID.DriverLicenseEndorsementsCode';
|
|
4327
|
+
public static readonly DRIVER_LICENSE_NAME_FIELD_NAME = 'DriverLicenseName';
|
|
4328
|
+
public static readonly DRIVER_LICENSE_NAME_FIELD_NAME_NORMALIZED =
|
|
4329
|
+
'AAMVA.DLID.DriverLicenseName';
|
|
4330
|
+
public static readonly DRIVER_LICENSE_RESTRICTION_CODE_FIELD_NAME =
|
|
4331
|
+
'DriverLicenseRestrictionCode';
|
|
4332
|
+
public static readonly DRIVER_LICENSE_RESTRICTION_CODE_FIELD_NAME_NORMALIZED =
|
|
4333
|
+
'AAMVA.DLID.DriverLicenseRestrictionCode';
|
|
4334
|
+
public static readonly DRIVER_NAME_PREFIX_FIELD_NAME = 'DriverNamePrefix';
|
|
4335
|
+
public static readonly DRIVER_NAME_PREFIX_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.DriverNamePrefix';
|
|
4336
|
+
public static readonly DRIVER_NAME_SUFFIX_FIELD_NAME = 'DriverNameSuffix';
|
|
4337
|
+
public static readonly DRIVER_NAME_SUFFIX_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.DriverNameSuffix';
|
|
4338
|
+
public static readonly DRIVER_PERMIT_CLASSIFICATION_CODE_FIELD_NAME =
|
|
4339
|
+
'DriverPermitClassificationCode';
|
|
4340
|
+
public static readonly DRIVER_PERMIT_CLASSIFICATION_CODE_FIELD_NAME_NORMALIZED =
|
|
4341
|
+
'AAMVA.DLID.DriverPermitClassificationCode';
|
|
4342
|
+
public static readonly DRIVER_PERMIT_ENDORSEMENT_CODE_FIELD_NAME =
|
|
4343
|
+
'DriverPermitEndorsementCode';
|
|
4344
|
+
public static readonly DRIVER_PERMIT_ENDORSEMENT_CODE_FIELD_NAME_NORMALIZED =
|
|
4345
|
+
'AAMVA.DLID.DriverPermitEndorsementCode';
|
|
4346
|
+
public static readonly DRIVER_PERMIT_ISSUE_DATE_FIELD_NAME = 'DriverPermitIssueDate';
|
|
4347
|
+
public static readonly DRIVER_PERMIT_ISSUE_DATE_FIELD_NAME_NORMALIZED =
|
|
4348
|
+
'AAMVA.DLID.DriverPermitIssueDate';
|
|
4349
|
+
public static readonly DRIVER_PERMIT_RESTRICTION_CODE_FIELD_NAME =
|
|
4350
|
+
'DriverPermitRestrictionCode';
|
|
4351
|
+
public static readonly DRIVER_PERMIT_RESTRICTION_CODE_FIELD_NAME_NORMALIZED =
|
|
4352
|
+
'AAMVA.DLID.DriverPermitRestrictionCode';
|
|
4353
|
+
public static readonly DRIVER_RESIDENCE_CITY_FIELD_NAME = 'DriverResidenceCity';
|
|
4354
|
+
public static readonly DRIVER_RESIDENCE_CITY_FIELD_NAME_NORMALIZED =
|
|
4355
|
+
'AAMVA.DLID.DriverResidenceCity';
|
|
4356
|
+
public static readonly DRIVER_RESIDENCE_JURISDICTION_CODE_FIELD_NAME =
|
|
4357
|
+
'DriverResidenceJurisdictionCode';
|
|
4358
|
+
public static readonly DRIVER_RESIDENCE_JURISDICTION_CODE_FIELD_NAME_NORMALIZED =
|
|
4359
|
+
'AAMVA.DLID.DriverResidenceJurisdictionCode';
|
|
4360
|
+
public static readonly DRIVER_RESIDENCE_POSTAL_CODE_FIELD_NAME = 'DriverResidencePostalCode';
|
|
4361
|
+
public static readonly DRIVER_RESIDENCE_POSTAL_CODE_FIELD_NAME_NORMALIZED =
|
|
4362
|
+
'AAMVA.DLID.DriverResidencePostalCode';
|
|
4363
|
+
public static readonly DRIVER_RESIDENCE_STREET_ADDRESS_1_FIELD_NAME =
|
|
4364
|
+
'DriverResidenceStreetAddress1';
|
|
4365
|
+
public static readonly DRIVER_RESIDENCE_STREET_ADDRESS_1_FIELD_NAME_NORMALIZED =
|
|
4366
|
+
'AAMVA.DLID.DriverResidenceStreetAddress1';
|
|
4367
|
+
public static readonly DRIVER_RESIDENCE_STREET_ADDRESS_2_FIELD_NAME =
|
|
4368
|
+
'DriverResidenceStreetAddress2';
|
|
4369
|
+
public static readonly DRIVER_RESIDENCE_STREET_ADDRESS_2_FIELD_NAME_NORMALIZED =
|
|
4370
|
+
'AAMVA.DLID.DriverResidenceStreetAddress2';
|
|
4371
|
+
public static readonly FAMILY_NAME_TRUNCATION_FIELD_NAME = 'FamilyNameTruncation';
|
|
4372
|
+
public static readonly FAMILY_NAME_TRUNCATION_FIELD_NAME_NORMALIZED =
|
|
4373
|
+
'AAMVA.DLID.FamilyNameTruncation';
|
|
4374
|
+
public static readonly FEDERAL_COMMERCIAL_VEHICLE_CODES_FIELD_NAME =
|
|
4375
|
+
'FederalCommercialVehicleCodes';
|
|
4376
|
+
public static readonly FEDERAL_COMMERCIAL_VEHICLE_CODES_FIELD_NAME_NORMALIZED =
|
|
4377
|
+
'AAMVA.DLID.FederalCommercialVehicleCodes';
|
|
4378
|
+
public static readonly FIRST_NAME_TRUNCATION_FIELD_NAME = 'FirstNameTruncation';
|
|
4379
|
+
public static readonly FIRST_NAME_TRUNCATION_FIELD_NAME_NORMALIZED =
|
|
4380
|
+
'AAMVA.DLID.FirstNameTruncation';
|
|
4381
|
+
public static readonly HAZMAT_ENDORSEMENT_EXPIRATION_DATE_FIELD_NAME =
|
|
4382
|
+
'HAZMATEndorsementExpirationDate';
|
|
4383
|
+
public static readonly HAZMAT_ENDORSEMENT_EXPIRATION_DATE_FIELD_NAME_NORMALIZED =
|
|
4384
|
+
'AAMVA.DLID.HAZMATEndorsementExpirationDate';
|
|
4385
|
+
public static readonly HAIR_COLOR_FIELD_NAME = 'HairColor';
|
|
4386
|
+
public static readonly HAIR_COLOR_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.HairColor';
|
|
4387
|
+
public static readonly HEIGHT_FIELD_NAME = 'Height';
|
|
4388
|
+
public static readonly HEIGHT_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.Height';
|
|
4389
|
+
public static readonly INVENTORY_CONTROL_NUMBER_FIELD_NAME = 'InventoryControlNumber';
|
|
4390
|
+
public static readonly INVENTORY_CONTROL_NUMBER_FIELD_NAME_NORMALIZED =
|
|
4391
|
+
'AAMVA.DLID.InventoryControlNumber';
|
|
4392
|
+
public static readonly ISSUE_TIME_STAMP_FIELD_NAME = 'IssueTimeStamp';
|
|
4393
|
+
public static readonly ISSUE_TIME_STAMP_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.IssueTimeStamp';
|
|
4394
|
+
public static readonly JURISDICTION_SPECIFIC_ENDORSEMENT_CODE_DESCRIPTION_FIELD_NAME =
|
|
4395
|
+
'JurisdictionSpecificEndorsementCodeDescription';
|
|
4396
|
+
public static readonly JURISDICTION_SPECIFIC_ENDORSEMENT_CODE_DESCRIPTION_FIELD_NAME_NORMALIZED =
|
|
4397
|
+
'AAMVA.DLID.JurisdictionSpecificEndorsementCodeDescription';
|
|
4398
|
+
public static readonly JURISDICTION_SPECIFIC_ENDORSEMENT_CODES_FIELD_NAME =
|
|
4399
|
+
'JurisdictionSpecificEndorsementCodes';
|
|
4400
|
+
public static readonly JURISDICTION_SPECIFIC_ENDORSEMENT_CODES_FIELD_NAME_NORMALIZED =
|
|
4401
|
+
'AAMVA.DLID.JurisdictionSpecificEndorsementCodes';
|
|
4402
|
+
public static readonly JURISDICTION_SPECIFIC_RESTRICTION_CODE_DESCRIPTION_FIELD_NAME =
|
|
4403
|
+
'JurisdictionSpecificRestrictionCodeDescription';
|
|
4404
|
+
public static readonly JURISDICTION_SPECIFIC_RESTRICTION_CODE_DESCRIPTION_FIELD_NAME_NORMALIZED =
|
|
4405
|
+
'AAMVA.DLID.JurisdictionSpecificRestrictionCodeDescription';
|
|
4406
|
+
public static readonly JURISDICTION_SPECIFIC_RESTRICTION_CODES_FIELD_NAME =
|
|
4407
|
+
'JurisdictionSpecificRestrictionCodes';
|
|
4408
|
+
public static readonly JURISDICTION_SPECIFIC_RESTRICTION_CODES_FIELD_NAME_NORMALIZED =
|
|
4409
|
+
'AAMVA.DLID.JurisdictionSpecificRestrictionCodes';
|
|
4410
|
+
public static readonly JURISDICTION_SPECIFIC_VEHICLE_CLASS_FIELD_NAME =
|
|
4411
|
+
'JurisdictionSpecificVehicleClass';
|
|
4412
|
+
public static readonly JURISDICTION_SPECIFIC_VEHICLE_CLASS_FIELD_NAME_NORMALIZED =
|
|
4413
|
+
'AAMVA.DLID.JurisdictionSpecificVehicleClass';
|
|
4414
|
+
public static readonly JURISDICTION_SPECIFIC_VEHICLE_CLASSIFICATION_DESCRIPTION_FIELD_NAME =
|
|
4415
|
+
'JurisdictionSpecificVehicleClassificationDescription';
|
|
4416
|
+
public static readonly JURISDICTION_SPECIFIC_VEHICLE_CLASSIFICATION_DESCRIPTION_FIELD_NAME_NORMALIZED =
|
|
4417
|
+
'AAMVA.DLID.JurisdictionSpecificVehicleClassificationDescription';
|
|
4418
|
+
public static readonly LIMITED_DURATION_DOCUMENT_INDICATOR_FIELD_NAME =
|
|
4419
|
+
'LimitedDurationDocumentIndicator';
|
|
4420
|
+
public static readonly LIMITED_DURATION_DOCUMENT_INDICATOR_FIELD_NAME_NORMALIZED =
|
|
4421
|
+
'AAMVA.DLID.LimitedDurationDocumentIndicator';
|
|
4422
|
+
public static readonly MIDDLE_NAME_TRUNCATION_FIELD_NAME = 'MiddleNameTruncation';
|
|
4423
|
+
public static readonly MIDDLE_NAME_TRUNCATION_FIELD_NAME_NORMALIZED =
|
|
4424
|
+
'AAMVA.DLID.MiddleNameTruncation';
|
|
4425
|
+
public static readonly NAME_SUFFIX_FIELD_NAME = 'NameSuffix';
|
|
4426
|
+
public static readonly NAME_SUFFIX_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.NameSuffix';
|
|
4427
|
+
public static readonly NON_RESIDENT_INDICATOR_FIELD_NAME = 'NonResidentIndicator';
|
|
4428
|
+
public static readonly NON_RESIDENT_INDICATOR_FIELD_NAME_NORMALIZED =
|
|
4429
|
+
'AAMVA.DLID.NonResidentIndicator';
|
|
4430
|
+
public static readonly NUMBER_OF_DUPLICATES_FIELD_NAME = 'NumberOfDuplicates';
|
|
4431
|
+
public static readonly NUMBER_OF_DUPLICATES_FIELD_NAME_NORMALIZED =
|
|
4432
|
+
'AAMVA.DLID.NumberOfDuplicates';
|
|
4433
|
+
public static readonly ORGAN_DONOR_FIELD_NAME = 'OrganDonor';
|
|
4434
|
+
public static readonly ORGAN_DONOR_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.OrganDonor';
|
|
4435
|
+
public static readonly ORGAN_DONOR_INDICATOR_FIELD_NAME = 'OrganDonorIndicator';
|
|
4436
|
+
public static readonly ORGAN_DONOR_INDICATOR_FIELD_NAME_NORMALIZED =
|
|
4437
|
+
'AAMVA.DLID.OrganDonorIndicator';
|
|
4438
|
+
public static readonly PERMIT_EXPIRATION_DATE_FIELD_NAME = 'PermitExpirationDate';
|
|
4439
|
+
public static readonly PERMIT_EXPIRATION_DATE_FIELD_NAME_NORMALIZED =
|
|
4440
|
+
'AAMVA.DLID.PermitExpirationDate';
|
|
4441
|
+
public static readonly PERMIT_IDENTIFIER_FIELD_NAME = 'PermitIdentifier';
|
|
4442
|
+
public static readonly PERMIT_IDENTIFIER_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.PermitIdentifier';
|
|
4443
|
+
public static readonly PHYSICAL_DESCRIPTION_EYE_COLOR_FIELD_NAME =
|
|
4444
|
+
'PhysicalDescriptionEyeColor';
|
|
4445
|
+
public static readonly PHYSICAL_DESCRIPTION_EYE_COLOR_FIELD_NAME_NORMALIZED =
|
|
4446
|
+
'AAMVA.DLID.PhysicalDescriptionEyeColor';
|
|
4447
|
+
public static readonly PHYSICAL_DESCRIPTION_HEIGHT_FIELD_NAME = 'PhysicalDescriptionHeight';
|
|
4448
|
+
public static readonly PHYSICAL_DESCRIPTION_HEIGHT_FIELD_NAME_NORMALIZED =
|
|
4449
|
+
'AAMVA.DLID.PhysicalDescriptionHeight';
|
|
4450
|
+
public static readonly PHYSICAL_DESCRIPTION_SEX_FIELD_NAME = 'PhysicalDescriptionSex';
|
|
4451
|
+
public static readonly PHYSICAL_DESCRIPTION_SEX_FIELD_NAME_NORMALIZED =
|
|
4452
|
+
'AAMVA.DLID.PhysicalDescriptionSex';
|
|
4453
|
+
public static readonly PHYSICAL_DESCRIPTION_WEIGHT_RANGE_FIELD_NAME =
|
|
4454
|
+
'PhysicalDescriptionWeightRange';
|
|
4455
|
+
public static readonly PHYSICAL_DESCRIPTION_WEIGHT_RANGE_FIELD_NAME_NORMALIZED =
|
|
4456
|
+
'AAMVA.DLID.PhysicalDescriptionWeightRange';
|
|
4457
|
+
public static readonly PLACE_OF_BIRTH_FIELD_NAME = 'PlaceOfBirth';
|
|
4458
|
+
public static readonly PLACE_OF_BIRTH_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.PlaceOfBirth';
|
|
4459
|
+
public static readonly RACE_ETHNICITY_FIELD_NAME = 'RaceEthnicity';
|
|
4460
|
+
public static readonly RACE_ETHNICITY_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.RaceEthnicity';
|
|
4461
|
+
public static readonly SOCIAL_SECURITY_NUMBER_FIELD_NAME = 'SocialSecurityNumber';
|
|
4462
|
+
public static readonly SOCIAL_SECURITY_NUMBER_FIELD_NAME_NORMALIZED =
|
|
4463
|
+
'AAMVA.DLID.SocialSecurityNumber';
|
|
4464
|
+
public static readonly STANDARD_ENDORSEMENT_CODE_FIELD_NAME = 'StandardEndorsementCode';
|
|
4465
|
+
public static readonly STANDARD_ENDORSEMENT_CODE_FIELD_NAME_NORMALIZED =
|
|
4466
|
+
'AAMVA.DLID.StandardEndorsementCode';
|
|
4467
|
+
public static readonly STANDARD_RESTRICTION_CODE_FIELD_NAME = 'StandardRestrictionCode';
|
|
4468
|
+
public static readonly STANDARD_RESTRICTION_CODE_FIELD_NAME_NORMALIZED =
|
|
4469
|
+
'AAMVA.DLID.StandardRestrictionCode';
|
|
4470
|
+
public static readonly STANDARD_VEHICLE_CLASSIFICATION_FIELD_NAME =
|
|
4471
|
+
'StandardVehicleClassification';
|
|
4472
|
+
public static readonly STANDARD_VEHICLE_CLASSIFICATION_FIELD_NAME_NORMALIZED =
|
|
4473
|
+
'AAMVA.DLID.StandardVehicleClassification';
|
|
4474
|
+
public static readonly UNDER_18_UNTIL_FIELD_NAME = 'Under18Until';
|
|
4475
|
+
public static readonly UNDER_18_UNTIL_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.Under18Until';
|
|
4476
|
+
public static readonly UNDER_19_UNTIL_FIELD_NAME = 'Under19Until';
|
|
4477
|
+
public static readonly UNDER_19_UNTIL_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.Under19Until';
|
|
4478
|
+
public static readonly UNDER_21_UNTIL_FIELD_NAME = 'Under21Until';
|
|
4479
|
+
public static readonly UNDER_21_UNTIL_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.Under21Until';
|
|
4480
|
+
public static readonly UNIQUE_CUSTOMER_IDENTIFIER_FIELD_NAME = 'UniqueCustomerIdentifier';
|
|
4481
|
+
public static readonly UNIQUE_CUSTOMER_IDENTIFIER_FIELD_NAME_NORMALIZED =
|
|
4482
|
+
'AAMVA.DLID.UniqueCustomerIdentifier';
|
|
4483
|
+
public static readonly VETERAN_INDICATOR_FIELD_NAME = 'VeteranIndicator';
|
|
4484
|
+
public static readonly VETERAN_INDICATOR_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.VeteranIndicator';
|
|
4485
|
+
public static readonly WEIGHT_KILOGRAMS_FIELD_NAME = 'WeightKilograms';
|
|
4486
|
+
public static readonly WEIGHT_KILOGRAMS_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.WeightKilograms';
|
|
4487
|
+
public static readonly WEIGHT_POUNDS_FIELD_NAME = 'WeightPounds';
|
|
4488
|
+
public static readonly WEIGHT_POUNDS_FIELD_NAME_NORMALIZED = 'AAMVA.DLID.WeightPounds';
|
|
4489
|
+
|
|
3195
4490
|
constructor(document: GenericDocument) {
|
|
3196
4491
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
3197
4492
|
throw new Error(
|
|
@@ -3660,34 +4955,40 @@ export namespace AAMVA {
|
|
|
3660
4955
|
|
|
3661
4956
|
/** Driver License. File type "DL". */
|
|
3662
4957
|
export class DriverLicense extends DLID {
|
|
4958
|
+
public static readonly DOCUMENT_TYPE = 'DriverLicense';
|
|
4959
|
+
|
|
3663
4960
|
constructor(document: GenericDocument) {
|
|
3664
4961
|
super(document);
|
|
3665
4962
|
}
|
|
3666
4963
|
|
|
3667
4964
|
requiredDocumentType(): string {
|
|
3668
|
-
return
|
|
4965
|
+
return AAMVA.DriverLicense.DOCUMENT_TYPE;
|
|
3669
4966
|
}
|
|
3670
4967
|
}
|
|
3671
4968
|
|
|
3672
4969
|
/** ID Card. File type "ID". */
|
|
3673
4970
|
export class IDCard extends DLID {
|
|
4971
|
+
public static readonly DOCUMENT_TYPE = 'IDCard';
|
|
4972
|
+
|
|
3674
4973
|
constructor(document: GenericDocument) {
|
|
3675
4974
|
super(document);
|
|
3676
4975
|
}
|
|
3677
4976
|
|
|
3678
4977
|
requiredDocumentType(): string {
|
|
3679
|
-
return
|
|
4978
|
+
return AAMVA.IDCard.DOCUMENT_TYPE;
|
|
3680
4979
|
}
|
|
3681
4980
|
}
|
|
3682
4981
|
|
|
3683
4982
|
/** Enhanced Driver License. File type "EN". */
|
|
3684
4983
|
export class EnhancedDriverLicense extends DLID {
|
|
4984
|
+
public static readonly DOCUMENT_TYPE = 'EnhancedDriverLicense';
|
|
4985
|
+
|
|
3685
4986
|
constructor(document: GenericDocument) {
|
|
3686
4987
|
super(document);
|
|
3687
4988
|
}
|
|
3688
4989
|
|
|
3689
4990
|
requiredDocumentType(): string {
|
|
3690
|
-
return
|
|
4991
|
+
return AAMVA.EnhancedDriverLicense.DOCUMENT_TYPE;
|
|
3691
4992
|
}
|
|
3692
4993
|
}
|
|
3693
4994
|
|
|
@@ -3699,6 +5000,8 @@ export namespace AAMVA {
|
|
|
3699
5000
|
return this._document;
|
|
3700
5001
|
}
|
|
3701
5002
|
|
|
5003
|
+
public static readonly DOCUMENT_TYPE = 'RawDocument';
|
|
5004
|
+
|
|
3702
5005
|
constructor(document: GenericDocument) {
|
|
3703
5006
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
3704
5007
|
throw new Error(
|
|
@@ -3710,7 +5013,7 @@ export namespace AAMVA {
|
|
|
3710
5013
|
}
|
|
3711
5014
|
|
|
3712
5015
|
requiredDocumentType(): string {
|
|
3713
|
-
return
|
|
5016
|
+
return AAMVA.RawDocument.DOCUMENT_TYPE;
|
|
3714
5017
|
}
|
|
3715
5018
|
}
|
|
3716
5019
|
}
|
|
@@ -3723,6 +5026,41 @@ export class HIBC {
|
|
|
3723
5026
|
return this._document;
|
|
3724
5027
|
}
|
|
3725
5028
|
|
|
5029
|
+
public static readonly DOCUMENT_TYPE = 'HIBC';
|
|
5030
|
+
public static readonly DATE_OF_MANUFACTURE_FIELD_NAME = 'DateOfManufacture';
|
|
5031
|
+
public static readonly DATE_OF_MANUFACTURE_FIELD_NAME_NORMALIZED = 'HIBC.DateOfManufacture';
|
|
5032
|
+
public static readonly EXPIRY_DATE_DAY_FIELD_NAME = 'ExpiryDateDay';
|
|
5033
|
+
public static readonly EXPIRY_DATE_DAY_FIELD_NAME_NORMALIZED = 'HIBC.ExpiryDateDay';
|
|
5034
|
+
public static readonly EXPIRY_DATE_HOUR_FIELD_NAME = 'ExpiryDateHour';
|
|
5035
|
+
public static readonly EXPIRY_DATE_HOUR_FIELD_NAME_NORMALIZED = 'HIBC.ExpiryDateHour';
|
|
5036
|
+
public static readonly EXPIRY_DATE_JULIAN_DAY_FIELD_NAME = 'ExpiryDateJulianDay';
|
|
5037
|
+
public static readonly EXPIRY_DATE_JULIAN_DAY_FIELD_NAME_NORMALIZED = 'HIBC.ExpiryDateJulianDay';
|
|
5038
|
+
public static readonly EXPIRY_DATE_MONTH_FIELD_NAME = 'ExpiryDateMonth';
|
|
5039
|
+
public static readonly EXPIRY_DATE_MONTH_FIELD_NAME_NORMALIZED = 'HIBC.ExpiryDateMonth';
|
|
5040
|
+
public static readonly EXPIRY_DATE_YEAR_FIELD_NAME = 'ExpiryDateYear';
|
|
5041
|
+
public static readonly EXPIRY_DATE_YEAR_FIELD_NAME_NORMALIZED = 'HIBC.ExpiryDateYear';
|
|
5042
|
+
public static readonly HAS_PRIMARY_DATA_FIELD_NAME = 'HasPrimaryData';
|
|
5043
|
+
public static readonly HAS_PRIMARY_DATA_FIELD_NAME_NORMALIZED = 'HIBC.HasPrimaryData';
|
|
5044
|
+
public static readonly HAS_SECONDARY_DATA_FIELD_NAME = 'HasSecondaryData';
|
|
5045
|
+
public static readonly HAS_SECONDARY_DATA_FIELD_NAME_NORMALIZED = 'HIBC.HasSecondaryData';
|
|
5046
|
+
public static readonly LABELER_IDENTIFICATION_CODE_FIELD_NAME = 'LabelerIdentificationCode';
|
|
5047
|
+
public static readonly LABELER_IDENTIFICATION_CODE_FIELD_NAME_NORMALIZED =
|
|
5048
|
+
'HIBC.LabelerIdentificationCode';
|
|
5049
|
+
public static readonly LABELERS_PRODUCT_OR_CATALOG_NUMBER_FIELD_NAME =
|
|
5050
|
+
'LabelersProductOrCatalogNumber';
|
|
5051
|
+
public static readonly LABELERS_PRODUCT_OR_CATALOG_NUMBER_FIELD_NAME_NORMALIZED =
|
|
5052
|
+
'HIBC.LabelersProductOrCatalogNumber';
|
|
5053
|
+
public static readonly LINK_CHARACTER_FIELD_NAME = 'LinkCharacter';
|
|
5054
|
+
public static readonly LINK_CHARACTER_FIELD_NAME_NORMALIZED = 'HIBC.LinkCharacter';
|
|
5055
|
+
public static readonly LOT_NUMBER_FIELD_NAME = 'LotNumber';
|
|
5056
|
+
public static readonly LOT_NUMBER_FIELD_NAME_NORMALIZED = 'HIBC.LotNumber';
|
|
5057
|
+
public static readonly QUANTITY_FIELD_NAME = 'Quantity';
|
|
5058
|
+
public static readonly QUANTITY_FIELD_NAME_NORMALIZED = 'HIBC.Quantity';
|
|
5059
|
+
public static readonly SERIAL_NUMBER_FIELD_NAME = 'SerialNumber';
|
|
5060
|
+
public static readonly SERIAL_NUMBER_FIELD_NAME_NORMALIZED = 'HIBC.SerialNumber';
|
|
5061
|
+
public static readonly UNIT_OF_MEASURE_ID_FIELD_NAME = 'UnitOfMeasureID';
|
|
5062
|
+
public static readonly UNIT_OF_MEASURE_ID_FIELD_NAME_NORMALIZED = 'HIBC.UnitOfMeasureID';
|
|
5063
|
+
|
|
3726
5064
|
constructor(document: GenericDocument) {
|
|
3727
5065
|
if (document.type.name !== this.requiredDocumentType()) {
|
|
3728
5066
|
throw new Error(
|
|
@@ -3734,7 +5072,7 @@ export class HIBC {
|
|
|
3734
5072
|
}
|
|
3735
5073
|
|
|
3736
5074
|
requiredDocumentType(): string {
|
|
3737
|
-
return
|
|
5075
|
+
return HIBC.DOCUMENT_TYPE;
|
|
3738
5076
|
}
|
|
3739
5077
|
|
|
3740
5078
|
/** Date of Manufacture */
|
|
@@ -3821,3 +5159,17 @@ The labeler should ensure consistency in this field within their packaging proce
|
|
|
3821
5159
|
return this.document.fields.find((f: Field) => f.type.name === 'UnitOfMeasureID') as Field;
|
|
3822
5160
|
}
|
|
3823
5161
|
}
|
|
5162
|
+
|
|
5163
|
+
/// All possible root document types.
|
|
5164
|
+
export type BarcodeDocumentModelRootType =
|
|
5165
|
+
| typeof BoardingPass.DOCUMENT_TYPE
|
|
5166
|
+
| typeof SwissQR.DOCUMENT_TYPE
|
|
5167
|
+
| typeof DEMedicalPlan.DOCUMENT_TYPE
|
|
5168
|
+
| typeof IDCardPDF417.DOCUMENT_TYPE
|
|
5169
|
+
| typeof GS1.DOCUMENT_TYPE
|
|
5170
|
+
| typeof SEPA.DOCUMENT_TYPE
|
|
5171
|
+
| typeof MedicalCertificate.DOCUMENT_TYPE
|
|
5172
|
+
| typeof VCard.DOCUMENT_TYPE
|
|
5173
|
+
| typeof BritishColumbiaDriverLicense.DOCUMENT_TYPE
|
|
5174
|
+
| typeof AAMVA.DOCUMENT_TYPE
|
|
5175
|
+
| typeof HIBC.DOCUMENT_TYPE;
|