Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
# Conflicts:
#	pnpm-lock.yaml
  • Loading branch information
ash committed Aug 25, 2024
2 parents af0152a + 2492645 commit 2a748ee
Show file tree
Hide file tree
Showing 31 changed files with 217 additions and 32 deletions.
31 changes: 31 additions & 0 deletions dist/ai/editor/lexical.schema.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import { z } from 'zod';
export declare const LexicalBaseNode: z.ZodObject<{
type: z.ZodString;
children: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
direction: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ltr"]>>>;
format: z.ZodOptional<z.ZodString>;
indent: z.ZodOptional<z.ZodNumber>;
version: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
children?: any[];
type?: string;
direction?: "ltr";
format?: string;
indent?: number;
version?: number;
}, {
children?: any[];
type?: string;
direction?: "ltr";
format?: string;
indent?: number;
version?: number;
}>;
export declare const lexicalSchema: (customNodes?: (typeof LexicalBaseNode)[]) => z.ZodObject<{
root: any;
}, "strip", z.ZodTypeAny, {
root?: any;
}, {
root?: any;
}>;
//# sourceMappingURL=lexical.schema.d.ts.map
1 change: 1 addition & 0 deletions dist/ai/editor/lexical.schema.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

102 changes: 102 additions & 0 deletions dist/ai/editor/lexical.schema.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/ai/editor/lexical.schema.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/ai/models/anthropic/generateRichText.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions dist/ai/models/anthropic/generateRichText.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/ai/models/anthropic/generateRichText.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/ai/models/openai/generateRichText.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions dist/ai/models/openai/generateRichText.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/ai/models/openai/generateRichText.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/endpoints/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 2a748ee

Please sign in to comment.