@nautical-commerce/graphql-schema 1.81.0-3-g6d07251a9 → 1.81.0-30-gcc1ab7318
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 +76 -11
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1859,6 +1859,14 @@ type Query {
|
|
1859
1859
|
last: Int
|
1860
1860
|
): UserCountableConnection!
|
1861
1861
|
|
1862
|
+
"""
|
1863
|
+
List of SSO integrations that are active and can be used to authenticate users.
|
1864
|
+
"""
|
1865
|
+
ssoIntegrations(
|
1866
|
+
"""Whether the SSO integration is for the dashboard."""
|
1867
|
+
isDashboard: Boolean!
|
1868
|
+
): [SSOIntegration!]!
|
1869
|
+
|
1862
1870
|
"""Look up a user by ID."""
|
1863
1871
|
user(
|
1864
1872
|
"""ID of the user."""
|
@@ -2942,6 +2950,11 @@ type Product implements Node & ObjectWithMetadata {
|
|
2942
2950
|
|
2943
2951
|
"""Whether this product allows creating variants."""
|
2944
2952
|
hasVariantOptions: Boolean!
|
2953
|
+
|
2954
|
+
"""
|
2955
|
+
List of warnings for this product that needs to be resolved for publishing.
|
2956
|
+
"""
|
2957
|
+
warnings: [WarningMessageItem!]!
|
2945
2958
|
}
|
2946
2959
|
|
2947
2960
|
"""
|
@@ -3239,15 +3252,15 @@ type MarketplaceConfiguration {
|
|
3239
3252
|
|
3240
3253
|
"""URL of a view where customers can set their password."""
|
3241
3254
|
customerSetPasswordUrl: String
|
3242
|
-
|
3243
|
-
"""Include taxes in prices."""
|
3244
|
-
includeTaxesInPrices: Boolean! @deprecated(reason: "This will be removed on April 29, 2025.")
|
3245
3255
|
chargeTaxesOnShipping: Boolean!
|
3246
3256
|
|
3247
3257
|
"""
|
3248
3258
|
The marketplace's end trial date, or null if the marketplace is not in trial mode.
|
3249
3259
|
"""
|
3250
3260
|
trialEndsAt: DateTime
|
3261
|
+
|
3262
|
+
"""Indicates whether the marketplace is subscribed to an active pro plan."""
|
3263
|
+
hasActiveProPlanSubscription: Boolean
|
3251
3264
|
}
|
3252
3265
|
|
3253
3266
|
"""
|
@@ -4683,6 +4696,7 @@ input ProductFilterInput {
|
|
4683
4696
|
advancedSearch: ProductSearchInput
|
4684
4697
|
ids: [ID]
|
4685
4698
|
isStaff: Boolean
|
4699
|
+
hasWarnings: Boolean
|
4686
4700
|
metadata: MetadataFilterInput
|
4687
4701
|
privateMetadata: MetadataFilterInput
|
4688
4702
|
}
|
@@ -5536,6 +5550,7 @@ type AttributeValue implements Node {
|
|
5536
5550
|
id: ID!
|
5537
5551
|
sortOrder: Int
|
5538
5552
|
tenant: Tenant!
|
5553
|
+
seller: Seller
|
5539
5554
|
|
5540
5555
|
"""Name of a value displayed in the interface."""
|
5541
5556
|
name: String!
|
@@ -7818,6 +7833,14 @@ Should be used in places where value must be positive.
|
|
7818
7833
|
"""
|
7819
7834
|
scalar PositiveDecimal
|
7820
7835
|
|
7836
|
+
type WarningMessageItem {
|
7837
|
+
"""Code of the warning message."""
|
7838
|
+
code: String!
|
7839
|
+
|
7840
|
+
"""Warning Message."""
|
7841
|
+
message: String!
|
7842
|
+
}
|
7843
|
+
|
7821
7844
|
"""Represents availability of a variant in the storefront."""
|
7822
7845
|
type VariantPricingInfo {
|
7823
7846
|
"""Whether it is in sale or not."""
|
@@ -8887,9 +8910,6 @@ type Shop {
|
|
8887
8910
|
"""List of possible phone prefixes."""
|
8888
8911
|
phonePrefixes: [String!]!
|
8889
8912
|
|
8890
|
-
"""Include taxes in prices."""
|
8891
|
-
includeTaxesInPrices: Boolean! @deprecated(reason: "This will be removed on April 29, 2025.")
|
8892
|
-
|
8893
8913
|
"""Charge taxes on shipping."""
|
8894
8914
|
chargeTaxesOnShipping: Boolean!
|
8895
8915
|
|
@@ -12047,6 +12067,29 @@ enum StaffMemberStatus {
|
|
12047
12067
|
DEACTIVATED
|
12048
12068
|
}
|
12049
12069
|
|
12070
|
+
"""Represents a SSO integration."""
|
12071
|
+
type SSOIntegration implements Node {
|
12072
|
+
"""The ID of the SSO integration."""
|
12073
|
+
id: ID!
|
12074
|
+
|
12075
|
+
"""The name of the SSO integration."""
|
12076
|
+
name: SSOProviderEnum!
|
12077
|
+
|
12078
|
+
"""Whether the SSO integration is enabled."""
|
12079
|
+
isActive: Boolean!
|
12080
|
+
|
12081
|
+
"""The URL to authorize the SSO integration."""
|
12082
|
+
oauthAuthorizationUrl: String!
|
12083
|
+
}
|
12084
|
+
|
12085
|
+
enum SSOProviderEnum {
|
12086
|
+
"""Google"""
|
12087
|
+
GOOGLE
|
12088
|
+
|
12089
|
+
"""Keycloak"""
|
12090
|
+
KEYCLOAK
|
12091
|
+
}
|
12092
|
+
|
12050
12093
|
union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | ProductImage | ProductStatusLog | Group
|
12051
12094
|
|
12052
12095
|
scalar _Any
|
@@ -12087,7 +12130,7 @@ type Mutation {
|
|
12087
12130
|
description: String
|
12088
12131
|
|
12089
12132
|
"""
|
12090
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
12133
|
+
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/heif, application/svg+xml, text/x-pdf, image/heif-sequence, text/plain, application/tiff, application/gzip, drawing/dwg, application/zip, application/gzipped, drawing/x-dwf, text/pdf, application/x-rtf, application/msword, image/x-dxf, image/webp, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.ms-word, text/x-csv, image/x-tiff, image/x-ms-bmp, image/x-bmp, image/heic-sequence, image/x-dwg, application/eps, text/svg, application/gzip-compressed, application/vnd.ms-excel, image/png, image/svg+xml, application/dxf, text/x-comma-separated-values, image/dxf, image/gif, application/jpg, image/eps, application/postscript, image/x-tif, text/rtf, image/x-eps, application/x-pdf, image/bmp, application/vnd.pdf, application/vnd.oasis.opendocument.text, application/x-gzip, application/csv, application/x-tif, application/x-autocad, image/tiff, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-dwg, application/rtf, image/jpg, drawing/x-dwg, application/vnd.oasis.opendocument.spreadsheet, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/svg, application/dwg, application/pdf, application/acad, application/x-rar, application/x-tiff, application/x-jpg, application/x-tar, application/excel, pplication/vnd.rar, application/x-rar-compressed, image/tif, application/vnd.oasis.opendocument.presentation, application/x-eps, application/acrobat, application/tif, image/vnd.dwg, application/x-csv, image/heic, application/x-zip-compressed, text/comma-separated-values, application/x-dxf, text/csv, text/svg-xml, image/jpeg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-acad.
|
12091
12134
|
"""
|
12092
12135
|
file: Upload!
|
12093
12136
|
|
@@ -14308,7 +14351,7 @@ type Mutation {
|
|
14308
14351
|
exchangeRatesRefresh(
|
14309
14352
|
"""ID of the plugin to use to refresh exchange rates."""
|
14310
14353
|
plugin: String!
|
14311
|
-
): ExchangeRatesRefresh
|
14354
|
+
): ExchangeRatesRefresh @deprecated(reason: "This will be removed on Aug 2, 2025")
|
14312
14355
|
|
14313
14356
|
"""Create a checkout event."""
|
14314
14357
|
checkoutEventTriggered(
|
@@ -14981,6 +15024,18 @@ type Mutation {
|
|
14981
15024
|
token: String!
|
14982
15025
|
): EmailChangeConfirm
|
14983
15026
|
|
15027
|
+
"""Login via SSO."""
|
15028
|
+
ssoLogin(
|
15029
|
+
"""The oauth code"""
|
15030
|
+
code: String!
|
15031
|
+
|
15032
|
+
"""Whether the user is logging in to the dashboard"""
|
15033
|
+
isDashboard: Boolean!
|
15034
|
+
|
15035
|
+
"""The oauth state"""
|
15036
|
+
state: String!
|
15037
|
+
): SSOLogin
|
15038
|
+
|
14984
15039
|
"""Create a new address for the customer."""
|
14985
15040
|
accountAddressCreate(
|
14986
15041
|
"""Fields required to create address."""
|
@@ -15489,9 +15544,6 @@ input MarketplaceConfigurationInput {
|
|
15489
15544
|
"""URL of a view where customers can set their password."""
|
15490
15545
|
customerSetPasswordUrl: String
|
15491
15546
|
|
15492
|
-
"""Include taxes in prices."""
|
15493
|
-
includeTaxesInPrices: Boolean @deprecated(reason: "This will be removed on April 29, 2025.")
|
15494
|
-
|
15495
15547
|
"""Charge taxes on shipping."""
|
15496
15548
|
chargeTaxesOnShipping: Boolean
|
15497
15549
|
}
|
@@ -21923,6 +21975,19 @@ type EmailChangeConfirm {
|
|
21923
21975
|
accountErrors: [AccountError!]!
|
21924
21976
|
}
|
21925
21977
|
|
21978
|
+
"""Login via SSO."""
|
21979
|
+
type SSOLogin {
|
21980
|
+
"""JWT token, required to authenticate."""
|
21981
|
+
token: String
|
21982
|
+
|
21983
|
+
"""JWT refresh token, required to re-generate access token."""
|
21984
|
+
refreshToken: String
|
21985
|
+
|
21986
|
+
"""A user instance."""
|
21987
|
+
user: User
|
21988
|
+
accountErrors: [AccountError!]!
|
21989
|
+
}
|
21990
|
+
|
21926
21991
|
"""Create a new address for the customer."""
|
21927
21992
|
type AccountAddressCreate {
|
21928
21993
|
"""A user instance for which the address was created."""
|