@tinacms/graphql 0.61.7 → 0.61.8

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.
File without changes
File without changes
File without changes
File without changes
File without changes
package/dist/index.d.ts CHANGED
@@ -1 +1,32 @@
1
- export * from "../src/index"
1
+ /**
2
+ Copyright 2021 Forestry.io Holdings, Inc.
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+ http://www.apache.org/licenses/LICENSE-2.0
7
+ Unless required by applicable law or agreed to in writing, software
8
+ distributed under the License is distributed on an "AS IS" BASIS,
9
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10
+ See the License for the specific language governing permissions and
11
+ limitations under the License.
12
+ */
13
+ export { indexDB } from './build';
14
+ export { resolve } from './resolve';
15
+ export * from './resolver/error';
16
+ export { createDatabase } from './database';
17
+ export type { QueryOptions } from './database';
18
+ import type { Database } from './database';
19
+ export type { Database } from './database';
20
+ export type { Store } from '@tinacms/datalayer';
21
+ export type { Bridge } from './database/bridge';
22
+ export { sequential, assertShape } from './util';
23
+ export { stringifyFile, parseFile } from './database/util';
24
+ export declare type DummyType = unknown;
25
+ export declare const buildSchema: (rootPath: string, database: Database, flags?: string[]) => Promise<import("graphql").GraphQLSchema>;
26
+ import type { TinaCloudSchema as TinaCloudSchemaBase, TinaCloudCollection as TinaCloudCollectionBase, TinaCloudTemplateBase as TinaTemplate, TinaFieldBase } from './types';
27
+ export declare type TinaCloudSchema = TinaCloudSchemaBase<false>;
28
+ export declare type TinaSchema = TinaCloudSchema;
29
+ export declare type TinaCloudCollection = TinaCloudCollectionBase<false>;
30
+ export declare type TinaCollection = TinaCloudCollectionBase<false>;
31
+ export declare type TinaField = TinaFieldBase;
32
+ export type { TinaTemplate };
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.7";
7876
+ var version = "0.61.8";
7877
7877
  var main = "dist/index.js";
7878
7878
  var typings = "dist/index.d.ts";
7879
7879
  var files = [
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tinacms/graphql",
3
- "version": "0.61.7",
3
+ "version": "0.61.8",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
6
6
  "files": [
@@ -1,32 +0,0 @@
1
- /**
2
- Copyright 2021 Forestry.io Holdings, Inc.
3
- Licensed under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License.
5
- You may obtain a copy of the License at
6
- http://www.apache.org/licenses/LICENSE-2.0
7
- Unless required by applicable law or agreed to in writing, software
8
- distributed under the License is distributed on an "AS IS" BASIS,
9
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10
- See the License for the specific language governing permissions and
11
- limitations under the License.
12
- */
13
- export { indexDB } from './build';
14
- export { resolve } from './resolve';
15
- export * from './resolver/error';
16
- export { createDatabase } from './database';
17
- export type { QueryOptions } from './database';
18
- import type { Database } from './database';
19
- export type { Database } from './database';
20
- export type { Store } from '@tinacms/datalayer';
21
- export type { Bridge } from './database/bridge';
22
- export { sequential, assertShape } from './util';
23
- export { stringifyFile, parseFile } from './database/util';
24
- export declare type DummyType = unknown;
25
- export declare const buildSchema: (rootPath: string, database: Database, flags?: string[]) => Promise<import("graphql").GraphQLSchema>;
26
- import type { TinaCloudSchema as TinaCloudSchemaBase, TinaCloudCollection as TinaCloudCollectionBase, TinaCloudTemplateBase as TinaTemplate, TinaFieldBase } from './types';
27
- export declare type TinaCloudSchema = TinaCloudSchemaBase<false>;
28
- export declare type TinaSchema = TinaCloudSchema;
29
- export declare type TinaCloudCollection = TinaCloudCollectionBase<false>;
30
- export declare type TinaCollection = TinaCloudCollectionBase<false>;
31
- export declare type TinaField = TinaFieldBase;
32
- export type { TinaTemplate };