@nautical-commerce/graphql-schema 1.80.0-25-g2c207674d → 1.80.0-27-g185c1a05e

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.
@@ -960,51 +960,6 @@ type Query {
960
960
  id: ID!
961
961
  ): [TaxCertificate!]
962
962
 
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
963
  """
1009
964
  List of tax exempt code supported by Avalara. Required permission: MANAGE_MARKETPLACE. Note: doesn't support app auth.
1010
965
  """
@@ -1153,43 +1108,6 @@ type Query {
1153
1108
  last: Int
1154
1109
  ): PageCountableConnection
1155
1110
 
1156
- """
1157
- List of activity events to display on homepage (at the moment it only contains order-events).
1158
- """
1159
- homepageEvents(
1160
- """Global ID of a seller to filter to"""
1161
- identifier: ID
1162
-
1163
- """Return the elements in the list that come before the specified cursor."""
1164
- before: String
1165
-
1166
- """Return the elements in the list that come after the specified cursor."""
1167
- after: String
1168
-
1169
- """Return the first n elements from the list."""
1170
- first: Int
1171
-
1172
- """Return the last n elements from the list."""
1173
- last: Int
1174
- ): OrderEventCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
1175
-
1176
- """
1177
- List of activity events to display on homepage (at the moment it only contains nautical-order-events).
1178
- """
1179
- marketplaceHomepageEvents(
1180
- """Return the elements in the list that come before the specified cursor."""
1181
- before: String
1182
-
1183
- """Return the elements in the list that come after the specified cursor."""
1184
- after: String
1185
-
1186
- """Return the first n elements from the list."""
1187
- first: Int
1188
-
1189
- """Return the last n elements from the list."""
1190
- last: Int
1191
- ): NauticalOrderEventCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
1192
-
1193
1111
  """Look up an order by ID."""
