orchestrator-client 5.12.2 → 5.12.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 +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -388,6 +388,7 @@ interface SlotInfo {
|
|
|
388
388
|
taskId: string | null;
|
|
389
389
|
lastActivity: string | null;
|
|
390
390
|
idleSeconds: number | null;
|
|
391
|
+
discoveredAt?: string | null;
|
|
391
392
|
}
|
|
392
393
|
interface SlotsStatus {
|
|
393
394
|
enabled: boolean;
|
|
@@ -395,6 +396,7 @@ interface SlotsStatus {
|
|
|
395
396
|
availableSlots: number;
|
|
396
397
|
slotTools: string[];
|
|
397
398
|
acquireTimeoutSeconds: number;
|
|
399
|
+
poolSource: string;
|
|
398
400
|
slots: SlotInfo[];
|
|
399
401
|
}
|
|
400
402
|
interface ConfigurationStatus {
|
package/dist/index.d.ts
CHANGED
|
@@ -388,6 +388,7 @@ interface SlotInfo {
|
|
|
388
388
|
taskId: string | null;
|
|
389
389
|
lastActivity: string | null;
|
|
390
390
|
idleSeconds: number | null;
|
|
391
|
+
discoveredAt?: string | null;
|
|
391
392
|
}
|
|
392
393
|
interface SlotsStatus {
|
|
393
394
|
enabled: boolean;
|
|
@@ -395,6 +396,7 @@ interface SlotsStatus {
|
|
|
395
396
|
availableSlots: number;
|
|
396
397
|
slotTools: string[];
|
|
397
398
|
acquireTimeoutSeconds: number;
|
|
399
|
+
poolSource: string;
|
|
398
400
|
slots: SlotInfo[];
|
|
399
401
|
}
|
|
400
402
|
interface ConfigurationStatus {
|
package/package.json
CHANGED