@nautical-commerce/graphql-schema 1.79.1-2-g8c88052c5 → 1.79.1-4-gb9d7470e3
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 -241
- 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"""
|
@@ -2890,9 +2866,6 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2890
2866
|
"""
|
2891
2867
|
pricing: VariantPricingInfo
|
2892
2868
|
|
2893
|
-
"""Product variant size info."""
|
2894
|
-
size: VariantSize @deprecated(reason: "This will be removed on April 17, 2025.")
|
2895
|
-
|
2896
2869
|
"""List of attributes assigned to this variant."""
|
2897
2870
|
attributes: [SelectedAttribute!]!
|
2898
2871
|
|
@@ -8050,42 +8023,6 @@ type VariantPricingInfo {
|
|
8050
8023
|
priceUndiscountedLocalCurrency: TaxedMoney!
|
8051
8024
|
}
|
8052
8025
|
|
8053
|
-
"""Represents a size info."""
|
8054
|
-
type VariantSize {
|
8055
|
-
length: Decimal
|
8056
|
-
width: Decimal
|
8057
|
-
height: Decimal
|
8058
|
-
|
8059
|
-
"""Size units for length, width and height."""
|
8060
|
-
sizeUnits: DistanceUnitsEnum
|
8061
|
-
}
|
8062
|
-
|
8063
|
-
enum DistanceUnitsEnum {
|
8064
|
-
"""Inch"""
|
8065
|
-
INCH
|
8066
|
-
|
8067
|
-
"""Foot"""
|
8068
|
-
FT
|
8069
|
-
|
8070
|
-
"""Yard"""
|
8071
|
-
YD
|
8072
|
-
|
8073
|
-
"""Mile"""
|
8074
|
-
ML
|
8075
|
-
|
8076
|
-
"""Millimeter"""
|
8077
|
-
MM
|
8078
|
-
|
8079
|
-
"""Centimeter"""
|
8080
|
-
CM
|
8081
|
-
|
8082
|
-
"""Meter"""
|
8083
|
-
M
|
8084
|
-
|
8085
|
-
"""Kilometer"""
|
8086
|
-
KM
|
8087
|
-
}
|
8088
|
-
|
8089
8026
|
"""Represents stock."""
|
8090
8027
|
type Stock implements Node {
|
8091
8028
|
warehouse: Warehouse!
|
@@ -10606,105 +10543,6 @@ type TaxExemptCode {
|
|
10606
10543
|
validCountries: [String!]
|
10607
10544
|
}
|
10608
10545
|
|
10609
|
-
"""Information about all forms from Typeform."""
|
10610
|
-
type TypeformForms {
|
10611
|
-
"""Total number of items."""
|
10612
|
-
totalItems: Int
|
10613
|
-
|
10614
|
-
"""Number of pages"""
|
10615
|
-
pageCount: Int
|
10616
|
-
|
10617
|
-
"""Type of the field."""
|
10618
|
-
items: [TypeformFormsItem!]
|
10619
|
-
}
|
10620
|
-
|
10621
|
-
type TypeformFormsItem {
|
10622
|
-
Links: TypeformFormsItemLink
|
10623
|
-
id: String
|
10624
|
-
lastUpdatedAt: String
|
10625
|
-
self: TypeformFormsItemSelf
|
10626
|
-
theme: TypeformFormsItemSelf
|
10627
|
-
title: String
|
10628
|
-
}
|
10629
|
-
|
10630
|
-
type TypeformFormsItemLink {
|
10631
|
-
display: String
|
10632
|
-
}
|
10633
|
-
|
10634
|
-
type TypeformFormsItemSelf {
|
10635
|
-
href: String
|
10636
|
-
}
|
10637
|
-
|
10638
|
-
type TypeformForm {
|
10639
|
-
id: String
|
10640
|
-
title: String
|
10641
|
-
language: String
|
10642
|
-
fields: [TypeformFormFields!]
|
10643
|
-
hidden: [String!]
|
10644
|
-
}
|
10645
|
-
|
10646
|
-
type TypeformFormFields {
|
10647
|
-
attachment: TypeformFormAttachment
|
10648
|
-
fieldType: String
|
10649
|
-
id: String
|
10650
|
-
layout: TypeformFormLayout
|
10651
|
-
name: String
|
10652
|
-
options: [TypeformFormOption!]
|
10653
|
-
ref: String
|
10654
|
-
required: Boolean
|
10655
|
-
title: String
|
10656
|
-
properties: TypeformFormProperties
|
10657
|
-
type: String
|
10658
|
-
}
|
10659
|
-
|
10660
|
-
type TypeformFormAttachment {
|
10661
|
-
type: String
|
10662
|
-
href: String
|
10663
|
-
properties: TypeformFormProperties
|
10664
|
-
}
|
10665
|
-
|
10666
|
-
type TypeformFormProperties {
|
10667
|
-
description: String
|
10668
|
-
fields: [TypeformGroupProperties!]
|
10669
|
-
}
|
10670
|
-
|
10671
|
-
type TypeformGroupProperties {
|
10672
|
-
id: String
|
10673
|
-
title: String
|
10674
|
-
ref: String
|
10675
|
-
type: String
|
10676
|
-
}
|
10677
|
-
|
10678
|
-
type TypeformFormLayout {
|
10679
|
-
type: String
|
10680
|
-
placement: String
|
10681
|
-
attachment: TypeformFormAttachment
|
10682
|
-
}
|
10683
|
-
|
10684
|
-
type TypeformFormOption {
|
10685
|
-
label: String
|
10686
|
-
}
|
10687
|
-
|
10688
|
-
"""Flow mapping for a plugin"""
|
10689
|
-
type Flow {
|
10690
|
-
id: ID!
|
10691
|
-
tenant: Tenant!
|
10692
|
-
identifier: String!
|
10693
|
-
seller: Seller
|
10694
|
-
process: FlowProcess!
|
10695
|
-
mapping: JSONString!
|
10696
|
-
formId: String!
|
10697
|
-
}
|
10698
|
-
|
10699
|
-
"""An enumeration."""
|
10700
|
-
enum FlowProcess {
|
10701
|
-
"""customer_creation"""
|
10702
|
-
CUSTOMER_CREATION
|
10703
|
-
|
10704
|
-
"""seller_creation"""
|
10705
|
-
SELLER_CREATION
|
10706
|
-
}
|
10707
|
-
|
10708
10546
|
input StripeClientPaymentData {
|
10709
10547
|
amount: PositiveDecimal
|
10710
10548
|
currency: String
|
@@ -12712,7 +12550,7 @@ type Mutation {
|
|
12712
12550
|
description: String
|
12713
12551
|
|
12714
12552
|
"""
|
12715
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
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.ms-powerpoint, text/x-comma-separated-values, image/x-ms-bmp, application/x-acad, image/x-bmp, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/dwg, application/csv, image/jpeg, application/x-dxf, image/jpg, application/x-zip-compressed, application/x-tiff, image/gif, text/pdf, text/csv, text/svg-xml, text/comma-separated-values, application/x-rtf, application/acad, application/vnd.ms-excel, drawing/x-dwf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/eps, application/x-rar-compressed, image/x-eps, application/gzipped, image/svg, text/rtf, application/msword, text/svg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-autocad, application/vnd.oasis.opendocument.spreadsheet, image/x-dwg, image/vnd.dwg, image/x-tif, application/x-pdf, image/dxf, application/svg+xml, application/x-eps, image/heic-sequence, application/pdf, image/heif, drawing/dwg, application/tiff, image/svg+xml, image/tiff, application/x-tif, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/heif-sequence, application/excel, application/rtf, pplication/vnd.rar, application/x-jpg, application/x-csv, image/png, application/x-tar, application/x-gzip, application/postscript, drawing/x-dwg, application/vnd.ms-word, text/plain, text/x-csv, application/vnd.oasis.opendocument.presentation, application/vnd.oasis.opendocument.text, image/x-tiff, application/dxf, image/webp, application/zip, image/bmp, application/gzip, image/x-dxf, application/gzip-compressed, image/tif, application/jpg, application/x-rar, image/eps, application/x-dwg, application/tif, application/vnd.pdf, text/x-pdf, image/heic, application/acrobat.
|
12716
12554
|
"""
|
12717
12555
|
file: Upload!
|
12718
12556
|
|
@@ -14960,21 +14798,6 @@ type Mutation {
|
|
14960
14798
|
sellerId: ID
|
14961
14799
|
): CustomersExport @deprecated(reason: "This will be removed on April 29, 2025")
|
14962
14800
|
|
14963
|
-
"""Update plugin flow."""
|
14964
|
-
pluginFlowUpdate(
|
14965
|
-
"""ID of plugin to update mapping for."""
|
14966
|
-
id: ID!
|
14967
|
-
|
14968
|
-
"""Fields required to update a plugins sync settings."""
|
14969
|
-
input: PluginFlowInput
|
14970
|
-
): PluginFlowUpdate @deprecated(reason: "Typeform support will be removed on April 17, 2025")
|
14971
|
-
|
14972
|
-
"""Delete plugin flow."""
|
14973
|
-
pluginFlowDelete(
|
14974
|
-
"""ID of flow to delete."""
|
14975
|
-
id: ID!
|
14976
|
-
): PluginFlowDelete @deprecated(reason: "Typeform support will be removed on April 17, 2025")
|
14977
|
-
|
14978
14801
|
"""
|
14979
14802
|
Retrieves an onboarding link for the given vendor from the given gateway if available.
|
14980
14803
|
"""
|
@@ -18723,11 +18546,6 @@ input ProductCreateInput {
|
|
18723
18546
|
"""
|
18724
18547
|
sku: String
|
18725
18548
|
|
18726
|
-
"""
|
18727
|
-
Size of the variant. Note: this field is only used if product doesn't use variants. DEPRECATED: All products are now configurable instead of simple. This field will be removed after 2024-07-01.
|
18728
|
-
"""
|
18729
|
-
variantSize: VariantSizeInput = null
|
18730
|
-
|
18731
18549
|
"""
|
18732
18550
|
Determines whether to track changes to this variant's inventory. If set to 'false', the product's stock quantity won't reduce when a customer purchases this item. However, even when 'false', you must assign a stock quantity to a warehouse to allow checkouts. Usually, this involves allocating a placeholder stock amount that matches the maximum quantity purchased at once. Note: this field is applicable only for simple products.DEPRECATED: All products are now configurable instead of simple. This field will be removed after 2024-07-01.
|
18733
18551
|
"""
|
@@ -18815,16 +18633,6 @@ input ProductCreateInput {
|
|
18815
18633
|
image: Upload
|
18816
18634
|
}
|
18817
18635
|
|
18818
|
-
"""Represents size of a specific variant."""
|
18819
|
-
input VariantSizeInput {
|
18820
|
-
length: Decimal
|
18821
|
-
width: Decimal
|
18822
|
-
height: Decimal
|
18823
|
-
|
18824
|
-
"""Size units for length, width and height."""
|
18825
|
-
sizeUnits: DistanceUnitsEnum
|
18826
|
-
}
|
18827
|
-
|
18828
18636
|
input ProductDimensionsInput {
|
18829
18637
|
length: PositiveDecimal
|
18830
18638
|
width: PositiveDecimal
|
@@ -18939,11 +18747,6 @@ input ProductInput {
|
|
18939
18747
|
"""
|
18940
18748
|
sku: String
|
18941
18749
|
|
18942
|
-
"""
|
18943
|
-
Size of the variant. Note: this field is only used if product doesn't use variants. DEPRECATED: All products are now configurable instead of simple. This field will be removed after 2024-07-01.
|
18944
|
-
"""
|
18945
|
-
variantSize: VariantSizeInput = null
|
18946
|
-
|
18947
18750
|
"""
|
18948
18751
|
Determines whether to track changes to this variant's inventory. If set to 'false', the product's stock quantity won't reduce when a customer purchases this item. However, even when 'false', you must assign a stock quantity to a warehouse to allow checkouts. Usually, this involves allocating a placeholder stock amount that matches the maximum quantity purchased at once. Note: this field is applicable only for simple products.DEPRECATED: All products are now configurable instead of simple. This field will be removed after 2024-07-01.
|
18949
18752
|
"""
|
@@ -19347,18 +19150,12 @@ input ProductVariantCreateInput {
|
|
19347
19150
|
"""Weight of the Product Variant."""
|
19348
19151
|
weight: WeightScalar
|
19349
19152
|
|
19350
|
-
"""Size of the Product Variant."""
|
19351
|
-
size: VariantSizeInput @deprecated(reason: "This field will be removed on April 17th, 2025.")
|
19352
|
-
|
19353
19153
|
"""Name for the variant."""
|
19354
19154
|
name: String
|
19355
19155
|
|
19356
19156
|
"""True if variant requires quote pricing."""
|
19357
19157
|
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
19358
19158
|
|
19359
|
-
"""Substatus the variant is to be changed to."""
|
19360
|
-
subStatus: ProductVariantSubStatusEnum @deprecated(reason: "This field will be removed on April 15th, 2025. ProductVariant substatus will be the same as product substatus")
|
19361
|
-
|
19362
19159
|
"""
|
19363
19160
|
Informs whether a collection is published. All variants are published by default
|
19364
19161
|
"""
|
@@ -19488,18 +19285,12 @@ input ProductVariantBulkCreateInput {
|
|
19488
19285
|
"""Weight of the Product Variant."""
|
19489
19286
|
weight: WeightScalar
|
19490
19287
|
|
19491
|
-
"""Size of the Product Variant."""
|
19492
|
-
size: VariantSizeInput @deprecated(reason: "This field will be removed on April 17th, 2025.")
|
19493
|
-
|
19494
19288
|
"""Name for the variant."""
|
19495
19289
|
name: String
|
19496
19290
|
|
19497
19291
|
"""True if variant requires quote pricing."""
|
19498
19292
|
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
19499
19293
|
|
19500
|
-
"""Substatus the variant is to be changed to."""
|
19501
|
-
subStatus: ProductVariantSubStatusEnum @deprecated(reason: "This field will be removed on April 15th, 2025. ProductVariant substatus will be the same as product substatus")
|
19502
|
-
|
19503
19294
|
"""
|
19504
19295
|
Informs whether a collection is published. All variants are published by default
|
19505
19296
|
"""
|
@@ -19664,18 +19455,12 @@ input ProductVariantInput {
|
|
19664
19455
|
"""Weight of the Product Variant."""
|
19665
19456
|
weight: WeightScalar
|
19666
19457
|
|
19667
|
-
"""Size of the Product Variant."""
|
19668
|
-
size: VariantSizeInput @deprecated(reason: "This field will be removed on April 17th, 2025.")
|
19669
|
-
|
19670
19458
|
"""Name for the variant."""
|
19671
19459
|
name: String
|
19672
19460
|
|
19673
19461
|
"""True if variant requires quote pricing."""
|
19674
19462
|
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
19675
19463
|
|
19676
|
-
"""Substatus the variant is to be changed to."""
|
19677
|
-
subStatus: ProductVariantSubStatusEnum @deprecated(reason: "This field will be removed on April 15th, 2025. ProductVariant substatus will be the same as product substatus")
|
19678
|
-
|
19679
19464
|
"""
|
19680
19465
|
Informs whether a collection is published. All variants are published by default
|
19681
19466
|
"""
|
@@ -21469,31 +21254,6 @@ type CustomersExport {
|
|
21469
21254
|
pluginsErrors: [PluginError!]!
|
21470
21255
|
}
|
21471
21256
|
|
21472
|
-
"""Update plugin flow."""
|
21473
|
-
type PluginFlowUpdate {
|
21474
|
-
flow: Flow
|
21475
|
-
pluginsErrors: [PluginError!]!
|
21476
|
-
}
|
21477
|
-
|
21478
|
-
input PluginFlowInput {
|
21479
|
-
"""Indicates the seller that is making the update, null if marketplace."""
|
21480
|
-
seller: ID
|
21481
|
-
|
21482
|
-
"""Indicates the process in the UPPERCASE_FORMAT that this flow maps for."""
|
21483
|
-
process: String!
|
21484
|
-
|
21485
|
-
"""Indicates the mapping for the given process and plugin."""
|
21486
|
-
mapping: JSONString!
|
21487
|
-
|
21488
|
-
"""Form ID from typeform"""
|
21489
|
-
formId: String!
|
21490
|
-
}
|
21491
|
-
|
21492
|
-
"""Delete plugin flow."""
|
21493
|
-
type PluginFlowDelete {
|
21494
|
-
pluginsErrors: [PluginError!]!
|
21495
|
-
}
|
21496
|
-
|
21497
21257
|
"""
|
21498
21258
|
Retrieves an onboarding link for the given vendor from the given gateway if available.
|
21499
21259
|
"""
|