@nautical-commerce/graphql-schema 1.81.0-7-g3617a8ae0 → 1.81.0-8-g87dcca56d
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 +32 -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."""
|
@@ -12047,6 +12055,29 @@ enum StaffMemberStatus {
|
|
12047
12055
|
DEACTIVATED
|
12048
12056
|
}
|
12049
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
|
+
|
12050
12081
|
union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | ProductImage | ProductStatusLog | Group
|
12051
12082
|
|
12052
12083
|
scalar _Any
|
@@ -12087,7 +12118,7 @@ type Mutation {
|
|
12087
12118
|
description: String
|
12088
12119
|
|
12089
12120
|
"""
|
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/x-
|
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/x-acad, application/x-tiff, application/msword, image/x-tif, text/svg-xml, application/eps, image/eps, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/dwg, image/x-dwg, image/svg, application/tiff, application/acrobat, application/x-jpg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/heif-sequence, application/x-eps, image/vnd.dwg, text/plain, application/csv, image/heic, application/gzip, text/comma-separated-values, image/tif, application/acad, application/vnd.oasis.opendocument.spreadsheet, image/gif, image/heif, application/x-zip-compressed, image/heic-sequence, application/x-rar, application/vnd.ms-excel, application/x-tif, image/png, application/rtf, drawing/x-dwg, application/vnd.ms-powerpoint, image/x-bmp, text/x-comma-separated-values, application/svg+xml, application/dxf, application/vnd.ms-word, image/jpg, application/vnd.oasis.opendocument.text, image/x-ms-bmp, application/zip, image/x-dxf, image/webp, application/gzipped, text/x-csv, application/x-rar-compressed, application/x-pdf, pplication/vnd.rar, text/rtf, text/svg, application/excel, application/tif, application/vnd.pdf, application/x-autocad, image/tiff, image/dxf, application/x-csv, application/vnd.oasis.opendocument.presentation, text/csv, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/postscript, application/x-tar, application/x-rtf, image/jpeg, application/gzip-compressed, image/x-eps, application/x-dxf, application/pdf, application/jpg, application/x-gzip, text/x-pdf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/x-tiff, image/bmp, application/x-dwg, text/pdf, drawing/dwg, image/svg+xml, drawing/x-dwf.
|
12091
12122
|
"""
|
12092
12123
|
file: Upload!
|
12093
12124
|
|