eddyter 1.4.10 → 1.4.11
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/Provider/EditorProvider.d.ts +2 -0
- package/dist/api/auth.d.ts +2 -0
- package/dist/assets/style.css +1 -1
- package/dist/{generateDocxThumbnail-BTGZdR29.js → generateDocxThumbnail-sE1G5G6C.js} +1 -1
- package/dist/{generatePdfThumbnail-DTZ_Kj7W.js → generatePdfThumbnail-BcT_cjxm.js} +1 -1
- package/dist/{generateXlsxThumbnail-CF72p_5x.js → generateXlsxThumbnail-nCbKlvf2.js} +1 -1
- package/dist/{html2pdf.bundle.min-pPb9r-L6.js → html2pdf.bundle.min-D4m3s3b2.js} +1 -1
- package/dist/{index-B6m9X2CN.js → index-CkMNlf2-.js} +14487 -14370
- package/dist/{index-C742ji49.js → index-Ct4lYZ_n.js} +746 -731
- package/dist/{index-DfeaWhdu.js → index-DpFqIrjJ.js} +1 -1
- package/dist/{index-DSgjFp2e.js → index-DwmEaul2.js} +4 -4
- package/dist/index.js +1 -1
- package/dist/ui/Icons.d.ts +4 -1
- package/package.json +1 -1
|
@@ -36,6 +36,8 @@ interface EditorContextType {
|
|
|
36
36
|
isByokPlan: boolean;
|
|
37
37
|
/** When isByokPlan, which provider keys the user has (used to restrict AI/voice features) */
|
|
38
38
|
byokApiKeys: ByokApiKeys | null;
|
|
39
|
+
/** When true, editor hides Eddyter branding/logo (admin toggle per-plan). */
|
|
40
|
+
hideBranding: boolean;
|
|
39
41
|
}
|
|
40
42
|
export declare const useEditor: () => EditorContextType;
|
|
41
43
|
export declare const useEditorOptional: () => EditorContextType | undefined;
|
package/dist/api/auth.d.ts
CHANGED
|
@@ -117,6 +117,8 @@ export interface ProjectData {
|
|
|
117
117
|
hasAssemblyaiKey: boolean;
|
|
118
118
|
hasGeminiKey: boolean;
|
|
119
119
|
};
|
|
120
|
+
/** When true, editor hides Eddyter branding/logo for users on this plan (admin toggle per-plan). */
|
|
121
|
+
hideBranding?: boolean;
|
|
120
122
|
}
|
|
121
123
|
export interface ApiResponse {
|
|
122
124
|
success: boolean;
|