@nautical-commerce/graphql-schema 1.80.0-4-g4cf8f12ff → 1.80.0-41-g8d95faea2

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.
@@ -450,36 +450,6 @@ type Query {
450
450
  """Return the last n elements from the list."""
451
451
  last: Int
452
452
  ): SellerEventTypeCountableConnection
453
- allowedOwners(
454
- query: String
455
-
456
- """Return the elements in the list that come before the specified cursor."""
457
- before: String
458
-
459
- """Return the elements in the list that come after the specified cursor."""
460
- after: String
461
-
462
- """Return the first n elements from the list."""
463
- first: Int
464
-
465
- """Return the last n elements from the list."""
466
- last: Int
467
- ): UserCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
468
- availablePlans(
469
- query: String
470
-
471
- """Return the elements in the list that come before the specified cursor."""
472
- before: String
473
-
474
- """Return the elements in the list that come after the specified cursor."""
475
- after: String
476
-
477
- """Return the first n elements from the list."""
478
- first: Int
479
-
480
- """Return the last n elements from the list."""
481
- last: Int
482
- ): AgreementCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
483
453
 
484
454
  """Look up an refund by ID."""
485
455
  refund(
@@ -723,27 +693,6 @@ type Query {
723
693
  last: Int
724
694
  ): ProductVariantCountableConnection
725
695
 
726
- """List of top selling products."""
727
- reportProductSales(
728
- """Span of time."""
729
- period: ReportingPeriod!
730
-
731
- """Seller global id to filter by."""
732
- identifier: ID
733
-
734
- """Return the elements in the list that come before the specified cursor."""
735
- before: String
736
-
737
- """Return the elements in the list that come after the specified cursor."""
738
- after: String
739
-
740
- """Return the first n elements from the list."""
741
- first: Int
742
-
743
- """Return the last n elements from the list."""
744
- last: Int
745
- ): ProductVariantCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
746
-
747
696
  """Look up a price book by ID."""
748
697
  priceBook(
749
698
  """ID of a price book."""
@@ -990,51 +939,6 @@ type Query {
990
939
  id: ID!
991
940
  ): [TaxCertificate!]
992
941
 
993
- """List of third party products"""
994
- thirdPartyProducts(
995
- """Third-party source name"""
996
- source: String!
997
- ): GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
998
-
999
- """Get third party product in form we can use for import"""
1000
- importThirdPartyProduct(
1001
- """Third-party source name"""
1002
- source: String!
1003
-
1004
- """ID of the third party product to import"""
1005
- id: ID!
1006
- ): GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
1007
-
1008
- """List of plugins that are available as product import sources"""
1009
- availableImportSources: [Plugin!] @deprecated(reason: "This will be removed on April 29, 2025")
1010
-
1011
- """Look up a catalog import process by ID."""
1012
- catalogImportProcess(
1013
- """ID of the catalog import process."""
1014
- id: ID!
1015
- ): CatalogImportProcess @deprecated(reason: "This will be removed on April 29, 2025")
1016
-
1017
- """List of catalog import processes."""
1018
- catalogImportProcesses(
1019
- """Filtering options for catalog import processes."""
1020
- filter: CatalogImportProcessFilterInput
1021
-
1022
- """Sort catalog import processes."""
1023
- sortBy: CatalogImportProcessSortInput
1024
-
1025
- """Return the elements in the list that come before the specified cursor."""
1026
- before: String
1027
-
1028
- """Return the elements in the list that come after the specified cursor."""
1029
- after: String
1030
-
1031
- """Return the first n elements from the list."""
1032
- first: Int
1033
-
1034
- """Return the last n elements from the list."""
1035
- last: Int
1036
- ): CatalogImportProcessCountableConnection @deprecated(reason: "This will be removed on April 29, 2025")
1037
-
1038
942
  """
1039
943
  List of tax exempt code supported by Avalara. Required permission: MANAGE_MARKETPLACE. Note: doesn't support app auth.
1040
944
  """
@@ -1183,43 +1087,6 @@ type Query {
1183
1087
  last: Int
1184
1088
  ): PageCountableConnection
1185
1089
 
1186
- """
1187
- List of activity events to display on homepage (at the moment it only contains order-events).
1188
- """
1189
- homepageEvents(
1190
- """Global ID of a seller to filter to"""
1191
- identifier: ID
1192
-
1193
- """Return the elements in the list that come before the specified cursor."""
1194
- before: String
1195
-
1196
- """Return the elements in the list that come after the specified cursor."""
1197
- after: String
1198
-
1199
- """Return the first n elements from the list."""
1200
- first: Int
1201
-
1202
- """Return the last n elements from the list."""
1203
- last: Int
1204
- ): OrderEventCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
1205
-
1206
- """
1207
- List of activity events to display on homepage (at the moment it only contains nautical-order-events).
1208
- """
1209
- marketplaceHomepageEvents(
1210
- """Return the elements in the list that come before the specified cursor."""
1211
- before: String
1212
-
1213
- """Return the elements in the list that come after the specified cursor."""
1214
- after: String
1215
-
1216
- """Return the first n elements from the list."""
1217
- first: Int
1218
-
1219
- """Return the last n elements from the list."""
1220
- last: Int
1221
- ): NauticalOrderEventCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
1222
-
1223
1090
  """Look up an order by ID."""
1224
1091
  order(
1225
1092
  """ID of an order."""
@@ -1427,19 +1294,6 @@ type Query {
1427
1294
  """Return the last n elements from the list."""
1428
1295
  last: Int
1429
1296
  ): FulfillmentCountableConnection
1430
- optimizedHome(
1431
- """True if getting marketplace view"""
1432
- isMarketplace: Boolean!
1433
-
1434
- """Vendor identifier to scope data to"""
1435
- identifier: ID
1436
-
1437
- """Start date to filter cards and order data"""
1438
- startDate: Date!
1439
-
1440
- """End date to filter cards and order data"""
1441
- endDate: Date!
1442
- ): OptimizedHome @deprecated(reason: "This will be removed on April 29, 2025.")
1443
1297
 
1444
1298
  """Return requested nautical configuration item"""
1445
1299
  nauticalConfiguration(
@@ -1793,12 +1647,6 @@ type Query {
1793
1647
  last: Int
1794
1648
  ): CheckoutCountableConnection
1795
1649
 
1796
- """Look up a checkout line by ID."""
1797
- checkoutLine(
1798
- """ID of the checkout line."""
1799
- id: ID
1800
- ): CheckoutLine @deprecated(reason: "This will be removed on April 30, 2025.")
1801
-
1802
1650
  """List of checkout lines."""
1803
1651
  checkoutLines(
1804
1652
  """Return the elements in the list that come before the specified cursor."""
@@ -1930,21 +1778,6 @@ type Query {
1930
1778
  id: ID!
1931
1779
  ): [AgreementSellers!]!
1932
1780
 
1933
- """Returns address validation rules."""
1934
- addressValidationRules(
1935
- """Two-letter ISO 3166-1 country code."""
1936
- countryCode: CountryCode!
1937
-
1938
- """Designation of a region, province or state."""
1939
- countryArea: String
1940
-
1941
- """City or a town name."""
1942
- city: String
1943
-
1944
- """Sublocality like a district."""
1945
- cityArea: String
1946
- ): AddressValidationData! @deprecated(reason: "This will be removed on April 29, 2025.")
1947
-
1948
1781
  """Look up an address by ID."""
1949
1782
  address(
1950
1783
  """ID of an address."""
@@ -2047,6 +1880,7 @@ type MarketplaceSubscription implements Node {
2047
1880
  id: ID!
2048
1881
  providerCustomerId: String!
2049
1882
  isActive: Boolean!
1883
+ plan: String
2050
1884
 
2051
1885
  """The provider of the marketplace subscription"""
2052
1886
  provider: MarketplaceSubscriptionProviderTypeEnum
@@ -2327,7 +2161,6 @@ type User implements Node & ObjectWithMetadata {
2327
2161
  email: String!
2328
2162
  firstName: String!
2329
2163
  lastName: String!
2330
- isStaff: Boolean!
2331
2164
  isActive: Boolean!
2332
2165
 
2333
2166
  """A note about the customer."""
@@ -2480,7 +2313,12 @@ type User implements Node & ObjectWithMetadata {
2480
2313
  last: Int
2481
2314
  ): WishlistCountableConnection
2482
2315
  seller: Seller
2483
- isAssignable: Boolean
2316
+
2317
+ """If true, the user can be assigned as the owner of a seller"""
2318
+ isAssignable: Boolean!
2319
+
2320
+ """If true, the user is an MPO or a seller staff member"""
2321
+ isStaff: Boolean!
2484
2322
 
2485
2323
  """List of documents associated with the user."""
2486
2324
  documents: [Document!]!
@@ -2927,7 +2765,6 @@ type ProductVariant implements Node & ObjectWithMetadata {
2927
2765
 
2928
2766
  """List of vouchers associated with the product."""
2929
2767
  vouchers: [Voucher!]!
2930
- requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
2931
2768
 
2932
2769
  """
2933
2770
  The sub status of the product variant. This will be the same as product's sub status.
@@ -5382,9 +5219,6 @@ type App implements Node & ObjectWithMetadata {
5382
5219
  """List of public metadata items. Can be accessed without permissions."""
5383
5220
  metadata: [MetadataItem!]!
5384
5221
 
5385
- """Type of the app."""
5386
- type: AppTypeEnum @deprecated(reason: "This will be removed on April 30, 2025.")
5387
-
5388
5222
  """List of dashboard integrations for this app"""
5389
5223
  dashboardIntegrations: [AppDashboardIntegration!]
5390
5224
 
@@ -5394,27 +5228,6 @@ type App implements Node & ObjectWithMetadata {
5394
5228
  """List of webhooks assigned to this app."""
5395
5229
  webhooks: [Webhook!]
5396
5230
 
5397
- """Description of this app."""
5398
- aboutApp: String @deprecated(reason: "This will be removed on April 30, 2025.")
5399
-
5400
- """Description of the data privacy defined for this app."""
5401
- dataPrivacy: String @deprecated(reason: "This will be removed on April 30, 2025.")
5402
-
5403
- """Url to details about the privacy policy on the app owner page."""
5404
- dataPrivacyUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
5405
-
5406
- """Homepage of the app."""
5407
- homepageUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
5408
-
5409
- """Support page for the app."""
5410
- supportUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
5411
-
5412
- """Url to iframe with the configuration for the app."""
5413
- configurationUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
5414
-
5415
- """Url to iframe with the app."""
5416
- appUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
5417
-
5418
5231
  """Version number of the app."""
5419
5232
  version: String
5420
5233
 
@@ -5434,7 +5247,6 @@ type Permission {
5434
5247
  enum PermissionEnum {
5435
5248
  MANAGE_USERS
5436
5249
  MANAGE_STAFF
5437
- MANAGE_PERMISSIONS @deprecated(reason: "This will be removed on April 23, 2025.")
5438
5250
  MANAGE_APPS
5439
5251
  MANAGE_DISCOUNTS
5440
5252
  MANAGE_DOCUMENTS
@@ -5451,12 +5263,10 @@ enum PermissionEnum {
5451
5263
  MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES
5452
5264
  MANAGE_SHIPPING
5453
5265
  MANAGE_SETTINGS
5454
- MANAGE_TRANSLATIONS
5455
5266
  MANAGE_CHECKOUTS
5456
5267
  MANAGE_AGREEMENTS
5457
5268
  MANAGE_MARKETPLACE
5458
5269
  MANAGE_MARKETPLACE_CONFIGURATION
5459
- MANAGE_MICROSITES
5460
5270
  MANAGE_PAYOUTS
5461
5271
  MANAGE_PAYMENTS
5462
5272
  MANAGE_REFUNDS
@@ -5475,14 +5285,6 @@ type AppToken implements Node {
5475
5285
  id: ID!
5476
5286
  }
5477
5287
 
5478
- enum AppTypeEnum {
5479
- """local"""
5480
- LOCAL
5481
-
5482
- """thirdparty"""
5483
- THIRDPARTY
5484
- }
5485
-
5486
5288
  """Represents a dashboard integration for an App."""
5487
5289
  type AppDashboardIntegration implements Node {
5488
5290
  """The ID of the object"""
@@ -9477,40 +9279,6 @@ enum SellerSortField {
9477
9279
  CREATED
9478
9280
  }
9479
9281
 
9480
- type UserCountableConnection {
9481
- """Pagination data for this connection."""
9482
- pageInfo: PageInfo!
9483
- edges: [UserCountableEdge!]!
9484
-
9485
- """A total count of items in the collection."""
9486
- totalCount: Int
9487
- }
9488
-
9489
- type UserCountableEdge {
9490
- """The item at the end of the edge."""
9491
- node: User!
9492
-
9493
- """A cursor for use in pagination."""
9494
- cursor: String!
9495
- }
9496
-
9497
- type AgreementCountableConnection {
9498
- """Pagination data for this connection."""
9499
- pageInfo: PageInfo!
9500
- edges: [AgreementCountableEdge!]!
9501
-
9502
- """A total count of items in the collection."""
9503
- totalCount: Int
9504
- }
9505
-
9506
- type AgreementCountableEdge {
9507
- """The item at the end of the edge."""
9508
- node: Agreement!
9509
-
9510
- """A cursor for use in pagination."""
9511
- cursor: String!
9512
- }
9513
-
9514
9282
  type RefundCountableConnection {
9515
9283
  """Pagination data for this connection."""
9516
9284
  pageInfo: PageInfo!
@@ -9800,11 +9568,6 @@ enum ProductTypeSortField {
9800
9568
  EXTERNAL_SOURCE
9801
9569
  }
9802
9570
 
9803
- enum ReportingPeriod {
9804
- TODAY
9805
- THIS_MONTH
9806
- }
9807
-
9808
9571
  type PriceBookCountableConnection {
9809
9572
  """Pagination data for this connection."""
9810
9573
  pageInfo: PageInfo!
@@ -10217,6 +9980,23 @@ enum PriceBookProductTypeHistorySortField {
10217
9980
  CREATION_DATE
10218
9981
  }
10219
9982
 
9983
+ type UserCountableConnection {
9984
+ """Pagination data for this connection."""
9985
+ pageInfo: PageInfo!
9986
+ edges: [UserCountableEdge!]!
9987
+
9988
+ """A total count of items in the collection."""
9989
+ totalCount: Int
9990
+ }
9991
+
9992
+ type UserCountableEdge {
9993
+ """The item at the end of the edge."""
9994
+ node: User!
9995
+
9996
+ """A cursor for use in pagination."""
9997
+ cursor: String!
9998
+ }
9999
+
10220
10000
  input UserSortingInput {
10221
10001
  """Specifies the direction in which to sort products."""
10222
10002
  direction: OrderDirection!
@@ -10315,225 +10095,6 @@ type TaxCertificate {
10315
10095
  exposureZoneName: String
10316
10096
  }
10317
10097
 
10318
- """
10319
- The `GenericScalar` scalar type represents a generic
10320
- GraphQL scalar value that could be:
10321
- String, Boolean, Int, Float, List or Object.
10322
- """
10323
- scalar GenericScalar
10324
-
10325
- """
10326
- Represents products import process from 3rd party service or integration.
10327
- """
10328
- type CatalogImportProcess implements Node {
10329
- status: CatalogImportProcessStatus!
10330
- message: String
10331
- createdAt: DateTime!
10332
- updatedAt: DateTime!
10333
-
10334
- """
10335
- 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.
10336
- """
10337
- taskId: String
10338
- externalSource: String!
10339
- finishedAt: DateTime
10340
-
10341
- """The user who triggered this import process."""
10342
- createdBy: User
10343
-
10344
- """The seller for whom triggered this import process."""
10345
- seller: Seller
10346
-
10347
- """Error message for failed imports."""
10348
- internalNotes: String
10349
-
10350
- """The ID of the object"""
10351
- id: ID!
10352
-
10353
- """List of products in this collection."""
10354
- records(
10355
- """Filtering options for products."""
10356
- filter: CatalogImportProcessLogRecordFilterInput
10357
-
10358
- """Sort products."""
10359
- sortBy: CatalogImportProcessLogRecordSortInput
10360
-
10361
- """Return the elements in the list that come before the specified cursor."""
10362
- before: String
10363
-
10364
- """Return the elements in the list that come after the specified cursor."""
10365
- after: String
10366
-
10367
- """Return the first n elements from the list."""
10368
- first: Int
10369
-
10370
- """Return the last n elements from the list."""
10371
- last: Int
10372
- ): CatalogImportProcessLogRecordCountableConnection
10373
- }
10374
-
10375
- """An enumeration."""
10376
- enum CatalogImportProcessStatus {
10377
- """Pending"""
10378
- PENDING
10379
-
10380
- """Processing"""
10381
- PROCESSING
10382
-
10383
- """Success"""
10384
- SUCCESS
10385
-
10386
- """Failed"""
10387
- FAILED
10388
-
10389
- """Deleted"""
10390
- DELETED
10391
- }
10392
-
10393
- type CatalogImportProcessLogRecordCountableConnection {
10394
- """Pagination data for this connection."""
10395
- pageInfo: PageInfo!
10396
- edges: [CatalogImportProcessLogRecordCountableEdge!]!
10397
-
10398
- """A total count of items in the collection."""
10399
- totalCount: Int
10400
- }
10401
-
10402
- type CatalogImportProcessLogRecordCountableEdge {
10403
- """The item at the end of the edge."""
10404
- node: CatalogImportProcessLogRecord!
10405
-
10406
- """A cursor for use in pagination."""
10407
- cursor: String!
10408
- }
10409
-
10410
- """History log of each record processed with catalog import process."""
10411
- type CatalogImportProcessLogRecord implements Node {
10412
- """The ID of the object"""
10413
- id: ID!
10414
- createdAt: DateTime!
10415
-
10416
- """Celery task ID, that created this log"""
10417
- taskId: String
10418
- objectId: String
10419
- operation: CatalogImportProcessLogRecordOperation!
10420
-
10421
- """The name of a models which was processed with catalog import process."""
10422
- relatedObjectName: String
10423
- }
10424
-
10425
- """An enumeration."""
10426
- enum CatalogImportProcessLogRecordOperation {
10427
- """Attribute Created"""
10428
- ATTRIBUTE_CREATED
10429
-
10430
- """Attribute Updated"""
10431
- ATTRIBUTE_UPDATED
10432
-
10433
- """Category Created"""
10434
- CATEGORY_CREATED
10435
-
10436
- """Category Updated"""
10437
- CATEGORY_UPDATED
10438
-
10439
- """Product Created"""
10440
- PRODUCT_CREATED
10441
-
10442
- """Product Updated"""
10443
- PRODUCT_UPDATED
10444
-
10445
- """Product Updated or Created"""
10446
- PRODUCT_UPDATED_OR_CREATED
10447
-
10448
- """Product Archived"""
10449
- PRODUCT_ARCHIVED
10450
-
10451
- """Product Type Created"""
10452
- PRODUCT_TYPE_CREATED
10453
-
10454
- """Product Type Updated"""
10455
- PRODUCT_TYPE_UPDATED
10456
-
10457
- """Warehouse Created"""
10458
- WAREHOUSE_CREATED
10459
-
10460
- """Warehouse Updated"""
10461
- WAREHOUSE_UPDATED
10462
- }
10463
-
10464
- input CatalogImportProcessLogRecordFilterInput {
10465
- taskId: String
10466
- objectId: String
10467
- operation: CatalogImportOperation
10468
- }
10469
-
10470
- """An enumeration."""
10471
- enum CatalogImportOperation {
10472
- ATTRIBUTE_CREATED
10473
- ATTRIBUTE_UPDATED
10474
- CATEGORY_CREATED
10475
- CATEGORY_UPDATED
10476
- PRODUCT_CREATED
10477
- PRODUCT_UPDATED
10478
- PRODUCT_UPDATED_OR_CREATED
10479
- PRODUCT_ARCHIVED
10480
- PRODUCT_TYPE_CREATED
10481
- PRODUCT_TYPE_UPDATED
10482
- WAREHOUSE_CREATED
10483
- WAREHOUSE_UPDATED
10484
- }
10485
-
10486
- input CatalogImportProcessLogRecordSortInput {
10487
- """Specifies the direction in which to sort products."""
10488
- direction: OrderDirection!
10489
-
10490
- """Sort catalog_import_processes_log_record by the selected field."""
10491
- field: CatalogImportProcessLogRecordSortField!
10492
- }
10493
-
10494
- enum CatalogImportProcessLogRecordSortField {
10495
- """Sort users by created at."""
10496
- CREATED_AT
10497
- }
10498
-
10499
- type CatalogImportProcessCountableConnection {
10500
- """Pagination data for this connection."""
10501
- pageInfo: PageInfo!
10502
- edges: [CatalogImportProcessCountableEdge!]!
10503
-
10504
- """A total count of items in the collection."""
10505
- totalCount: Int
10506
- }
10507
-
10508
- type CatalogImportProcessCountableEdge {
10509
- """The item at the end of the edge."""
10510
- node: CatalogImportProcess!
10511
-
10512
- """A cursor for use in pagination."""
10513
- cursor: String!
10514
- }
10515
-
10516
- input CatalogImportProcessFilterInput {
10517
- createdBy: String
10518
- seller: String
10519
- }
10520
-
10521
- input CatalogImportProcessSortInput {
10522
- """Specifies the direction in which to sort products."""
10523
- direction: OrderDirection!
10524
-
10525
- """Sort catalog_import_processes by the selected field."""
10526
- field: CatalogImportProcessSortField!
10527
- }
10528
-
10529
- enum CatalogImportProcessSortField {
10530
- """Sort users by created at."""
10531
- CREATED_AT
10532
-
10533
- """Sort users by finished at."""
10534
- FINISHED_AT
10535
- }
10536
-
10537
10098
  """Avalara support tax exemption."""
10538
10099
  type TaxExemptCode {
10539
10100
  """Tax exempt code."""
@@ -10549,6 +10110,13 @@ type TaxExemptCode {
10549
10110
  validCountries: [String!]
10550
10111
  }
10551
10112
 
10113
+ """
10114
+ The `GenericScalar` scalar type represents a generic
10115
+ GraphQL scalar value that could be:
10116
+ String, Boolean, Int, Float, List or Object.
10117
+ """
10118
+ scalar GenericScalar
10119
+
10552
10120
  input StripeClientPaymentData {
10553
10121
  amount: PositiveDecimal
10554
10122
  currency: String
@@ -10989,40 +10557,6 @@ input PageFilterInput {
10989
10557
  search: String
10990
10558
  }
10991
10559
 
10992
- type OrderEventCountableConnection {
10993
- """Pagination data for this connection."""
10994
- pageInfo: PageInfo!
10995
- edges: [OrderEventCountableEdge!]!
10996
-
10997
- """A total count of items in the collection."""
10998
- totalCount: Int
10999
- }
11000
-
11001
- type OrderEventCountableEdge {
11002
- """The item at the end of the edge."""
11003
- node: OrderEvent!
11004
-
11005
- """A cursor for use in pagination."""
11006
- cursor: String!
11007
- }
11008
-
11009
- type NauticalOrderEventCountableConnection {
11010
- """Pagination data for this connection."""
11011
- pageInfo: PageInfo!
11012
- edges: [NauticalOrderEventCountableEdge!]!
11013
-
11014
- """A total count of items in the collection."""
11015
- totalCount: Int
11016
- }
11017
-
11018
- type NauticalOrderEventCountableEdge {
11019
- """The item at the end of the edge."""
11020
- node: NauticalOrderEvent!
11021
-
11022
- """A cursor for use in pagination."""
11023
- cursor: String!
11024
- }
11025
-
11026
10560
  input OrderFilterInput {
11027
10561
  paymentStatus: [PaymentChargeStatusEnum!]
11028
10562
  status: [OrderStatusFilter!]
@@ -11106,6 +10640,11 @@ input OrderQuoteFilterInput {
11106
10640
  source: [OrderSourceFilter!]
11107
10641
  }
11108
10642
 
10643
+ enum ReportingPeriod {
10644
+ TODAY
10645
+ THIS_MONTH
10646
+ }
10647
+
11109
10648
  type FulfillmentCountableConnection {
11110
10649
  """Pagination data for this connection."""
11111
10650
  pageInfo: PageInfo!
@@ -11174,17 +10713,6 @@ enum ReturnFulfillmentSortField {
11174
10713
  RETURN_STATUS
11175
10714
  }
11176
10715
 
11177
- type OptimizedHome {
11178
- sales: TaxedMoney
11179
- orders: Int
11180
- toFulfill: Int
11181
- toCapture: Int
11182
- outOfStock: Int
11183
- topProducts: [ProductVariant!]!
11184
- sellerActivities: [OrderEvent!]!
11185
- marketplaceActivities: [NauticalOrderEvent!]!
11186
- }
11187
-
11188
10716
  """Represents a nautical configuration resource."""
11189
10717
  type NauticalConfiguration {
11190
10718
  """Primary key name of the configuration item"""
@@ -12387,7 +11915,6 @@ type AppCountableEdge {
12387
11915
  input AppFilterInput {
12388
11916
  search: String
12389
11917
  isActive: Boolean
12390
- type: AppTypeEnum
12391
11918
  }
12392
11919
 
12393
11920
  input AppSortingInput {
@@ -12406,6 +11933,23 @@ enum AppSortField {
12406
11933
  CREATION_DATE
12407
11934
  }
12408
11935
 
11936
+ type AgreementCountableConnection {
11937
+ """Pagination data for this connection."""
11938
+ pageInfo: PageInfo!
11939
+ edges: [AgreementCountableEdge!]!
11940
+
11941
+ """A total count of items in the collection."""
11942
+ totalCount: Int
11943
+ }
11944
+
11945
+ type AgreementCountableEdge {
11946
+ """The item at the end of the edge."""
11947
+ node: Agreement!
11948
+
11949
+ """A cursor for use in pagination."""
11950
+ cursor: String!
11951
+ }
11952
+
12409
11953
  input AgreementOrder {
12410
11954
  """Specifies the direction in which to sort products."""
12411
11955
  direction: OrderDirection!
@@ -12435,31 +11979,6 @@ input AgreementFilterInput {
12435
11979
  search: String
12436
11980
  }
12437
11981
 
12438
- type AddressValidationData {
12439
- countryCode: String
12440
- countryName: String
12441
- addressFormat: String
12442
- addressLatinFormat: String
12443
- allowedFields: [String!]
12444
- requiredFields: [String!]
12445
- upperFields: [String!]
12446
- countryAreaType: String
12447
- countryAreaChoices: [ChoiceValue!]
12448
- cityType: String
12449
- cityChoices: [ChoiceValue!]
12450
- cityAreaType: String
12451
- cityAreaChoices: [ChoiceValue!]
12452
- postalCodeType: String
12453
- postalCodeMatchers: [String!]
12454
- postalCodeExamples: [String!]
12455
- postalCodePrefix: String
12456
- }
12457
-
12458
- type ChoiceValue {
12459
- raw: String
12460
- verbose: String
12461
- }
12462
-
12463
11982
  input CustomerFilterInput {
12464
11983
  dateJoined: DateRangeInput
12465
11984
  isActive: Boolean
@@ -12516,7 +12035,7 @@ enum StaffMemberStatus {
12516
12035
  DEACTIVATED
12517
12036
  }
12518
12037
 
12519
- union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | ProductImage | ProductStatusLog | Group | CatalogImportProcess | CatalogImportProcessLogRecord
12038
+ union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | ProductImage | ProductStatusLog | Group
12520
12039
 
12521
12040
  scalar _Any
12522
12041
 
@@ -12556,7 +12075,7 @@ type Mutation {
12556
12075
  description: String
12557
12076
 
12558
12077
  """
12559
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/webp, application/jpg, image/x-tiff, text/comma-separated-values, application/tiff, image/x-eps, text/x-csv, image/x-tif, application/x-tif, application/x-pdf, text/rtf, image/dxf, image/bmp, application/vnd.oasis.opendocument.presentation, application/acad, application/x-acad, application/vnd.ms-powerpoint, image/x-dxf, application/x-dwg, image/svg+xml, application/x-jpg, drawing/dwg, text/x-comma-separated-values, application/x-csv, image/x-bmp, image/gif, application/acrobat, application/dwg, application/x-tiff, application/x-rar, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-dxf, application/x-gzip, text/pdf, application/gzipped, image/x-dwg, application/dxf, application/vnd.ms-word, application/gzip-compressed, application/rtf, text/svg, image/tiff, application/x-autocad, application/pdf, text/svg-xml, application/eps, image/eps, application/x-zip-compressed, drawing/x-dwg, image/tif, application/x-tar, application/tif, drawing/x-dwf, image/heif-sequence, image/heif, image/heic-sequence, text/csv, text/plain, application/x-rar-compressed, application/msword, application/vnd.oasis.opendocument.text, application/vnd.oasis.opendocument.spreadsheet, application/x-eps, application/vnd.pdf, image/jpg, application/excel, pplication/vnd.rar, image/vnd.dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/zip, application/x-rtf, image/jpeg, image/x-ms-bmp, application/gzip, application/vnd.ms-excel, application/postscript, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/svg+xml, image/svg, image/png, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/x-pdf, application/csv, image/heic.
12078
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: text/comma-separated-values, application/x-eps, image/x-dwg, text/pdf, image/heif-sequence, application/x-dwg, text/x-csv, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/jpeg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/acrobat, application/x-zip-compressed, image/x-tif, application/vnd.pdf, image/tiff, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.ms-excel, application/x-rar, application/eps, image/eps, image/dxf, text/csv, text/rtf, text/x-pdf, text/plain, image/bmp, application/gzip-compressed, application/x-tiff, application/x-dxf, image/png, image/webp, application/x-jpg, application/postscript, application/x-tar, application/vnd.oasis.opendocument.presentation, application/svg+xml, application/tiff, image/x-tiff, image/tif, text/x-comma-separated-values, image/x-dxf, text/svg, application/zip, image/svg, application/jpg, image/x-eps, application/vnd.oasis.opendocument.spreadsheet, image/gif, application/gzipped, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/rtf, application/msword, image/jpg, image/svg+xml, application/csv, application/x-tif, application/excel, image/heic, text/svg-xml, drawing/x-dwg, application/x-rtf, application/dwg, image/heif, application/gzip, application/x-pdf, application/vnd.oasis.opendocument.text, application/tif, application/vnd.ms-word, image/vnd.dwg, application/vnd.ms-powerpoint, application/acad, application/pdf, application/x-gzip, image/x-bmp, image/heic-sequence, drawing/dwg, drawing/x-dwf, application/x-autocad, image/x-ms-bmp, application/x-rar-compressed, application/dxf, application/x-csv, application/x-acad, pplication/vnd.rar.
12560
12079
  """
12561
12080
  file: Upload!
12562
12081
 
@@ -12652,15 +12171,6 @@ type Mutation {
12652
12171
  input: PayoutStatusInput
12653
12172
  ): PayoutStatusUpdate
12654
12173
 
12655
- """Modifies the dates of a payout"""
12656
- payoutDatesUpdate(
12657
- """ID of the payout to update."""
12658
- id: ID!
12659
-
12660
- """Fields required to update a payout date range."""
12661
- input: PayoutDatesInput!
12662
- ): PayoutDatesUpdate @deprecated(reason: "This will be removed on April 29, 2025.")
12663
-
12664
12174
  """Process a payout asynchronously."""
12665
12175
  payoutProcess(input: PayoutProcessInput!): PayoutProcess
12666
12176
 
@@ -14276,15 +13786,6 @@ type Mutation {
14276
13786
  input: NoteInput!
14277
13787
  ): NauticalOrderLineAddNote
14278
13788
 
14279
- """Adds return notification note to the order."""
14280
- orderReturnNotification(
14281
- """ID of the order to add a note for."""
14282
- order: ID!
14283
-
14284
- """Fields required to create a return notification for the order."""
14285
- input: OrderReturnNotificationInput!
14286
- ): OrderReturnNotification @deprecated(reason: "This will be removed on April 29, 2025.")
14287
-
14288
13789
  """
14289
13790
  Attempts to force a refresh of the existing taxes on a non-placed nautical order.
14290
13791
  """
@@ -14308,24 +13809,6 @@ type Mutation {
14308
13809
  id: ID
14309
13810
  ): NauticalOrderUpdateDeleteDiscount
14310
13811
 
14311
- """Adds return notification note to the order."""
14312
- nauticalOrderReturnNotification(
14313
- """ID of the order to add a note for."""
14314
- order: ID!
14315
-
14316
- """Fields required to create a return notification for the order."""
14317
- input: OrderReturnNotificationInput!
14318
- ): NauticalOrderReturnNotification @deprecated(reason: "This will be removed on April 29, 2025.")
14319
-
14320
- """Adds return notification note to the order."""
14321
- nauticalOrderReturnFromStorefrontNotification(
14322
- """ID of the order to add a note for."""
14323
- order: ID!
14324
-
14325
- """Fields required to create a return notification for the order."""
14326
- input: OrderReturnNotificationInput!
14327
- ): NauticalOrderReturnFromStorefrontNotification @deprecated(reason: "This will be removed on April 29, 2025.")
14328
-
14329
13812
  """Cancel an order."""
14330
13813
  orderCancel(
14331
13814
  """ID of the order to cancel."""
@@ -14777,15 +14260,6 @@ type Mutation {
14777
14260
  input: PluginUpdateInput!
14778
14261
  ): PluginUpdate
14779
14262
 
14780
- """Import foreign catalog."""
14781
- catalogImport(
14782
- """Plugin ID"""
14783
- id: ID
14784
-
14785
- """Seller ID"""
14786
- sellerId: ID
14787
- ): CatalogImport @deprecated(reason: "This will be removed on April 29, 2025")
14788
-
14789
14263
  """Export catalog."""
14790
14264
  catalogExport(
14791
14265
  """Plugin ID"""
@@ -14795,15 +14269,6 @@ type Mutation {
14795
14269
  sellerId: ID
14796
14270
  ): CatalogExport
14797
14271
 
14798
- """Export customer list."""
14799
- customersExport(
14800
- """Plugin ID"""
14801
- id: ID
14802
-
14803
- """Seller ID"""
14804
- sellerId: ID
14805
- ): CustomersExport @deprecated(reason: "This will be removed on April 29, 2025")
14806
-
14807
14272
  """
14808
14273
  Retrieves an onboarding link for the given vendor from the given gateway if available.
14809
14274
  """
@@ -14947,12 +14412,6 @@ type Mutation {
14947
14412
  input: ExportProductsInput!
14948
14413
  ): ProductsExport
14949
14414
 
14950
- """Import products with csv file."""
14951
- productsImport(
14952
- """Represents a file in a multipart request."""
14953
- file: Upload!
14954
- ): ProductsImport @deprecated(reason: "This will be removed on April 29, 2025.")
14955
-
14956
14415
  """Adds a gift card or a voucher to a checkout."""
14957
14416
  checkoutAddPromoCode(
14958
14417
  """Checkout ID."""
@@ -16125,19 +15584,6 @@ input VendorPayoutDetails {
16125
15584
  payout: String
16126
15585
  }
16127
15586
 
16128
- """Modifies the dates of a payout"""
16129
- type PayoutDatesUpdate {
16130
- payoutErrors: [PayoutError!]!
16131
- payout: Payout
16132
- }
16133
-
16134
- input PayoutDatesInput {
16135
- """
16136
- Payout end date. ISO 8601 standard. Can not be greater than current date.
16137
- """
16138
- endDate: Date!
16139
- }
16140
-
16141
15587
  """Process a payout asynchronously."""
16142
15588
  type PayoutProcess {
16143
15589
  payout: Payout
@@ -19151,9 +18597,6 @@ input ProductVariantCreateInput {
19151
18597
  """Name for the variant."""
19152
18598
  name: String
19153
18599
 
19154
- """True if variant requires quote pricing."""
19155
- requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
19156
-
19157
18600
  """
19158
18601
  Informs whether a collection is published. All variants are published by default
19159
18602
  """
@@ -19286,9 +18729,6 @@ input ProductVariantBulkCreateInput {
19286
18729
  """Name for the variant."""
19287
18730
  name: String
19288
18731
 
19289
- """True if variant requires quote pricing."""
19290
- requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
19291
-
19292
18732
  """
19293
18733
  Informs whether a collection is published. All variants are published by default
19294
18734
  """
@@ -19456,9 +18896,6 @@ input ProductVariantInput {
19456
18896
  """Name for the variant."""
19457
18897
  name: String
19458
18898
 
19459
- """True if variant requires quote pricing."""
19460
- requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
19461
-
19462
18899
  """
19463
18900
  Informs whether a collection is published. All variants are published by default
19464
18901
  """
@@ -20212,24 +19649,6 @@ type NauticalOrderLineAddNote {
20212
19649
  nauticalOrderLine: NauticalOrderLine
20213
19650
  }
20214
19651
 
20215
- """Adds return notification note to the order."""
20216
- type OrderReturnNotification {
20217
- """Order with return notification note added."""
20218
- order: Order
20219
-
20220
- """Order return notification created."""
20221
- event: OrderEvent
20222
- orderErrors: [OrderError!]!
20223
- }
20224
-
20225
- input OrderReturnNotificationInput {
20226
- """Status of the return."""
20227
- returnStatus: String!
20228
-
20229
- """Status of the return."""
20230
- productNames: String
20231
- }
20232
-
20233
19652
  """
20234
19653
  Attempts to force a refresh of the existing taxes on a non-placed nautical order.
20235
19654
  """
@@ -20253,26 +19672,6 @@ type NauticalOrderUpdateDeleteDiscount {
20253
19672
  orderErrors: [OrderError!]!
20254
19673
  }
20255
19674
 
20256
- """Adds return notification note to the order."""
20257
- type NauticalOrderReturnNotification {
20258
- """Order with return notification note added."""
20259
- order: NauticalOrder
20260
-
20261
- """Order return notification created."""
20262
- event: NauticalOrderEvent
20263
- orderErrors: [OrderError!]!
20264
- }
20265
-
20266
- """Adds return notification note to the order."""
20267
- type NauticalOrderReturnFromStorefrontNotification {
20268
- """Order with return notification note added."""
20269
- order: NauticalOrder
20270
-
20271
- """Order return notification created."""
20272
- event: NauticalOrderEvent
20273
- orderErrors: [OrderError!]!
20274
- }
20275
-
20276
19675
  """Cancel an order."""
20277
19676
  type OrderCancel {
20278
19677
  """Canceled order."""
@@ -21225,15 +20624,6 @@ input ConfigurationItemInput {
21225
20624
  value: GenericScalar
21226
20625
  }
21227
20626
 
21228
- """Import foreign catalog."""
21229
- type CatalogImport {
21230
- ok: Boolean
21231
-
21232
- """Plugin ID"""
21233
- plugin: ID
21234
- pluginsErrors: [PluginError!]!
21235
- }
21236
-
21237
20627
  """Export catalog."""
21238
20628
  type CatalogExport {
21239
20629
  ok: Boolean
@@ -21243,15 +20633,6 @@ type CatalogExport {
21243
20633
  pluginsErrors: [PluginError!]!
21244
20634
  }
21245
20635
 
21246
- """Export customer list."""
21247
- type CustomersExport {
21248
- ok: Boolean
21249
-
21250
- """Plugin ID"""
21251
- plugin: ID
21252
- pluginsErrors: [PluginError!]!
21253
- }
21254
-
21255
20636
  """
21256
20637
  Retrieves an onboarding link for the given vendor from the given gateway if available.
21257
20638
  """
@@ -21633,33 +21014,6 @@ enum FileTypesEnum {
21633
21014
  XLSX
21634
21015
  }
21635
21016
 
21636
- """Import products with csv file."""
21637
- type ProductsImport {
21638
- """The newly created import file which is responsible for import data."""
21639
- importFile: ImportFile
21640
- importErrors: [ImportError!]!
21641
- }
21642
-
21643
- type ImportError {
21644
- """
21645
- Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
21646
- """
21647
- field: String
21648
-
21649
- """The error message."""
21650
- message: String!
21651
-
21652
- """The error code."""
21653
- code: ImportErrorCode!
21654
- }
21655
-
21656
- """An enumeration."""
21657
- enum ImportErrorCode {
21658
- INVALID
21659
- NOT_FOUND
21660
- REQUIRED
21661
- }
21662
-
21663
21017
  """Adds a gift card or a voucher to a checkout."""
21664
21018
  type CheckoutAddPromoCode {
21665
21019
  """The checkout with the added gift card or voucher."""
@@ -22498,9 +21852,6 @@ type VerifyToken {
22498
21852
 
22499
21853
  """Determine if token is valid or not."""
22500
21854
  isValid: Boolean!
22501
-
22502
- """JWT payload."""
22503
- payload: GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
22504
21855
  accountErrors: [AccountError!]!
22505
21856
  }
22506
21857
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.80.0-4-g4cf8f12ff",
3
+ "version": "v1.80.0-41-g8d95faea2",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {