@nautical-commerce/graphql-schema 2.16.0 → 2.17.0
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 +74 -41
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
|
@@ -8290,6 +8290,24 @@ enum GenericWebhookTransactionType {
|
|
|
8290
8290
|
"""A payload for seller create was received"""
|
|
8291
8291
|
SELLER_CREATE
|
|
8292
8292
|
|
|
8293
|
+
"""Shopify store successfully connected"""
|
|
8294
|
+
SHOPIFY_CONNECTION_ESTABLISHED
|
|
8295
|
+
|
|
8296
|
+
"""Shopify store connection updated"""
|
|
8297
|
+
SHOPIFY_CONNECTION_UPDATED
|
|
8298
|
+
|
|
8299
|
+
"""Shopify store connection failed"""
|
|
8300
|
+
SHOPIFY_CONNECTION_FAILED
|
|
8301
|
+
|
|
8302
|
+
"""Shopify product import started"""
|
|
8303
|
+
SHOPIFY_IMPORT_STARTED
|
|
8304
|
+
|
|
8305
|
+
"""Shopify product import completed"""
|
|
8306
|
+
SHOPIFY_IMPORT_COMPLETED
|
|
8307
|
+
|
|
8308
|
+
"""Shopify product import failed"""
|
|
8309
|
+
SHOPIFY_IMPORT_FAILED
|
|
8310
|
+
|
|
8293
8311
|
"""A payload for vehicles was received"""
|
|
8294
8312
|
VEHICLE_PAYLOAD
|
|
8295
8313
|
|
|
@@ -8373,6 +8391,24 @@ enum GenericWebhookEventsEnum {
|
|
|
8373
8391
|
"""A payload for seller create was received"""
|
|
8374
8392
|
SELLER_CREATE
|
|
8375
8393
|
|
|
8394
|
+
"""Shopify store successfully connected"""
|
|
8395
|
+
SHOPIFY_CONNECTION_ESTABLISHED
|
|
8396
|
+
|
|
8397
|
+
"""Shopify store connection updated"""
|
|
8398
|
+
SHOPIFY_CONNECTION_UPDATED
|
|
8399
|
+
|
|
8400
|
+
"""Shopify store connection failed"""
|
|
8401
|
+
SHOPIFY_CONNECTION_FAILED
|
|
8402
|
+
|
|
8403
|
+
"""Shopify product import started"""
|
|
8404
|
+
SHOPIFY_IMPORT_STARTED
|
|
8405
|
+
|
|
8406
|
+
"""Shopify product import completed"""
|
|
8407
|
+
SHOPIFY_IMPORT_COMPLETED
|
|
8408
|
+
|
|
8409
|
+
"""Shopify product import failed"""
|
|
8410
|
+
SHOPIFY_IMPORT_FAILED
|
|
8411
|
+
|
|
8376
8412
|
"""A payload for vehicles was received"""
|
|
8377
8413
|
VEHICLE_PAYLOAD @deprecated(reason: "This will be removed on September 26, 2025")
|
|
8378
8414
|
|
|
@@ -8785,6 +8821,12 @@ type Plugin implements Node {
|
|
|
8785
8821
|
id: ID!
|
|
8786
8822
|
privateMetadata: JSONString!
|
|
8787
8823
|
metadata: JSONString!
|
|
8824
|
+
tenant: Tenant!
|
|
8825
|
+
identifier: String!
|
|
8826
|
+
name: String!
|
|
8827
|
+
description: String!
|
|
8828
|
+
active: Boolean!
|
|
8829
|
+
configuration: [ConfigurationItem!]
|
|
8788
8830
|
company: String
|
|
8789
8831
|
category: PluginConfigurationCategory
|
|
8790
8832
|
descriptionShort: String!
|
|
@@ -8792,50 +8834,13 @@ type Plugin implements Node {
|
|
|
8792
8834
|
created: DateTime!
|
|
8793
8835
|
externalUrl: String
|
|
8794
8836
|
supportUrl: String
|
|
8795
|
-
allowSellers: Boolean
|
|
8796
8837
|
allowManyActivePluginsInCategory: Boolean!
|
|
8797
8838
|
allowSwitchingBetweenPluginsInCategory: Boolean!
|
|
8798
|
-
tenant: Tenant!
|
|
8799
|
-
identifier: String!
|
|
8800
|
-
name: String!
|
|
8801
|
-
description: String!
|
|
8802
|
-
active: Boolean!
|
|
8803
|
-
configuration: [ConfigurationItem!]
|
|
8804
8839
|
defaultConfiguration: [ConfigurationItem!]
|
|
8805
8840
|
supportSellerConfiguration: Boolean
|
|
8806
8841
|
version: String!
|
|
8807
8842
|
}
|
|
8808
8843
|
|
|
8809
|
-
"""An enumeration."""
|
|
8810
|
-
enum PluginConfigurationCategory {
|
|
8811
|
-
"""Auth"""
|
|
8812
|
-
AUTH
|
|
8813
|
-
|
|
8814
|
-
"""Fulfillment"""
|
|
8815
|
-
FULFILLMENT
|
|
8816
|
-
|
|
8817
|
-
"""Ecommerce"""
|
|
8818
|
-
ECOMMERCE
|
|
8819
|
-
|
|
8820
|
-
"""Data Connectivity"""
|
|
8821
|
-
DATA_CONNECTIVITY
|
|
8822
|
-
|
|
8823
|
-
"""Order Extensions"""
|
|
8824
|
-
ORDER_EXTENSIONS
|
|
8825
|
-
|
|
8826
|
-
"""Utility"""
|
|
8827
|
-
UTILITY
|
|
8828
|
-
|
|
8829
|
-
"""Taxes"""
|
|
8830
|
-
TAXES
|
|
8831
|
-
|
|
8832
|
-
"""Marketing"""
|
|
8833
|
-
MARKETING
|
|
8834
|
-
|
|
8835
|
-
"""Payments"""
|
|
8836
|
-
PAYMENTS
|
|
8837
|
-
}
|
|
8838
|
-
|
|
8839
8844
|
"""Stores information about a single configuration field."""
|
|
8840
8845
|
type ConfigurationItem {
|
|
8841
8846
|
"""Name of the field."""
|
|
@@ -8868,6 +8873,37 @@ enum ConfigurationTypeFieldEnum {
|
|
|
8868
8873
|
SINGLE_SELECT
|
|
8869
8874
|
OUTPUT
|
|
8870
8875
|
OUTPUT_BOOLEAN
|
|
8876
|
+
OUTPUT_SECRET
|
|
8877
|
+
}
|
|
8878
|
+
|
|
8879
|
+
"""An enumeration."""
|
|
8880
|
+
enum PluginConfigurationCategory {
|
|
8881
|
+
"""Auth"""
|
|
8882
|
+
AUTH
|
|
8883
|
+
|
|
8884
|
+
"""Fulfillment"""
|
|
8885
|
+
FULFILLMENT
|
|
8886
|
+
|
|
8887
|
+
"""Ecommerce"""
|
|
8888
|
+
ECOMMERCE
|
|
8889
|
+
|
|
8890
|
+
"""Data Connectivity"""
|
|
8891
|
+
DATA_CONNECTIVITY
|
|
8892
|
+
|
|
8893
|
+
"""Order Extensions"""
|
|
8894
|
+
ORDER_EXTENSIONS
|
|
8895
|
+
|
|
8896
|
+
"""Utility"""
|
|
8897
|
+
UTILITY
|
|
8898
|
+
|
|
8899
|
+
"""Taxes"""
|
|
8900
|
+
TAXES
|
|
8901
|
+
|
|
8902
|
+
"""Marketing"""
|
|
8903
|
+
MARKETING
|
|
8904
|
+
|
|
8905
|
+
"""Payments"""
|
|
8906
|
+
PAYMENTS
|
|
8871
8907
|
}
|
|
8872
8908
|
|
|
8873
8909
|
"""Represents a checkout page's options."""
|
|
@@ -12048,7 +12084,7 @@ type Mutation {
|
|
|
12048
12084
|
description: String
|
|
12049
12085
|
|
|
12050
12086
|
"""
|
|
12051
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/
|
|
12087
|
+
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.wordprocessingml.document, image/heic-sequence, application/acad, image/heif-sequence, image/tif, application/eps, application/pdf, application/x-dxf, image/jpeg, image/heic, application/rtf, application/x-tiff, text/svg-xml, application/svg+xml, text/csv, image/svg, application/x-acad, application/zip, application/gzip, image/x-tif, application/x-dwg, application/x-rar-compressed, pplication/vnd.rar, application/x-tif, drawing/x-dwf, text/svg, application/tiff, image/bmp, image/x-dxf, application/x-rar, application/x-rtf, image/dxf, application/x-jpg, application/csv, application/x-gzip, drawing/dwg, image/x-bmp, image/jpg, application/jpg, application/vnd.oasis.opendocument.presentation, image/eps, application/acrobat, application/x-eps, application/excel, application/vnd.ms-word, application/vnd.ms-excel, application/x-autocad, image/x-eps, application/x-csv, application/vnd.pdf, application/dwg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/comma-separated-values, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-tar, text/x-comma-separated-values, text/x-csv, application/gzip-compressed, image/png, image/webp, image/tiff, image/vnd.dwg, image/svg+xml, text/pdf, application/tif, application/vnd.ms-powerpoint, application/dxf, application/vnd.oasis.opendocument.text, application/x-zip-compressed, image/x-dwg, image/gif, text/rtf, image/x-tiff, application/msword, application/gzipped, drawing/x-dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/x-ms-bmp, image/heif, text/plain, text/x-pdf, application/vnd.oasis.opendocument.spreadsheet, application/x-pdf, application/postscript.
|
|
12052
12088
|
"""
|
|
12053
12089
|
file: Upload!
|
|
12054
12090
|
|
|
@@ -20430,9 +20466,6 @@ input PluginUpdateInput {
|
|
|
20430
20466
|
"""Configuration of the plugin."""
|
|
20431
20467
|
configuration: [ConfigurationItemInput!]
|
|
20432
20468
|
|
|
20433
|
-
"""Indicates whether the plugin should be configurable by sellers."""
|
|
20434
|
-
allowSellers: Boolean
|
|
20435
|
-
|
|
20436
20469
|
"""Indicates the seller that is making the update, null if marketplace."""
|
|
20437
20470
|
seller: ID
|
|
20438
20471
|
}
|