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