contour-ai-sdk 1.10.11-alpha.2 → 1.10.11-alpha.4

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.
@@ -93,5 +93,5 @@ dependencies {
93
93
  // For > 0.71, this will be replaced by `com.facebook.react:react-android:$version` by react gradle plugin
94
94
  //noinspection GradleDynamicVersion
95
95
  implementation "com.facebook.react:react-native:+"
96
- implementation 'com.github.Contour-Document-Imaging:contours-ai-android-sdk:Debug1.10.17'
96
+ implementation 'com.github.Contour-Document-Imaging:contours-ai-android-sdk:Debug1.10.19'
97
97
  }
@@ -19,7 +19,7 @@ const ContourAiSdk = _reactNative.NativeModules.ContourAiSdk ? _reactNative.Nati
19
19
  });
20
20
  const eventEmitter = new _reactNative.NativeEventEmitter(_reactNative.NativeModules.ContourAiSdk);
21
21
  /**
22
- * @deprecated This method has been deprecated. Use startContour method instead.
22
+ * @deprecated This method has been deprecated. Please use startContour(model: ContourModel) method instead.
23
23
  */
24
24
  function startContourSDK(captureSide, clientId, captureType, enableMultipleCheckCapturing, callback) {
25
25
  const count = eventEmitter.listenerCount('checkCaptured');
@@ -10,7 +10,7 @@ const ContourAiSdk = NativeModules.ContourAiSdk ? NativeModules.ContourAiSdk : n
10
10
  });
11
11
  const eventEmitter = new NativeEventEmitter(NativeModules.ContourAiSdk);
12
12
  /**
13
- * @deprecated This method has been deprecated. Use startContour method instead.
13
+ * @deprecated This method has been deprecated. Please use startContour(model: ContourModel) method instead.
14
14
  */
15
15
  export function startContourSDK(captureSide, clientId, captureType, enableMultipleCheckCapturing, callback) {
16
16
  const count = eventEmitter.listenerCount('checkCaptured');
@@ -6,7 +6,7 @@ export interface ContourModel {
6
6
  capturingSide: string;
7
7
  }
8
8
  /**
9
- * @deprecated This method has been deprecated. Use startContour method instead.
9
+ * @deprecated This method has been deprecated. Please use startContour(model: ContourModel) method instead.
10
10
  */
11
11
  export declare function startContourSDK(captureSide: string, clientId: string, captureType: string, enableMultipleCheckCapturing: Boolean, callback: (data: any) => void): void;
12
12
  export declare function startContour(model: ContourModel, callback: (data: any) => void): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "contour-ai-sdk",
3
- "version": "1.10.11-alpha.2",
3
+ "version": "1.10.11-alpha.4",
4
4
  "description": "The Contour AI SDK™ has been designed to be the industry’s most intuitive, and protected, experience for mobile image capture - capturing documents of various kinds via an iOS™ or Android™ mobile device. At the same time, it has been designed to enable the clear, accurate, and complete processing of these documents with limited, if any, human intervention, all while improving your efficiencies and reducing costs.",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
package/src/index.tsx CHANGED
@@ -26,7 +26,7 @@ const ContourAiSdk = NativeModules.ContourAiSdk
26
26
 
27
27
  const eventEmitter = new NativeEventEmitter(NativeModules.ContourAiSdk);
28
28
  /**
29
- * @deprecated This method has been deprecated. Use startContour method instead.
29
+ * @deprecated This method has been deprecated. Please use startContour(model: ContourModel) method instead.
30
30
  */
31
31
  export function startContourSDK(captureSide: string, clientId: string, captureType: string, enableMultipleCheckCapturing: Boolean, callback: (data: any) => void) {
32
32
  const count = eventEmitter.listenerCount('checkCaptured');