@smartytalent/openai-tools 0.7.6 → 0.7.7
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 +27 -11
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -22081,21 +22081,37 @@
|
|
|
22081
22081
|
"relationships": {
|
|
22082
22082
|
"title": "NotificationRelationshipsSchema",
|
|
22083
22083
|
"type": "object",
|
|
22084
|
+
"description": "Declared in the WIRE shape, not the storage shape. Rows keep to-many entries as arrays, but transform_all_relationships serialises `users` to-ONE (RELATIONSHIP_TYPES says cardinality one) and renames it `user` - a spec written from the row therefore matches nothing and the generated client silently drops the whole relationship.",
|
|
22084
22085
|
"properties": {
|
|
22085
|
-
"
|
|
22086
|
+
"user": {
|
|
22086
22087
|
"type": "object",
|
|
22088
|
+
"description": "Who the notification is FOR. Singular and to-one on the wire.",
|
|
22087
22089
|
"properties": {
|
|
22088
22090
|
"data": {
|
|
22089
|
-
"type": "
|
|
22090
|
-
"
|
|
22091
|
-
"type":
|
|
22092
|
-
|
|
22093
|
-
|
|
22094
|
-
|
|
22095
|
-
|
|
22096
|
-
|
|
22097
|
-
|
|
22098
|
-
|
|
22091
|
+
"type": "object",
|
|
22092
|
+
"properties": {
|
|
22093
|
+
"type": {
|
|
22094
|
+
"type": "string"
|
|
22095
|
+
},
|
|
22096
|
+
"id": {
|
|
22097
|
+
"type": "string"
|
|
22098
|
+
}
|
|
22099
|
+
}
|
|
22100
|
+
}
|
|
22101
|
+
}
|
|
22102
|
+
},
|
|
22103
|
+
"subject": {
|
|
22104
|
+
"type": "object",
|
|
22105
|
+
"description": "What the notification is ABOUT - the target of the bell's deep link. Always this name, whatever the resource is, and it carries its own `type` so the client routes on that. Producers used to key this by resource type (`tasks`, `jobs`, ...), which cannot be declared here without enumerating every type any producer might ever use, so the typed client dropped all of them; it also collided with `user` outright when the subject was itself a user, overwriting the recipient. Absent when the notification is about nothing in particular.",
|
|
22106
|
+
"properties": {
|
|
22107
|
+
"data": {
|
|
22108
|
+
"type": "object",
|
|
22109
|
+
"properties": {
|
|
22110
|
+
"type": {
|
|
22111
|
+
"type": "string"
|
|
22112
|
+
},
|
|
22113
|
+
"id": {
|
|
22114
|
+
"type": "string"
|
|
22099
22115
|
}
|
|
22100
22116
|
}
|
|
22101
22117
|
}
|