@translated/lara 1.7.3 → 1.7.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.
package/lib/translator.d.ts
CHANGED
|
@@ -55,6 +55,10 @@ export type TranslationStyle = "faithful" | "fluid" | "creative";
|
|
|
55
55
|
export interface DetectResult {
|
|
56
56
|
language: string;
|
|
57
57
|
contentType: string;
|
|
58
|
+
predictions: {
|
|
59
|
+
language: string;
|
|
60
|
+
confidence: number;
|
|
61
|
+
}[];
|
|
58
62
|
}
|
|
59
63
|
export declare class Translator {
|
|
60
64
|
protected readonly client: LaraClient;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "1.7.
|
|
1
|
+
export declare const version = "1.7.4";
|
package/lib/utils/sdk-version.js
CHANGED