@nautical-commerce/graphql-schema 1.57.0-1-g8c65351c2 → 1.57.0-2-g4b47fa800
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +1 -38
- 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:
|
13883
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: drawing/dwg, image/vnd.dwg, application/dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/rtf, application/x-zip-compressed, image/x-eps, application/pdf, application/excel, application/postscript, text/rtf, image/jpg, application/jpg, text/svg-xml, application/vnd.oasis.opendocument.text, text/plain, application/x-rar, drawing/x-dwg, pplication/vnd.rar, text/x-pdf, text/x-csv, image/gif, image/x-bmp, image/heic-sequence, application/svg+xml, application/vnd.ms-excel, application/vnd.pdf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.oasis.opendocument.spreadsheet, text/svg, application/zip, application/vnd.ms-powerpoint, application/dxf, image/tif, image/x-tif, application/x-rtf, text/comma-separated-values, application/x-dwg, image/eps, application/x-acad, image/x-ms-bmp, application/x-gzip, image/svg, application/x-tif, application/csv, application/x-csv, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/jpeg, image/png, application/tif, drawing/x-dwf, image/webp, application/x-eps, image/svg+xml, text/pdf, application/vnd.oasis.opendocument.presentation, image/heif-sequence, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-tiff, image/heic, application/gzip-compressed, image/x-tiff, text/x-comma-separated-values, application/gzip, image/x-dxf, application/msword, image/bmp, image/x-dwg, application/acad, application/x-rar-compressed, application/x-jpg, application/x-tar, application/tiff, image/heif, application/x-autocad, application/eps, text/csv, application/gzipped, application/vnd.ms-word, application/acrobat, image/tiff, application/x-pdf, application/x-dxf, image/dxf.
|
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."""
|
@@ -19101,27 +19085,6 @@ type DesignerDataUpdate {
|
|
19101
19085
|
designerErrors: [MarketplaceConfigurationError!]!
|
19102
19086
|
}
|
19103
19087
|
|
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
19088
|
"""Creates a new webhook subscription."""
|
19126
19089
|
type WebhookCreate {
|
19127
19090
|
webhookErrors: [WebhookError!]!
|