@tinacms/graphql 0.61.6 → 0.61.7
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.js +1 -1
- package/dist/src/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7873,7 +7873,7 @@ var validateField = async (field) => {
|
|
|
7873
7873
|
|
|
7874
7874
|
// package.json
|
|
7875
7875
|
var name = "@tinacms/graphql";
|
|
7876
|
-
var version = "0.61.
|
|
7876
|
+
var version = "0.61.7";
|
|
7877
7877
|
var main = "dist/index.js";
|
|
7878
7878
|
var typings = "dist/index.d.ts";
|
|
7879
7879
|
var files = [
|
package/dist/src/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ export type { Store } from '@tinacms/datalayer';
|
|
|
21
21
|
export type { Bridge } from './database/bridge';
|
|
22
22
|
export { sequential, assertShape } from './util';
|
|
23
23
|
export { stringifyFile, parseFile } from './database/util';
|
|
24
|
+
export declare type DummyType = unknown;
|
|
24
25
|
export declare const buildSchema: (rootPath: string, database: Database, flags?: string[]) => Promise<import("graphql").GraphQLSchema>;
|
|
25
26
|
import type { TinaCloudSchema as TinaCloudSchemaBase, TinaCloudCollection as TinaCloudCollectionBase, TinaCloudTemplateBase as TinaTemplate, TinaFieldBase } from './types';
|
|
26
27
|
export declare type TinaCloudSchema = TinaCloudSchemaBase<false>;
|