@nautical-commerce/graphql-schema 1.54.0 → 1.55.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.
@@ -1792,8 +1792,8 @@ type Query {
1792
1792
  """Return the last n elements from the list."""
1793
1793
  last: Int
1794
1794
  ): VoucherCountableConnection
1795
- designerdata(name: String): DesignerDataType @deprecated(reason: "This will be removed on October 25, 2024")
1796
- designerdatalist: [DesignerDataType!]! @deprecated(reason: "This will be removed on October 25, 2024")
1795
+ designerdata(name: String): DesignerDataType
1796
+ designerdatalist: [DesignerDataType!]!
1797
1797
  branding: BrandingType! @deprecated(reason: "This will be removed on October 25, 2024")
1798
1798
 
1799
1799
  """Token nexessary for connecting to the embedded integration platform"""
@@ -7394,19 +7394,13 @@ type Agreement implements Node & ObjectWithMetadata {
7394
7394
  seoDescription: String
7395
7395
  slug: String!
7396
7396
  title: String!
7397
- jurisdiction: String
7398
7397
  vendorType: AgreementVendorType!
7399
7398
  commissionType: AgreementCommissionType!
7400
7399
  defaultCommission: Decimal!
7401
7400
  markupCommissionType: AgreementMarkupCommissionType!
7402
7401
  markupCommissionValue: Decimal!
7403
7402
  agreementType: AgreementAgreementType!
7404
- commissionUniform: Boolean
7405
- fixedFee: Decimal
7406
- feeFormat: String
7407
7403
  isActive: Boolean
7408
- products: String!
7409
- staff: String!
7410
7404
 
7411
7405
  """List of granular commissions associated with the agreement."""
7412
7406
  granularCommissions: [AgreementCommission!]!
@@ -8260,6 +8254,8 @@ input CustomerOrderFilterInput {
8260
8254
  isHistorical: Boolean
8261
8255
  subStatus: [OfferOrderSubStatusFilter!]
8262
8256
  payoutStatus: [OrderPayoutStatusEnum!]
8257
+ vendorPayouts: [ID]
8258
+ payouts: [ID]
8263
8259
  }
8264
8260
 
8265
8261
  enum OrderStatusFilter {
@@ -9328,17 +9324,13 @@ type Plugin implements Node {
9328
9324
  metadata: JSONString!
9329
9325
  company: String
9330
9326
  category: PluginConfigurationCategory
9331
- subcategory: PluginConfigurationSubcategory
9332
9327
  descriptionShort: String!
9333
9328
  logoUrl: String
9334
9329
  created: DateTime!
9335
9330
  externalUrl: String
9336
9331
  supportUrl: String
9337
- isFeature: Boolean!
9338
9332
  allowSellers: Boolean
9339
9333
  allowManyActivePluginsInCategory: Boolean!
9340
- paymentType: PluginConfigurationPaymentType!
9341
- rating: PluginConfigurationRating!
9342
9334
  tenant: Tenant!
9343
9335
  identifier: String!
9344
9336
  name: String!
@@ -9383,75 +9375,6 @@ enum PluginConfigurationCategory {
9383
9375
  PAYMENTS
9384
9376
  }
9385
9377
 
9386
- """An enumeration."""
9387
- enum PluginConfigurationSubcategory {
9388
- """Communication"""
9389
- COMMUNICATION
9390
-
9391
- """Dropshipping"""
9392
- DROPSHIPPING
9393
-
9394
- """Shipping"""
9395
- SHIPPING
9396
-
9397
- """Connectivity"""
9398
- CONNECTIVITY
9399
-
9400
- """Processors"""
9401
- PROCESSORS
9402
-
9403
- """Features"""
9404
- FEATURES
9405
-
9406
- """Compliance"""
9407
- COMPLIANCE
9408
-
9409
- """Storefront"""
9410
- STOREFRONT
9411
-
9412
- """User Behavior"""
9413
- USER_BEHAVIOR
9414
-
9415
- """Webhooks"""
9416
- WEBHOOKS
9417
-
9418
- """Loyalty"""
9419
- LOYALTY
9420
-
9421
- """Reviews"""
9422
- REVIEWS
9423
- }
9424
-
9425
- """An enumeration."""
9426
- enum PluginConfigurationPaymentType {
9427
- """This is a free app"""
9428
- FREE
9429
-
9430
- """This is a paid app"""
9431
- PAID
9432
-
9433
- """This app has recurring payments"""
9434
- RECURRING
9435
- }
9436
-
9437
- """An enumeration."""
9438
- enum PluginConfigurationRating {
9439
- """one"""
9440
- A_1
9441
-
9442
- """two"""
9443
- A_2
9444
-
9445
- """three"""
9446
- A_3
9447
-
9448
- """four"""
9449
- A_4
9450
-
9451
- """five"""
9452
- A_5
9453
- }
9454
-
9455
9378
  """Stores information about a single configuration field."""
9456
9379
  type ConfigurationItem {
9457
9380
  """Name of the field."""
@@ -9526,12 +9449,6 @@ type StorefrontTheme implements Node {
9526
9449
 
9527
9450
  """Primary color in hex."""
9528
9451
  primaryColor: String
9529
-
9530
- """Secondary color in hex."""
9531
- secondaryColor: String
9532
-
9533
- """Accent color in hex."""
9534
- accentColor: String
9535
9452
  logo: Image
9536
9453
  faviconImage: Image
9537
9454
 
@@ -10375,7 +10292,6 @@ type PluginCountableEdge {
10375
10292
  input PluginFilterInput {
10376
10293
  active: Boolean
10377
10294
  search: String
10378
- isFeature: Boolean
10379
10295
  isPaymentGateway: Boolean
10380
10296
  seller: ID
10381
10297
  }
@@ -11223,6 +11139,8 @@ input OrderFilterInput {
11223
11139
  isHistorical: Boolean
11224
11140
  subStatus: [OfferOrderSubStatusFilter!]
11225
11141
  payoutStatus: [OrderPayoutStatusEnum!]
11142
+ vendorPayouts: [ID]
11143
+ payouts: [ID]
11226
11144
  }
11227
11145
 
11228
11146
  input NauticalOrderFilterInput {
@@ -14002,7 +13920,7 @@ type Mutation {
14002
13920
  description: String
14003
13921
 
14004
13922
  """
14005
- 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-dxf, application/x-eps, image/x-dwg, image/tiff, application/vnd.ms-word, application/gzip, application/dwg, application/zip, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/tiff, application/x-rar-compressed, application/dxf, text/comma-separated-values, application/x-tar, application/rtf, drawing/x-dwg, image/heic-sequence, application/tif, application/x-tif, text/svg, image/heif, text/x-pdf, text/svg-xml, image/x-eps, application/x-zip-compressed, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.oasis.opendocument.spreadsheet, application/x-tiff, application/pdf, application/vnd.oasis.opendocument.text, image/x-tif, image/eps, application/jpg, image/tif, image/jpg, image/heic, application/vnd.ms-powerpoint, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/rtf, application/excel, image/vnd.dwg, application/csv, application/vnd.pdf, image/png, image/x-ms-bmp, application/x-autocad, image/bmp, application/x-rar, application/acrobat, application/x-jpg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/gzip-compressed, application/msword, image/dxf, application/vnd.oasis.opendocument.presentation, application/x-gzip, image/x-bmp, text/plain, application/x-pdf, image/gif, application/gzipped, application/svg+xml, image/heif-sequence, application/acad, image/svg, text/csv, application/eps, text/x-comma-separated-values, image/svg+xml, pplication/vnd.rar, image/webp, text/pdf, application/postscript, text/x-csv, application/x-dwg, image/x-dxf, application/x-rtf, application/vnd.ms-excel, application/x-acad, image/x-tiff, drawing/dwg, drawing/x-dwf, image/jpeg, application/x-csv.
13923
+ 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.ms-powerpoint, application/vnd.ms-excel, application/x-csv, image/heif, text/rtf, image/dxf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-acad, application/gzip-compressed, application/vnd.ms-word, pplication/vnd.rar, text/pdf, image/eps, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/csv, application/gzipped, text/csv, application/eps, application/jpg, image/gif, application/vnd.pdf, text/plain, image/heic, application/x-rar, application/x-jpg, application/msword, image/x-ms-bmp, application/x-zip-compressed, text/svg-xml, application/tiff, image/heif-sequence, application/x-dwg, application/gzip, image/x-eps, application/x-rtf, text/svg, application/vnd.oasis.opendocument.presentation, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-tar, image/jpg, text/x-pdf, application/vnd.oasis.opendocument.spreadsheet, application/vnd.oasis.opendocument.text, image/png, drawing/x-dwg, image/x-dwg, image/jpeg, application/svg+xml, drawing/dwg, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-gzip, image/svg+xml, application/acad, application/x-tif, application/tif, image/heic-sequence, application/x-eps, application/x-autocad, image/bmp, application/x-pdf, application/acrobat, application/x-rar-compressed, text/x-csv, application/x-dxf, image/tiff, text/comma-separated-values, image/x-tif, image/x-dxf, application/x-tiff, image/vnd.dwg, image/tif, application/rtf, application/pdf, application/dwg, image/svg, drawing/x-dwf, image/webp, image/x-bmp, application/postscript, application/excel, text/x-comma-separated-values, application/zip, application/dxf, image/x-tiff.
14006
13924
  """
14007
13925
  file: Upload!
14008
13926
 
@@ -14128,7 +14046,7 @@ type Mutation {
14128
14046
 
14129
14047
  """Creates a new payout."""
14130
14048
  payoutCreate(
14131
- """Fields required to create a customer."""
14049
+ """Fields required to create a payout."""
14132
14050
  input: PayoutCreateInput!
14133
14051
  ): PayoutCreate
14134
14052
 
@@ -14586,6 +14504,12 @@ type Mutation {
14586
14504
  seller: ID
14587
14505
  ): SellerLogoUpdate
14588
14506
 
14507
+ """Deletes a seller logo. Only for MP Admin, MP Staff, or the seller. """
14508
+ sellerLogoDelete(
14509
+ """ID of the seller to delete logo for"""
14510
+ id: ID!
14511
+ ): SellerLogoDelete
14512
+
14589
14513
  """
14590
14514
  Create a seller banner.This mutation must be sent as a 'multipart' request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec
14591
14515
  """
@@ -14595,6 +14519,14 @@ type Mutation {
14595
14519
  seller: ID!
14596
14520
  ): SellerBannerUpdate
14597
14521
 
14522
+ """
14523
+ Create a seller banner.This mutation must be sent as a 'multipart' request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec
14524
+ """
14525
+ sellerBannerDelete(
14526
+ """ID of the seller to delete banner for"""
14527
+ id: ID!
14528
+ ): SellerBannerDelete
14529
+
14598
14530
  """Creates seller address."""
14599
14531
  sellerAddressCreate(
14600
14532
  """Fields required to create address."""
@@ -14645,7 +14577,7 @@ type Mutation {
14645
14577
  """Marks manually one checklist item as completed."""
14646
14578
  sellerOnboardingChecklistComplete(
14647
14579
  """Checklist ID"""
14648
- id: ID
14580
+ id: ID = null
14649
14581
 
14650
14582
  """Boolean is it completed or not. Default value is True"""
14651
14583
  isCompleted: Boolean = true
@@ -14659,10 +14591,10 @@ type Mutation {
14659
14591
  ): SellerApplicationUpdate
14660
14592
 
14661
14593
  """Create designer data."""
14662
- designerDataCreate(input: DesignerDataInput!): DesignerDataCreate @deprecated(reason: "This will be removed on October 25, 2024")
14594
+ designerDataCreate(input: DesignerDataInput!): DesignerDataCreate
14663
14595
 
14664
14596
  """Update existing designer data."""
14665
- designerDataUpdate(input: DesignerDataInput, name: String!): DesignerDataUpdate @deprecated(reason: "This will be removed on October 25, 2024")
14597
+ designerDataUpdate(input: DesignerDataInput, name: String!): DesignerDataUpdate
14666
14598
 
14667
14599
  """Update existing branding."""
14668
14600
  brandingUpdate(input: BrandingInput): BrandingUpdate @deprecated(reason: "This will be removed on October 25, 2024")
@@ -18703,33 +18635,15 @@ input AgreementInput {
18703
18635
  """Search engine optimization fields."""
18704
18636
  seo: SeoInput
18705
18637
 
18706
- """Agreement legal jurisdiction."""
18707
- jurisdiction: String
18708
-
18709
18638
  """Default commission for all orders"""
18710
18639
  defaultCommission: Decimal
18711
18640
 
18712
- """Default fees per sale or month"""
18713
- fixedFee: Decimal
18714
-
18715
- """Fee format: per sale or month"""
18716
- feeFormat: String
18717
-
18718
- """Are commissions uniform across the marketplace?"""
18719
- commissionUniform: Boolean
18720
-
18721
18641
  """Is this agreement active?"""
18722
18642
  isActive: Boolean
18723
18643
 
18724
18644
  """Last update date. ISO 8601 standard."""
18725
18645
  updatedAt: String
18726
18646
 
18727
- """Number of products allowed on the agreement"""
18728
- products: String
18729
-
18730
- """Number of staff members allowed on the agreement"""
18731
- staff: String
18732
-
18733
18647
  """Seller or Affiliate"""
18734
18648
  vendorType: VendorTypeEnum @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
18735
18649
 
@@ -19086,6 +19000,13 @@ type SellerLogoUpdate {
19086
19000
  sellerErrors: [SellerError!]!
19087
19001
  }
19088
19002
 
19003
+ """Deletes a seller logo. Only for MP Admin, MP Staff, or the seller. """
19004
+ type SellerLogoDelete {
19005
+ """An updated seller instance"""
19006
+ seller: Seller
19007
+ sellerErrors: [SellerError!]!
19008
+ }
19009
+
19089
19010
  """
19090
19011
  Create a seller banner.This mutation must be sent as a 'multipart' request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec
19091
19012
  """
@@ -19095,6 +19016,15 @@ type SellerBannerUpdate {
19095
19016
  sellerErrors: [SellerError!]!
19096
19017
  }
19097
19018
 
19019
+ """
19020
+ Create a seller banner.This mutation must be sent as a 'multipart' request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec
19021
+ """
19022
+ type SellerBannerDelete {
19023
+ """An updated seller instance"""
19024
+ seller: Seller
19025
+ sellerErrors: [SellerError!]!
19026
+ }
19027
+
19098
19028
  """Creates seller address."""
19099
19029
  type SellerAddressCreate {
19100
19030
  """A seller instance for which the address was created."""
@@ -19415,7 +19345,7 @@ input WarehouseCreateInput {
19415
19345
  name: String!
19416
19346
 
19417
19347
  """Address of the warehouse."""
19418
- address: WarehouseAddressInput!
19348
+ address: WarehouseAddressInput
19419
19349
 
19420
19350
  """Warehouse slug."""
19421
19351
  slug: String
@@ -19437,6 +19367,9 @@ input WarehouseCreateInput {
19437
19367
 
19438
19368
  """External source of a warehouse if originating outside of the system."""
19439
19369
  externalSource: String
19370
+
19371
+ """Determines if the warehouse address is same as business address"""
19372
+ isAddressSameAsBusiness: Boolean
19440
19373
  }
19441
19374
 
19442
19375
  input WarehouseAddressInput {
@@ -19499,6 +19432,9 @@ input WarehouseUpdateInput {
19499
19432
  """External source of a warehouse if originating outside of the system."""
19500
19433
  externalSource: String
19501
19434
 
19435
+ """Determines if the warehouse address is same as business address"""
19436
+ isAddressSameAsBusiness: Boolean
19437
+
19502
19438
  """Shipping zones to unassign from the warehouse."""
19503
19439
  removeShippingZones: [ID!]
19504
19440
  }
@@ -19827,12 +19763,6 @@ input StorefrontThemeInput {
19827
19763
  """Primary color in hex."""
19828
19764
  primaryColor: String
19829
19765
 
19830
- """Secondary color in hex."""
19831
- secondaryColor: String
19832
-
19833
- """Secondary color in hex."""
19834
- accentColor: String
19835
-
19836
19766
  """Logo file."""
19837
19767
  logo: Upload
19838
19768
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.54.0",
3
+ "version": "v1.55.0",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {