@nautical-commerce/graphql-schema 1.99.3-4-g9591329d6 → 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 +16 -12
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -11438,39 +11438,43 @@ enum ExportFileSortField {
|
|
11438
11438
|
"""Event object for all models."""
|
11439
11439
|
type Event {
|
11440
11440
|
"""The unique identifier across all event tables."""
|
11441
|
-
slug: String
|
11441
|
+
slug: String!
|
11442
11442
|
|
11443
11443
|
"""The event model label formatted as 'app_label.ModelName'."""
|
11444
|
-
model: String
|
11444
|
+
model: String!
|
11445
11445
|
|
11446
11446
|
"""The primary key of the event."""
|
11447
|
-
id: BigInt
|
11447
|
+
id: BigInt!
|
11448
11448
|
|
11449
11449
|
"""When the event was created."""
|
11450
|
-
createdAt: DateTime
|
11450
|
+
createdAt: DateTime!
|
11451
11451
|
|
11452
11452
|
"""The event label."""
|
11453
|
-
label: String
|
11453
|
+
label: String!
|
11454
11454
|
|
11455
11455
|
"""The raw data of the event."""
|
11456
|
-
data: GenericScalar
|
11456
|
+
data: GenericScalar!
|
11457
11457
|
|
11458
11458
|
"""
|
11459
|
-
The diff against the previous event of the same event model and object.
|
11459
|
+
The diff against the previous event of the same event model and object, can be null if the event is an insert.
|
11460
11460
|
"""
|
11461
11461
|
diff: GenericScalar
|
11462
11462
|
|
11463
|
-
"""
|
11463
|
+
"""
|
11464
|
+
The context UUID, can be null if the event is not associated with a user or app.
|
11465
|
+
"""
|
11464
11466
|
contextId: NauticalUUID
|
11465
11467
|
|
11466
|
-
"""
|
11468
|
+
"""
|
11469
|
+
The context JSON associated with the event, can be null if the event is not associated with a user or app.
|
11470
|
+
"""
|
11467
11471
|
context: GenericScalar
|
11468
11472
|
|
11469
11473
|
"""The object model."""
|
11470
|
-
objModel: String
|
11474
|
+
objModel: String!
|
11471
11475
|
|
11472
11476
|
"""The primary key of the object."""
|
11473
|
-
objId: String
|
11477
|
+
objId: String!
|
11474
11478
|
}
|
11475
11479
|
|
11476
11480
|
type CheckoutCountableConnection {
|
@@ -11870,7 +11874,7 @@ type Mutation {
|
|
11870
11874
|
description: String
|
11871
11875
|
|
11872
11876
|
"""
|
11873
|
-
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.
|
11874
11878
|
"""
|
11875
11879
|
file: Upload!
|
11876
11880
|
|