@smartytalent/mcp-tools 0.2.3 → 0.2.4-rc.2

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 +20 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -112,6 +112,16 @@
112
112
  "shortCode": {
113
113
  "type": "string"
114
114
  },
115
+ "archivedAt": {
116
+ "type": "string",
117
+ "format": "date-time",
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
+ },
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
+ },
115
125
  "timestamps": {
116
126
  "title": "ResourceTimestampsSchema",
117
127
  "type": "object",
@@ -425,6 +435,16 @@
425
435
  "shortCode": {
426
436
  "type": "string"
427
437
  },
438
+ "archivedAt": {
439
+ "type": "string",
440
+ "format": "date-time",
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)."
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
+ },
428
448
  "timestamps": {
429
449
  "title": "ResourceTimestampsSchema",
430
450
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.2.3",
3
+ "version": "0.2.4-rc.2",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",