@jetshop/template-trend 6.2.9 → 6.2.11-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.
- package/package.json +5 -5
- package/schema.graphql +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jetshop/template-trend",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.11-0",
|
|
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.
|
|
48
|
+
"@jetshop/core": "^6.2.11-0",
|
|
49
49
|
"@jetshop/flight-shortcodes": "^2.0.10",
|
|
50
|
-
"@jetshop/intl": "^6.2.
|
|
51
|
-
"@jetshop/react-scripts": "^6.2.
|
|
52
|
-
"@jetshop/ui": "^6.2.
|
|
50
|
+
"@jetshop/intl": "^6.2.11-0",
|
|
51
|
+
"@jetshop/react-scripts": "^6.2.11-0",
|
|
52
|
+
"@jetshop/ui": "^6.2.11-0",
|
|
53
53
|
"@react-google-maps/api": "~2.18.1",
|
|
54
54
|
"prop-types": "^15.6.2",
|
|
55
55
|
"react": "^18",
|
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
|