@nautical-commerce/graphql-schema 1.65.0-2-gd9a7bc241 → 1.65.0-21-ge46d01af2
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 +84 -6
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -2194,6 +2194,7 @@ enum EventTypeEnum {
|
|
2194
2194
|
partial_order_cancel
|
2195
2195
|
order_refund_confirmation
|
2196
2196
|
pending_quote
|
2197
|
+
merchant_account_set_password
|
2197
2198
|
account_set_staff_password
|
2198
2199
|
csv_export_products_success
|
2199
2200
|
csv_export_failed
|
@@ -2592,9 +2593,6 @@ type CountryDisplay {
|
|
2592
2593
|
"""List of required address fields for the country."""
|
2593
2594
|
requiredFields: [String!]
|
2594
2595
|
|
2595
|
-
"""List of allowed country area choices for this country."""
|
2596
|
-
allowedCountryAreas: [String!] @deprecated(reason: "Use detailedAllowedCountryAreas instead which returns the code for each area as well. This field will be removed after December 31, 2024.")
|
2597
|
-
|
2598
2596
|
"""List of allowed country area choices including codes"""
|
2599
2597
|
detailedAllowedCountryAreas: [CountryArea!]!
|
2600
2598
|
}
|
@@ -2764,7 +2762,6 @@ enum ShippingMethodTypeEnum {
|
|
2764
2762
|
}
|
2765
2763
|
|
2766
2764
|
type MultiSellerShippingMethod {
|
2767
|
-
seller: Int @deprecated(reason: "Use sellerId instead. This will be removed on December 31, 2024.")
|
2768
2765
|
sellerId: ID!
|
2769
2766
|
sellerName: String!
|
2770
2767
|
value: [ShippingMethod!]!
|
@@ -4711,6 +4708,9 @@ type App implements Node & ObjectWithMetadata {
|
|
4711
4708
|
"""Type of the app."""
|
4712
4709
|
type: AppTypeEnum
|
4713
4710
|
|
4711
|
+
"""List of storefront integrations for this app"""
|
4712
|
+
storefrontIntegrations: [AppStorefrontIntegration!]
|
4713
|
+
|
4714
4714
|
"""List of webhooks assigned to this app."""
|
4715
4715
|
webhooks: [Webhook!]
|
4716
4716
|
|
@@ -4804,6 +4804,30 @@ enum AppTypeEnum {
|
|
4804
4804
|
THIRDPARTY
|
4805
4805
|
}
|
4806
4806
|
|
4807
|
+
"""Represents a storefront integration for an App."""
|
4808
|
+
type AppStorefrontIntegration implements Node {
|
4809
|
+
"""The ID of the object"""
|
4810
|
+
id: ID!
|
4811
|
+
app: App!
|
4812
|
+
|
4813
|
+
"""What context this integration should be rendered in"""
|
4814
|
+
context: AppStorefrontIntegrationContextEnum!
|
4815
|
+
|
4816
|
+
"""JSON string of params to pass to the remote component"""
|
4817
|
+
params: String!
|
4818
|
+
|
4819
|
+
"""The URL to the remote component to load"""
|
4820
|
+
componentUrl: String!
|
4821
|
+
}
|
4822
|
+
|
4823
|
+
enum AppStorefrontIntegrationContextEnum {
|
4824
|
+
"""Product details page"""
|
4825
|
+
PRODUCT_DETAILS
|
4826
|
+
|
4827
|
+
"""Sitewide"""
|
4828
|
+
SITE
|
4829
|
+
}
|
4830
|
+
|
4807
4831
|
"""Webhook."""
|
4808
4832
|
type Webhook implements Node {
|
4809
4833
|
name: String!
|
@@ -8942,7 +8966,7 @@ input ShippingZoneFilterInput {
|
|
8942
8966
|
search: String
|
8943
8967
|
}
|
8944
8968
|
|
8945
|
-
type PublicSeller implements Node {
|
8969
|
+
type PublicSeller implements Node & ObjectWithMetadata {
|
8946
8970
|
"""The ID of the object"""
|
8947
8971
|
id: ID!
|
8948
8972
|
companyName: String!
|
@@ -8958,6 +8982,14 @@ type PublicSeller implements Node {
|
|
8958
8982
|
): Image
|
8959
8983
|
products(offset: Int, before: String, after: String, first: Int, last: Int): ProductCountableConnection!
|
8960
8984
|
variants(offset: Int, before: String, after: String, first: Int, last: Int): ProductVariantCountableConnection!
|
8985
|
+
|
8986
|
+
"""
|
8987
|
+
List of private metadata items.Requires proper staff permissions to access.
|
8988
|
+
"""
|
8989
|
+
privateMetadata: [MetadataItem!]!
|
8990
|
+
|
8991
|
+
"""List of public metadata items. Can be accessed without permissions."""
|
8992
|
+
metadata: [MetadataItem!]!
|
8961
8993
|
storeDescription: String
|
8962
8994
|
storeDescriptionPlainText: String
|
8963
8995
|
}
|
@@ -11698,6 +11730,9 @@ enum EmailEventMessageType {
|
|
11698
11730
|
"""Pending Quote"""
|
11699
11731
|
PENDING_QUOTE
|
11700
11732
|
|
11733
|
+
"""Merchant Account Set Password"""
|
11734
|
+
MERCHANT_ACCOUNT_SET_PASSWORD
|
11735
|
+
|
11701
11736
|
"""Account Set Staff Password"""
|
11702
11737
|
ACCOUNT_SET_STAFF_PASSWORD
|
11703
11738
|
|
@@ -11818,6 +11853,9 @@ enum NotifyEventTypeEnum {
|
|
11818
11853
|
"""Pending Quote"""
|
11819
11854
|
PENDING_QUOTE
|
11820
11855
|
|
11856
|
+
"""Merchant Account Set Password"""
|
11857
|
+
MERCHANT_ACCOUNT_SET_PASSWORD
|
11858
|
+
|
11821
11859
|
"""Account Set Staff Password"""
|
11822
11860
|
ACCOUNT_SET_STAFF_PASSWORD
|
11823
11861
|
|
@@ -13177,7 +13215,7 @@ type Mutation {
|
|
13177
13215
|
description: String
|
13178
13216
|
|
13179
13217
|
"""
|
13180
|
-
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.
|
13218
|
+
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, image/x-eps, application/dwg, drawing/x-dwf, image/jpeg, image/x-bmp, image/jpg, application/x-rtf, application/x-eps, application/zip, application/tif, application/x-rar, application/x-autocad, image/gif, application/x-zip-compressed, application/vnd.pdf, application/pdf, application/csv, application/x-dxf, application/acad, application/x-jpg, application/vnd.oasis.opendocument.spreadsheet, image/png, image/svg+xml, image/eps, image/x-tif, application/excel, text/pdf, application/vnd.oasis.opendocument.presentation, application/postscript, image/x-tiff, image/vnd.dwg, application/x-tar, image/svg, image/x-dxf, image/heif-sequence, application/vnd.oasis.opendocument.text, image/dxf, text/svg-xml, drawing/dwg, image/x-dwg, application/x-rar-compressed, image/heic-sequence, text/x-csv, pplication/vnd.rar, image/tif, image/heic, application/gzipped, text/x-comma-separated-values, application/msword, text/plain, application/eps, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-csv, application/jpg, application/rtf, drawing/x-dwg, application/x-dwg, application/gzip, application/x-gzip, application/x-pdf, application/x-tif, application/x-acad, application/dxf, image/bmp, image/tiff, text/rtf, text/comma-separated-values, text/svg, text/csv, text/x-pdf, application/vnd.ms-word, application/tiff, application/svg+xml, application/vnd.ms-excel, image/webp, application/x-tiff, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/heif, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/gzip-compressed, image/x-ms-bmp, application/acrobat.
|
13181
13219
|
"""
|
13182
13220
|
file: Upload!
|
13183
13221
|
|
@@ -16004,6 +16042,18 @@ type Mutation {
|
|
16004
16042
|
token: String!
|
16005
16043
|
): AppTokenVerify
|
16006
16044
|
|
16045
|
+
"""Creates a new storefront integration for an app."""
|
16046
|
+
appStorefrontIntegrationCreate(
|
16047
|
+
"""Fields required to create a storefront integration."""
|
16048
|
+
input: AppStorefrontIntegrationInput!
|
16049
|
+
): AppStorefrontIntegrationCreate
|
16050
|
+
|
16051
|
+
"""Deletes an app storefront integration from the app."""
|
16052
|
+
appStorefrontIntegrationDelete(
|
16053
|
+
"""ID of a app storefront integration to delete."""
|
16054
|
+
id: ID!
|
16055
|
+
): AppStorefrontIntegrationDelete
|
16056
|
+
|
16007
16057
|
"""Install new app by using app manifest."""
|
16008
16058
|
appInstall(
|
16009
16059
|
"""Fields required to install a new app."""
|
@@ -23053,6 +23103,34 @@ type AppTokenVerify {
|
|
23053
23103
|
appErrors: [AppError!]!
|
23054
23104
|
}
|
23055
23105
|
|
23106
|
+
"""Creates a new storefront integration for an app."""
|
23107
|
+
type AppStorefrontIntegrationCreate {
|
23108
|
+
appErrors: [AppError!]!
|
23109
|
+
appStorefrontIntegration: AppStorefrontIntegration
|
23110
|
+
}
|
23111
|
+
|
23112
|
+
input AppStorefrontIntegrationInput {
|
23113
|
+
"""ID of app."""
|
23114
|
+
app: ID!
|
23115
|
+
|
23116
|
+
"""URL to the remote component to load"""
|
23117
|
+
componentUrl: String!
|
23118
|
+
|
23119
|
+
"""Context for where this integration should render"""
|
23120
|
+
context: AppStorefrontIntegrationContextEnum!
|
23121
|
+
|
23122
|
+
"""
|
23123
|
+
JSON formatted string containing any params to pass to the component during render
|
23124
|
+
"""
|
23125
|
+
params: String
|
23126
|
+
}
|
23127
|
+
|
23128
|
+
"""Deletes an app storefront integration from the app."""
|
23129
|
+
type AppStorefrontIntegrationDelete {
|
23130
|
+
appErrors: [AppError!]!
|
23131
|
+
appStorefrontIntegration: AppStorefrontIntegration
|
23132
|
+
}
|
23133
|
+
|
23056
23134
|
"""Install new app by using app manifest."""
|
23057
23135
|
type AppInstall {
|
23058
23136
|
appErrors: [AppError!]!
|