@nautical-commerce/graphql-schema 1.57.0-3-g46155dc84 → 1.57.0-5-gafed69cdd
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +59 -93
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -5925,9 +5925,6 @@ type Fulfillment implements Node & ObjectWithMetadata {
|
|
5925
5925
|
"""Sum of quantities across all lines."""
|
5926
5926
|
totalLinesQuantity: Int
|
5927
5927
|
|
5928
|
-
"""Total price across all quantities across all lines."""
|
5929
|
-
totalLinesPrice: Float @deprecated(reason: "This will be removed on October 25, 2024 and replaced by totalLinesMoney")
|
5930
|
-
|
5931
5928
|
"""Total price across all quantities across all lines."""
|
5932
5929
|
totalLinesMoney: Money!
|
5933
5930
|
|
@@ -9092,24 +9089,15 @@ type Shop {
|
|
9092
9089
|
"""Whether the marketplace has enabled offer orders."""
|
9093
9090
|
enableOfferOrders: Boolean
|
9094
9091
|
|
9095
|
-
"""List of the shops's supported languages."""
|
9096
|
-
languages: [LanguageDisplay!]! @deprecated(reason: "This will be removed on October 29, 2024")
|
9097
|
-
|
9098
9092
|
"""Shop's name."""
|
9099
9093
|
name: String!
|
9100
9094
|
|
9101
|
-
"""Shop's navigation."""
|
9102
|
-
navigation: Navigation @deprecated(reason: "Fetch menus using the `menu` query with `slug` parameter. This will be removed on October 29, 2024.")
|
9103
|
-
|
9104
9095
|
"""List of available permissions."""
|
9105
9096
|
permissions: [Permission!]!
|
9106
9097
|
|
9107
9098
|
"""List of possible phone prefixes."""
|
9108
9099
|
phonePrefixes: [String!]!
|
9109
9100
|
|
9110
|
-
"""Header text."""
|
9111
|
-
headerText: String @deprecated(reason: "This will be removed on October 29, 2024")
|
9112
|
-
|
9113
9101
|
"""Include taxes in prices."""
|
9114
9102
|
includeTaxesInPrices: Boolean!
|
9115
9103
|
|
@@ -9152,11 +9140,6 @@ type Shop {
|
|
9152
9140
|
"""Gets active plugins."""
|
9153
9141
|
activePlugins: [Plugin!]!
|
9154
9142
|
|
9155
|
-
"""
|
9156
|
-
None if shop does not use Builder, otherwise this contains Builder public api key.
|
9157
|
-
"""
|
9158
|
-
builderKey: String @deprecated(reason: "This will be removed on October 29, 2024")
|
9159
|
-
|
9160
9143
|
"""
|
9161
9144
|
None if shop does not use Crisp, otherwise this contains Crisp Website ID.
|
9162
9145
|
"""
|
@@ -9250,81 +9233,6 @@ type Domain {
|
|
9250
9233
|
url: String!
|
9251
9234
|
}
|
9252
9235
|
|
9253
|
-
type LanguageDisplay {
|
9254
|
-
"""ISO 639 representation of the language name."""
|
9255
|
-
code: LanguageCodeEnum!
|
9256
|
-
|
9257
|
-
"""Full name of the language."""
|
9258
|
-
language: String!
|
9259
|
-
}
|
9260
|
-
|
9261
|
-
"""Represents shop's navigation menus."""
|
9262
|
-
type Navigation {
|
9263
|
-
"""Main navigation bar."""
|
9264
|
-
main: Menu
|
9265
|
-
|
9266
|
-
"""Secondary navigation bar."""
|
9267
|
-
secondary: Menu
|
9268
|
-
}
|
9269
|
-
|
9270
|
-
"""
|
9271
|
-
Represents a single menu - an object that is used to help navigate through the store.
|
9272
|
-
"""
|
9273
|
-
type Menu implements Node {
|
9274
|
-
"""The ID of the object"""
|
9275
|
-
id: ID!
|
9276
|
-
name: String!
|
9277
|
-
slug: String!
|
9278
|
-
items: [MenuItem!]!
|
9279
|
-
}
|
9280
|
-
|
9281
|
-
"""
|
9282
|
-
Represents a single item of the related menu. Can store categories, collection or pages.
|
9283
|
-
"""
|
9284
|
-
type MenuItem implements Node {
|
9285
|
-
"""The ID of the object"""
|
9286
|
-
id: ID!
|
9287
|
-
menu: Menu!
|
9288
|
-
name: String!
|
9289
|
-
parent: MenuItem
|
9290
|
-
category: Category
|
9291
|
-
collection: Collection
|
9292
|
-
page: Page
|
9293
|
-
level: Int!
|
9294
|
-
children: [MenuItem!]!
|
9295
|
-
|
9296
|
-
"""URL to the menu item."""
|
9297
|
-
url: String
|
9298
|
-
}
|
9299
|
-
|
9300
|
-
"""
|
9301
|
-
A static page that can be manually added by a shop operator through the dashboard.
|
9302
|
-
"""
|
9303
|
-
type Page implements Node & ObjectWithMetadata {
|
9304
|
-
"""The ID of the object"""
|
9305
|
-
id: ID!
|
9306
|
-
publicationDate: Date
|
9307
|
-
createdAt: DateTime!
|
9308
|
-
updatedAt: DateTime!
|
9309
|
-
content: String!
|
9310
|
-
contentHtml: String!
|
9311
|
-
seoTitle: String
|
9312
|
-
seoDescription: String
|
9313
|
-
slug: String!
|
9314
|
-
title: String!
|
9315
|
-
|
9316
|
-
"""
|
9317
|
-
List of private metadata items.Requires proper staff permissions to access.
|
9318
|
-
"""
|
9319
|
-
privateMetadata: [MetadataItem!]!
|
9320
|
-
|
9321
|
-
"""List of public metadata items. Can be accessed without permissions."""
|
9322
|
-
metadata: [MetadataItem!]!
|
9323
|
-
|
9324
|
-
"""Whether the page is published."""
|
9325
|
-
isPublished: Boolean!
|
9326
|
-
}
|
9327
|
-
|
9328
9236
|
"""Plugin."""
|
9329
9237
|
type Plugin implements Node {
|
9330
9238
|
id: ID!
|
@@ -11031,6 +10939,34 @@ type PaymentCountableEdge {
|
|
11031
10939
|
cursor: String!
|
11032
10940
|
}
|
11033
10941
|
|
10942
|
+
"""
|
10943
|
+
A static page that can be manually added by a shop operator through the dashboard.
|
10944
|
+
"""
|
10945
|
+
type Page implements Node & ObjectWithMetadata {
|
10946
|
+
"""The ID of the object"""
|
10947
|
+
id: ID!
|
10948
|
+
publicationDate: Date
|
10949
|
+
createdAt: DateTime!
|
10950
|
+
updatedAt: DateTime!
|
10951
|
+
content: String!
|
10952
|
+
contentHtml: String!
|
10953
|
+
seoTitle: String
|
10954
|
+
seoDescription: String
|
10955
|
+
slug: String!
|
10956
|
+
title: String!
|
10957
|
+
|
10958
|
+
"""
|
10959
|
+
List of private metadata items.Requires proper staff permissions to access.
|
10960
|
+
"""
|
10961
|
+
privateMetadata: [MetadataItem!]!
|
10962
|
+
|
10963
|
+
"""List of public metadata items. Can be accessed without permissions."""
|
10964
|
+
metadata: [MetadataItem!]!
|
10965
|
+
|
10966
|
+
"""Whether the page is published."""
|
10967
|
+
isPublished: Boolean!
|
10968
|
+
}
|
10969
|
+
|
11034
10970
|
type PageCountableConnection {
|
11035
10971
|
"""Pagination data for this connection."""
|
11036
10972
|
pageInfo: PageInfo!
|
@@ -11354,6 +11290,36 @@ enum MicrositeSortField {
|
|
11354
11290
|
PUBLICATION_DATE
|
11355
11291
|
}
|
11356
11292
|
|
11293
|
+
"""
|
11294
|
+
Represents a single menu - an object that is used to help navigate through the store.
|
11295
|
+
"""
|
11296
|
+
type Menu implements Node {
|
11297
|
+
"""The ID of the object"""
|
11298
|
+
id: ID!
|
11299
|
+
name: String!
|
11300
|
+
slug: String!
|
11301
|
+
items: [MenuItem!]!
|
11302
|
+
}
|
11303
|
+
|
11304
|
+
"""
|
11305
|
+
Represents a single item of the related menu. Can store categories, collection or pages.
|
11306
|
+
"""
|
11307
|
+
type MenuItem implements Node {
|
11308
|
+
"""The ID of the object"""
|
11309
|
+
id: ID!
|
11310
|
+
menu: Menu!
|
11311
|
+
name: String!
|
11312
|
+
parent: MenuItem
|
11313
|
+
category: Category
|
11314
|
+
collection: Collection
|
11315
|
+
page: Page
|
11316
|
+
level: Int!
|
11317
|
+
children: [MenuItem!]!
|
11318
|
+
|
11319
|
+
"""URL to the menu item."""
|
11320
|
+
url: String
|
11321
|
+
}
|
11322
|
+
|
11357
11323
|
type MenuCountableConnection {
|
11358
11324
|
"""Pagination data for this connection."""
|
11359
11325
|
pageInfo: PageInfo!
|
@@ -13880,7 +13846,7 @@ type Mutation {
|
|
13880
13846
|
description: String
|
13881
13847
|
|
13882
13848
|
"""
|
13883
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
13849
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/x-pdf, text/svg-xml, drawing/x-dwf, application/gzip-compressed, text/x-csv, drawing/dwg, pplication/vnd.rar, image/png, application/vnd.ms-word, application/vnd.pdf, application/x-csv, image/heif-sequence, application/eps, application/gzip, application/vnd.oasis.opendocument.text, application/x-zip-compressed, application/svg+xml, application/x-rar-compressed, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-tiff, application/rtf, text/pdf, image/tif, application/x-dxf, image/bmp, application/pdf, image/x-ms-bmp, image/heic, image/x-bmp, application/acrobat, text/x-comma-separated-values, application/x-rtf, application/excel, application/msword, application/x-jpg, application/vnd.ms-powerpoint, image/vnd.dwg, application/x-tif, text/csv, image/webp, text/plain, application/vnd.oasis.opendocument.spreadsheet, application/dxf, image/x-eps, text/x-pdf, image/dxf, application/x-acad, application/dwg, text/svg, image/svg, drawing/x-dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-tar, image/x-dwg, application/vnd.ms-excel, application/postscript, image/x-dxf, application/x-autocad, text/comma-separated-values, application/x-rar, image/svg+xml, application/x-dwg, text/rtf, image/jpeg, image/eps, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-gzip, application/vnd.oasis.opendocument.presentation, application/gzipped, application/tiff, image/x-tiff, image/heif, application/jpg, application/csv, image/gif, image/heic-sequence, application/acad, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-tif, application/tif, application/zip, image/jpg, image/tiff, application/x-eps.
|
13884
13850
|
"""
|
13885
13851
|
file: Upload!
|
13886
13852
|
|