@smartytalent/mcp-tools 0.1.33-dev.20 → 0.1.33-dev.21

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 +66 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -276,6 +276,28 @@
276
276
  }
277
277
  }
278
278
  }
279
+ },
280
+ "forms": {
281
+ "title": "TenantRelationshipsFormsSchema",
282
+ "type": "object",
283
+ "description": "Tenant-wide default forms per kind. Up to one form per FormKind value (jobBrief, candidateSubmission, talentSubmission, general). Designates which form's schema is canonical for each intake channel - the inbound email agent reads this to find the form whose fields it should populate when creating a brief.",
284
+ "properties": {
285
+ "data": {
286
+ "type": "array",
287
+ "items": {
288
+ "title": "TenantRelationshipsFormsDataSchema",
289
+ "type": "object",
290
+ "properties": {
291
+ "type": {
292
+ "type": "string"
293
+ },
294
+ "id": {
295
+ "type": "string"
296
+ }
297
+ }
298
+ }
299
+ }
300
+ }
279
301
  }
280
302
  }
281
303
  }
@@ -545,6 +567,28 @@
545
567
  }
546
568
  }
547
569
  }
570
+ },
571
+ "forms": {
572
+ "title": "TenantRelationshipsFormsSchema",
573
+ "type": "object",
574
+ "description": "Tenant-wide default forms per kind. Up to one form per FormKind value (jobBrief, candidateSubmission, talentSubmission, general). Designates which form's schema is canonical for each intake channel - the inbound email agent reads this to find the form whose fields it should populate when creating a brief.",
575
+ "properties": {
576
+ "data": {
577
+ "type": "array",
578
+ "items": {
579
+ "title": "TenantRelationshipsFormsDataSchema",
580
+ "type": "object",
581
+ "properties": {
582
+ "type": {
583
+ "type": "string"
584
+ },
585
+ "id": {
586
+ "type": "string"
587
+ }
588
+ }
589
+ }
590
+ }
591
+ }
548
592
  }
549
593
  }
550
594
  }
@@ -7489,6 +7533,17 @@
7489
7533
  "status": {
7490
7534
  "type": "string"
7491
7535
  },
7536
+ "kind": {
7537
+ "type": "string",
7538
+ "enum": [
7539
+ "jobBrief",
7540
+ "candidateSubmission",
7541
+ "talentSubmission",
7542
+ "general"
7543
+ ],
7544
+ "default": "general",
7545
+ "description": "Role marker. Identifies which downstream resource this form's\nsubmission becomes:\n - jobBrief: produces a Brief about a Job (email/api intake;\n consumed by the create-job-from-brief workflow).\n - candidateSubmission: produces a Submission about a\n Candidate (apply form intake).\n - talentSubmission: produces a Submission about a Talent.\n - general: catch-all / undecided.\nTenant pins one form per kind as its default via\n`tenant.relationships.forms`. Mirrors the role-marker pattern\nused on Feedback (`stage`)."
7546
+ },
7492
7547
  "short_code": {
7493
7548
  "type": "string"
7494
7549
  },
@@ -7621,6 +7676,17 @@
7621
7676
  "status": {
7622
7677
  "type": "string"
7623
7678
  },
7679
+ "kind": {
7680
+ "type": "string",
7681
+ "enum": [
7682
+ "jobBrief",
7683
+ "candidateSubmission",
7684
+ "talentSubmission",
7685
+ "general"
7686
+ ],
7687
+ "default": "general",
7688
+ "description": "Role marker. Identifies which downstream resource this form's\nsubmission becomes:\n - jobBrief: produces a Brief about a Job (email/api intake;\n consumed by the create-job-from-brief workflow).\n - candidateSubmission: produces a Submission about a\n Candidate (apply form intake).\n - talentSubmission: produces a Submission about a Talent.\n - general: catch-all / undecided.\nTenant pins one form per kind as its default via\n`tenant.relationships.forms`. Mirrors the role-marker pattern\nused on Feedback (`stage`)."
7689
+ },
7624
7690
  "short_code": {
7625
7691
  "type": "string"
7626
7692
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.33-dev.20",
3
+ "version": "0.1.33-dev.21",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",