@tinacms/cli 0.0.0-ced9076-20250922063813 → 0.0.0-cf37070-20251203063307

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.
@@ -1,4 +1,4 @@
1
- import type { TypeDefinitionNode, GraphQLSchema } from 'graphql';
1
+ import type { GraphQLSchema, DocumentNode } from 'graphql';
2
2
  import { ConfigManager } from '../config-manager';
3
3
  import type { TinaSchema } from '@tinacms/schema-tools';
4
4
  export declare const TINA_HOST = "content.tinajs.io";
@@ -12,10 +12,7 @@ export declare class Codegen {
12
12
  apiURL: string;
13
13
  localUrl: string;
14
14
  productionUrl: string;
15
- graphqlSchemaDoc: {
16
- kind: 'Document';
17
- definitions: TypeDefinitionNode[];
18
- };
15
+ graphqlSchemaDoc: DocumentNode;
19
16
  tinaSchema: TinaSchema;
20
17
  lookup: any;
21
18
  noClientBuildCache: boolean;
@@ -25,10 +22,7 @@ export declare class Codegen {
25
22
  queryDoc: string;
26
23
  fragDoc: string;
27
24
  isLocal: boolean;
28
- graphqlSchemaDoc: {
29
- kind: 'Document';
30
- definitions: TypeDefinitionNode[];
31
- };
25
+ graphqlSchemaDoc: DocumentNode;
32
26
  tinaSchema: TinaSchema;
33
27
  lookup: any;
34
28
  noClientBuildCache: boolean;
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@tinacms/cli",
3
- "version": "0.0.0-ced9076-20250922063813",
3
+ "type": "module",
4
+ "version": "0.0.0-cf37070-20251203063307",
4
5
  "main": "dist/index.js",
5
6
  "typings": "dist/index.d.ts",
6
7
  "files": [
@@ -40,9 +41,8 @@
40
41
  "@types/node": "^22.13.1",
41
42
  "@types/progress": "^2.0.7",
42
43
  "@types/prompts": "^2.4.9",
43
- "@types/yup": "^0.32.0",
44
44
  "jest": "^29.7.0",
45
- "@tinacms/scripts": "1.4.0"
45
+ "@tinacms/scripts": "1.4.1"
46
46
  },
47
47
  "dependencies": {
48
48
  "@graphql-codegen/core": "^2.6.8",
@@ -90,12 +90,12 @@
90
90
  "vite": "^4.5.9",
91
91
  "yup": "^1.6.1",
92
92
  "zod": "^3.24.2",
93
- "@tinacms/app": "0.0.0-ced9076-20250922063813",
94
- "@tinacms/graphql": "1.6.1",
95
- "@tinacms/metrics": "1.1.0",
96
- "@tinacms/schema-tools": "1.9.1",
97
- "@tinacms/search": "1.1.1",
98
- "tinacms": "0.0.0-ced9076-20250922063813"
93
+ "@tinacms/app": "0.0.0-cf37070-20251203063307",
94
+ "@tinacms/metrics": "2.0.0",
95
+ "@tinacms/graphql": "2.0.0",
96
+ "@tinacms/schema-tools": "2.0.0",
97
+ "@tinacms/search": "1.1.4",
98
+ "tinacms": "0.0.0-cf37070-20251203063307"
99
99
  },
100
100
  "publishConfig": {
101
101
  "registry": "https://registry.npmjs.org"