@smartytalent/openai-tools 0.9.11 → 0.9.12

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.
Files changed (2) hide show
  1. package/dist/tools.json +40 -2
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -17027,7 +17027,7 @@
17027
17027
  },
17028
17028
  "relationships": {
17029
17029
  "title": "TaskRelationshipsRequestSchema",
17030
- "description": "Request shape: to-one links keyed plural (jobs/conversations/emails/talents/candidates). `author` is deliberately NOT here - it is stamped server-side from the authorizer and is immutable. On PATCH each key merges independently; a {data: null} link is a no-op (unlinking is not a PATCH door). Operator lane: an emails:reply task names the thread through `conversations` (and optionally the answered mail through `emails`); an emails:compose task names the addressee through `talents` or `candidates` (a candidate resolves to its talent's e-mail) or, failing both, through meta.recipientEmail; an emails:send task names the held draft through `emails`.",
17030
+ "description": "Request shape: to-one links keyed plural (jobs/briefs/conversations/emails/talents/candidates). `author` is deliberately NOT here - it is stamped server-side from the authorizer and is immutable. On PATCH each key merges independently; a {data: null} link is a no-op (unlinking is not a PATCH door). Operator lane: an emails:reply task names the thread through `conversations` (and optionally the answered mail through `emails`); an emails:compose task names the addressee through `talents` or `candidates` (a candidate resolves to its talent's e-mail) or, failing both, through meta.recipientEmail; an emails:send task names the held draft through `emails`.",
17031
17031
  "type": "object",
17032
17032
  "properties": {
17033
17033
  "jobs": {
@@ -17048,6 +17048,25 @@
17048
17048
  }
17049
17049
  }
17050
17050
  },
17051
+ "briefs": {
17052
+ "title": "TaskRelationshipsRequestBriefsSchema",
17053
+ "description": "The brief this task concerns; the intent-inbox writers set it, and an operator task may carry it for context.",
17054
+ "type": "object",
17055
+ "properties": {
17056
+ "data": {
17057
+ "title": "TaskRelationshipsRequestBriefsDataSchema",
17058
+ "type": "object",
17059
+ "properties": {
17060
+ "type": {
17061
+ "type": "string"
17062
+ },
17063
+ "id": {
17064
+ "type": "string"
17065
+ }
17066
+ }
17067
+ }
17068
+ }
17069
+ },
17051
17070
  "conversations": {
17052
17071
  "title": "TaskRelationshipsRequestConversationsSchema",
17053
17072
  "type": "object",
@@ -17247,7 +17266,7 @@
17247
17266
  },
17248
17267
  "relationships": {
17249
17268
  "title": "TaskRelationshipsRequestSchema",
17250
- "description": "Request shape: to-one links keyed plural (jobs/conversations/emails/talents/candidates). `author` is deliberately NOT here - it is stamped server-side from the authorizer and is immutable. On PATCH each key merges independently; a {data: null} link is a no-op (unlinking is not a PATCH door). Operator lane: an emails:reply task names the thread through `conversations` (and optionally the answered mail through `emails`); an emails:compose task names the addressee through `talents` or `candidates` (a candidate resolves to its talent's e-mail) or, failing both, through meta.recipientEmail; an emails:send task names the held draft through `emails`.",
17269
+ "description": "Request shape: to-one links keyed plural (jobs/briefs/conversations/emails/talents/candidates). `author` is deliberately NOT here - it is stamped server-side from the authorizer and is immutable. On PATCH each key merges independently; a {data: null} link is a no-op (unlinking is not a PATCH door). Operator lane: an emails:reply task names the thread through `conversations` (and optionally the answered mail through `emails`); an emails:compose task names the addressee through `talents` or `candidates` (a candidate resolves to its talent's e-mail) or, failing both, through meta.recipientEmail; an emails:send task names the held draft through `emails`.",
17251
17270
  "type": "object",
17252
17271
  "properties": {
17253
17272
  "jobs": {
@@ -17268,6 +17287,25 @@
17268
17287
  }
17269
17288
  }
17270
17289
  },
17290
+ "briefs": {
17291
+ "title": "TaskRelationshipsRequestBriefsSchema",
17292
+ "description": "The brief this task concerns; the intent-inbox writers set it, and an operator task may carry it for context.",
17293
+ "type": "object",
17294
+ "properties": {
17295
+ "data": {
17296
+ "title": "TaskRelationshipsRequestBriefsDataSchema",
17297
+ "type": "object",
17298
+ "properties": {
17299
+ "type": {
17300
+ "type": "string"
17301
+ },
17302
+ "id": {
17303
+ "type": "string"
17304
+ }
17305
+ }
17306
+ }
17307
+ }
17308
+ },
17271
17309
  "conversations": {
17272
17310
  "title": "TaskRelationshipsRequestConversationsSchema",
17273
17311
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.9.11",
3
+ "version": "0.9.12",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",