@nautical-commerce/graphql-schema 1.62.0-13-g42cb61e83 → 1.62.0-15-g139877886
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 +1 -99
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -13161,7 +13161,7 @@ type Mutation {
|
|
13161
13161
|
description: String
|
13162
13162
|
|
13163
13163
|
"""
|
13164
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13164
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/eps, application/jpg, image/eps, application/x-rtf, application/tif, application/tiff, application/vnd.ms-powerpoint, application/postscript, application/x-tif, application/acrobat, application/vnd.pdf, application/x-zip-compressed, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-dxf, image/jpg, image/heic, text/svg, image/jpeg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/dxf, drawing/x-dwf, image/svg+xml, application/x-gzip, application/vnd.oasis.opendocument.text, image/x-eps, application/x-tiff, application/rtf, application/x-pdf, image/heif-sequence, application/gzip, application/x-eps, text/csv, application/excel, image/x-bmp, application/x-dxf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, drawing/dwg, text/comma-separated-values, image/dxf, text/plain, application/pdf, text/x-pdf, drawing/x-dwg, application/x-rar-compressed, application/csv, application/vnd.ms-excel, application/x-csv, application/x-autocad, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/gzip-compressed, application/zip, image/heic-sequence, application/dwg, text/svg-xml, image/png, application/msword, image/svg, image/x-dwg, image/vnd.dwg, text/x-csv, text/pdf, application/x-jpg, application/x-tar, image/x-ms-bmp, image/gif, image/tiff, image/heif, image/x-tif, application/x-acad, image/x-tiff, application/acad, image/bmp, application/vnd.oasis.opendocument.presentation, application/x-rar, application/vnd.oasis.opendocument.spreadsheet, application/vnd.ms-word, application/x-dwg, application/gzipped, image/tif, application/svg+xml, text/x-comma-separated-values, pplication/vnd.rar, image/webp, text/rtf.
|
13165
13165
|
"""
|
13166
13166
|
file: Upload!
|
13167
13167
|
|
@@ -13831,29 +13831,9 @@ type Mutation {
|
|
13831
13831
|
ids: [ID!]!
|
13832
13832
|
): MediaBulkDelete
|
13833
13833
|
|
13834
|
-
"""Updates site domain of the shop."""
|
13835
|
-
shopDomainUpdate(
|
13836
|
-
"""Fields required to update site."""
|
13837
|
-
input: SiteDomainInput
|
13838
|
-
): ShopDomainUpdate @deprecated(reason: "This will be removed on November 28, 2024.")
|
13839
|
-
|
13840
|
-
"""Updates shop settings."""
|
13841
|
-
shopSettingsUpdate(
|
13842
|
-
"""Fields required to update shop settings."""
|
13843
|
-
input: ShopSettingsInput!
|
13844
|
-
): ShopSettingsUpdate @deprecated(reason: "This will be removed on November 28, 2024. Use marketplaceConfigurationUpdate instead.")
|
13845
|
-
|
13846
13834
|
"""Fetch tax rates."""
|
13847
13835
|
shopFetchTaxRates: ShopFetchTaxRates
|
13848
13836
|
|
13849
|
-
"""
|
13850
|
-
Update the shop's address. If the `null` value is passed, the currently selected address will be deleted.
|
13851
|
-
"""
|
13852
|
-
shopAddressUpdate(
|
13853
|
-
"""Fields required to update shop address."""
|
13854
|
-
input: AddressInput
|
13855
|
-
): ShopAddressUpdate @deprecated(reason: "This will be removed on November 28, 2024. Use marketplaceConfigurationUpdate instead.")
|
13856
|
-
|
13857
13837
|
"""Create a new checkout theme."""
|
13858
13838
|
checkoutThemeCreate(
|
13859
13839
|
"""Fields required to create a new checkout theme."""
|
@@ -18121,75 +18101,6 @@ type MediaBulkDelete {
|
|
18121
18101
|
shopErrors: [ShopError!]!
|
18122
18102
|
}
|
18123
18103
|
|
18124
|
-
"""Updates site domain of the shop."""
|
18125
|
-
type ShopDomainUpdate {
|
18126
|
-
"""Updated shop."""
|
18127
|
-
shop: Shop
|
18128
|
-
shopErrors: [ShopError!]!
|
18129
|
-
}
|
18130
|
-
|
18131
|
-
input SiteDomainInput {
|
18132
|
-
"""Domain name for shop."""
|
18133
|
-
domain: String
|
18134
|
-
|
18135
|
-
"""Shop site name."""
|
18136
|
-
name: String
|
18137
|
-
|
18138
|
-
"""API url for shop."""
|
18139
|
-
apiUrl: String
|
18140
|
-
|
18141
|
-
"""Dasboard url for shop."""
|
18142
|
-
dashboardUrl: String
|
18143
|
-
}
|
18144
|
-
|
18145
|
-
"""Updates shop settings."""
|
18146
|
-
type ShopSettingsUpdate {
|
18147
|
-
"""Updated shop."""
|
18148
|
-
shop: Shop
|
18149
|
-
shopErrors: [ShopError!]!
|
18150
|
-
}
|
18151
|
-
|
18152
|
-
input ShopSettingsInput {
|
18153
|
-
"""Header text."""
|
18154
|
-
headerText: String
|
18155
|
-
|
18156
|
-
"""SEO description."""
|
18157
|
-
description: String
|
18158
|
-
|
18159
|
-
"""Include taxes in prices."""
|
18160
|
-
includeTaxesInPrices: Boolean
|
18161
|
-
|
18162
|
-
"""Charge taxes on shipping."""
|
18163
|
-
chargeTaxesOnShipping: Boolean
|
18164
|
-
|
18165
|
-
"""Enable inventory tracking."""
|
18166
|
-
trackInventoryByDefault: Boolean
|
18167
|
-
|
18168
|
-
"""Default weight unit."""
|
18169
|
-
defaultWeightUnit: WeightUnitsEnum
|
18170
|
-
|
18171
|
-
"""Enable automatic fulfillment for all digital products."""
|
18172
|
-
automaticFulfillmentDigitalProducts: Boolean
|
18173
|
-
|
18174
|
-
"""Default number of max downloads per digital content URL."""
|
18175
|
-
defaultDigitalMaxDownloads: Int
|
18176
|
-
|
18177
|
-
"""Default number of days which digital content URL will be valid."""
|
18178
|
-
defaultDigitalUrlValidDays: Int
|
18179
|
-
|
18180
|
-
"""Default email sender's name."""
|
18181
|
-
defaultMailSenderName: String
|
18182
|
-
|
18183
|
-
"""Default email sender's address."""
|
18184
|
-
defaultMailSenderAddress: String
|
18185
|
-
|
18186
|
-
"""Default email support address."""
|
18187
|
-
defaultMailSupportAddress: String
|
18188
|
-
|
18189
|
-
"""URL of a view where customers can set their password."""
|
18190
|
-
customerSetPasswordUrl: String
|
18191
|
-
}
|
18192
|
-
|
18193
18104
|
"""Fetch tax rates."""
|
18194
18105
|
type ShopFetchTaxRates {
|
18195
18106
|
"""Updated shop."""
|
@@ -18197,15 +18108,6 @@ type ShopFetchTaxRates {
|
|
18197
18108
|
shopErrors: [ShopError!]!
|
18198
18109
|
}
|
18199
18110
|
|
18200
|
-
"""
|
18201
|
-
Update the shop's address. If the `null` value is passed, the currently selected address will be deleted.
|
18202
|
-
"""
|
18203
|
-
type ShopAddressUpdate {
|
18204
|
-
"""Updated shop."""
|
18205
|
-
shop: Shop
|
18206
|
-
shopErrors: [ShopError!]!
|
18207
|
-
}
|
18208
|
-
|
18209
18111
|
"""Create a new checkout theme."""
|
18210
18112
|
type CheckoutThemeCreate {
|
18211
18113
|
"""Updated shop."""
|