@nautical-commerce/graphql-schema 1.53.0-7-g2598243da → 1.53.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.
@@ -8,30 +8,6 @@ parses float to the Decimal on the way back
8
8
  scalar Decimal
9
9
 
10
10
  type Query {
11
- """Look up an email template by ID."""
12
- emailTemplate(
13
- """ID of an email template"""
14
- id: ID!
15
- ): EmailTemplate
16
-
17
- """List of email templates."""
18
- emailTemplates(
19
- """Filtering options for email templates."""
20
- filter: EmailTemplateFilterInput
21
-
22
- """Return the elements in the list that come before the specified cursor."""
23
- before: String
24
-
25
- """Return the elements in the list that come after the specified cursor."""
26
- after: String
27
-
28
- """Return the first n elements from the list."""
29
- first: Int
30
-
31
- """Return the last n elements from the list."""
32
- last: Int
33
- ): EmailTemplateCountableConnection
34
-
35
11
  """List of the wishlist items by name."""
36
12
  wishlistItemsByName(
37
13
  """Filtering options for wishlist items."""
@@ -2160,93 +2136,10 @@ type Query {
2160
2136
  _service: _Service!
2161
2137
  }
2162
2138
 
2163
- """Represents an email template."""
2164
- type EmailTemplate implements Node {
2165
- """The ID of the object"""
2166
- id: ID!
2167
- title: String!
2168
- subject: String!
2169
- content: String
2170
- renderedContent: String
2171
- isCustom: Boolean!
2172
- isActive: Boolean!
2173
- isEditable: Boolean!
2174
- createdAt: DateTime!
2175
- updatedAt: DateTime!
2176
-
2177
- """The recipient type of the email template"""
2178
- recipientType: RecipientTypeEnum!
2179
-
2180
- """The event type associated with the email template"""
2181
- eventType: EventTypeEnum!
2182
- }
2183
-
2184
- """An object with an ID"""
2185
- interface Node {
2186
- """The ID of the object"""
2187
- id: ID!
2188
- }
2189
-
2190
- """
2191
- The `DateTime` scalar type represents a DateTime
2192
- value as specified by
2193
- [iso8601](https://en.wikipedia.org/wiki/ISO_8601).
2194
- """
2195
- scalar DateTime
2196
-
2197
- """Represents the recipient type for an email template."""
2198
- enum RecipientTypeEnum {
2199
- CUSTOMER
2200
- SELLER_PRIMARY_CONTACT
2201
- STAFF_MEMBER_MARKETPLACE
2202
- STAFF_MEMBER_SELLER
2203
- STAFF_MEMBER_MARKETPLACE_OR_SELLER
2204
- }
2205
-
2206
- """An enumeration."""
2207
- enum EventTypeEnum {
2208
- account_confirmation
2209
- account_password_reset
2210
- account_change_email_request
2211
- account_change_email_confirm
2212
- account_delete
2213
- account_set_customer_password
2214
- invoice_ready
2215
- order_confirmation
2216
- order_fulfillment_confirmation
2217
- order_fulfillment_denied
2218
- order_fulfillment_update
2219
- order_payment_confirmation
2220
- order_canceled
2221
- partial_order_cancel
2222
- order_refund_confirmation
2223
- seller_bid_action
2224
- pending_quote
2225
- account_set_staff_password
2226
- csv_export_products_success
2227
- csv_export_failed
2228
- staff_order_confirmation
2229
- account_staff_reset_password
2230
- vendor_payout_confirmation
2231
- pending_seller
2232
- updated_status
2233
- vin_decode_success
2234
- vin_decode_failed
2235
- import_catalog_failed
2236
- import_catalog_success
2237
- account_activate_request
2238
- account_activated
2239
- account_deactivated
2240
- pending_order
2241
- pending_customer
2242
- buyer_bid_action
2243
- quote_requested
2244
- }
2245
-
2246
- type EmailTemplateCountableConnection {
2139
+ type WishlistItemCountableConnection {
2247
2140
  """Pagination data for this connection."""
2248
2141
  pageInfo: PageInfo!
2249
- edges: [EmailTemplateCountableEdge!]!
2142
+ edges: [WishlistItemCountableEdge!]!
2250
2143
 
2251
2144
  """A total count of items in the collection."""
2252
2145
  totalCount: Int
@@ -2269,30 +2162,6 @@ type PageInfo {
2269
2162
  endCursor: String
2270
2163
  }
2271
2164
 
2272
- type EmailTemplateCountableEdge {
2273
- """The item at the end of the edge."""
2274
- node: EmailTemplate!
2275
-
2276
- """A cursor for use in pagination."""
2277
- cursor: String!
2278
- }
2279
-
2280
- """Filter input class for email templates."""
2281
- input EmailTemplateFilterInput {
2282
- title: String
2283
- recipientType: RecipientTypeEnum
2284
- eventType: EventTypeEnum
2285
- }
2286
-
2287
- type WishlistItemCountableConnection {
2288
- """Pagination data for this connection."""
2289
- pageInfo: PageInfo!
2290
- edges: [WishlistItemCountableEdge!]!
2291
-
2292
- """A total count of items in the collection."""
2293
- totalCount: Int
2294
- }
2295
-
2296
2165
  type WishlistItemCountableEdge {
2297
2166
  """The item at the end of the edge."""
2298
2167
  node: WishlistItem!
@@ -2316,6 +2185,12 @@ type WishlistItem implements Node {
2316
2185
  requestedPrice: Money
2317
2186
  }
2318
2187
 
2188
+ """An object with an ID"""
2189
+ interface Node {
2190
+ """The ID of the object"""
2191
+ id: ID!
2192
+ }
2193
+
2319
2194
  """Wishlist item."""
2320
2195
  type Wishlist implements Node {
2321
2196
  """The ID of the object"""
@@ -2341,6 +2216,13 @@ type Wishlist implements Node {
2341
2216
  ): WishlistItemCountableConnection
2342
2217
  }
2343
2218
 
2219
+ """
2220
+ The `DateTime` scalar type represents a DateTime
2221
+ value as specified by
2222
+ [iso8601](https://en.wikipedia.org/wiki/ISO_8601).
2223
+ """
2224
+ scalar DateTime
2225
+
2344
2226
  """Represents user data."""
2345
2227
  type User implements Node & ObjectWithMetadata {
2346
2228
  """The ID of the object"""
@@ -9458,9 +9340,8 @@ type CheckoutTheme implements Node {
9458
9340
  secondaryColor: String
9459
9341
  logo: Image
9460
9342
 
9461
- """URL of favicon"""
9343
+ """URL of the favicon."""
9462
9344
  faviconUrl: String
9463
- faviconImage: Image
9464
9345
 
9465
9346
  """URL of the confirmation page."""
9466
9347
  confirmationUrl: String!
@@ -9480,7 +9361,6 @@ type StorefrontTheme implements Node {
9480
9361
  """Accent color in hex."""
9481
9362
  accentColor: String
9482
9363
  logo: Image
9483
- faviconImage: Image
9484
9364
 
9485
9365
  """URL of the favicon."""
9486
9366
  faviconUrl: String
@@ -13963,7 +13843,7 @@ type Mutation {
13963
13843
  description: String
13964
13844
 
13965
13845
  """
13966
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/vnd.openxmlformats-officedocument.presentationml.slideshow, pplication/vnd.rar, application/x-gzip, application/x-csv, text/x-comma-separated-values, image/tiff, image/heif, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/x-csv, application/zip, image/vnd.dwg, application/gzipped, application/x-pdf, application/gzip, application/pdf, image/bmp, application/x-autocad, application/x-rtf, text/rtf, application/excel, image/heic, application/jpg, application/x-rar-compressed, text/svg, application/eps, application/x-acad, application/vnd.oasis.opendocument.presentation, image/x-dwg, image/x-bmp, image/jpeg, application/vnd.oasis.opendocument.spreadsheet, application/x-jpg, image/jpg, application/msword, image/gif, image/svg+xml, image/eps, application/vnd.ms-word, application/dwg, application/x-eps, application/rtf, application/x-zip-compressed, image/heic-sequence, drawing/dwg, drawing/x-dwg, image/x-dxf, image/x-ms-bmp, image/heif-sequence, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-dwg, image/svg, image/x-tif, application/vnd.oasis.opendocument.text, image/tif, text/csv, application/acad, application/x-rar, drawing/x-dwf, application/x-tiff, image/x-tiff, application/vnd.ms-powerpoint, text/x-pdf, image/webp, text/svg-xml, application/gzip-compressed, application/x-tif, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/dxf, image/png, application/dxf, application/csv, application/vnd.pdf, text/plain, application/tiff, application/acrobat, application/postscript, text/pdf, application/svg+xml, application/x-tar, application/x-dxf, text/comma-separated-values, application/tif, image/x-eps, application/vnd.ms-excel.
13846
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/x-bmp, application/x-dwg, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/gzip, image/gif, application/x-pdf, application/pdf, text/svg, application/acad, text/rtf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/x-ms-bmp, text/csv, text/x-comma-separated-values, text/svg-xml, application/eps, application/x-dxf, application/excel, application/csv, application/x-autocad, application/x-csv, image/heif-sequence, application/rtf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-rar-compressed, application/dwg, image/tif, application/x-gzip, application/jpg, application/x-zip-compressed, application/postscript, text/x-csv, image/svg+xml, drawing/x-dwf, image/vnd.dwg, application/vnd.pdf, application/msword, application/vnd.oasis.opendocument.spreadsheet, image/png, image/svg, application/x-rtf, image/tiff, application/tiff, application/x-tar, image/x-dwg, image/jpg, application/x-acad, image/jpeg, application/vnd.oasis.opendocument.text, text/pdf, application/gzip-compressed, image/webp, application/vnd.ms-powerpoint, image/heic-sequence, application/x-tif, application/x-rar, application/x-jpg, image/eps, application/x-eps, application/tif, drawing/x-dwg, image/x-dxf, application/vnd.ms-word, text/comma-separated-values, image/heif, application/vnd.ms-excel, text/x-pdf, image/bmp, image/x-tif, application/acrobat, image/dxf, application/svg+xml, application/vnd.oasis.opendocument.presentation, image/heic, application/dxf, text/plain, application/x-tiff, pplication/vnd.rar, image/x-tiff, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/x-eps, drawing/dwg, application/zip, application/gzipped.
13967
13847
  """
13968
13848
  file: Upload!
13969
13849
 
@@ -19750,9 +19630,6 @@ input CheckoutThemeCreateInput {
19750
19630
  """Logo file."""
19751
19631
  logo: Upload
19752
19632
 
19753
- """Favicon file."""
19754
- faviconImage: Upload
19755
-
19756
19633
  """URL of the favicon."""
19757
19634
  faviconUrl: String
19758
19635
 
@@ -19777,9 +19654,6 @@ input CheckoutThemeInput {
19777
19654
  """Logo file."""
19778
19655
  logo: Upload
19779
19656
 
19780
- """Favicon file."""
19781
- faviconImage: Upload
19782
-
19783
19657
  """URL of the favicon."""
19784
19658
  faviconUrl: String
19785
19659
 
@@ -19807,9 +19681,6 @@ input StorefrontThemeInput {
19807
19681
  """Logo file."""
19808
19682
  logo: Upload
19809
19683
 
19810
- """Favicon file"""
19811
- faviconImage: Upload
19812
-
19813
19684
  """URL of the favicon."""
19814
19685
  faviconUrl: String
19815
19686
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.53.0-7-g2598243da",
3
+ "version": "v1.53.0",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {