@smartytalent/mcp-tools 0.1.33-dev.44 → 0.1.33-dev.45

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 +57 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -17811,6 +17811,63 @@
17811
17811
  "operationId": "reevaluateAttemptOptions"
17812
17812
  }
17813
17813
  },
17814
+ {
17815
+ "name": "upload_guest_attempt_file",
17816
+ "description": "Upload Attempt File (Guest)",
17817
+ "inputSchema": {
17818
+ "title": "UploadGuestAttemptFileRequestBody",
17819
+ "type": "object",
17820
+ "required": [
17821
+ "tenantId",
17822
+ "accessToken",
17823
+ "attemptId",
17824
+ "fileName",
17825
+ "contentType"
17826
+ ],
17827
+ "properties": {
17828
+ "tenantId": {
17829
+ "type": "string"
17830
+ },
17831
+ "accessToken": {
17832
+ "type": "string",
17833
+ "description": "Per-attempt token (same value as meta.accessToken on other guest endpoints)."
17834
+ },
17835
+ "attemptId": {
17836
+ "type": "string"
17837
+ },
17838
+ "fileName": {
17839
+ "type": "string",
17840
+ "description": "Candidate-supplied file name (no path traversal). Used for the audit trail and extension fallback."
17841
+ },
17842
+ "contentType": {
17843
+ "type": "string",
17844
+ "description": "MIME type. Server prefers a known value (mapped to canonical extension) but accepts unknown types - file:process derives extension from fileName."
17845
+ },
17846
+ "questionId": {
17847
+ "type": "string",
17848
+ "description": "Optional question id this upload is for. Used for S3 key partitioning + downstream join hint; not auth-relevant."
17849
+ }
17850
+ }
17851
+ },
17852
+ "_meta": {
17853
+ "method": "POST",
17854
+ "path": "/v1/guest/attempts/uploads",
17855
+ "operationId": "uploadGuestAttemptFile"
17856
+ }
17857
+ },
17858
+ {
17859
+ "name": "guest_attempt_upload_options",
17860
+ "description": "Guest Attempt Upload Options",
17861
+ "inputSchema": {
17862
+ "type": "object",
17863
+ "properties": {}
17864
+ },
17865
+ "_meta": {
17866
+ "method": "OPTIONS",
17867
+ "path": "/v1/guest/attempts/uploads",
17868
+ "operationId": "guestAttemptUploadOptions"
17869
+ }
17870
+ },
17814
17871
  {
17815
17872
  "name": "start_guest_attempt",
17816
17873
  "description": "Start Guest Attempt",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.33-dev.44",
3
+ "version": "0.1.33-dev.45",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",