@nautical-commerce/graphql-schema 3.9.0 → 3.10.0
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 +52 -0
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
|
@@ -4610,9 +4610,11 @@ enum CustomerEventsEnum {
|
|
|
4610
4610
|
"""The user requested to change the account's email address."""
|
|
4611
4611
|
EMAIL_CHANGED_REQUEST
|
|
4612
4612
|
EMAIL_CHANGED
|
|
4613
|
+
NEW_TENANT_FIRST_LOGIN
|
|
4613
4614
|
PLACED_ORDER
|
|
4614
4615
|
NOTE_ADDED_TO_ORDER
|
|
4615
4616
|
DIGITAL_LINK_DOWNLOADED
|
|
4617
|
+
RETURN_STATUS_CHANGE
|
|
4616
4618
|
CUSTOMER_DELETED
|
|
4617
4619
|
EMAIL_ASSIGNED
|
|
4618
4620
|
NAME_ASSIGNED
|
|
@@ -4830,6 +4832,49 @@ type DashboardSellerOrderPerformanceType {
|
|
|
4830
4832
|
seller: Seller
|
|
4831
4833
|
}
|
|
4832
4834
|
|
|
4835
|
+
"""Dashboard theme configuration."""
|
|
4836
|
+
type DashboardTheme implements Node {
|
|
4837
|
+
"""The Globally Unique ID of this object"""
|
|
4838
|
+
id: ID!
|
|
4839
|
+
|
|
4840
|
+
"""Primary color in hex."""
|
|
4841
|
+
primaryColor: String
|
|
4842
|
+
|
|
4843
|
+
"""Logo image."""
|
|
4844
|
+
logo: Image
|
|
4845
|
+
|
|
4846
|
+
"""Square logo image."""
|
|
4847
|
+
squareLogo: Image
|
|
4848
|
+
|
|
4849
|
+
"""Favicon image."""
|
|
4850
|
+
faviconImage: Image
|
|
4851
|
+
}
|
|
4852
|
+
|
|
4853
|
+
"""Result of dashboard theme create mutation."""
|
|
4854
|
+
type DashboardThemeCreate {
|
|
4855
|
+
"""List of errors that occurred executing the mutation."""
|
|
4856
|
+
shopErrors: [ShopError!]!
|
|
4857
|
+
|
|
4858
|
+
"""Updated shop."""
|
|
4859
|
+
shop: Shop!
|
|
4860
|
+
}
|
|
4861
|
+
|
|
4862
|
+
input DashboardThemeInput {
|
|
4863
|
+
primaryColor: String = null
|
|
4864
|
+
logo: Upload = null
|
|
4865
|
+
squareLogo: Upload = null
|
|
4866
|
+
faviconImage: Upload = null
|
|
4867
|
+
}
|
|
4868
|
+
|
|
4869
|
+
"""Result of dashboard theme update mutation."""
|
|
4870
|
+
type DashboardThemeUpdate {
|
|
4871
|
+
"""List of errors that occurred executing the mutation."""
|
|
4872
|
+
shopErrors: [ShopError!]!
|
|
4873
|
+
|
|
4874
|
+
"""Updated shop."""
|
|
4875
|
+
shop: Shop!
|
|
4876
|
+
}
|
|
4877
|
+
|
|
4833
4878
|
"""Top seller performance comparison."""
|
|
4834
4879
|
type DashboardTopSellerPerformanceType {
|
|
4835
4880
|
"""Applied filters"""
|
|
@@ -9325,6 +9370,12 @@ type Mutation {
|
|
|
9325
9370
|
"""Update an existing storefront theme."""
|
|
9326
9371
|
storefrontThemeUpdate(id: ID!, input: StorefrontThemeInput!): StorefrontThemeUpdate!
|
|
9327
9372
|
|
|
9373
|
+
"""Create a new dashboard theme."""
|
|
9374
|
+
dashboardThemeCreate(input: DashboardThemeInput!): DashboardThemeCreate!
|
|
9375
|
+
|
|
9376
|
+
"""Update an existing dashboard theme."""
|
|
9377
|
+
dashboardThemeUpdate(id: ID!, input: DashboardThemeInput!): DashboardThemeUpdate!
|
|
9378
|
+
|
|
9328
9379
|
"""Create seller onboarding settings."""
|
|
9329
9380
|
sellerOnboardingSettingsCreate(input: SellerOnboardingSettingsCreateInput!): SellerOnboardingSettingsCreate!
|
|
9330
9381
|
|
|
@@ -19655,6 +19706,7 @@ type Shop {
|
|
|
19655
19706
|
customerSetPasswordUrl: String
|
|
19656
19707
|
checkoutTheme: CheckoutTheme
|
|
19657
19708
|
storefrontTheme: StorefrontTheme
|
|
19709
|
+
dashboardTheme: DashboardTheme
|
|
19658
19710
|
sellerOnboardingSettings: SellerOnboardingSettings
|
|
19659
19711
|
geolocalization: Geolocalization
|
|
19660
19712
|
|