@smartytalent/mcp-tools 0.2.2 → 0.2.4-rc.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.
- package/dist/tools.json +20 -1
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -112,6 +112,11 @@
|
|
|
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
|
+
},
|
|
115
120
|
"timestamps": {
|
|
116
121
|
"title": "ResourceTimestampsSchema",
|
|
117
122
|
"type": "object",
|
|
@@ -425,6 +430,11 @@
|
|
|
425
430
|
"shortCode": {
|
|
426
431
|
"type": "string"
|
|
427
432
|
},
|
|
433
|
+
"archivedAt": {
|
|
434
|
+
"type": "string",
|
|
435
|
+
"format": "date-time",
|
|
436
|
+
"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
|
+
},
|
|
428
438
|
"timestamps": {
|
|
429
439
|
"title": "ResourceTimestampsSchema",
|
|
430
440
|
"type": "object",
|
|
@@ -651,7 +661,16 @@
|
|
|
651
661
|
"description": "Delete Tenant",
|
|
652
662
|
"inputSchema": {
|
|
653
663
|
"type": "object",
|
|
654
|
-
"properties": {
|
|
664
|
+
"properties": {
|
|
665
|
+
"permanentDelete": {
|
|
666
|
+
"type": "string",
|
|
667
|
+
"description": "Set to true for immediate irreversible purge of all tenant data. Defaults to false (soft archive with a retention window).",
|
|
668
|
+
"enum": [
|
|
669
|
+
"true",
|
|
670
|
+
"false"
|
|
671
|
+
]
|
|
672
|
+
}
|
|
673
|
+
}
|
|
655
674
|
},
|
|
656
675
|
"_meta": {
|
|
657
676
|
"method": "DELETE",
|