@tinacms/graphql 0.0.0-bf8b9b7-20251204000148 → 0.0.0-c19d29e-20251224001156

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.
@@ -3,11 +3,14 @@ import * as yup from 'yup';
3
3
  import { ContentFormat, ContentFrontmatterFormat } from '@tinacms/schema-tools';
4
4
  import { Bridge } from './bridge';
5
5
  export { normalizePath };
6
- export declare const stringifyFile: (content: object, format: ContentFormat | string, keepTemplateKey: boolean, markdownParseConfig?: {
6
+ export declare const stringifyFile: (content: object, format: ContentFormat | string, // FIXME
7
+ /** For non-polymorphic documents we don't need the template key */
8
+ keepTemplateKey: boolean, markdownParseConfig?: {
7
9
  frontmatterFormat?: ContentFrontmatterFormat;
8
10
  frontmatterDelimiters?: [string, string] | string;
9
11
  }) => string;
10
- export declare const parseFile: <T extends object>(content: string, format: ContentFormat | string, yupSchema: (args: typeof yup) => yup.ObjectSchema<any>, markdownParseConfig?: {
12
+ export declare const parseFile: <T extends object>(content: string, format: ContentFormat | string, // FIXME
13
+ yupSchema: (args: typeof yup) => yup.ObjectSchema<any>, markdownParseConfig?: {
11
14
  frontmatterFormat?: ContentFrontmatterFormat;
12
15
  frontmatterDelimiters?: [string, string] | string;
13
16
  }) => T;