@soat/sdk 0.16.2 → 0.16.3

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/index.d.cts CHANGED
@@ -3260,9 +3260,9 @@ type MemoryEntryWriteResult = MemoryEntry & {
3260
3260
  */
3261
3261
  type QueueStats = {
3262
3262
  /**
3263
- * The active queue driver.
3263
+ * The active queue driver (`ORCHESTRATION_QUEUE_DRIVER`). Under `sqs`, `oldest_queued_age_seconds` is always `null` and `per_project` is always empty — SQS exposes neither.
3264
3264
  */
3265
- driver?: string;
3265
+ driver?: 'postgres' | 'sqs';
3266
3266
  /**
3267
3267
  * Tasks waiting to be claimed now (unclaimed and past their `available_at`). Backoff-delayed tasks are excluded.
3268
3268
  */
package/dist/index.d.mts CHANGED
@@ -3260,9 +3260,9 @@ type MemoryEntryWriteResult = MemoryEntry & {
3260
3260
  */
3261
3261
  type QueueStats = {
3262
3262
  /**
3263
- * The active queue driver.
3263
+ * The active queue driver (`ORCHESTRATION_QUEUE_DRIVER`). Under `sqs`, `oldest_queued_age_seconds` is always `null` and `per_project` is always empty — SQS exposes neither.
3264
3264
  */
3265
- driver?: string;
3265
+ driver?: 'postgres' | 'sqs';
3266
3266
  /**
3267
3267
  * Tasks waiting to be claimed now (unclaimed and past their `available_at`). Backoff-delayed tasks are excluded.
3268
3268
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soat/sdk",
3
- "version": "0.16.2",
3
+ "version": "0.16.3",
4
4
  "description": "TypeScript SDK for the SOAT API",
5
5
  "type": "module",
6
6
  "main": "dist/index.mjs",