@smartytalent/mcp-tools 0.2.4 → 0.2.5-dev.1

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 +10 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -117,6 +117,11 @@
117
117
  "format": "date-time",
118
118
  "description": "ISO timestamp the tenant was archived (soft-deleted). Present only on archived/purging tenants; null otherwise. The deletion deadline is archivedAt + the retention window (90 days on prod/test)."
119
119
  },
120
+ "deleteAt": {
121
+ "type": "string",
122
+ "format": "date-time",
123
+ "description": "Computed deadline after which an archived tenant is automatically and permanently purged (= archivedAt + the environment's retention window). Null while the tenant is active. Backend-computed and environment-correct, so clients render it directly without hardcoding the retention window. The hourly sweeper collects tenants past this deadline, so the actual purge lands within ~1h after it."
124
+ },
120
125
  "timestamps": {
121
126
  "title": "ResourceTimestampsSchema",
122
127
  "type": "object",
@@ -435,6 +440,11 @@
435
440
  "format": "date-time",
436
441
  "description": "ISO timestamp the tenant was archived (soft-deleted). Present only on archived/purging tenants; null otherwise. The deletion deadline is archivedAt + the retention window (90 days on prod/test)."
437
442
  },
443
+ "deleteAt": {
444
+ "type": "string",
445
+ "format": "date-time",
446
+ "description": "Computed deadline after which an archived tenant is automatically and permanently purged (= archivedAt + the environment's retention window). Null while the tenant is active. Backend-computed and environment-correct, so clients render it directly without hardcoding the retention window. The hourly sweeper collects tenants past this deadline, so the actual purge lands within ~1h after it."
447
+ },
438
448
  "timestamps": {
439
449
  "title": "ResourceTimestampsSchema",
440
450
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.2.4",
3
+ "version": "0.2.5-dev.1",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",