@tinacms/graphql 0.0.0-20222301112 → 0.0.0-2022230155428
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/CHANGELOG.md +2 -2
- package/dist/index.d.ts +1 -30
- package/dist/index.js +290 -290
- package/package.json +3 -3
- package/dist/ast-builder/index.d.ts +0 -159
- package/dist/build.d.ts +0 -19
- package/dist/builder/index.d.ts +0 -254
- package/dist/builder/static-definitions.d.ts +0 -13
- package/dist/database/bridge/index.d.ts +0 -23
- package/dist/database/index.d.ts +0 -129
- package/dist/database/util.d.ts +0 -16
- package/dist/mdx/index.d.ts +0 -21
- package/dist/mdx/parse.d.ts +0 -230
- package/dist/mdx/stringify.d.ts +0 -24
- package/dist/resolve.d.ts +0 -23
- package/dist/resolver/error.d.ts +0 -25
- package/dist/resolver/filter-utils.d.ts +0 -22
- package/dist/resolver/index.d.ts +0 -286
- package/dist/schema/index.d.ts +0 -78
- package/dist/schema/validate.d.ts +0 -14
- package/dist/sdkBuilder/index.d.ts +0 -14
- package/dist/spec/setup.d.ts +0 -41
- package/dist/types.d.ts +0 -267
- package/dist/util.d.ts +0 -28
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# tina-graphql
|
|
2
2
|
|
|
3
|
-
## 0.0.0-
|
|
3
|
+
## 0.0.0-2022230155428
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
- e8b0de1f7: Add `parentTypename` to fields to allow us to disambiguate between fields which have the same field names but different types. Example, an event from field name of `blocks.0.title` could belong to a `Cta` block or a `Hero` block, both of which have a `title` field.
|
|
40
40
|
- Updated dependencies [a87e1e6fa]
|
|
41
41
|
- Updated dependencies [b01f2e382]
|
|
42
|
-
- @tinacms/datalayer@0.0.0-
|
|
42
|
+
- @tinacms/datalayer@0.0.0-2022230155428
|
|
43
43
|
|
|
44
44
|
## 0.59.8
|
|
45
45
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,30 +1 @@
|
|
|
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 { createDatabase } from './database';
|
|
16
|
-
export type { QueryOptions } from './database';
|
|
17
|
-
import type { Database } from './database';
|
|
18
|
-
export type { Database } from './database';
|
|
19
|
-
export type { Store } from '@tinacms/datalayer';
|
|
20
|
-
export type { Bridge } from './database/bridge';
|
|
21
|
-
export { sequential, assertShape } from './util';
|
|
22
|
-
export { stringifyFile, parseFile } from './database/util';
|
|
23
|
-
export declare const buildSchema: (rootPath: string, database: Database) => Promise<import("graphql").GraphQLSchema>;
|
|
24
|
-
import type { TinaCloudSchema as TinaCloudSchemaBase, TinaCloudCollection as TinaCloudCollectionBase, TinaCloudTemplateBase as TinaTemplate, TinaFieldBase } from './types';
|
|
25
|
-
export declare type TinaCloudSchema = TinaCloudSchemaBase<false>;
|
|
26
|
-
export declare type TinaSchema = TinaCloudSchema;
|
|
27
|
-
export declare type TinaCloudCollection = TinaCloudCollectionBase<false>;
|
|
28
|
-
export declare type TinaCollection = TinaCloudCollectionBase<false>;
|
|
29
|
-
export declare type TinaField = TinaFieldBase;
|
|
30
|
-
export type { TinaTemplate };
|
|
1
|
+
export * from "../src/index"
|