@animaapp/anima-sdk 0.23.0 → 0.23.2
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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -389,6 +389,7 @@ export declare type GetCodeFromPromptSettings = BaseSettings & {
|
|
|
389
389
|
styling: "tailwind" | "inline_styles";
|
|
390
390
|
uiLibrary?: "shadcn" | "custom_design_system";
|
|
391
391
|
dsId?: string;
|
|
392
|
+
fastMode?: boolean;
|
|
392
393
|
};
|
|
393
394
|
|
|
394
395
|
/**
|
|
@@ -420,6 +421,7 @@ export declare type GetCodeFromWebsiteHandler = ((message: SSEGetCodeFromWebsite
|
|
|
420
421
|
|
|
421
422
|
export declare type GetCodeFromWebsiteParams = {
|
|
422
423
|
url?: string;
|
|
424
|
+
/** @deprecated Use `mhtmlUrl` instead. */
|
|
423
425
|
mhtml?: string;
|
|
424
426
|
mhtmlUrl?: string;
|
|
425
427
|
assetsStorage?: AssetsStorage;
|
package/dist/index.js
CHANGED
|
@@ -4633,7 +4633,8 @@ class Gf {
|
|
|
4633
4633
|
styling: t.settings.styling,
|
|
4634
4634
|
uiLibrary: t.settings.uiLibrary
|
|
4635
4635
|
},
|
|
4636
|
-
dsId: t.settings.dsId
|
|
4636
|
+
dsId: t.settings.dsId,
|
|
4637
|
+
fastMode: t.settings.fastMode
|
|
4637
4638
|
}, (s = t.settings.codegenSettings) != null ? s : {}),
|
|
4638
4639
|
webhookUrl: t.webhookUrl
|
|
4639
4640
|
};
|