@smartytalent/openai-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",
|
|
@@ -419,6 +424,11 @@
|
|
|
419
424
|
"shortCode": {
|
|
420
425
|
"type": "string"
|
|
421
426
|
},
|
|
427
|
+
"archivedAt": {
|
|
428
|
+
"type": "string",
|
|
429
|
+
"format": "date-time",
|
|
430
|
+
"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)."
|
|
431
|
+
},
|
|
422
432
|
"timestamps": {
|
|
423
433
|
"title": "ResourceTimestampsSchema",
|
|
424
434
|
"type": "object",
|
|
@@ -643,7 +653,16 @@
|
|
|
643
653
|
"description": "Delete Tenant",
|
|
644
654
|
"parameters": {
|
|
645
655
|
"type": "object",
|
|
646
|
-
"properties": {
|
|
656
|
+
"properties": {
|
|
657
|
+
"permanentDelete": {
|
|
658
|
+
"type": "string",
|
|
659
|
+
"description": "Set to true for immediate irreversible purge of all tenant data. Defaults to false (soft archive with a retention window).",
|
|
660
|
+
"enum": [
|
|
661
|
+
"true",
|
|
662
|
+
"false"
|
|
663
|
+
]
|
|
664
|
+
}
|
|
665
|
+
}
|
|
647
666
|
}
|
|
648
667
|
}
|
|
649
668
|
},
|