@nautical-commerce/graphql-schema 3.6.1 → 3.6.3
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/nautical/schema.graphql +12 -4
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
|
@@ -10033,12 +10033,16 @@ type NauticalOrderLine implements Node & ObjectWithMetadata {
|
|
|
10033
10033
|
List of private metadata items. Requires proper staff permissions to access.
|
|
10034
10034
|
"""
|
|
10035
10035
|
privateMetadata: [MetadataItem!]!
|
|
10036
|
+
|
|
10037
|
+
"""Note for this line item."""
|
|
10038
|
+
note: String
|
|
10039
|
+
|
|
10040
|
+
"""Note explaining the price override."""
|
|
10041
|
+
unitPriceOverriddenNote: String
|
|
10036
10042
|
externalId: String
|
|
10037
10043
|
externalSource: String
|
|
10038
10044
|
externalInventoryId: String
|
|
10039
10045
|
isLinePriceOverridden: Boolean!
|
|
10040
|
-
unitPriceOverriddenNote: String
|
|
10041
|
-
note: String
|
|
10042
10046
|
productName: String!
|
|
10043
10047
|
variantName: String!
|
|
10044
10048
|
productSku: String
|
|
@@ -11188,12 +11192,16 @@ type OrderLine implements Node & ObjectWithMetadata {
|
|
|
11188
11192
|
List of private metadata items. Requires proper staff permissions to access.
|
|
11189
11193
|
"""
|
|
11190
11194
|
privateMetadata: [MetadataItem!]!
|
|
11195
|
+
|
|
11196
|
+
"""Note for this line item."""
|
|
11197
|
+
note: String
|
|
11198
|
+
|
|
11199
|
+
"""Note explaining the price override."""
|
|
11200
|
+
unitPriceOverriddenNote: String
|
|
11191
11201
|
externalId: String
|
|
11192
11202
|
externalSource: String
|
|
11193
11203
|
externalInventoryId: String
|
|
11194
11204
|
isLinePriceOverridden: Boolean!
|
|
11195
|
-
unitPriceOverriddenNote: String
|
|
11196
|
-
note: String
|
|
11197
11205
|
productName: String!
|
|
11198
11206
|
variantName: String!
|
|
11199
11207
|
productSku: String
|