@nautical-commerce/graphql-schema 1.74.0 → 1.74.1
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 +106 -15
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -67,6 +67,33 @@ type PageInfo {
|
|
67
67
|
}
|
68
68
|
|
69
69
|
type Query {
|
70
|
+
"""Look up a marketplace subscription by id."""
|
71
|
+
marketplaceSubscription(
|
72
|
+
"""ID of a marketplace subscription"""
|
73
|
+
id: ID!
|
74
|
+
): MarketplaceSubscription
|
75
|
+
|
76
|
+
"""List of marketplace subscriptions."""
|
77
|
+
marketplaceSubscriptions(
|
78
|
+
"""Filtering options for marketplace subscriptions."""
|
79
|
+
filter: MarketplaceSubscriptionFilterInput
|
80
|
+
|
81
|
+
"""Sort marketplace subscription."""
|
82
|
+
sortBy: MarketplaceSubscriptionSortingInput
|
83
|
+
|
84
|
+
"""Return the elements in the list that come before the specified cursor."""
|
85
|
+
before: String
|
86
|
+
|
87
|
+
"""Return the elements in the list that come after the specified cursor."""
|
88
|
+
after: String
|
89
|
+
|
90
|
+
"""Return the first n elements from the list."""
|
91
|
+
first: Int
|
92
|
+
|
93
|
+
"""Return the last n elements from the list."""
|
94
|
+
last: Int
|
95
|
+
): MarketplaceSubscriptionCountableConnection
|
96
|
+
|
70
97
|
"""Look up an email template by ID."""
|
71
98
|
emailTemplate(
|
72
99
|
"""ID of an email template"""
|
@@ -2130,6 +2157,79 @@ type Query {
|
|
2130
2157
|
_service: _Service!
|
2131
2158
|
}
|
2132
2159
|
|
2160
|
+
"""Represents a marketplace subscription."""
|
2161
|
+
type MarketplaceSubscription implements Node {
|
2162
|
+
"""The ID of the object"""
|
2163
|
+
id: ID!
|
2164
|
+
providerCustomerId: String!
|
2165
|
+
isActive: Boolean!
|
2166
|
+
|
2167
|
+
"""The provider of the marketplace subscription"""
|
2168
|
+
provider: MarketplaceSubscriptionProviderTypeEnum
|
2169
|
+
}
|
2170
|
+
|
2171
|
+
"""An object with an ID"""
|
2172
|
+
interface Node {
|
2173
|
+
"""The ID of the object"""
|
2174
|
+
id: ID!
|
2175
|
+
}
|
2176
|
+
|
2177
|
+
"""An enumeration."""
|
2178
|
+
enum MarketplaceSubscriptionProviderTypeEnum {
|
2179
|
+
STRIPE
|
2180
|
+
}
|
2181
|
+
|
2182
|
+
type MarketplaceSubscriptionCountableConnection {
|
2183
|
+
"""Pagination data for this connection."""
|
2184
|
+
pageInfo: PageInfo!
|
2185
|
+
edges: [MarketplaceSubscriptionCountableEdge!]!
|
2186
|
+
|
2187
|
+
"""A total count of items in the collection."""
|
2188
|
+
totalCount: Int
|
2189
|
+
}
|
2190
|
+
|
2191
|
+
type MarketplaceSubscriptionCountableEdge {
|
2192
|
+
"""The item at the end of the edge."""
|
2193
|
+
node: MarketplaceSubscription!
|
2194
|
+
|
2195
|
+
"""A cursor for use in pagination."""
|
2196
|
+
cursor: String!
|
2197
|
+
}
|
2198
|
+
|
2199
|
+
"""Filter input class for marketplace subscriptions."""
|
2200
|
+
input MarketplaceSubscriptionFilterInput {
|
2201
|
+
isActive: Boolean
|
2202
|
+
provider: MarketplaceSubscriptionProviderTypeEnum
|
2203
|
+
}
|
2204
|
+
|
2205
|
+
"""Input type for specifying marketplace subscription sorting criteria."""
|
2206
|
+
input MarketplaceSubscriptionSortingInput {
|
2207
|
+
"""Specifies the direction in which to sort products."""
|
2208
|
+
direction: OrderDirection!
|
2209
|
+
|
2210
|
+
"""Sort marketplace subscription by the selected field."""
|
2211
|
+
field: MarketplaceSubscriptionSortField!
|
2212
|
+
}
|
2213
|
+
|
2214
|
+
enum OrderDirection {
|
2215
|
+
"""Specifies an ascending sort order."""
|
2216
|
+
ASC
|
2217
|
+
|
2218
|
+
"""Specifies a descending sort order."""
|
2219
|
+
DESC
|
2220
|
+
}
|
2221
|
+
|
2222
|
+
"""
|
2223
|
+
Enumerates possible fields by which marketplace subscriptions can be sorted.
|
2224
|
+
"""
|
2225
|
+
enum MarketplaceSubscriptionSortField {
|
2226
|
+
"""Sort marketplace subscription by id."""
|
2227
|
+
ID
|
2228
|
+
|
2229
|
+
"""Sort marketplace subscription by provider."""
|
2230
|
+
PROVIDER
|
2231
|
+
}
|
2232
|
+
|
2133
2233
|
"""Represents an email template."""
|
2134
2234
|
type EmailTemplate implements Node {
|
2135
2235
|
"""The ID of the object"""
|
@@ -2154,12 +2254,6 @@ type EmailTemplate implements Node {
|
|
2154
2254
|
eventType: EventTypeEnum!
|
2155
2255
|
}
|
2156
2256
|
|
2157
|
-
"""An object with an ID"""
|
2158
|
-
interface Node {
|
2159
|
-
"""The ID of the object"""
|
2160
|
-
id: ID!
|
2161
|
-
}
|
2162
|
-
|
2163
2257
|
"""
|
2164
2258
|
The `DateTime` scalar type represents a DateTime
|
2165
2259
|
value as specified by
|
@@ -2259,14 +2353,6 @@ input EmailTemplateSortingInput {
|
|
2259
2353
|
field: EmailTemplateSortField!
|
2260
2354
|
}
|
2261
2355
|
|
2262
|
-
enum OrderDirection {
|
2263
|
-
"""Specifies an ascending sort order."""
|
2264
|
-
ASC
|
2265
|
-
|
2266
|
-
"""Specifies a descending sort order."""
|
2267
|
-
DESC
|
2268
|
-
}
|
2269
|
-
|
2270
2356
|
enum EmailTemplateSortField {
|
2271
2357
|
"""Sort email template by title."""
|
2272
2358
|
TITLE
|
@@ -4627,6 +4713,11 @@ input AttributeFilterInput {
|
|
4627
4713
|
have NO variant or product associated to it
|
4628
4714
|
"""
|
4629
4715
|
hasAssignedProductOrVariant: Boolean
|
4716
|
+
|
4717
|
+
"""
|
4718
|
+
If True: returns the list of attributes that are allowed to be assigned to variants.
|
4719
|
+
"""
|
4720
|
+
isVariantAssignable: Boolean
|
4630
4721
|
metadata: MetadataFilterInput
|
4631
4722
|
privateMetadata: MetadataFilterInput
|
4632
4723
|
showExternal: Boolean
|
@@ -13168,7 +13259,7 @@ type Mutation {
|
|
13168
13259
|
description: String
|
13169
13260
|
|
13170
13261
|
"""
|
13171
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13262
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/dwg, application/x-rar, application/x-pdf, application/x-autocad, application/pdf, image/heif, application/gzip-compressed, application/x-zip-compressed, text/csv, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/dxf, text/svg, application/excel, image/x-bmp, image/vnd.dwg, image/jpeg, application/gzip, image/tiff, application/vnd.ms-powerpoint, application/gzipped, text/x-comma-separated-values, image/x-eps, image/jpg, application/x-jpg, application/vnd.openxmlformats-officedocument.presentationml.presentation, text/x-csv, application/vnd.oasis.opendocument.spreadsheet, text/plain, application/x-eps, application/vnd.pdf, image/x-dxf, image/heic-sequence, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/rtf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/comma-separated-values, application/svg+xml, application/tiff, drawing/dwg, drawing/x-dwg, image/png, application/x-csv, application/vnd.oasis.opendocument.text, pplication/vnd.rar, text/pdf, application/vnd.oasis.opendocument.presentation, application/x-acad, image/x-tiff, application/eps, application/zip, application/x-rar-compressed, application/acrobat, image/x-dwg, application/csv, application/vnd.ms-word, application/msword, text/x-pdf, application/acad, image/eps, image/heif-sequence, image/x-ms-bmp, application/vnd.ms-excel, text/svg-xml, image/gif, text/rtf, application/x-dxf, application/x-dwg, image/heic, application/tif, application/x-tiff, application/x-tif, image/bmp, image/svg, image/x-tif, application/x-tar, image/webp, application/postscript, application/x-rtf, image/svg+xml, image/tif, application/x-gzip, application/jpg, drawing/x-dwf, image/dxf.
|
13172
13263
|
"""
|
13173
13264
|
file: Upload!
|
13174
13265
|
|