@evalops/sdk-ts 0.1.105 → 0.1.106

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.
@@ -3745,6 +3745,78 @@ export type GetChannelThreadAdoptionResponse = Message<"agentruntime.v1.GetChann
3745
3745
  * Use `create(GetChannelThreadAdoptionResponseSchema)` to create a new message.
3746
3746
  */
3747
3747
  export declare const GetChannelThreadAdoptionResponseSchema: GenMessage<GetChannelThreadAdoptionResponse>;
3748
+ /**
3749
+ * @generated from message agentruntime.v1.RecordChannelThreadAdoptionRequest
3750
+ */
3751
+ export type RecordChannelThreadAdoptionRequest = Message<"agentruntime.v1.RecordChannelThreadAdoptionRequest"> & {
3752
+ /**
3753
+ * @generated from field: string workspace_id = 1;
3754
+ */
3755
+ workspaceId: string;
3756
+ /**
3757
+ * @generated from field: string agent_id = 2;
3758
+ */
3759
+ agentId: string;
3760
+ /**
3761
+ * @generated from field: agentruntime.v1.RuntimeChannelKind channel_kind = 3;
3762
+ */
3763
+ channelKind: RuntimeChannelKind;
3764
+ /**
3765
+ * @generated from field: string provider_workspace_id = 4;
3766
+ */
3767
+ providerWorkspaceId: string;
3768
+ /**
3769
+ * @generated from field: string channel_id = 5;
3770
+ */
3771
+ channelId: string;
3772
+ /**
3773
+ * @generated from field: string thread_id = 6;
3774
+ */
3775
+ threadId: string;
3776
+ /**
3777
+ * @generated from field: string message_id = 7;
3778
+ */
3779
+ messageId: string;
3780
+ /**
3781
+ * @generated from field: string source_event_id = 8;
3782
+ */
3783
+ sourceEventId: string;
3784
+ /**
3785
+ * @generated from field: string adoption_reason = 9;
3786
+ */
3787
+ adoptionReason: string;
3788
+ /**
3789
+ * @generated from field: google.protobuf.Timestamp expires_at = 10;
3790
+ */
3791
+ expiresAt?: Timestamp | undefined;
3792
+ /**
3793
+ * @generated from field: string work_envelope_id = 11;
3794
+ */
3795
+ workEnvelopeId: string;
3796
+ /**
3797
+ * @generated from field: google.protobuf.Struct metadata = 12;
3798
+ */
3799
+ metadata?: JsonObject | undefined;
3800
+ };
3801
+ /**
3802
+ * Describes the message agentruntime.v1.RecordChannelThreadAdoptionRequest.
3803
+ * Use `create(RecordChannelThreadAdoptionRequestSchema)` to create a new message.
3804
+ */
3805
+ export declare const RecordChannelThreadAdoptionRequestSchema: GenMessage<RecordChannelThreadAdoptionRequest>;
3806
+ /**
3807
+ * @generated from message agentruntime.v1.RecordChannelThreadAdoptionResponse
3808
+ */
3809
+ export type RecordChannelThreadAdoptionResponse = Message<"agentruntime.v1.RecordChannelThreadAdoptionResponse"> & {
3810
+ /**
3811
+ * @generated from field: agentruntime.v1.ChannelThreadAdoption adoption = 1;
3812
+ */
3813
+ adoption?: ChannelThreadAdoption | undefined;
3814
+ };
3815
+ /**
3816
+ * Describes the message agentruntime.v1.RecordChannelThreadAdoptionResponse.
3817
+ * Use `create(RecordChannelThreadAdoptionResponseSchema)` to create a new message.
3818
+ */
3819
+ export declare const RecordChannelThreadAdoptionResponseSchema: GenMessage<RecordChannelThreadAdoptionResponse>;
3748
3820
  /**
3749
3821
  * @generated from message agentruntime.v1.ListChannelThreadAdoptionsRequest
3750
3822
  */
@@ -7608,6 +7680,17 @@ export declare const AgentRuntimeService: GenService<{
7608
7680
  input: typeof GetChannelThreadAdoptionRequestSchema;
7609
7681
  output: typeof GetChannelThreadAdoptionResponseSchema;
7610
7682
  };
7683
+ /**
7684
+ * RecordChannelThreadAdoption durably records an adapter-observed channel
7685
+ * thread adoption without requiring the adapter to create a new AgentRun.
7686
+ *
7687
+ * @generated from rpc agentruntime.v1.AgentRuntimeService.RecordChannelThreadAdoption
7688
+ */
7689
+ recordChannelThreadAdoption: {
7690
+ methodKind: "unary";
7691
+ input: typeof RecordChannelThreadAdoptionRequestSchema;
7692
+ output: typeof RecordChannelThreadAdoptionResponseSchema;
7693
+ };
7611
7694
  /**
7612
7695
  * ListChannelThreadAdoptions returns the durable adoption projection for
7613
7696
  * operator/debug surfaces and channel-adapter reconciliation.