@nautical-commerce/graphql-schema 1.67.0-14-g5e3e5a083 → 1.67.0-16-g38dce7243
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 +10 -10
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1038,13 +1038,13 @@ type Query {
|
|
1038
1038
|
|
1039
1039
|
"""Search term to use when retrieving typeform forms"""
|
1040
1040
|
search: String
|
1041
|
-
): TypeformForms
|
1041
|
+
): TypeformForms @deprecated(reason: "Typeform support will be removed on April 17, 2025")
|
1042
1042
|
|
1043
1043
|
"""Form details for specified form_id"""
|
1044
1044
|
typeformForm(
|
1045
1045
|
"""ID of the form to get details for."""
|
1046
1046
|
id: ID
|
1047
|
-
): TypeformForm
|
1047
|
+
): TypeformForm @deprecated(reason: "Typeform support will be removed on April 17, 2025")
|
1048
1048
|
|
1049
1049
|
"""Get the flows associated with a particular plugin and seller"""
|
1050
1050
|
pluginFlows(
|
@@ -1053,7 +1053,7 @@ type Query {
|
|
1053
1053
|
|
1054
1054
|
"""ID of the seller."""
|
1055
1055
|
seller: ID
|
1056
|
-
): [Flow!]
|
1056
|
+
): [Flow!] @deprecated(reason: "Typeform support will be removed on April 17, 2025")
|
1057
1057
|
|
1058
1058
|
"""Get client secret if necessary for frontend configuration."""
|
1059
1059
|
getClientSecret(
|
@@ -2898,7 +2898,7 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2898
2898
|
isVisible: Boolean! @deprecated(reason: "This will be removed on April 15, 2025.")
|
2899
2899
|
|
2900
2900
|
"""Product variant size info."""
|
2901
|
-
size: VariantSize
|
2901
|
+
size: VariantSize @deprecated(reason: "This will be removed on April 17, 2025.")
|
2902
2902
|
|
2903
2903
|
"""List of attributes assigned to this variant."""
|
2904
2904
|
attributes: [SelectedAttribute!]!
|
@@ -13202,7 +13202,7 @@ type Mutation {
|
|
13202
13202
|
description: String
|
13203
13203
|
|
13204
13204
|
"""
|
13205
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/
|
13205
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/x-dxf, text/rtf, image/dxf, image/x-dwg, application/x-jpg, image/x-ms-bmp, application/tiff, application/vnd.oasis.opendocument.spreadsheet, application/dxf, image/x-eps, text/plain, application/dwg, image/x-tif, application/x-zip-compressed, application/x-gzip, drawing/dwg, image/vnd.dwg, application/csv, application/postscript, image/heif-sequence, image/svg+xml, text/pdf, application/x-rtf, image/jpeg, image/heic-sequence, image/jpg, application/x-rar, application/x-eps, application/jpg, image/heif, text/x-csv, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-tiff, application/excel, application/tif, text/svg, application/gzip, application/vnd.ms-excel, application/x-tif, text/csv, image/x-bmp, application/x-dwg, image/heic, application/zip, application/x-pdf, application/x-csv, image/gif, application/eps, pplication/vnd.rar, application/vnd.ms-word, application/gzipped, image/tiff, image/eps, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/bmp, image/png, application/vnd.ms-powerpoint, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/svg+xml, application/vnd.pdf, image/tif, application/gzip-compressed, application/rtf, application/vnd.oasis.opendocument.text, drawing/x-dwf, drawing/x-dwg, application/x-tar, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/svg-xml, application/msword, image/webp, text/x-comma-separated-values, text/comma-separated-values, application/x-autocad, application/pdf, application/x-dxf, application/vnd.oasis.opendocument.presentation, application/acrobat, text/x-pdf, application/x-acad, application/acad, image/svg, image/x-tiff, application/x-rar-compressed.
|
13206
13206
|
"""
|
13207
13207
|
file: Upload!
|
13208
13208
|
|
@@ -15439,13 +15439,13 @@ type Mutation {
|
|
15439
15439
|
|
15440
15440
|
"""Fields required to update a plugins sync settings."""
|
15441
15441
|
input: PluginFlowInput
|
15442
|
-
): PluginFlowUpdate
|
15442
|
+
): PluginFlowUpdate @deprecated(reason: "Typeform support will be removed on April 17, 2025")
|
15443
15443
|
|
15444
15444
|
"""Delete plugin flow."""
|
15445
15445
|
pluginFlowDelete(
|
15446
15446
|
"""ID of flow to delete."""
|
15447
15447
|
id: ID!
|
15448
|
-
): PluginFlowDelete
|
15448
|
+
): PluginFlowDelete @deprecated(reason: "Typeform support will be removed on April 17, 2025")
|
15449
15449
|
|
15450
15450
|
"""
|
15451
15451
|
Retrieves an onboarding link for the given vendor from the given gateway if available.
|
@@ -19794,7 +19794,7 @@ input ProductVariantCreateInput {
|
|
19794
19794
|
weight: WeightScalar
|
19795
19795
|
|
19796
19796
|
"""Size of the Product Variant."""
|
19797
|
-
size: VariantSizeInput
|
19797
|
+
size: VariantSizeInput @deprecated(reason: "This field will be removed on April 17th, 2025.")
|
19798
19798
|
|
19799
19799
|
"""Name for the variant."""
|
19800
19800
|
name: String
|
@@ -19935,7 +19935,7 @@ input ProductVariantBulkCreateInput {
|
|
19935
19935
|
weight: WeightScalar
|
19936
19936
|
|
19937
19937
|
"""Size of the Product Variant."""
|
19938
|
-
size: VariantSizeInput
|
19938
|
+
size: VariantSizeInput @deprecated(reason: "This field will be removed on April 17th, 2025.")
|
19939
19939
|
|
19940
19940
|
"""Name for the variant."""
|
19941
19941
|
name: String
|
@@ -20114,7 +20114,7 @@ input ProductVariantInput {
|
|
20114
20114
|
weight: WeightScalar
|
20115
20115
|
|
20116
20116
|
"""Size of the Product Variant."""
|
20117
|
-
size: VariantSizeInput
|
20117
|
+
size: VariantSizeInput @deprecated(reason: "This field will be removed on April 17th, 2025.")
|
20118
20118
|
|
20119
20119
|
"""Name for the variant."""
|
20120
20120
|
name: String
|