@nautical-commerce/graphql-schema 1.80.0-2-ge31690fac → 1.80.0-20-g3c7491e89
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.
- package/nautical/schema.graphql +9 -81
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1930,21 +1930,6 @@ type Query {
|
|
1930
1930
|
id: ID!
|
1931
1931
|
): [AgreementSellers!]!
|
1932
1932
|
|
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
1933
|
"""Look up an address by ID."""
|
1949
1934
|
address(
|
1950
1935
|
"""ID of an address."""
|
@@ -2327,7 +2312,6 @@ type User implements Node & ObjectWithMetadata {
|
|
2327
2312
|
email: String!
|
2328
2313
|
firstName: String!
|
2329
2314
|
lastName: String!
|
2330
|
-
isStaff: Boolean!
|
2331
2315
|
isActive: Boolean!
|
2332
2316
|
|
2333
2317
|
"""A note about the customer."""
|
@@ -2480,7 +2464,12 @@ type User implements Node & ObjectWithMetadata {
|
|
2480
2464
|
last: Int
|
2481
2465
|
): WishlistCountableConnection
|
2482
2466
|
seller: Seller
|
2483
|
-
|
2467
|
+
|
2468
|
+
"""If true, the user can be assigned as the owner of a seller"""
|
2469
|
+
isAssignable: Boolean!
|
2470
|
+
|
2471
|
+
"""If true, the user is an MPO or a seller staff member"""
|
2472
|
+
isStaff: Boolean!
|
2484
2473
|
|
2485
2474
|
"""List of documents associated with the user."""
|
2486
2475
|
documents: [Document!]!
|
@@ -3362,7 +3351,7 @@ type MarketplaceConfiguration {
|
|
3362
3351
|
Determines whether shipping methods are available based on marketplace checkout total or seller totals
|
3363
3352
|
"""
|
3364
3353
|
availableShippingStrategy: AvailableShippingStrategyEnum
|
3365
|
-
attributeTemplateStrategy: AttributeTemplateStrategyEnum @deprecated(reason: "This field will be removed on July
|
3354
|
+
attributeTemplateStrategy: AttributeTemplateStrategyEnum @deprecated(reason: "This field will be removed on July 23, 2025.")
|
3366
3355
|
|
3367
3356
|
"""Determines the fulfillment model for the marketplace"""
|
3368
3357
|
fulfillmentModel: FulfillmentModelEnum!
|
@@ -5382,9 +5371,6 @@ type App implements Node & ObjectWithMetadata {
|
|
5382
5371
|
"""List of public metadata items. Can be accessed without permissions."""
|
5383
5372
|
metadata: [MetadataItem!]!
|
5384
5373
|
|
5385
|
-
"""Type of the app."""
|
5386
|
-
type: AppTypeEnum @deprecated(reason: "This will be removed on April 30, 2025.")
|
5387
|
-
|
5388
5374
|
"""List of dashboard integrations for this app"""
|
5389
5375
|
dashboardIntegrations: [AppDashboardIntegration!]
|
5390
5376
|
|
@@ -5394,27 +5380,6 @@ type App implements Node & ObjectWithMetadata {
|
|
5394
5380
|
"""List of webhooks assigned to this app."""
|
5395
5381
|
webhooks: [Webhook!]
|
5396
5382
|
|
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
5383
|
"""Version number of the app."""
|
5419
5384
|
version: String
|
5420
5385
|
|
@@ -5475,14 +5440,6 @@ type AppToken implements Node {
|
|
5475
5440
|
id: ID!
|
5476
5441
|
}
|
5477
5442
|
|
5478
|
-
enum AppTypeEnum {
|
5479
|
-
"""local"""
|
5480
|
-
LOCAL
|
5481
|
-
|
5482
|
-
"""thirdparty"""
|
5483
|
-
THIRDPARTY
|
5484
|
-
}
|
5485
|
-
|
5486
5443
|
"""Represents a dashboard integration for an App."""
|
5487
5444
|
type AppDashboardIntegration implements Node {
|
5488
5445
|
"""The ID of the object"""
|
@@ -12387,7 +12344,6 @@ type AppCountableEdge {
|
|
12387
12344
|
input AppFilterInput {
|
12388
12345
|
search: String
|
12389
12346
|
isActive: Boolean
|
12390
|
-
type: AppTypeEnum
|
12391
12347
|
}
|
12392
12348
|
|
12393
12349
|
input AppSortingInput {
|
@@ -12435,31 +12391,6 @@ input AgreementFilterInput {
|
|
12435
12391
|
search: String
|
12436
12392
|
}
|
12437
12393
|
|
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
12394
|
input CustomerFilterInput {
|
12464
12395
|
dateJoined: DateRangeInput
|
12465
12396
|
isActive: Boolean
|
@@ -12556,7 +12487,7 @@ type Mutation {
|
|
12556
12487
|
description: String
|
12557
12488
|
|
12558
12489
|
"""
|
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/
|
12490
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/gzip, application/svg+xml, image/png, drawing/x-dwg, text/x-comma-separated-values, application/x-tif, drawing/x-dwf, text/x-pdf, application/jpg, text/csv, application/acad, text/pdf, application/vnd.oasis.opendocument.text, image/webp, application/dxf, text/svg-xml, application/x-autocad, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/gif, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-eps, application/x-gzip, image/svg+xml, application/x-zip-compressed, application/tiff, image/x-bmp, image/heic, image/x-eps, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/bmp, application/vnd.oasis.opendocument.presentation, application/acrobat, image/heic-sequence, application/x-tiff, application/postscript, application/x-rtf, application/x-dxf, application/gzip-compressed, image/dxf, application/vnd.ms-excel, application/x-rar-compressed, application/gzipped, application/x-pdf, application/vnd.pdf, image/eps, application/pdf, application/x-acad, application/rtf, application/vnd.openxmlformats-officedocument.presentationml.presentation, text/rtf, application/zip, image/x-dwg, application/csv, application/x-jpg, image/x-tiff, text/x-csv, application/dwg, image/vnd.dwg, text/svg, application/x-tar, text/plain, image/heif, application/msword, application/vnd.ms-word, image/x-tif, application/vnd.oasis.opendocument.spreadsheet, text/comma-separated-values, image/svg, application/eps, image/heif-sequence, image/tif, image/tiff, application/tif, image/x-ms-bmp, application/x-csv, application/excel, application/x-dwg, image/jpg, image/jpeg, image/x-dxf, application/x-rar, application/vnd.ms-powerpoint, drawing/dwg, pplication/vnd.rar.
|
12560
12491
|
"""
|
12561
12492
|
file: Upload!
|
12562
12493
|
|
@@ -15938,7 +15869,7 @@ input MarketplaceConfigurationInput {
|
|
15938
15869
|
availableShippingStrategy: AvailableShippingStrategyEnum = null
|
15939
15870
|
|
15940
15871
|
"""Update attribute template strategy"""
|
15941
|
-
attributeTemplateStrategy: AttributeTemplateStrategyEnum = null @deprecated(reason: "This field will be removed on July
|
15872
|
+
attributeTemplateStrategy: AttributeTemplateStrategyEnum = null @deprecated(reason: "This field will be removed on July 23, 2025.")
|
15942
15873
|
|
15943
15874
|
"""
|
15944
15875
|
Updates currency of the marketplace. Marketplace currency will be updated after the cache time (approximately 30 seconds)'
|
@@ -22498,9 +22429,6 @@ type VerifyToken {
|
|
22498
22429
|
|
22499
22430
|
"""Determine if token is valid or not."""
|
22500
22431
|
isValid: Boolean!
|
22501
|
-
|
22502
|
-
"""JWT payload."""
|
22503
|
-
payload: GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
|
22504
22432
|
accountErrors: [AccountError!]!
|
22505
22433
|
}
|
22506
22434
|
|