1194
1112
  order(
1195
1113
  """ID of an order."""
@@ -10206,225 +10124,6 @@ type TaxCertificate {
10206
10124
  exposureZoneName: String
10207
10125
  }
10208
10126
 
10209
- """
10210
- The `GenericScalar` scalar type represents a generic
10211
- GraphQL scalar value that could be:
10212
- String, Boolean, Int, Float, List or Object.
10213
- """
10214
- scalar GenericScalar
10215
-
10216
- """
10217
- Represents products import process from 3rd party service or integration.
10218
- """
10219
- type CatalogImportProcess implements Node {
10220
- status: CatalogImportProcessStatus!
10221
- message: String
10222
- createdAt: DateTime!
10223
- updatedAt: DateTime!
10224
-
10225
- """
10226
- 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.
10227
- """
10228
- taskId: String
10229
- externalSource: String!
10230
- finishedAt: DateTime
10231
-
10232
- """The user who triggered this import process."""
10233
- createdBy: User
10234
-
10235
- """The seller for whom triggered this import process."""
10236
- seller: Seller
10237
-
10238
- """Error message for failed imports."""
10239
- internalNotes: String
10240
-
10241
- """The ID of the object"""
10242
- id: ID!
10243
-
10244
- """List of products in this collection."""
10245
- records(
10246
- """Filtering options for products."""
10247
- filter: CatalogImportProcessLogRecordFilterInput
10248
-
10249
- """Sort products."""
10250
- sortBy: CatalogImportProcessLogRecordSortInput
10251
-
10252
- """Return the elements in the list that come before the specified cursor."""
10253
- before: String
10254
-
10255
- """Return the elements in the list that come after the specified cursor."""
10256
- after: String
10257
-
10258
- """Return the first n elements from the list."""
10259
- first: Int
10260
-
10261
- """Return the last n elements from the list."""
10262
- last: Int
10263
- ): CatalogImportProcessLogRecordCountableConnection
10264
- }
10265
-
10266
- """An enumeration."""
10267
- enum CatalogImportProcessStatus {
10268
- """Pending"""
10269
- PENDING
10270
-
10271
- """Processing"""
10272
- PROCESSING
10273
-
10274
- """Success"""
10275
- SUCCESS
10276
-
10277
- """Failed"""
10278
- FAILED
10279
-
10280
- """Deleted"""
10281
- DELETED
10282
- }
10283
-
10284
- type CatalogImportProcessLogRecordCountableConnection {
10285
- """Pagination data for this connection."""
10286
- pageInfo: PageInfo!
10287
- edges: [CatalogImportProcessLogRecordCountableEdge!]!
10288
-
10289
- """A total count of items in the collection."""
10290
- totalCount: Int
10291
- }
10292
-
10293
- type CatalogImportProcessLogRecordCountableEdge {
10294
- """The item at the end of the edge."""
10295
- node: CatalogImportProcessLogRecord!
10296
-
10297
- """A cursor for use in pagination."""
10298
- cursor: String!
10299
- }
10300
-
10301
- """History log of each record processed with catalog import process."""
10302
- type CatalogImportProcessLogRecord implements Node {
10303
- """The ID of the object"""
10304
- id: ID!
10305
- createdAt: DateTime!
10306
-
10307
- """Celery task ID, that created this log"""
10308
- taskId: String
10309
- objectId: String
10310
- operation: CatalogImportProcessLogRecordOperation!
10311
-
10312
- """The name of a models which was processed with catalog import process."""
10313
- relatedObjectName: String
10314
- }
10315
-
10316
- """An enumeration."""
10317
- enum CatalogImportProcessLogRecordOperation {
10318
- """Attribute Created"""
10319
- ATTRIBUTE_CREATED
10320
-
10321
- """Attribute Updated"""
10322
- ATTRIBUTE_UPDATED
10323
-
10324
- """Category Created"""
10325
- CATEGORY_CREATED
10326
-
10327
- """Category Updated"""
10328
- CATEGORY_UPDATED
10329
-
10330
- """Product Created"""
10331
- PRODUCT_CREATED
10332
-
10333
- """Product Updated"""
10334
- PRODUCT_UPDATED
10335
-
10336
- """Product Updated or Created"""
10337
- PRODUCT_UPDATED_OR_CREATED
10338
-
10339
- """Product Archived"""
10340
- PRODUCT_ARCHIVED
10341
-
10342
- """Product Type Created"""
10343
- PRODUCT_TYPE_CREATED
10344
-
10345
- """Product Type Updated"""
10346
- PRODUCT_TYPE_UPDATED
10347
-
10348
- """Warehouse Created"""
10349
- WAREHOUSE_CREATED
10350
-
10351
- """Warehouse Updated"""
10352
- WAREHOUSE_UPDATED
10353
- }
10354
-
10355
- input CatalogImportProcessLogRecordFilterInput {
10356
- taskId: String
10357
- objectId: String
10358
- operation: CatalogImportOperation
10359
- }
10360
-
10361
- """An enumeration."""
10362
- enum CatalogImportOperation {
10363
- ATTRIBUTE_CREATED
10364
- ATTRIBUTE_UPDATED
10365
- CATEGORY_CREATED
10366
- CATEGORY_UPDATED
10367
- PRODUCT_CREATED
10368
- PRODUCT_UPDATED
10369
- PRODUCT_UPDATED_OR_CREATED
10370
- PRODUCT_ARCHIVED
10371
- PRODUCT_TYPE_CREATED
10372
- PRODUCT_TYPE_UPDATED
10373
- WAREHOUSE_CREATED
10374
- WAREHOUSE_UPDATED
10375
- }
10376
-
10377
- input CatalogImportProcessLogRecordSortInput {
10378
- """Specifies the direction in which to sort products."""
10379
- direction: OrderDirection!
10380
-
10381
- """Sort catalog_import_processes_log_record by the selected field."""
10382
- field: CatalogImportProcessLogRecordSortField!
10383
- }
10384
-
10385
- enum CatalogImportProcessLogRecordSortField {
10386
- """Sort users by created at."""
10387
- CREATED_AT
10388
- }
10389
-
10390
- type CatalogImportProcessCountableConnection {
10391
- """Pagination data for this connection."""
10392
- pageInfo: PageInfo!
10393
- edges: [CatalogImportProcessCountableEdge!]!
10394
-
10395
- """A total count of items in the collection."""
10396
- totalCount: Int
10397
- }
10398
-
10399
- type CatalogImportProcessCountableEdge {
10400
- """The item at the end of the edge."""
10401
- node: CatalogImportProcess!
10402
-
10403
- """A cursor for use in pagination."""
10404
- cursor: String!
10405
- }
10406
-
10407
- input CatalogImportProcessFilterInput {
10408
- createdBy: String
10409
- seller: String
10410
- }
10411
-
10412
- input CatalogImportProcessSortInput {
10413
- """Specifies the direction in which to sort products."""
10414
- direction: OrderDirection!
10415
-
10416
- """Sort catalog_import_processes by the selected field."""
10417
- field: CatalogImportProcessSortField!
10418
- }
10419
-
10420
- enum CatalogImportProcessSortField {
10421
- """Sort users by created at."""
10422
- CREATED_AT
10423
-
10424
- """Sort users by finished at."""
10425
- FINISHED_AT
10426
- }
10427
-
10428
10127
  """Avalara support tax exemption."""
10429
10128
  type TaxExemptCode {
10430
10129
  """Tax exempt code."""
@@ -10440,6 +10139,13 @@ type TaxExemptCode {
10440
10139
  validCountries: [String!]
10441
10140
  }
10442
10141
 
10142
+ """
10143
+ The `GenericScalar` scalar type represents a generic
10144
+ GraphQL scalar value that could be:
10145
+ String, Boolean, Int, Float, List or Object.
10146
+ """
10147
+ scalar GenericScalar
10148
+
10443
10149
  input StripeClientPaymentData {
10444
10150
  amount: PositiveDecimal
10445
10151
  currency: String
@@ -10880,40 +10586,6 @@ input PageFilterInput {
10880
10586
  search: String
10881
10587
  }
10882
10588
 
10883
- type OrderEventCountableConnection {
10884
- """Pagination data for this connection."""
10885
- pageInfo: PageInfo!
10886
- edges: [OrderEventCountableEdge!]!
10887
-
10888
- """A total count of items in the collection."""
10889
- totalCount: Int
10890
- }
10891
-
10892
- type OrderEventCountableEdge {
10893
- """The item at the end of the edge."""
10894
- node: OrderEvent!
10895
-
10896
- """A cursor for use in pagination."""
10897
- cursor: String!
10898
- }
10899
-
10900
- type NauticalOrderEventCountableConnection {
10901
- """Pagination data for this connection."""
10902
- pageInfo: PageInfo!
10903
- edges: [NauticalOrderEventCountableEdge!]!
10904
-
10905
- """A total count of items in the collection."""
10906
- totalCount: Int
10907
- }
10908
-
10909
- type NauticalOrderEventCountableEdge {
10910
- """The item at the end of the edge."""
10911
- node: NauticalOrderEvent!
10912
-
10913
- """A cursor for use in pagination."""
10914
- cursor: String!
10915
- }
10916
-
10917
10589
  input OrderFilterInput {
10918
10590
  paymentStatus: [PaymentChargeStatusEnum!]
10919
10591
  status: [OrderStatusFilter!]
@@ -12387,7 +12059,7 @@ enum StaffMemberStatus {
12387
12059
  DEACTIVATED
12388
12060
  }
12389
12061
 
12390
- union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | ProductImage | ProductStatusLog | Group | CatalogImportProcess | CatalogImportProcessLogRecord
12062
+ union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | ProductImage | ProductStatusLog | Group
12391
12063
 
12392
12064
  scalar _Any
12393
12065
 
@@ -12427,7 +12099,7 @@ type Mutation {
12427
12099
  description: String
12428
12100
 
12429
12101
  """
12430
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/pdf, image/heic, application/eps, application/x-zip-compressed, drawing/x-dwf, image/dxf, application/x-eps, application/vnd.ms-powerpoint, image/webp, text/comma-separated-values, application/x-csv, application/gzipped, application/vnd.oasis.opendocument.text, image/gif, image/svg+xml, image/png, image/x-ms-bmp, application/dwg, application/vnd.openxmlformats-officedocument.presentationml.presentation, text/pdf, application/gzip, application/vnd.ms-word, application/jpg, image/bmp, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/jpg, application/msword, pplication/vnd.rar, application/x-pdf, image/x-dxf, image/tif, image/vnd.dwg, application/tif, application/acrobat, image/x-bmp, image/heif, application/x-dwg, application/x-acad, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/x-csv, application/x-gzip, application/x-tiff, image/x-eps, image/eps, image/tiff, image/heif-sequence, application/x-tif, image/jpeg, application/acad, text/x-pdf, image/svg, text/svg-xml, drawing/x-dwg, application/svg+xml, application/excel, application/dxf, application/vnd.oasis.opendocument.spreadsheet, image/x-dwg, drawing/dwg, application/x-jpg, application/x-tar, application/x-dxf, image/x-tiff, application/csv, application/vnd.ms-excel, text/csv, application/vnd.pdf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/heic-sequence, application/x-rtf, application/gzip-compressed, application/postscript, application/x-autocad, application/x-rar-compressed, text/svg, application/vnd.oasis.opendocument.presentation, application/zip, application/rtf, text/rtf, text/plain, image/x-tif, text/x-comma-separated-values, application/tiff, application/x-rar.
12102
+ 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-csv, application/zip, application/pdf, image/png, image/x-eps, image/svg, image/heif, text/svg-xml, application/x-rtf, image/bmp, image/x-dwg, application/x-acad, application/x-rar-compressed, application/eps, application/x-tif, application/acrobat, application/x-tiff, application/x-dxf, image/heic, application/msword, application/vnd.ms-excel, image/vnd.dwg, image/svg+xml, application/gzip-compressed, drawing/dwg, application/excel, drawing/x-dwf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/svg, image/heic-sequence, application/x-rar, application/rtf, image/tif, application/vnd.ms-powerpoint, application/x-gzip, text/rtf, image/x-ms-bmp, text/comma-separated-values, image/x-bmp, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/svg+xml, image/x-tiff, image/dxf, application/dxf, application/x-dwg, text/plain, application/x-pdf, image/gif, application/jpg, text/x-pdf, application/x-jpg, image/tiff, application/x-tar, application/acad, image/jpeg, application/tiff, pplication/vnd.rar, application/vnd.oasis.opendocument.text, application/postscript, application/dwg, text/csv, image/heif-sequence, application/gzip, text/x-csv, application/vnd.pdf, application/x-autocad, drawing/x-dwg, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.oasis.opendocument.presentation, application/x-zip-compressed, image/x-tif, image/eps, image/webp, text/x-comma-separated-values, application/vnd.oasis.opendocument.spreadsheet, application/csv, application/vnd.ms-word, text/pdf, application/x-eps, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/tif, application/gzipped, image/x-dxf, image/jpg.
12431
12103
  """
12432
12104
  file: Upload!
12433
12105
 
@@ -14138,15 +13810,6 @@ type Mutation {
14138
13810
  input: NoteInput!
14139
13811
  ): NauticalOrderLineAddNote
14140
13812
 
14141
- """Adds return notification note to the order."""
14142
- orderReturnNotification(
14143
- """ID of the order to add a note for."""
14144
- order: ID!
14145
-
14146
- """Fields required to create a return notification for the order."""
14147
- input: OrderReturnNotificationInput!
14148
- ): OrderReturnNotification @deprecated(reason: "This will be removed on April 29, 2025.")
14149
-
14150
13813
  """
14151
13814
  Attempts to force a refresh of the existing taxes on a non-placed nautical order.
14152
13815
  """
@@ -14170,24 +13833,6 @@ type Mutation {
14170
13833
  id: ID
14171
13834
  ): NauticalOrderUpdateDeleteDiscount
14172
13835
 
14173
- """Adds return notification note to the order."""
14174
- nauticalOrderReturnNotification(
14175
- """ID of the order to add a note for."""
14176
- order: ID!
14177
-
14178
- """Fields required to create a return notification for the order."""
14179
- input: OrderReturnNotificationInput!
14180
- ): NauticalOrderReturnNotification @deprecated(reason: "This will be removed on April 29, 2025.")
14181
-
14182
- """Adds return notification note to the order."""
14183
- nauticalOrderReturnFromStorefrontNotification(
14184
- """ID of the order to add a note for."""
14185
- order: ID!
14186
-
14187
- """Fields required to create a return notification for the order."""
14188
- input: OrderReturnNotificationInput!
14189
- ): NauticalOrderReturnFromStorefrontNotification @deprecated(reason: "This will be removed on April 29, 2025.")
14190
-
14191
13836
  """Cancel an order."""
14192
13837
  orderCancel(
14193
13838
  """ID of the order to cancel."""
@@ -14639,15 +14284,6 @@ type Mutation {
14639
14284
  input: PluginUpdateInput!
14640
14285
  ): PluginUpdate
14641
14286
 
14642
- """Import foreign catalog."""
14643
- catalogImport(
14644
- """Plugin ID"""
14645
- id: ID
14646
-
14647
- """Seller ID"""
14648
- sellerId: ID
14649
- ): CatalogImport @deprecated(reason: "This will be removed on April 29, 2025")
14650
-
14651
14287
  """Export catalog."""
14652
14288
  catalogExport(
14653
14289
  """Plugin ID"""
@@ -14657,15 +14293,6 @@ type Mutation {
14657
14293
  sellerId: ID
14658
14294
  ): CatalogExport
14659
14295
 
14660
- """Export customer list."""
14661
- customersExport(
14662
- """Plugin ID"""
14663
- id: ID
14664
-
14665
- """Seller ID"""
14666
- sellerId: ID
14667
- ): CustomersExport @deprecated(reason: "This will be removed on April 29, 2025")
14668
-
14669
14296
  """
14670
14297
  Retrieves an onboarding link for the given vendor from the given gateway if available.
14671
14298
  """
@@ -20055,24 +19682,6 @@ type NauticalOrderLineAddNote {
20055
19682
  nauticalOrderLine: NauticalOrderLine
20056
19683
  }
20057
19684
 
20058
- """Adds return notification note to the order."""
20059
- type OrderReturnNotification {
20060
- """Order with return notification note added."""
20061
- order: Order
20062
-
20063
- """Order return notification created."""
20064
- event: OrderEvent
20065
- orderErrors: [OrderError!]!
20066
- }
20067
-
20068
- input OrderReturnNotificationInput {
20069
- """Status of the return."""
20070
- returnStatus: String!
20071
-
20072
- """Status of the return."""
20073
- productNames: String
20074
- }
20075
-
20076
19685
  """
20077
19686
  Attempts to force a refresh of the existing taxes on a non-placed nautical order.
20078
19687
  """
@@ -20096,26 +19705,6 @@ type NauticalOrderUpdateDeleteDiscount {
20096
19705
  orderErrors: [OrderError!]!
20097
19706
  }
20098
19707
 
20099
- """Adds return notification note to the order."""
20100
- type NauticalOrderReturnNotification {
20101
- """Order with return notification note added."""
20102
- order: NauticalOrder
20103
-
20104
- """Order return notification created."""
20105
- event: NauticalOrderEvent
20106
- orderErrors: [OrderError!]!
20107
- }
20108
-
20109
- """Adds return notification note to the order."""
20110
- type NauticalOrderReturnFromStorefrontNotification {
20111
- """Order with return notification note added."""
20112
- order: NauticalOrder
20113
-
20114
- """Order return notification created."""
20115
- event: NauticalOrderEvent
20116
- orderErrors: [OrderError!]!
20117
- }
20118
-
20119
19708
  """Cancel an order."""
20120
19709
  type OrderCancel {
20121
19710
  """Canceled order."""
@@ -21068,15 +20657,6 @@ input ConfigurationItemInput {
21068
20657
  value: GenericScalar
21069
20658
  }
21070
20659
 
21071
- """Import foreign catalog."""
21072
- type CatalogImport {
21073
- ok: Boolean
21074
-
21075
- """Plugin ID"""
21076
- plugin: ID
21077
- pluginsErrors: [PluginError!]!
21078
- }
21079
-
21080
20660
  """Export catalog."""
21081
20661
  type CatalogExport {
21082
20662
  ok: Boolean
@@ -21086,15 +20666,6 @@ type CatalogExport {
21086
20666
  pluginsErrors: [PluginError!]!
21087
20667
  }
21088
20668
 
21089
- """Export customer list."""
21090
- type CustomersExport {
21091
- ok: Boolean
21092
-
21093
- """Plugin ID"""
21094
- plugin: ID
21095
- pluginsErrors: [PluginError!]!
21096
- }
21097
-
21098
20669
  """
21099
20670
  Retrieves an onboarding link for the given vendor from the given gateway if available.
21100
20671
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.80.0-25-g2c207674d",
3
+ "version": "v1.80.0-27-g185c1a05e",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {