@nautical-commerce/graphql-schema 2.35.0 → 2.37.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.
@@ -2505,6 +2505,9 @@ type Checkout implements Node & ObjectWithMetadata {
2505
2505
 
2506
2506
  """The price of the marketplace shipping."""
2507
2507
  marketplaceShippingPrice: TaxedMoney!
2508
+
2509
+ """Whether the checkout has an authenticated user."""
2510
+ isAuthenticated: Boolean!
2508
2511
  }
2509
2512
 
2510
2513
  """Represents amount of money in specific currency."""
@@ -4186,7 +4189,21 @@ type Payout implements Node & ObjectWithMetadata {
4186
4189
  status: PayoutStatusEnum!
4187
4190
  name: String
4188
4191
  currency: String!
4189
- vendorPayouts(offset: Int, before: String, after: String, first: Int, last: Int): VendorPayoutCountableConnection!
4192
+
4193
+ """Vendor payouts included in this payout period"""
4194
+ vendorPayouts(
4195
+ """Return the elements in the list that come before the specified cursor."""
4196
+ before: String
4197
+
4198
+ """Return the elements in the list that come after the specified cursor."""
4199
+ after: String
4200
+
4201
+ """Return the first n elements from the list."""
4202
+ first: Int
4203
+
4204
+ """Return the last n elements from the list."""
4205
+ last: Int
4206
+ ): VendorPayoutCountableConnection
4190
4207
  vendors: Int!
4191
4208
  netSales: Money!
4192
4209
  discounts: Money!
@@ -12740,7 +12757,7 @@ type Mutation {
12740
12757
  description: String
12741
12758
 
12742
12759
  """
12743
- 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, application/x-rar-compressed, image/x-bmp, application/svg+xml, application/excel, image/heif-sequence, application/zip, text/plain, application/gzipped, image/svg, application/x-rar, image/webp, application/x-dwg, application/dwg, application/vnd.oasis.opendocument.text, application/dxf, application/pdf, image/heic-sequence, text/rtf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-jpg, application/tif, application/vnd.oasis.opendocument.presentation, application/rtf, application/x-csv, image/eps, application/acrobat, image/dxf, application/vnd.pdf, text/comma-separated-values, image/vnd.dwg, image/x-tif, image/gif, application/x-autocad, application/msword, application/vnd.ms-powerpoint, application/x-zip-compressed, text/svg, image/jpeg, application/x-tiff, application/tiff, image/x-tiff, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/png, text/x-comma-separated-values, application/gzip, text/pdf, image/tif, image/x-dxf, image/heif, application/x-rtf, image/bmp, application/vnd.ms-word, application/x-tif, drawing/dwg, application/vnd.oasis.opendocument.spreadsheet, drawing/x-dwf, pplication/vnd.rar, application/x-pdf, application/x-dxf, application/jpg, text/x-pdf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/gzip-compressed, text/x-csv, image/heic, application/x-eps, application/postscript, application/eps, text/csv, drawing/x-dwg, application/csv, application/x-gzip, application/x-tar, image/x-ms-bmp, application/vnd.ms-excel, text/svg-xml, application/x-acad, image/jpg, image/tiff, image/svg+xml, image/x-eps, image/x-dwg.
12760
+ 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-tif, text/csv, application/vnd.oasis.opendocument.text, application/vnd.oasis.opendocument.presentation, image/svg, application/eps, image/tiff, application/vnd.ms-word, application/x-eps, image/x-dxf, image/bmp, application/x-rar, application/tiff, drawing/x-dwg, application/gzip, drawing/dwg, application/dxf, image/x-eps, application/x-jpg, application/msword, application/vnd.ms-excel, text/svg-xml, image/heif, image/svg+xml, image/jpg, application/zip, application/vnd.ms-powerpoint, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-rtf, application/x-dxf, application/acad, text/rtf, image/x-bmp, text/x-csv, text/comma-separated-values, application/gzipped, application/jpg, application/x-tiff, image/heic-sequence, application/tif, text/svg, application/rtf, application/x-zip-compressed, pplication/vnd.rar, image/tif, application/excel, application/x-tif, text/pdf, application/x-csv, application/vnd.pdf, image/eps, application/dwg, image/png, image/jpeg, application/postscript, image/x-ms-bmp, application/x-autocad, image/dxf, application/x-pdf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/plain, image/gif, application/svg+xml, text/x-comma-separated-values, application/vnd.oasis.opendocument.spreadsheet, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/pdf, image/x-tiff, text/x-pdf, image/vnd.dwg, image/heic, image/x-dwg, application/acrobat, application/csv, application/x-gzip, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-rar-compressed, image/webp, drawing/x-dwf, application/x-acad, application/gzip-compressed, image/heif-sequence, application/x-dwg, application/x-tar.
12744
12761
  """
12745
12762
  file: Upload!
12746
12763
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v2.35.0",
3
+ "version": "v2.37.0",
4
4
  "description": "Traide API GraphQL Schema",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {