@nautical-commerce/graphql-schema 1.57.0-1-g8c65351c2 → 1.57.0-3-g46155dc84
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +4 -65
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1827,8 +1827,6 @@ type Query {
|
|
1827
1827
|
|
1828
1828
|
"""List of all tax rates available from tax gateway."""
|
1829
1829
|
taxTypes: [TaxType!]!
|
1830
|
-
coredata(name: String): CoreDataType @deprecated(reason: "This will be removed on October 25, 2024")
|
1831
|
-
coredatalist: [CoreDataType!]! @deprecated(reason: "This will be removed on October 25, 2024")
|
1832
1830
|
|
1833
1831
|
"""Look up a checkout by token."""
|
1834
1832
|
checkout(
|
@@ -13491,12 +13489,6 @@ enum ExportFileSortField {
|
|
13491
13489
|
UPDATED_AT
|
13492
13490
|
}
|
13493
13491
|
|
13494
|
-
type CoreDataType {
|
13495
|
-
tenant: Tenant!
|
13496
|
-
name: String!
|
13497
|
-
jsonContent: JSONString!
|
13498
|
-
}
|
13499
|
-
|
13500
13492
|
type CheckoutCountableConnection {
|
13501
13493
|
"""Pagination data for this connection."""
|
13502
13494
|
pageInfo: PageInfo!
|
@@ -13888,7 +13880,7 @@ type Mutation {
|
|
13888
13880
|
description: String
|
13889
13881
|
|
13890
13882
|
"""
|
13891
|
-
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.
|
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/vnd.pdf, image/x-eps, text/x-comma-separated-values, application/excel, image/heif-sequence, text/pdf, image/webp, image/gif, application/gzip-compressed, application/dwg, application/pdf, text/svg, application/tif, application/vnd.ms-powerpoint, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/bmp, application/rtf, application/x-rar, image/dxf, application/csv, image/x-dxf, application/x-acad, application/x-dxf, application/x-rtf, image/eps, application/vnd.ms-word, application/gzipped, image/heic-sequence, application/x-eps, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-gzip, text/x-pdf, application/dxf, application/x-dwg, application/acrobat, image/x-tif, application/svg+xml, application/x-tar, image/tif, image/x-dwg, application/tiff, pplication/vnd.rar, application/x-zip-compressed, application/acad, text/svg-xml, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/jpg, application/vnd.oasis.opendocument.text, image/heic, image/x-ms-bmp, drawing/x-dwf, application/x-pdf, image/jpeg, image/svg, text/comma-separated-values, image/jpg, image/x-tiff, application/msword, text/rtf, application/eps, text/x-csv, drawing/dwg, application/gzip, application/vnd.oasis.opendocument.presentation, application/x-jpg, application/x-autocad, drawing/x-dwg, image/heif, application/x-tif, application/postscript, application/x-rar-compressed, image/png, application/vnd.ms-excel, image/svg+xml, image/vnd.dwg, application/zip, application/x-csv, application/x-tiff, text/plain, image/x-bmp, text/csv, image/tiff, application/vnd.oasis.opendocument.spreadsheet.
|
13892
13884
|
"""
|
13893
13885
|
file: Upload!
|
13894
13886
|
|
@@ -14564,14 +14556,6 @@ type Mutation {
|
|
14564
14556
|
"""Update existing designer data."""
|
14565
14557
|
designerDataUpdate(input: DesignerDataInput, name: String!): DesignerDataUpdate
|
14566
14558
|
|
14567
|
-
"""Create core data."""
|
14568
|
-
coreDataCreate(input: CoreDataInput!): CoreDataCreate @deprecated(reason: "This will be removed on October 25, 2024")
|
14569
|
-
|
14570
|
-
"""
|
14571
|
-
Update existing core data instance, return ok = True and coredata = None if no matching core data instance found.
|
14572
|
-
"""
|
14573
|
-
coreDataUpdate(input: CoreDataInput!, name: String!): CoreDataUpdate @deprecated(reason: "This will be removed on October 25, 2024")
|
14574
|
-
|
14575
14559
|
"""Creates a new webhook subscription."""
|
14576
14560
|
webhookCreate(
|
14577
14561
|
"""Fields required to create a webhook."""
|
@@ -16151,15 +16135,6 @@ type Mutation {
|
|
16151
16135
|
input: [MetadataInput!]!
|
16152
16136
|
): PrivateMetadataUpdate
|
16153
16137
|
|
16154
|
-
"""Assigns storefront's navigation menus."""
|
16155
|
-
assignNavigation(
|
16156
|
-
"""ID of the menu."""
|
16157
|
-
menu: ID
|
16158
|
-
|
16159
|
-
"""Type of the navigation bar to assign the menu to."""
|
16160
|
-
navigationType: NavigationType!
|
16161
|
-
): AssignNavigation @deprecated(reason: "This will be removed on October 29, 2024")
|
16162
|
-
|
16163
16138
|
"""Creates a new Menu."""
|
16164
16139
|
menuCreate(
|
16165
16140
|
"""Fields required to create a menu."""
|
@@ -19101,27 +19076,6 @@ type DesignerDataUpdate {
|
|
19101
19076
|
designerErrors: [MarketplaceConfigurationError!]!
|
19102
19077
|
}
|
19103
19078
|
|
19104
|
-
"""Create core data."""
|
19105
|
-
type CoreDataCreate {
|
19106
|
-
ok: Boolean
|
19107
|
-
coredata: CoreDataType
|
19108
|
-
}
|
19109
|
-
|
19110
|
-
input CoreDataInput {
|
19111
|
-
name: String
|
19112
|
-
jsonContent: JSONString
|
19113
|
-
}
|
19114
|
-
|
19115
|
-
"""
|
19116
|
-
Update existing core data instance, return ok = True and coredata = None if no matching core data instance found.
|
19117
|
-
"""
|
19118
|
-
type CoreDataUpdate {
|
19119
|
-
ok: Boolean
|
19120
|
-
coredata: CoreDataType
|
19121
|
-
name: String
|
19122
|
-
jsonContent: JSONString
|
19123
|
-
}
|
19124
|
-
|
19125
19079
|
"""Creates a new webhook subscription."""
|
19126
19080
|
type WebhookCreate {
|
19127
19081
|
webhookErrors: [WebhookError!]!
|
@@ -23096,11 +23050,10 @@ type PrivateMetadataUpdate {
|
|
23096
23050
|
item: ObjectWithMetadata
|
23097
23051
|
}
|
23098
23052
|
|
23099
|
-
"""
|
23100
|
-
type
|
23101
|
-
"""Assigned navigation menu."""
|
23102
|
-
menu: Menu
|
23053
|
+
"""Creates a new Menu."""
|
23054
|
+
type MenuCreate {
|
23103
23055
|
menuErrors: [MenuError!]!
|
23056
|
+
menu: Menu
|
23104
23057
|
}
|
23105
23058
|
|
23106
23059
|
type MenuError {
|
@@ -23129,20 +23082,6 @@ enum MenuErrorCode {
|
|
23129
23082
|
UNIQUE
|
23130
23083
|
}
|
23131
23084
|
|
23132
|
-
enum NavigationType {
|
23133
|
-
"""Main storefront navigation."""
|
23134
|
-
MAIN
|
23135
|
-
|
23136
|
-
"""Secondary storefront navigation."""
|
23137
|
-
SECONDARY
|
23138
|
-
}
|
23139
|
-
|
23140
|
-
"""Creates a new Menu."""
|
23141
|
-
type MenuCreate {
|
23142
|
-
menuErrors: [MenuError!]!
|
23143
|
-
menu: Menu
|
23144
|
-
}
|
23145
|
-
|
23146
23085
|
input MenuCreateInput {
|
23147
23086
|
"""Name of the menu."""
|
23148
23087
|
name: String!
|