@tinacms/graphql 0.0.0-202201022290 → 0.0.0-202202022225
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 +9 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +317 -302
- package/dist/resolve.d.ts +2 -1
- package/dist/resolver/index.d.ts +2 -2
- package/dist/types.d.ts +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,18 @@
|
|
|
1
1
|
# tina-graphql
|
|
2
2
|
|
|
3
|
-
## 0.0.0-
|
|
3
|
+
## 0.0.0-202202022225
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 32082e0b3: GraphQL number type is changed from "Int" to "Float"
|
|
8
|
+
|
|
9
|
+
## 0.59.4
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
6
12
|
|
|
7
13
|
- b66aefde1: Fixed issue where one could not add a title and then a bold text
|
|
14
|
+
- 35884152b: Adds and audit command that checks files for errors.
|
|
15
|
+
- 4948beec6: Fix issues with mdx code blocks and inline code nodes
|
|
8
16
|
|
|
9
17
|
## 0.59.3
|
|
10
18
|
|
package/dist/index.d.ts
CHANGED
|
@@ -14,10 +14,11 @@ export { indexDB } from './build';
|
|
|
14
14
|
export { resolve } from './resolve';
|
|
15
15
|
export { createDatabase } from './database';
|
|
16
16
|
import type { Database } from './database';
|
|
17
|
+
export type { Database } from './database';
|
|
17
18
|
export type { Store } from './database/store';
|
|
18
19
|
export type { Bridge } from './database/bridge';
|
|
20
|
+
export { sequential, assertShape } from './util';
|
|
19
21
|
export { stringifyFile, parseFile } from './database/util';
|
|
20
|
-
export { sequential } from './util';
|
|
21
22
|
export declare const buildSchema: (rootPath: string, database: Database) => Promise<import("graphql").GraphQLSchema>;
|
|
22
23
|
import type { TinaCloudSchema as TinaCloudSchemaBase, TinaCloudCollection as TinaCloudCollectionBase, TinaCloudTemplateBase as TinaTemplate, TinaFieldBase } from './types';
|
|
23
24
|
export declare type TinaCloudSchema = TinaCloudSchemaBase<false>;
|