@nautical-commerce/graphql-schema 1.67.0-14-g5e3e5a083 → 1.67.0-15-g6a3df56e0
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 +6 -6
- 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(
|
@@ -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/png, application/x-pdf, application/gzip-compressed, image/gif, text/comma-separated-values, application/zip, application/x-csv, image/webp, text/pdf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.pdf, application/svg+xml, application/x-rtf, application/x-jpg, text/x-pdf, image/x-dxf, image/jpeg, text/svg-xml, application/vnd.oasis.opendocument.text, application/x-tar, image/heif-sequence, application/acrobat, application/postscript, application/x-rar, image/eps, application/gzip, application/x-acad, image/dxf, application/dwg, application/x-rar-compressed, application/acad, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-gzip, text/plain, application/vnd.ms-excel, drawing/dwg, image/bmp, image/tiff, image/x-tif, application/x-zip-compressed, image/heic-sequence, image/heif, text/x-csv, image/x-dwg, application/x-autocad, text/x-comma-separated-values, text/svg, pplication/vnd.rar, application/rtf, image/svg+xml, image/heic, application/tiff, application/eps, application/pdf, application/dxf, image/vnd.dwg, application/vnd.ms-word, image/x-bmp, application/excel, image/x-ms-bmp, image/tif, application/tif, application/msword, application/x-eps, application/x-tif, application/csv, image/x-tiff, drawing/x-dwg, application/vnd.oasis.opendocument.spreadsheet, text/csv, image/svg, application/vnd.oasis.opendocument.presentation, image/jpg, text/rtf, application/vnd.ms-powerpoint, application/jpg, application/x-dxf, image/x-eps, application/x-tiff, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-dwg, application/gzipped, drawing/x-dwf.
|
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.
|