@nautical-commerce/graphql-schema 1.89.0-30-ged74e644a → 1.89.0-4-gd397b348a
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 +18 -98
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1791,14 +1791,10 @@ enum EventTypeEnum {
|
|
1791
1791
|
order_payment_link
|
1792
1792
|
merchant_account_set_password
|
1793
1793
|
account_set_staff_password
|
1794
|
-
account_staff_reset_password
|
1795
|
-
merchant_account_set_staff_password
|
1796
|
-
merchant_account_staff_reset_password
|
1797
1794
|
csv_export_products_success
|
1798
1795
|
csv_export_failed
|
1799
|
-
merchant_csv_export_products_success
|
1800
|
-
merchant_csv_export_failed
|
1801
1796
|
staff_order_confirmation
|
1797
|
+
account_staff_reset_password
|
1802
1798
|
vendor_payout_confirmation
|
1803
1799
|
pending_seller
|
1804
1800
|
updated_status
|
@@ -2566,7 +2562,6 @@ type Product implements Node & ObjectWithMetadata {
|
|
2566
2562
|
isPriceOverrideAllowed: Boolean!
|
2567
2563
|
isShippingRequired: Boolean!
|
2568
2564
|
isDigital: Boolean!
|
2569
|
-
productSource: ProductProductSource!
|
2570
2565
|
|
2571
2566
|
"""
|
2572
2567
|
List of private metadata items.Requires proper staff permissions to access.
|
@@ -6868,21 +6863,6 @@ enum ProductSubStatus {
|
|
6868
6863
|
APPROVED
|
6869
6864
|
}
|
6870
6865
|
|
6871
|
-
"""An enumeration."""
|
6872
|
-
enum ProductProductSource {
|
6873
|
-
"""API"""
|
6874
|
-
API
|
6875
|
-
|
6876
|
-
"""Dashboard"""
|
6877
|
-
DASHBOARD
|
6878
|
-
|
6879
|
-
"""Shopify"""
|
6880
|
-
SHOPIFY
|
6881
|
-
|
6882
|
-
"""CSV"""
|
6883
|
-
CSV
|
6884
|
-
}
|
6885
|
-
|
6886
6866
|
"""Represents availability of a product in the storefront."""
|
6887
6867
|
type ProductPricingInfo {
|
6888
6868
|
"""Whether it is in sale or not."""
|
@@ -7981,8 +7961,8 @@ type WebhookJob implements Node & Job {
|
|
7981
7961
|
requestMeta: JSONString
|
7982
7962
|
source: String
|
7983
7963
|
type: GenericWebhookTransactionType
|
7984
|
-
vendorEntityLink: String
|
7985
|
-
marketplaceEntityLink: String
|
7964
|
+
vendorEntityLink: String
|
7965
|
+
marketplaceEntityLink: String
|
7986
7966
|
seller: Seller
|
7987
7967
|
}
|
7988
7968
|
|
@@ -8120,7 +8100,7 @@ enum GenericWebhookEventsEnum {
|
|
8120
8100
|
SELLER_CREATE
|
8121
8101
|
|
8122
8102
|
"""A payload for vehicles was received"""
|
8123
|
-
VEHICLE_PAYLOAD
|
8103
|
+
VEHICLE_PAYLOAD
|
8124
8104
|
|
8125
8105
|
"""A payload for item shipment that was received"""
|
8126
8106
|
ITEM_SHIP_NOTIFY
|
@@ -9951,30 +9931,18 @@ enum EmailEventMessageType {
|
|
9951
9931
|
"""Account Set Staff Password"""
|
9952
9932
|
ACCOUNT_SET_STAFF_PASSWORD
|
9953
9933
|
|
9954
|
-
"""Account Staff Reset Password"""
|
9955
|
-
ACCOUNT_STAFF_RESET_PASSWORD
|
9956
|
-
|
9957
|
-
"""Merchant Account Set Staff Password"""
|
9958
|
-
MERCHANT_ACCOUNT_SET_STAFF_PASSWORD
|
9959
|
-
|
9960
|
-
"""Merchant Account Staff Reset Password"""
|
9961
|
-
MERCHANT_ACCOUNT_STAFF_RESET_PASSWORD
|
9962
|
-
|
9963
9934
|
"""Csv Export Products Success"""
|
9964
9935
|
CSV_EXPORT_PRODUCTS_SUCCESS
|
9965
9936
|
|
9966
9937
|
"""Csv Export Failed"""
|
9967
9938
|
CSV_EXPORT_FAILED
|
9968
9939
|
|
9969
|
-
"""Merchant Csv Export Products Success"""
|
9970
|
-
MERCHANT_CSV_EXPORT_PRODUCTS_SUCCESS
|
9971
|
-
|
9972
|
-
"""Merchant Csv Export Failed"""
|
9973
|
-
MERCHANT_CSV_EXPORT_FAILED
|
9974
|
-
|
9975
9940
|
"""Staff Order Confirmation"""
|
9976
9941
|
STAFF_ORDER_CONFIRMATION
|
9977
9942
|
|
9943
|
+
"""Account Staff Reset Password"""
|
9944
|
+
ACCOUNT_STAFF_RESET_PASSWORD
|
9945
|
+
|
9978
9946
|
"""Vendor Payout Confirmation"""
|
9979
9947
|
VENDOR_PAYOUT_CONFIRMATION
|
9980
9948
|
|
@@ -10089,30 +10057,18 @@ enum NotifyEventTypeEnum {
|
|
10089
10057
|
"""Account Set Staff Password"""
|
10090
10058
|
ACCOUNT_SET_STAFF_PASSWORD
|
10091
10059
|
|
10092
|
-
"""Account Staff Reset Password"""
|
10093
|
-
ACCOUNT_STAFF_RESET_PASSWORD
|
10094
|
-
|
10095
|
-
"""Merchant Account Set Staff Password"""
|
10096
|
-
MERCHANT_ACCOUNT_SET_STAFF_PASSWORD
|
10097
|
-
|
10098
|
-
"""Merchant Account Staff Reset Password"""
|
10099
|
-
MERCHANT_ACCOUNT_STAFF_RESET_PASSWORD
|
10100
|
-
|
10101
10060
|
"""Csv Export Products Success"""
|
10102
10061
|
CSV_EXPORT_PRODUCTS_SUCCESS
|
10103
10062
|
|
10104
10063
|
"""Csv Export Failed"""
|
10105
10064
|
CSV_EXPORT_FAILED
|
10106
10065
|
|
10107
|
-
"""Merchant Csv Export Products Success"""
|
10108
|
-
MERCHANT_CSV_EXPORT_PRODUCTS_SUCCESS
|
10109
|
-
|
10110
|
-
"""Merchant Csv Export Failed"""
|
10111
|
-
MERCHANT_CSV_EXPORT_FAILED
|
10112
|
-
|
10113
10066
|
"""Staff Order Confirmation"""
|
10114
10067
|
STAFF_ORDER_CONFIRMATION
|
10115
10068
|
|
10069
|
+
"""Account Staff Reset Password"""
|
10070
|
+
ACCOUNT_STAFF_RESET_PASSWORD
|
10071
|
+
|
10116
10072
|
"""Vendor Payout Confirmation"""
|
10117
10073
|
VENDOR_PAYOUT_CONFIRMATION
|
10118
10074
|
|
@@ -11239,7 +11195,7 @@ type Mutation {
|
|
11239
11195
|
description: String
|
11240
11196
|
|
11241
11197
|
"""
|
11242
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
11198
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/gif, application/x-tar, pplication/vnd.rar, drawing/x-dwf, text/comma-separated-values, application/tif, application/acrobat, application/x-jpg, application/x-rar-compressed, application/gzipped, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/excel, image/x-eps, image/dxf, text/x-csv, image/heif-sequence, application/vnd.oasis.opendocument.text, application/csv, drawing/x-dwg, application/x-dxf, application/dwg, application/vnd.openxmlformats-officedocument.presentationml.presentation, text/csv, image/x-tif, image/svg+xml, application/x-gzip, image/tiff, image/x-dxf, image/bmp, application/vnd.oasis.opendocument.presentation, application/x-rtf, application/pdf, text/pdf, text/x-pdf, text/svg, application/zip, application/x-pdf, application/vnd.ms-excel, application/tiff, image/x-tiff, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/tif, application/vnd.ms-word, application/vnd.oasis.opendocument.spreadsheet, application/x-acad, application/dxf, application/x-dwg, application/gzip, application/jpg, application/eps, image/heic-sequence, image/heif, image/jpeg, application/msword, application/postscript, image/jpg, image/x-ms-bmp, application/x-csv, drawing/dwg, application/x-zip-compressed, application/svg+xml, application/vnd.ms-powerpoint, application/x-rar, application/x-autocad, text/plain, image/png, text/x-comma-separated-values, application/x-tif, text/rtf, application/x-tiff, application/vnd.pdf, text/svg-xml, image/x-bmp, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-eps, application/gzip-compressed, image/vnd.dwg, image/x-dwg, image/webp, image/svg, application/rtf, image/heic, image/eps, application/acad.
|
11243
11199
|
"""
|
11244
11200
|
file: Upload!
|
11245
11201
|
|
@@ -13459,7 +13415,7 @@ type Mutation {
|
|
13459
13415
|
"""
|
13460
13416
|
Determines whether the email sent out is catered to carriers instead of customers
|
13461
13417
|
"""
|
13462
|
-
vehicles: Boolean = false
|
13418
|
+
vehicles: Boolean = false
|
13463
13419
|
): CheckoutComplete
|
13464
13420
|
|
13465
13421
|
"""Create a new checkout."""
|
@@ -13667,28 +13623,16 @@ type Mutation {
|
|
13667
13623
|
|
13668
13624
|
"""Un-assign attributes from a given product type."""
|
13669
13625
|
attributeUnassign(
|
13670
|
-
"""The IDs of the attributes to
|
13626
|
+
"""The IDs of the attributes to assign."""
|
13671
13627
|
attributeIds: [ID!]!
|
13672
13628
|
|
13673
|
-
"""ID of the product to which the attribute will be
|
13629
|
+
"""ID of the product to which the attribute will be assigned."""
|
13674
13630
|
productId: ID
|
13675
13631
|
|
13676
|
-
"""ID of the product type to
|
13677
|
-
productTypeId: ID
|
13632
|
+
"""ID of the product type to assign the attributes into."""
|
13633
|
+
productTypeId: ID
|
13678
13634
|
): AttributeUnassign
|
13679
13635
|
|
13680
|
-
"""Un-assign attributes from a given product type."""
|
13681
|
-
attributeUnassignFromProductType(
|
13682
|
-
"""The IDs of the product attributes to unassign."""
|
13683
|
-
productAttributeIds: [ID!]
|
13684
|
-
|
13685
|
-
"""ID of the product type to unassign the attributes from."""
|
13686
|
-
productTypeId: ID!
|
13687
|
-
|
13688
|
-
"""The IDs of the variant attributes to unassign."""
|
13689
|
-
variantAttributeIds: [ID!]
|
13690
|
-
): AttributeUnassignFromProductType
|
13691
|
-
|
13692
13636
|
"""Updates attribute."""
|
13693
13637
|
attributeUpdate(
|
13694
13638
|
"""ID of an attribute to update."""
|
@@ -16759,9 +16703,6 @@ input ProductCreateInput {
|
|
16759
16703
|
|
16760
16704
|
"""Represents an image file in a multipart request."""
|
16761
16705
|
image: Upload
|
16762
|
-
|
16763
|
-
"""Where the product was created (e.g dashboard, shopify, csv, api)"""
|
16764
|
-
productSource: ProductSourceEnum
|
16765
16706
|
}
|
16766
16707
|
|
16767
16708
|
input ProductDimensionsInput {
|
@@ -16788,20 +16729,6 @@ input StockInput {
|
|
16788
16729
|
includeAllocations: Boolean = false
|
16789
16730
|
}
|
16790
16731
|
|
16791
|
-
enum ProductSourceEnum {
|
16792
|
-
"""API"""
|
16793
|
-
API
|
16794
|
-
|
16795
|
-
"""Dashboard"""
|
16796
|
-
DASHBOARD
|
16797
|
-
|
16798
|
-
"""Shopify"""
|
16799
|
-
SHOPIFY
|
16800
|
-
|
16801
|
-
"""CSV"""
|
16802
|
-
CSV
|
16803
|
-
}
|
16804
|
-
|
16805
16732
|
"""Deletes a product."""
|
16806
16733
|
type ProductDelete {
|
16807
16734
|
productErrors: [ProductError!]!
|
@@ -20073,20 +20000,13 @@ input AttributeAssignInput {
|
|
20073
20000
|
"""Un-assign attributes from a given product type."""
|
20074
20001
|
type AttributeUnassign {
|
20075
20002
|
"""The updated product type."""
|
20076
|
-
productType: ProductType
|
20003
|
+
productType: ProductType
|
20077
20004
|
|
20078
|
-
"""The product to which the attribute was
|
20005
|
+
"""The product to which the attribute was assigned."""
|
20079
20006
|
product: Product
|
20080
20007
|
productErrors: [ProductError!]!
|
20081
20008
|
}
|
20082
20009
|
|
20083
|
-
"""Un-assign attributes from a given product type."""
|
20084
|
-
type AttributeUnassignFromProductType {
|
20085
|
-
"""The updated product type."""
|
20086
|
-
productType: ProductType
|
20087
|
-
productErrors: [ProductError!]!
|
20088
|
-
}
|
20089
|
-
|
20090
20010
|
"""Updates attribute."""
|
20091
20011
|
type AttributeUpdate {
|
20092
20012
|
attribute: Attribute
|