@animaapp/anima-sdk 0.3.0 → 0.3.1
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/.turbo/turbo-build.log +4 -4
- package/.turbo/turbo-dev.log +23 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/errors.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -67,7 +67,7 @@ export declare class CodegenError extends Error {
|
|
|
67
67
|
/**
|
|
68
68
|
* Errors from Public API
|
|
69
69
|
*/
|
|
70
|
-
export declare type CodegenErrorReason = "Selected node type is not supported" | "Selected node is a page with multiple children" | "There is no node with the given id" | "Invalid Figma token" | "Anima API connection error" | "Figma token expired" | "Invalid user token" | "Figma file not found" | "Figma rate limit exceeded" | "Unknown";
|
|
70
|
+
export declare type CodegenErrorReason = "Selected node type is not supported" | "Invisible group nodes are unsupported" | "Selected node is a page with multiple children" | "There is no node with the given id" | "Invalid Figma token" | "Anima API connection error" | "Figma token expired" | "Invalid user token" | "Figma file not found" | "Figma rate limit exceeded" | "Unknown";
|
|
71
71
|
|
|
72
72
|
export declare type CodegenResult = BaseResult & {
|
|
73
73
|
files: Record<string, {
|