@nautical-commerce/graphql-schema 1.61.0-41-g51e81bad0 → 1.61.0-42-g749e3202b
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 +11 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -8532,6 +8532,9 @@ type Content implements Node {
|
|
8532
8532
|
"""
|
8533
8533
|
draftData: JSONString!
|
8534
8534
|
|
8535
|
+
"""Revision number of the latest content version."""
|
8536
|
+
revision: Int!
|
8537
|
+
|
8535
8538
|
"""Whether the content has an active draft."""
|
8536
8539
|
hasActiveDraft: Boolean
|
8537
8540
|
|
@@ -13279,7 +13282,7 @@ type Mutation {
|
|
13279
13282
|
description: String
|
13280
13283
|
|
13281
13284
|
"""
|
13282
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13285
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/gzip, text/plain, text/svg-xml, application/svg+xml, image/eps, application/x-zip-compressed, application/x-autocad, image/vnd.dwg, application/x-tif, application/vnd.oasis.opendocument.spreadsheet, application/x-tiff, application/x-rtf, text/comma-separated-values, application/vnd.ms-word, text/x-csv, image/x-dwg, image/heic-sequence, image/x-dxf, application/msword, image/heif-sequence, image/x-ms-bmp, text/csv, application/x-rar, application/vnd.pdf, application/x-tar, application/vnd.oasis.opendocument.text, text/svg, application/zip, image/tif, application/acad, application/x-gzip, application/x-jpg, application/x-eps, application/gzipped, application/vnd.oasis.opendocument.presentation, application/x-dxf, application/rtf, drawing/x-dwf, application/x-csv, application/dxf, image/x-eps, application/eps, application/csv, image/webp, image/tiff, application/postscript, text/x-pdf, pplication/vnd.rar, application/jpg, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/jpg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/dwg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-acad, image/x-bmp, image/heif, application/excel, application/x-pdf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/x-comma-separated-values, image/x-tiff, application/acrobat, application/x-rar-compressed, application/vnd.ms-powerpoint, image/png, application/tiff, application/gzip-compressed, image/bmp, image/jpeg, application/vnd.ms-excel, image/x-tif, text/pdf, image/svg, image/gif, drawing/dwg, image/dxf, application/pdf, image/heic, drawing/x-dwg, application/x-dwg, image/svg+xml, text/rtf, application/tif.
|
13283
13286
|
"""
|
13284
13287
|
file: Upload!
|
13285
13288
|
|
@@ -18148,6 +18151,7 @@ enum ShopErrorCode {
|
|
18148
18151
|
REQUIRED
|
18149
18152
|
UNIQUE
|
18150
18153
|
NOT_ALLOWED
|
18154
|
+
STALE_DATA
|
18151
18155
|
}
|
18152
18156
|
|
18153
18157
|
input ContentPageDataCreateInput {
|
@@ -18199,6 +18203,9 @@ type ContentSave {
|
|
18199
18203
|
}
|
18200
18204
|
|
18201
18205
|
input ContentSaveInput {
|
18206
|
+
"""Revision of the previous content version"""
|
18207
|
+
previousRevision: Int!
|
18208
|
+
|
18202
18209
|
"""Editor data"""
|
18203
18210
|
data: JSONString!
|
18204
18211
|
}
|
@@ -18216,6 +18223,9 @@ type ContentPublish {
|
|
18216
18223
|
}
|
18217
18224
|
|
18218
18225
|
input ContentPublishInput {
|
18226
|
+
"""Revision of the previous content version"""
|
18227
|
+
previousRevision: Int!
|
18228
|
+
|
18219
18229
|
"""Editor data"""
|
18220
18230
|
data: JSONString!
|
18221
18231
|
|