@smartytalent/openai-tools 0.1.33-dev.25 → 0.1.33-dev.26
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 +45 -2
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -11068,13 +11068,24 @@
|
|
|
11068
11068
|
"type": "string",
|
|
11069
11069
|
"enum": [
|
|
11070
11070
|
"received",
|
|
11071
|
+
"draft",
|
|
11072
|
+
"scheduled",
|
|
11073
|
+
"cancelled",
|
|
11071
11074
|
"queued",
|
|
11072
11075
|
"sent",
|
|
11073
11076
|
"delivered",
|
|
11074
11077
|
"failed",
|
|
11075
11078
|
"archived"
|
|
11076
11079
|
],
|
|
11077
|
-
"description": "Lifecycle state. Inbound rows go straight to `received`. Outbound
|
|
11080
|
+
"description": "Lifecycle state. Inbound rows go straight to `received`. Outbound rows that go through an operator review window or explicit scheduling start at `draft` (editable) or `scheduled` (Schedule armed for fireAt); on Schedule fire they progress queued -> sent -> delivered (or failed). `cancelled` is the terminal state when an operator hard-killed a draft / scheduled row before fire. `archived` is a terminal soft-delete for both directions."
|
|
11081
|
+
},
|
|
11082
|
+
"scheduledFireAt": {
|
|
11083
|
+
"type": "string",
|
|
11084
|
+
"description": "ISO 8601 timestamp at which the Schedule row armed for this chat will fire. Set on direction=outbound rows that go through a review window or explicit scheduling. Operators can PATCH this to reschedule; the eventbus PATCHes the underlying Schedule row in lockstep. Mirror of email.attributes.scheduledFireAt."
|
|
11085
|
+
},
|
|
11086
|
+
"scheduleId": {
|
|
11087
|
+
"type": "string",
|
|
11088
|
+
"description": "FK denormalisation of relationships.schedule for cheap read paths. Populated by the chat eventbus after it arms a Schedule row in response to chat:created with scheduledFireAt set. Mirror of email.attributes.scheduleId."
|
|
11078
11089
|
},
|
|
11079
11090
|
"languageCode": {
|
|
11080
11091
|
"type": "string",
|
|
@@ -11199,6 +11210,25 @@
|
|
|
11199
11210
|
}
|
|
11200
11211
|
}
|
|
11201
11212
|
}
|
|
11213
|
+
},
|
|
11214
|
+
"schedule": {
|
|
11215
|
+
"title": "ChatRelationshipsScheduleSchema",
|
|
11216
|
+
"description": "Schedule row armed for this chat's outbound dispatch. Set when scheduledFireAt is populated; null on inbound rows or on outbound rows that bypass the review window. Operators reschedule/cancel via PATCH/DELETE on the chat resource - the eventbus reflects those changes onto the Schedule row, never the other way around.",
|
|
11217
|
+
"type": "object",
|
|
11218
|
+
"properties": {
|
|
11219
|
+
"data": {
|
|
11220
|
+
"title": "ChatRelationshipsScheduleDataSchema",
|
|
11221
|
+
"type": "object",
|
|
11222
|
+
"properties": {
|
|
11223
|
+
"type": {
|
|
11224
|
+
"type": "string"
|
|
11225
|
+
},
|
|
11226
|
+
"id": {
|
|
11227
|
+
"type": "string"
|
|
11228
|
+
}
|
|
11229
|
+
}
|
|
11230
|
+
}
|
|
11231
|
+
}
|
|
11202
11232
|
}
|
|
11203
11233
|
}
|
|
11204
11234
|
},
|
|
@@ -11335,13 +11365,24 @@
|
|
|
11335
11365
|
"type": "string",
|
|
11336
11366
|
"enum": [
|
|
11337
11367
|
"received",
|
|
11368
|
+
"draft",
|
|
11369
|
+
"scheduled",
|
|
11370
|
+
"cancelled",
|
|
11338
11371
|
"queued",
|
|
11339
11372
|
"sent",
|
|
11340
11373
|
"delivered",
|
|
11341
11374
|
"failed",
|
|
11342
11375
|
"archived"
|
|
11343
11376
|
],
|
|
11344
|
-
"description": "Lifecycle state. Inbound rows go straight to `received`. Outbound
|
|
11377
|
+
"description": "Lifecycle state. Inbound rows go straight to `received`. Outbound rows that go through an operator review window or explicit scheduling start at `draft` (editable) or `scheduled` (Schedule armed for fireAt); on Schedule fire they progress queued -> sent -> delivered (or failed). `cancelled` is the terminal state when an operator hard-killed a draft / scheduled row before fire. `archived` is a terminal soft-delete for both directions."
|
|
11378
|
+
},
|
|
11379
|
+
"scheduledFireAt": {
|
|
11380
|
+
"type": "string",
|
|
11381
|
+
"description": "ISO 8601 timestamp at which the Schedule row armed for this chat will fire. Set on direction=outbound rows that go through a review window or explicit scheduling. Operators can PATCH this to reschedule; the eventbus PATCHes the underlying Schedule row in lockstep. Mirror of email.attributes.scheduledFireAt."
|
|
11382
|
+
},
|
|
11383
|
+
"scheduleId": {
|
|
11384
|
+
"type": "string",
|
|
11385
|
+
"description": "FK denormalisation of relationships.schedule for cheap read paths. Populated by the chat eventbus after it arms a Schedule row in response to chat:created with scheduledFireAt set. Mirror of email.attributes.scheduleId."
|
|
11345
11386
|
},
|
|
11346
11387
|
"languageCode": {
|
|
11347
11388
|
"type": "string",
|
|
@@ -12128,6 +12169,7 @@
|
|
|
12128
12169
|
"type": "string",
|
|
12129
12170
|
"enum": [
|
|
12130
12171
|
"emails",
|
|
12172
|
+
"chats",
|
|
12131
12173
|
"candidates",
|
|
12132
12174
|
"conversations",
|
|
12133
12175
|
"jobs",
|
|
@@ -12261,6 +12303,7 @@
|
|
|
12261
12303
|
"type": "string",
|
|
12262
12304
|
"enum": [
|
|
12263
12305
|
"emails",
|
|
12306
|
+
"chats",
|
|
12264
12307
|
"candidates",
|
|
12265
12308
|
"conversations",
|
|
12266
12309
|
"jobs",
|