@nautical-commerce/graphql-schema 1.79.1-3-g12fc99cf9 → 1.79.1-5-gc83839d9d
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 -164
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1040,30 +1040,6 @@ type Query {
|
|
1040
1040
|
"""
|
1041
1041
|
taxExemptCodes: [TaxExemptCode!]
|
1042
1042
|
|
1043
|
-
"""All forms available on Typeform"""
|
1044
|
-
typeformForms(
|
1045
|
-
"""Page number of requested page of typeform forms"""
|
1046
|
-
page: Int
|
1047
|
-
|
1048
|
-
"""Search term to use when retrieving typeform forms"""
|
1049
|
-
search: String
|
1050
|
-
): TypeformForms @deprecated(reason: "Typeform support will be removed on April 17, 2025")
|
1051
|
-
|
1052
|
-
"""Form details for specified form_id"""
|
1053
|
-
typeformForm(
|
1054
|
-
"""ID of the form to get details for."""
|
1055
|
-
id: ID
|
1056
|
-
): TypeformForm @deprecated(reason: "Typeform support will be removed on April 17, 2025")
|
1057
|
-
|
1058
|
-
"""Get the flows associated with a particular plugin and seller"""
|
1059
|
-
pluginFlows(
|
1060
|
-
"""ID of the plugin."""
|
1061
|
-
id: ID!
|
1062
|
-
|
1063
|
-
"""ID of the seller."""
|
1064
|
-
seller: ID
|
1065
|
-
): [Flow!] @deprecated(reason: "Typeform support will be removed on April 17, 2025")
|
1066
|
-
|
1067
1043
|
"""Get client secret if necessary for frontend configuration."""
|
1068
1044
|
getClientSecret(
|
1069
1045
|
"""ID of the gateway"""
|
@@ -10567,105 +10543,6 @@ type TaxExemptCode {
|
|
10567
10543
|
validCountries: [String!]
|
10568
10544
|
}
|
10569
10545
|
|
10570
|
-
"""Information about all forms from Typeform."""
|
10571
|
-
type TypeformForms {
|
10572
|
-
"""Total number of items."""
|
10573
|
-
totalItems: Int
|
10574
|
-
|
10575
|
-
"""Number of pages"""
|
10576
|
-
pageCount: Int
|
10577
|
-
|
10578
|
-
"""Type of the field."""
|
10579
|
-
items: [TypeformFormsItem!]
|
10580
|
-
}
|
10581
|
-
|
10582
|
-
type TypeformFormsItem {
|
10583
|
-
Links: TypeformFormsItemLink
|
10584
|
-
id: String
|
10585
|
-
lastUpdatedAt: String
|
10586
|
-
self: TypeformFormsItemSelf
|
10587
|
-
theme: TypeformFormsItemSelf
|
10588
|
-
title: String
|
10589
|
-
}
|
10590
|
-
|
10591
|
-
type TypeformFormsItemLink {
|
10592
|
-
display: String
|
10593
|
-
}
|
10594
|
-
|
10595
|
-
type TypeformFormsItemSelf {
|
10596
|
-
href: String
|
10597
|
-
}
|
10598
|
-
|
10599
|
-
type TypeformForm {
|
10600
|
-
id: String
|
10601
|
-
title: String
|
10602
|
-
language: String
|
10603
|
-
fields: [TypeformFormFields!]
|
10604
|
-
hidden: [String!]
|
10605
|
-
}
|
10606
|
-
|
10607
|
-
type TypeformFormFields {
|
10608
|
-
attachment: TypeformFormAttachment
|
10609
|
-
fieldType: String
|
10610
|
-
id: String
|
10611
|
-
layout: TypeformFormLayout
|
10612
|
-
name: String
|
10613
|
-
options: [TypeformFormOption!]
|
10614
|
-
ref: String
|
10615
|
-
required: Boolean
|
10616
|
-
title: String
|
10617
|
-
properties: TypeformFormProperties
|
10618
|
-
type: String
|
10619
|
-
}
|
10620
|
-
|
10621
|
-
type TypeformFormAttachment {
|
10622
|
-
type: String
|
10623
|
-
href: String
|
10624
|
-
properties: TypeformFormProperties
|
10625
|
-
}
|
10626
|
-
|
10627
|
-
type TypeformFormProperties {
|
10628
|
-
description: String
|
10629
|
-
fields: [TypeformGroupProperties!]
|
10630
|
-
}
|
10631
|
-
|
10632
|
-
type TypeformGroupProperties {
|
10633
|
-
id: String
|
10634
|
-
title: String
|
10635
|
-
ref: String
|
10636
|
-
type: String
|
10637
|
-
}
|
10638
|
-
|
10639
|
-
type TypeformFormLayout {
|
10640
|
-
type: String
|
10641
|
-
placement: String
|
10642
|
-
attachment: TypeformFormAttachment
|
10643
|
-
}
|
10644
|
-
|
10645
|
-
type TypeformFormOption {
|
10646
|
-
label: String
|
10647
|
-
}
|
10648
|
-
|
10649
|
-
"""Flow mapping for a plugin"""
|
10650
|
-
type Flow {
|
10651
|
-
id: ID!
|
10652
|
-
tenant: Tenant!
|
10653
|
-
identifier: String!
|
10654
|
-
seller: Seller
|
10655
|
-
process: FlowProcess!
|
10656
|
-
mapping: JSONString!
|
10657
|
-
formId: String!
|
10658
|
-
}
|
10659
|
-
|
10660
|
-
"""An enumeration."""
|
10661
|
-
enum FlowProcess {
|
10662
|
-
"""customer_creation"""
|
10663
|
-
CUSTOMER_CREATION
|
10664
|
-
|
10665
|
-
"""seller_creation"""
|
10666
|
-
SELLER_CREATION
|
10667
|
-
}
|
10668
|
-
|
10669
10546
|
input StripeClientPaymentData {
|
10670
10547
|
amount: PositiveDecimal
|
10671
10548
|
currency: String
|
@@ -12673,7 +12550,7 @@ type Mutation {
|
|
12673
12550
|
description: String
|
12674
12551
|
|
12675
12552
|
"""
|
12676
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
12553
|
+
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.openxmlformats-officedocument.presentationml.presentation, application/x-pdf, application/csv, text/x-pdf, application/zip, image/x-ms-bmp, image/png, application/vnd.oasis.opendocument.spreadsheet, image/tiff, image/x-bmp, image/heic-sequence, application/x-tiff, application/vnd.ms-powerpoint, application/x-acad, application/x-rtf, image/svg+xml, application/gzip, image/vnd.dwg, image/x-eps, application/dxf, application/vnd.ms-word, text/x-csv, image/x-tif, image/x-tiff, application/x-rar-compressed, image/x-dwg, application/vnd.pdf, drawing/x-dwf, text/svg-xml, application/x-zip-compressed, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/heif-sequence, text/csv, image/webp, application/msword, drawing/x-dwg, application/svg+xml, application/rtf, pplication/vnd.rar, application/x-gzip, application/postscript, image/eps, text/pdf, application/x-eps, application/vnd.oasis.opendocument.presentation, image/svg, image/heic, application/x-tar, application/gzip-compressed, application/jpg, application/x-tif, application/dwg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/x-comma-separated-values, application/acad, application/vnd.ms-excel, application/x-rar, image/heif, application/x-dxf, image/tif, application/tiff, text/rtf, application/x-autocad, application/gzipped, text/plain, text/comma-separated-values, application/eps, application/tif, image/dxf, application/acrobat, image/jpg, image/jpeg, image/x-dxf, application/x-dwg, application/excel, image/bmp, application/x-jpg, drawing/dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-csv, image/gif, text/svg, application/vnd.oasis.opendocument.text, application/pdf.
|
12677
12554
|
"""
|
12678
12555
|
file: Upload!
|
12679
12556
|
|
@@ -14921,21 +14798,6 @@ type Mutation {
|
|
14921
14798
|
sellerId: ID
|
14922
14799
|
): CustomersExport @deprecated(reason: "This will be removed on April 29, 2025")
|
14923
14800
|
|
14924
|
-
"""Update plugin flow."""
|
14925
|
-
pluginFlowUpdate(
|
14926
|
-
"""ID of plugin to update mapping for."""
|
14927
|
-
id: ID!
|
14928
|
-
|
14929
|
-
"""Fields required to update a plugins sync settings."""
|
14930
|
-
input: PluginFlowInput
|
14931
|
-
): PluginFlowUpdate @deprecated(reason: "Typeform support will be removed on April 17, 2025")
|
14932
|
-
|
14933
|
-
"""Delete plugin flow."""
|
14934
|
-
pluginFlowDelete(
|
14935
|
-
"""ID of flow to delete."""
|
14936
|
-
id: ID!
|
14937
|
-
): PluginFlowDelete @deprecated(reason: "Typeform support will be removed on April 17, 2025")
|
14938
|
-
|
14939
14801
|
"""
|
14940
14802
|
Retrieves an onboarding link for the given vendor from the given gateway if available.
|
14941
14803
|
"""
|
@@ -21392,31 +21254,6 @@ type CustomersExport {
|
|
21392
21254
|
pluginsErrors: [PluginError!]!
|
21393
21255
|
}
|
21394
21256
|
|
21395
|
-
"""Update plugin flow."""
|
21396
|
-
type PluginFlowUpdate {
|
21397
|
-
flow: Flow
|
21398
|
-
pluginsErrors: [PluginError!]!
|
21399
|
-
}
|
21400
|
-
|
21401
|
-
input PluginFlowInput {
|
21402
|
-
"""Indicates the seller that is making the update, null if marketplace."""
|
21403
|
-
seller: ID
|
21404
|
-
|
21405
|
-
"""Indicates the process in the UPPERCASE_FORMAT that this flow maps for."""
|
21406
|
-
process: String!
|
21407
|
-
|
21408
|
-
"""Indicates the mapping for the given process and plugin."""
|
21409
|
-
mapping: JSONString!
|
21410
|
-
|
21411
|
-
"""Form ID from typeform"""
|
21412
|
-
formId: String!
|
21413
|
-
}
|
21414
|
-
|
21415
|
-
"""Delete plugin flow."""
|
21416
|
-
type PluginFlowDelete {
|
21417
|
-
pluginsErrors: [PluginError!]!
|
21418
|
-
}
|
21419
|
-
|
21420
21257
|
"""
|
21421
21258
|
Retrieves an onboarding link for the given vendor from the given gateway if available.
|
21422
21259
|
"""
|