@nautical-commerce/graphql-schema 1.80.0-26-g2fe2be2d2 → 1.80.0-28-g4be9fba36

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.
@@ -693,27 +693,6 @@ type Query {
693
693
  last: Int
694
694
  ): ProductVariantCountableConnection
695
695
 
696
- """List of top selling products."""
697
- reportProductSales(
698
- """Span of time."""
699
- period: ReportingPeriod!
700
-
701
- """Seller global id to filter by."""
702
- identifier: ID
703
-
704
- """Return the elements in the list that come before the specified cursor."""
705
- before: String
706
-
707
- """Return the elements in the list that come after the specified cursor."""
708
- after: String
709
-
710
- """Return the first n elements from the list."""
711
- first: Int
712
-
713
- """Return the last n elements from the list."""
714
- last: Int
715
- ): ProductVariantCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
716
-
717
696
  """Look up a price book by ID."""
718
697
  priceBook(
719
698
  """ID of a price book."""
@@ -960,51 +939,6 @@ type Query {
960
939
  id: ID!
961
940
  ): [TaxCertificate!]
962
941
 
963
- """List of third party products"""
964
- thirdPartyProducts(
965
- """Third-party source name"""
966
- source: String!
967
- ): GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
968
-
969
- """Get third party product in form we can use for import"""
970
- importThirdPartyProduct(
971
- """Third-party source name"""
972
- source: String!
973
-
974
- """ID of the third party product to import"""
975
- id: ID!
976
- ): GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
977
-
978
- """List of plugins that are available as product import sources"""
979
- availableImportSources: [Plugin!] @deprecated(reason: "This will be removed on April 29, 2025")
980
-
981
- """Look up a catalog import process by ID."""
982
- catalogImportProcess(
983
- """ID of the catalog import process."""
984
- id: ID!
985
- ): CatalogImportProcess @deprecated(reason: "This will be removed on April 29, 2025")
986
-
987
- """List of catalog import processes."""
988
- catalogImportProcesses(
989
- """Filtering options for catalog import processes."""
990
- filter: CatalogImportProcessFilterInput
991
-
992
- """Sort catalog import processes."""
993
- sortBy: CatalogImportProcessSortInput
994
-
995
- """Return the elements in the list that come before the specified cursor."""
996
- before: String
997
-
998
- """Return the elements in the list that come after the specified cursor."""
999
- after: String
1000
-
1001
- """Return the first n elements from the list."""
1002
- first: Int
1003
-
1004
- """Return the last n elements from the list."""
1005
- last: Int
1006
- ): CatalogImportProcessCountableConnection @deprecated(reason: "This will be removed on April 29, 2025")
1007
-
1008
942
  """
1009
943
  List of tax exempt code supported by Avalara. Required permission: MANAGE_MARKETPLACE. Note: doesn't support app auth.
1010
944
  """
@@ -2830,7 +2764,6 @@ type ProductVariant implements Node & ObjectWithMetadata {
2830
2764
 
2831
2765
  """List of vouchers associated with the product."""
2832
2766
  vouchers: [Voucher!]!
2833
- requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
2834
2767
 
2835
2768
  """
2836
2769
  The sub status of the product variant. This will be the same as product's sub status.
@@ -9637,11 +9570,6 @@ enum ProductTypeSortField {
9637
9570
  EXTERNAL_SOURCE
9638
9571
  }
9639
9572
 
9640
- enum ReportingPeriod {
9641
- TODAY
9642
- THIS_MONTH
9643
- }
9644
-
9645
9573
  type PriceBookCountableConnection {
9646
9574
  """Pagination data for this connection."""
9647
9575
  pageInfo: PageInfo!
@@ -10169,225 +10097,6 @@ type TaxCertificate {
10169
10097
  exposureZoneName: String
10170
10098
  }
10171
10099
 
10172
- """
10173
- The `GenericScalar` scalar type represents a generic
10174
- GraphQL scalar value that could be:
10175
- String, Boolean, Int, Float, List or Object.
10176
- """
10177
- scalar GenericScalar
10178
-
10179
- """
10180
- Represents products import process from 3rd party service or integration.
10181
- """
10182
- type CatalogImportProcess implements Node {
10183
- status: CatalogImportProcessStatus!
10184
- message: String
10185
- createdAt: DateTime!
10186
- updatedAt: DateTime!
10187
-
10188
- """
10189
- Main Celery task ID, that performs action. Can be equal to null, if the process is not started yet. Can be used to revoke running task.
10190
- """
10191
- taskId: String
10192
- externalSource: String!
10193
- finishedAt: DateTime
10194
-
10195
- """The user who triggered this import process."""
10196
- createdBy: User
10197
-
10198
- """The seller for whom triggered this import process."""
10199
- seller: Seller
10200
-
10201
- """Error message for failed imports."""
10202
- internalNotes: String
10203
-
10204
- """The ID of the object"""
10205
- id: ID!
10206
-
10207
- """List of products in this collection."""
10208
- records(
10209
- """Filtering options for products."""
10210
- filter: CatalogImportProcessLogRecordFilterInput
10211
-
10212
- """Sort products."""
10213
- sortBy: CatalogImportProcessLogRecordSortInput
10214
-
10215
- """Return the elements in the list that come before the specified cursor."""
10216
- before: String
10217
-
10218
- """Return the elements in the list that come after the specified cursor."""
10219
- after: String
10220
-
10221
- """Return the first n elements from the list."""
10222
- first: Int
10223
-
10224
- """Return the last n elements from the list."""
10225
- last: Int
10226
- ): CatalogImportProcessLogRecordCountableConnection
10227
- }
10228
-
10229
- """An enumeration."""
10230
- enum CatalogImportProcessStatus {
10231
- """Pending"""
10232
- PENDING
10233
-
10234
- """Processing"""
10235
- PROCESSING
10236
-
10237
- """Success"""
10238
- SUCCESS
10239
-
10240
- """Failed"""
10241
- FAILED
10242
-
10243
- """Deleted"""
10244
- DELETED
10245
- }
10246
-
10247
- type CatalogImportProcessLogRecordCountableConnection {
10248
- """Pagination data for this connection."""
10249
- pageInfo: PageInfo!
10250
- edges: [CatalogImportProcessLogRecordCountableEdge!]!
10251
-
10252
- """A total count of items in the collection."""
10253
- totalCount: Int
10254
- }
10255
-
10256
- type CatalogImportProcessLogRecordCountableEdge {
10257
- """The item at the end of the edge."""
10258
- node: CatalogImportProcessLogRecord!
10259
-
10260
- """A cursor for use in pagination."""
10261
- cursor: String!
10262
- }
10263
-
10264
- """History log of each record processed with catalog import process."""
10265
- type CatalogImportProcessLogRecord implements Node {
10266
- """The ID of the object"""
10267
- id: ID!
10268
- createdAt: DateTime!
10269
-
10270
- """Celery task ID, that created this log"""
10271
- taskId: String
10272
- objectId: String
10273
- operation: CatalogImportProcessLogRecordOperation!
10274
-
10275
- """The name of a models which was processed with catalog import process."""
10276
- relatedObjectName: String
10277
- }
10278
-
10279
- """An enumeration."""
10280
- enum CatalogImportProcessLogRecordOperation {
10281
- """Attribute Created"""
10282
- ATTRIBUTE_CREATED
10283
-
10284
- """Attribute Updated"""
10285
- ATTRIBUTE_UPDATED
10286
-
10287
- """Category Created"""
10288
- CATEGORY_CREATED
10289
-
10290
- """Category Updated"""
10291
- CATEGORY_UPDATED
10292
-
10293
- """Product Created"""
10294
- PRODUCT_CREATED
10295
-
10296
- """Product Updated"""
10297
- PRODUCT_UPDATED
10298
-
10299
- """Product Updated or Created"""
10300
- PRODUCT_UPDATED_OR_CREATED
10301
-
10302
- """Product Archived"""
10303
- PRODUCT_ARCHIVED
10304
-
10305
- """Product Type Created"""
10306
- PRODUCT_TYPE_CREATED
10307
-
10308
- """Product Type Updated"""
10309
- PRODUCT_TYPE_UPDATED
10310
-
10311
- """Warehouse Created"""
10312
- WAREHOUSE_CREATED
10313
-
10314
- """Warehouse Updated"""
10315
- WAREHOUSE_UPDATED
10316
- }
10317
-
10318
- input CatalogImportProcessLogRecordFilterInput {
10319
- taskId: String
10320
- objectId: String
10321
- operation: CatalogImportOperation
10322
- }
10323
-
10324
- """An enumeration."""
10325
- enum CatalogImportOperation {
10326
- ATTRIBUTE_CREATED
10327
- ATTRIBUTE_UPDATED
10328
- CATEGORY_CREATED
10329
- CATEGORY_UPDATED
10330
- PRODUCT_CREATED
10331
- PRODUCT_UPDATED
10332
- PRODUCT_UPDATED_OR_CREATED
10333
- PRODUCT_ARCHIVED
10334
- PRODUCT_TYPE_CREATED
10335
- PRODUCT_TYPE_UPDATED
10336
- WAREHOUSE_CREATED
10337
- WAREHOUSE_UPDATED
10338
- }
10339
-
10340
- input CatalogImportProcessLogRecordSortInput {
10341
- """Specifies the direction in which to sort products."""
10342
- direction: OrderDirection!
10343
-
10344
- """Sort catalog_import_processes_log_record by the selected field."""
10345
- field: CatalogImportProcessLogRecordSortField!
10346
- }
10347
-
10348
- enum CatalogImportProcessLogRecordSortField {
10349
- """Sort users by created at."""
10350
- CREATED_AT
10351
- }
10352
-
10353
- type CatalogImportProcessCountableConnection {
10354
- """Pagination data for this connection."""
10355
- pageInfo: PageInfo!
10356
- edges: [CatalogImportProcessCountableEdge!]!
10357
-
10358
- """A total count of items in the collection."""
10359
- totalCount: Int
10360
- }
10361
-
10362
- type CatalogImportProcessCountableEdge {
10363
- """The item at the end of the edge."""
10364
- node: CatalogImportProcess!
10365
-
10366
- """A cursor for use in pagination."""
10367
- cursor: String!
10368
- }
10369
-
10370
- input CatalogImportProcessFilterInput {
10371
- createdBy: String
10372
- seller: String
10373
- }
10374
-
10375
- input CatalogImportProcessSortInput {
10376
- """Specifies the direction in which to sort products."""
10377
- direction: OrderDirection!
10378
-
10379
- """Sort catalog_import_processes by the selected field."""
10380
- field: CatalogImportProcessSortField!
10381
- }
10382
-
10383
- enum CatalogImportProcessSortField {
10384
- """Sort users by created at."""
10385
- CREATED_AT
10386
-
10387
- """Sort users by finished at."""
10388
- FINISHED_AT
10389
- }
10390
-
10391
10100
  """Avalara support tax exemption."""
10392
10101
  type TaxExemptCode {
10393
10102
  """Tax exempt code."""
@@ -10403,6 +10112,13 @@ type TaxExemptCode {
10403
10112
  validCountries: [String!]
10404
10113
  }
10405
10114
 
10115
+ """
10116
+ The `GenericScalar` scalar type represents a generic
10117
+ GraphQL scalar value that could be:
10118
+ String, Boolean, Int, Float, List or Object.
10119
+ """
10120
+ scalar GenericScalar
10121
+
10406
10122
  input StripeClientPaymentData {
10407
10123
  amount: PositiveDecimal
10408
10124
  currency: String
@@ -10926,6 +10642,11 @@ input OrderQuoteFilterInput {
10926
10642
  source: [OrderSourceFilter!]
10927
10643
  }
10928
10644
 
10645
+ enum ReportingPeriod {
10646
+ TODAY
10647
+ THIS_MONTH
10648
+ }
10649
+
10929
10650
  type FulfillmentCountableConnection {
10930
10651
  """Pagination data for this connection."""
10931
10652
  pageInfo: PageInfo!
@@ -12316,7 +12037,7 @@ enum StaffMemberStatus {
12316
12037
  DEACTIVATED
12317
12038
  }
12318
12039
 
12319
- union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | ProductImage | ProductStatusLog | Group | CatalogImportProcess | CatalogImportProcessLogRecord
12040
+ union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | ProductImage | ProductStatusLog | Group
12320
12041
 
12321
12042
  scalar _Any
12322
12043
 
@@ -12356,7 +12077,7 @@ type Mutation {
12356
12077
  description: String
12357
12078
 
12358
12079
  """
12359
- 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, application/x-tif, text/rtf, image/x-tiff, application/acad, text/csv, text/comma-separated-values, text/plain, application/x-dwg, image/x-bmp, application/vnd.ms-excel, text/svg-xml, application/tif, application/jpg, application/x-tar, application/vnd.oasis.opendocument.text, application/zip, image/x-ms-bmp, application/svg+xml, application/x-autocad, image/x-dxf, application/x-dxf, application/excel, text/x-csv, application/vnd.ms-powerpoint, application/x-rtf, application/x-jpg, image/bmp, image/heif, application/vnd.ms-word, text/x-pdf, image/png, image/eps, image/jpg, drawing/x-dwg, application/vnd.oasis.opendocument.presentation, application/x-eps, application/x-rar-compressed, image/x-eps, application/dwg, pplication/vnd.rar, text/x-comma-separated-values, application/eps, application/pdf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/jpeg, application/acrobat, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-csv, application/tiff, application/x-acad, image/heic-sequence, application/csv, text/pdf, image/x-tif, image/heic, application/x-gzip, application/msword, application/x-pdf, image/dxf, application/x-rar, image/tiff, image/gif, image/svg, drawing/dwg, image/vnd.dwg, image/x-dwg, application/gzip, image/webp, text/svg, image/heif-sequence, drawing/x-dwf, application/x-tiff, application/vnd.oasis.opendocument.spreadsheet, application/gzip-compressed, application/gzipped, application/vnd.pdf, image/svg+xml, image/tif, application/postscript, application/x-zip-compressed, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/rtf, application/dxf.
12080
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/x-autocad, drawing/x-dwg, text/csv, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-pdf, image/png, image/dxf, application/tiff, image/svg, application/x-rar, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/svg, application/x-acad, text/x-comma-separated-values, text/pdf, application/x-tiff, image/x-tiff, image/heic-sequence, application/vnd.ms-excel, drawing/dwg, application/postscript, application/jpg, image/x-bmp, application/vnd.ms-word, text/x-csv, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-tif, drawing/x-dwf, image/bmp, application/acrobat, image/vnd.dwg, application/gzip, image/heif, application/vnd.pdf, application/gzipped, pplication/vnd.rar, application/vnd.oasis.opendocument.spreadsheet, application/dxf, application/x-tar, application/zip, image/x-tif, image/svg+xml, application/msword, text/x-pdf, image/jpeg, application/x-dwg, application/x-rar-compressed, application/tif, image/gif, application/acad, application/eps, application/csv, application/vnd.oasis.opendocument.text, image/tiff, text/rtf, image/eps, application/x-gzip, image/webp, application/dwg, image/x-eps, image/tif, image/jpg, application/vnd.ms-powerpoint, application/x-dxf, text/svg-xml, image/x-ms-bmp, application/rtf, application/vnd.oasis.opendocument.presentation, image/heic, application/pdf, application/x-eps, image/x-dxf, application/x-csv, image/x-dwg, application/x-rtf, application/excel, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/gzip-compressed, text/comma-separated-values, application/x-jpg, application/svg+xml, text/plain, image/heif-sequence, application/x-zip-compressed.
12360
12081
  """
12361
12082
  file: Upload!
12362
12083
 
@@ -14541,15 +14262,6 @@ type Mutation {
14541
14262
  input: PluginUpdateInput!
14542
14263
  ): PluginUpdate
14543
14264
 
14544
- """Import foreign catalog."""
14545
- catalogImport(
14546
- """Plugin ID"""
14547
- id: ID
14548
-
14549
- """Seller ID"""
14550
- sellerId: ID
14551
- ): CatalogImport @deprecated(reason: "This will be removed on April 29, 2025")
14552
-
14553
14265
  """Export catalog."""
14554
14266
  catalogExport(
14555
14267
  """Plugin ID"""
@@ -14559,15 +14271,6 @@ type Mutation {
14559
14271
  sellerId: ID
14560
14272
  ): CatalogExport
14561
14273
 
14562
- """Export customer list."""
14563
- customersExport(
14564
- """Plugin ID"""
14565
- id: ID
14566
-
14567
- """Seller ID"""
14568
- sellerId: ID
14569
- ): CustomersExport @deprecated(reason: "This will be removed on April 29, 2025")
14570
-
14571
14274
  """
14572
14275
  Retrieves an onboarding link for the given vendor from the given gateway if available.
14573
14276
  """
@@ -18896,9 +18599,6 @@ input ProductVariantCreateInput {
18896
18599
  """Name for the variant."""
18897
18600
  name: String
18898
18601
 
18899
- """True if variant requires quote pricing."""
18900
- requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
18901
-
18902
18602
  """
18903
18603
  Informs whether a collection is published. All variants are published by default
18904
18604
  """
@@ -19031,9 +18731,6 @@ input ProductVariantBulkCreateInput {
19031
18731
  """Name for the variant."""
19032
18732
  name: String
19033
18733
 
19034
- """True if variant requires quote pricing."""
19035
- requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
19036
-
19037
18734
  """
19038
18735
  Informs whether a collection is published. All variants are published by default
19039
18736
  """
@@ -19201,9 +18898,6 @@ input ProductVariantInput {
19201
18898
  """Name for the variant."""
19202
18899
  name: String
19203
18900
 
19204
- """True if variant requires quote pricing."""
19205
- requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
19206
-
19207
18901
  """
19208
18902
  Informs whether a collection is published. All variants are published by default
19209
18903
  """
@@ -20932,15 +20626,6 @@ input ConfigurationItemInput {
20932
20626
  value: GenericScalar
20933
20627
  }
20934
20628
 
20935
- """Import foreign catalog."""
20936
- type CatalogImport {
20937
- ok: Boolean
20938
-
20939
- """Plugin ID"""
20940
- plugin: ID
20941
- pluginsErrors: [PluginError!]!
20942
- }
20943
-
20944
20629
  """Export catalog."""
20945
20630
  type CatalogExport {
20946
20631
  ok: Boolean
@@ -20950,15 +20635,6 @@ type CatalogExport {
20950
20635
  pluginsErrors: [PluginError!]!
20951
20636
  }
20952
20637
 
20953
- """Export customer list."""
20954
- type CustomersExport {
20955
- ok: Boolean
20956
-
20957
- """Plugin ID"""
20958
- plugin: ID
20959
- pluginsErrors: [PluginError!]!
20960
- }
20961
-
20962
20638
  """
20963
20639
  Retrieves an onboarding link for the given vendor from the given gateway if available.
20964
20640
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.80.0-26-g2fe2be2d2",
3
+ "version": "v1.80.0-28-g4be9fba36",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {