@nautical-commerce/graphql-schema 1.67.0-9-g3b23ca4c5 → 1.67.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 -7
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -9115,7 +9115,6 @@ type Policy implements Node & ObjectWithMetadata {
|
|
9115
9115
|
"""The ID of the object"""
|
9116
9116
|
id: ID!
|
9117
9117
|
publicationDate: Date
|
9118
|
-
isPublished: Boolean!
|
9119
9118
|
createdAt: DateTime!
|
9120
9119
|
updatedAt: DateTime!
|
9121
9120
|
content: String!
|
@@ -9133,6 +9132,9 @@ type Policy implements Node & ObjectWithMetadata {
|
|
9133
9132
|
|
9134
9133
|
"""List of public metadata items. Can be accessed without permissions."""
|
9135
9134
|
metadata: [MetadataItem!]!
|
9135
|
+
|
9136
|
+
"""Whether the policy is published."""
|
9137
|
+
isPublished: Boolean!
|
9136
9138
|
}
|
9137
9139
|
|
9138
9140
|
"""An enumeration."""
|
@@ -10562,7 +10564,6 @@ type Page implements Node & ObjectWithMetadata {
|
|
10562
10564
|
"""The ID of the object"""
|
10563
10565
|
id: ID!
|
10564
10566
|
publicationDate: Date
|
10565
|
-
isPublished: Boolean!
|
10566
10567
|
createdAt: DateTime!
|
10567
10568
|
updatedAt: DateTime!
|
10568
10569
|
content: String!
|
@@ -10579,6 +10580,9 @@ type Page implements Node & ObjectWithMetadata {
|
|
10579
10580
|
|
10580
10581
|
"""List of public metadata items. Can be accessed without permissions."""
|
10581
10582
|
metadata: [MetadataItem!]!
|
10583
|
+
|
10584
|
+
"""Whether the page is published."""
|
10585
|
+
isPublished: Boolean!
|
10582
10586
|
image(
|
10583
10587
|
"""Featured image for the page."""
|
10584
10588
|
size: Int
|
@@ -10952,9 +10956,7 @@ type MarketplaceConfiguration {
|
|
10952
10956
|
id: UUID!
|
10953
10957
|
marketplaceName: String!
|
10954
10958
|
requireProductApproval: Boolean!
|
10955
|
-
|
10956
|
-
"""True if products require product types to be created"""
|
10957
|
-
requireProductTypes: Boolean @deprecated(reason: "This will be removed on April 15, 2025.")
|
10959
|
+
requireProductTypes: Boolean!
|
10958
10960
|
|
10959
10961
|
"""Determines payout status transformation strategy"""
|
10960
10962
|
payoutAutomationStrategy: MarketplaceConfigurationPayoutAutomationStrategyEnum
|
@@ -13201,7 +13203,7 @@ type Mutation {
|
|
13201
13203
|
description: String
|
13202
13204
|
|
13203
13205
|
"""
|
13204
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13206
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/svg, image/x-tiff, text/x-csv, image/gif, application/x-gzip, image/svg+xml, drawing/x-dwg, text/x-pdf, text/plain, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/jpg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-tif, image/bmp, application/svg+xml, application/dxf, image/heif-sequence, text/comma-separated-values, application/gzipped, application/gzip, application/gzip-compressed, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/eps, text/svg-xml, application/zip, application/x-rar, application/vnd.pdf, application/acad, image/heic, drawing/x-dwf, pplication/vnd.rar, application/x-zip-compressed, image/heic-sequence, image/tif, text/rtf, application/vnd.oasis.opendocument.presentation, application/x-tiff, application/vnd.oasis.opendocument.spreadsheet, image/heif, image/dxf, application/vnd.ms-word, application/x-jpg, text/svg, application/csv, application/excel, application/acrobat, application/jpg, application/rtf, application/x-rtf, text/csv, application/postscript, application/vnd.ms-powerpoint, application/vnd.ms-excel, application/x-dwg, application/dwg, text/pdf, image/eps, application/x-pdf, application/x-csv, application/tiff, application/vnd.oasis.opendocument.text, application/tif, application/x-dxf, image/x-dxf, image/x-dwg, image/webp, image/x-bmp, image/x-ms-bmp, image/tiff, text/x-comma-separated-values, application/x-autocad, image/x-eps, application/x-eps, image/x-tif, drawing/dwg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-tar, application/pdf, image/png, image/vnd.dwg, application/x-acad, image/jpeg, application/x-rar-compressed.
|
13205
13207
|
"""
|
13206
13208
|
file: Upload!
|
13207
13209
|
|
@@ -16603,7 +16605,7 @@ input MarketplaceConfigurationInput {
|
|
16603
16605
|
requireProductApproval: Boolean
|
16604
16606
|
|
16605
16607
|
"""True if products require product types to be created"""
|
16606
|
-
requireProductTypes: Boolean
|
16608
|
+
requireProductTypes: Boolean
|
16607
16609
|
|
16608
16610
|
"""Updates status transformation strategy for payout."""
|
16609
16611
|
payoutAutomationStrategy: MarketplaceConfigurationPayoutAutomationStrategyEnum = null
|