@faststore/core 3.0.3 → 3.0.4

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.
Files changed (38) hide show
  1. package/.next/BUILD_ID +1 -1
  2. package/.next/build-manifest.json +2 -2
  3. package/.next/cache/.tsbuildinfo +1 -1
  4. package/.next/cache/config.json +3 -3
  5. package/.next/cache/eslint/.cache_1gneedd +1 -1
  6. package/.next/cache/webpack/client-production/0.pack +0 -0
  7. package/.next/cache/webpack/client-production/index.pack +0 -0
  8. package/.next/cache/webpack/server-production/0.pack +0 -0
  9. package/.next/cache/webpack/server-production/index.pack +0 -0
  10. package/.next/next-minimal-server.js.nft.json +1 -1
  11. package/.next/next-server.js.nft.json +1 -1
  12. package/.next/prerender-manifest.js +1 -1
  13. package/.next/prerender-manifest.json +1 -1
  14. package/.next/routes-manifest.json +1 -1
  15. package/.next/server/chunks/242.js +1 -1
  16. package/.next/server/middleware-build-manifest.js +1 -1
  17. package/.next/server/pages/[...slug].js.nft.json +1 -1
  18. package/.next/server/pages/[slug]/p.js.nft.json +1 -1
  19. package/.next/server/pages/api/graphql.js +1 -1
  20. package/.next/server/pages/api/graphql.js.nft.json +1 -1
  21. package/.next/server/pages/en-US/404.html +2 -2
  22. package/.next/server/pages/en-US/500.html +2 -2
  23. package/.next/server/pages/en-US/account.html +2 -2
  24. package/.next/server/pages/en-US/checkout.html +2 -2
  25. package/.next/server/pages/en-US/login.html +2 -2
  26. package/.next/server/pages/en-US/s.html +2 -2
  27. package/.next/server/pages/en-US.html +2 -2
  28. package/.next/server/pages-manifest.json +1 -1
  29. package/.next/static/{PrThGOGoaLIWyddgjFmPE → vttFMAteY3noRXvj22LVo}/_buildManifest.js +1 -1
  30. package/.next/trace +91 -91
  31. package/.turbo/turbo-build.log +1 -1
  32. package/.turbo/turbo-test.log +8 -8
  33. package/@generated/graphql/persisted.json +13 -0
  34. package/@generated/graphql/schema.graphql +1053 -0
  35. package/@generated/graphql.ts +6 -0
  36. package/@generated/schema.graphql +1 -1
  37. package/package.json +3 -3
  38. /package/.next/static/{PrThGOGoaLIWyddgjFmPE → vttFMAteY3noRXvj22LVo}/_ssgManifest.js +0 -0
@@ -929,6 +929,12 @@ export type StoreProduct = {
929
929
  slug: Scalars['String']['output']
930
930
  }
931
931
 
932
+ /** Product information. Products are variants within product groups, equivalent to VTEX [SKUs](https://help.vtex.com/en/tutorial/what-is-an-sku--1K75s4RXAQyOuGUYKMM68u#). For example, you may have a **Shirt** product group with associated products such as **Blue shirt size L**, **Green shirt size XL** and so on. */
933
+ export type StoreProductImageArgs = {
934
+ context?: InputMaybe<Scalars['String']['input']>
935
+ limit?: InputMaybe<Scalars['Int']['input']>
936
+ }
937
+
932
938
  /** Product connections, including pagination information and products returned by the query. */
933
939
  export type StoreProductConnection = {
934
940
  /** Array with product connection edges, each containing a product and a corresponding cursor. */
@@ -357,7 +357,7 @@ type StoreProduct {
357
357
  """Product description."""
358
358
  description: String!
359
359
  """Array of images."""
360
- image: [StoreImage!]!
360
+ image(context: String = "generic", limit: Int = -1): [StoreImage!]!
361
361
  """Aggregate offer information."""
362
362
  offers: StoreAggregateOffer!
363
363
  """Stock Keeping Unit. Merchant-specific ID for the product."""
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@faststore/core",
3
- "version": "3.0.3",
3
+ "version": "3.0.4",
4
4
  "license": "MIT",
5
5
  "repository": "vtex/faststore",
6
6
  "browserslist": "supports es6-module and not dead",
@@ -38,7 +38,7 @@
38
38
  "@envelop/graphql-jit": "^1.1.1",
39
39
  "@envelop/parser-cache": "^2.2.0",
40
40
  "@envelop/validation-cache": "^2.2.0",
41
- "@faststore/api": "^3.0.3",
41
+ "@faststore/api": "^3.0.4",
42
42
  "@faststore/components": "^3.0.3",
43
43
  "@faststore/graphql-utils": "^3.0.3",
44
44
  "@faststore/sdk": "^3.0.3",
@@ -127,5 +127,5 @@
127
127
  "node": "18.19.0",
128
128
  "yarn": "1.19.1"
129
129
  },
130
- "gitHead": "bb27ad0d2b285ee09d480d077e47fb6c9d8339a2"
130
+ "gitHead": "47fa957b6cdc2eb86726f2e275072fd807263349"
131
131
  }