@rkat/sdk 0.6.34 → 0.7.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/README.md +8 -8
- package/dist/client.d.ts +92 -46
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +487 -551
- package/dist/client.js.map +1 -1
- package/dist/events.d.ts +7 -10
- package/dist/events.d.ts.map +1 -1
- package/dist/events.js +35 -17
- package/dist/events.js.map +1 -1
- package/dist/generated/events.d.ts +5 -0
- package/dist/generated/events.d.ts.map +1 -0
- package/dist/generated/events.js +48 -0
- package/dist/generated/events.js.map +1 -0
- package/dist/generated/index.d.ts +2 -0
- package/dist/generated/index.d.ts.map +1 -1
- package/dist/generated/index.js +2 -0
- package/dist/generated/index.js.map +1 -1
- package/dist/generated/types.d.ts +349 -55
- package/dist/generated/types.d.ts.map +1 -1
- package/dist/generated/types.js +354 -2
- package/dist/generated/types.js.map +1 -1
- package/dist/generated/version_compat.d.ts +6 -0
- package/dist/generated/version_compat.d.ts.map +1 -0
- package/dist/generated/version_compat.js +24 -0
- package/dist/generated/version_compat.js.map +1 -0
- package/dist/index.d.ts +3 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/live.d.ts +3 -3
- package/dist/live.d.ts.map +1 -1
- package/dist/live.js +2 -4
- package/dist/live.js.map +1 -1
- package/dist/mob.d.ts +6 -1
- package/dist/mob.d.ts.map +1 -1
- package/dist/mob.js +6 -0
- package/dist/mob.js.map +1 -1
- package/dist/subscription.d.ts +1 -0
- package/dist/subscription.d.ts.map +1 -1
- package/dist/subscription.js +19 -3
- package/dist/subscription.js.map +1 -1
- package/dist/types.d.ts +37 -171
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +1 -1
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const CONTRACT_VERSION = "0.
|
|
1
|
+
export declare const CONTRACT_VERSION = "0.7.1";
|
|
2
2
|
export interface WireUsage {
|
|
3
3
|
input_tokens: number;
|
|
4
4
|
output_tokens: number;
|
|
@@ -30,11 +30,6 @@ export interface WireProviderMeta {
|
|
|
30
30
|
provider: string;
|
|
31
31
|
[key: string]: unknown;
|
|
32
32
|
}
|
|
33
|
-
export interface WireToolCall {
|
|
34
|
-
id: string;
|
|
35
|
-
name: string;
|
|
36
|
-
args: unknown;
|
|
37
|
-
}
|
|
38
33
|
export interface WireToolResult {
|
|
39
34
|
tool_use_id: string;
|
|
40
35
|
content: WireToolResultContent;
|
|
@@ -46,7 +41,6 @@ export interface WireSessionMessage {
|
|
|
46
41
|
kind?: string;
|
|
47
42
|
body?: string;
|
|
48
43
|
content?: WireContentInput;
|
|
49
|
-
tool_calls?: WireToolCall[];
|
|
50
44
|
stop_reason?: WireStopReason;
|
|
51
45
|
blocks?: WireAssistantBlock[];
|
|
52
46
|
results?: WireToolResult[];
|
|
@@ -127,6 +121,73 @@ export interface McpLiveOpResponse {
|
|
|
127
121
|
session_id: string;
|
|
128
122
|
status: "staged" | "applied" | "rejected";
|
|
129
123
|
}
|
|
124
|
+
export type SkillName = string;
|
|
125
|
+
export type SkillScope = "builtin" | "project" | "user";
|
|
126
|
+
export type SourceIdentityStatus = "active" | "disabled" | "retired";
|
|
127
|
+
export type SourceTransportKind = "embedded" | "filesystem" | "git" | "http" | "stdio";
|
|
128
|
+
export type SourceUuid = string;
|
|
129
|
+
export type ToolName = string;
|
|
130
|
+
export interface SkillEntry {
|
|
131
|
+
description: string;
|
|
132
|
+
is_active: boolean;
|
|
133
|
+
key: SkillKey;
|
|
134
|
+
name: string;
|
|
135
|
+
scope: SkillScope;
|
|
136
|
+
shadowed_by?: SkillSourceProvenance;
|
|
137
|
+
source: SkillSourceProvenance;
|
|
138
|
+
}
|
|
139
|
+
export interface SkillKey {
|
|
140
|
+
skill_name: SkillName;
|
|
141
|
+
source_uuid: SourceUuid;
|
|
142
|
+
}
|
|
143
|
+
export interface SkillSourceProvenance {
|
|
144
|
+
display_name: string;
|
|
145
|
+
fingerprint: string;
|
|
146
|
+
source_uuid: SourceUuid;
|
|
147
|
+
status?: SourceIdentityStatus;
|
|
148
|
+
transport_kind: SourceTransportKind;
|
|
149
|
+
}
|
|
150
|
+
export interface ConfigEnvelope {
|
|
151
|
+
backend?: string;
|
|
152
|
+
config: unknown;
|
|
153
|
+
generation: number;
|
|
154
|
+
instance_id?: string;
|
|
155
|
+
realm_id?: string;
|
|
156
|
+
resolved_paths?: Record<string, unknown>;
|
|
157
|
+
}
|
|
158
|
+
export interface ConfigPatchParams {
|
|
159
|
+
expected_generation?: number;
|
|
160
|
+
patch?: unknown;
|
|
161
|
+
}
|
|
162
|
+
export interface ConfigWriteResult {
|
|
163
|
+
backend?: string;
|
|
164
|
+
config: unknown;
|
|
165
|
+
generation: number;
|
|
166
|
+
instance_id?: string;
|
|
167
|
+
live_propagation?: Record<string, unknown>;
|
|
168
|
+
realm_id?: string;
|
|
169
|
+
resolved_paths?: Record<string, unknown>;
|
|
170
|
+
}
|
|
171
|
+
export interface InterruptResult {
|
|
172
|
+
interrupted: boolean;
|
|
173
|
+
result: "interrupted" | "staged_noop";
|
|
174
|
+
session_id: string;
|
|
175
|
+
}
|
|
176
|
+
export interface ServerCapabilities {
|
|
177
|
+
contract_version: string;
|
|
178
|
+
methods: string[];
|
|
179
|
+
server_info: Record<string, unknown>;
|
|
180
|
+
}
|
|
181
|
+
export interface SkillListResponse {
|
|
182
|
+
skills: SkillEntry[];
|
|
183
|
+
}
|
|
184
|
+
export interface WorkEventsResult {
|
|
185
|
+
events: unknown[];
|
|
186
|
+
}
|
|
187
|
+
export interface WorkItemsResult {
|
|
188
|
+
items: unknown[];
|
|
189
|
+
}
|
|
190
|
+
export type ConfigSetParams = Record<string, unknown> | unknown;
|
|
130
191
|
export interface MobWireParams {
|
|
131
192
|
member: string;
|
|
132
193
|
mob_id: string;
|
|
@@ -163,7 +224,7 @@ export interface MobListResult {
|
|
|
163
224
|
}
|
|
164
225
|
export interface MobStatusResult {
|
|
165
226
|
mob_id: string;
|
|
166
|
-
status:
|
|
227
|
+
status: "Creating" | "Running" | "Stopped" | "Completed" | "Destroyed";
|
|
167
228
|
}
|
|
168
229
|
export interface MobLifecycleParams {
|
|
169
230
|
action: "stop" | "resume" | "complete" | "reset" | "destroy";
|
|
@@ -242,7 +303,6 @@ export interface MobMemberListEntryWire {
|
|
|
242
303
|
member_ref: WireMemberRef;
|
|
243
304
|
role: string;
|
|
244
305
|
runtime_mode: WireMobRuntimeMode;
|
|
245
|
-
state: WireMemberState;
|
|
246
306
|
status: WireMobMemberStatus;
|
|
247
307
|
wired_to?: string[];
|
|
248
308
|
}
|
|
@@ -258,17 +318,53 @@ export interface WireMobToolConfig {
|
|
|
258
318
|
workgraph?: boolean;
|
|
259
319
|
}
|
|
260
320
|
export interface WireMobProfile {
|
|
321
|
+
auto_compact_threshold?: number;
|
|
261
322
|
backend?: WireMobBackendKind;
|
|
262
323
|
external_addressable?: boolean;
|
|
324
|
+
image_generation_provider?: Provider;
|
|
263
325
|
max_inline_peer_notifications?: number;
|
|
264
326
|
model: string;
|
|
265
327
|
output_schema?: unknown;
|
|
266
328
|
peer_description?: string;
|
|
329
|
+
provider?: Provider;
|
|
267
330
|
provider_params?: unknown;
|
|
331
|
+
resume_overrides?: WireMobResumeOverrideField[];
|
|
268
332
|
runtime_mode?: WireMobRuntimeMode;
|
|
333
|
+
self_hosted_server_id?: string;
|
|
269
334
|
skills?: string[];
|
|
270
335
|
tools?: WireMobToolConfig;
|
|
271
336
|
}
|
|
337
|
+
export interface WireMobRun {
|
|
338
|
+
flow_id: string;
|
|
339
|
+
mob_id: string;
|
|
340
|
+
run_id: string;
|
|
341
|
+
status: "pending" | "running" | "completed" | "failed" | "canceled";
|
|
342
|
+
}
|
|
343
|
+
export interface WireMobRunResultEnvelope {
|
|
344
|
+
flow_id: string;
|
|
345
|
+
mob_id: string;
|
|
346
|
+
outputs?: Record<string, unknown>;
|
|
347
|
+
result?: unknown;
|
|
348
|
+
run_id: string;
|
|
349
|
+
status: "pending" | "running" | "completed" | "failed" | "canceled";
|
|
350
|
+
}
|
|
351
|
+
export interface WireMobRunStatus {
|
|
352
|
+
}
|
|
353
|
+
export interface WirePeerConnectivity {
|
|
354
|
+
}
|
|
355
|
+
export interface WirePeerConnectivitySnapshot {
|
|
356
|
+
reachable_peer_count: number;
|
|
357
|
+
unknown_peer_count: number;
|
|
358
|
+
unreachable_peers?: Record<string, unknown>[];
|
|
359
|
+
}
|
|
360
|
+
export interface WireUnreachablePeer {
|
|
361
|
+
peer: string;
|
|
362
|
+
reason?: string;
|
|
363
|
+
}
|
|
364
|
+
export interface WireMobError {
|
|
365
|
+
code: MobSpawnManyFailureCause;
|
|
366
|
+
message: string;
|
|
367
|
+
}
|
|
272
368
|
export interface MobEnsureMemberParams {
|
|
273
369
|
mob_id: string;
|
|
274
370
|
spec: MobMemberSpecWire;
|
|
@@ -306,7 +402,7 @@ export interface MobRespawnParams {
|
|
|
306
402
|
export interface MobRespawnResult {
|
|
307
403
|
failed_peer_ids?: string[];
|
|
308
404
|
receipt: Record<string, unknown>;
|
|
309
|
-
status:
|
|
405
|
+
status: "completed" | "topology_restore_failed";
|
|
310
406
|
}
|
|
311
407
|
export interface MobWireResult {
|
|
312
408
|
wired: boolean;
|
|
@@ -383,12 +479,18 @@ export interface MobAppendSystemContextParams {
|
|
|
383
479
|
export interface MobAppendSystemContextResult {
|
|
384
480
|
agent_identity: string;
|
|
385
481
|
mob_id: string;
|
|
386
|
-
status:
|
|
482
|
+
status: "applied" | "staged" | "duplicate";
|
|
387
483
|
}
|
|
388
484
|
export interface MobFlowsResult {
|
|
389
485
|
flows: string[];
|
|
390
486
|
mob_id: string;
|
|
391
487
|
}
|
|
488
|
+
export interface MobRunParams {
|
|
489
|
+
flow_id?: string;
|
|
490
|
+
mob_id: string;
|
|
491
|
+
params?: unknown;
|
|
492
|
+
prompt?: string;
|
|
493
|
+
}
|
|
392
494
|
export interface MobFlowRunParams {
|
|
393
495
|
flow_id: string;
|
|
394
496
|
mob_id: string;
|
|
@@ -402,7 +504,14 @@ export interface MobFlowStatusParams {
|
|
|
402
504
|
run_id: string;
|
|
403
505
|
}
|
|
404
506
|
export interface MobFlowStatusResult {
|
|
405
|
-
run
|
|
507
|
+
run?: Record<string, unknown>;
|
|
508
|
+
}
|
|
509
|
+
export interface MobRunResultParams {
|
|
510
|
+
mob_id: string;
|
|
511
|
+
run_id: string;
|
|
512
|
+
}
|
|
513
|
+
export interface MobRunResult {
|
|
514
|
+
run?: Record<string, unknown>;
|
|
406
515
|
}
|
|
407
516
|
export interface MobFlowCancelParams {
|
|
408
517
|
mob_id: string;
|
|
@@ -441,9 +550,7 @@ export interface MobForceCancelResult {
|
|
|
441
550
|
export interface MobTurnStartParams {
|
|
442
551
|
additional_instructions?: string[];
|
|
443
552
|
agent_identity: string;
|
|
444
|
-
auth_binding?:
|
|
445
|
-
clear_auth_binding?: boolean;
|
|
446
|
-
clear_provider_params?: boolean;
|
|
553
|
+
auth_binding?: Record<string, unknown>;
|
|
447
554
|
flow_tool_overlay?: PublicTurnToolOverlay;
|
|
448
555
|
keep_alive?: boolean;
|
|
449
556
|
max_tokens?: number;
|
|
@@ -452,8 +559,8 @@ export interface MobTurnStartParams {
|
|
|
452
559
|
output_schema?: unknown;
|
|
453
560
|
prompt: WireContentInput;
|
|
454
561
|
provider?: string;
|
|
455
|
-
provider_params?: unknown
|
|
456
|
-
skill_refs?:
|
|
562
|
+
provider_params?: Record<string, unknown>;
|
|
563
|
+
skill_refs?: SkillKey[];
|
|
457
564
|
structured_output_retries?: number;
|
|
458
565
|
system_prompt?: string;
|
|
459
566
|
}
|
|
@@ -463,16 +570,17 @@ export interface MobMemberStatusResult {
|
|
|
463
570
|
external_member?: unknown;
|
|
464
571
|
is_final: boolean;
|
|
465
572
|
kickoff?: unknown;
|
|
573
|
+
member_ref: WireMemberRef;
|
|
466
574
|
output_preview?: string;
|
|
467
|
-
peer_connectivity?: unknown
|
|
575
|
+
peer_connectivity?: Record<string, unknown>;
|
|
468
576
|
resolved_capabilities?: WireResolvedModelCapabilities;
|
|
469
577
|
status: WireMobMemberStatus;
|
|
470
578
|
tokens_used: number;
|
|
471
579
|
}
|
|
472
580
|
export interface MobSnapshotResult {
|
|
473
|
-
members:
|
|
581
|
+
members: MobMemberListEntryWire[];
|
|
474
582
|
mob_id: string;
|
|
475
|
-
status:
|
|
583
|
+
status: "Creating" | "Running" | "Stopped" | "Completed" | "Destroyed";
|
|
476
584
|
}
|
|
477
585
|
export interface MobDestroyResult {
|
|
478
586
|
destroy_report: unknown;
|
|
@@ -534,7 +642,7 @@ export interface MobProfileLookupResult {
|
|
|
534
642
|
created_at?: string;
|
|
535
643
|
name: string;
|
|
536
644
|
not_found?: boolean;
|
|
537
|
-
profile?:
|
|
645
|
+
profile?: WireMobProfile;
|
|
538
646
|
revision?: number;
|
|
539
647
|
updated_at?: string;
|
|
540
648
|
}
|
|
@@ -571,15 +679,17 @@ export interface MobStreamCloseResult {
|
|
|
571
679
|
stream_id: string;
|
|
572
680
|
}
|
|
573
681
|
export interface PublicTurnToolOverlay {
|
|
574
|
-
allowed_tools?:
|
|
575
|
-
blocked_tools?:
|
|
682
|
+
allowed_tools?: ToolName[];
|
|
683
|
+
blocked_tools?: ToolName[];
|
|
576
684
|
}
|
|
577
685
|
export interface MobDefinitionInput {
|
|
578
686
|
backend?: MobBackendConfigInput;
|
|
579
687
|
event_router?: MobEventRouterConfigInput;
|
|
580
688
|
flows?: Record<string, MobFlowSpecInput>;
|
|
581
689
|
id: string;
|
|
690
|
+
image_generation_provider?: Provider;
|
|
582
691
|
limits?: MobLimitsSpecInput;
|
|
692
|
+
models?: Record<string, CustomModelConfig>;
|
|
583
693
|
orchestrator?: MobOrchestratorInput;
|
|
584
694
|
profiles: Record<string, MobProfileBindingInput>;
|
|
585
695
|
skills?: Record<string, MobSkillSourceInput>;
|
|
@@ -637,14 +747,19 @@ export interface MobOrchestratorInput {
|
|
|
637
747
|
profile: string;
|
|
638
748
|
}
|
|
639
749
|
export interface MobProfileInput {
|
|
750
|
+
auto_compact_threshold?: number;
|
|
640
751
|
backend?: WireMobBackendKind;
|
|
641
752
|
external_addressable?: boolean;
|
|
753
|
+
image_generation_provider?: Provider;
|
|
642
754
|
max_inline_peer_notifications?: number;
|
|
643
755
|
model: string;
|
|
644
756
|
output_schema?: unknown;
|
|
645
757
|
peer_description?: string;
|
|
758
|
+
provider?: Provider;
|
|
646
759
|
provider_params?: unknown;
|
|
760
|
+
resume_overrides?: WireMobResumeOverrideField[];
|
|
647
761
|
runtime_mode?: WireMobRuntimeMode;
|
|
762
|
+
self_hosted_server_id?: string;
|
|
648
763
|
skills?: string[];
|
|
649
764
|
tools?: MobToolConfigInput;
|
|
650
765
|
}
|
|
@@ -654,6 +769,7 @@ export interface MobRoleWiringRuleInput {
|
|
|
654
769
|
}
|
|
655
770
|
export interface MobSupervisorSpecInput {
|
|
656
771
|
escalation_threshold: number;
|
|
772
|
+
escalation_turn_timeout_ms?: number;
|
|
657
773
|
role: string;
|
|
658
774
|
}
|
|
659
775
|
export interface MobToolConfigInput {
|
|
@@ -680,6 +796,15 @@ export interface MobWiringRulesInput {
|
|
|
680
796
|
auto_wire_orchestrator?: boolean;
|
|
681
797
|
role_wiring?: MobRoleWiringRuleInput[];
|
|
682
798
|
}
|
|
799
|
+
export interface CustomModelConfig {
|
|
800
|
+
call_timeout_secs?: number;
|
|
801
|
+
context_window?: number;
|
|
802
|
+
display_name?: string;
|
|
803
|
+
max_output_tokens?: number;
|
|
804
|
+
provider: Provider;
|
|
805
|
+
vision?: boolean;
|
|
806
|
+
web_search?: boolean;
|
|
807
|
+
}
|
|
683
808
|
export interface MobMemberSpecWire {
|
|
684
809
|
additional_instructions?: string[];
|
|
685
810
|
agent_identity: string;
|
|
@@ -704,7 +829,7 @@ export interface MobReconcileReportWire {
|
|
|
704
829
|
}
|
|
705
830
|
export interface MobReconcileFailureWire {
|
|
706
831
|
agent_identity: string;
|
|
707
|
-
error:
|
|
832
|
+
error: WireMobError;
|
|
708
833
|
stage: WireMobReconcileStage;
|
|
709
834
|
}
|
|
710
835
|
export interface AttentionBindingRequest {
|
|
@@ -770,10 +895,23 @@ export interface GoalStatusResult {
|
|
|
770
895
|
}
|
|
771
896
|
export interface ProjectedAttentionAuthority {
|
|
772
897
|
can_add_evidence: boolean;
|
|
898
|
+
can_block: boolean;
|
|
773
899
|
can_close_if_policy_allows: boolean;
|
|
774
900
|
can_close_own_review_item?: boolean;
|
|
775
|
-
|
|
776
|
-
|
|
901
|
+
can_create: boolean;
|
|
902
|
+
can_get: boolean;
|
|
903
|
+
can_link: boolean;
|
|
904
|
+
can_link_derived_from: boolean;
|
|
905
|
+
can_link_parent: boolean;
|
|
906
|
+
can_link_related: boolean;
|
|
907
|
+
can_release: boolean;
|
|
908
|
+
can_update: boolean;
|
|
909
|
+
}
|
|
910
|
+
export interface ReadyWorkFilter {
|
|
911
|
+
labels?: string[];
|
|
912
|
+
limit?: number;
|
|
913
|
+
namespace?: string;
|
|
914
|
+
realm_id?: string;
|
|
777
915
|
}
|
|
778
916
|
export interface WorkAttentionBinding {
|
|
779
917
|
binding_id: string;
|
|
@@ -787,20 +925,58 @@ export interface WorkAttentionBinding {
|
|
|
787
925
|
updated_at: string;
|
|
788
926
|
work_ref: WorkItemRef;
|
|
789
927
|
}
|
|
928
|
+
export interface WorkGraphEventFilter {
|
|
929
|
+
after_seq?: number;
|
|
930
|
+
all_namespaces?: boolean;
|
|
931
|
+
limit?: number;
|
|
932
|
+
namespace?: string;
|
|
933
|
+
realm_id?: string;
|
|
934
|
+
}
|
|
935
|
+
export interface WorkGraphEventsResponse {
|
|
936
|
+
events: WorkGraphEvent[];
|
|
937
|
+
}
|
|
938
|
+
export interface WorkGraphIdParams {
|
|
939
|
+
id: string;
|
|
940
|
+
namespace?: string;
|
|
941
|
+
realm_id?: string;
|
|
942
|
+
}
|
|
943
|
+
export interface WorkGraphItemsResponse {
|
|
944
|
+
items: WorkItem[];
|
|
945
|
+
}
|
|
946
|
+
export interface WorkGraphSnapshot {
|
|
947
|
+
all_namespaces: boolean;
|
|
948
|
+
attention?: WorkAttentionBinding[];
|
|
949
|
+
captured_at: string;
|
|
950
|
+
edges: WorkEdge[];
|
|
951
|
+
event_high_water_mark?: number;
|
|
952
|
+
items: WorkItem[];
|
|
953
|
+
namespace?: string;
|
|
954
|
+
ready_item_ids: string[];
|
|
955
|
+
realm_id: string;
|
|
956
|
+
}
|
|
957
|
+
export interface WorkGraphSnapshotFilter {
|
|
958
|
+
all_namespaces?: boolean;
|
|
959
|
+
include_terminal?: boolean;
|
|
960
|
+
labels?: string[];
|
|
961
|
+
limit?: number;
|
|
962
|
+
namespace?: string;
|
|
963
|
+
realm_id?: string;
|
|
964
|
+
statuses?: WorkStatus[];
|
|
965
|
+
}
|
|
790
966
|
export interface WorkItem {
|
|
791
|
-
claim?:
|
|
792
|
-
completion_policy:
|
|
967
|
+
claim?: WorkItemClaim;
|
|
968
|
+
completion_policy: WorkCompletionPolicy;
|
|
793
969
|
created_at: string;
|
|
794
970
|
description?: string;
|
|
795
971
|
due_at?: string;
|
|
796
|
-
evidence_refs?:
|
|
797
|
-
external_refs?:
|
|
972
|
+
evidence_refs?: WorkEvidenceRef[];
|
|
973
|
+
external_refs?: WorkItemExternalRef[];
|
|
798
974
|
id: string;
|
|
799
975
|
labels?: string[];
|
|
800
976
|
machine_state: Record<string, unknown>;
|
|
801
977
|
namespace: string;
|
|
802
978
|
not_before?: string;
|
|
803
|
-
owner?:
|
|
979
|
+
owner?: WorkItemOwner;
|
|
804
980
|
priority: "low" | "medium" | "high";
|
|
805
981
|
realm_id: string;
|
|
806
982
|
revision: number;
|
|
@@ -810,21 +986,63 @@ export interface WorkItem {
|
|
|
810
986
|
title: string;
|
|
811
987
|
updated_at: string;
|
|
812
988
|
}
|
|
989
|
+
export interface WorkItemFilter {
|
|
990
|
+
all_namespaces?: boolean;
|
|
991
|
+
include_terminal?: boolean;
|
|
992
|
+
labels?: string[];
|
|
993
|
+
limit?: number;
|
|
994
|
+
namespace?: string;
|
|
995
|
+
realm_id?: string;
|
|
996
|
+
statuses?: WorkStatus[];
|
|
997
|
+
}
|
|
813
998
|
export interface WorkItemRef {
|
|
814
999
|
item_id: string;
|
|
815
1000
|
namespace: string;
|
|
816
1001
|
realm_id: string;
|
|
817
1002
|
}
|
|
1003
|
+
export interface WorkEdge {
|
|
1004
|
+
created_at: string;
|
|
1005
|
+
from_id: string;
|
|
1006
|
+
kind: WorkEdgeKind;
|
|
1007
|
+
namespace: string;
|
|
1008
|
+
realm_id: string;
|
|
1009
|
+
to_id: string;
|
|
1010
|
+
}
|
|
818
1011
|
export interface WorkEvidenceRef {
|
|
1012
|
+
confirmation_kind?: WorkEvidenceKind;
|
|
1013
|
+
confirming_owner_key?: WorkOwnerKey;
|
|
819
1014
|
id: string;
|
|
820
1015
|
kind: string;
|
|
821
1016
|
label?: string;
|
|
822
1017
|
summary?: string;
|
|
823
1018
|
}
|
|
1019
|
+
export interface WorkGraphEvent {
|
|
1020
|
+
at: string;
|
|
1021
|
+
item_id?: string;
|
|
1022
|
+
kind: WorkGraphEventKind;
|
|
1023
|
+
namespace: string;
|
|
1024
|
+
payload?: unknown;
|
|
1025
|
+
realm_id: string;
|
|
1026
|
+
seq?: number;
|
|
1027
|
+
}
|
|
824
1028
|
export interface WorkOwnerKey {
|
|
825
1029
|
id: string;
|
|
826
1030
|
kind: WorkOwnerKind;
|
|
827
1031
|
}
|
|
1032
|
+
export interface WorkItemClaim {
|
|
1033
|
+
claimed_at: string;
|
|
1034
|
+
lease_expires_at?: string;
|
|
1035
|
+
owner: WorkItemOwner;
|
|
1036
|
+
}
|
|
1037
|
+
export interface WorkItemExternalRef {
|
|
1038
|
+
id: string;
|
|
1039
|
+
kind: string;
|
|
1040
|
+
url?: string;
|
|
1041
|
+
}
|
|
1042
|
+
export interface WorkItemOwner {
|
|
1043
|
+
display_name?: string;
|
|
1044
|
+
key: WorkOwnerKey;
|
|
1045
|
+
}
|
|
828
1046
|
export interface BridgeAck {
|
|
829
1047
|
ok: boolean;
|
|
830
1048
|
}
|
|
@@ -854,12 +1072,6 @@ export interface BridgeCapabilities {
|
|
|
854
1072
|
unwire_member?: boolean;
|
|
855
1073
|
wire_member?: boolean;
|
|
856
1074
|
}
|
|
857
|
-
export interface BridgeDeliveryCompletion {
|
|
858
|
-
session_id: string;
|
|
859
|
-
text: string;
|
|
860
|
-
tool_calls: number;
|
|
861
|
-
turns: number;
|
|
862
|
-
}
|
|
863
1075
|
export interface BridgeDeliveryPayload {
|
|
864
1076
|
content: ContentInput;
|
|
865
1077
|
epoch: number;
|
|
@@ -870,7 +1082,6 @@ export interface BridgeDeliveryPayload {
|
|
|
870
1082
|
}
|
|
871
1083
|
export interface BridgeDeliveryResponse {
|
|
872
1084
|
canonical_input_id?: string;
|
|
873
|
-
completion?: BridgeDeliveryCompletion;
|
|
874
1085
|
input_id: string;
|
|
875
1086
|
outcome: BridgeDeliveryOutcome;
|
|
876
1087
|
}
|
|
@@ -899,6 +1110,7 @@ export interface BridgePeerSpec {
|
|
|
899
1110
|
}
|
|
900
1111
|
export interface BridgePeerWiringPayload {
|
|
901
1112
|
epoch: number;
|
|
1113
|
+
mob_peer_overlay?: Record<string, unknown>;
|
|
902
1114
|
peer_spec: BridgePeerSpec;
|
|
903
1115
|
protocol_version: BridgeProtocolVersion;
|
|
904
1116
|
supervisor: BridgePeerSpec;
|
|
@@ -940,11 +1152,9 @@ export interface PeerCapabilitySet {
|
|
|
940
1152
|
export interface PeerDirectoryEntry {
|
|
941
1153
|
address: PeerAddress;
|
|
942
1154
|
capabilities: PeerCapabilitySet;
|
|
943
|
-
last_unreachable_reason?: PeerReachabilityReason;
|
|
944
1155
|
meta: Record<string, unknown>;
|
|
945
1156
|
name: PeerName;
|
|
946
1157
|
peer_id: PeerId;
|
|
947
|
-
reachability: PeerReachability;
|
|
948
1158
|
sendable_kinds: PeerSendability[];
|
|
949
1159
|
source: PeerDirectorySource;
|
|
950
1160
|
}
|
|
@@ -1006,13 +1216,19 @@ export interface WireContentBlockVideo {
|
|
|
1006
1216
|
media_type: string;
|
|
1007
1217
|
type: "video";
|
|
1008
1218
|
}
|
|
1219
|
+
export interface WireContentBlockStructured {
|
|
1220
|
+
data: unknown;
|
|
1221
|
+
type: "structured";
|
|
1222
|
+
}
|
|
1009
1223
|
export interface WireContentBlockUnknown {
|
|
1010
1224
|
type: "unknown";
|
|
1011
1225
|
}
|
|
1012
|
-
export type WireContentBlock = WireContentBlockText | WireContentBlockImage | WireContentBlockVideo | WireContentBlockUnknown;
|
|
1226
|
+
export type WireContentBlock = WireContentBlockText | WireContentBlockImage | WireContentBlockVideo | WireContentBlockStructured | WireContentBlockUnknown;
|
|
1013
1227
|
export type WireContentInput = string | WireContentBlock[];
|
|
1228
|
+
export type Provider = "anthropic" | "openai" | "gemini" | "self_hosted" | "other";
|
|
1014
1229
|
export type WireMemberRef = string;
|
|
1015
1230
|
export type WireMobBackendKind = "session" | "external";
|
|
1231
|
+
export type WireMobResumeOverrideField = "model" | "provider" | "provider_params";
|
|
1016
1232
|
export interface WireRuntimeBindingSession {
|
|
1017
1233
|
kind: "session";
|
|
1018
1234
|
}
|
|
@@ -1075,7 +1291,7 @@ export type WireToolFilter = "All" | {
|
|
|
1075
1291
|
} | {
|
|
1076
1292
|
Deny: string[];
|
|
1077
1293
|
};
|
|
1078
|
-
export type WireMemberState =
|
|
1294
|
+
export type WireMemberState = unknown;
|
|
1079
1295
|
export type WireMobMemberStatus = "active" | "retiring" | "broken" | "completed" | "unknown";
|
|
1080
1296
|
export type WireMobRuntimeMode = "autonomous_host" | "turn_driven";
|
|
1081
1297
|
export type MobSpawnManyFailureCause = "profile_not_found" | "member_not_found" | "member_already_exists" | "not_externally_addressable" | "invalid_transition" | "wiring_error" | "bridge_command_rejected" | "member_restore_failed" | "kickoff_wait_timed_out" | "ready_wait_timed_out" | "definition_error" | "flow_not_found" | "flow_failed" | "run_not_found" | "run_canceled" | "flow_turn_timed_out" | "frame_depth_limit_exceeded" | "frame_atomic_persistence_unavailable" | "spec_revision_conflict" | "schema_validation" | "insufficient_targets" | "topology_violation" | "bridge_delivery_rejected" | "supervisor_escalation" | "unsupported_for_mode" | "missing_member_capability" | "reset_barrier" | "storage_error" | "session_error" | "comms_error" | "callback_pending" | "stale_fence_token" | "stale_event_cursor" | "work_not_found" | "internal";
|
|
@@ -1213,7 +1429,16 @@ export interface WorkCompletionPolicyReviewerQuorum {
|
|
|
1213
1429
|
threshold: number;
|
|
1214
1430
|
}
|
|
1215
1431
|
export type WorkCompletionPolicy = WorkCompletionPolicySelfAttest | WorkCompletionPolicyHostConfirmed | WorkCompletionPolicyPrincipalConfirmed | WorkCompletionPolicySupervisor | WorkCompletionPolicyReviewerQuorum;
|
|
1432
|
+
export type WorkEdgeKind = "blocks" | "parent" | "related" | "supersedes" | "derived_from";
|
|
1433
|
+
export type WorkEvidenceKind = "host_confirmation" | "principal_confirmation" | "supervisor_confirmation" | "reviewer_confirmation" | "self_attest";
|
|
1434
|
+
export type WorkGraphEventKind = "created" | "updated" | "claimed" | "released" | "blocked" | "closed" | "linked" | "evidence_added" | "attention_created" | "attention_updated";
|
|
1216
1435
|
export type WorkOwnerKind = "principal" | "agent" | "session" | "mob" | "label";
|
|
1436
|
+
export type WorkStatus = "open" | "in_progress" | "blocked" | "completed" | "cancelled" | "failed";
|
|
1437
|
+
export declare const WORK_GRAPH_STATUSES: readonly ["open", "in_progress", "blocked", "completed", "cancelled", "failed"];
|
|
1438
|
+
export type WorkGraphStatus = typeof WORK_GRAPH_STATUSES[number];
|
|
1439
|
+
export declare const WORK_GRAPH_PRIORITIES: readonly ["low", "medium", "high"];
|
|
1440
|
+
export type WorkGraphPriority = typeof WORK_GRAPH_PRIORITIES[number];
|
|
1441
|
+
export declare const WORK_GRAPH_EVENT_KINDS: readonly ["created", "updated", "claimed", "released", "blocked", "closed", "linked", "evidence_added", "attention_created", "attention_updated"];
|
|
1217
1442
|
export type McpLiveOperation = "add" | "remove" | "reload";
|
|
1218
1443
|
export type McpLiveOpStatus = "staged" | "applied" | "rejected";
|
|
1219
1444
|
export type McpHttpTransport = "streamable-http" | "sse";
|
|
@@ -1269,7 +1494,7 @@ export interface CommsCommandPeerMessage {
|
|
|
1269
1494
|
}
|
|
1270
1495
|
export interface CommsCommandPeerLifecycle {
|
|
1271
1496
|
kind: "peer_lifecycle";
|
|
1272
|
-
lifecycle_kind: "mob.peer_added" | "mob.peer_retired" | "mob.peer_unwired";
|
|
1497
|
+
lifecycle_kind: "mob.peer_added" | "mob.peer_retired" | "mob.peer_unwired" | "mob.dismiss";
|
|
1273
1498
|
params: CommsPeerLifecycleParams;
|
|
1274
1499
|
to: PeerId;
|
|
1275
1500
|
}
|
|
@@ -1358,6 +1583,7 @@ export interface BridgeCommandDestroyMember {
|
|
|
1358
1583
|
export interface BridgeCommandWireMember {
|
|
1359
1584
|
command: "wire_member";
|
|
1360
1585
|
epoch: number;
|
|
1586
|
+
mob_peer_overlay?: unknown;
|
|
1361
1587
|
peer_spec: BridgePeerSpec;
|
|
1362
1588
|
protocol_version: BridgeProtocolVersion;
|
|
1363
1589
|
supervisor: BridgePeerSpec;
|
|
@@ -1365,6 +1591,7 @@ export interface BridgeCommandWireMember {
|
|
|
1365
1591
|
export interface BridgeCommandUnwireMember {
|
|
1366
1592
|
command: "unwire_member";
|
|
1367
1593
|
epoch: number;
|
|
1594
|
+
mob_peer_overlay?: unknown;
|
|
1368
1595
|
peer_spec: BridgePeerSpec;
|
|
1369
1596
|
protocol_version: BridgeProtocolVersion;
|
|
1370
1597
|
supervisor: BridgePeerSpec;
|
|
@@ -1425,7 +1652,6 @@ export interface BridgeReplyObservation {
|
|
|
1425
1652
|
}
|
|
1426
1653
|
export interface BridgeReplyDelivery {
|
|
1427
1654
|
canonical_input_id?: string;
|
|
1428
|
-
completion?: BridgeDeliveryCompletion;
|
|
1429
1655
|
input_id: string;
|
|
1430
1656
|
outcome: BridgeDeliveryOutcome;
|
|
1431
1657
|
result: "delivery";
|
|
@@ -1458,7 +1684,16 @@ export interface ContentBlockVideo {
|
|
|
1458
1684
|
media_type: string;
|
|
1459
1685
|
type: "video";
|
|
1460
1686
|
}
|
|
1461
|
-
export
|
|
1687
|
+
export interface ContentBlockStructured {
|
|
1688
|
+
data: unknown;
|
|
1689
|
+
type: "structured";
|
|
1690
|
+
}
|
|
1691
|
+
export interface ContentBlockSkillContext {
|
|
1692
|
+
skill_key: SkillKey;
|
|
1693
|
+
text: string;
|
|
1694
|
+
type: "skill_context";
|
|
1695
|
+
}
|
|
1696
|
+
export type ContentBlock = ContentBlockText | ContentBlockImage | ContentBlockVideo | ContentBlockStructured | ContentBlockSkillContext;
|
|
1462
1697
|
export type ContentInput = string | ContentBlock[];
|
|
1463
1698
|
export interface CommsSendParamsInput {
|
|
1464
1699
|
allow_self_session?: boolean;
|
|
@@ -1480,7 +1715,7 @@ export interface CommsSendParamsPeerMessage {
|
|
|
1480
1715
|
}
|
|
1481
1716
|
export interface CommsSendParamsPeerLifecycle {
|
|
1482
1717
|
kind: "peer_lifecycle";
|
|
1483
|
-
lifecycle_kind: "mob.peer_added" | "mob.peer_retired" | "mob.peer_unwired";
|
|
1718
|
+
lifecycle_kind: "mob.peer_added" | "mob.peer_retired" | "mob.peer_unwired" | "mob.dismiss";
|
|
1484
1719
|
params: CommsPeerLifecycleParams;
|
|
1485
1720
|
session_id: string;
|
|
1486
1721
|
to: PeerId;
|
|
@@ -1543,8 +1778,6 @@ export type PeerName = string;
|
|
|
1543
1778
|
export type PeerTransport = "inproc" | "uds" | "tcp";
|
|
1544
1779
|
export type PeerDirectorySource = "trusted" | "inproc" | "trusted_and_inproc" | "unknown";
|
|
1545
1780
|
export type PeerSendability = "peer_message" | "peer_request" | "peer_response";
|
|
1546
|
-
export type PeerReachability = "unknown" | "reachable" | "unreachable";
|
|
1547
|
-
export type PeerReachabilityReason = "offline_or_no_ack" | "transport_error" | "admission_dropped";
|
|
1548
1781
|
export interface WireRenderMetadata {
|
|
1549
1782
|
class: "user_prompt" | "peer_message" | "peer_request" | "peer_response" | "external_event" | "flow_step" | "continuation" | "system_notice" | "tool_scope_notice" | "ops_progress";
|
|
1550
1783
|
salience?: "background" | "normal" | "important" | "urgent";
|
|
@@ -1689,9 +1922,12 @@ export interface LiveCommitInputParams {
|
|
|
1689
1922
|
}
|
|
1690
1923
|
export type LiveRefreshStatus = "queued";
|
|
1691
1924
|
export interface LiveRefreshResult {
|
|
1692
|
-
refresh_enqueued: boolean;
|
|
1693
1925
|
status: "queued";
|
|
1694
1926
|
}
|
|
1927
|
+
export type LiveCloseStatus = "closed";
|
|
1928
|
+
export interface LiveCloseResult {
|
|
1929
|
+
status: "closed";
|
|
1930
|
+
}
|
|
1695
1931
|
export interface LiveInputChunkWireAudio {
|
|
1696
1932
|
channels: number;
|
|
1697
1933
|
data: string;
|
|
@@ -1845,9 +2081,9 @@ export interface WireLiveConfigRejectionReasonRefreshModelSwap {
|
|
|
1845
2081
|
to_model: string;
|
|
1846
2082
|
}
|
|
1847
2083
|
export interface WireLiveConfigRejectionReasonRefreshProviderSwap {
|
|
1848
|
-
from_provider:
|
|
2084
|
+
from_provider: WireProvider;
|
|
1849
2085
|
kind: "refresh_provider_swap";
|
|
1850
|
-
to_provider:
|
|
2086
|
+
to_provider: WireProvider;
|
|
1851
2087
|
}
|
|
1852
2088
|
export interface WireLiveConfigRejectionReasonRefreshAudioConfigMismatch {
|
|
1853
2089
|
detail: string;
|
|
@@ -2239,7 +2475,7 @@ export interface WireAuthStatus {
|
|
|
2239
2475
|
last_refresh_at?: string;
|
|
2240
2476
|
profile_id: string;
|
|
2241
2477
|
provider: string;
|
|
2242
|
-
state: "valid" | "expiring" | "expired" | "reauth_required" | "refresh_failed" | "
|
|
2478
|
+
state: "valid" | "expiring" | "expired" | "reauth_required" | "refresh_failed" | "released" | "absent" | "missing_credential";
|
|
2243
2479
|
}
|
|
2244
2480
|
export interface WireAuthStatusDetail {
|
|
2245
2481
|
account_id?: string;
|
|
@@ -2252,7 +2488,7 @@ export interface WireAuthStatusDetail {
|
|
|
2252
2488
|
profile_id: string;
|
|
2253
2489
|
provider: string;
|
|
2254
2490
|
realm_id: string;
|
|
2255
|
-
state: "valid" | "expiring" | "expired" | "reauth_required" | "refresh_failed" | "
|
|
2491
|
+
state: "valid" | "expiring" | "expired" | "reauth_required" | "refresh_failed" | "released" | "absent" | "missing_credential";
|
|
2256
2492
|
}
|
|
2257
2493
|
export interface WireAuthErrorMissingSecret {
|
|
2258
2494
|
kind: "missing_secret";
|
|
@@ -2288,6 +2524,10 @@ export interface WireAuthErrorRefreshFailed {
|
|
|
2288
2524
|
detail: string;
|
|
2289
2525
|
kind: "refresh_failed";
|
|
2290
2526
|
}
|
|
2527
|
+
export interface WireAuthErrorResolveRequired {
|
|
2528
|
+
detail: string;
|
|
2529
|
+
kind: "resolve_required";
|
|
2530
|
+
}
|
|
2291
2531
|
export interface WireAuthErrorInteractiveLoginRequired {
|
|
2292
2532
|
kind: "interactive_login_required";
|
|
2293
2533
|
}
|
|
@@ -2302,7 +2542,7 @@ export interface WireAuthErrorOther {
|
|
|
2302
2542
|
detail: string;
|
|
2303
2543
|
kind: "other";
|
|
2304
2544
|
}
|
|
2305
|
-
export type WireAuthError = WireAuthErrorMissingSecret | WireAuthErrorUnsupportedCombination | WireAuthErrorMissingRequiredMetadata | WireAuthErrorWorkspaceMismatch | WireAuthErrorExpired | WireAuthErrorStaleCredential | WireAuthErrorRefreshRequired | WireAuthErrorLeaseAbsent | WireAuthErrorUserReauthRequired | WireAuthErrorRefreshFailed | WireAuthErrorInteractiveLoginRequired | WireAuthErrorHostOwnedUnavailable | WireAuthErrorIo | WireAuthErrorOther;
|
|
2545
|
+
export type WireAuthError = WireAuthErrorMissingSecret | WireAuthErrorUnsupportedCombination | WireAuthErrorMissingRequiredMetadata | WireAuthErrorWorkspaceMismatch | WireAuthErrorExpired | WireAuthErrorStaleCredential | WireAuthErrorRefreshRequired | WireAuthErrorLeaseAbsent | WireAuthErrorUserReauthRequired | WireAuthErrorRefreshFailed | WireAuthErrorResolveRequired | WireAuthErrorInteractiveLoginRequired | WireAuthErrorHostOwnedUnavailable | WireAuthErrorIo | WireAuthErrorOther;
|
|
2306
2546
|
export type WireProvider = "anthropic" | "openai" | "gemini" | "self_hosted" | "other" | "unknown";
|
|
2307
2547
|
export interface WireTranscriptSourceSpoken {
|
|
2308
2548
|
kind: "spoken";
|
|
@@ -2348,8 +2588,8 @@ export interface WireAssistantBlockServerToolContent {
|
|
|
2348
2588
|
data: {
|
|
2349
2589
|
content: unknown;
|
|
2350
2590
|
id?: string;
|
|
2591
|
+
kind: Record<string, unknown>;
|
|
2351
2592
|
meta?: Record<string, unknown>;
|
|
2352
|
-
name: string;
|
|
2353
2593
|
};
|
|
2354
2594
|
}
|
|
2355
2595
|
export interface WireAssistantBlockImage {
|
|
@@ -2407,4 +2647,58 @@ export interface WireImageOperationPhaseTerminal {
|
|
|
2407
2647
|
terminal: Record<string, unknown>;
|
|
2408
2648
|
}
|
|
2409
2649
|
export type WireImageOperationPhase = WireImageOperationPhaseRequested | WireImageOperationPhaseValidating | WireImageOperationPhaseAwaitingApproval | WireImageOperationPhasePlanResolved | WireImageOperationPhaseProjectionSnapshotted | WireImageOperationPhaseScopedOverrideActive | WireImageOperationPhaseProviderCallInFlight | WireImageOperationPhaseProviderResultCaptured | WireImageOperationPhaseBlobCommitPending | WireImageOperationPhaseResultCommitted | WireImageOperationPhaseRestoringScopedOverride | WireImageOperationPhaseTerminal;
|
|
2650
|
+
/** Fail-closed wire parser for WorkItem (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2651
|
+
export declare function parseWorkItem(value: unknown): WorkItem;
|
|
2652
|
+
/** Fail-closed wire parser for WorkEdge (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2653
|
+
export declare function parseWorkEdge(value: unknown): WorkEdge;
|
|
2654
|
+
/** Fail-closed wire parser for WorkGraphEvent (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2655
|
+
export declare function parseWorkGraphEvent(value: unknown): WorkGraphEvent;
|
|
2656
|
+
/** Fail-closed wire parser for WorkGraphItemsResponse (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2657
|
+
export declare function parseWorkGraphItemsResponse(value: unknown): WorkGraphItemsResponse;
|
|
2658
|
+
/** Fail-closed wire parser for WorkGraphEventsResponse (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2659
|
+
export declare function parseWorkGraphEventsResponse(value: unknown): WorkGraphEventsResponse;
|
|
2660
|
+
/** Fail-closed wire parser for WorkGraphSnapshot (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2661
|
+
export declare function parseWorkGraphSnapshot(value: unknown): WorkGraphSnapshot;
|
|
2662
|
+
/** Fail-closed wire parser for WorkItemsResult (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2663
|
+
export declare function parseWorkItemsResult(value: unknown): WorkItemsResult;
|
|
2664
|
+
/** Fail-closed wire parser for WorkEventsResult (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2665
|
+
export declare function parseWorkEventsResult(value: unknown): WorkEventsResult;
|
|
2666
|
+
/** Fail-closed wire parser for GoalStatusResult (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2667
|
+
export declare function parseGoalStatusResult(value: unknown): GoalStatusResult;
|
|
2668
|
+
/** Fail-closed wire parser for AttentionListResult (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2669
|
+
export declare function parseAttentionListResult(value: unknown): AttentionListResult;
|
|
2670
|
+
/** Fail-closed wire parser for WorkItemClaim (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2671
|
+
export declare function parseWorkItemClaim(value: unknown): WorkItemClaim;
|
|
2672
|
+
/** Fail-closed wire parser for WorkCompletionPolicy (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2673
|
+
export declare function parseWorkCompletionPolicy(value: unknown): WorkCompletionPolicy;
|
|
2674
|
+
/** Fail-closed wire parser for WorkEvidenceRef (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2675
|
+
export declare function parseWorkEvidenceRef(value: unknown): WorkEvidenceRef;
|
|
2676
|
+
/** Fail-closed wire parser for WorkItemExternalRef (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2677
|
+
export declare function parseWorkItemExternalRef(value: unknown): WorkItemExternalRef;
|
|
2678
|
+
/** Fail-closed wire parser for WorkItemOwner (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2679
|
+
export declare function parseWorkItemOwner(value: unknown): WorkItemOwner;
|
|
2680
|
+
/** Fail-closed wire parser for WorkEdgeKind (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2681
|
+
export declare function parseWorkEdgeKind(value: unknown): WorkEdgeKind;
|
|
2682
|
+
/** Fail-closed wire parser for WorkGraphEventKind (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2683
|
+
export declare function parseWorkGraphEventKind(value: unknown): WorkGraphEventKind;
|
|
2684
|
+
/** Fail-closed wire parser for WorkAttentionBinding (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2685
|
+
export declare function parseWorkAttentionBinding(value: unknown): WorkAttentionBinding;
|
|
2686
|
+
/** Fail-closed wire parser for WorkOwnerKey (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2687
|
+
export declare function parseWorkOwnerKey(value: unknown): WorkOwnerKey;
|
|
2688
|
+
/** Fail-closed wire parser for WorkEvidenceKind (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2689
|
+
export declare function parseWorkEvidenceKind(value: unknown): WorkEvidenceKind;
|
|
2690
|
+
/** Fail-closed wire parser for AttentionDelegatedAuthority (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2691
|
+
export declare function parseAttentionDelegatedAuthority(value: unknown): AttentionDelegatedAuthority;
|
|
2692
|
+
/** Fail-closed wire parser for WorkAttentionMode (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2693
|
+
export declare function parseWorkAttentionMode(value: unknown): WorkAttentionMode;
|
|
2694
|
+
/** Fail-closed wire parser for AttentionProjectionPolicy (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2695
|
+
export declare function parseAttentionProjectionPolicy(value: unknown): AttentionProjectionPolicy;
|
|
2696
|
+
/** Fail-closed wire parser for WorkAttentionStatus (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2697
|
+
export declare function parseWorkAttentionStatus(value: unknown): WorkAttentionStatus;
|
|
2698
|
+
/** Fail-closed wire parser for WorkAttentionTarget (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2699
|
+
export declare function parseWorkAttentionTarget(value: unknown): WorkAttentionTarget;
|
|
2700
|
+
/** Fail-closed wire parser for WorkItemRef (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2701
|
+
export declare function parseWorkItemRef(value: unknown): WorkItemRef;
|
|
2702
|
+
/** Fail-closed wire parser for WorkOwnerKind (K21): throws MeerkatError(INVALID_RESPONSE). */
|
|
2703
|
+
export declare function parseWorkOwnerKind(value: unknown): WorkOwnerKind;
|
|
2410
2704
|
//# sourceMappingURL=types.d.ts.map
|