@tinacms/graphql 0.56.0 → 0.57.2
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 +30 -0
- package/dist/index.d.ts +0 -3
- package/dist/index.js +842 -361
- package/dist/primitives/ast-builder/index.d.ts +40 -1
- package/dist/primitives/builder/index.d.ts +29 -2
- package/dist/primitives/database/github.d.ts +1 -22
- package/dist/primitives/index.d.ts +1 -3
- package/dist/primitives/resolver/index.d.ts +87 -7
- package/dist/{cache/lru.d.ts → primitives/schema/validate.d.ts} +2 -14
- package/dist/primitives/types.d.ts +1 -1
- package/dist/sdkBuilder/index.d.ts +14 -0
- package/package.json +3 -11
- package/dist/cache/s3.d.ts +0 -31
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# tina-graphql
|
|
2
2
|
|
|
3
|
+
## 0.57.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- edb2f4011: Trim path property on collections during compilation
|
|
8
|
+
|
|
9
|
+
## 0.57.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 60729f60c: Adds a `reference` field
|
|
14
|
+
|
|
15
|
+
## 0.57.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- ed277e3bd: Remove aws dependency and cache logic from GithubBridge
|
|
20
|
+
- d1ed404ba: Add support for auto-generated SDK for type-safe data fetching
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- 138ceb8c4: Clean up dependencies
|
|
25
|
+
- 577d6a5ad: Adds collection arg back for generic queries as optional
|
|
26
|
+
|
|
27
|
+
## 0.56.1
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- 4b7795612: Adds support for collection.templates to TinaAdmin
|
|
32
|
+
|
|
3
33
|
## 0.56.0
|
|
4
34
|
|
|
5
35
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -13,9 +13,6 @@ limitations under the License.
|
|
|
13
13
|
export { GithubBridge } from './primitives/database/github';
|
|
14
14
|
export type { GithubManagerInit } from './primitives/database/github';
|
|
15
15
|
export { gql, resolve, buildSchema, indexDB, createDatabase, githubRoute, } from './primitives';
|
|
16
|
-
import { clearCache as s3ClearCache, s3Cache } from './cache/s3';
|
|
17
|
-
import { clearCache as lruClearCache, simpleCache } from './cache/lru';
|
|
18
|
-
export { lruClearCache, lruClearCache as clearCache, s3ClearCache, s3Cache, simpleCache, };
|
|
19
16
|
import type { TinaCloudSchema as TinaCloudSchemaBase, TinaCloudCollection as TinaCloudCollectionBase, TinaCloudTemplateBase as TinaTemplate, TinaFieldBase } from './primitives/types';
|
|
20
17
|
export declare const listBranches: ({ auth, owner, repo }: {
|
|
21
18
|
auth: any;
|