Skip to content

Commit ecffec7

Browse files
authored
Merge pull request #172 from gadget-inc/devaoc/pb-field-fix
Fixing field issue with checkotuapisupport field (product bundler)
2 parents 8c43c4a + 9cd6cd5 commit ecffec7

File tree

2 files changed

+21
-19
lines changed

2 files changed

+21
-19
lines changed

shopify/product-bundler-public-remix-ssr/api/models/shopifyShop/schema.gadget.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,6 @@ export const schema: GadgetModel = {
2626
children: { model: "bundle", belongsToField: "shop" },
2727
storageKey: "kZHbCuyVIFvU",
2828
},
29-
checkoutApiSupported: {
30-
type: "json",
31-
storageKey:
32-
"ModelField-DataModel-Shopify-Shop-__gadget_graphql_checkout_api_supported::FieldStorageEpoch-DataModel-Shopify-Shop-__gadget_graphql_checkout_api_supported-initial",
33-
},
3429
componentReferenceDefinitionId: {
3530
type: "string",
3631
storageKey: "XFodaWDv9M0K",

shopify/product-bundler-public-remix-ssr/yarn.lock

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,10 +1006,10 @@
10061006
version "0.0.0"
10071007
uid ""
10081008

1009-
"@gadgetinc/[email protected].43", "@gadgetinc/api-client-core@^0.15.43":
1010-
version "0.15.43"
1011-
resolved "https://registry.yarnpkg.com/@gadgetinc/api-client-core/-/api-client-core-0.15.43.tgz#85a2d04b9a77539fc049ae36e07857d999059faf"
1012-
integrity sha512-mbw3cR4IgxgJP3VPaCN3L85n8uth1EnZ8IFLZpXxl63XcfNXnQkAUHRoIZ20OuF8E837DtD51QvMNZ6D6NKcCw==
1009+
"@gadgetinc/[email protected].45", "@gadgetinc/api-client-core@^0.15.45":
1010+
version "0.15.45"
1011+
resolved "https://registry.yarnpkg.com/@gadgetinc/api-client-core/-/api-client-core-0.15.45.tgz#368c13b079422352175c578b3164d02a5de72279"
1012+
integrity sha512-4eTsoAIYavMCyY9q33DBW2lCn+sG68hKw7Uct5dp6gLMuWasxUQQ5M2LWMmN5RZQFma/wCQHNK5dcU44xrZSQw==
10131013
dependencies:
10141014
"@0no-co/graphql.web" "^1.0.4"
10151015
"@n1ru4l/graphql-live-query" "^0.10.0"
@@ -1027,22 +1027,22 @@
10271027
wonka "^6.3.2"
10281028
ws "^8.18.2"
10291029

1030-
"@gadgetinc/react-shopify-app-bridge@^0.18.5":
1031-
version "0.18.5"
1032-
resolved "https://registry.yarnpkg.com/@gadgetinc/react-shopify-app-bridge/-/react-shopify-app-bridge-0.18.5.tgz#e83b18fc520bd0017d86ad0a3ed0947df05c6325"
1033-
integrity sha512-KPOOFFwQKpSCe4zCyJC5IdQVtVJXHtP61Zt5ANK4wueZB72ubzZfWiIYZAabFfYRD1aP6NzZtQR1y9VJHKFECw==
1030+
"@gadgetinc/react-shopify-app-bridge@^0.18.8":
1031+
version "0.18.8"
1032+
resolved "https://registry.yarnpkg.com/@gadgetinc/react-shopify-app-bridge/-/react-shopify-app-bridge-0.18.8.tgz#51c64e3c03cbea056507f8a4b41e0222216be345"
1033+
integrity sha512-N8IYEEblygHgmN02Z7uQKQ5poSx5LX5JZn1EfGAG37d8PMM9nEP36ZDweihxM2xu7UMPZ2cDEI2QWEDnjUpLWQ==
10341034
dependencies:
1035-
"@gadgetinc/api-client-core" "^0.15.43"
1035+
"@gadgetinc/api-client-core" "^0.15.45"
10361036
crypto-js "^4.2.0"
10371037
tslib "^2.6.2"
10381038

1039-
"@gadgetinc/react@^0.21.2":
1040-
version "0.21.2"
1041-
resolved "https://registry.yarnpkg.com/@gadgetinc/react/-/react-0.21.2.tgz#2fc4a31887494f28e4c66dae4b3b64b9dcad5d18"
1042-
integrity sha512-7oP1NtP8yQrAnh+1b5iyjcQnNuhpL4vhecJxMATDeFReo1GfhMTvZ1rSaQcR21m+fePoor1ArVyd9Ytt7ZzN5Q==
1039+
"@gadgetinc/react@^0.21.4":
1040+
version "0.21.4"
1041+
resolved "https://registry.yarnpkg.com/@gadgetinc/react/-/react-0.21.4.tgz#8cdb8f1b8ed5ee9191f514e3bf218e532737df6a"
1042+
integrity sha512-LWAyWJ67GWpISiqTann18717cIIEskZWMJn9A4pPRmSHM2wOs9LZa0N0EtSMPJhVOm+xEKLP5GJ+El+45JoEeg==
10431043
dependencies:
10441044
"@0no-co/graphql.web" "^1.0.4"
1045-
"@gadgetinc/api-client-core" "^0.15.43"
1045+
"@gadgetinc/api-client-core" "^0.15.45"
10461046
"@hookform/resolvers" "^3.3.1"
10471047
filesize "^10.1.2"
10481048
pluralize "^8.0.0"
@@ -2172,6 +2172,13 @@
21722172
dependencies:
21732173
undici-types "~6.19.2"
21742174

2175+
"@types/node@^22.13.14":
2176+
version "22.17.0"
2177+
resolved "https://registry.yarnpkg.com/@types/node/-/node-22.17.0.tgz#e8c9090e957bd4d9860efb323eb92d297347eac7"
2178+
integrity sha512-bbAKTCqX5aNVryi7qXVMi+OkB3w/OyblodicMbvE38blyAz7GxXf6XYhklokijuPwwVg9sDLKRxt0ZHXQwZVfQ==
2179+
dependencies:
2180+
undici-types "~6.21.0"
2181+
21752182
"@types/parse-json@^4.0.0":
21762183
version "4.0.2"
21772184
resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.2.tgz#5950e50960793055845e956c427fc2b0d70c5239"

0 commit comments

Comments
 (0)