@smartytalent/mcp-tools 0.1.33-dev.89 → 0.1.33-dev.90

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 +196 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -10341,6 +10341,104 @@
10341
10341
  }
10342
10342
  }
10343
10343
  },
10344
+ "intakeType": {
10345
+ "type": "string",
10346
+ "enum": [
10347
+ "light",
10348
+ "full"
10349
+ ],
10350
+ "description": "How the brief was built: `full` = the criteria were extracted from\nthe raw intake; `light` = criteria cloned from a baseline job (a\nrecurring role). Drives the intake UI."
10351
+ },
10352
+ "baseline": {
10353
+ "type": "object",
10354
+ "description": "The baseline job a `light` brief was seeded from (the recurring-role\nsource). Null/absent for `full` briefs.",
10355
+ "additionalProperties": true
10356
+ },
10357
+ "intakeContext": {
10358
+ "type": "object",
10359
+ "description": "Rich recruiter-facing brief context the PDF/report is built from -\nthe WHO/intent beyond the flat criteria. Every key is best-effort\n(omitted when its source is absent), and the set evolves as the intake\ngrows, so unknown keys MUST be preserved (additionalProperties).\nKnown keys: process, responsibilities, workModel, team, targetMarket.",
10360
+ "additionalProperties": true,
10361
+ "properties": {
10362
+ "process": {
10363
+ "type": "array",
10364
+ "description": "Recruitment pipeline stages and whether each is enabled.",
10365
+ "items": {
10366
+ "type": "object",
10367
+ "properties": {
10368
+ "stage": {
10369
+ "type": "string"
10370
+ },
10371
+ "enabled": {
10372
+ "type": "boolean"
10373
+ }
10374
+ }
10375
+ }
10376
+ },
10377
+ "responsibilities": {
10378
+ "type": "object",
10379
+ "description": "Multilingual bullet lists: { locale: [string] }.",
10380
+ "additionalProperties": {
10381
+ "type": "array",
10382
+ "items": {
10383
+ "type": "string"
10384
+ }
10385
+ }
10386
+ },
10387
+ "workModel": {
10388
+ "type": "object",
10389
+ "description": "Multilingual work model text: { locale: string }.",
10390
+ "additionalProperties": {
10391
+ "type": "string"
10392
+ }
10393
+ },
10394
+ "team": {
10395
+ "type": "object",
10396
+ "description": "People + feedback SLA around the role.",
10397
+ "additionalProperties": true,
10398
+ "properties": {
10399
+ "hiringManager": {
10400
+ "type": "string"
10401
+ },
10402
+ "decisionMaker": {
10403
+ "type": "string"
10404
+ },
10405
+ "recruiter": {
10406
+ "type": "string"
10407
+ },
10408
+ "organization": {
10409
+ "type": "string"
10410
+ },
10411
+ "department": {
10412
+ "type": "object",
10413
+ "description": "Multilingual: { locale: string }.",
10414
+ "additionalProperties": {
10415
+ "type": "string"
10416
+ }
10417
+ },
10418
+ "sla": {
10419
+ "type": "object",
10420
+ "description": "Multilingual feedback promise: { locale: string }.",
10421
+ "additionalProperties": {
10422
+ "type": "string"
10423
+ }
10424
+ }
10425
+ }
10426
+ },
10427
+ "targetMarket": {
10428
+ "type": "object",
10429
+ "description": "Multilingual lists per facet: { facet: { locale: [string] } }.",
10430
+ "additionalProperties": {
10431
+ "type": "object",
10432
+ "additionalProperties": {
10433
+ "type": "array",
10434
+ "items": {
10435
+ "type": "string"
10436
+ }
10437
+ }
10438
+ }
10439
+ }
10440
+ }
10441
+ },
10344
10442
  "timestamps": {
10345
10443
  "title": "ResourceTimestampsSchema",
10346
10444
  "type": "object",
@@ -10669,6 +10767,104 @@
10669
10767
  }
10670
10768
  }
10671
10769
  },
10770
+ "intakeType": {
10771
+ "type": "string",
10772
+ "enum": [
10773
+ "light",
10774
+ "full"
10775
+ ],
10776
+ "description": "How the brief was built: `full` = the criteria were extracted from\nthe raw intake; `light` = criteria cloned from a baseline job (a\nrecurring role). Drives the intake UI."
10777
+ },
10778
+ "baseline": {
10779
+ "type": "object",
10780
+ "description": "The baseline job a `light` brief was seeded from (the recurring-role\nsource). Null/absent for `full` briefs.",
10781
+ "additionalProperties": true
10782
+ },
10783
+ "intakeContext": {
10784
+ "type": "object",
10785
+ "description": "Rich recruiter-facing brief context the PDF/report is built from -\nthe WHO/intent beyond the flat criteria. Every key is best-effort\n(omitted when its source is absent), and the set evolves as the intake\ngrows, so unknown keys MUST be preserved (additionalProperties).\nKnown keys: process, responsibilities, workModel, team, targetMarket.",
10786
+ "additionalProperties": true,
10787
+ "properties": {
10788
+ "process": {
10789
+ "type": "array",
10790
+ "description": "Recruitment pipeline stages and whether each is enabled.",
10791
+ "items": {
10792
+ "type": "object",
10793
+ "properties": {
10794
+ "stage": {
10795
+ "type": "string"
10796
+ },
10797
+ "enabled": {
10798
+ "type": "boolean"
10799
+ }
10800
+ }
10801
+ }
10802
+ },
10803
+ "responsibilities": {
10804
+ "type": "object",
10805
+ "description": "Multilingual bullet lists: { locale: [string] }.",
10806
+ "additionalProperties": {
10807
+ "type": "array",
10808
+ "items": {
10809
+ "type": "string"
10810
+ }
10811
+ }
10812
+ },
10813
+ "workModel": {
10814
+ "type": "object",
10815
+ "description": "Multilingual work model text: { locale: string }.",
10816
+ "additionalProperties": {
10817
+ "type": "string"
10818
+ }
10819
+ },
10820
+ "team": {
10821
+ "type": "object",
10822
+ "description": "People + feedback SLA around the role.",
10823
+ "additionalProperties": true,
10824
+ "properties": {
10825
+ "hiringManager": {
10826
+ "type": "string"
10827
+ },
10828
+ "decisionMaker": {
10829
+ "type": "string"
10830
+ },
10831
+ "recruiter": {
10832
+ "type": "string"
10833
+ },
10834
+ "organization": {
10835
+ "type": "string"
10836
+ },
10837
+ "department": {
10838
+ "type": "object",
10839
+ "description": "Multilingual: { locale: string }.",
10840
+ "additionalProperties": {
10841
+ "type": "string"
10842
+ }
10843
+ },
10844
+ "sla": {
10845
+ "type": "object",
10846
+ "description": "Multilingual feedback promise: { locale: string }.",
10847
+ "additionalProperties": {
10848
+ "type": "string"
10849
+ }
10850
+ }
10851
+ }
10852
+ },
10853
+ "targetMarket": {
10854
+ "type": "object",
10855
+ "description": "Multilingual lists per facet: { facet: { locale: [string] } }.",
10856
+ "additionalProperties": {
10857
+ "type": "object",
10858
+ "additionalProperties": {
10859
+ "type": "array",
10860
+ "items": {
10861
+ "type": "string"
10862
+ }
10863
+ }
10864
+ }
10865
+ }
10866
+ }
10867
+ },
10672
10868
  "timestamps": {
10673
10869
  "title": "ResourceTimestampsSchema",
10674
10870
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.33-dev.89",
3
+ "version": "0.1.33-dev.90",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",