@animaapp/anima-sdk 0.14.0 → 0.16.0
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 +6 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -371,6 +371,7 @@ export declare type GetCodeFromPromptHandler = ((message: SSEGetCodeFromPromptMe
|
|
|
371
371
|
|
|
372
372
|
export declare type GetCodeFromPromptParams = {
|
|
373
373
|
prompt: string;
|
|
374
|
+
guidelines?: string;
|
|
374
375
|
images?: Array<{
|
|
375
376
|
url: string;
|
|
376
377
|
}>;
|
|
@@ -742,6 +743,11 @@ export declare type SSEGetCodeFromFigmaMessage = SSECommonMessage<GetCodeFromFig
|
|
|
742
743
|
url: string;
|
|
743
744
|
}>;
|
|
744
745
|
};
|
|
746
|
+
} | {
|
|
747
|
+
type: "snapshots_urls";
|
|
748
|
+
payload: {
|
|
749
|
+
urls: Record<string, string>;
|
|
750
|
+
};
|
|
745
751
|
};
|
|
746
752
|
|
|
747
753
|
export declare type SSEGetCodeFromFigmaMessageErrorPayload = SSEErrorPayload<GetCodeFromFigmaErrorReason>;
|