@smartytalent/openai-tools 0.1.33-dev.50 → 0.1.33-dev.51

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 +115 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -17362,6 +17362,121 @@
17362
17362
  }
17363
17363
  }
17364
17364
  },
17365
+ "relationships": {
17366
+ "title": "AttemptRelationshipsSchema",
17367
+ "type": "object",
17368
+ "properties": {
17369
+ "assessment": {
17370
+ "title": "AttemptRelationshipsAssessmentSchema",
17371
+ "type": "object",
17372
+ "properties": {
17373
+ "data": {
17374
+ "title": "AttemptRelationshipsAssessmentDataSchema",
17375
+ "type": "object",
17376
+ "properties": {
17377
+ "type": {
17378
+ "type": "string",
17379
+ "enum": [
17380
+ "assessments"
17381
+ ]
17382
+ },
17383
+ "id": {
17384
+ "type": "string"
17385
+ }
17386
+ }
17387
+ }
17388
+ },
17389
+ "description": "FK to the template this attempt is a run of."
17390
+ },
17391
+ "candidate": {
17392
+ "title": "AttemptRelationshipsCandidateSchema",
17393
+ "type": "object",
17394
+ "properties": {
17395
+ "data": {
17396
+ "title": "AttemptRelationshipsCandidateDataSchema",
17397
+ "type": "object",
17398
+ "properties": {
17399
+ "type": {
17400
+ "type": "string",
17401
+ "enum": [
17402
+ "candidates"
17403
+ ]
17404
+ },
17405
+ "id": {
17406
+ "type": "string"
17407
+ }
17408
+ }
17409
+ }
17410
+ }
17411
+ },
17412
+ "job": {
17413
+ "title": "AttemptRelationshipsJobSchema",
17414
+ "type": "object",
17415
+ "properties": {
17416
+ "data": {
17417
+ "title": "AttemptRelationshipsJobDataSchema",
17418
+ "type": "object",
17419
+ "properties": {
17420
+ "type": {
17421
+ "type": "string",
17422
+ "enum": [
17423
+ "jobs"
17424
+ ]
17425
+ },
17426
+ "id": {
17427
+ "type": "string"
17428
+ }
17429
+ }
17430
+ }
17431
+ },
17432
+ "description": "Denormalised from the assessment template - the role this attempt is screening for."
17433
+ },
17434
+ "report": {
17435
+ "title": "AttemptRelationshipsReportSchema",
17436
+ "type": "object",
17437
+ "properties": {
17438
+ "data": {
17439
+ "title": "AttemptRelationshipsReportDataSchema",
17440
+ "type": "object",
17441
+ "properties": {
17442
+ "type": {
17443
+ "type": "string",
17444
+ "enum": [
17445
+ "files"
17446
+ ]
17447
+ },
17448
+ "id": {
17449
+ "type": "string"
17450
+ }
17451
+ }
17452
+ }
17453
+ },
17454
+ "description": "Generated PDF report for this attempt's evaluation. Populated post-evaluation."
17455
+ },
17456
+ "files": {
17457
+ "title": "AttemptRelationshipsFilesSchema",
17458
+ "type": "object",
17459
+ "description": "FileResources attached to this attempt - one per file the\ncandidate uploaded as a `file-upload` or `video-recording`\nanswer. Populated by the workflow's `trigger_evaluation`\nstep after `process_attachments` registers each file with\nthe file service. Use `?include=files` on `showAttempt` /\n`showGuestAttempt` to sideload the FileResources in\n`included[]` (single round-trip preview).\nThe answer-to-file mapping lives on `FileResource.meta.questionId`\n(set at `file:process` time), not on AnswerFileSchema -\nrelated-resource IDs in attributes would violate JSON:API.",
17460
+ "properties": {
17461
+ "data": {
17462
+ "type": "array",
17463
+ "items": {
17464
+ "title": "AttemptRelationshipsFilesDataSchema",
17465
+ "type": "object",
17466
+ "properties": {
17467
+ "type": {
17468
+ "type": "string"
17469
+ },
17470
+ "id": {
17471
+ "type": "string"
17472
+ }
17473
+ }
17474
+ }
17475
+ }
17476
+ }
17477
+ }
17478
+ }
17479
+ },
17365
17480
  "meta": {
17366
17481
  "type": "object",
17367
17482
  "description": "Free-form metadata. The assessment workflow uses\nmeta.runContext to stash the runId/shardId of the\nparking long-running step so the eventbus resumer\ncan wake the workflow on ATTEMPT_SUBMITTED.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.1.33-dev.50",
3
+ "version": "0.1.33-dev.51",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",