@smartytalent/openai-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",
@@ -419,6 +429,16 @@
419
429
  "shortCode": {
420
430
  "type": "string"
421
431
  },
432
+ "archivedAt": {
433
+ "type": "string",
434
+ "format": "date-time",
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)."
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
+ },
422
442
  "timestamps": {
423
443
  "title": "ResourceTimestampsSchema",
424
444
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.2.3",
3
+ "version": "0.2.4-rc.2",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",