@smartytalent/openai-tools 0.2.4 → 0.2.5

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",
@@ -429,6 +434,11 @@
429
434
  "format": "date-time",
430
435
  "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
436
  },
437
+ "deleteAt": {
438
+ "type": "string",
439
+ "format": "date-time",
440
+ "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."
441
+ },
432
442
  "timestamps": {
433
443
  "title": "ResourceTimestampsSchema",
434
444
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",