@smartytalent/openai-tools 0.1.30 → 0.1.31

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 +42 -3
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -285,7 +285,19 @@
285
285
  "description": "Show Tenant",
286
286
  "parameters": {
287
287
  "type": "object",
288
- "properties": {}
288
+ "properties": {
289
+ "tenantId": {
290
+ "type": "string",
291
+ "description": "The tenant's identifier"
292
+ },
293
+ "include": {
294
+ "type": "string",
295
+ "description": "JSON:API compound document request — comma-separated list of relationship paths to include in the response (e.g. `feedbacks`, `feedbacks,boeUser`). Currently advisory: the service always returns all declared relationships with empty defaults."
296
+ }
297
+ },
298
+ "required": [
299
+ "tenantId"
300
+ ]
289
301
  }
290
302
  }
291
303
  },
@@ -306,8 +318,7 @@
306
318
  "type": "object",
307
319
  "required": [
308
320
  "type",
309
- "id",
310
- "attributes"
321
+ "id"
311
322
  ],
312
323
  "properties": {
313
324
  "type": {
@@ -466,6 +477,34 @@
466
477
  "description": "Tenant-wide default form used for guest submissions when no job-specific form is configured. Set to null to clear."
467
478
  }
468
479
  }
480
+ },
481
+ "relationships": {
482
+ "title": "TenantRelationshipsSchema",
483
+ "type": "object",
484
+ "properties": {
485
+ "feedbacks": {
486
+ "title": "TenantRelationshipsFeedbacksSchema",
487
+ "type": "object",
488
+ "description": "Tenant-wide default feedback configurations. Up to one per stage (screening, assessment). Used when the job has no stage-specific feedback override.",
489
+ "properties": {
490
+ "data": {
491
+ "type": "array",
492
+ "items": {
493
+ "title": "TenantRelationshipsFeedbacksDataSchema",
494
+ "type": "object",
495
+ "properties": {
496
+ "type": {
497
+ "type": "string"
498
+ },
499
+ "id": {
500
+ "type": "string"
501
+ }
502
+ }
503
+ }
504
+ }
505
+ }
506
+ }
507
+ }
469
508
  }
470
509
  }
471
510
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.1.30",
3
+ "version": "0.1.31",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",