@nautical-commerce/graphql-schema 4.9.1 → 4.10.0
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 +17 -0
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
|
@@ -6299,6 +6299,21 @@ type EmailEvent implements Node {
|
|
|
6299
6299
|
template: String
|
|
6300
6300
|
error: String
|
|
6301
6301
|
|
|
6302
|
+
"""
|
|
6303
|
+
Explicit send outcome. NULL on rows written before this field existed, where success had to be inferred from 'error' being empty — an inference that could not distinguish a delivered email from a crashed send.
|
|
6304
|
+
"""
|
|
6305
|
+
success: Boolean
|
|
6306
|
+
|
|
6307
|
+
"""
|
|
6308
|
+
Provider-side message identifier (Mailgun 'id'). Without it a row here cannot be correlated with the provider's own delivery logs.
|
|
6309
|
+
"""
|
|
6310
|
+
messageId: String
|
|
6311
|
+
|
|
6312
|
+
"""
|
|
6313
|
+
OpenTelemetry trace ID (32 hex chars) of the request that triggered the send, so a row here can be opened directly in tracing.
|
|
6314
|
+
"""
|
|
6315
|
+
traceId: String
|
|
6316
|
+
|
|
6302
6317
|
"""The email payload as JSON"""
|
|
6303
6318
|
payload: JSON!
|
|
6304
6319
|
|
|
@@ -6366,6 +6381,7 @@ enum EmailEventMessageType {
|
|
|
6366
6381
|
ACCOUNT_STAFF_RESET_PASSWORD
|
|
6367
6382
|
MERCHANT_ACCOUNT_SET_STAFF_PASSWORD
|
|
6368
6383
|
MERCHANT_ACCOUNT_STAFF_RESET_PASSWORD
|
|
6384
|
+
ACCOUNT_ADDED_TO_SELLER
|
|
6369
6385
|
CSV_EXPORT_PRODUCTS_SUCCESS
|
|
6370
6386
|
CSV_EXPORT_FAILED
|
|
6371
6387
|
MERCHANT_CSV_EXPORT_PRODUCTS_SUCCESS
|
|
@@ -6699,6 +6715,7 @@ enum EventTypeEnum {
|
|
|
6699
6715
|
account_staff_reset_password
|
|
6700
6716
|
merchant_account_set_staff_password
|
|
6701
6717
|
merchant_account_staff_reset_password
|
|
6718
|
+
account_added_to_seller
|
|
6702
6719
|
csv_export_products_success
|
|
6703
6720
|
csv_export_failed
|
|
6704
6721
|
merchant_csv_export_products_success
|