@nautical-commerce/graphql-schema 1.99.3-3-g93c65200f → 1.99.3-4-g9591329d6
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 +46 -7
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1490,6 +1490,12 @@ type Query {
|
|
1490
1490
|
"""List of all tax rates available from tax gateway."""
|
1491
1491
|
taxTypes: [TaxType!]!
|
1492
1492
|
|
1493
|
+
"""List of all events for the given object."""
|
1494
|
+
events(
|
1495
|
+
"""ID of an object."""
|
1496
|
+
id: ID!
|
1497
|
+
): [Event!]!
|
1498
|
+
|
1493
1499
|
"""Look up a checkout by token."""
|
1494
1500
|
checkout(
|
1495
1501
|
"""The checkout's token."""
|
@@ -11429,6 +11435,44 @@ enum ExportFileSortField {
|
|
11429
11435
|
UPDATED_AT
|
11430
11436
|
}
|
11431
11437
|
|
11438
|
+
"""Event object for all models."""
|
11439
|
+
type Event {
|
11440
|
+
"""The unique identifier across all event tables."""
|
11441
|
+
slug: String
|
11442
|
+
|
11443
|
+
"""The event model label formatted as 'app_label.ModelName'."""
|
11444
|
+
model: String
|
11445
|
+
|
11446
|
+
"""The primary key of the event."""
|
11447
|
+
id: BigInt
|
11448
|
+
|
11449
|
+
"""When the event was created."""
|
11450
|
+
createdAt: DateTime
|
11451
|
+
|
11452
|
+
"""The event label."""
|
11453
|
+
label: String
|
11454
|
+
|
11455
|
+
"""The raw data of the event."""
|
11456
|
+
data: GenericScalar
|
11457
|
+
|
11458
|
+
"""
|
11459
|
+
The diff against the previous event of the same event model and object.
|
11460
|
+
"""
|
11461
|
+
diff: GenericScalar
|
11462
|
+
|
11463
|
+
"""The context UUID."""
|
11464
|
+
contextId: NauticalUUID
|
11465
|
+
|
11466
|
+
"""The context JSON associated with the event."""
|
11467
|
+
context: GenericScalar
|
11468
|
+
|
11469
|
+
"""The object model."""
|
11470
|
+
objModel: String
|
11471
|
+
|
11472
|
+
"""The primary key of the object."""
|
11473
|
+
objId: String
|
11474
|
+
}
|
11475
|
+
|
11432
11476
|
type CheckoutCountableConnection {
|
11433
11477
|
"""Pagination data for this connection."""
|
11434
11478
|
pageInfo: PageInfo!
|
@@ -11826,7 +11870,7 @@ type Mutation {
|
|
11826
11870
|
description: String
|
11827
11871
|
|
11828
11872
|
"""
|
11829
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
11873
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: text/plain, image/vnd.dwg, application/rtf, drawing/x-dwf, application/vnd.oasis.opendocument.spreadsheet, image/x-bmp, image/x-tif, pplication/vnd.rar, image/tiff, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-tar, application/msword, image/webp, image/heif-sequence, image/heic-sequence, text/svg, image/jpg, drawing/x-dwg, image/heif, application/vnd.ms-powerpoint, image/heic, application/x-pdf, application/x-tiff, application/gzip, application/gzip-compressed, image/svg, application/gzipped, image/x-dwg, image/jpeg, image/dxf, application/vnd.ms-word, application/tif, text/comma-separated-values, application/x-acad, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-zip-compressed, application/acrobat, image/x-dxf, image/x-ms-bmp, application/dwg, image/png, application/acad, application/vnd.pdf, application/csv, image/tif, application/x-rtf, application/eps, application/vnd.oasis.opendocument.presentation, text/x-pdf, application/x-eps, application/x-autocad, application/x-csv, image/x-tiff, text/x-comma-separated-values, application/dxf, application/x-gzip, text/svg-xml, application/svg+xml, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/eps, application/excel, image/svg+xml, text/pdf, application/x-jpg, image/gif, image/bmp, application/jpg, application/x-rar, application/x-tif, application/x-dxf, text/rtf, text/csv, application/vnd.ms-excel, application/tiff, application/postscript, application/x-rar-compressed, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-dwg, text/x-csv, application/vnd.oasis.opendocument.text, drawing/dwg, application/pdf, image/x-eps, application/zip.
|
11830
11874
|
"""
|
11831
11875
|
file: Upload!
|
11832
11876
|
|
@@ -14055,11 +14099,6 @@ type Mutation {
|
|
14055
14099
|
ID of the user to override with (only available for use by Marketplace Administrators)
|
14056
14100
|
"""
|
14057
14101
|
userOverride: ID
|
14058
|
-
|
14059
|
-
"""
|
14060
|
-
Determines whether the email sent out is catered to carriers instead of customers
|
14061
|
-
"""
|
14062
|
-
vehicles: Boolean = false @deprecated(reason: "This will be removed on September 26, 2025")
|
14063
14102
|
): CheckoutComplete
|
14064
14103
|
|
14065
14104
|
"""Create a new checkout."""
|
@@ -14203,7 +14242,7 @@ type Mutation {
|
|
14203
14242
|
"""Deletes a checkout."""
|
14204
14243
|
checkoutDelete(
|
14205
14244
|
"""Token of a checkout to delete."""
|
14206
|
-
token:
|
14245
|
+
token: NauticalUUID!
|
14207
14246
|
): CheckoutDelete
|
14208
14247
|
|
14209
14248
|
"""Adds purchase order number to a checkout."""
|