@nautical-commerce/graphql-schema 1.99.3-3-g93c65200f → 1.99.3-5-g6764b12f1
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 +50 -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,48 @@ 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, can be null if the event is an insert.
|
11460
|
+
"""
|
11461
|
+
diff: GenericScalar
|
11462
|
+
|
11463
|
+
"""
|
11464
|
+
The context UUID, can be null if the event is not associated with a user or app.
|
11465
|
+
"""
|
11466
|
+
contextId: NauticalUUID
|
11467
|
+
|
11468
|
+
"""
|
11469
|
+
The context JSON associated with the event, can be null if the event is not associated with a user or app.
|
11470
|
+
"""
|
11471
|
+
context: GenericScalar
|
11472
|
+
|
11473
|
+
"""The object model."""
|
11474
|
+
objModel: String!
|
11475
|
+
|
11476
|
+
"""The primary key of the object."""
|
11477
|
+
objId: String!
|
11478
|
+
}
|
11479
|
+
|
11432
11480
|
type CheckoutCountableConnection {
|
11433
11481
|
"""Pagination data for this connection."""
|
11434
11482
|
pageInfo: PageInfo!
|
@@ -11826,7 +11874,7 @@ type Mutation {
|
|
11826
11874
|
description: String
|
11827
11875
|
|
11828
11876
|
"""
|
11829
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
11877
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/heif-sequence, application/x-zip-compressed, text/csv, application/msword, text/comma-separated-values, text/svg-xml, application/dwg, image/tif, application/vnd.oasis.opendocument.text, image/eps, image/x-tiff, application/vnd.pdf, image/x-ms-bmp, image/bmp, image/svg, image/heif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/jpeg, application/svg+xml, application/gzip, image/heic-sequence, text/plain, image/svg+xml, application/jpg, drawing/x-dwg, application/x-rar, image/heic, application/vnd.ms-excel, drawing/dwg, application/x-tiff, application/tiff, drawing/x-dwf, application/x-jpg, text/x-comma-separated-values, application/x-gzip, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/dxf, text/x-pdf, application/vnd.ms-powerpoint, application/zip, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/gzipped, application/x-rar-compressed, image/webp, image/gif, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/dxf, text/pdf, application/acad, application/postscript, application/x-eps, application/x-rtf, image/tiff, image/x-tif, image/x-dxf, application/x-autocad, image/x-bmp, image/vnd.dwg, application/vnd.oasis.opendocument.spreadsheet, text/rtf, application/x-dxf, application/acrobat, application/eps, application/rtf, application/excel, application/pdf, image/jpg, image/x-eps, application/gzip-compressed, image/x-dwg, application/vnd.oasis.opendocument.presentation, text/svg, application/x-csv, application/x-pdf, application/csv, application/x-tar, application/x-acad, image/png, application/tif, application/x-tif, text/x-csv, application/x-dwg, application/vnd.ms-word, pplication/vnd.rar.
|
11830
11878
|
"""
|
11831
11879
|
file: Upload!
|
11832
11880
|
|
@@ -14055,11 +14103,6 @@ type Mutation {
|
|
14055
14103
|
ID of the user to override with (only available for use by Marketplace Administrators)
|
14056
14104
|
"""
|
14057
14105
|
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
14106
|
): CheckoutComplete
|
14064
14107
|
|
14065
14108
|
"""Create a new checkout."""
|
@@ -14203,7 +14246,7 @@ type Mutation {
|
|
14203
14246
|
"""Deletes a checkout."""
|
14204
14247
|
checkoutDelete(
|
14205
14248
|
"""Token of a checkout to delete."""
|
14206
|
-
token:
|
14249
|
+
token: NauticalUUID!
|
14207
14250
|
): CheckoutDelete
|
14208
14251
|
|
14209
14252
|
"""Adds purchase order number to a checkout."""
|