@nautical-commerce/graphql-schema 1.64.0-9-g5b90f36f0 → 1.64.1
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 +9 -42
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -3791,6 +3791,9 @@ type Order implements Node & ObjectWithMetadata {
|
|
3791
3791
|
"""Total amount of the order."""
|
3792
3792
|
total: TaxedMoney
|
3793
3793
|
|
3794
|
+
"""Total of the order including any discounts."""
|
3795
|
+
discountedTotal: TaxedMoney
|
3796
|
+
|
3794
3797
|
"""Original total amount of the order."""
|
3795
3798
|
originalTotal: TaxedMoney
|
3796
3799
|
|
@@ -4748,6 +4751,7 @@ type Permission {
|
|
4748
4751
|
name: String!
|
4749
4752
|
}
|
4750
4753
|
|
4754
|
+
"""An enumeration."""
|
4751
4755
|
enum PermissionEnum {
|
4752
4756
|
MANAGE_USERS
|
4753
4757
|
MANAGE_STAFF
|
@@ -4763,7 +4767,7 @@ enum PermissionEnum {
|
|
4763
4767
|
MANAGE_ORDERS
|
4764
4768
|
MANAGE_DRAFT_AND_QUOTE_ORDERS
|
4765
4769
|
MANAGE_FULFILLMENTS
|
4766
|
-
MANAGE_PAGES
|
4770
|
+
MANAGE_PAGES
|
4767
4771
|
MANAGE_PRODUCTS
|
4768
4772
|
MANAGE_INVENTORY
|
4769
4773
|
MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES
|
@@ -5693,6 +5697,9 @@ type OrderLine implements Node & ObjectWithMetadata {
|
|
5693
5697
|
"""Price of the order line."""
|
5694
5698
|
totalPrice: TaxedMoney
|
5695
5699
|
|
5700
|
+
"""Total price of the line with any discounts applied"""
|
5701
|
+
discountedTotalPrice: TaxedMoney
|
5702
|
+
|
5696
5703
|
"""
|
5697
5704
|
A purchased product variant. Note: this field may be null if the variant has been removed from stock at all.
|
5698
5705
|
"""
|
@@ -10505,10 +10512,6 @@ type Page implements Node & ObjectWithMetadata {
|
|
10505
10512
|
|
10506
10513
|
"""Whether the page is published."""
|
10507
10514
|
isPublished: Boolean!
|
10508
|
-
image(
|
10509
|
-
"""Featured image for the page."""
|
10510
|
-
size: Int
|
10511
|
-
): Image
|
10512
10515
|
}
|
10513
10516
|
|
10514
10517
|
type PageCountableConnection {
|
@@ -13166,7 +13169,7 @@ type Mutation {
|
|
13166
13169
|
description: String
|
13167
13170
|
|
13168
13171
|
"""
|
13169
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13172
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/vnd.ms-powerpoint, image/x-tif, application/x-eps, image/bmp, text/x-csv, image/x-tiff, image/jpg, image/tiff, image/x-ms-bmp, application/msword, application/svg+xml, text/rtf, image/heif, application/vnd.pdf, image/eps, application/x-rtf, drawing/x-dwf, application/csv, application/acad, application/excel, application/rtf, image/x-bmp, application/zip, application/x-dxf, drawing/dwg, image/heic, application/dxf, application/pdf, image/heif-sequence, image/jpeg, image/vnd.dwg, drawing/x-dwg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/heic-sequence, image/svg+xml, application/x-csv, application/jpg, application/vnd.oasis.opendocument.text, application/tiff, application/x-acad, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/gif, application/x-dwg, pplication/vnd.rar, application/x-autocad, text/plain, application/acrobat, application/x-tiff, application/gzip-compressed, text/pdf, application/x-jpg, text/svg, image/svg, application/x-gzip, application/x-tif, image/dxf, application/vnd.oasis.opendocument.spreadsheet, image/x-eps, application/eps, text/x-pdf, image/png, application/vnd.ms-word, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/csv, image/tif, image/x-dwg, image/x-dxf, text/svg-xml, application/postscript, text/x-comma-separated-values, application/x-rar-compressed, application/dwg, application/x-rar, application/gzipped, application/vnd.oasis.opendocument.presentation, application/vnd.ms-excel, application/tif, image/webp, application/x-pdf, application/gzip, text/comma-separated-values, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-tar, application/x-zip-compressed.
|
13170
13173
|
"""
|
13171
13174
|
file: Upload!
|
13172
13175
|
|
@@ -14637,26 +14640,6 @@ type Mutation {
|
|
14637
14640
|
input: PageInput!
|
14638
14641
|
): PageUpdate
|
14639
14642
|
|
14640
|
-
"""
|
14641
|
-
Creates a featured image for the given page.This mutation must be sent as a 'multipart' request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec
|
14642
|
-
"""
|
14643
|
-
pageImageUpdate(
|
14644
|
-
"""Alt text for the image."""
|
14645
|
-
alt: String!
|
14646
|
-
|
14647
|
-
"""ID of the page to update."""
|
14648
|
-
id: ID!
|
14649
|
-
|
14650
|
-
"""Represents an image file in a multipart request"""
|
14651
|
-
image: Upload!
|
14652
|
-
): PageImageUpdate
|
14653
|
-
|
14654
|
-
"""Deletes a features image for the given page."""
|
14655
|
-
pageImageDelete(
|
14656
|
-
"""ID of the page to delete the image off of."""
|
14657
|
-
id: ID!
|
14658
|
-
): PageImageDelete
|
14659
|
-
|
14660
14643
|
"""Completes creating an order."""
|
14661
14644
|
draftOrderComplete(
|
14662
14645
|
"""ID of the order that will be completed."""
|
@@ -20434,22 +20417,6 @@ type PageUpdate {
|
|
20434
20417
|
page: Page
|
20435
20418
|
}
|
20436
20419
|
|
20437
|
-
"""
|
20438
|
-
Creates a featured image for the given page.This mutation must be sent as a 'multipart' request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec
|
20439
|
-
"""
|
20440
|
-
type PageImageUpdate {
|
20441
|
-
"""An updated page instance."""
|
20442
|
-
page: Page
|
20443
|
-
pageErrors: [PageError!]!
|
20444
|
-
}
|
20445
|
-
|
20446
|
-
"""Deletes a features image for the given page."""
|
20447
|
-
type PageImageDelete {
|
20448
|
-
"""An updated page instance"""
|
20449
|
-
page: Page
|
20450
|
-
pageErrors: [PageError!]!
|
20451
|
-
}
|
20452
|
-
|
20453
20420
|
"""Completes creating an order."""
|
20454
20421
|
type DraftOrderComplete {
|
20455
20422
|
"""Completed order."""
|