@smartytalent/openai-tools 0.1.33-dev.7 → 0.1.33-dev.9
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/dist/tools.json +36 -36
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -6646,26 +6646,18 @@
|
|
|
6646
6646
|
"description": "BCC recipients. Each entry is an RFC 5322 address string."
|
|
6647
6647
|
},
|
|
6648
6648
|
"subject": {
|
|
6649
|
-
"
|
|
6650
|
-
|
|
6651
|
-
|
|
6652
|
-
|
|
6653
|
-
|
|
6654
|
-
"type": "object",
|
|
6655
|
-
"additionalProperties": true
|
|
6656
|
-
}
|
|
6657
|
-
]
|
|
6649
|
+
"type": "object",
|
|
6650
|
+
"additionalProperties": {
|
|
6651
|
+
"type": "string"
|
|
6652
|
+
},
|
|
6653
|
+
"description": "Multilingual subject keyed by IETF BCP 47 locale code (e.g. `en-US`, `pl-PL`). The DAL writes per-locale entries from the AI analyze + translate steps; the UI picks the right key based on `conversationLanguageCode`."
|
|
6658
6654
|
},
|
|
6659
6655
|
"body": {
|
|
6660
|
-
"
|
|
6661
|
-
|
|
6662
|
-
|
|
6663
|
-
|
|
6664
|
-
|
|
6665
|
-
"type": "object",
|
|
6666
|
-
"additionalProperties": true
|
|
6667
|
-
}
|
|
6668
|
-
]
|
|
6656
|
+
"type": "object",
|
|
6657
|
+
"additionalProperties": {
|
|
6658
|
+
"type": "string"
|
|
6659
|
+
},
|
|
6660
|
+
"description": "Multilingual HTML body keyed by IETF BCP 47 locale code. Same shape as `subject`. Body values are HTML strings; plain-text fallback is derived on send."
|
|
6669
6661
|
},
|
|
6670
6662
|
"shortCode": {
|
|
6671
6663
|
"type": "string"
|
|
@@ -6739,6 +6731,14 @@
|
|
|
6739
6731
|
"type": "boolean",
|
|
6740
6732
|
"description": "System-level spam verdict on this email. Set by the broker (or a future classifier) at inbound time; never reflects a single user's opinion. Distinct from `status=suppressed`, which is SES reporting we cannot deliver on OUTBOUND. Frontend's Spam folder unions (my states where isSpam=true) with (emails where isSystemSpam=true)."
|
|
6741
6733
|
},
|
|
6734
|
+
"scheduleId": {
|
|
6735
|
+
"type": "string",
|
|
6736
|
+
"description": "Foreign key to the Schedule resource driving this email's send. Populated by the wait:process workflow action right after it creates the Schedule. Null when no delayed send is pending (drafts, already-sent rows, inbound mail). To cancel the scheduled send, call DELETE /v1/schedules/{scheduleId} - the email eventbus handler listens for SCHEDULE_CANCELLED and reverts the row back to draft automatically."
|
|
6737
|
+
},
|
|
6738
|
+
"scheduledFireAt": {
|
|
6739
|
+
"type": "string",
|
|
6740
|
+
"description": "Denormalised copy of the owning Schedule's `fireAt` timestamp (ISO 8601). The scheduled-send banner reads this directly so the UI never has to round-trip to /v1/schedules just to render 'Send scheduled for X'. Source of truth is the Schedule; this field stays stable because Schedule.fireAt is immutable post-create."
|
|
6741
|
+
},
|
|
6742
6742
|
"ttl": {
|
|
6743
6743
|
"type": "string"
|
|
6744
6744
|
},
|
|
@@ -6980,26 +6980,18 @@
|
|
|
6980
6980
|
"description": "BCC recipients. Each entry is an RFC 5322 address string."
|
|
6981
6981
|
},
|
|
6982
6982
|
"subject": {
|
|
6983
|
-
"
|
|
6984
|
-
|
|
6985
|
-
|
|
6986
|
-
|
|
6987
|
-
|
|
6988
|
-
"type": "object",
|
|
6989
|
-
"additionalProperties": true
|
|
6990
|
-
}
|
|
6991
|
-
]
|
|
6983
|
+
"type": "object",
|
|
6984
|
+
"additionalProperties": {
|
|
6985
|
+
"type": "string"
|
|
6986
|
+
},
|
|
6987
|
+
"description": "Multilingual subject keyed by IETF BCP 47 locale code (e.g. `en-US`, `pl-PL`). The DAL writes per-locale entries from the AI analyze + translate steps; the UI picks the right key based on `conversationLanguageCode`."
|
|
6992
6988
|
},
|
|
6993
6989
|
"body": {
|
|
6994
|
-
"
|
|
6995
|
-
|
|
6996
|
-
|
|
6997
|
-
|
|
6998
|
-
|
|
6999
|
-
"type": "object",
|
|
7000
|
-
"additionalProperties": true
|
|
7001
|
-
}
|
|
7002
|
-
]
|
|
6990
|
+
"type": "object",
|
|
6991
|
+
"additionalProperties": {
|
|
6992
|
+
"type": "string"
|
|
6993
|
+
},
|
|
6994
|
+
"description": "Multilingual HTML body keyed by IETF BCP 47 locale code. Same shape as `subject`. Body values are HTML strings; plain-text fallback is derived on send."
|
|
7003
6995
|
},
|
|
7004
6996
|
"shortCode": {
|
|
7005
6997
|
"type": "string"
|
|
@@ -7073,6 +7065,14 @@
|
|
|
7073
7065
|
"type": "boolean",
|
|
7074
7066
|
"description": "System-level spam verdict on this email. Set by the broker (or a future classifier) at inbound time; never reflects a single user's opinion. Distinct from `status=suppressed`, which is SES reporting we cannot deliver on OUTBOUND. Frontend's Spam folder unions (my states where isSpam=true) with (emails where isSystemSpam=true)."
|
|
7075
7067
|
},
|
|
7068
|
+
"scheduleId": {
|
|
7069
|
+
"type": "string",
|
|
7070
|
+
"description": "Foreign key to the Schedule resource driving this email's send. Populated by the wait:process workflow action right after it creates the Schedule. Null when no delayed send is pending (drafts, already-sent rows, inbound mail). To cancel the scheduled send, call DELETE /v1/schedules/{scheduleId} - the email eventbus handler listens for SCHEDULE_CANCELLED and reverts the row back to draft automatically."
|
|
7071
|
+
},
|
|
7072
|
+
"scheduledFireAt": {
|
|
7073
|
+
"type": "string",
|
|
7074
|
+
"description": "Denormalised copy of the owning Schedule's `fireAt` timestamp (ISO 8601). The scheduled-send banner reads this directly so the UI never has to round-trip to /v1/schedules just to render 'Send scheduled for X'. Source of truth is the Schedule; this field stays stable because Schedule.fireAt is immutable post-create."
|
|
7075
|
+
},
|
|
7076
7076
|
"ttl": {
|
|
7077
7077
|
"type": "string"
|
|
7078
7078
|
},
|