@nautical-commerce/graphql-schema 1.80.0-14-gc9925375e → 1.80.0-16-g55b9a57f6
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 +1 -44
- 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."""
|
@@ -12439,31 +12424,6 @@ input AgreementFilterInput {
|
|
12439
12424
|
search: String
|
12440
12425
|
}
|
12441
12426
|
|
12442
|
-
type AddressValidationData {
|
12443
|
-
countryCode: String
|
12444
|
-
countryName: String
|
12445
|
-
addressFormat: String
|
12446
|
-
addressLatinFormat: String
|
12447
|
-
allowedFields: [String!]
|
12448
|
-
requiredFields: [String!]
|
12449
|
-
upperFields: [String!]
|
12450
|
-
countryAreaType: String
|
12451
|
-
countryAreaChoices: [ChoiceValue!]
|
12452
|
-
cityType: String
|
12453
|
-
cityChoices: [ChoiceValue!]
|
12454
|
-
cityAreaType: String
|
12455
|
-
cityAreaChoices: [ChoiceValue!]
|
12456
|
-
postalCodeType: String
|
12457
|
-
postalCodeMatchers: [String!]
|
12458
|
-
postalCodeExamples: [String!]
|
12459
|
-
postalCodePrefix: String
|
12460
|
-
}
|
12461
|
-
|
12462
|
-
type ChoiceValue {
|
12463
|
-
raw: String
|
12464
|
-
verbose: String
|
12465
|
-
}
|
12466
|
-
|
12467
12427
|
input CustomerFilterInput {
|
12468
12428
|
dateJoined: DateRangeInput
|
12469
12429
|
isActive: Boolean
|
@@ -12560,7 +12520,7 @@ type Mutation {
|
|
12560
12520
|
description: String
|
12561
12521
|
|
12562
12522
|
"""
|
12563
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
12523
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/msword, application/dxf, application/x-rtf, pplication/vnd.rar, application/x-dxf, image/tiff, image/jpg, application/pdf, application/vnd.ms-excel, image/heif-sequence, application/tiff, application/x-rar, drawing/x-dwg, application/gzip-compressed, application/x-autocad, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/heif, image/svg, image/x-dwg, application/x-eps, application/x-tar, text/pdf, application/csv, application/svg+xml, text/csv, image/heic-sequence, application/x-acad, image/dxf, image/bmp, text/x-csv, image/vnd.dwg, application/jpg, text/x-comma-separated-values, application/gzip, image/eps, application/vnd.ms-word, image/heic, image/x-eps, application/zip, application/gzipped, application/vnd.oasis.opendocument.spreadsheet, image/tif, application/x-rar-compressed, application/vnd.pdf, text/svg, application/rtf, application/x-tiff, image/x-bmp, application/x-jpg, image/svg+xml, application/acrobat, drawing/x-dwf, application/excel, application/vnd.oasis.opendocument.presentation, application/x-csv, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/x-dxf, application/tif, application/x-zip-compressed, drawing/dwg, application/x-dwg, application/acad, application/x-pdf, application/postscript, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.oasis.opendocument.text, application/x-tif, text/rtf, image/gif, image/x-tiff, text/svg-xml, application/dwg, application/eps, image/x-tif, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/jpeg, image/png, text/comma-separated-values, text/plain, application/vnd.ms-powerpoint, image/x-ms-bmp, application/x-gzip, image/webp, text/x-pdf.
|
12564
12524
|
"""
|
12565
12525
|
file: Upload!
|
12566
12526
|
|
@@ -22502,9 +22462,6 @@ type VerifyToken {
|
|
22502
22462
|
|
22503
22463
|
"""Determine if token is valid or not."""
|
22504
22464
|
isValid: Boolean!
|
22505
|
-
|
22506
|
-
"""JWT payload."""
|
22507
|
-
payload: GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
|
22508
22465
|
accountErrors: [AccountError!]!
|
22509
22466
|
}
|
22510
22467
|
|