@jetshop/template-trend 6.2.9 → 6.2.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jetshop/template-trend",
3
- "version": "6.2.9",
3
+ "version": "6.2.12",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "build": "react-scripts build",
@@ -45,11 +45,11 @@
45
45
  ]
46
46
  },
47
47
  "dependencies": {
48
- "@jetshop/core": "^6.2.9",
48
+ "@jetshop/core": "^6.2.12",
49
49
  "@jetshop/flight-shortcodes": "^2.0.10",
50
- "@jetshop/intl": "^6.2.9",
51
- "@jetshop/react-scripts": "^6.2.9",
52
- "@jetshop/ui": "^6.2.9",
50
+ "@jetshop/intl": "^6.2.12",
51
+ "@jetshop/react-scripts": "^6.2.12",
52
+ "@jetshop/ui": "^6.2.12",
53
53
  "@react-google-maps/api": "~2.18.1",
54
54
  "prop-types": "^15.6.2",
55
55
  "react": "^18",
@@ -73,5 +73,6 @@
73
73
  "resolutions": {
74
74
  "format-message-estree-util": "npm:@jetshop/format-message-estree-util",
75
75
  "**/@babel/helper-module-transforms": "7.22.5"
76
- }
76
+ },
77
+ "gitHead": "700ed9f7952edf4c921027e264ec0dfa9a8a8626"
77
78
  }
package/schema.graphql CHANGED
@@ -1308,6 +1308,7 @@ type Order {
1308
1308
  currency: Currency
1309
1309
  attachments: [OrderAttachment]
1310
1310
  orderPurchaseLocation: String
1311
+ orderComments: [OrderComment]
1311
1312
  }
1312
1313
 
1313
1314
  type OrderItem {
@@ -1400,6 +1401,11 @@ type OrderAttachment {
1400
1401
  url: String
1401
1402
  }
1402
1403
 
1404
+ type OrderComment {
1405
+ title: String
1406
+ text: String
1407
+ }
1408
+
1403
1409
  type MyPagesContent {
1404
1410
  """Text that will show on the landing page on MyPages"""
1405
1411
  welcomeText: String
@@ -73,7 +73,7 @@ const config = {
73
73
  useIndefinitelySavedCart:
74
74
  typeof process.env.REACT_APP_USE_INDEFINITELY_SAVED_CART === 'undefined'
75
75
  ? true
76
- : false,
76
+ : process.env.REACT_APP_USE_INDEFINITELY_SAVED_CART,
77
77
  usePolyfilling: false
78
78
  };
79
79
  export default config;