@nautical-commerce/graphql-schema 1.81.0-1-g146179179 → 1.81.0-10-g6039b0522
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 +35 -1
- 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."""
|
@@ -5997,6 +6005,9 @@ type NauticalOrder implements Node & ObjectWithMetadata {
|
|
5997
6005
|
vatIdentificationNumber: String
|
5998
6006
|
mpVatIdentificationNumber: String
|
5999
6007
|
token: String!
|
6008
|
+
|
6009
|
+
"""Token of the checkout instance that this order was created from."""
|
6010
|
+
checkoutToken: String
|
6000
6011
|
voucher: Voucher
|
6001
6012
|
shippingDiscount: Money
|
6002
6013
|
discount: Money
|
@@ -12044,6 +12055,29 @@ enum StaffMemberStatus {
|
|
12044
12055
|
DEACTIVATED
|
12045
12056
|
}
|
12046
12057
|
|
12058
|
+
"""Represents a SSO integration."""
|
12059
|
+
type SSOIntegration implements Node {
|
12060
|
+
"""The ID of the SSO integration."""
|
12061
|
+
id: ID!
|
12062
|
+
|
12063
|
+
"""The name of the SSO integration."""
|
12064
|
+
name: SSOProviderEnum!
|
12065
|
+
|
12066
|
+
"""Whether the SSO integration is enabled."""
|
12067
|
+
isActive: Boolean!
|
12068
|
+
|
12069
|
+
"""The URL to authorize the SSO integration."""
|
12070
|
+
oauthAuthorizationUrl: String!
|
12071
|
+
}
|
12072
|
+
|
12073
|
+
enum SSOProviderEnum {
|
12074
|
+
"""Google"""
|
12075
|
+
GOOGLE
|
12076
|
+
|
12077
|
+
"""Keycloak"""
|
12078
|
+
KEYCLOAK
|
12079
|
+
}
|
12080
|
+
|
12047
12081
|
union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | ProductImage | ProductStatusLog | Group
|
12048
12082
|
|
12049
12083
|
scalar _Any
|
@@ -12084,7 +12118,7 @@ type Mutation {
|
|
12084
12118
|
description: String
|
12085
12119
|
|
12086
12120
|
"""
|
12087
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
12121
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/acrobat, application/svg+xml, image/x-ms-bmp, application/x-dxf, application/excel, image/tif, image/heif-sequence, text/x-comma-separated-values, application/vnd.ms-word, application/gzip-compressed, image/bmp, application/vnd.oasis.opendocument.text, drawing/x-dwf, application/vnd.oasis.opendocument.spreadsheet, application/x-eps, image/x-tif, application/x-tar, application/dwg, application/postscript, application/zip, text/comma-separated-values, image/jpeg, application/x-jpg, image/heif, application/x-dwg, application/msword, image/dxf, image/png, application/jpg, image/x-dwg, text/svg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/svg-xml, image/x-tiff, image/jpg, application/acad, application/x-gzip, image/tiff, text/pdf, application/x-rtf, image/gif, application/x-autocad, image/x-eps, image/svg+xml, drawing/x-dwg, application/gzipped, application/eps, pplication/vnd.rar, application/x-acad, application/vnd.ms-excel, application/gzip, image/heic-sequence, image/vnd.dwg, application/x-tiff, application/x-csv, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/csv, application/dxf, image/x-bmp, application/vnd.oasis.opendocument.presentation, image/x-dxf, application/vnd.ms-powerpoint, text/csv, application/tiff, application/x-tif, application/vnd.pdf, application/x-zip-compressed, text/rtf, text/plain, text/x-csv, image/svg, application/rtf, image/webp, drawing/dwg, application/x-pdf, image/heic, application/x-rar-compressed, text/x-pdf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-rar, image/eps, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/pdf, application/tif.
|
12088
12122
|
"""
|
12089
12123
|
file: Upload!
|
12090
12124
|
|