@nautical-commerce/graphql-schema 1.80.0-2-ge31690fac → 1.80.0-21-ga908aef7b

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.
@@ -1793,12 +1793,6 @@ type Query {
1793
1793
  last: Int
1794
1794
  ): CheckoutCountableConnection
1795
1795
 
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
1796
  """List of checkout lines."""
1803
1797
  checkoutLines(
1804
1798
  """Return the elements in the list that come before the specified cursor."""
@@ -1930,21 +1924,6 @@ type Query {
1930
1924
  id: ID!
1931
1925
  ): [AgreementSellers!]!
1932
1926
 
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
1927
  """Look up an address by ID."""
1949
1928
  address(
1950
1929
  """ID of an address."""
@@ -2327,7 +2306,6 @@ type User implements Node & ObjectWithMetadata {
2327
2306
  email: String!
2328
2307
  firstName: String!
2329
2308
  lastName: String!
2330
- isStaff: Boolean!
2331
2309
  isActive: Boolean!
2332
2310
 
2333
2311
  """A note about the customer."""
@@ -2480,7 +2458,12 @@ type User implements Node & ObjectWithMetadata {
2480
2458
  last: Int
2481
2459
  ): WishlistCountableConnection
2482
2460
  seller: Seller
2483
- isAssignable: Boolean
2461
+
2462
+ """If true, the user can be assigned as the owner of a seller"""
2463
+ isAssignable: Boolean!
2464
+
2465
+ """If true, the user is an MPO or a seller staff member"""
2466
+ isStaff: Boolean!
2484
2467
 
2485
2468
  """List of documents associated with the user."""
2486
2469
  documents: [Document!]!
@@ -3362,7 +3345,7 @@ type MarketplaceConfiguration {
3362
3345
  Determines whether shipping methods are available based on marketplace checkout total or seller totals
3363
3346
  """
3364
3347
  availableShippingStrategy: AvailableShippingStrategyEnum
3365
- attributeTemplateStrategy: AttributeTemplateStrategyEnum @deprecated(reason: "This field will be removed on July 20, 2025.")
3348
+ attributeTemplateStrategy: AttributeTemplateStrategyEnum @deprecated(reason: "This field will be removed on July 23, 2025.")
3366
3349
 
3367
3350
  """Determines the fulfillment model for the marketplace"""
3368
3351
  fulfillmentModel: FulfillmentModelEnum!
@@ -5382,9 +5365,6 @@ type App implements Node & ObjectWithMetadata {
5382
5365
  """List of public metadata items. Can be accessed without permissions."""
5383
5366
  metadata: [MetadataItem!]!
5384
5367
 
5385
- """Type of the app."""
5386
- type: AppTypeEnum @deprecated(reason: "This will be removed on April 30, 2025.")
5387
-
5388
5368
  """List of dashboard integrations for this app"""
5389
5369
  dashboardIntegrations: [AppDashboardIntegration!]
5390
5370
 
@@ -5394,27 +5374,6 @@ type App implements Node & ObjectWithMetadata {
5394
5374
  """List of webhooks assigned to this app."""
5395
5375
  webhooks: [Webhook!]
5396
5376
 
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
5377
  """Version number of the app."""
5419
5378
  version: String
5420
5379
 
@@ -5475,14 +5434,6 @@ type AppToken implements Node {
5475
5434
  id: ID!
5476
5435
  }
5477
5436
 
5478
- enum AppTypeEnum {
5479
- """local"""
5480
- LOCAL
5481
-
5482
- """thirdparty"""
5483
- THIRDPARTY
5484
- }
5485
-
5486
5437
  """Represents a dashboard integration for an App."""
5487
5438
  type AppDashboardIntegration implements Node {
5488
5439
  """The ID of the object"""
@@ -12387,7 +12338,6 @@ type AppCountableEdge {
12387
12338
  input AppFilterInput {
12388
12339
  search: String
12389
12340
  isActive: Boolean
12390
- type: AppTypeEnum
12391
12341
  }
12392
12342
 
12393
12343
  input AppSortingInput {
@@ -12435,31 +12385,6 @@ input AgreementFilterInput {
12435
12385
  search: String
12436
12386
  }
12437
12387
 
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
12388
  input CustomerFilterInput {
12464
12389
  dateJoined: DateRangeInput
12465
12390
  isActive: Boolean
@@ -12556,7 +12481,7 @@ type Mutation {
12556
12481
  description: String
12557
12482
 
12558
12483
  """
12559
- 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.oasis.opendocument.text, image/webp, text/pdf, image/svg, image/eps, image/gif, application/x-csv, application/x-dwg, application/x-acad, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-tiff, application/gzipped, application/vnd.oasis.opendocument.spreadsheet, image/jpg, application/x-dxf, drawing/x-dwg, application/vnd.ms-excel, image/svg+xml, application/vnd.pdf, text/svg-xml, application/gzip, image/bmp, application/x-eps, image/heic, image/x-tif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-gzip, application/x-pdf, application/tiff, application/x-zip-compressed, image/heif, application/acrobat, image/x-bmp, application/eps, application/x-rar, text/csv, application/x-rar-compressed, text/comma-separated-values, application/msword, application/x-rtf, text/plain, pplication/vnd.rar, image/tiff, application/tif, text/svg, application/acad, application/postscript, application/x-tif, application/zip, text/x-pdf, text/x-csv, application/vnd.ms-word, image/heic-sequence, image/jpeg, image/x-dwg, application/vnd.oasis.opendocument.presentation, image/x-ms-bmp, application/jpg, image/heif-sequence, application/csv, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-autocad, image/x-eps, application/x-tar, image/png, text/x-comma-separated-values, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/svg+xml, text/rtf, application/excel, image/tif, image/dxf, application/rtf, application/dxf, application/vnd.ms-powerpoint, image/x-tiff, application/gzip-compressed, application/pdf, application/x-jpg, image/vnd.dwg, drawing/dwg, image/x-dxf, drawing/x-dwf, application/dwg.
12484
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/x-eps, application/x-rar, image/bmp, application/zip, text/pdf, application/dxf, image/heic, application/x-autocad, application/svg+xml, application/x-dxf, image/vnd.dwg, application/vnd.pdf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-powerpoint, application/gzip, application/jpg, text/comma-separated-values, image/tif, application/vnd.ms-excel, image/heif-sequence, pplication/vnd.rar, application/csv, application/x-gzip, image/x-bmp, image/x-tif, application/acad, drawing/x-dwf, application/acrobat, image/svg, drawing/dwg, application/tiff, image/svg+xml, application/vnd.oasis.opendocument.presentation, image/heic-sequence, application/x-dwg, application/gzip-compressed, image/jpg, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/msword, application/x-zip-compressed, text/x-pdf, application/x-csv, image/x-ms-bmp, application/x-jpg, application/tif, application/x-acad, image/eps, image/dxf, application/gzipped, application/x-pdf, image/tiff, image/heif, drawing/x-dwg, text/x-csv, application/x-eps, image/x-tiff, application/excel, application/x-tiff, text/plain, application/pdf, application/eps, application/x-tif, image/webp, application/vnd.ms-word, image/x-dwg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/postscript, image/jpeg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.oasis.opendocument.spreadsheet, application/x-tar, text/svg-xml, application/vnd.oasis.opendocument.text, application/x-rtf, text/svg, image/gif, application/x-rar-compressed, application/dwg, image/x-dxf, text/rtf, image/png, application/rtf, text/csv, text/x-comma-separated-values.
12560
12485
  """
12561
12486
  file: Upload!
12562
12487
 
@@ -15938,7 +15863,7 @@ input MarketplaceConfigurationInput {
15938
15863
  availableShippingStrategy: AvailableShippingStrategyEnum = null
15939
15864
 
15940
15865
  """Update attribute template strategy"""
15941
- attributeTemplateStrategy: AttributeTemplateStrategyEnum = null @deprecated(reason: "This field will be removed on July 20, 2025.")
15866
+ attributeTemplateStrategy: AttributeTemplateStrategyEnum = null @deprecated(reason: "This field will be removed on July 23, 2025.")
15942
15867
 
15943
15868
  """
15944
15869
  Updates currency of the marketplace. Marketplace currency will be updated after the cache time (approximately 30 seconds)'
@@ -22498,9 +22423,6 @@ type VerifyToken {
22498
22423
 
22499
22424
  """Determine if token is valid or not."""
22500
22425
  isValid: Boolean!
22501
-
22502
- """JWT payload."""
22503
- payload: GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
22504
22426
  accountErrors: [AccountError!]!
22505
22427
  }
22506
22428
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.80.0-2-ge31690fac",
3
+ "version": "v1.80.0-21-ga908aef7b",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {