@nautical-commerce/graphql-schema 1.64.2 → 1.65.0-1-g7865ae01b
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 +47 -3
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -4751,7 +4751,6 @@ type Permission {
|
|
4751
4751
|
name: String!
|
4752
4752
|
}
|
4753
4753
|
|
4754
|
-
"""An enumeration."""
|
4755
4754
|
enum PermissionEnum {
|
4756
4755
|
MANAGE_USERS
|
4757
4756
|
MANAGE_STAFF
|
@@ -4767,7 +4766,7 @@ enum PermissionEnum {
|
|
4767
4766
|
MANAGE_ORDERS
|
4768
4767
|
MANAGE_DRAFT_AND_QUOTE_ORDERS
|
4769
4768
|
MANAGE_FULFILLMENTS
|
4770
|
-
MANAGE_PAGES
|
4769
|
+
MANAGE_PAGES @deprecated(reason: "This will be removed on March 10, 2025. If you are using MANAGE_PAGES, please use MANAGE_STOREFRONTS instead.")
|
4771
4770
|
MANAGE_PRODUCTS
|
4772
4771
|
MANAGE_INVENTORY
|
4773
4772
|
MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES
|
@@ -10512,6 +10511,10 @@ type Page implements Node & ObjectWithMetadata {
|
|
10512
10511
|
|
10513
10512
|
"""Whether the page is published."""
|
10514
10513
|
isPublished: Boolean!
|
10514
|
+
image(
|
10515
|
+
"""Featured image for the page."""
|
10516
|
+
size: Int
|
10517
|
+
): Image
|
10515
10518
|
}
|
10516
10519
|
|
10517
10520
|
type PageCountableConnection {
|
@@ -11002,6 +11005,11 @@ type MarketplaceConfiguration {
|
|
11002
11005
|
customerSetPasswordUrl: String
|
11003
11006
|
includeTaxesInPrices: Boolean!
|
11004
11007
|
chargeTaxesOnShipping: Boolean!
|
11008
|
+
|
11009
|
+
"""
|
11010
|
+
The marketplace's end trial date, or null if the marketplace is not in trial mode.
|
11011
|
+
"""
|
11012
|
+
trialEndsAt: DateTime
|
11005
11013
|
}
|
11006
11014
|
|
11007
11015
|
enum MarketplaceConfigurationPayoutAutomationStrategyEnum {
|
@@ -13169,7 +13177,7 @@ type Mutation {
|
|
13169
13177
|
description: String
|
13170
13178
|
|
13171
13179
|
"""
|
13172
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13180
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: text/plain, application/x-tar, application/x-gzip, application/svg+xml, application/dwg, application/x-rtf, image/tiff, application/vnd.oasis.opendocument.text, text/csv, application/vnd.pdf, application/gzip-compressed, image/png, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/tif, application/x-zip-compressed, application/vnd.ms-excel, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/eps, application/x-jpg, application/excel, application/gzip, image/gif, text/x-comma-separated-values, image/jpg, application/x-rar, application/x-eps, application/x-autocad, application/rtf, text/pdf, application/csv, application/vnd.oasis.opendocument.spreadsheet, application/tiff, image/x-tif, text/x-pdf, application/x-tiff, image/x-dxf, text/comma-separated-values, drawing/dwg, application/vnd.oasis.opendocument.presentation, text/rtf, application/eps, application/zip, application/gzipped, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/svg+xml, application/x-dwg, image/x-ms-bmp, application/x-dxf, application/acad, text/svg-xml, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/acrobat, image/heic-sequence, pplication/vnd.rar, image/svg, image/x-dwg, drawing/x-dwg, image/heif, text/svg, image/heif-sequence, application/x-pdf, application/jpg, application/x-csv, image/x-bmp, application/postscript, image/dxf, application/x-acad, image/webp, application/dxf, application/pdf, image/x-eps, application/tif, image/vnd.dwg, image/bmp, application/vnd.ms-powerpoint, image/jpeg, image/heic, drawing/x-dwf, application/vnd.ms-word, application/x-rar-compressed, application/msword, text/x-csv, image/x-tiff, application/x-tif.
|
13173
13181
|
"""
|
13174
13182
|
file: Upload!
|
13175
13183
|
|
@@ -14640,6 +14648,26 @@ type Mutation {
|
|
14640
14648
|
input: PageInput!
|
14641
14649
|
): PageUpdate
|
14642
14650
|
|
14651
|
+
"""
|
14652
|
+
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
|
14653
|
+
"""
|
14654
|
+
pageImageUpdate(
|
14655
|
+
"""Alt text for the image."""
|
14656
|
+
alt: String!
|
14657
|
+
|
14658
|
+
"""ID of the page to update."""
|
14659
|
+
id: ID!
|
14660
|
+
|
14661
|
+
"""Represents an image file in a multipart request"""
|
14662
|
+
image: Upload!
|
14663
|
+
): PageImageUpdate
|
14664
|
+
|
14665
|
+
"""Deletes a features image for the given page."""
|
14666
|
+
pageImageDelete(
|
14667
|
+
"""ID of the page to delete the image off of."""
|
14668
|
+
id: ID!
|
14669
|
+
): PageImageDelete
|
14670
|
+
|
14643
14671
|
"""Completes creating an order."""
|
14644
14672
|
draftOrderComplete(
|
14645
14673
|
"""ID of the order that will be completed."""
|
@@ -20417,6 +20445,22 @@ type PageUpdate {
|
|
20417
20445
|
page: Page
|
20418
20446
|
}
|
20419
20447
|
|
20448
|
+
"""
|
20449
|
+
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
|
20450
|
+
"""
|
20451
|
+
type PageImageUpdate {
|
20452
|
+
"""An updated page instance."""
|
20453
|
+
page: Page
|
20454
|
+
pageErrors: [PageError!]!
|
20455
|
+
}
|
20456
|
+
|
20457
|
+
"""Deletes a features image for the given page."""
|
20458
|
+
type PageImageDelete {
|
20459
|
+
"""An updated page instance"""
|
20460
|
+
page: Page
|
20461
|
+
pageErrors: [PageError!]!
|
20462
|
+
}
|
20463
|
+
|
20420
20464
|
"""Completes creating an order."""
|
20421
20465
|
type DraftOrderComplete {
|
20422
20466
|
"""Completed order."""
|