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

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 +188 -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
  },
@@ -12686,6 +12752,128 @@
12686
12752
  "operationId": "aggregateOptions"
12687
12753
  }
12688
12754
  },
12755
+ {
12756
+ "name": "list_signals",
12757
+ "description": "List Signals",
12758
+ "inputSchema": {
12759
+ "type": "object",
12760
+ "properties": {
12761
+ "filterCategory": {
12762
+ "type": "string",
12763
+ "description": "filterCategory parameter",
12764
+ "enum": [
12765
+ "inbound_email",
12766
+ "inbound_chat",
12767
+ "inbound_call",
12768
+ "inbound_webapp",
12769
+ "outbound_email",
12770
+ "integration",
12771
+ "auth",
12772
+ "data_access"
12773
+ ]
12774
+ },
12775
+ "filterAction": {
12776
+ "type": "string",
12777
+ "description": "filterAction parameter",
12778
+ "enum": [
12779
+ "rejected_unknown_principal",
12780
+ "rejected_language",
12781
+ "rejected_intent",
12782
+ "rejected_closed_context",
12783
+ "rejected_rate_limit",
12784
+ "accepted",
12785
+ "delivery_failed",
12786
+ "integration_error",
12787
+ "data_exported"
12788
+ ]
12789
+ },
12790
+ "filterActorIdentifier": {
12791
+ "type": "string",
12792
+ "description": "filterActorIdentifier parameter"
12793
+ },
12794
+ "filterSeverity": {
12795
+ "type": "string",
12796
+ "description": "filterSeverity parameter",
12797
+ "enum": [
12798
+ "info",
12799
+ "warning",
12800
+ "error"
12801
+ ]
12802
+ },
12803
+ "filterActorType": {
12804
+ "type": "string",
12805
+ "description": "filterActorType parameter",
12806
+ "enum": [
12807
+ "user",
12808
+ "candidate",
12809
+ "talent",
12810
+ "guest",
12811
+ "system"
12812
+ ]
12813
+ },
12814
+ "sort": {
12815
+ "type": "string",
12816
+ "description": "sort parameter"
12817
+ },
12818
+ "pageSize": {
12819
+ "type": "integer",
12820
+ "description": "Specifies the number of items to retrieve per page. The maximum value is 100."
12821
+ },
12822
+ "pageAfter": {
12823
+ "type": "string",
12824
+ "description": "Opaque base64-encoded cursor returned by a previous list response, used for forward cursor-based pagination. Pass the value verbatim; do not decode or mutate it."
12825
+ },
12826
+ "pageBefore": {
12827
+ "type": "string",
12828
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
12829
+ }
12830
+ }
12831
+ },
12832
+ "_meta": {
12833
+ "method": "GET",
12834
+ "path": "/v1/signals",
12835
+ "operationId": "listSignals"
12836
+ }
12837
+ },
12838
+ {
12839
+ "name": "signals_options",
12840
+ "description": "Signals Options",
12841
+ "inputSchema": {
12842
+ "type": "object",
12843
+ "properties": {}
12844
+ },
12845
+ "_meta": {
12846
+ "method": "OPTIONS",
12847
+ "path": "/v1/signals",
12848
+ "operationId": "signalsOptions"
12849
+ }
12850
+ },
12851
+ {
12852
+ "name": "show_signal",
12853
+ "description": "Show Signal",
12854
+ "inputSchema": {
12855
+ "type": "object",
12856
+ "properties": {}
12857
+ },
12858
+ "_meta": {
12859
+ "method": "GET",
12860
+ "path": "/v1/signals/{signalId}",
12861
+ "operationId": "showSignal"
12862
+ }
12863
+ },
12864
+ {
12865
+ "name": "signal_options",
12866
+ "description": "Signal Options",
12867
+ "inputSchema": {
12868
+ "type": "object",
12869
+ "properties": {}
12870
+ },
12871
+ "_meta": {
12872
+ "method": "OPTIONS",
12873
+ "path": "/v1/signals/{signalId}",
12874
+ "operationId": "signalOptions"
12875
+ }
12876
+ },
12689
12877
  {
12690
12878
  "name": "list_labels",
12691
12879
  "description": "List Labels",
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.22",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",