@nautical-commerce/graphql-schema 1.80.0-27-g185c1a05e → 1.80.0-28-g4be9fba36
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 +6 -37
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -693,27 +693,6 @@ type Query {
|
|
693
693
|
last: Int
|
694
694
|
): ProductVariantCountableConnection
|
695
695
|
|
696
|
-
"""List of top selling products."""
|
697
|
-
reportProductSales(
|
698
|
-
"""Span of time."""
|
699
|
-
period: ReportingPeriod!
|
700
|
-
|
701
|
-
"""Seller global id to filter by."""
|
702
|
-
identifier: ID
|
703
|
-
|
704
|
-
"""Return the elements in the list that come before the specified cursor."""
|
705
|
-
before: String
|
706
|
-
|
707
|
-
"""Return the elements in the list that come after the specified cursor."""
|
708
|
-
after: String
|
709
|
-
|
710
|
-
"""Return the first n elements from the list."""
|
711
|
-
first: Int
|
712
|
-
|
713
|
-
"""Return the last n elements from the list."""
|
714
|
-
last: Int
|
715
|
-
): ProductVariantCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
|
716
|
-
|
717
696
|
"""Look up a price book by ID."""
|
718
697
|
priceBook(
|
719
698
|
"""ID of a price book."""
|
@@ -2785,7 +2764,6 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2785
2764
|
|
2786
2765
|
"""List of vouchers associated with the product."""
|
2787
2766
|
vouchers: [Voucher!]!
|
2788
|
-
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
2789
2767
|
|
2790
2768
|
"""
|
2791
2769
|
The sub status of the product variant. This will be the same as product's sub status.
|
@@ -9592,11 +9570,6 @@ enum ProductTypeSortField {
|
|
9592
9570
|
EXTERNAL_SOURCE
|
9593
9571
|
}
|
9594
9572
|
|
9595
|
-
enum ReportingPeriod {
|
9596
|
-
TODAY
|
9597
|
-
THIS_MONTH
|
9598
|
-
}
|
9599
|
-
|
9600
9573
|
type PriceBookCountableConnection {
|
9601
9574
|
"""Pagination data for this connection."""
|
9602
9575
|
pageInfo: PageInfo!
|
@@ -10669,6 +10642,11 @@ input OrderQuoteFilterInput {
|
|
10669
10642
|
source: [OrderSourceFilter!]
|
10670
10643
|
}
|
10671
10644
|
|
10645
|
+
enum ReportingPeriod {
|
10646
|
+
TODAY
|
10647
|
+
THIS_MONTH
|
10648
|
+
}
|
10649
|
+
|
10672
10650
|
type FulfillmentCountableConnection {
|
10673
10651
|
"""Pagination data for this connection."""
|
10674
10652
|
pageInfo: PageInfo!
|
@@ -12099,7 +12077,7 @@ type Mutation {
|
|
12099
12077
|
description: String
|
12100
12078
|
|
12101
12079
|
"""
|
12102
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/x-csv, application/
|
12080
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/x-autocad, drawing/x-dwg, text/csv, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-pdf, image/png, image/dxf, application/tiff, image/svg, application/x-rar, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/svg, application/x-acad, text/x-comma-separated-values, text/pdf, application/x-tiff, image/x-tiff, image/heic-sequence, application/vnd.ms-excel, drawing/dwg, application/postscript, application/jpg, image/x-bmp, application/vnd.ms-word, text/x-csv, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-tif, drawing/x-dwf, image/bmp, application/acrobat, image/vnd.dwg, application/gzip, image/heif, application/vnd.pdf, application/gzipped, pplication/vnd.rar, application/vnd.oasis.opendocument.spreadsheet, application/dxf, application/x-tar, application/zip, image/x-tif, image/svg+xml, application/msword, text/x-pdf, image/jpeg, application/x-dwg, application/x-rar-compressed, application/tif, image/gif, application/acad, application/eps, application/csv, application/vnd.oasis.opendocument.text, image/tiff, text/rtf, image/eps, application/x-gzip, image/webp, application/dwg, image/x-eps, image/tif, image/jpg, application/vnd.ms-powerpoint, application/x-dxf, text/svg-xml, image/x-ms-bmp, application/rtf, application/vnd.oasis.opendocument.presentation, image/heic, application/pdf, application/x-eps, image/x-dxf, application/x-csv, image/x-dwg, application/x-rtf, application/excel, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/gzip-compressed, text/comma-separated-values, application/x-jpg, application/svg+xml, text/plain, image/heif-sequence, application/x-zip-compressed.
|
12103
12081
|
"""
|
12104
12082
|
file: Upload!
|
12105
12083
|
|
@@ -18621,9 +18599,6 @@ input ProductVariantCreateInput {
|
|
18621
18599
|
"""Name for the variant."""
|
18622
18600
|
name: String
|
18623
18601
|
|
18624
|
-
"""True if variant requires quote pricing."""
|
18625
|
-
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
18626
|
-
|
18627
18602
|
"""
|
18628
18603
|
Informs whether a collection is published. All variants are published by default
|
18629
18604
|
"""
|
@@ -18756,9 +18731,6 @@ input ProductVariantBulkCreateInput {
|
|
18756
18731
|
"""Name for the variant."""
|
18757
18732
|
name: String
|
18758
18733
|
|
18759
|
-
"""True if variant requires quote pricing."""
|
18760
|
-
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
18761
|
-
|
18762
18734
|
"""
|
18763
18735
|
Informs whether a collection is published. All variants are published by default
|
18764
18736
|
"""
|
@@ -18926,9 +18898,6 @@ input ProductVariantInput {
|
|
18926
18898
|
"""Name for the variant."""
|
18927
18899
|
name: String
|
18928
18900
|
|
18929
|
-
"""True if variant requires quote pricing."""
|
18930
|
-
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
18931
|
-
|
18932
18901
|
"""
|
18933
18902
|
Informs whether a collection is published. All variants are published by default
|
18934
18903
|
"""
|