@eka-care/ekascribe-ts-sdk 2.0.28 → 2.0.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +3 -2
- package/dist/index.mjs +4118 -4115
- package/dist/worker.bundle.js +44 -0
- package/package.json +5 -2
package/dist/index.d.ts
CHANGED
|
@@ -97,10 +97,10 @@ declare class EkaScribe {
|
|
|
97
97
|
/**
|
|
98
98
|
* Run system compatibility test
|
|
99
99
|
* @param callback - Callback function to receive test results as they complete
|
|
100
|
-
* @param
|
|
100
|
+
* @param clientEndpoint - Optional client endpoint/base URL where SDK is hosted. Worker URL will be constructed as ../shared-worker/s3-file-upload.js relative to this endpoint
|
|
101
101
|
* @returns Promise with test summary
|
|
102
102
|
*/
|
|
103
|
-
runSystemCompatibilityTest(callback: TCompatibilityCallback,
|
|
103
|
+
runSystemCompatibilityTest(callback: TCompatibilityCallback, clientEndpoint?: string): Promise<TCompatibilityTestSummary>;
|
|
104
104
|
}
|
|
105
105
|
|
|
106
106
|
declare enum ERROR_CODE {
|
|
@@ -169,6 +169,7 @@ declare type TCompatibilityTestSummary = {
|
|
|
169
169
|
totalTests: number;
|
|
170
170
|
passedTests: number;
|
|
171
171
|
failedTests: number;
|
|
172
|
+
warningTests: number;
|
|
172
173
|
};
|
|
173
174
|
|
|
174
175
|
declare type TConfigSettings = {
|