@tinacms/graphql 0.56.1 → 0.57.0-hotfix
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 +12 -0
- package/dist/ast-builder/index.d.ts +159 -0
- package/dist/{cache/s3.d.ts → build.d.ts} +6 -18
- package/dist/builder/index.d.ts +254 -0
- package/dist/builder/static-definitions.d.ts +13 -0
- package/dist/database/bridge/index.d.ts +23 -0
- package/dist/database/index.d.ts +99 -0
- package/dist/database/store/index.d.ts +74 -0
- package/dist/database/util.d.ts +16 -0
- package/dist/index.d.ts +0 -3
- package/dist/index.js +890 -534
- package/dist/{cache/lru.d.ts → mdx/index.d.ts} +9 -14
- package/dist/mdx/parse.d.ts +229 -0
- package/dist/mdx/stringify.d.ts +24 -0
- 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/types.d.ts +1 -1
- package/dist/resolve.d.ts +22 -0
- package/dist/resolver/error.d.ts +25 -0
- package/dist/resolver/index.d.ts +279 -0
- package/dist/schema/index.d.ts +78 -0
- package/dist/schema/validate.d.ts +14 -0
- package/dist/sdkBuilder/index.d.ts +14 -0
- package/dist/spec/setup.d.ts +41 -0
- package/dist/types.d.ts +253 -0
- package/dist/util.d.ts +28 -0
- package/package.json +3 -11
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;
|