@tinacms/graphql 1.5.9 → 1.5.11
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/dist/ast-builder/index.d.ts +0 -1
- package/dist/index.js +443 -97
- package/dist/index.mjs +414 -72
- package/package.json +10 -11
|
@@ -155,7 +155,6 @@ export declare const astBuilder: {
|
|
|
155
155
|
type scalarNames = 'string' | 'boolean' | 'datetime' | 'image' | 'text' | 'number';
|
|
156
156
|
export declare const extractInlineTypes: (item: TypeDefinitionNode | TypeDefinitionNode[]) => any;
|
|
157
157
|
export declare function walk(maybeNode: TypeDefinitionNode, visited?: WeakSet<WeakKey>): IterableIterator<TypeDefinitionNode>;
|
|
158
|
-
export declare function addNamespaceToSchema<T extends object | string>(maybeNode: T, namespace?: string[]): T;
|
|
159
158
|
export declare const NAMER: {
|
|
160
159
|
dataFilterTypeNameOn: (namespace: string[]) => string;
|
|
161
160
|
dataFilterTypeName: (namespace: string[]) => string;
|