@eka-care/ekascribe-ts-sdk 2.1.19 → 2.1.20
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 +4 -2
- package/dist/index.mjs +15658 -11071
- package/package.json +5 -2
package/dist/index.d.ts
CHANGED
|
@@ -36,11 +36,12 @@ declare class EkaScribe {
|
|
|
36
36
|
private audioBufferInstance;
|
|
37
37
|
private compatibilityManager;
|
|
38
38
|
private constructor();
|
|
39
|
-
static getInstance({ access_token, env, clientId, flavour, }: {
|
|
39
|
+
static getInstance({ access_token, env, clientId, flavour, enableSentryLogs, }: {
|
|
40
40
|
access_token?: string;
|
|
41
41
|
env?: 'PROD' | 'DEV';
|
|
42
42
|
clientId?: string;
|
|
43
43
|
flavour?: string;
|
|
44
|
+
enableSentryLogs?: boolean;
|
|
44
45
|
}): EkaScribe;
|
|
45
46
|
resetInstance(): void;
|
|
46
47
|
getEkascribeConfig(): Promise<TGetConfigV2Response>;
|
|
@@ -141,11 +142,12 @@ export declare enum ERROR_CODE {
|
|
|
141
142
|
|
|
142
143
|
declare type Gender = 'M' | 'F' | 'O';
|
|
143
144
|
|
|
144
|
-
export declare const getEkaScribeInstance: ({ access_token, env, clientId, flavour, }: {
|
|
145
|
+
export declare const getEkaScribeInstance: ({ access_token, env, clientId, flavour, enableSentryLogs, }: {
|
|
145
146
|
access_token?: string;
|
|
146
147
|
env?: "PROD" | "DEV";
|
|
147
148
|
clientId?: string;
|
|
148
149
|
flavour?: string;
|
|
150
|
+
enableSentryLogs?: boolean;
|
|
149
151
|
}) => EkaScribe;
|
|
150
152
|
|
|
151
153
|
export declare enum PROCESSING_STATUS {
|