@nautical-commerce/graphql-schema 1.66.1 → 1.67.0-2-ge65882955
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 +411 -464
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -499,6 +499,36 @@ type Query {
|
|
499
499
|
last: Int
|
500
500
|
): RefundCountableConnection
|
501
501
|
|
502
|
+
"""Look up a policy by ID or slug."""
|
503
|
+
policy(
|
504
|
+
"""ID of the policy."""
|
505
|
+
id: ID
|
506
|
+
|
507
|
+
"""The slug of the policy."""
|
508
|
+
slug: String
|
509
|
+
): Policy
|
510
|
+
|
511
|
+
"""List of the shop's policies."""
|
512
|
+
policies(
|
513
|
+
"""Sort policies."""
|
514
|
+
sortBy: PolicySortingInput
|
515
|
+
|
516
|
+
"""Filtering options for policies."""
|
517
|
+
filter: PolicyFilterInput
|
518
|
+
|
519
|
+
"""Return the elements in the list that come before the specified cursor."""
|
520
|
+
before: String
|
521
|
+
|
522
|
+
"""Return the elements in the list that come after the specified cursor."""
|
523
|
+
after: String
|
524
|
+
|
525
|
+
"""Return the first n elements from the list."""
|
526
|
+
first: Int
|
527
|
+
|
528
|
+
"""Return the last n elements from the list."""
|
529
|
+
last: Int
|
530
|
+
): PolicyCountableConnection
|
531
|
+
|
502
532
|
"""Look up digital content by ID."""
|
503
533
|
digitalContent(
|
504
534
|
"""ID of the digital content."""
|
@@ -611,9 +641,6 @@ type Query {
|
|
611
641
|
"""
|
612
642
|
identifier: ID
|
613
643
|
|
614
|
-
"""Microsite ID to filter by"""
|
615
|
-
microsite: ID
|
616
|
-
|
617
644
|
"""Return the elements in the list that come before the specified cursor."""
|
618
645
|
before: String
|
619
646
|
|
@@ -1441,42 +1468,6 @@ type Query {
|
|
1441
1468
|
"""Return all nautical configuration items"""
|
1442
1469
|
nauticalConfigurationList: [NauticalConfiguration!]
|
1443
1470
|
|
1444
|
-
"""Look up a microsite by ID or slug"""
|
1445
|
-
microsite(
|
1446
|
-
"""ID of the microsite."""
|
1447
|
-
id: ID
|
1448
|
-
|
1449
|
-
"""Slug of the microsite"""
|
1450
|
-
slug: String
|
1451
|
-
): Microsite @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
1452
|
-
|
1453
|
-
"""List of microsites"""
|
1454
|
-
microsites(
|
1455
|
-
"""Filtering options for microsites"""
|
1456
|
-
filter: MicrositeFilterInput
|
1457
|
-
|
1458
|
-
"""Sort microsites"""
|
1459
|
-
sortBy: MicrositeSortingInput
|
1460
|
-
|
1461
|
-
"""Return the elements in the list that come before the specified cursor."""
|
1462
|
-
before: String
|
1463
|
-
|
1464
|
-
"""Return the elements in the list that come after the specified cursor."""
|
1465
|
-
after: String
|
1466
|
-
|
1467
|
-
"""Return the first n elements from the list."""
|
1468
|
-
first: Int
|
1469
|
-
|
1470
|
-
"""Return the last n elements from the list."""
|
1471
|
-
last: Int
|
1472
|
-
): MicrositeCountableConnection @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
1473
|
-
|
1474
|
-
"""Look up microsite by vendor ID"""
|
1475
|
-
vendorMicrosite(
|
1476
|
-
"""ID of vendor to fetch microsite for."""
|
1477
|
-
id: ID!
|
1478
|
-
): Microsite @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
1479
|
-
|
1480
1471
|
"""Look up a navigation menu by ID or name."""
|
1481
1472
|
menu(
|
1482
1473
|
"""ID of the menu."""
|
@@ -1572,14 +1563,14 @@ type Query {
|
|
1572
1563
|
|
1573
1564
|
"""End of the period to filter results"""
|
1574
1565
|
endDate: Date!
|
1575
|
-
): InReportOrderCustomerSummaryType
|
1566
|
+
): InReportOrderCustomerSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
|
1576
1567
|
insightsOrdersSellerSummary(
|
1577
1568
|
"""Beginning of the period to filter results"""
|
1578
1569
|
startDate: Date!
|
1579
1570
|
|
1580
1571
|
"""End of the period to filter results"""
|
1581
1572
|
endDate: Date!
|
1582
|
-
): InReportOrderSellerSummaryType
|
1573
|
+
): InReportOrderSellerSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
|
1583
1574
|
insightsOrdersMarketplaceSummary(
|
1584
1575
|
"""Beginning of the period to filter results"""
|
1585
1576
|
startDate: Date!
|
@@ -1589,14 +1580,14 @@ type Query {
|
|
1589
1580
|
|
1590
1581
|
"""Period dimension such as DAY, WEEK, MONTH, QUARTER, YEAR"""
|
1591
1582
|
dimension: InsightDimensionEnum = MONTH
|
1592
|
-
): InReportOrderMarketplaceSummaryType
|
1583
|
+
): InReportOrderMarketplaceSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
|
1593
1584
|
insightsMarketplacePayoutsSummary(
|
1594
1585
|
"""Beginning of the period to filter results"""
|
1595
1586
|
startDate: Date!
|
1596
1587
|
|
1597
1588
|
"""End of the period to filter results"""
|
1598
1589
|
endDate: Date!
|
1599
|
-
): InReportMarketplacePayoutsSummaryType
|
1590
|
+
): InReportMarketplacePayoutsSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
|
1600
1591
|
insightsMarketplaceTaxSummary(
|
1601
1592
|
"""Beginning of the period to filter results"""
|
1602
1593
|
startDate: Date!
|
@@ -1606,21 +1597,21 @@ type Query {
|
|
1606
1597
|
|
1607
1598
|
"""Period dimension such as DAY, WEEK, MONTH, QUARTER, YEAR"""
|
1608
1599
|
dimension: InsightDimensionEnum = YEAR
|
1609
|
-
): InReportMarketplaceTaxSummaryType
|
1600
|
+
): InReportMarketplaceTaxSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
|
1610
1601
|
insightsMarketplaceTaxesByCountry(
|
1611
1602
|
"""Beginning of the period to filter results"""
|
1612
1603
|
startDate: Date!
|
1613
1604
|
|
1614
1605
|
"""End of the period to filter results"""
|
1615
1606
|
endDate: Date!
|
1616
|
-
): InReportMarketplaceTaxesByCountryType
|
1607
|
+
): InReportMarketplaceTaxesByCountryType @deprecated(reason: "This will be removed on April 13, 2025.")
|
1617
1608
|
insightsMarketplaceTaxesByCountryArea(
|
1618
1609
|
"""Beginning of the period to filter results"""
|
1619
1610
|
startDate: Date!
|
1620
1611
|
|
1621
1612
|
"""End of the period to filter results"""
|
1622
1613
|
endDate: Date!
|
1623
|
-
): InReportMarketplaceTaxesByCountryType
|
1614
|
+
): InReportMarketplaceTaxesByCountryType @deprecated(reason: "This will be removed on April 13, 2025.")
|
1624
1615
|
insightsTopPerformingProducts(
|
1625
1616
|
"""Beginning of the period to filter results"""
|
1626
1617
|
startDate: Date!
|
@@ -1665,7 +1656,7 @@ type Query {
|
|
1665
1656
|
|
1666
1657
|
"""Period dimension such as DAY, WEEK, MONTH, QUARTER, YEAR"""
|
1667
1658
|
dimension: InsightDimensionEnum = DAY
|
1668
|
-
): InReportMarketplacePaymentsSummaryType
|
1659
|
+
): InReportMarketplacePaymentsSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
|
1669
1660
|
dashboardOrdersSummary(
|
1670
1661
|
"""ID of seller for filtering"""
|
1671
1662
|
identifier: ID
|
@@ -1978,6 +1969,14 @@ type Query {
|
|
1978
1969
|
id: ID!
|
1979
1970
|
): App
|
1980
1971
|
|
1972
|
+
"""Dashboard integrations for the given contexts"""
|
1973
|
+
dashboardUiIntegrations(
|
1974
|
+
"""
|
1975
|
+
Contexts that integrations should be filtered to. If not specified, all contexts will be returned.
|
1976
|
+
"""
|
1977
|
+
contexts: [AppDashboardIntegrationContextEnum!]
|
1978
|
+
): [AppDashboardIntegration!]!
|
1979
|
+
|
1981
1980
|
"""Look up a marketplace agreement by ID or slug."""
|
1982
1981
|
agreement(
|
1983
1982
|
"""ID of the marketplace agreement."""
|
@@ -2841,7 +2840,9 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2841
2840
|
id: ID!
|
2842
2841
|
createdAt: DateTime!
|
2843
2842
|
updatedAt: DateTime!
|
2844
|
-
|
2843
|
+
|
2844
|
+
"""Product model code"""
|
2845
|
+
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
2845
2846
|
descriptionHtml: String!
|
2846
2847
|
externalId: String
|
2847
2848
|
externalSource: String
|
@@ -2851,7 +2852,6 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2851
2852
|
name: String!
|
2852
2853
|
nauticalStockNumber: String!
|
2853
2854
|
status: ProductVariantStatus!
|
2854
|
-
subStatus: ProductVariantSubStatus!
|
2855
2855
|
currency: String
|
2856
2856
|
product: Product!
|
2857
2857
|
trackInventory: Boolean!
|
@@ -2895,7 +2895,7 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2895
2895
|
pricing: VariantPricingInfo
|
2896
2896
|
|
2897
2897
|
"""Whether this variant is visible on the buyer side or not"""
|
2898
|
-
isVisible: Boolean!
|
2898
|
+
isVisible: Boolean! @deprecated(reason: "This will be removed on April 15, 2025.")
|
2899
2899
|
|
2900
2900
|
"""Product variant size info."""
|
2901
2901
|
size: VariantSize
|
@@ -2961,6 +2961,11 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2961
2961
|
|
2962
2962
|
"""List of vouchers associated with the product."""
|
2963
2963
|
vouchers: [Voucher!]!
|
2964
|
+
|
2965
|
+
"""
|
2966
|
+
The sub status of the product variant. This will be the same as product's sub status.
|
2967
|
+
"""
|
2968
|
+
subStatus: ProductSubStatusEnum
|
2964
2969
|
}
|
2965
2970
|
|
2966
2971
|
"""An enumeration."""
|
@@ -2972,18 +2977,6 @@ enum ProductVariantStatus {
|
|
2972
2977
|
ACTIVE
|
2973
2978
|
}
|
2974
2979
|
|
2975
|
-
"""An enumeration."""
|
2976
|
-
enum ProductVariantSubStatus {
|
2977
|
-
"""In review"""
|
2978
|
-
IN_REVIEW
|
2979
|
-
|
2980
|
-
"""Declined"""
|
2981
|
-
DECLINED
|
2982
|
-
|
2983
|
-
"""Approved"""
|
2984
|
-
APPROVED
|
2985
|
-
}
|
2986
|
-
|
2987
2980
|
"""Represents an individual item for sale in the storefront."""
|
2988
2981
|
type Product implements Node & ObjectWithMetadata {
|
2989
2982
|
"""The ID of the object"""
|
@@ -2996,16 +2989,16 @@ type Product implements Node & ObjectWithMetadata {
|
|
2996
2989
|
seller: Seller
|
2997
2990
|
|
2998
2991
|
"""Manufacturer Product Number"""
|
2999
|
-
mpn: String
|
2992
|
+
mpn: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
3000
2993
|
|
3001
2994
|
"""Brand of the product"""
|
3002
|
-
brand: String
|
2995
|
+
brand: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
3003
2996
|
|
3004
2997
|
"""Manufacturer of the product"""
|
3005
|
-
manufacturer: String
|
2998
|
+
manufacturer: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
3006
2999
|
|
3007
3000
|
"""Product model code"""
|
3008
|
-
model: String
|
3001
|
+
model: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
3009
3002
|
seoTitle: String
|
3010
3003
|
seoDescription: String
|
3011
3004
|
productType: ProductType
|
@@ -3104,7 +3097,7 @@ type Product implements Node & ObjectWithMetadata {
|
|
3104
3097
|
isAvailableForPurchase: Boolean
|
3105
3098
|
|
3106
3099
|
"""
|
3107
|
-
Product sort order in the specific collection
|
3100
|
+
Product sort order in the specific collection. Make sense only as a part of the parent 'collection(s)' queries.
|
3108
3101
|
"""
|
3109
3102
|
sortOrder: Int
|
3110
3103
|
|
@@ -3134,7 +3127,7 @@ type Product implements Node & ObjectWithMetadata {
|
|
3134
3127
|
"""
|
3135
3128
|
The product's sorting priority weight in query results. A larger value indicates a higher priority. This field can be used in both ascending and descending sorting methods.
|
3136
3129
|
"""
|
3137
|
-
sortPriorityWeight: Decimal
|
3130
|
+
sortPriorityWeight: Decimal @deprecated(reason: "This field will be removed on April 15, 2025.")
|
3138
3131
|
|
3139
3132
|
"""List of logs for product status changes."""
|
3140
3133
|
productStatusLogs: [ProductStatusLog!]
|
@@ -3209,9 +3202,6 @@ type Seller implements Node & ObjectWithMetadata {
|
|
3209
3202
|
"""Date seller acknowledged their existing agreement."""
|
3210
3203
|
agreementAcknowledged: DateTime
|
3211
3204
|
canUseInStorefront: Boolean
|
3212
|
-
|
3213
|
-
"""Microsite of the seller."""
|
3214
|
-
microsite: Microsite
|
3215
3205
|
pk: Int
|
3216
3206
|
externalPayoutStatus: Boolean
|
3217
3207
|
externalPayoutSchedule: String
|
@@ -4590,7 +4580,6 @@ input AttributeFilterInput {
|
|
4590
4580
|
inCollection: ID
|
4591
4581
|
inProductSearch: String
|
4592
4582
|
inVariantSearch: String
|
4593
|
-
inMicrosite: ID
|
4594
4583
|
inCategory: ID
|
4595
4584
|
|
4596
4585
|
"""
|
@@ -4708,6 +4697,9 @@ type App implements Node & ObjectWithMetadata {
|
|
4708
4697
|
"""Type of the app."""
|
4709
4698
|
type: AppTypeEnum
|
4710
4699
|
|
4700
|
+
"""List of dashboard integrations for this app"""
|
4701
|
+
dashboardIntegrations: [AppDashboardIntegration!]
|
4702
|
+
|
4711
4703
|
"""List of storefront integrations for this app"""
|
4712
4704
|
storefrontIntegrations: [AppStorefrontIntegration!]
|
4713
4705
|
|
@@ -4804,6 +4796,31 @@ enum AppTypeEnum {
|
|
4804
4796
|
THIRDPARTY
|
4805
4797
|
}
|
4806
4798
|
|
4799
|
+
"""Represents a dashboard integration for an App."""
|
4800
|
+
type AppDashboardIntegration implements Node {
|
4801
|
+
"""The ID of the object"""
|
4802
|
+
id: ID!
|
4803
|
+
|
4804
|
+
"""
|
4805
|
+
App this integration is for. This may be null for integrations that come from plugins.
|
4806
|
+
"""
|
4807
|
+
app: App
|
4808
|
+
|
4809
|
+
"""What context this integration should be rendered in"""
|
4810
|
+
context: AppDashboardIntegrationContextEnum!
|
4811
|
+
|
4812
|
+
"""The URL to load for this integration"""
|
4813
|
+
iframeUrl: String!
|
4814
|
+
}
|
4815
|
+
|
4816
|
+
enum AppDashboardIntegrationContextEnum {
|
4817
|
+
"""Nautical order details page"""
|
4818
|
+
NAUTICAL_ORDER
|
4819
|
+
|
4820
|
+
"""Seller order details page"""
|
4821
|
+
ORDER
|
4822
|
+
}
|
4823
|
+
|
4807
4824
|
"""Represents a storefront integration for an App."""
|
4808
4825
|
type AppStorefrontIntegration implements Node {
|
4809
4826
|
"""The ID of the object"""
|
@@ -4879,8 +4896,6 @@ enum WebhookEventTypeEnum {
|
|
4879
4896
|
INVOICE_DELETED
|
4880
4897
|
INVOICE_REQUESTED
|
4881
4898
|
INVOICE_SENT
|
4882
|
-
MICROSITE_CREATED
|
4883
|
-
MICROSITE_UPDATED
|
4884
4899
|
NAUTICAL_ORDER_CANCELLED
|
4885
4900
|
NAUTICAL_ORDER_CREATED
|
4886
4901
|
NAUTICAL_ORDER_FULFILLED
|
@@ -7161,61 +7176,6 @@ type WarehouseCountableEdge {
|
|
7161
7176
|
cursor: String!
|
7162
7177
|
}
|
7163
7178
|
|
7164
|
-
"""Represents a microsite of products."""
|
7165
|
-
type Microsite implements Node & ObjectWithMetadata {
|
7166
|
-
"""The ID of the object"""
|
7167
|
-
id: ID!
|
7168
|
-
publicationDate: Date
|
7169
|
-
description: String!
|
7170
|
-
descriptionHtml: String!
|
7171
|
-
seoTitle: String
|
7172
|
-
seoDescription: String
|
7173
|
-
name: String!
|
7174
|
-
slug: String!
|
7175
|
-
footerText: String
|
7176
|
-
seller: Seller
|
7177
|
-
|
7178
|
-
"""
|
7179
|
-
List of private metadata items.Requires proper staff permissions to access.
|
7180
|
-
"""
|
7181
|
-
privateMetadata: [MetadataItem!]!
|
7182
|
-
|
7183
|
-
"""List of public metadata items. Can be accessed without permissions."""
|
7184
|
-
metadata: [MetadataItem!]!
|
7185
|
-
|
7186
|
-
"""List of products in this microsite."""
|
7187
|
-
products(
|
7188
|
-
"""Filtering options for products."""
|
7189
|
-
filter: ProductFilterInput
|
7190
|
-
|
7191
|
-
"""Sort products."""
|
7192
|
-
sortBy: ProductOrder
|
7193
|
-
|
7194
|
-
"""Return the elements in the list that come before the specified cursor."""
|
7195
|
-
before: String
|
7196
|
-
|
7197
|
-
"""Return the elements in the list that come after the specified cursor."""
|
7198
|
-
after: String
|
7199
|
-
|
7200
|
-
"""Return the first n elements from the list."""
|
7201
|
-
first: Int
|
7202
|
-
|
7203
|
-
"""Return the last n elements from the list."""
|
7204
|
-
last: Int
|
7205
|
-
): ProductCountableConnection
|
7206
|
-
bannerImage(
|
7207
|
-
"""Size of the image."""
|
7208
|
-
size: Int
|
7209
|
-
): Image
|
7210
|
-
logoImage(
|
7211
|
-
"""Size of the image."""
|
7212
|
-
size: Int
|
7213
|
-
): Image
|
7214
|
-
|
7215
|
-
"""Whether the microsite is published."""
|
7216
|
-
isPublished: Boolean!
|
7217
|
-
}
|
7218
|
-
|
7219
7179
|
"""Document"""
|
7220
7180
|
type Document {
|
7221
7181
|
"""Global ID of the Document."""
|
@@ -8130,8 +8090,6 @@ enum WebhookSampleEventTypeEnum {
|
|
8130
8090
|
INVOICE_DELETED
|
8131
8091
|
INVOICE_REQUESTED
|
8132
8092
|
INVOICE_SENT
|
8133
|
-
MICROSITE_CREATED
|
8134
|
-
MICROSITE_UPDATED
|
8135
8093
|
NAUTICAL_ORDER_CANCELLED
|
8136
8094
|
NAUTICAL_ORDER_CREATED
|
8137
8095
|
NAUTICAL_ORDER_FULFILLED
|
@@ -9150,6 +9108,100 @@ enum RefundSortField {
|
|
9150
9108
|
TOKEN
|
9151
9109
|
}
|
9152
9110
|
|
9111
|
+
"""
|
9112
|
+
A policy that can be manually added by a shop operator through the dashboard.
|
9113
|
+
"""
|
9114
|
+
type Policy implements Node & ObjectWithMetadata {
|
9115
|
+
"""The ID of the object"""
|
9116
|
+
id: ID!
|
9117
|
+
publicationDate: Date
|
9118
|
+
createdAt: DateTime!
|
9119
|
+
updatedAt: DateTime!
|
9120
|
+
content: String!
|
9121
|
+
contentHtml: String!
|
9122
|
+
seoTitle: String
|
9123
|
+
seoDescription: String
|
9124
|
+
category: PolicyCategory!
|
9125
|
+
slug: String!
|
9126
|
+
title: String!
|
9127
|
+
|
9128
|
+
"""
|
9129
|
+
List of private metadata items.Requires proper staff permissions to access.
|
9130
|
+
"""
|
9131
|
+
privateMetadata: [MetadataItem!]!
|
9132
|
+
|
9133
|
+
"""List of public metadata items. Can be accessed without permissions."""
|
9134
|
+
metadata: [MetadataItem!]!
|
9135
|
+
|
9136
|
+
"""Whether the policy is published."""
|
9137
|
+
isPublished: Boolean!
|
9138
|
+
}
|
9139
|
+
|
9140
|
+
"""An enumeration."""
|
9141
|
+
enum PolicyCategory {
|
9142
|
+
"""Terms of Service"""
|
9143
|
+
TERMS_OF_SERVICE
|
9144
|
+
|
9145
|
+
"""Privacy Policy"""
|
9146
|
+
PRIVACY_POLICY
|
9147
|
+
|
9148
|
+
"""Returns & Refund"""
|
9149
|
+
RETURNS_AND_REFUNDS
|
9150
|
+
|
9151
|
+
"""Shipping Policy"""
|
9152
|
+
SHIPPING_POLICY
|
9153
|
+
|
9154
|
+
"""Custom"""
|
9155
|
+
CUSTOM
|
9156
|
+
}
|
9157
|
+
|
9158
|
+
type PolicyCountableConnection {
|
9159
|
+
"""Pagination data for this connection."""
|
9160
|
+
pageInfo: PageInfo!
|
9161
|
+
edges: [PolicyCountableEdge!]!
|
9162
|
+
|
9163
|
+
"""A total count of items in the collection."""
|
9164
|
+
totalCount: Int
|
9165
|
+
}
|
9166
|
+
|
9167
|
+
type PolicyCountableEdge {
|
9168
|
+
"""The item at the end of the edge."""
|
9169
|
+
node: Policy!
|
9170
|
+
|
9171
|
+
"""A cursor for use in pagination."""
|
9172
|
+
cursor: String!
|
9173
|
+
}
|
9174
|
+
|
9175
|
+
input PolicySortingInput {
|
9176
|
+
"""Specifies the direction in which to sort products."""
|
9177
|
+
direction: OrderDirection!
|
9178
|
+
|
9179
|
+
"""Sort policies by the selected field."""
|
9180
|
+
field: PolicySortField!
|
9181
|
+
}
|
9182
|
+
|
9183
|
+
enum PolicySortField {
|
9184
|
+
"""Sort policies by title."""
|
9185
|
+
TITLE
|
9186
|
+
|
9187
|
+
"""Sort policies by slug."""
|
9188
|
+
SLUG
|
9189
|
+
|
9190
|
+
"""Sort policies by visibility."""
|
9191
|
+
VISIBILITY
|
9192
|
+
|
9193
|
+
"""Sort policies by creation date."""
|
9194
|
+
CREATION_DATE
|
9195
|
+
|
9196
|
+
"""Sort policies by publication date."""
|
9197
|
+
PUBLICATION_DATE
|
9198
|
+
}
|
9199
|
+
|
9200
|
+
input PolicyFilterInput {
|
9201
|
+
search: String
|
9202
|
+
isPublished: Boolean
|
9203
|
+
}
|
9204
|
+
|
9153
9205
|
type DigitalContentCountableConnection {
|
9154
9206
|
"""Pagination data for this connection."""
|
9155
9207
|
pageInfo: PageInfo!
|
@@ -10796,58 +10848,6 @@ type NauticalConfiguration {
|
|
10796
10848
|
configurationValueString: String
|
10797
10849
|
}
|
10798
10850
|
|
10799
|
-
type MicrositeCountableConnection {
|
10800
|
-
"""Pagination data for this connection."""
|
10801
|
-
pageInfo: PageInfo!
|
10802
|
-
edges: [MicrositeCountableEdge!]!
|
10803
|
-
|
10804
|
-
"""A total count of items in the collection."""
|
10805
|
-
totalCount: Int
|
10806
|
-
}
|
10807
|
-
|
10808
|
-
type MicrositeCountableEdge {
|
10809
|
-
"""The item at the end of the edge."""
|
10810
|
-
node: Microsite!
|
10811
|
-
|
10812
|
-
"""A cursor for use in pagination."""
|
10813
|
-
cursor: String!
|
10814
|
-
}
|
10815
|
-
|
10816
|
-
input MicrositeFilterInput {
|
10817
|
-
published: MicrositePublished
|
10818
|
-
search: String
|
10819
|
-
ids: [ID]
|
10820
|
-
metadata: MetadataFilterInput
|
10821
|
-
privateMetadata: MetadataFilterInput
|
10822
|
-
}
|
10823
|
-
|
10824
|
-
enum MicrositePublished {
|
10825
|
-
PUBLISHED
|
10826
|
-
HIDDEN
|
10827
|
-
}
|
10828
|
-
|
10829
|
-
input MicrositeSortingInput {
|
10830
|
-
"""Specifies the direction in which to sort products."""
|
10831
|
-
direction: OrderDirection!
|
10832
|
-
|
10833
|
-
"""Sort microsites by the selected field."""
|
10834
|
-
field: MicrositeSortField!
|
10835
|
-
}
|
10836
|
-
|
10837
|
-
enum MicrositeSortField {
|
10838
|
-
"""Sort microsites by name."""
|
10839
|
-
NAME
|
10840
|
-
|
10841
|
-
"""Sort microsites by availability."""
|
10842
|
-
AVAILABILITY
|
10843
|
-
|
10844
|
-
"""Sort microsites by product count."""
|
10845
|
-
PRODUCT_COUNT
|
10846
|
-
|
10847
|
-
"""Sort microsites by publication date."""
|
10848
|
-
PUBLICATION_DATE
|
10849
|
-
}
|
10850
|
-
|
10851
10851
|
"""
|
10852
10852
|
Represents a single menu - an object that is used to help navigate through the store.
|
10853
10853
|
"""
|
@@ -13169,7 +13169,7 @@ enum StaffMemberStatus {
|
|
13169
13169
|
DEACTIVATED
|
13170
13170
|
}
|
13171
13171
|
|
13172
|
-
union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection |
|
13172
|
+
union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | ProductImage | ProductStatusLog | Group | CatalogImportProcess | CatalogImportProcessLogRecord
|
13173
13173
|
|
13174
13174
|
scalar _Any
|
13175
13175
|
|
@@ -13203,7 +13203,7 @@ type Mutation {
|
|
13203
13203
|
description: String
|
13204
13204
|
|
13205
13205
|
"""
|
13206
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
13206
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/acad, image/webp, image/jpeg, image/heif-sequence, image/gif, drawing/x-dwf, text/x-comma-separated-values, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/x-ms-bmp, application/vnd.oasis.opendocument.text, application/vnd.oasis.opendocument.presentation, image/tif, application/svg+xml, image/x-tif, drawing/x-dwg, image/x-dwg, image/heif, image/x-dxf, image/eps, application/vnd.ms-excel, image/dxf, image/heic, text/plain, image/jpg, application/x-gzip, application/vnd.ms-word, image/svg+xml, image/tiff, text/svg, application/postscript, application/x-dwg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-tar, application/x-dxf, text/x-pdf, image/png, image/x-tiff, application/x-rar, application/eps, image/heic-sequence, application/dwg, image/x-bmp, text/svg-xml, text/x-csv, application/msword, application/vnd.ms-powerpoint, application/vnd.openxmlformats-officedocument.presentationml.presentation, text/csv, application/x-jpg, application/zip, application/x-zip-compressed, application/x-rtf, image/bmp, application/gzip, application/vnd.oasis.opendocument.spreadsheet, image/x-eps, pplication/vnd.rar, application/jpg, application/x-tif, application/excel, text/pdf, application/acrobat, application/gzip-compressed, application/vnd.pdf, text/comma-separated-values, application/x-pdf, application/gzipped, application/x-acad, application/x-eps, application/x-rar-compressed, application/x-tiff, drawing/dwg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/tiff, image/vnd.dwg, application/tif, application/rtf, application/pdf, application/csv, image/svg, text/rtf, application/x-autocad, application/dxf, application/x-csv.
|
13207
13207
|
"""
|
13208
13208
|
file: Upload!
|
13209
13209
|
|
@@ -13471,69 +13471,6 @@ type Mutation {
|
|
13471
13471
|
wishlistId: ID
|
13472
13472
|
): WishlistRemoveProductVariant
|
13473
13473
|
|
13474
|
-
"""Adds products to a microsite."""
|
13475
|
-
micrositeAddProducts(
|
13476
|
-
"""ID of a microsite."""
|
13477
|
-
micrositeId: ID!
|
13478
|
-
|
13479
|
-
"""List of product IDs."""
|
13480
|
-
products: [ID!]!
|
13481
|
-
): MicrositeAddProducts @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
13482
|
-
|
13483
|
-
"""Creates a new microsite."""
|
13484
|
-
micrositeCreate(
|
13485
|
-
"""Fields required to create a microsite."""
|
13486
|
-
input: MicrositeCreateInput!
|
13487
|
-
): MicrositeCreate @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
13488
|
-
|
13489
|
-
"""Deletes a microsite."""
|
13490
|
-
micrositeDelete(
|
13491
|
-
"""ID of a microsite to delete."""
|
13492
|
-
id: ID!
|
13493
|
-
): MicrositeDelete @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
13494
|
-
|
13495
|
-
"""Reorder the products of a microsite."""
|
13496
|
-
micrositeReorderProducts(
|
13497
|
-
"""ID of a microsite."""
|
13498
|
-
micrositeId: ID!
|
13499
|
-
|
13500
|
-
"""The microsite products position operations."""
|
13501
|
-
moves: [MoveProductInput!]!
|
13502
|
-
): MicrositeReorderProducts @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
13503
|
-
|
13504
|
-
"""Deletes microsites."""
|
13505
|
-
micrositeBulkDelete(
|
13506
|
-
"""List of microsite IDs to delete."""
|
13507
|
-
ids: [ID!]!
|
13508
|
-
): MicrositeBulkDelete @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
13509
|
-
|
13510
|
-
"""Publish microsites."""
|
13511
|
-
micrositeBulkPublish(
|
13512
|
-
"""List of microsites IDs to (un)publish."""
|
13513
|
-
ids: [ID!]!
|
13514
|
-
|
13515
|
-
"""Determine if microsites will be published or not."""
|
13516
|
-
isPublished: Boolean!
|
13517
|
-
): MicrositeBulkPublish @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
13518
|
-
|
13519
|
-
"""Remove products from a microsite."""
|
13520
|
-
micrositeRemoveProducts(
|
13521
|
-
"""ID of a microsite."""
|
13522
|
-
micrositeId: ID!
|
13523
|
-
|
13524
|
-
"""List of product IDs."""
|
13525
|
-
products: [ID!]!
|
13526
|
-
): MicrositeRemoveProducts @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
13527
|
-
|
13528
|
-
"""Updates a microsite."""
|
13529
|
-
micrositeUpdate(
|
13530
|
-
"""ID of a microsite to update."""
|
13531
|
-
id: ID!
|
13532
|
-
|
13533
|
-
"""Fields required to update a microsite."""
|
13534
|
-
input: MicrositeInput!
|
13535
|
-
): MicrositeUpdate @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
13536
|
-
|
13537
13474
|
"""Creates a new agreement."""
|
13538
13475
|
agreementCreate(
|
13539
13476
|
"""Fields required to create a agreement."""
|
@@ -14074,7 +14011,43 @@ type Mutation {
|
|
14074
14011
|
refundId: ID!
|
14075
14012
|
): RefundPaymentsDelete
|
14076
14013
|
|
14077
|
-
"""Creates a new
|
14014
|
+
"""Creates a new policy."""
|
14015
|
+
policyCreate(
|
14016
|
+
"""Fields required to create a policy."""
|
14017
|
+
input: PolicyInput!
|
14018
|
+
): PolicyCreate
|
14019
|
+
|
14020
|
+
"""Deletes a policy."""
|
14021
|
+
policyDelete(
|
14022
|
+
"""ID of the policy to delete."""
|
14023
|
+
id: ID!
|
14024
|
+
): PolicyDelete
|
14025
|
+
|
14026
|
+
"""Deletes policy."""
|
14027
|
+
policyBulkDelete(
|
14028
|
+
"""List of policy IDs to delete."""
|
14029
|
+
ids: [ID!]!
|
14030
|
+
): PolicyBulkDelete
|
14031
|
+
|
14032
|
+
"""Publish policy."""
|
14033
|
+
policyBulkPublish(
|
14034
|
+
"""List of policy IDs to (un)publish."""
|
14035
|
+
ids: [ID!]!
|
14036
|
+
|
14037
|
+
"""Determine if policy will be published or not."""
|
14038
|
+
isPublished: Boolean!
|
14039
|
+
): PolicyBulkPublish
|
14040
|
+
|
14041
|
+
"""Updates an existing policy."""
|
14042
|
+
policyUpdate(
|
14043
|
+
"""ID of the policy to update."""
|
14044
|
+
id: ID!
|
14045
|
+
|
14046
|
+
"""Fields required to update a policy."""
|
14047
|
+
input: PolicyInput!
|
14048
|
+
): PolicyUpdate
|
14049
|
+
|
14050
|
+
"""Creates a new price book."""
|
14078
14051
|
priceBookCreate(
|
14079
14052
|
"""Fields required to create a price book."""
|
14080
14053
|
input: PriceBookCreateInput!
|
@@ -16030,6 +16003,18 @@ type Mutation {
|
|
16030
16003
|
token: String!
|
16031
16004
|
): AppTokenVerify
|
16032
16005
|
|
16006
|
+
"""Creates a new dashboard integration for an app."""
|
16007
|
+
appDashboardIntegrationCreate(
|
16008
|
+
"""Fields required to create a dashboard integration."""
|
16009
|
+
input: AppDashboardIntegrationInput!
|
16010
|
+
): AppDashboardIntegrationCreate
|
16011
|
+
|
16012
|
+
"""Deletes an app storefront integration from the app."""
|
16013
|
+
appDashboardIntegrationDelete(
|
16014
|
+
"""ID of a app dashboard integration to delete."""
|
16015
|
+
id: ID!
|
16016
|
+
): AppDashboardIntegrationDelete
|
16017
|
+
|
16033
16018
|
"""Creates a new storefront integration for an app."""
|
16034
16019
|
appStorefrontIntegrationCreate(
|
16035
16020
|
"""Fields required to create a storefront integration."""
|
@@ -16379,7 +16364,7 @@ type Mutation {
|
|
16379
16364
|
permissionGroupCreate(
|
16380
16365
|
"""Input fields to create permission group."""
|
16381
16366
|
input: PermissionGroupCreateInput!
|
16382
|
-
): PermissionGroupCreate
|
16367
|
+
): PermissionGroupCreate @deprecated(reason: "This will be removed on April 14, 2025")
|
16383
16368
|
|
16384
16369
|
"""Update permission group."""
|
16385
16370
|
permissionGroupUpdate(
|
@@ -16394,7 +16379,7 @@ type Mutation {
|
|
16394
16379
|
permissionGroupDelete(
|
16395
16380
|
"""ID of the group to delete."""
|
16396
16381
|
id: ID!
|
16397
|
-
): PermissionGroupDelete
|
16382
|
+
): PermissionGroupDelete @deprecated(reason: "This will be removed on April 14, 2025")
|
16398
16383
|
}
|
16399
16384
|
|
16400
16385
|
"""EmailTemplate update mutation."""
|
@@ -17033,200 +17018,6 @@ type WishlistRemoveProductVariant {
|
|
17033
17018
|
wishlistErrors: [WishlistError!]!
|
17034
17019
|
}
|
17035
17020
|
|
17036
|
-
"""Adds products to a microsite."""
|
17037
|
-
type MicrositeAddProducts {
|
17038
|
-
"""Microsite to which products will be added."""
|
17039
|
-
microsite: Microsite
|
17040
|
-
micrositeErrors: [ProductError!]!
|
17041
|
-
}
|
17042
|
-
|
17043
|
-
type ProductError {
|
17044
|
-
"""
|
17045
|
-
Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
|
17046
|
-
"""
|
17047
|
-
field: String
|
17048
|
-
|
17049
|
-
"""The error message."""
|
17050
|
-
message: String!
|
17051
|
-
|
17052
|
-
"""The error code."""
|
17053
|
-
code: ProductErrorCode!
|
17054
|
-
|
17055
|
-
"""List of attributes IDs which causes the error."""
|
17056
|
-
attributes: [ID!]
|
17057
|
-
}
|
17058
|
-
|
17059
|
-
"""An enumeration."""
|
17060
|
-
enum ProductErrorCode {
|
17061
|
-
ALREADY_EXISTS
|
17062
|
-
ATTRIBUTE_ALREADY_ASSIGNED
|
17063
|
-
ATTRIBUTE_CANNOT_BE_ASSIGNED
|
17064
|
-
ATTRIBUTE_VARIANTS_DISABLED
|
17065
|
-
DUPLICATED_INPUT_ITEM
|
17066
|
-
GRAPHQL_ERROR
|
17067
|
-
INVALID
|
17068
|
-
INVALID_PHONE
|
17069
|
-
NOT_PRODUCTS_IMAGE
|
17070
|
-
NOT_PRODUCTS_VARIANT
|
17071
|
-
NOT_FOUND
|
17072
|
-
REQUIRED
|
17073
|
-
UNIQUE
|
17074
|
-
VARIANT_NO_DIGITAL_CONTENT
|
17075
|
-
VARIANT_IN_ACTIVE_ORDER
|
17076
|
-
CATEGORY_CANNOT_BE_ASSIGNED
|
17077
|
-
CATEGORY_CANNOT_BE_DELETED
|
17078
|
-
COLLECTION_CANNOT_BE_CHANGED
|
17079
|
-
COLLECTION_ALLOWED_FOR_PRODUCTS_ONLY
|
17080
|
-
COLLECTION_ALLOWED_FOR_VARIANTS_ONLY
|
17081
|
-
INVENTORY_FIELD_CANNOT_BE_EDITED
|
17082
|
-
}
|
17083
|
-
|
17084
|
-
"""Creates a new microsite."""
|
17085
|
-
type MicrositeCreate {
|
17086
|
-
micrositeErrors: [ProductError!]!
|
17087
|
-
microsite: Microsite
|
17088
|
-
}
|
17089
|
-
|
17090
|
-
input MicrositeCreateInput {
|
17091
|
-
"""Informs whether a microsite is published."""
|
17092
|
-
isPublished: Boolean
|
17093
|
-
|
17094
|
-
"""Name of the microsite."""
|
17095
|
-
name: String
|
17096
|
-
|
17097
|
-
"""Text to appear in footer of microsite."""
|
17098
|
-
footerText: String
|
17099
|
-
|
17100
|
-
"""Slug of the microsite."""
|
17101
|
-
slug: String
|
17102
|
-
|
17103
|
-
"""Description of the microsite (plaintext, deprecated for input)."""
|
17104
|
-
description: String
|
17105
|
-
|
17106
|
-
"""Description of the microsite (HTML)."""
|
17107
|
-
descriptionHtml: String
|
17108
|
-
|
17109
|
-
"""Banner image file."""
|
17110
|
-
bannerImage: Upload
|
17111
|
-
|
17112
|
-
"""Alt text for an image."""
|
17113
|
-
bannerImageAlt: String
|
17114
|
-
|
17115
|
-
"""Logo image file."""
|
17116
|
-
logoImage: Upload
|
17117
|
-
|
17118
|
-
"""Alt text for an image."""
|
17119
|
-
logoImageAlt: String
|
17120
|
-
|
17121
|
-
"""Search engine optimization fields."""
|
17122
|
-
seo: SeoInput
|
17123
|
-
|
17124
|
-
"""Publication date. ISO 8601 standard."""
|
17125
|
-
publicationDate: Date
|
17126
|
-
|
17127
|
-
"""List of products to be added to the microsite."""
|
17128
|
-
products: [ID!]
|
17129
|
-
|
17130
|
-
"""Vendor that microsite belongs to"""
|
17131
|
-
vendor: ID!
|
17132
|
-
}
|
17133
|
-
|
17134
|
-
input SeoInput {
|
17135
|
-
"""SEO title."""
|
17136
|
-
title: String
|
17137
|
-
|
17138
|
-
"""SEO description."""
|
17139
|
-
description: String
|
17140
|
-
}
|
17141
|
-
|
17142
|
-
"""Deletes a microsite."""
|
17143
|
-
type MicrositeDelete {
|
17144
|
-
micrositeErrors: [ProductError!]!
|
17145
|
-
microsite: Microsite
|
17146
|
-
}
|
17147
|
-
|
17148
|
-
"""Reorder the products of a microsite."""
|
17149
|
-
type MicrositeReorderProducts {
|
17150
|
-
"""Microsite from which products are reordered."""
|
17151
|
-
microsite: Microsite
|
17152
|
-
micrositeErrors: [ProductError!]!
|
17153
|
-
}
|
17154
|
-
|
17155
|
-
input MoveProductInput {
|
17156
|
-
"""The ID of the product to move."""
|
17157
|
-
productId: ID!
|
17158
|
-
|
17159
|
-
"""
|
17160
|
-
The relative sorting position of the product (from -inf to +inf) starting from the first given product's actual position.1 moves the item one position forward, -1 moves the item one position backward, 0 leaves the item unchanged.
|
17161
|
-
"""
|
17162
|
-
sortOrder: Int
|
17163
|
-
}
|
17164
|
-
|
17165
|
-
"""Deletes microsites."""
|
17166
|
-
type MicrositeBulkDelete {
|
17167
|
-
"""Returns how many objects were affected."""
|
17168
|
-
count: Int!
|
17169
|
-
micrositeErrors: [ProductError!]!
|
17170
|
-
}
|
17171
|
-
|
17172
|
-
"""Publish microsites."""
|
17173
|
-
type MicrositeBulkPublish {
|
17174
|
-
"""Returns how many objects were affected."""
|
17175
|
-
count: Int!
|
17176
|
-
micrositeErrors: [ProductError!]!
|
17177
|
-
}
|
17178
|
-
|
17179
|
-
"""Remove products from a microsite."""
|
17180
|
-
type MicrositeRemoveProducts {
|
17181
|
-
"""Microsite from which products will be removed."""
|
17182
|
-
microsite: Microsite
|
17183
|
-
micrositeErrors: [ProductError!]!
|
17184
|
-
}
|
17185
|
-
|
17186
|
-
"""Updates a microsite."""
|
17187
|
-
type MicrositeUpdate {
|
17188
|
-
micrositeErrors: [ProductError!]!
|
17189
|
-
microsite: Microsite
|
17190
|
-
}
|
17191
|
-
|
17192
|
-
input MicrositeInput {
|
17193
|
-
"""Informs whether a microsite is published."""
|
17194
|
-
isPublished: Boolean
|
17195
|
-
|
17196
|
-
"""Name of the microsite."""
|
17197
|
-
name: String
|
17198
|
-
|
17199
|
-
"""Text to appear in footer of microsite."""
|
17200
|
-
footerText: String
|
17201
|
-
|
17202
|
-
"""Slug of the microsite."""
|
17203
|
-
slug: String
|
17204
|
-
|
17205
|
-
"""Description of the microsite (plaintext, deprecated for input)."""
|
17206
|
-
description: String
|
17207
|
-
|
17208
|
-
"""Description of the microsite (HTML)."""
|
17209
|
-
descriptionHtml: String
|
17210
|
-
|
17211
|
-
"""Banner image file."""
|
17212
|
-
bannerImage: Upload
|
17213
|
-
|
17214
|
-
"""Alt text for an image."""
|
17215
|
-
bannerImageAlt: String
|
17216
|
-
|
17217
|
-
"""Logo image file."""
|
17218
|
-
logoImage: Upload
|
17219
|
-
|
17220
|
-
"""Alt text for an image."""
|
17221
|
-
logoImageAlt: String
|
17222
|
-
|
17223
|
-
"""Search engine optimization fields."""
|
17224
|
-
seo: SeoInput
|
17225
|
-
|
17226
|
-
"""Publication date. ISO 8601 standard."""
|
17227
|
-
publicationDate: Date
|
17228
|
-
}
|
17229
|
-
|
17230
17021
|
"""Creates a new agreement."""
|
17231
17022
|
type AgreementCreate {
|
17232
17023
|
agreementErrors: [AgreementError!]!
|
@@ -17298,6 +17089,14 @@ input AgreementInput {
|
|
17298
17089
|
markupCommissionValue: Decimal
|
17299
17090
|
}
|
17300
17091
|
|
17092
|
+
input SeoInput {
|
17093
|
+
"""SEO title."""
|
17094
|
+
title: String
|
17095
|
+
|
17096
|
+
"""SEO description."""
|
17097
|
+
description: String
|
17098
|
+
}
|
17099
|
+
|
17301
17100
|
"""Deletes a agreement."""
|
17302
17101
|
type AgreementDelete {
|
17303
17102
|
agreementErrors: [AgreementError!]!
|
@@ -18680,6 +18479,80 @@ type RefundPaymentsDelete {
|
|
18680
18479
|
refundErrors: [RefundError!]!
|
18681
18480
|
}
|
18682
18481
|
|
18482
|
+
"""Creates a new policy."""
|
18483
|
+
type PolicyCreate {
|
18484
|
+
policyErrors: [PolicyError!]!
|
18485
|
+
policy: Policy
|
18486
|
+
}
|
18487
|
+
|
18488
|
+
type PolicyError {
|
18489
|
+
"""
|
18490
|
+
Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
|
18491
|
+
"""
|
18492
|
+
field: String
|
18493
|
+
|
18494
|
+
"""The error message."""
|
18495
|
+
message: String!
|
18496
|
+
|
18497
|
+
"""The error code."""
|
18498
|
+
code: PolicyErrorCode!
|
18499
|
+
}
|
18500
|
+
|
18501
|
+
"""An enumeration."""
|
18502
|
+
enum PolicyErrorCode {
|
18503
|
+
GRAPHQL_ERROR
|
18504
|
+
INVALID
|
18505
|
+
NOT_FOUND
|
18506
|
+
REQUIRED
|
18507
|
+
UNIQUE
|
18508
|
+
}
|
18509
|
+
|
18510
|
+
input PolicyInput {
|
18511
|
+
"""Policy internal name."""
|
18512
|
+
slug: String
|
18513
|
+
|
18514
|
+
"""Policy title."""
|
18515
|
+
title: String
|
18516
|
+
|
18517
|
+
"""Policy content (HTML)."""
|
18518
|
+
contentHtml: String
|
18519
|
+
|
18520
|
+
"""Determines if the policy is visible in the storefront."""
|
18521
|
+
isPublished: Boolean
|
18522
|
+
|
18523
|
+
"""Publication date. ISO 8601 standard."""
|
18524
|
+
publicationDate: String
|
18525
|
+
|
18526
|
+
"""Search engine optimization fields."""
|
18527
|
+
seo: SeoInput
|
18528
|
+
}
|
18529
|
+
|
18530
|
+
"""Deletes a policy."""
|
18531
|
+
type PolicyDelete {
|
18532
|
+
policyErrors: [PolicyError!]!
|
18533
|
+
policy: Policy
|
18534
|
+
}
|
18535
|
+
|
18536
|
+
"""Deletes policy."""
|
18537
|
+
type PolicyBulkDelete {
|
18538
|
+
"""Returns how many objects were affected."""
|
18539
|
+
count: Int!
|
18540
|
+
policyErrors: [PolicyError!]!
|
18541
|
+
}
|
18542
|
+
|
18543
|
+
"""Publish policy."""
|
18544
|
+
type PolicyBulkPublish {
|
18545
|
+
"""Returns how many objects were affected."""
|
18546
|
+
count: Int!
|
18547
|
+
policyErrors: [PolicyError!]!
|
18548
|
+
}
|
18549
|
+
|
18550
|
+
"""Updates an existing policy."""
|
18551
|
+
type PolicyUpdate {
|
18552
|
+
policyErrors: [PolicyError!]!
|
18553
|
+
policy: Policy
|
18554
|
+
}
|
18555
|
+
|
18683
18556
|
"""Creates a new price book."""
|
18684
18557
|
type PriceBookCreate {
|
18685
18558
|
priceBookErrors: [PriceBookError!]!
|
@@ -18993,6 +18866,47 @@ type CategoryCreate {
|
|
18993
18866
|
category: Category
|
18994
18867
|
}
|
18995
18868
|
|
18869
|
+
type ProductError {
|
18870
|
+
"""
|
18871
|
+
Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
|
18872
|
+
"""
|
18873
|
+
field: String
|
18874
|
+
|
18875
|
+
"""The error message."""
|
18876
|
+
message: String!
|
18877
|
+
|
18878
|
+
"""The error code."""
|
18879
|
+
code: ProductErrorCode!
|
18880
|
+
|
18881
|
+
"""List of attributes IDs which causes the error."""
|
18882
|
+
attributes: [ID!]
|
18883
|
+
}
|
18884
|
+
|
18885
|
+
"""An enumeration."""
|
18886
|
+
enum ProductErrorCode {
|
18887
|
+
ALREADY_EXISTS
|
18888
|
+
ATTRIBUTE_ALREADY_ASSIGNED
|
18889
|
+
ATTRIBUTE_CANNOT_BE_ASSIGNED
|
18890
|
+
ATTRIBUTE_VARIANTS_DISABLED
|
18891
|
+
DUPLICATED_INPUT_ITEM
|
18892
|
+
GRAPHQL_ERROR
|
18893
|
+
INVALID
|
18894
|
+
INVALID_PHONE
|
18895
|
+
NOT_PRODUCTS_IMAGE
|
18896
|
+
NOT_PRODUCTS_VARIANT
|
18897
|
+
NOT_FOUND
|
18898
|
+
REQUIRED
|
18899
|
+
UNIQUE
|
18900
|
+
VARIANT_NO_DIGITAL_CONTENT
|
18901
|
+
VARIANT_IN_ACTIVE_ORDER
|
18902
|
+
CATEGORY_CANNOT_BE_ASSIGNED
|
18903
|
+
CATEGORY_CANNOT_BE_DELETED
|
18904
|
+
COLLECTION_CANNOT_BE_CHANGED
|
18905
|
+
COLLECTION_ALLOWED_FOR_PRODUCTS_ONLY
|
18906
|
+
COLLECTION_ALLOWED_FOR_VARIANTS_ONLY
|
18907
|
+
INVENTORY_FIELD_CANNOT_BE_EDITED
|
18908
|
+
}
|
18909
|
+
|
18996
18910
|
input CategoryInput {
|
18997
18911
|
"""Category description (plaintext, deprecated as input)."""
|
18998
18912
|
description: String
|
@@ -19159,6 +19073,16 @@ type CollectionReorderProducts {
|
|
19159
19073
|
productErrors: [ProductError!]!
|
19160
19074
|
}
|
19161
19075
|
|
19076
|
+
input MoveProductInput {
|
19077
|
+
"""The ID of the product to move."""
|
19078
|
+
productId: ID!
|
19079
|
+
|
19080
|
+
"""
|
19081
|
+
The relative sorting position of the product (from -inf to +inf) starting from the first given product's actual position.1 moves the item one position forward, -1 moves the item one position backward, 0 leaves the item unchanged.
|
19082
|
+
"""
|
19083
|
+
sortOrder: Int
|
19084
|
+
}
|
19085
|
+
|
19162
19086
|
"""Deletes collections."""
|
19163
19087
|
type CollectionBulkDelete {
|
19164
19088
|
"""Returns how many objects were affected."""
|
@@ -19314,16 +19238,16 @@ input ProductCreateInput {
|
|
19314
19238
|
visibleInListings: Boolean
|
19315
19239
|
|
19316
19240
|
"""Manufacturer product number"""
|
19317
|
-
mpn: String
|
19241
|
+
mpn: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19318
19242
|
|
19319
19243
|
"""Product brand"""
|
19320
|
-
brand: String
|
19244
|
+
brand: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19321
19245
|
|
19322
19246
|
"""Manufacturer of the product"""
|
19323
|
-
manufacturer: String
|
19247
|
+
manufacturer: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19324
19248
|
|
19325
19249
|
"""Product model code"""
|
19326
|
-
model: String
|
19250
|
+
model: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19327
19251
|
|
19328
19252
|
"""Override price for grouped products"""
|
19329
19253
|
overridePrice: Boolean
|
@@ -19340,7 +19264,7 @@ input ProductCreateInput {
|
|
19340
19264
|
subStatusReason: String
|
19341
19265
|
|
19342
19266
|
"""Sort priority for product"""
|
19343
|
-
sortPriorityWeight: Decimal
|
19267
|
+
sortPriorityWeight: Decimal @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19344
19268
|
|
19345
19269
|
"""
|
19346
19270
|
Set whether this product requires shipping by default, will be overridden by product type if provided
|
@@ -19530,16 +19454,16 @@ input ProductInput {
|
|
19530
19454
|
visibleInListings: Boolean
|
19531
19455
|
|
19532
19456
|
"""Manufacturer product number"""
|
19533
|
-
mpn: String
|
19457
|
+
mpn: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19534
19458
|
|
19535
19459
|
"""Product brand"""
|
19536
|
-
brand: String
|
19460
|
+
brand: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19537
19461
|
|
19538
19462
|
"""Manufacturer of the product"""
|
19539
|
-
manufacturer: String
|
19463
|
+
manufacturer: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19540
19464
|
|
19541
19465
|
"""Product model code"""
|
19542
|
-
model: String
|
19466
|
+
model: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19543
19467
|
|
19544
19468
|
"""Override price for grouped products"""
|
19545
19469
|
overridePrice: Boolean
|
@@ -19556,7 +19480,7 @@ input ProductInput {
|
|
19556
19480
|
subStatusReason: String
|
19557
19481
|
|
19558
19482
|
"""Sort priority for product"""
|
19559
|
-
sortPriorityWeight: Decimal
|
19483
|
+
sortPriorityWeight: Decimal @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19560
19484
|
|
19561
19485
|
"""
|
19562
19486
|
Set whether this product requires shipping by default, will be overridden by product type if provided
|
@@ -19837,7 +19761,7 @@ input ProductVariantCreateInput {
|
|
19837
19761
|
costPrice: PositiveDecimal
|
19838
19762
|
|
19839
19763
|
"""Description of the product variant."""
|
19840
|
-
description: String
|
19764
|
+
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
19841
19765
|
|
19842
19766
|
"""Product variant description (HTML)."""
|
19843
19767
|
descriptionHtml: String
|
@@ -19880,7 +19804,7 @@ input ProductVariantCreateInput {
|
|
19880
19804
|
requiresQuote: Boolean
|
19881
19805
|
|
19882
19806
|
"""Substatus the variant is to be changed to."""
|
19883
|
-
subStatus: ProductVariantSubStatusEnum
|
19807
|
+
subStatus: ProductVariantSubStatusEnum @deprecated(reason: "This field will be removed on April 15th, 2025. ProductVariant substatus will be the same as product substatus")
|
19884
19808
|
|
19885
19809
|
"""
|
19886
19810
|
Informs whether a collection is published. All variants are published by default
|
@@ -19978,7 +19902,7 @@ input ProductVariantBulkCreateInput {
|
|
19978
19902
|
costPrice: PositiveDecimal
|
19979
19903
|
|
19980
19904
|
"""Description of the product variant."""
|
19981
|
-
description: String
|
19905
|
+
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
19982
19906
|
|
19983
19907
|
"""Product variant description (HTML)."""
|
19984
19908
|
descriptionHtml: String
|
@@ -20021,7 +19945,7 @@ input ProductVariantBulkCreateInput {
|
|
20021
19945
|
requiresQuote: Boolean
|
20022
19946
|
|
20023
19947
|
"""Substatus the variant is to be changed to."""
|
20024
|
-
subStatus: ProductVariantSubStatusEnum
|
19948
|
+
subStatus: ProductVariantSubStatusEnum @deprecated(reason: "This field will be removed on April 15th, 2025. ProductVariant substatus will be the same as product substatus")
|
20025
19949
|
|
20026
19950
|
"""
|
20027
19951
|
Informs whether a collection is published. All variants are published by default
|
@@ -20157,7 +20081,7 @@ input ProductVariantInput {
|
|
20157
20081
|
costPrice: PositiveDecimal
|
20158
20082
|
|
20159
20083
|
"""Description of the product variant."""
|
20160
|
-
description: String
|
20084
|
+
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
20161
20085
|
|
20162
20086
|
"""Product variant description (HTML)."""
|
20163
20087
|
descriptionHtml: String
|
@@ -20200,7 +20124,7 @@ input ProductVariantInput {
|
|
20200
20124
|
requiresQuote: Boolean
|
20201
20125
|
|
20202
20126
|
"""Substatus the variant is to be changed to."""
|
20203
|
-
subStatus: ProductVariantSubStatusEnum
|
20127
|
+
subStatus: ProductVariantSubStatusEnum @deprecated(reason: "This field will be removed on April 15th, 2025. ProductVariant substatus will be the same as product substatus")
|
20204
20128
|
|
20205
20129
|
"""
|
20206
20130
|
Informs whether a collection is published. All variants are published by default
|
@@ -23091,6 +23015,29 @@ type AppTokenVerify {
|
|
23091
23015
|
appErrors: [AppError!]!
|
23092
23016
|
}
|
23093
23017
|
|
23018
|
+
"""Creates a new dashboard integration for an app."""
|
23019
|
+
type AppDashboardIntegrationCreate {
|
23020
|
+
appErrors: [AppError!]!
|
23021
|
+
appDashboardIntegration: AppDashboardIntegration
|
23022
|
+
}
|
23023
|
+
|
23024
|
+
input AppDashboardIntegrationInput {
|
23025
|
+
"""ID of app."""
|
23026
|
+
app: ID!
|
23027
|
+
|
23028
|
+
"""URL to the iframe"""
|
23029
|
+
iframeUrl: String!
|
23030
|
+
|
23031
|
+
"""Context for where this integration should render"""
|
23032
|
+
context: AppDashboardIntegrationContextEnum!
|
23033
|
+
}
|
23034
|
+
|
23035
|
+
"""Deletes an app storefront integration from the app."""
|
23036
|
+
type AppDashboardIntegrationDelete {
|
23037
|
+
appErrors: [AppError!]!
|
23038
|
+
appDashboardIntegration: AppDashboardIntegration
|
23039
|
+
}
|
23040
|
+
|
23094
23041
|
"""Creates a new storefront integration for an app."""
|
23095
23042
|
type AppStorefrontIntegrationCreate {
|
23096
23043
|
appErrors: [AppError!]!
|
@@ -23863,7 +23810,7 @@ enum PermissionGroupErrorCode {
|
|
23863
23810
|
|
23864
23811
|
input PermissionGroupCreateInput {
|
23865
23812
|
"""List of permission code names to assign to this group."""
|
23866
|
-
addPermissions: [PermissionEnum!]
|
23813
|
+
addPermissions: [PermissionEnum!] @deprecated(reason: "This will be removed on April 14, 2025")
|
23867
23814
|
|
23868
23815
|
"""List of users to assign to this group."""
|
23869
23816
|
addUsers: [ID!]
|
@@ -23880,7 +23827,7 @@ type PermissionGroupUpdate {
|
|
23880
23827
|
|
23881
23828
|
input PermissionGroupUpdateInput {
|
23882
23829
|
"""List of permission code names to assign to this group."""
|
23883
|
-
addPermissions: [PermissionEnum!]
|
23830
|
+
addPermissions: [PermissionEnum!] @deprecated(reason: "This will be removed on April 14, 2025")
|
23884
23831
|
|
23885
23832
|
"""List of users to assign to this group."""
|
23886
23833
|
addUsers: [ID!]
|
@@ -23889,7 +23836,7 @@ input PermissionGroupUpdateInput {
|
|
23889
23836
|
name: String
|
23890
23837
|
|
23891
23838
|
"""List of permission code names to unassign from this group."""
|
23892
|
-
removePermissions: [PermissionEnum!]
|
23839
|
+
removePermissions: [PermissionEnum!] @deprecated(reason: "This will be removed on April 14, 2025")
|
23893
23840
|
|
23894
23841
|
"""List of users to unassign from this group."""
|
23895
23842
|
removeUsers: [ID!]
|