tinacms 0.0.0-ad8dbc0-20241003000436 → 0.0.0-ea9b54c-20241003003029
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/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -4569,7 +4569,7 @@ var __publicField = (obj, key, value) => {
|
|
|
4569
4569
|
const optionSets2 = await Promise.all(
|
|
4570
4570
|
collections.map(async (collection) => {
|
|
4571
4571
|
try {
|
|
4572
|
-
const filter = filters[collection] ? filterQueryBuilder(filters[collection], collection) : {};
|
|
4572
|
+
const filter = (filters == null ? void 0 : filters[collection]) ? filterQueryBuilder(filters[collection], collection) : {};
|
|
4573
4573
|
const response = await cms.api.tina.request(
|
|
4574
4574
|
`#graphql
|
|
4575
4575
|
query ($collection: String!, $filter: DocumentFilter) {
|
package/dist/index.mjs
CHANGED
|
@@ -4592,7 +4592,7 @@ const useGetOptionSets = (cms, collections, collectionFilter) => {
|
|
|
4592
4592
|
const optionSets2 = await Promise.all(
|
|
4593
4593
|
collections.map(async (collection) => {
|
|
4594
4594
|
try {
|
|
4595
|
-
const filter = filters[collection] ? filterQueryBuilder(filters[collection], collection) : {};
|
|
4595
|
+
const filter = (filters == null ? void 0 : filters[collection]) ? filterQueryBuilder(filters[collection], collection) : {};
|
|
4596
4596
|
const response = await cms.api.tina.request(
|
|
4597
4597
|
`#graphql
|
|
4598
4598
|
query ($collection: String!, $filter: DocumentFilter) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tinacms",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-ea9b54c-20241003003029",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"exports": {
|
|
@@ -127,9 +127,9 @@
|
|
|
127
127
|
"webfontloader": "1.6.28",
|
|
128
128
|
"yup": "^1.4.0",
|
|
129
129
|
"zod": "^3.23.8",
|
|
130
|
+
"@tinacms/search": "1.0.31",
|
|
130
131
|
"@tinacms/mdx": "1.4.4",
|
|
131
|
-
"@tinacms/schema-tools": "1.6.4"
|
|
132
|
-
"@tinacms/search": "1.0.31"
|
|
132
|
+
"@tinacms/schema-tools": "1.6.4"
|
|
133
133
|
},
|
|
134
134
|
"devDependencies": {
|
|
135
135
|
"@graphql-tools/utils": "^10.5.4",
|