@nautical-commerce/graphql-schema 4.2.0 → 4.2.2
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 +29 -27
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
|
@@ -3519,7 +3519,7 @@ type CheckoutLine implements Node & ObjectWithMetadata {
|
|
|
3519
3519
|
unitPriceOverriddenNote: String
|
|
3520
3520
|
|
|
3521
3521
|
"""The product variant for this checkout line."""
|
|
3522
|
-
variant: ProductVariant
|
|
3522
|
+
variant: ProductVariant!
|
|
3523
3523
|
|
|
3524
3524
|
"""The seller of this product."""
|
|
3525
3525
|
seller: Seller
|
|
@@ -3817,10 +3817,10 @@ type Collection implements Node & ObjectWithMetadata {
|
|
|
3817
3817
|
slug: String!
|
|
3818
3818
|
|
|
3819
3819
|
"""Description of the collection"""
|
|
3820
|
-
description: String
|
|
3820
|
+
description: String!
|
|
3821
3821
|
|
|
3822
3822
|
"""Description as HTML"""
|
|
3823
|
-
descriptionHtml: String
|
|
3823
|
+
descriptionHtml: String!
|
|
3824
3824
|
|
|
3825
3825
|
"""Publication date of the collection"""
|
|
3826
3826
|
publicationDate: Date
|
|
@@ -4272,10 +4272,10 @@ type Content implements Node {
|
|
|
4272
4272
|
lockExpiry: DateTime
|
|
4273
4273
|
|
|
4274
4274
|
"""When the content was created"""
|
|
4275
|
-
createdAt: DateTime
|
|
4275
|
+
createdAt: DateTime!
|
|
4276
4276
|
|
|
4277
4277
|
"""When the content was last updated"""
|
|
4278
|
-
updatedAt: DateTime
|
|
4278
|
+
updatedAt: DateTime!
|
|
4279
4279
|
|
|
4280
4280
|
"""Publication date"""
|
|
4281
4281
|
publicationDate: DateTime
|
|
@@ -5691,7 +5691,7 @@ type DigitalContentUrl implements Node {
|
|
|
5691
5691
|
url: String
|
|
5692
5692
|
|
|
5693
5693
|
"""The digital content this URL provides access to"""
|
|
5694
|
-
content: DigitalContent
|
|
5694
|
+
content: DigitalContent!
|
|
5695
5695
|
}
|
|
5696
5696
|
|
|
5697
5697
|
type DigitalContentUrlAuditEvent implements Node {
|
|
@@ -5889,7 +5889,7 @@ type Document {
|
|
|
5889
5889
|
name: String!
|
|
5890
5890
|
|
|
5891
5891
|
"""Description of the document."""
|
|
5892
|
-
description: String
|
|
5892
|
+
description: String!
|
|
5893
5893
|
|
|
5894
5894
|
"""File extension."""
|
|
5895
5895
|
fileExtension: String!
|
|
@@ -7539,7 +7539,7 @@ type Invoice implements Node & ObjectWithMetadata & Job {
|
|
|
7539
7539
|
message: String
|
|
7540
7540
|
|
|
7541
7541
|
"""Invoice number"""
|
|
7542
|
-
number: String
|
|
7542
|
+
number: String!
|
|
7543
7543
|
|
|
7544
7544
|
"""URL to download an invoice"""
|
|
7545
7545
|
url: String
|
|
@@ -12667,7 +12667,7 @@ type OrderLine implements Node & ObjectWithMetadata {
|
|
|
12667
12667
|
order: Order!
|
|
12668
12668
|
|
|
12669
12669
|
"""The nautical order line for this seller order line."""
|
|
12670
|
-
nauticalOrderLine: NauticalOrderLine
|
|
12670
|
+
nauticalOrderLine: NauticalOrderLine
|
|
12671
12671
|
|
|
12672
12672
|
"""A purchased product variant."""
|
|
12673
12673
|
variant: ProductVariant
|
|
@@ -15246,7 +15246,7 @@ type ProductImage implements Node {
|
|
|
15246
15246
|
id: ID!
|
|
15247
15247
|
|
|
15248
15248
|
"""Alt text for the image"""
|
|
15249
|
-
alt: String
|
|
15249
|
+
alt: String!
|
|
15250
15250
|
|
|
15251
15251
|
"""Sort order of the image"""
|
|
15252
15252
|
sortOrder: Int
|
|
@@ -15756,10 +15756,10 @@ type ProductType implements Node & ObjectWithMetadata {
|
|
|
15756
15756
|
isShippingRequired: Boolean!
|
|
15757
15757
|
|
|
15758
15758
|
"""Description of the product type"""
|
|
15759
|
-
description: String
|
|
15759
|
+
description: String!
|
|
15760
15760
|
|
|
15761
15761
|
"""Description as HTML"""
|
|
15762
|
-
descriptionHtml: String
|
|
15762
|
+
descriptionHtml: String!
|
|
15763
15763
|
|
|
15764
15764
|
"""External system identifier"""
|
|
15765
15765
|
externalId: String
|
|
@@ -16075,14 +16075,11 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
|
16075
16075
|
sku: String
|
|
16076
16076
|
|
|
16077
16077
|
"""Nautical Stock Number (NSN)"""
|
|
16078
|
-
nauticalStockNumber: String
|
|
16078
|
+
nauticalStockNumber: String!
|
|
16079
16079
|
|
|
16080
16080
|
"""Whether to track inventory for this variant"""
|
|
16081
16081
|
trackInventory: Boolean!
|
|
16082
16082
|
|
|
16083
|
-
"""Currency code for pricing"""
|
|
16084
|
-
currency: String!
|
|
16085
|
-
|
|
16086
16083
|
"""Whether to override the default currency"""
|
|
16087
16084
|
overrideCurrency: Boolean!
|
|
16088
16085
|
|
|
@@ -16144,6 +16141,11 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
|
16144
16141
|
"""
|
|
16145
16142
|
timeline(kinds: [TimelineEntryKind!] = null): [TimelineEntry!]!
|
|
16146
16143
|
|
|
16144
|
+
"""
|
|
16145
|
+
Currency code for pricing. Falls back to the parent product's currency when the variant has none of its own.
|
|
16146
|
+
"""
|
|
16147
|
+
currency: String!
|
|
16148
|
+
|
|
16147
16149
|
"""Status of the variant"""
|
|
16148
16150
|
status: ProductVariantStatus!
|
|
16149
16151
|
|
|
@@ -16163,7 +16165,7 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
|
16163
16165
|
pricing: VariantPricingInfo
|
|
16164
16166
|
|
|
16165
16167
|
"""The product this variant belongs to"""
|
|
16166
|
-
product: Product
|
|
16168
|
+
product: Product!
|
|
16167
16169
|
|
|
16168
16170
|
"""The seller that owns this variant"""
|
|
16169
16171
|
seller: Seller
|
|
@@ -16820,7 +16822,7 @@ type ProductVideo implements Node {
|
|
|
16820
16822
|
id: ID!
|
|
16821
16823
|
|
|
16822
16824
|
"""Alt text for the video"""
|
|
16823
|
-
alt: String
|
|
16825
|
+
alt: String!
|
|
16824
16826
|
|
|
16825
16827
|
"""Sort order of the video"""
|
|
16826
16828
|
sortOrder: Int
|
|
@@ -19167,7 +19169,7 @@ type Sale implements Node {
|
|
|
19167
19169
|
name: String!
|
|
19168
19170
|
|
|
19169
19171
|
"""Currency code for this sale"""
|
|
19170
|
-
currency: String
|
|
19172
|
+
currency: String!
|
|
19171
19173
|
|
|
19172
19174
|
"""Discount type: fixed or percentage"""
|
|
19173
19175
|
type: DiscountValueTypeEnum!
|
|
@@ -19188,7 +19190,7 @@ type Sale implements Node {
|
|
|
19188
19190
|
minSpent: Money
|
|
19189
19191
|
|
|
19190
19192
|
"""Minimum number of items in checkout to apply this sale"""
|
|
19191
|
-
minCheckoutItemsQuantity: Int
|
|
19193
|
+
minCheckoutItemsQuantity: Int!
|
|
19192
19194
|
|
|
19193
19195
|
"""List of categories this sale applies to"""
|
|
19194
19196
|
categories(
|
|
@@ -20292,7 +20294,7 @@ type SellerOnboardingChecklist implements Node {
|
|
|
20292
20294
|
seller: Seller!
|
|
20293
20295
|
|
|
20294
20296
|
"""Tenant this checklist belongs to"""
|
|
20295
|
-
tenant: Tenant
|
|
20297
|
+
tenant: Tenant!
|
|
20296
20298
|
}
|
|
20297
20299
|
|
|
20298
20300
|
"""Result of seller onboarding checklist complete mutation."""
|
|
@@ -20871,7 +20873,7 @@ type ShippingZone implements Node & ObjectWithMetadata {
|
|
|
20871
20873
|
name: String!
|
|
20872
20874
|
|
|
20873
20875
|
"""The seller associated with this shipping zone"""
|
|
20874
|
-
seller: Seller
|
|
20876
|
+
seller: Seller!
|
|
20875
20877
|
|
|
20876
20878
|
"""List of countries available for the method"""
|
|
20877
20879
|
countries: [CountryDisplay!]!
|
|
@@ -21226,7 +21228,7 @@ type ShopifyWebhookTransaction implements Node & Job {
|
|
|
21226
21228
|
seller: Seller!
|
|
21227
21229
|
|
|
21228
21230
|
"""Tenant this webhook belongs to"""
|
|
21229
|
-
tenant: Tenant
|
|
21231
|
+
tenant: Tenant!
|
|
21230
21232
|
}
|
|
21231
21233
|
|
|
21232
21234
|
"""A connection to a list of items."""
|
|
@@ -23579,10 +23581,10 @@ type Warehouse implements Node & ObjectWithMetadata {
|
|
|
23579
23581
|
externalInventoryId: String
|
|
23580
23582
|
|
|
23581
23583
|
"""The seller who owns this warehouse"""
|
|
23582
|
-
seller: Seller
|
|
23584
|
+
seller: Seller!
|
|
23583
23585
|
|
|
23584
23586
|
"""The physical address of this warehouse"""
|
|
23585
|
-
address: Address
|
|
23587
|
+
address: Address!
|
|
23586
23588
|
|
|
23587
23589
|
"""Shipping zones served by this warehouse."""
|
|
23588
23590
|
shippingZones(
|
|
@@ -24058,7 +24060,7 @@ type WebhookJob implements Node & Job {
|
|
|
24058
24060
|
seller: Seller
|
|
24059
24061
|
|
|
24060
24062
|
"""Tenant this webhook belongs to"""
|
|
24061
|
-
tenant: Tenant
|
|
24063
|
+
tenant: Tenant!
|
|
24062
24064
|
|
|
24063
24065
|
"""Request body payload"""
|
|
24064
24066
|
body: JSONString
|
|
@@ -24235,7 +24237,7 @@ type Wishlist implements Node {
|
|
|
24235
24237
|
isDefault: Boolean!
|
|
24236
24238
|
|
|
24237
24239
|
"""Creation date"""
|
|
24238
|
-
createdAt: DateTime
|
|
24240
|
+
createdAt: DateTime!
|
|
24239
24241
|
|
|
24240
24242
|
"""User who owns this wishlist"""
|
|
24241
24243
|
user: User
|