@evalops/sdk-ts 0.1.97 → 0.1.98
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/agentruntime/v1/runtime_pb.d.ts +438 -5
- package/dist/agentruntime/v1/runtime_pb.js +96 -34
- package/dist/browsercontrol/v1/browser_control_pb.d.ts +41 -0
- package/dist/browsercontrol/v1/browser_control_pb.js +35 -9
- package/dist/chronicle/v1/chronicle_pb.d.ts +1524 -56
- package/dist/chronicle/v1/chronicle_pb.js +381 -20
- package/dist/connectors/v1/connectors_pb.d.ts +62 -1
- package/dist/connectors/v1/connectors_pb.js +35 -26
- package/dist/desktopcontrol/v1/desktop_control_pb.d.ts +595 -0
- package/dist/desktopcontrol/v1/desktop_control_pb.js +216 -0
- package/dist/identity/v1/devices_pb.d.ts +80 -0
- package/dist/identity/v1/devices_pb.js +15 -5
- package/dist/keys/v1/keys_pb.d.ts +56 -1
- package/dist/keys/v1/keys_pb.js +34 -2
- package/package.json +5 -1
|
@@ -470,118 +470,1574 @@ export type CapturedFrame = Message<"chronicle.v1.CapturedFrame"> & {
|
|
|
470
470
|
* @generated from field: chronicle.v1.CaptureTier tier = 14;
|
|
471
471
|
*/
|
|
472
472
|
tier: CaptureTier;
|
|
473
|
+
/**
|
|
474
|
+
* safe_to_persist is the client-side fail-closed decision for this frame.
|
|
475
|
+
* If unset, the client did not provide a persistence decision and downstream
|
|
476
|
+
* consumers must treat safety as unknown rather than explicit allow or deny.
|
|
477
|
+
*
|
|
478
|
+
* @generated from field: optional bool safe_to_persist = 15;
|
|
479
|
+
*/
|
|
480
|
+
safeToPersist?: boolean | undefined;
|
|
481
|
+
/**
|
|
482
|
+
* @generated from field: string persistence_decision_reason = 16;
|
|
483
|
+
*/
|
|
484
|
+
persistenceDecisionReason: string;
|
|
485
|
+
/**
|
|
486
|
+
* observed_affordances are optional, redacted UI elements extracted before
|
|
487
|
+
* summarization. They are observed evidence, not executable instructions.
|
|
488
|
+
*
|
|
489
|
+
* @generated from field: repeated chronicle.v1.VisualContextAffordance observed_affordances = 17;
|
|
490
|
+
*/
|
|
491
|
+
observedAffordances: VisualContextAffordance[];
|
|
492
|
+
/**
|
|
493
|
+
* element_states are optional stable UI-element observations that let
|
|
494
|
+
* downstream systems reconstruct an element timeline across frames without
|
|
495
|
+
* persisting raw screenshots or bulk OCR.
|
|
496
|
+
*
|
|
497
|
+
* @generated from field: repeated chronicle.v1.VisualContextElementState element_states = 18;
|
|
498
|
+
*/
|
|
499
|
+
elementStates: VisualContextElementState[];
|
|
500
|
+
};
|
|
501
|
+
/**
|
|
502
|
+
* Describes the message chronicle.v1.CapturedFrame.
|
|
503
|
+
* Use `create(CapturedFrameSchema)` to create a new message.
|
|
504
|
+
*/
|
|
505
|
+
export declare const CapturedFrameSchema: GenMessage<CapturedFrame>;
|
|
506
|
+
/**
|
|
507
|
+
* @generated from message chronicle.v1.DropCounts
|
|
508
|
+
*/
|
|
509
|
+
export type DropCounts = Message<"chronicle.v1.DropCounts"> & {
|
|
510
|
+
/**
|
|
511
|
+
* @generated from field: int32 secret = 1;
|
|
512
|
+
*/
|
|
513
|
+
secret: number;
|
|
514
|
+
/**
|
|
515
|
+
* @generated from field: int32 duplicate = 2;
|
|
516
|
+
*/
|
|
517
|
+
duplicate: number;
|
|
518
|
+
/**
|
|
519
|
+
* @generated from field: int32 denied_app = 3;
|
|
520
|
+
*/
|
|
521
|
+
deniedApp: number;
|
|
522
|
+
/**
|
|
523
|
+
* @generated from field: int32 denied_path = 4;
|
|
524
|
+
*/
|
|
525
|
+
deniedPath: number;
|
|
526
|
+
};
|
|
527
|
+
/**
|
|
528
|
+
* Describes the message chronicle.v1.DropCounts.
|
|
529
|
+
* Use `create(DropCountsSchema)` to create a new message.
|
|
530
|
+
*/
|
|
531
|
+
export declare const DropCountsSchema: GenMessage<DropCounts>;
|
|
532
|
+
/**
|
|
533
|
+
* @generated from message chronicle.v1.EmittedCounts
|
|
534
|
+
*/
|
|
535
|
+
export type EmittedCounts = Message<"chronicle.v1.EmittedCounts"> & {
|
|
536
|
+
/**
|
|
537
|
+
* @generated from field: int32 distinct_bundles = 1;
|
|
538
|
+
*/
|
|
539
|
+
distinctBundles: number;
|
|
540
|
+
/**
|
|
541
|
+
* @generated from field: int32 distinct_domains = 2;
|
|
542
|
+
*/
|
|
543
|
+
distinctDomains: number;
|
|
544
|
+
/**
|
|
545
|
+
* @generated from field: int32 distinct_document_paths = 3;
|
|
546
|
+
*/
|
|
547
|
+
distinctDocumentPaths: number;
|
|
548
|
+
/**
|
|
549
|
+
* @generated from field: int32 distinct_github_prs = 4;
|
|
550
|
+
*/
|
|
551
|
+
distinctGithubPrs: number;
|
|
552
|
+
/**
|
|
553
|
+
* @generated from field: int32 foreground_changes = 5;
|
|
554
|
+
*/
|
|
555
|
+
foregroundChanges: number;
|
|
556
|
+
/**
|
|
557
|
+
* @generated from field: int32 document_changes = 6;
|
|
558
|
+
*/
|
|
559
|
+
documentChanges: number;
|
|
560
|
+
/**
|
|
561
|
+
* @generated from field: int32 work_leisure_flips = 7;
|
|
562
|
+
*/
|
|
563
|
+
workLeisureFlips: number;
|
|
564
|
+
/**
|
|
565
|
+
* @generated from field: int64 longest_uninterrupted_seconds = 8;
|
|
566
|
+
*/
|
|
567
|
+
longestUninterruptedSeconds: bigint;
|
|
568
|
+
/**
|
|
569
|
+
* @generated from field: int32 thrash_event_count = 9;
|
|
570
|
+
*/
|
|
571
|
+
thrashEventCount: number;
|
|
572
|
+
};
|
|
573
|
+
/**
|
|
574
|
+
* Describes the message chronicle.v1.EmittedCounts.
|
|
575
|
+
* Use `create(EmittedCountsSchema)` to create a new message.
|
|
576
|
+
*/
|
|
577
|
+
export declare const EmittedCountsSchema: GenMessage<EmittedCounts>;
|
|
578
|
+
/**
|
|
579
|
+
* @generated from message chronicle.v1.FrameReceipt
|
|
580
|
+
*/
|
|
581
|
+
export type FrameReceipt = Message<"chronicle.v1.FrameReceipt"> & {
|
|
582
|
+
/**
|
|
583
|
+
* @generated from field: string frame_hash = 1;
|
|
584
|
+
*/
|
|
585
|
+
frameHash: string;
|
|
586
|
+
/**
|
|
587
|
+
* @generated from field: chronicle.v1.CaptureDecision decision = 2;
|
|
588
|
+
*/
|
|
589
|
+
decision: CaptureDecision;
|
|
590
|
+
/**
|
|
591
|
+
* @generated from field: string reason = 3;
|
|
592
|
+
*/
|
|
593
|
+
reason: string;
|
|
594
|
+
/**
|
|
595
|
+
* @generated from field: string memory_id = 4;
|
|
596
|
+
*/
|
|
597
|
+
memoryId: string;
|
|
598
|
+
/**
|
|
599
|
+
* @generated from field: common.v1.EvidenceRef evidence = 5;
|
|
600
|
+
*/
|
|
601
|
+
evidence?: EvidenceRef | undefined;
|
|
602
|
+
/**
|
|
603
|
+
* @generated from field: chronicle.v1.CaptureTier accepted_tier = 6;
|
|
604
|
+
*/
|
|
605
|
+
acceptedTier: CaptureTier;
|
|
606
|
+
};
|
|
607
|
+
/**
|
|
608
|
+
* Describes the message chronicle.v1.FrameReceipt.
|
|
609
|
+
* Use `create(FrameReceiptSchema)` to create a new message.
|
|
610
|
+
*/
|
|
611
|
+
export declare const FrameReceiptSchema: GenMessage<FrameReceipt>;
|
|
612
|
+
/**
|
|
613
|
+
* VisualContextRequest asks Chronicle to summarize a bounded set of
|
|
614
|
+
* screen-context evidence. Screen/OCR text referenced by this request remains
|
|
615
|
+
* untrusted observed data and must not be treated as agent instructions.
|
|
616
|
+
*
|
|
617
|
+
* @generated from message chronicle.v1.VisualContextRequest
|
|
618
|
+
*/
|
|
619
|
+
export type VisualContextRequest = Message<"chronicle.v1.VisualContextRequest"> & {
|
|
620
|
+
/**
|
|
621
|
+
* @generated from field: string request_id = 1;
|
|
622
|
+
*/
|
|
623
|
+
requestId: string;
|
|
624
|
+
/**
|
|
625
|
+
* @generated from field: string organization_id = 2;
|
|
626
|
+
*/
|
|
627
|
+
organizationId: string;
|
|
628
|
+
/**
|
|
629
|
+
* @generated from field: string workspace_id = 3;
|
|
630
|
+
*/
|
|
631
|
+
workspaceId: string;
|
|
632
|
+
/**
|
|
633
|
+
* @generated from field: string user_id = 4;
|
|
634
|
+
*/
|
|
635
|
+
userId: string;
|
|
636
|
+
/**
|
|
637
|
+
* @generated from field: string project_id = 5;
|
|
638
|
+
*/
|
|
639
|
+
projectId: string;
|
|
640
|
+
/**
|
|
641
|
+
* @generated from field: string device_id = 6;
|
|
642
|
+
*/
|
|
643
|
+
deviceId: string;
|
|
644
|
+
/**
|
|
645
|
+
* @generated from field: common.v1.TimeRange window = 7;
|
|
646
|
+
*/
|
|
647
|
+
window?: TimeRange | undefined;
|
|
648
|
+
/**
|
|
649
|
+
* @generated from field: repeated string source_memory_ids = 8;
|
|
650
|
+
*/
|
|
651
|
+
sourceMemoryIds: string[];
|
|
652
|
+
/**
|
|
653
|
+
* @generated from field: repeated string source_batch_ids = 9;
|
|
654
|
+
*/
|
|
655
|
+
sourceBatchIds: string[];
|
|
656
|
+
/**
|
|
657
|
+
* @generated from field: repeated string source_frame_hashes = 10;
|
|
658
|
+
*/
|
|
659
|
+
sourceFrameHashes: string[];
|
|
660
|
+
/**
|
|
661
|
+
* @generated from field: repeated string source_artifact_ids = 11;
|
|
662
|
+
*/
|
|
663
|
+
sourceArtifactIds: string[];
|
|
664
|
+
/**
|
|
665
|
+
* @generated from field: repeated string active_artifacts = 12;
|
|
666
|
+
*/
|
|
667
|
+
activeArtifacts: string[];
|
|
668
|
+
/**
|
|
669
|
+
* agentd_work_context is the bounded MCP work-context bundle. It must not
|
|
670
|
+
* include raw frames, bulk OCR, or encrypted local fallback batch contents.
|
|
671
|
+
*
|
|
672
|
+
* @generated from field: google.protobuf.Struct agentd_work_context = 13;
|
|
673
|
+
*/
|
|
674
|
+
agentdWorkContext?: JsonObject | undefined;
|
|
675
|
+
/**
|
|
676
|
+
* @generated from field: bool local_only = 14;
|
|
677
|
+
*/
|
|
678
|
+
localOnly: boolean;
|
|
679
|
+
/**
|
|
680
|
+
* @generated from field: string policy_ref = 15;
|
|
681
|
+
*/
|
|
682
|
+
policyRef: string;
|
|
683
|
+
/**
|
|
684
|
+
* @generated from field: google.protobuf.Timestamp requested_at = 16;
|
|
685
|
+
*/
|
|
686
|
+
requestedAt?: Timestamp | undefined;
|
|
687
|
+
/**
|
|
688
|
+
* @generated from field: google.protobuf.Struct metadata = 17;
|
|
689
|
+
*/
|
|
690
|
+
metadata?: JsonObject | undefined;
|
|
691
|
+
/**
|
|
692
|
+
* observed_affordances lets agentd provide structured, redacted UI state
|
|
693
|
+
* without sending raw screenshots or bulk OCR to the summarizer.
|
|
694
|
+
*
|
|
695
|
+
* @generated from field: repeated chronicle.v1.VisualContextAffordance observed_affordances = 18;
|
|
696
|
+
*/
|
|
697
|
+
observedAffordances: VisualContextAffordance[];
|
|
698
|
+
/**
|
|
699
|
+
* element_states carries stable UI-element transitions across the request
|
|
700
|
+
* window so summarizers and agents can reason about what changed.
|
|
701
|
+
*
|
|
702
|
+
* @generated from field: repeated chronicle.v1.VisualContextElementState element_states = 19;
|
|
703
|
+
*/
|
|
704
|
+
elementStates: VisualContextElementState[];
|
|
705
|
+
};
|
|
706
|
+
/**
|
|
707
|
+
* Describes the message chronicle.v1.VisualContextRequest.
|
|
708
|
+
* Use `create(VisualContextRequestSchema)` to create a new message.
|
|
709
|
+
*/
|
|
710
|
+
export declare const VisualContextRequestSchema: GenMessage<VisualContextRequest>;
|
|
711
|
+
/**
|
|
712
|
+
* VisualContextSummary is the sanitized, evidence-backed result of a Chronicle
|
|
713
|
+
* visual-context summarizer run. Consumers such as Cerebro should ingest the
|
|
714
|
+
* compact facts and evidence refs, not raw screenshots or bulk OCR.
|
|
715
|
+
*
|
|
716
|
+
* @generated from message chronicle.v1.VisualContextSummary
|
|
717
|
+
*/
|
|
718
|
+
export type VisualContextSummary = Message<"chronicle.v1.VisualContextSummary"> & {
|
|
719
|
+
/**
|
|
720
|
+
* @generated from field: string summary_id = 1;
|
|
721
|
+
*/
|
|
722
|
+
summaryId: string;
|
|
723
|
+
/**
|
|
724
|
+
* @generated from field: string request_id = 2;
|
|
725
|
+
*/
|
|
726
|
+
requestId: string;
|
|
727
|
+
/**
|
|
728
|
+
* @generated from field: string organization_id = 3;
|
|
729
|
+
*/
|
|
730
|
+
organizationId: string;
|
|
731
|
+
/**
|
|
732
|
+
* @generated from field: string workspace_id = 4;
|
|
733
|
+
*/
|
|
734
|
+
workspaceId: string;
|
|
735
|
+
/**
|
|
736
|
+
* @generated from field: string user_id = 5;
|
|
737
|
+
*/
|
|
738
|
+
userId: string;
|
|
739
|
+
/**
|
|
740
|
+
* @generated from field: string project_id = 6;
|
|
741
|
+
*/
|
|
742
|
+
projectId: string;
|
|
743
|
+
/**
|
|
744
|
+
* @generated from field: string device_id = 7;
|
|
745
|
+
*/
|
|
746
|
+
deviceId: string;
|
|
747
|
+
/**
|
|
748
|
+
* @generated from field: common.v1.TimeRange window = 8;
|
|
749
|
+
*/
|
|
750
|
+
window?: TimeRange | undefined;
|
|
751
|
+
/**
|
|
752
|
+
* @generated from field: string summary_text = 9;
|
|
753
|
+
*/
|
|
754
|
+
summaryText: string;
|
|
755
|
+
/**
|
|
756
|
+
* @generated from field: repeated chronicle.v1.VisualContextObservation observations = 10;
|
|
757
|
+
*/
|
|
758
|
+
observations: VisualContextObservation[];
|
|
759
|
+
/**
|
|
760
|
+
* @generated from field: repeated string warnings = 11;
|
|
761
|
+
*/
|
|
762
|
+
warnings: string[];
|
|
763
|
+
/**
|
|
764
|
+
* @generated from field: repeated common.v1.EvidenceRef evidence = 12;
|
|
765
|
+
*/
|
|
766
|
+
evidence: EvidenceRef[];
|
|
767
|
+
/**
|
|
768
|
+
* @generated from field: repeated string source_memory_ids = 13;
|
|
769
|
+
*/
|
|
770
|
+
sourceMemoryIds: string[];
|
|
771
|
+
/**
|
|
772
|
+
* @generated from field: repeated string source_batch_ids = 14;
|
|
773
|
+
*/
|
|
774
|
+
sourceBatchIds: string[];
|
|
775
|
+
/**
|
|
776
|
+
* @generated from field: repeated string source_frame_hashes = 15;
|
|
777
|
+
*/
|
|
778
|
+
sourceFrameHashes: string[];
|
|
779
|
+
/**
|
|
780
|
+
* @generated from field: repeated string source_artifact_ids = 16;
|
|
781
|
+
*/
|
|
782
|
+
sourceArtifactIds: string[];
|
|
783
|
+
/**
|
|
784
|
+
* @generated from field: repeated string active_artifacts = 17;
|
|
785
|
+
*/
|
|
786
|
+
activeArtifacts: string[];
|
|
787
|
+
/**
|
|
788
|
+
* @generated from field: string prompt_name = 18;
|
|
789
|
+
*/
|
|
790
|
+
promptName: string;
|
|
791
|
+
/**
|
|
792
|
+
* @generated from field: string prompt_version = 19;
|
|
793
|
+
*/
|
|
794
|
+
promptVersion: string;
|
|
795
|
+
/**
|
|
796
|
+
* @generated from field: string model = 20;
|
|
797
|
+
*/
|
|
798
|
+
model: string;
|
|
799
|
+
/**
|
|
800
|
+
* @generated from field: string provider = 21;
|
|
801
|
+
*/
|
|
802
|
+
provider: string;
|
|
803
|
+
/**
|
|
804
|
+
* @generated from field: string policy_ref = 22;
|
|
805
|
+
*/
|
|
806
|
+
policyRef: string;
|
|
807
|
+
/**
|
|
808
|
+
* @generated from field: string audit_event_id = 23;
|
|
809
|
+
*/
|
|
810
|
+
auditEventId: string;
|
|
811
|
+
/**
|
|
812
|
+
* @generated from field: string meter_event_id = 24;
|
|
813
|
+
*/
|
|
814
|
+
meterEventId: string;
|
|
815
|
+
/**
|
|
816
|
+
* @generated from field: string fermata_eval_run_id = 25;
|
|
817
|
+
*/
|
|
818
|
+
fermataEvalRunId: string;
|
|
819
|
+
/**
|
|
820
|
+
* @generated from field: chronicle.v1.VisualContextRedactionReport redaction = 26;
|
|
821
|
+
*/
|
|
822
|
+
redaction?: VisualContextRedactionReport | undefined;
|
|
823
|
+
/**
|
|
824
|
+
* @generated from field: google.protobuf.Timestamp generated_at = 27;
|
|
825
|
+
*/
|
|
826
|
+
generatedAt?: Timestamp | undefined;
|
|
827
|
+
/**
|
|
828
|
+
* @generated from field: google.protobuf.Timestamp expires_at = 28;
|
|
829
|
+
*/
|
|
830
|
+
expiresAt?: Timestamp | undefined;
|
|
831
|
+
/**
|
|
832
|
+
* @generated from field: double confidence = 29;
|
|
833
|
+
*/
|
|
834
|
+
confidence: number;
|
|
835
|
+
/**
|
|
836
|
+
* @generated from field: google.protobuf.Struct metadata = 30;
|
|
837
|
+
*/
|
|
838
|
+
metadata?: JsonObject | undefined;
|
|
839
|
+
/**
|
|
840
|
+
* affordances are structured UI elements safe enough to prepend to an agent
|
|
841
|
+
* turn as observed context. They must retain evidence IDs and persistence
|
|
842
|
+
* safety so action-taking agents can distinguish evidence from instructions.
|
|
843
|
+
*
|
|
844
|
+
* @generated from field: repeated chronicle.v1.VisualContextAffordance affordances = 31;
|
|
845
|
+
*/
|
|
846
|
+
affordances: VisualContextAffordance[];
|
|
847
|
+
/**
|
|
848
|
+
* element_states are the bounded UI-element timeline distilled from frames.
|
|
849
|
+
* They are evidence for grounding and verification, not user instructions.
|
|
850
|
+
*
|
|
851
|
+
* @generated from field: repeated chronicle.v1.VisualContextElementState element_states = 32;
|
|
852
|
+
*/
|
|
853
|
+
elementStates: VisualContextElementState[];
|
|
854
|
+
/**
|
|
855
|
+
* verifications are bounded re-checks of screen-derived claims before an
|
|
856
|
+
* agent acts. They are evidence about current UI state, not instructions.
|
|
857
|
+
*
|
|
858
|
+
* @generated from field: repeated chronicle.v1.VisualContextVerification verifications = 33;
|
|
859
|
+
*/
|
|
860
|
+
verifications: VisualContextVerification[];
|
|
861
|
+
};
|
|
862
|
+
/**
|
|
863
|
+
* Describes the message chronicle.v1.VisualContextSummary.
|
|
864
|
+
* Use `create(VisualContextSummarySchema)` to create a new message.
|
|
865
|
+
*/
|
|
866
|
+
export declare const VisualContextSummarySchema: GenMessage<VisualContextSummary>;
|
|
867
|
+
/**
|
|
868
|
+
* @generated from message chronicle.v1.VisualContextObservation
|
|
869
|
+
*/
|
|
870
|
+
export type VisualContextObservation = Message<"chronicle.v1.VisualContextObservation"> & {
|
|
871
|
+
/**
|
|
872
|
+
* @generated from field: chronicle.v1.VisualContextObservation.Kind kind = 1;
|
|
873
|
+
*/
|
|
874
|
+
kind: VisualContextObservation_Kind;
|
|
875
|
+
/**
|
|
876
|
+
* @generated from field: string text = 2;
|
|
877
|
+
*/
|
|
878
|
+
text: string;
|
|
879
|
+
/**
|
|
880
|
+
* @generated from field: double confidence = 3;
|
|
881
|
+
*/
|
|
882
|
+
confidence: number;
|
|
883
|
+
/**
|
|
884
|
+
* @generated from field: repeated string evidence_ids = 4;
|
|
885
|
+
*/
|
|
886
|
+
evidenceIds: string[];
|
|
887
|
+
/**
|
|
888
|
+
* @generated from field: google.protobuf.Timestamp observed_at = 5;
|
|
889
|
+
*/
|
|
890
|
+
observedAt?: Timestamp | undefined;
|
|
891
|
+
/**
|
|
892
|
+
* @generated from field: google.protobuf.Timestamp expires_at = 6;
|
|
893
|
+
*/
|
|
894
|
+
expiresAt?: Timestamp | undefined;
|
|
895
|
+
/**
|
|
896
|
+
* @generated from field: google.protobuf.Struct metadata = 7;
|
|
897
|
+
*/
|
|
898
|
+
metadata?: JsonObject | undefined;
|
|
899
|
+
};
|
|
900
|
+
/**
|
|
901
|
+
* Describes the message chronicle.v1.VisualContextObservation.
|
|
902
|
+
* Use `create(VisualContextObservationSchema)` to create a new message.
|
|
903
|
+
*/
|
|
904
|
+
export declare const VisualContextObservationSchema: GenMessage<VisualContextObservation>;
|
|
905
|
+
/**
|
|
906
|
+
* @generated from enum chronicle.v1.VisualContextObservation.Kind
|
|
907
|
+
*/
|
|
908
|
+
export declare enum VisualContextObservation_Kind {
|
|
909
|
+
/**
|
|
910
|
+
* @generated from enum value: KIND_UNSPECIFIED = 0;
|
|
911
|
+
*/
|
|
912
|
+
UNSPECIFIED = 0,
|
|
913
|
+
/**
|
|
914
|
+
* @generated from enum value: KIND_CURRENT_FOCUS = 1;
|
|
915
|
+
*/
|
|
916
|
+
CURRENT_FOCUS = 1,
|
|
917
|
+
/**
|
|
918
|
+
* @generated from enum value: KIND_ACTIVE_ARTIFACT = 2;
|
|
919
|
+
*/
|
|
920
|
+
ACTIVE_ARTIFACT = 2,
|
|
921
|
+
/**
|
|
922
|
+
* @generated from enum value: KIND_BLOCKER = 3;
|
|
923
|
+
*/
|
|
924
|
+
BLOCKER = 3,
|
|
925
|
+
/**
|
|
926
|
+
* @generated from enum value: KIND_PERMISSION_WARNING = 4;
|
|
927
|
+
*/
|
|
928
|
+
PERMISSION_WARNING = 4,
|
|
929
|
+
/**
|
|
930
|
+
* @generated from enum value: KIND_RISK_WARNING = 5;
|
|
931
|
+
*/
|
|
932
|
+
RISK_WARNING = 5,
|
|
933
|
+
/**
|
|
934
|
+
* @generated from enum value: KIND_NEXT_ACTION_CONTEXT = 6;
|
|
935
|
+
*/
|
|
936
|
+
NEXT_ACTION_CONTEXT = 6
|
|
937
|
+
}
|
|
938
|
+
/**
|
|
939
|
+
* Describes the enum chronicle.v1.VisualContextObservation.Kind.
|
|
940
|
+
*/
|
|
941
|
+
export declare const VisualContextObservation_KindSchema: GenEnum<VisualContextObservation_Kind>;
|
|
942
|
+
/**
|
|
943
|
+
* @generated from message chronicle.v1.VisualContextRedactionReport
|
|
944
|
+
*/
|
|
945
|
+
export type VisualContextRedactionReport = Message<"chronicle.v1.VisualContextRedactionReport"> & {
|
|
946
|
+
/**
|
|
947
|
+
* @generated from field: bool raw_frames_excluded = 1;
|
|
948
|
+
*/
|
|
949
|
+
rawFramesExcluded: boolean;
|
|
950
|
+
/**
|
|
951
|
+
* @generated from field: bool bulk_ocr_excluded = 2;
|
|
952
|
+
*/
|
|
953
|
+
bulkOcrExcluded: boolean;
|
|
954
|
+
/**
|
|
955
|
+
* @generated from field: bool encrypted_batches_excluded = 3;
|
|
956
|
+
*/
|
|
957
|
+
encryptedBatchesExcluded: boolean;
|
|
958
|
+
/**
|
|
959
|
+
* @generated from field: int32 excerpt_count = 4;
|
|
960
|
+
*/
|
|
961
|
+
excerptCount: number;
|
|
962
|
+
/**
|
|
963
|
+
* @generated from field: int32 redacted_secret_count = 5;
|
|
964
|
+
*/
|
|
965
|
+
redactedSecretCount: number;
|
|
966
|
+
/**
|
|
967
|
+
* @generated from field: repeated string redaction_reasons = 6;
|
|
968
|
+
*/
|
|
969
|
+
redactionReasons: string[];
|
|
970
|
+
};
|
|
971
|
+
/**
|
|
972
|
+
* Describes the message chronicle.v1.VisualContextRedactionReport.
|
|
973
|
+
* Use `create(VisualContextRedactionReportSchema)` to create a new message.
|
|
974
|
+
*/
|
|
975
|
+
export declare const VisualContextRedactionReportSchema: GenMessage<VisualContextRedactionReport>;
|
|
976
|
+
/**
|
|
977
|
+
* @generated from message chronicle.v1.ScreenBounds
|
|
978
|
+
*/
|
|
979
|
+
export type ScreenBounds = Message<"chronicle.v1.ScreenBounds"> & {
|
|
980
|
+
/**
|
|
981
|
+
* @generated from field: int32 x = 1;
|
|
982
|
+
*/
|
|
983
|
+
x: number;
|
|
984
|
+
/**
|
|
985
|
+
* @generated from field: int32 y = 2;
|
|
986
|
+
*/
|
|
987
|
+
y: number;
|
|
988
|
+
/**
|
|
989
|
+
* @generated from field: int32 width = 3;
|
|
990
|
+
*/
|
|
991
|
+
width: number;
|
|
992
|
+
/**
|
|
993
|
+
* @generated from field: int32 height = 4;
|
|
994
|
+
*/
|
|
995
|
+
height: number;
|
|
996
|
+
/**
|
|
997
|
+
* @generated from field: int32 display_width_px = 5;
|
|
998
|
+
*/
|
|
999
|
+
displayWidthPx: number;
|
|
1000
|
+
/**
|
|
1001
|
+
* @generated from field: int32 display_height_px = 6;
|
|
1002
|
+
*/
|
|
1003
|
+
displayHeightPx: number;
|
|
1004
|
+
/**
|
|
1005
|
+
* @generated from field: string display_id = 7;
|
|
1006
|
+
*/
|
|
1007
|
+
displayId: string;
|
|
1008
|
+
};
|
|
1009
|
+
/**
|
|
1010
|
+
* Describes the message chronicle.v1.ScreenBounds.
|
|
1011
|
+
* Use `create(ScreenBoundsSchema)` to create a new message.
|
|
1012
|
+
*/
|
|
1013
|
+
export declare const ScreenBoundsSchema: GenMessage<ScreenBounds>;
|
|
1014
|
+
/**
|
|
1015
|
+
* @generated from message chronicle.v1.VisualContextAffordance
|
|
1016
|
+
*/
|
|
1017
|
+
export type VisualContextAffordance = Message<"chronicle.v1.VisualContextAffordance"> & {
|
|
1018
|
+
/**
|
|
1019
|
+
* @generated from field: string affordance_id = 1;
|
|
1020
|
+
*/
|
|
1021
|
+
affordanceId: string;
|
|
1022
|
+
/**
|
|
1023
|
+
* @generated from field: chronicle.v1.VisualContextAffordance.Kind kind = 2;
|
|
1024
|
+
*/
|
|
1025
|
+
kind: VisualContextAffordance_Kind;
|
|
1026
|
+
/**
|
|
1027
|
+
* @generated from field: string label = 3;
|
|
1028
|
+
*/
|
|
1029
|
+
label: string;
|
|
1030
|
+
/**
|
|
1031
|
+
* @generated from field: string text = 4;
|
|
1032
|
+
*/
|
|
1033
|
+
text: string;
|
|
1034
|
+
/**
|
|
1035
|
+
* @generated from field: string role = 5;
|
|
1036
|
+
*/
|
|
1037
|
+
role: string;
|
|
1038
|
+
/**
|
|
1039
|
+
* @generated from field: string app_bundle_id = 6;
|
|
1040
|
+
*/
|
|
1041
|
+
appBundleId: string;
|
|
1042
|
+
/**
|
|
1043
|
+
* @generated from field: string window_title = 7;
|
|
1044
|
+
*/
|
|
1045
|
+
windowTitle: string;
|
|
1046
|
+
/**
|
|
1047
|
+
* @generated from field: chronicle.v1.ScreenBounds bounds = 8;
|
|
1048
|
+
*/
|
|
1049
|
+
bounds?: ScreenBounds | undefined;
|
|
1050
|
+
/**
|
|
1051
|
+
* @generated from field: double confidence = 9;
|
|
1052
|
+
*/
|
|
1053
|
+
confidence: number;
|
|
1054
|
+
/**
|
|
1055
|
+
* @generated from field: repeated string evidence_ids = 10;
|
|
1056
|
+
*/
|
|
1057
|
+
evidenceIds: string[];
|
|
1058
|
+
/**
|
|
1059
|
+
* If unset, the producing stage did not provide a persistence decision.
|
|
1060
|
+
*
|
|
1061
|
+
* @generated from field: optional bool safe_to_persist = 11;
|
|
1062
|
+
*/
|
|
1063
|
+
safeToPersist?: boolean | undefined;
|
|
1064
|
+
/**
|
|
1065
|
+
* @generated from field: string persistence_decision_reason = 12;
|
|
1066
|
+
*/
|
|
1067
|
+
persistenceDecisionReason: string;
|
|
1068
|
+
/**
|
|
1069
|
+
* @generated from field: google.protobuf.Struct metadata = 13;
|
|
1070
|
+
*/
|
|
1071
|
+
metadata?: JsonObject | undefined;
|
|
1072
|
+
/**
|
|
1073
|
+
* action_grounding describes what kind of UI action this affordance could
|
|
1074
|
+
* support. It is not an instruction to execute the action.
|
|
1075
|
+
*
|
|
1076
|
+
* @generated from field: chronicle.v1.VisualContextActionGrounding action_grounding = 14;
|
|
1077
|
+
*/
|
|
1078
|
+
actionGrounding?: VisualContextActionGrounding | undefined;
|
|
1079
|
+
/**
|
|
1080
|
+
* stable_element_id links this affordance to the same UI element across
|
|
1081
|
+
* frames/windows when the producer can infer identity.
|
|
1082
|
+
*
|
|
1083
|
+
* @generated from field: string stable_element_id = 15;
|
|
1084
|
+
*/
|
|
1085
|
+
stableElementId: string;
|
|
1086
|
+
/**
|
|
1087
|
+
* verification is the latest bounded re-check of this affordance, when a
|
|
1088
|
+
* verifier has looked at fresh screen evidence before an agent acts.
|
|
1089
|
+
*
|
|
1090
|
+
* @generated from field: chronicle.v1.VisualContextVerification verification = 16;
|
|
1091
|
+
*/
|
|
1092
|
+
verification?: VisualContextVerification | undefined;
|
|
1093
|
+
};
|
|
1094
|
+
/**
|
|
1095
|
+
* Describes the message chronicle.v1.VisualContextAffordance.
|
|
1096
|
+
* Use `create(VisualContextAffordanceSchema)` to create a new message.
|
|
1097
|
+
*/
|
|
1098
|
+
export declare const VisualContextAffordanceSchema: GenMessage<VisualContextAffordance>;
|
|
1099
|
+
/**
|
|
1100
|
+
* @generated from enum chronicle.v1.VisualContextAffordance.Kind
|
|
1101
|
+
*/
|
|
1102
|
+
export declare enum VisualContextAffordance_Kind {
|
|
1103
|
+
/**
|
|
1104
|
+
* @generated from enum value: KIND_UNSPECIFIED = 0;
|
|
1105
|
+
*/
|
|
1106
|
+
UNSPECIFIED = 0,
|
|
1107
|
+
/**
|
|
1108
|
+
* @generated from enum value: KIND_BUTTON = 1;
|
|
1109
|
+
*/
|
|
1110
|
+
BUTTON = 1,
|
|
1111
|
+
/**
|
|
1112
|
+
* @generated from enum value: KIND_TEXT_FIELD = 2;
|
|
1113
|
+
*/
|
|
1114
|
+
TEXT_FIELD = 2,
|
|
1115
|
+
/**
|
|
1116
|
+
* @generated from enum value: KIND_LINK = 3;
|
|
1117
|
+
*/
|
|
1118
|
+
LINK = 3,
|
|
1119
|
+
/**
|
|
1120
|
+
* @generated from enum value: KIND_MENU_ITEM = 4;
|
|
1121
|
+
*/
|
|
1122
|
+
MENU_ITEM = 4,
|
|
1123
|
+
/**
|
|
1124
|
+
* @generated from enum value: KIND_TAB = 5;
|
|
1125
|
+
*/
|
|
1126
|
+
TAB = 5,
|
|
1127
|
+
/**
|
|
1128
|
+
* @generated from enum value: KIND_WINDOW = 6;
|
|
1129
|
+
*/
|
|
1130
|
+
WINDOW = 6,
|
|
1131
|
+
/**
|
|
1132
|
+
* @generated from enum value: KIND_TEXT = 7;
|
|
1133
|
+
*/
|
|
1134
|
+
TEXT = 7,
|
|
1135
|
+
/**
|
|
1136
|
+
* @generated from enum value: KIND_IMAGE = 8;
|
|
1137
|
+
*/
|
|
1138
|
+
IMAGE = 8,
|
|
1139
|
+
/**
|
|
1140
|
+
* @generated from enum value: KIND_CODE_EDITOR = 9;
|
|
1141
|
+
*/
|
|
1142
|
+
CODE_EDITOR = 9,
|
|
1143
|
+
/**
|
|
1144
|
+
* @generated from enum value: KIND_TERMINAL = 10;
|
|
1145
|
+
*/
|
|
1146
|
+
TERMINAL = 10,
|
|
1147
|
+
/**
|
|
1148
|
+
* @generated from enum value: KIND_OTHER = 11;
|
|
1149
|
+
*/
|
|
1150
|
+
OTHER = 11
|
|
1151
|
+
}
|
|
1152
|
+
/**
|
|
1153
|
+
* Describes the enum chronicle.v1.VisualContextAffordance.Kind.
|
|
1154
|
+
*/
|
|
1155
|
+
export declare const VisualContextAffordance_KindSchema: GenEnum<VisualContextAffordance_Kind>;
|
|
1156
|
+
/**
|
|
1157
|
+
* @generated from message chronicle.v1.VisualContextActionGrounding
|
|
1158
|
+
*/
|
|
1159
|
+
export type VisualContextActionGrounding = Message<"chronicle.v1.VisualContextActionGrounding"> & {
|
|
1160
|
+
/**
|
|
1161
|
+
* @generated from field: chronicle.v1.VisualContextActionGrounding.ActionKind action_kind = 1;
|
|
1162
|
+
*/
|
|
1163
|
+
actionKind: VisualContextActionGrounding_ActionKind;
|
|
1164
|
+
/**
|
|
1165
|
+
* @generated from field: string target_action = 2;
|
|
1166
|
+
*/
|
|
1167
|
+
targetAction: string;
|
|
1168
|
+
/**
|
|
1169
|
+
* If unset, the producer did not provide a confirmation requirement signal.
|
|
1170
|
+
*
|
|
1171
|
+
* @generated from field: optional bool requires_confirmation = 3;
|
|
1172
|
+
*/
|
|
1173
|
+
requiresConfirmation?: boolean | undefined;
|
|
1174
|
+
/**
|
|
1175
|
+
* If unset, the producer did not provide a destructive-action signal.
|
|
1176
|
+
*
|
|
1177
|
+
* @generated from field: optional bool destructive = 4;
|
|
1178
|
+
*/
|
|
1179
|
+
destructive?: boolean | undefined;
|
|
1180
|
+
/**
|
|
1181
|
+
* If unset, the producer did not provide an enabled/disabled signal.
|
|
1182
|
+
*
|
|
1183
|
+
* @generated from field: optional bool disabled = 5;
|
|
1184
|
+
*/
|
|
1185
|
+
disabled?: boolean | undefined;
|
|
1186
|
+
/**
|
|
1187
|
+
* @generated from field: string disabled_reason = 6;
|
|
1188
|
+
*/
|
|
1189
|
+
disabledReason: string;
|
|
1190
|
+
/**
|
|
1191
|
+
* @generated from field: string verification_hint = 7;
|
|
1192
|
+
*/
|
|
1193
|
+
verificationHint: string;
|
|
1194
|
+
/**
|
|
1195
|
+
* @generated from field: string guardrail_reason = 8;
|
|
1196
|
+
*/
|
|
1197
|
+
guardrailReason: string;
|
|
1198
|
+
/**
|
|
1199
|
+
* @generated from field: google.protobuf.Struct metadata = 9;
|
|
1200
|
+
*/
|
|
1201
|
+
metadata?: JsonObject | undefined;
|
|
1202
|
+
};
|
|
1203
|
+
/**
|
|
1204
|
+
* Describes the message chronicle.v1.VisualContextActionGrounding.
|
|
1205
|
+
* Use `create(VisualContextActionGroundingSchema)` to create a new message.
|
|
1206
|
+
*/
|
|
1207
|
+
export declare const VisualContextActionGroundingSchema: GenMessage<VisualContextActionGrounding>;
|
|
1208
|
+
/**
|
|
1209
|
+
* @generated from enum chronicle.v1.VisualContextActionGrounding.ActionKind
|
|
1210
|
+
*/
|
|
1211
|
+
export declare enum VisualContextActionGrounding_ActionKind {
|
|
1212
|
+
/**
|
|
1213
|
+
* @generated from enum value: ACTION_KIND_UNSPECIFIED = 0;
|
|
1214
|
+
*/
|
|
1215
|
+
UNSPECIFIED = 0,
|
|
1216
|
+
/**
|
|
1217
|
+
* @generated from enum value: ACTION_KIND_NONE = 1;
|
|
1218
|
+
*/
|
|
1219
|
+
NONE = 1,
|
|
1220
|
+
/**
|
|
1221
|
+
* @generated from enum value: ACTION_KIND_CLICK = 2;
|
|
1222
|
+
*/
|
|
1223
|
+
CLICK = 2,
|
|
1224
|
+
/**
|
|
1225
|
+
* @generated from enum value: ACTION_KIND_TYPE_TEXT = 3;
|
|
1226
|
+
*/
|
|
1227
|
+
TYPE_TEXT = 3,
|
|
1228
|
+
/**
|
|
1229
|
+
* @generated from enum value: ACTION_KIND_SELECT = 4;
|
|
1230
|
+
*/
|
|
1231
|
+
SELECT = 4,
|
|
1232
|
+
/**
|
|
1233
|
+
* @generated from enum value: ACTION_KIND_SUBMIT = 5;
|
|
1234
|
+
*/
|
|
1235
|
+
SUBMIT = 5,
|
|
1236
|
+
/**
|
|
1237
|
+
* @generated from enum value: ACTION_KIND_OPEN = 6;
|
|
1238
|
+
*/
|
|
1239
|
+
OPEN = 6,
|
|
1240
|
+
/**
|
|
1241
|
+
* @generated from enum value: ACTION_KIND_CONFIRM = 7;
|
|
1242
|
+
*/
|
|
1243
|
+
CONFIRM = 7,
|
|
1244
|
+
/**
|
|
1245
|
+
* @generated from enum value: ACTION_KIND_DISMISS = 8;
|
|
1246
|
+
*/
|
|
1247
|
+
DISMISS = 8
|
|
1248
|
+
}
|
|
1249
|
+
/**
|
|
1250
|
+
* Describes the enum chronicle.v1.VisualContextActionGrounding.ActionKind.
|
|
1251
|
+
*/
|
|
1252
|
+
export declare const VisualContextActionGrounding_ActionKindSchema: GenEnum<VisualContextActionGrounding_ActionKind>;
|
|
1253
|
+
/**
|
|
1254
|
+
* @generated from message chronicle.v1.VisualContextElementState
|
|
1255
|
+
*/
|
|
1256
|
+
export type VisualContextElementState = Message<"chronicle.v1.VisualContextElementState"> & {
|
|
1257
|
+
/**
|
|
1258
|
+
* @generated from field: string stable_element_id = 1;
|
|
1259
|
+
*/
|
|
1260
|
+
stableElementId: string;
|
|
1261
|
+
/**
|
|
1262
|
+
* @generated from field: string affordance_id = 2;
|
|
1263
|
+
*/
|
|
1264
|
+
affordanceId: string;
|
|
1265
|
+
/**
|
|
1266
|
+
* @generated from field: chronicle.v1.VisualContextElementState.Transition transition = 3;
|
|
1267
|
+
*/
|
|
1268
|
+
transition: VisualContextElementState_Transition;
|
|
1269
|
+
/**
|
|
1270
|
+
* @generated from field: chronicle.v1.VisualContextAffordance affordance = 4;
|
|
1271
|
+
*/
|
|
1272
|
+
affordance?: VisualContextAffordance | undefined;
|
|
1273
|
+
/**
|
|
1274
|
+
* @generated from field: google.protobuf.Timestamp observed_at = 5;
|
|
1275
|
+
*/
|
|
1276
|
+
observedAt?: Timestamp | undefined;
|
|
1277
|
+
/**
|
|
1278
|
+
* @generated from field: google.protobuf.Timestamp previous_observed_at = 6;
|
|
1279
|
+
*/
|
|
1280
|
+
previousObservedAt?: Timestamp | undefined;
|
|
1281
|
+
/**
|
|
1282
|
+
* @generated from field: repeated string evidence_ids = 7;
|
|
1283
|
+
*/
|
|
1284
|
+
evidenceIds: string[];
|
|
1285
|
+
/**
|
|
1286
|
+
* @generated from field: chronicle.v1.VisualContextActionGrounding action_grounding = 8;
|
|
1287
|
+
*/
|
|
1288
|
+
actionGrounding?: VisualContextActionGrounding | undefined;
|
|
1289
|
+
/**
|
|
1290
|
+
* If unset, the producing stage did not provide a persistence decision.
|
|
1291
|
+
*
|
|
1292
|
+
* @generated from field: optional bool safe_to_persist = 9;
|
|
1293
|
+
*/
|
|
1294
|
+
safeToPersist?: boolean | undefined;
|
|
1295
|
+
/**
|
|
1296
|
+
* @generated from field: string persistence_decision_reason = 10;
|
|
1297
|
+
*/
|
|
1298
|
+
persistenceDecisionReason: string;
|
|
1299
|
+
/**
|
|
1300
|
+
* @generated from field: google.protobuf.Struct metadata = 11;
|
|
1301
|
+
*/
|
|
1302
|
+
metadata?: JsonObject | undefined;
|
|
1303
|
+
/**
|
|
1304
|
+
* verification is the latest bounded re-check of this stable UI element.
|
|
1305
|
+
* It is evidence about current screen state, not action authorization.
|
|
1306
|
+
*
|
|
1307
|
+
* @generated from field: chronicle.v1.VisualContextVerification verification = 12;
|
|
1308
|
+
*/
|
|
1309
|
+
verification?: VisualContextVerification | undefined;
|
|
1310
|
+
};
|
|
1311
|
+
/**
|
|
1312
|
+
* Describes the message chronicle.v1.VisualContextElementState.
|
|
1313
|
+
* Use `create(VisualContextElementStateSchema)` to create a new message.
|
|
1314
|
+
*/
|
|
1315
|
+
export declare const VisualContextElementStateSchema: GenMessage<VisualContextElementState>;
|
|
1316
|
+
/**
|
|
1317
|
+
* @generated from enum chronicle.v1.VisualContextElementState.Transition
|
|
1318
|
+
*/
|
|
1319
|
+
export declare enum VisualContextElementState_Transition {
|
|
1320
|
+
/**
|
|
1321
|
+
* @generated from enum value: TRANSITION_UNSPECIFIED = 0;
|
|
1322
|
+
*/
|
|
1323
|
+
UNSPECIFIED = 0,
|
|
1324
|
+
/**
|
|
1325
|
+
* @generated from enum value: TRANSITION_APPEARED = 1;
|
|
1326
|
+
*/
|
|
1327
|
+
APPEARED = 1,
|
|
1328
|
+
/**
|
|
1329
|
+
* @generated from enum value: TRANSITION_UPDATED = 2;
|
|
1330
|
+
*/
|
|
1331
|
+
UPDATED = 2,
|
|
1332
|
+
/**
|
|
1333
|
+
* @generated from enum value: TRANSITION_UNCHANGED = 3;
|
|
1334
|
+
*/
|
|
1335
|
+
UNCHANGED = 3,
|
|
1336
|
+
/**
|
|
1337
|
+
* @generated from enum value: TRANSITION_DISAPPEARED = 4;
|
|
1338
|
+
*/
|
|
1339
|
+
DISAPPEARED = 4
|
|
1340
|
+
}
|
|
1341
|
+
/**
|
|
1342
|
+
* Describes the enum chronicle.v1.VisualContextElementState.Transition.
|
|
1343
|
+
*/
|
|
1344
|
+
export declare const VisualContextElementState_TransitionSchema: GenEnum<VisualContextElementState_Transition>;
|
|
1345
|
+
/**
|
|
1346
|
+
* @generated from message chronicle.v1.VisualContextVerification
|
|
1347
|
+
*/
|
|
1348
|
+
export type VisualContextVerification = Message<"chronicle.v1.VisualContextVerification"> & {
|
|
1349
|
+
/**
|
|
1350
|
+
* @generated from field: string verification_id = 1;
|
|
1351
|
+
*/
|
|
1352
|
+
verificationId: string;
|
|
1353
|
+
/**
|
|
1354
|
+
* @generated from field: string stable_element_id = 2;
|
|
1355
|
+
*/
|
|
1356
|
+
stableElementId: string;
|
|
1357
|
+
/**
|
|
1358
|
+
* @generated from field: string affordance_id = 3;
|
|
1359
|
+
*/
|
|
1360
|
+
affordanceId: string;
|
|
1361
|
+
/**
|
|
1362
|
+
* @generated from field: chronicle.v1.VisualContextVerification.Result result = 4;
|
|
1363
|
+
*/
|
|
1364
|
+
result: VisualContextVerification_Result;
|
|
1365
|
+
/**
|
|
1366
|
+
* @generated from field: google.protobuf.Timestamp checked_at = 5;
|
|
1367
|
+
*/
|
|
1368
|
+
checkedAt?: Timestamp | undefined;
|
|
1369
|
+
/**
|
|
1370
|
+
* @generated from field: repeated string evidence_ids = 6;
|
|
1371
|
+
*/
|
|
1372
|
+
evidenceIds: string[];
|
|
1373
|
+
/**
|
|
1374
|
+
* @generated from field: string verifier_id = 7;
|
|
1375
|
+
*/
|
|
1376
|
+
verifierId: string;
|
|
1377
|
+
/**
|
|
1378
|
+
* @generated from field: double confidence = 8;
|
|
1379
|
+
*/
|
|
1380
|
+
confidence: number;
|
|
1381
|
+
/**
|
|
1382
|
+
* current_frame_checked means the verifier looked at a current bounded frame
|
|
1383
|
+
* or current element snapshot, not only an older summary.
|
|
1384
|
+
*
|
|
1385
|
+
* @generated from field: bool current_frame_checked = 9;
|
|
1386
|
+
*/
|
|
1387
|
+
currentFrameChecked: boolean;
|
|
1388
|
+
/**
|
|
1389
|
+
* safe_to_act is a verifier-local guardrail result. It is not a replacement
|
|
1390
|
+
* for product policy, user confirmation, or action authorization.
|
|
1391
|
+
*
|
|
1392
|
+
* @generated from field: bool safe_to_act = 10;
|
|
1393
|
+
*/
|
|
1394
|
+
safeToAct: boolean;
|
|
1395
|
+
/**
|
|
1396
|
+
* @generated from field: string guardrail_reason = 11;
|
|
1397
|
+
*/
|
|
1398
|
+
guardrailReason: string;
|
|
1399
|
+
/**
|
|
1400
|
+
* @generated from field: string mismatch_reason = 12;
|
|
1401
|
+
*/
|
|
1402
|
+
mismatchReason: string;
|
|
1403
|
+
/**
|
|
1404
|
+
* @generated from field: chronicle.v1.VisualContextActionGrounding action_grounding = 13;
|
|
1405
|
+
*/
|
|
1406
|
+
actionGrounding?: VisualContextActionGrounding | undefined;
|
|
1407
|
+
/**
|
|
1408
|
+
* @generated from field: google.protobuf.Struct metadata = 14;
|
|
1409
|
+
*/
|
|
1410
|
+
metadata?: JsonObject | undefined;
|
|
1411
|
+
};
|
|
1412
|
+
/**
|
|
1413
|
+
* Describes the message chronicle.v1.VisualContextVerification.
|
|
1414
|
+
* Use `create(VisualContextVerificationSchema)` to create a new message.
|
|
1415
|
+
*/
|
|
1416
|
+
export declare const VisualContextVerificationSchema: GenMessage<VisualContextVerification>;
|
|
1417
|
+
/**
|
|
1418
|
+
* @generated from enum chronicle.v1.VisualContextVerification.Result
|
|
1419
|
+
*/
|
|
1420
|
+
export declare enum VisualContextVerification_Result {
|
|
1421
|
+
/**
|
|
1422
|
+
* @generated from enum value: RESULT_UNSPECIFIED = 0;
|
|
1423
|
+
*/
|
|
1424
|
+
UNSPECIFIED = 0,
|
|
1425
|
+
/**
|
|
1426
|
+
* @generated from enum value: RESULT_PRESENT = 1;
|
|
1427
|
+
*/
|
|
1428
|
+
PRESENT = 1,
|
|
1429
|
+
/**
|
|
1430
|
+
* @generated from enum value: RESULT_ABSENT = 2;
|
|
1431
|
+
*/
|
|
1432
|
+
ABSENT = 2,
|
|
1433
|
+
/**
|
|
1434
|
+
* @generated from enum value: RESULT_CHANGED = 3;
|
|
1435
|
+
*/
|
|
1436
|
+
CHANGED = 3,
|
|
1437
|
+
/**
|
|
1438
|
+
* @generated from enum value: RESULT_DISABLED = 4;
|
|
1439
|
+
*/
|
|
1440
|
+
DISABLED = 4,
|
|
1441
|
+
/**
|
|
1442
|
+
* @generated from enum value: RESULT_BLOCKED = 5;
|
|
1443
|
+
*/
|
|
1444
|
+
BLOCKED = 5,
|
|
1445
|
+
/**
|
|
1446
|
+
* @generated from enum value: RESULT_STALE = 6;
|
|
1447
|
+
*/
|
|
1448
|
+
STALE = 6
|
|
1449
|
+
}
|
|
1450
|
+
/**
|
|
1451
|
+
* Describes the enum chronicle.v1.VisualContextVerification.Result.
|
|
1452
|
+
*/
|
|
1453
|
+
export declare const VisualContextVerification_ResultSchema: GenEnum<VisualContextVerification_Result>;
|
|
1454
|
+
/**
|
|
1455
|
+
* VisualAgentEpisode records a complete screen-grounded agent loop. It is the
|
|
1456
|
+
* durable audit/eval envelope for observe -> ground -> verify -> propose/act ->
|
|
1457
|
+
* outcome. It must carry cited, redacted evidence only; raw frames, screenshots,
|
|
1458
|
+
* bulk OCR, and encrypted fallback batches remain outside this contract.
|
|
1459
|
+
*
|
|
1460
|
+
* @generated from message chronicle.v1.VisualAgentEpisode
|
|
1461
|
+
*/
|
|
1462
|
+
export type VisualAgentEpisode = Message<"chronicle.v1.VisualAgentEpisode"> & {
|
|
1463
|
+
/**
|
|
1464
|
+
* @generated from field: string episode_id = 1;
|
|
1465
|
+
*/
|
|
1466
|
+
episodeId: string;
|
|
1467
|
+
/**
|
|
1468
|
+
* @generated from field: string organization_id = 2;
|
|
1469
|
+
*/
|
|
1470
|
+
organizationId: string;
|
|
1471
|
+
/**
|
|
1472
|
+
* @generated from field: string workspace_id = 3;
|
|
1473
|
+
*/
|
|
1474
|
+
workspaceId: string;
|
|
1475
|
+
/**
|
|
1476
|
+
* @generated from field: string user_id = 4;
|
|
1477
|
+
*/
|
|
1478
|
+
userId: string;
|
|
1479
|
+
/**
|
|
1480
|
+
* @generated from field: string project_id = 5;
|
|
1481
|
+
*/
|
|
1482
|
+
projectId: string;
|
|
1483
|
+
/**
|
|
1484
|
+
* @generated from field: string device_id = 6;
|
|
1485
|
+
*/
|
|
1486
|
+
deviceId: string;
|
|
1487
|
+
/**
|
|
1488
|
+
* @generated from field: common.v1.TimeRange window = 7;
|
|
1489
|
+
*/
|
|
1490
|
+
window?: TimeRange | undefined;
|
|
1491
|
+
/**
|
|
1492
|
+
* @generated from field: string instruction = 8;
|
|
1493
|
+
*/
|
|
1494
|
+
instruction: string;
|
|
1495
|
+
/**
|
|
1496
|
+
* @generated from field: string agent_id = 9;
|
|
1497
|
+
*/
|
|
1498
|
+
agentId: string;
|
|
1499
|
+
/**
|
|
1500
|
+
* @generated from field: string model = 10;
|
|
1501
|
+
*/
|
|
1502
|
+
model: string;
|
|
1503
|
+
/**
|
|
1504
|
+
* @generated from field: string provider = 11;
|
|
1505
|
+
*/
|
|
1506
|
+
provider: string;
|
|
1507
|
+
/**
|
|
1508
|
+
* @generated from field: string policy_ref = 12;
|
|
1509
|
+
*/
|
|
1510
|
+
policyRef: string;
|
|
1511
|
+
/**
|
|
1512
|
+
* @generated from field: string summary_id = 13;
|
|
1513
|
+
*/
|
|
1514
|
+
summaryId: string;
|
|
1515
|
+
/**
|
|
1516
|
+
* @generated from field: repeated string source_memory_ids = 14;
|
|
1517
|
+
*/
|
|
1518
|
+
sourceMemoryIds: string[];
|
|
1519
|
+
/**
|
|
1520
|
+
* @generated from field: repeated string source_batch_ids = 15;
|
|
1521
|
+
*/
|
|
1522
|
+
sourceBatchIds: string[];
|
|
1523
|
+
/**
|
|
1524
|
+
* @generated from field: repeated string source_frame_hashes = 16;
|
|
1525
|
+
*/
|
|
1526
|
+
sourceFrameHashes: string[];
|
|
1527
|
+
/**
|
|
1528
|
+
* @generated from field: repeated string source_artifact_ids = 17;
|
|
1529
|
+
*/
|
|
1530
|
+
sourceArtifactIds: string[];
|
|
1531
|
+
/**
|
|
1532
|
+
* @generated from field: repeated string active_artifacts = 18;
|
|
1533
|
+
*/
|
|
1534
|
+
activeArtifacts: string[];
|
|
1535
|
+
/**
|
|
1536
|
+
* @generated from field: chronicle.v1.VisualContextRedactionReport redaction = 19;
|
|
1537
|
+
*/
|
|
1538
|
+
redaction?: VisualContextRedactionReport | undefined;
|
|
1539
|
+
/**
|
|
1540
|
+
* @generated from field: repeated chronicle.v1.VisualAgentStep steps = 20;
|
|
1541
|
+
*/
|
|
1542
|
+
steps: VisualAgentStep[];
|
|
1543
|
+
/**
|
|
1544
|
+
* @generated from field: chronicle.v1.VisualAgentOutcome outcome = 21;
|
|
1545
|
+
*/
|
|
1546
|
+
outcome?: VisualAgentOutcome | undefined;
|
|
1547
|
+
/**
|
|
1548
|
+
* @generated from field: repeated chronicle.v1.VisualActionLedgerEntry action_ledger = 22;
|
|
1549
|
+
*/
|
|
1550
|
+
actionLedger: VisualActionLedgerEntry[];
|
|
1551
|
+
/**
|
|
1552
|
+
* @generated from field: string audit_event_id = 23;
|
|
1553
|
+
*/
|
|
1554
|
+
auditEventId: string;
|
|
1555
|
+
/**
|
|
1556
|
+
* @generated from field: string meter_event_id = 24;
|
|
1557
|
+
*/
|
|
1558
|
+
meterEventId: string;
|
|
1559
|
+
/**
|
|
1560
|
+
* @generated from field: string fermata_eval_run_id = 25;
|
|
1561
|
+
*/
|
|
1562
|
+
fermataEvalRunId: string;
|
|
1563
|
+
/**
|
|
1564
|
+
* @generated from field: google.protobuf.Timestamp started_at = 26;
|
|
1565
|
+
*/
|
|
1566
|
+
startedAt?: Timestamp | undefined;
|
|
1567
|
+
/**
|
|
1568
|
+
* @generated from field: google.protobuf.Timestamp completed_at = 27;
|
|
1569
|
+
*/
|
|
1570
|
+
completedAt?: Timestamp | undefined;
|
|
1571
|
+
/**
|
|
1572
|
+
* @generated from field: double confidence = 28;
|
|
1573
|
+
*/
|
|
1574
|
+
confidence: number;
|
|
1575
|
+
/**
|
|
1576
|
+
* @generated from field: google.protobuf.Struct metadata = 29;
|
|
1577
|
+
*/
|
|
1578
|
+
metadata?: JsonObject | undefined;
|
|
473
1579
|
};
|
|
474
1580
|
/**
|
|
475
|
-
* Describes the message chronicle.v1.
|
|
476
|
-
* Use `create(
|
|
1581
|
+
* Describes the message chronicle.v1.VisualAgentEpisode.
|
|
1582
|
+
* Use `create(VisualAgentEpisodeSchema)` to create a new message.
|
|
477
1583
|
*/
|
|
478
|
-
export declare const
|
|
1584
|
+
export declare const VisualAgentEpisodeSchema: GenMessage<VisualAgentEpisode>;
|
|
479
1585
|
/**
|
|
480
|
-
* @generated from message chronicle.v1.
|
|
1586
|
+
* @generated from message chronicle.v1.VisualAgentStep
|
|
481
1587
|
*/
|
|
482
|
-
export type
|
|
1588
|
+
export type VisualAgentStep = Message<"chronicle.v1.VisualAgentStep"> & {
|
|
483
1589
|
/**
|
|
484
|
-
* @generated from field:
|
|
1590
|
+
* @generated from field: string step_id = 1;
|
|
485
1591
|
*/
|
|
486
|
-
|
|
1592
|
+
stepId: string;
|
|
487
1593
|
/**
|
|
488
|
-
* @generated from field: int32
|
|
1594
|
+
* @generated from field: int32 index = 2;
|
|
489
1595
|
*/
|
|
490
|
-
|
|
1596
|
+
index: number;
|
|
491
1597
|
/**
|
|
492
|
-
* @generated from field:
|
|
1598
|
+
* @generated from field: chronicle.v1.VisualAgentStep.Kind kind = 3;
|
|
493
1599
|
*/
|
|
494
|
-
|
|
1600
|
+
kind: VisualAgentStep_Kind;
|
|
495
1601
|
/**
|
|
496
|
-
* @generated from field:
|
|
1602
|
+
* @generated from field: string summary_id = 4;
|
|
497
1603
|
*/
|
|
498
|
-
|
|
1604
|
+
summaryId: string;
|
|
1605
|
+
/**
|
|
1606
|
+
* @generated from field: string stable_element_id = 5;
|
|
1607
|
+
*/
|
|
1608
|
+
stableElementId: string;
|
|
1609
|
+
/**
|
|
1610
|
+
* @generated from field: string affordance_id = 6;
|
|
1611
|
+
*/
|
|
1612
|
+
affordanceId: string;
|
|
1613
|
+
/**
|
|
1614
|
+
* @generated from field: string verification_id = 7;
|
|
1615
|
+
*/
|
|
1616
|
+
verificationId: string;
|
|
1617
|
+
/**
|
|
1618
|
+
* @generated from field: chronicle.v1.VisualContextActionGrounding.ActionKind action_kind = 8;
|
|
1619
|
+
*/
|
|
1620
|
+
actionKind: VisualContextActionGrounding_ActionKind;
|
|
1621
|
+
/**
|
|
1622
|
+
* @generated from field: string target_action = 9;
|
|
1623
|
+
*/
|
|
1624
|
+
targetAction: string;
|
|
1625
|
+
/**
|
|
1626
|
+
* @generated from field: bool requires_confirmation = 10;
|
|
1627
|
+
*/
|
|
1628
|
+
requiresConfirmation: boolean;
|
|
1629
|
+
/**
|
|
1630
|
+
* @generated from field: bool user_confirmed = 11;
|
|
1631
|
+
*/
|
|
1632
|
+
userConfirmed: boolean;
|
|
1633
|
+
/**
|
|
1634
|
+
* @generated from field: bool current_frame_checked = 12;
|
|
1635
|
+
*/
|
|
1636
|
+
currentFrameChecked: boolean;
|
|
1637
|
+
/**
|
|
1638
|
+
* @generated from field: bool safe_to_act = 13;
|
|
1639
|
+
*/
|
|
1640
|
+
safeToAct: boolean;
|
|
1641
|
+
/**
|
|
1642
|
+
* @generated from field: chronicle.v1.VisualContextActionGrounding action_grounding = 14;
|
|
1643
|
+
*/
|
|
1644
|
+
actionGrounding?: VisualContextActionGrounding | undefined;
|
|
1645
|
+
/**
|
|
1646
|
+
* @generated from field: chronicle.v1.VisualContextVerification verification = 15;
|
|
1647
|
+
*/
|
|
1648
|
+
verification?: VisualContextVerification | undefined;
|
|
1649
|
+
/**
|
|
1650
|
+
* @generated from field: repeated string evidence_ids = 16;
|
|
1651
|
+
*/
|
|
1652
|
+
evidenceIds: string[];
|
|
1653
|
+
/**
|
|
1654
|
+
* @generated from field: google.protobuf.Timestamp observed_at = 17;
|
|
1655
|
+
*/
|
|
1656
|
+
observedAt?: Timestamp | undefined;
|
|
1657
|
+
/**
|
|
1658
|
+
* @generated from field: string reason = 18;
|
|
1659
|
+
*/
|
|
1660
|
+
reason: string;
|
|
1661
|
+
/**
|
|
1662
|
+
* @generated from field: chronicle.v1.VisualContextRedactionReport redaction = 19;
|
|
1663
|
+
*/
|
|
1664
|
+
redaction?: VisualContextRedactionReport | undefined;
|
|
1665
|
+
/**
|
|
1666
|
+
* @generated from field: google.protobuf.Struct metadata = 20;
|
|
1667
|
+
*/
|
|
1668
|
+
metadata?: JsonObject | undefined;
|
|
499
1669
|
};
|
|
500
1670
|
/**
|
|
501
|
-
* Describes the message chronicle.v1.
|
|
502
|
-
* Use `create(
|
|
1671
|
+
* Describes the message chronicle.v1.VisualAgentStep.
|
|
1672
|
+
* Use `create(VisualAgentStepSchema)` to create a new message.
|
|
503
1673
|
*/
|
|
504
|
-
export declare const
|
|
1674
|
+
export declare const VisualAgentStepSchema: GenMessage<VisualAgentStep>;
|
|
505
1675
|
/**
|
|
506
|
-
* @generated from
|
|
1676
|
+
* @generated from enum chronicle.v1.VisualAgentStep.Kind
|
|
507
1677
|
*/
|
|
508
|
-
export
|
|
1678
|
+
export declare enum VisualAgentStep_Kind {
|
|
509
1679
|
/**
|
|
510
|
-
* @generated from
|
|
1680
|
+
* @generated from enum value: KIND_UNSPECIFIED = 0;
|
|
511
1681
|
*/
|
|
512
|
-
|
|
1682
|
+
UNSPECIFIED = 0,
|
|
513
1683
|
/**
|
|
514
|
-
* @generated from
|
|
1684
|
+
* @generated from enum value: KIND_OBSERVE = 1;
|
|
515
1685
|
*/
|
|
516
|
-
|
|
1686
|
+
OBSERVE = 1,
|
|
517
1687
|
/**
|
|
518
|
-
* @generated from
|
|
1688
|
+
* @generated from enum value: KIND_GROUND = 2;
|
|
519
1689
|
*/
|
|
520
|
-
|
|
1690
|
+
GROUND = 2,
|
|
521
1691
|
/**
|
|
522
|
-
* @generated from
|
|
1692
|
+
* @generated from enum value: KIND_VERIFY = 3;
|
|
523
1693
|
*/
|
|
524
|
-
|
|
1694
|
+
VERIFY = 3,
|
|
525
1695
|
/**
|
|
526
|
-
* @generated from
|
|
1696
|
+
* @generated from enum value: KIND_PROPOSE = 4;
|
|
527
1697
|
*/
|
|
528
|
-
|
|
1698
|
+
PROPOSE = 4,
|
|
529
1699
|
/**
|
|
530
|
-
* @generated from
|
|
1700
|
+
* @generated from enum value: KIND_ACT = 5;
|
|
531
1701
|
*/
|
|
532
|
-
|
|
1702
|
+
ACT = 5,
|
|
533
1703
|
/**
|
|
534
|
-
* @generated from
|
|
1704
|
+
* @generated from enum value: KIND_OUTCOME = 6;
|
|
535
1705
|
*/
|
|
536
|
-
|
|
1706
|
+
OUTCOME = 6,
|
|
537
1707
|
/**
|
|
538
|
-
* @generated from
|
|
1708
|
+
* @generated from enum value: KIND_ABSTAIN = 7;
|
|
539
1709
|
*/
|
|
540
|
-
|
|
1710
|
+
ABSTAIN = 7
|
|
1711
|
+
}
|
|
1712
|
+
/**
|
|
1713
|
+
* Describes the enum chronicle.v1.VisualAgentStep.Kind.
|
|
1714
|
+
*/
|
|
1715
|
+
export declare const VisualAgentStep_KindSchema: GenEnum<VisualAgentStep_Kind>;
|
|
1716
|
+
/**
|
|
1717
|
+
* @generated from message chronicle.v1.VisualAgentOutcome
|
|
1718
|
+
*/
|
|
1719
|
+
export type VisualAgentOutcome = Message<"chronicle.v1.VisualAgentOutcome"> & {
|
|
541
1720
|
/**
|
|
542
|
-
* @generated from field:
|
|
1721
|
+
* @generated from field: chronicle.v1.VisualAgentOutcome.Result result = 1;
|
|
543
1722
|
*/
|
|
544
|
-
|
|
1723
|
+
result: VisualAgentOutcome_Result;
|
|
1724
|
+
/**
|
|
1725
|
+
* @generated from field: string stable_element_id = 2;
|
|
1726
|
+
*/
|
|
1727
|
+
stableElementId: string;
|
|
1728
|
+
/**
|
|
1729
|
+
* @generated from field: string affordance_id = 3;
|
|
1730
|
+
*/
|
|
1731
|
+
affordanceId: string;
|
|
1732
|
+
/**
|
|
1733
|
+
* @generated from field: string verification_id = 4;
|
|
1734
|
+
*/
|
|
1735
|
+
verificationId: string;
|
|
1736
|
+
/**
|
|
1737
|
+
* @generated from field: chronicle.v1.VisualContextActionGrounding.ActionKind action_kind = 5;
|
|
1738
|
+
*/
|
|
1739
|
+
actionKind: VisualContextActionGrounding_ActionKind;
|
|
1740
|
+
/**
|
|
1741
|
+
* @generated from field: string target_action = 6;
|
|
1742
|
+
*/
|
|
1743
|
+
targetAction: string;
|
|
1744
|
+
/**
|
|
1745
|
+
* @generated from field: bool requires_user_confirmation = 7;
|
|
1746
|
+
*/
|
|
1747
|
+
requiresUserConfirmation: boolean;
|
|
1748
|
+
/**
|
|
1749
|
+
* @generated from field: bool user_confirmed = 8;
|
|
1750
|
+
*/
|
|
1751
|
+
userConfirmed: boolean;
|
|
1752
|
+
/**
|
|
1753
|
+
* @generated from field: repeated string outcome_event_ids = 9;
|
|
1754
|
+
*/
|
|
1755
|
+
outcomeEventIds: string[];
|
|
1756
|
+
/**
|
|
1757
|
+
* @generated from field: repeated string outcome_fact_ids = 10;
|
|
1758
|
+
*/
|
|
1759
|
+
outcomeFactIds: string[];
|
|
1760
|
+
/**
|
|
1761
|
+
* @generated from field: string guardrail_reason = 11;
|
|
1762
|
+
*/
|
|
1763
|
+
guardrailReason: string;
|
|
1764
|
+
/**
|
|
1765
|
+
* @generated from field: google.protobuf.Timestamp checked_at = 12;
|
|
1766
|
+
*/
|
|
1767
|
+
checkedAt?: Timestamp | undefined;
|
|
1768
|
+
/**
|
|
1769
|
+
* @generated from field: google.protobuf.Struct metadata = 13;
|
|
1770
|
+
*/
|
|
1771
|
+
metadata?: JsonObject | undefined;
|
|
545
1772
|
};
|
|
546
1773
|
/**
|
|
547
|
-
* Describes the message chronicle.v1.
|
|
548
|
-
* Use `create(
|
|
1774
|
+
* Describes the message chronicle.v1.VisualAgentOutcome.
|
|
1775
|
+
* Use `create(VisualAgentOutcomeSchema)` to create a new message.
|
|
549
1776
|
*/
|
|
550
|
-
export declare const
|
|
1777
|
+
export declare const VisualAgentOutcomeSchema: GenMessage<VisualAgentOutcome>;
|
|
551
1778
|
/**
|
|
552
|
-
* @generated from
|
|
1779
|
+
* @generated from enum chronicle.v1.VisualAgentOutcome.Result
|
|
553
1780
|
*/
|
|
554
|
-
export
|
|
1781
|
+
export declare enum VisualAgentOutcome_Result {
|
|
555
1782
|
/**
|
|
556
|
-
* @generated from
|
|
1783
|
+
* @generated from enum value: RESULT_UNSPECIFIED = 0;
|
|
557
1784
|
*/
|
|
558
|
-
|
|
1785
|
+
UNSPECIFIED = 0,
|
|
559
1786
|
/**
|
|
560
|
-
* @generated from
|
|
1787
|
+
* @generated from enum value: RESULT_NO_ACTION = 1;
|
|
561
1788
|
*/
|
|
562
|
-
|
|
1789
|
+
NO_ACTION = 1,
|
|
563
1790
|
/**
|
|
564
|
-
* @generated from
|
|
1791
|
+
* @generated from enum value: RESULT_PROPOSED_ACTION = 2;
|
|
565
1792
|
*/
|
|
566
|
-
|
|
1793
|
+
PROPOSED_ACTION = 2,
|
|
567
1794
|
/**
|
|
568
|
-
* @generated from
|
|
1795
|
+
* @generated from enum value: RESULT_ACTED = 3;
|
|
569
1796
|
*/
|
|
570
|
-
|
|
1797
|
+
ACTED = 3,
|
|
571
1798
|
/**
|
|
572
|
-
* @generated from
|
|
1799
|
+
* @generated from enum value: RESULT_BLOCKED = 4;
|
|
573
1800
|
*/
|
|
574
|
-
|
|
1801
|
+
BLOCKED = 4,
|
|
575
1802
|
/**
|
|
576
|
-
* @generated from
|
|
1803
|
+
* @generated from enum value: RESULT_FAILED = 5;
|
|
577
1804
|
*/
|
|
578
|
-
|
|
1805
|
+
FAILED = 5
|
|
1806
|
+
}
|
|
1807
|
+
/**
|
|
1808
|
+
* Describes the enum chronicle.v1.VisualAgentOutcome.Result.
|
|
1809
|
+
*/
|
|
1810
|
+
export declare const VisualAgentOutcome_ResultSchema: GenEnum<VisualAgentOutcome_Result>;
|
|
1811
|
+
/**
|
|
1812
|
+
* VisualActionLedgerEntry is the explicit human-confirmation/action audit row
|
|
1813
|
+
* for screen-derived actions. Consumers should treat it as an evidence pointer
|
|
1814
|
+
* and policy record, not proof that an external side effect succeeded.
|
|
1815
|
+
*
|
|
1816
|
+
* @generated from message chronicle.v1.VisualActionLedgerEntry
|
|
1817
|
+
*/
|
|
1818
|
+
export type VisualActionLedgerEntry = Message<"chronicle.v1.VisualActionLedgerEntry"> & {
|
|
1819
|
+
/**
|
|
1820
|
+
* @generated from field: string ledger_entry_id = 1;
|
|
1821
|
+
*/
|
|
1822
|
+
ledgerEntryId: string;
|
|
1823
|
+
/**
|
|
1824
|
+
* @generated from field: string episode_id = 2;
|
|
1825
|
+
*/
|
|
1826
|
+
episodeId: string;
|
|
1827
|
+
/**
|
|
1828
|
+
* @generated from field: string action_id = 3;
|
|
1829
|
+
*/
|
|
1830
|
+
actionId: string;
|
|
1831
|
+
/**
|
|
1832
|
+
* @generated from field: string stable_element_id = 4;
|
|
1833
|
+
*/
|
|
1834
|
+
stableElementId: string;
|
|
1835
|
+
/**
|
|
1836
|
+
* @generated from field: string affordance_id = 5;
|
|
1837
|
+
*/
|
|
1838
|
+
affordanceId: string;
|
|
1839
|
+
/**
|
|
1840
|
+
* @generated from field: chronicle.v1.VisualContextActionGrounding.ActionKind action_kind = 6;
|
|
1841
|
+
*/
|
|
1842
|
+
actionKind: VisualContextActionGrounding_ActionKind;
|
|
1843
|
+
/**
|
|
1844
|
+
* @generated from field: string target_action = 7;
|
|
1845
|
+
*/
|
|
1846
|
+
targetAction: string;
|
|
1847
|
+
/**
|
|
1848
|
+
* @generated from field: string verification_id = 8;
|
|
1849
|
+
*/
|
|
1850
|
+
verificationId: string;
|
|
1851
|
+
/**
|
|
1852
|
+
* @generated from field: bool current_frame_checked = 9;
|
|
1853
|
+
*/
|
|
1854
|
+
currentFrameChecked: boolean;
|
|
1855
|
+
/**
|
|
1856
|
+
* @generated from field: bool safe_to_act = 10;
|
|
1857
|
+
*/
|
|
1858
|
+
safeToAct: boolean;
|
|
1859
|
+
/**
|
|
1860
|
+
* @generated from field: bool requires_user_confirmation = 11;
|
|
1861
|
+
*/
|
|
1862
|
+
requiresUserConfirmation: boolean;
|
|
1863
|
+
/**
|
|
1864
|
+
* @generated from field: bool user_confirmed = 12;
|
|
1865
|
+
*/
|
|
1866
|
+
userConfirmed: boolean;
|
|
1867
|
+
/**
|
|
1868
|
+
* @generated from field: string confirmation_id = 13;
|
|
1869
|
+
*/
|
|
1870
|
+
confirmationId: string;
|
|
1871
|
+
/**
|
|
1872
|
+
* @generated from field: string authorization_id = 14;
|
|
1873
|
+
*/
|
|
1874
|
+
authorizationId: string;
|
|
1875
|
+
/**
|
|
1876
|
+
* @generated from field: google.protobuf.Timestamp proposed_at = 15;
|
|
1877
|
+
*/
|
|
1878
|
+
proposedAt?: Timestamp | undefined;
|
|
1879
|
+
/**
|
|
1880
|
+
* @generated from field: google.protobuf.Timestamp verified_at = 16;
|
|
1881
|
+
*/
|
|
1882
|
+
verifiedAt?: Timestamp | undefined;
|
|
1883
|
+
/**
|
|
1884
|
+
* @generated from field: google.protobuf.Timestamp confirmed_at = 17;
|
|
1885
|
+
*/
|
|
1886
|
+
confirmedAt?: Timestamp | undefined;
|
|
1887
|
+
/**
|
|
1888
|
+
* @generated from field: google.protobuf.Timestamp acted_at = 18;
|
|
1889
|
+
*/
|
|
1890
|
+
actedAt?: Timestamp | undefined;
|
|
1891
|
+
/**
|
|
1892
|
+
* @generated from field: chronicle.v1.VisualAgentOutcome outcome = 19;
|
|
1893
|
+
*/
|
|
1894
|
+
outcome?: VisualAgentOutcome | undefined;
|
|
1895
|
+
/**
|
|
1896
|
+
* @generated from field: repeated string evidence_ids = 20;
|
|
1897
|
+
*/
|
|
1898
|
+
evidenceIds: string[];
|
|
1899
|
+
/**
|
|
1900
|
+
* @generated from field: string audit_event_id = 21;
|
|
1901
|
+
*/
|
|
1902
|
+
auditEventId: string;
|
|
1903
|
+
/**
|
|
1904
|
+
* @generated from field: string meter_event_id = 22;
|
|
1905
|
+
*/
|
|
1906
|
+
meterEventId: string;
|
|
1907
|
+
/**
|
|
1908
|
+
* @generated from field: string guardrail_reason = 23;
|
|
1909
|
+
*/
|
|
1910
|
+
guardrailReason: string;
|
|
1911
|
+
/**
|
|
1912
|
+
* @generated from field: google.protobuf.Struct metadata = 24;
|
|
1913
|
+
*/
|
|
1914
|
+
metadata?: JsonObject | undefined;
|
|
579
1915
|
};
|
|
580
1916
|
/**
|
|
581
|
-
* Describes the message chronicle.v1.
|
|
582
|
-
* Use `create(
|
|
1917
|
+
* Describes the message chronicle.v1.VisualActionLedgerEntry.
|
|
1918
|
+
* Use `create(VisualActionLedgerEntrySchema)` to create a new message.
|
|
583
1919
|
*/
|
|
584
|
-
export declare const
|
|
1920
|
+
export declare const VisualActionLedgerEntrySchema: GenMessage<VisualActionLedgerEntry>;
|
|
1921
|
+
/**
|
|
1922
|
+
* @generated from message chronicle.v1.VerifyVisualActionRequest
|
|
1923
|
+
*/
|
|
1924
|
+
export type VerifyVisualActionRequest = Message<"chronicle.v1.VerifyVisualActionRequest"> & {
|
|
1925
|
+
/**
|
|
1926
|
+
* @generated from field: string organization_id = 1;
|
|
1927
|
+
*/
|
|
1928
|
+
organizationId: string;
|
|
1929
|
+
/**
|
|
1930
|
+
* @generated from field: string workspace_id = 2;
|
|
1931
|
+
*/
|
|
1932
|
+
workspaceId: string;
|
|
1933
|
+
/**
|
|
1934
|
+
* @generated from field: string user_id = 3;
|
|
1935
|
+
*/
|
|
1936
|
+
userId: string;
|
|
1937
|
+
/**
|
|
1938
|
+
* @generated from field: string project_id = 4;
|
|
1939
|
+
*/
|
|
1940
|
+
projectId: string;
|
|
1941
|
+
/**
|
|
1942
|
+
* @generated from field: string device_id = 5;
|
|
1943
|
+
*/
|
|
1944
|
+
deviceId: string;
|
|
1945
|
+
/**
|
|
1946
|
+
* @generated from field: string episode_id = 6;
|
|
1947
|
+
*/
|
|
1948
|
+
episodeId: string;
|
|
1949
|
+
/**
|
|
1950
|
+
* @generated from field: string summary_id = 7;
|
|
1951
|
+
*/
|
|
1952
|
+
summaryId: string;
|
|
1953
|
+
/**
|
|
1954
|
+
* @generated from field: string stable_element_id = 8;
|
|
1955
|
+
*/
|
|
1956
|
+
stableElementId: string;
|
|
1957
|
+
/**
|
|
1958
|
+
* @generated from field: string affordance_id = 9;
|
|
1959
|
+
*/
|
|
1960
|
+
affordanceId: string;
|
|
1961
|
+
/**
|
|
1962
|
+
* @generated from field: chronicle.v1.VisualContextActionGrounding intended_action = 10;
|
|
1963
|
+
*/
|
|
1964
|
+
intendedAction?: VisualContextActionGrounding | undefined;
|
|
1965
|
+
/**
|
|
1966
|
+
* @generated from field: chronicle.v1.VisualContextVerification verification = 11;
|
|
1967
|
+
*/
|
|
1968
|
+
verification?: VisualContextVerification | undefined;
|
|
1969
|
+
/**
|
|
1970
|
+
* @generated from field: bool user_confirmed = 12;
|
|
1971
|
+
*/
|
|
1972
|
+
userConfirmed: boolean;
|
|
1973
|
+
/**
|
|
1974
|
+
* @generated from field: string confirmation_id = 13;
|
|
1975
|
+
*/
|
|
1976
|
+
confirmationId: string;
|
|
1977
|
+
/**
|
|
1978
|
+
* @generated from field: string policy_ref = 14;
|
|
1979
|
+
*/
|
|
1980
|
+
policyRef: string;
|
|
1981
|
+
/**
|
|
1982
|
+
* @generated from field: repeated string evidence_ids = 15;
|
|
1983
|
+
*/
|
|
1984
|
+
evidenceIds: string[];
|
|
1985
|
+
/**
|
|
1986
|
+
* @generated from field: google.protobuf.Struct metadata = 16;
|
|
1987
|
+
*/
|
|
1988
|
+
metadata?: JsonObject | undefined;
|
|
1989
|
+
};
|
|
1990
|
+
/**
|
|
1991
|
+
* Describes the message chronicle.v1.VerifyVisualActionRequest.
|
|
1992
|
+
* Use `create(VerifyVisualActionRequestSchema)` to create a new message.
|
|
1993
|
+
*/
|
|
1994
|
+
export declare const VerifyVisualActionRequestSchema: GenMessage<VerifyVisualActionRequest>;
|
|
1995
|
+
/**
|
|
1996
|
+
* @generated from message chronicle.v1.VerifyVisualActionResponse
|
|
1997
|
+
*/
|
|
1998
|
+
export type VerifyVisualActionResponse = Message<"chronicle.v1.VerifyVisualActionResponse"> & {
|
|
1999
|
+
/**
|
|
2000
|
+
* @generated from field: chronicle.v1.VisualContextVerification verification = 1;
|
|
2001
|
+
*/
|
|
2002
|
+
verification?: VisualContextVerification | undefined;
|
|
2003
|
+
/**
|
|
2004
|
+
* @generated from field: bool safe_to_act = 2;
|
|
2005
|
+
*/
|
|
2006
|
+
safeToAct: boolean;
|
|
2007
|
+
/**
|
|
2008
|
+
* @generated from field: bool requires_user_confirmation = 3;
|
|
2009
|
+
*/
|
|
2010
|
+
requiresUserConfirmation: boolean;
|
|
2011
|
+
/**
|
|
2012
|
+
* @generated from field: bool user_confirmed = 4;
|
|
2013
|
+
*/
|
|
2014
|
+
userConfirmed: boolean;
|
|
2015
|
+
/**
|
|
2016
|
+
* @generated from field: string guardrail_reason = 5;
|
|
2017
|
+
*/
|
|
2018
|
+
guardrailReason: string;
|
|
2019
|
+
/**
|
|
2020
|
+
* @generated from field: chronicle.v1.VisualActionLedgerEntry ledger_entry = 6;
|
|
2021
|
+
*/
|
|
2022
|
+
ledgerEntry?: VisualActionLedgerEntry | undefined;
|
|
2023
|
+
/**
|
|
2024
|
+
* @generated from field: string audit_event_id = 7;
|
|
2025
|
+
*/
|
|
2026
|
+
auditEventId: string;
|
|
2027
|
+
/**
|
|
2028
|
+
* @generated from field: string meter_event_id = 8;
|
|
2029
|
+
*/
|
|
2030
|
+
meterEventId: string;
|
|
2031
|
+
/**
|
|
2032
|
+
* @generated from field: google.protobuf.Timestamp checked_at = 9;
|
|
2033
|
+
*/
|
|
2034
|
+
checkedAt?: Timestamp | undefined;
|
|
2035
|
+
};
|
|
2036
|
+
/**
|
|
2037
|
+
* Describes the message chronicle.v1.VerifyVisualActionResponse.
|
|
2038
|
+
* Use `create(VerifyVisualActionResponseSchema)` to create a new message.
|
|
2039
|
+
*/
|
|
2040
|
+
export declare const VerifyVisualActionResponseSchema: GenMessage<VerifyVisualActionResponse>;
|
|
585
2041
|
/**
|
|
586
2042
|
* @generated from message chronicle.v1.AcknowledgeMemoryRequest
|
|
587
2043
|
*/
|
|
@@ -1372,4 +2828,16 @@ export declare const ChronicleService: GenService<{
|
|
|
1372
2828
|
input: typeof SetCapturePolicyRequestSchema;
|
|
1373
2829
|
output: typeof SetCapturePolicyResponseSchema;
|
|
1374
2830
|
};
|
|
2831
|
+
/**
|
|
2832
|
+
* VerifyVisualAction checks bounded current-frame visual evidence before an
|
|
2833
|
+
* agent executes a UI action. It validates verifier evidence and confirmation
|
|
2834
|
+
* gates; it does not inspect or persist raw screenshots.
|
|
2835
|
+
*
|
|
2836
|
+
* @generated from rpc chronicle.v1.ChronicleService.VerifyVisualAction
|
|
2837
|
+
*/
|
|
2838
|
+
verifyVisualAction: {
|
|
2839
|
+
methodKind: "unary";
|
|
2840
|
+
input: typeof VerifyVisualActionRequestSchema;
|
|
2841
|
+
output: typeof VerifyVisualActionResponseSchema;
|
|
2842
|
+
};
|
|
1375
2843
|
}>;
|