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