@smartytalent/mcp-tools 0.1.33-dev.15 → 0.1.33-dev.17
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.
- package/dist/tools.json +179 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -12495,6 +12495,185 @@
|
|
|
12495
12495
|
"operationId": "stateOptions"
|
|
12496
12496
|
}
|
|
12497
12497
|
},
|
|
12498
|
+
{
|
|
12499
|
+
"name": "list_aggregates",
|
|
12500
|
+
"description": "List Aggregates",
|
|
12501
|
+
"inputSchema": {
|
|
12502
|
+
"type": "object",
|
|
12503
|
+
"properties": {
|
|
12504
|
+
"filterResourceType": {
|
|
12505
|
+
"type": "string",
|
|
12506
|
+
"description": "Only return aggregates for this resource type (e.g. emails).",
|
|
12507
|
+
"enum": [
|
|
12508
|
+
"emails",
|
|
12509
|
+
"candidates",
|
|
12510
|
+
"conversations",
|
|
12511
|
+
"jobs",
|
|
12512
|
+
"talents",
|
|
12513
|
+
"personas",
|
|
12514
|
+
"reports",
|
|
12515
|
+
"tasks"
|
|
12516
|
+
]
|
|
12517
|
+
},
|
|
12518
|
+
"filterDimension": {
|
|
12519
|
+
"type": "string",
|
|
12520
|
+
"description": "Only return aggregates for this dimension (e.g. byFolder, byStatus). Triggers the `meta.by{Dimension}` overlay in the response."
|
|
12521
|
+
},
|
|
12522
|
+
"filterCategory": {
|
|
12523
|
+
"type": "string",
|
|
12524
|
+
"description": "Only return aggregates for this category within the dimension (e.g. received, sent)."
|
|
12525
|
+
},
|
|
12526
|
+
"filterKind": {
|
|
12527
|
+
"type": "string",
|
|
12528
|
+
"description": "Only return aggregates for this projection kind.",
|
|
12529
|
+
"enum": [
|
|
12530
|
+
"total",
|
|
12531
|
+
"seen",
|
|
12532
|
+
"unseen"
|
|
12533
|
+
]
|
|
12534
|
+
},
|
|
12535
|
+
"pageSize": {
|
|
12536
|
+
"type": "integer",
|
|
12537
|
+
"description": "Specifies the number of items to retrieve per page. The maximum value is 100."
|
|
12538
|
+
},
|
|
12539
|
+
"pageAfter": {
|
|
12540
|
+
"type": "string",
|
|
12541
|
+
"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."
|
|
12542
|
+
},
|
|
12543
|
+
"pageBefore": {
|
|
12544
|
+
"type": "string",
|
|
12545
|
+
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
12546
|
+
}
|
|
12547
|
+
}
|
|
12548
|
+
},
|
|
12549
|
+
"_meta": {
|
|
12550
|
+
"method": "GET",
|
|
12551
|
+
"path": "/v1/aggregates",
|
|
12552
|
+
"operationId": "listAggregates"
|
|
12553
|
+
}
|
|
12554
|
+
},
|
|
12555
|
+
{
|
|
12556
|
+
"name": "aggregates_options",
|
|
12557
|
+
"description": "Aggregates Options",
|
|
12558
|
+
"inputSchema": {
|
|
12559
|
+
"type": "object",
|
|
12560
|
+
"properties": {}
|
|
12561
|
+
},
|
|
12562
|
+
"_meta": {
|
|
12563
|
+
"method": "OPTIONS",
|
|
12564
|
+
"path": "/v1/aggregates",
|
|
12565
|
+
"operationId": "aggregatesOptions"
|
|
12566
|
+
}
|
|
12567
|
+
},
|
|
12568
|
+
{
|
|
12569
|
+
"name": "show_aggregate",
|
|
12570
|
+
"description": "Show Aggregate",
|
|
12571
|
+
"inputSchema": {
|
|
12572
|
+
"type": "object",
|
|
12573
|
+
"properties": {}
|
|
12574
|
+
},
|
|
12575
|
+
"_meta": {
|
|
12576
|
+
"method": "GET",
|
|
12577
|
+
"path": "/v1/aggregates/{aggregateId}",
|
|
12578
|
+
"operationId": "showAggregate"
|
|
12579
|
+
}
|
|
12580
|
+
},
|
|
12581
|
+
{
|
|
12582
|
+
"name": "update_aggregate",
|
|
12583
|
+
"description": "Update Aggregate (admin)",
|
|
12584
|
+
"inputSchema": {
|
|
12585
|
+
"title": "UpdateAggregateRequestBody",
|
|
12586
|
+
"type": "object",
|
|
12587
|
+
"required": [
|
|
12588
|
+
"data"
|
|
12589
|
+
],
|
|
12590
|
+
"properties": {
|
|
12591
|
+
"data": {
|
|
12592
|
+
"title": "UpdateAggregateRequestBodyData",
|
|
12593
|
+
"type": "object",
|
|
12594
|
+
"required": [
|
|
12595
|
+
"type",
|
|
12596
|
+
"id",
|
|
12597
|
+
"attributes"
|
|
12598
|
+
],
|
|
12599
|
+
"properties": {
|
|
12600
|
+
"type": {
|
|
12601
|
+
"type": "string",
|
|
12602
|
+
"enum": [
|
|
12603
|
+
"aggregates"
|
|
12604
|
+
]
|
|
12605
|
+
},
|
|
12606
|
+
"id": {
|
|
12607
|
+
"type": "string"
|
|
12608
|
+
},
|
|
12609
|
+
"attributes": {
|
|
12610
|
+
"title": "AggregateAttributesSchema",
|
|
12611
|
+
"type": "object",
|
|
12612
|
+
"properties": {
|
|
12613
|
+
"resourceType": {
|
|
12614
|
+
"type": "string",
|
|
12615
|
+
"description": "The resource being counted (e.g. `emails`, `candidates`). Matches the `resourceType` enum used by the state service."
|
|
12616
|
+
},
|
|
12617
|
+
"dimension": {
|
|
12618
|
+
"type": "string",
|
|
12619
|
+
"description": "The categorisation axis (e.g. `byFolder` for emails, `byStatus` for candidates). Each owning service publishes its own dimensions."
|
|
12620
|
+
},
|
|
12621
|
+
"category": {
|
|
12622
|
+
"type": "string",
|
|
12623
|
+
"description": "A specific value within the dimension (e.g. `received`, `sent`, `draft` when dimension=byFolder). Lives in the composite id between dimension and kind."
|
|
12624
|
+
},
|
|
12625
|
+
"kind": {
|
|
12626
|
+
"type": "string",
|
|
12627
|
+
"enum": [
|
|
12628
|
+
"total",
|
|
12629
|
+
"unseen",
|
|
12630
|
+
"seen"
|
|
12631
|
+
],
|
|
12632
|
+
"description": "Which projection of the category this row holds. `total` counts every resource; `seen` counts states with isSeen=true; `unseen` is total minus seen."
|
|
12633
|
+
},
|
|
12634
|
+
"value": {
|
|
12635
|
+
"type": "integer",
|
|
12636
|
+
"description": "Current counter value. Updated via atomic ADD on event consumption; admin PATCH allows manual correction for drift recovery."
|
|
12637
|
+
},
|
|
12638
|
+
"timestamps": {
|
|
12639
|
+
"title": "ResourceTimestampsSchema",
|
|
12640
|
+
"type": "object",
|
|
12641
|
+
"properties": {
|
|
12642
|
+
"created": {
|
|
12643
|
+
"type": "string",
|
|
12644
|
+
"format": "date-time"
|
|
12645
|
+
},
|
|
12646
|
+
"modified": {
|
|
12647
|
+
"type": "string",
|
|
12648
|
+
"format": "date-time"
|
|
12649
|
+
}
|
|
12650
|
+
}
|
|
12651
|
+
}
|
|
12652
|
+
}
|
|
12653
|
+
}
|
|
12654
|
+
}
|
|
12655
|
+
}
|
|
12656
|
+
}
|
|
12657
|
+
},
|
|
12658
|
+
"_meta": {
|
|
12659
|
+
"method": "PATCH",
|
|
12660
|
+
"path": "/v1/aggregates/{aggregateId}",
|
|
12661
|
+
"operationId": "updateAggregate"
|
|
12662
|
+
}
|
|
12663
|
+
},
|
|
12664
|
+
{
|
|
12665
|
+
"name": "aggregate_options",
|
|
12666
|
+
"description": "Aggregate Options",
|
|
12667
|
+
"inputSchema": {
|
|
12668
|
+
"type": "object",
|
|
12669
|
+
"properties": {}
|
|
12670
|
+
},
|
|
12671
|
+
"_meta": {
|
|
12672
|
+
"method": "OPTIONS",
|
|
12673
|
+
"path": "/v1/aggregates/{aggregateId}",
|
|
12674
|
+
"operationId": "aggregateOptions"
|
|
12675
|
+
}
|
|
12676
|
+
},
|
|
12498
12677
|
{
|
|
12499
12678
|
"name": "list_labels",
|
|
12500
12679
|
"description": "List Labels",
|