@tinacms/graphql 1.3.5 → 1.4.0

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.
@@ -39,7 +39,10 @@ export declare class Resolver {
39
39
  defaultItem?: import("@tinacms/schema-tools").DefaultItem<Record<string, any>>;
40
40
  frontmatterFormat?: "json" | "yaml" | "toml";
41
41
  frontmatterDelimiters?: string | [string, string];
42
- match?: string;
42
+ match?: {
43
+ include?: string;
44
+ exclude?: string;
45
+ };
43
46
  namespace: string[];
44
47
  documents: {
45
48
  collection: Collection<true>;
@@ -62,7 +65,10 @@ export declare class Resolver {
62
65
  defaultItem?: import("@tinacms/schema-tools").DefaultItem<Record<string, any>>;
63
66
  frontmatterFormat?: "json" | "yaml" | "toml";
64
67
  frontmatterDelimiters?: string | [string, string];
65
- match?: string;
68
+ match?: {
69
+ include?: string;
70
+ exclude?: string;
71
+ };
66
72
  namespace: string[];
67
73
  documents: {
68
74
  collection: Collection<true>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tinacms/graphql",
3
- "version": "1.3.5",
3
+ "version": "1.4.0",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.es.js",
6
6
  "typings": "dist/index.d.ts",
@@ -25,8 +25,8 @@
25
25
  "dependencies": {
26
26
  "@graphql-tools/relay-operation-optimizer": "^6.4.1",
27
27
  "@iarna/toml": "^2.2.5",
28
- "@tinacms/mdx": "1.3.4",
29
- "@tinacms/schema-tools": "1.3.4",
28
+ "@tinacms/mdx": "1.3.5",
29
+ "@tinacms/schema-tools": "1.4.0",
30
30
  "abstract-level": "^1.0.3",
31
31
  "body-parser": "^1.19.0",
32
32
  "cors": "^2.8.5",
@@ -55,6 +55,7 @@
55
55
  "mdast-util-mdx-expression": "^1.1.0",
56
56
  "mdast-util-to-markdown": "^1.2.1",
57
57
  "micromark-extension-mdxjs": "^1.0.0",
58
+ "micromatch": "4.0.5",
58
59
  "normalize-path": "^3.0.0",
59
60
  "prettier": "^2.2.1",
60
61
  "readable-stream": "^4.3.0",
@@ -82,8 +83,8 @@
82
83
  "directory": "packages/tina-graphql"
83
84
  },
84
85
  "devDependencies": {
85
- "@tinacms/schema-tools": "1.3.4",
86
- "@tinacms/scripts": "1.0.4",
86
+ "@tinacms/schema-tools": "1.4.0",
87
+ "@tinacms/scripts": "1.1.0",
87
88
  "@types/cors": "^2.8.7",
88
89
  "@types/estree": "^0.0.50",
89
90
  "@types/express": "^4.17.8",
@@ -95,6 +96,7 @@
95
96
  "@types/lodash.upperfirst": "^4.3.6",
96
97
  "@types/lru-cache": "^5.1.0",
97
98
  "@types/mdast": "^3.0.10",
99
+ "@types/micromatch": "^4.0.2",
98
100
  "@types/node": "^14.17.34",
99
101
  "@types/normalize-path": "^3.0.0",
100
102
  "@types/ws": "^7.2.6",