@kmmao/happy-wire 0.11.13 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +146 -171
- package/dist/index.d.cts +174 -380
- package/dist/index.d.mts +174 -380
- package/dist/index.mjs +126 -144
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2828,384 +2828,6 @@ declare const terminalExitPayloadSchema: z.ZodObject<{
|
|
|
2828
2828
|
}, z.core.$strip>;
|
|
2829
2829
|
type TerminalExitPayload = z.infer<typeof terminalExitPayloadSchema>;
|
|
2830
2830
|
|
|
2831
|
-
declare const SUGGESTION_TYPES: readonly ["suggested_goal", "suggested_task", "suggested_skill", "suggested_decision"];
|
|
2832
|
-
type SuggestionType = typeof SUGGESTION_TYPES[number];
|
|
2833
|
-
declare const SUGGESTION_STATUSES: readonly ["open", "processing", "accepted", "suspended", "dismissed", "expired"];
|
|
2834
|
-
type SuggestionStatus = typeof SUGGESTION_STATUSES[number];
|
|
2835
|
-
declare const SUGGESTION_BUCKETS: readonly ["next_step", "needs_decision", "needs_human_input"];
|
|
2836
|
-
type SuggestionBucket = typeof SUGGESTION_BUCKETS[number];
|
|
2837
|
-
declare const SUGGESTION_ACCEPT_SOURCES: readonly ["human", "system_auto"];
|
|
2838
|
-
type SuggestionAcceptSource = typeof SUGGESTION_ACCEPT_SOURCES[number];
|
|
2839
|
-
declare const SUPERVISOR_MODES: readonly ["disabled", "suggest", "semi-auto", "auto"];
|
|
2840
|
-
type SupervisorMode = typeof SUPERVISOR_MODES[number];
|
|
2841
|
-
declare const WorldAutonomyPolicySchema: z$1.ZodObject<{
|
|
2842
|
-
level: z$1.ZodEnum<{
|
|
2843
|
-
auto: "auto";
|
|
2844
|
-
disabled: "disabled";
|
|
2845
|
-
suggest: "suggest";
|
|
2846
|
-
"semi-auto": "semi-auto";
|
|
2847
|
-
}>;
|
|
2848
|
-
maxAutoAcceptsPerDay: z$1.ZodNullable<z$1.ZodNumber>;
|
|
2849
|
-
maxConcurrentAutoTasks: z$1.ZodNullable<z$1.ZodNumber>;
|
|
2850
|
-
autoAcceptTypes: z$1.ZodArray<z$1.ZodString>;
|
|
2851
|
-
}, z$1.core.$strip>;
|
|
2852
|
-
type WorldAutonomyPolicy = z$1.infer<typeof WorldAutonomyPolicySchema>;
|
|
2853
|
-
declare const SUGGESTION_ACCEPT_AUDIT_RULES: readonly ["safe_suggested_task_auto_accept", "retryable_failed_task_auto_accept", "blocked_goal_supplement_auto_accept", "precedent_auto_resolve", "goal_replan_auto_accept"];
|
|
2854
|
-
type SuggestionAcceptAuditRule = typeof SUGGESTION_ACCEPT_AUDIT_RULES[number];
|
|
2855
|
-
declare const SuggestionAcceptAuditSchema: z$1.ZodObject<{
|
|
2856
|
-
rule: z$1.ZodEnum<{
|
|
2857
|
-
safe_suggested_task_auto_accept: "safe_suggested_task_auto_accept";
|
|
2858
|
-
retryable_failed_task_auto_accept: "retryable_failed_task_auto_accept";
|
|
2859
|
-
blocked_goal_supplement_auto_accept: "blocked_goal_supplement_auto_accept";
|
|
2860
|
-
precedent_auto_resolve: "precedent_auto_resolve";
|
|
2861
|
-
goal_replan_auto_accept: "goal_replan_auto_accept";
|
|
2862
|
-
}>;
|
|
2863
|
-
checks: z$1.ZodArray<z$1.ZodString>;
|
|
2864
|
-
}, z$1.core.$strip>;
|
|
2865
|
-
type SuggestionAcceptAudit = z$1.infer<typeof SuggestionAcceptAuditSchema>;
|
|
2866
|
-
declare const SUGGESTION_AUTO_ACCEPT_STATUSES: readonly ["skipped", "failed"];
|
|
2867
|
-
type SuggestionAutoAcceptStatus = typeof SUGGESTION_AUTO_ACCEPT_STATUSES[number];
|
|
2868
|
-
declare const SUGGESTION_AUTO_ACCEPT_REASON_CODES: readonly ["quota_exhausted", "already_acted", "accept_failed", "concurrency_exceeded", "mode_disabled"];
|
|
2869
|
-
type SuggestionAutoAcceptReasonCode = typeof SUGGESTION_AUTO_ACCEPT_REASON_CODES[number];
|
|
2870
|
-
declare const SUGGESTION_AUTO_ACCEPT_FAILURE_DETAILS: readonly ["dispatch_failed", "payload_invalid", "auto_accept_failed"];
|
|
2871
|
-
type SuggestionAutoAcceptFailureDetail = typeof SUGGESTION_AUTO_ACCEPT_FAILURE_DETAILS[number];
|
|
2872
|
-
declare const EVIDENCE_KINDS: readonly ["goal", "task", "decision", "message", "narrative"];
|
|
2873
|
-
declare const SuggestionEvidenceSchema: z$1.ZodObject<{
|
|
2874
|
-
kind: z$1.ZodEnum<{
|
|
2875
|
-
message: "message";
|
|
2876
|
-
task: "task";
|
|
2877
|
-
decision: "decision";
|
|
2878
|
-
goal: "goal";
|
|
2879
|
-
narrative: "narrative";
|
|
2880
|
-
}>;
|
|
2881
|
-
id: z$1.ZodOptional<z$1.ZodString>;
|
|
2882
|
-
label: z$1.ZodString;
|
|
2883
|
-
}, z$1.core.$strip>;
|
|
2884
|
-
type SuggestionEvidence = z$1.infer<typeof SuggestionEvidenceSchema>;
|
|
2885
|
-
declare const SuggestionGoalPayloadSchema: z$1.ZodObject<{
|
|
2886
|
-
title: z$1.ZodString;
|
|
2887
|
-
detail: z$1.ZodOptional<z$1.ZodString>;
|
|
2888
|
-
priority: z$1.ZodOptional<z$1.ZodString>;
|
|
2889
|
-
}, z$1.core.$strip>;
|
|
2890
|
-
type SuggestionGoalPayload = z$1.infer<typeof SuggestionGoalPayloadSchema>;
|
|
2891
|
-
declare const SuggestionTaskPayloadSchema: z$1.ZodObject<{
|
|
2892
|
-
title: z$1.ZodString;
|
|
2893
|
-
prompt: z$1.ZodString;
|
|
2894
|
-
roleType: z$1.ZodOptional<z$1.ZodString>;
|
|
2895
|
-
goalId: z$1.ZodOptional<z$1.ZodString>;
|
|
2896
|
-
priority: z$1.ZodOptional<z$1.ZodString>;
|
|
2897
|
-
}, z$1.core.$strip>;
|
|
2898
|
-
type SuggestionTaskPayload = z$1.infer<typeof SuggestionTaskPayloadSchema>;
|
|
2899
|
-
declare const SuggestionSkillPayloadSchema: z$1.ZodObject<{
|
|
2900
|
-
title: z$1.ZodString;
|
|
2901
|
-
content: z$1.ZodString;
|
|
2902
|
-
sourceTaskId: z$1.ZodOptional<z$1.ZodString>;
|
|
2903
|
-
}, z$1.core.$strip>;
|
|
2904
|
-
type SuggestionSkillPayload = z$1.infer<typeof SuggestionSkillPayloadSchema>;
|
|
2905
|
-
declare const SuggestionDecisionPayloadSchema: z$1.ZodObject<{
|
|
2906
|
-
question: z$1.ZodString;
|
|
2907
|
-
context: z$1.ZodOptional<z$1.ZodString>;
|
|
2908
|
-
goalId: z$1.ZodOptional<z$1.ZodString>;
|
|
2909
|
-
existingDecisionId: z$1.ZodOptional<z$1.ZodString>;
|
|
2910
|
-
options: z$1.ZodArray<z$1.ZodObject<{
|
|
2911
|
-
id: z$1.ZodString;
|
|
2912
|
-
description: z$1.ZodString;
|
|
2913
|
-
pros: z$1.ZodOptional<z$1.ZodString>;
|
|
2914
|
-
cons: z$1.ZodOptional<z$1.ZodString>;
|
|
2915
|
-
}, z$1.core.$strip>>;
|
|
2916
|
-
precedentKey: z$1.ZodOptional<z$1.ZodString>;
|
|
2917
|
-
}, z$1.core.$strip>;
|
|
2918
|
-
type SuggestionDecisionPayload = z$1.infer<typeof SuggestionDecisionPayloadSchema>;
|
|
2919
|
-
declare function getSuggestionPayloadSchema(type: SuggestionType): z$1.ZodObject<{
|
|
2920
|
-
goal: z$1.ZodObject<{
|
|
2921
|
-
title: z$1.ZodString;
|
|
2922
|
-
detail: z$1.ZodOptional<z$1.ZodString>;
|
|
2923
|
-
priority: z$1.ZodOptional<z$1.ZodString>;
|
|
2924
|
-
}, z$1.core.$strip>;
|
|
2925
|
-
}, z$1.core.$strip> | z$1.ZodObject<{
|
|
2926
|
-
task: z$1.ZodObject<{
|
|
2927
|
-
title: z$1.ZodString;
|
|
2928
|
-
prompt: z$1.ZodString;
|
|
2929
|
-
roleType: z$1.ZodOptional<z$1.ZodString>;
|
|
2930
|
-
goalId: z$1.ZodOptional<z$1.ZodString>;
|
|
2931
|
-
priority: z$1.ZodOptional<z$1.ZodString>;
|
|
2932
|
-
}, z$1.core.$strip>;
|
|
2933
|
-
}, z$1.core.$strip> | z$1.ZodObject<{
|
|
2934
|
-
skill: z$1.ZodObject<{
|
|
2935
|
-
title: z$1.ZodString;
|
|
2936
|
-
content: z$1.ZodString;
|
|
2937
|
-
sourceTaskId: z$1.ZodOptional<z$1.ZodString>;
|
|
2938
|
-
}, z$1.core.$strip>;
|
|
2939
|
-
}, z$1.core.$strip> | z$1.ZodObject<{
|
|
2940
|
-
decision: z$1.ZodObject<{
|
|
2941
|
-
question: z$1.ZodString;
|
|
2942
|
-
context: z$1.ZodOptional<z$1.ZodString>;
|
|
2943
|
-
goalId: z$1.ZodOptional<z$1.ZodString>;
|
|
2944
|
-
existingDecisionId: z$1.ZodOptional<z$1.ZodString>;
|
|
2945
|
-
options: z$1.ZodArray<z$1.ZodObject<{
|
|
2946
|
-
id: z$1.ZodString;
|
|
2947
|
-
description: z$1.ZodString;
|
|
2948
|
-
pros: z$1.ZodOptional<z$1.ZodString>;
|
|
2949
|
-
cons: z$1.ZodOptional<z$1.ZodString>;
|
|
2950
|
-
}, z$1.core.$strip>>;
|
|
2951
|
-
precedentKey: z$1.ZodOptional<z$1.ZodString>;
|
|
2952
|
-
}, z$1.core.$strip>;
|
|
2953
|
-
}, z$1.core.$strip>;
|
|
2954
|
-
type SuggestionPayload = {
|
|
2955
|
-
goal: SuggestionGoalPayload;
|
|
2956
|
-
} | {
|
|
2957
|
-
task: SuggestionTaskPayload;
|
|
2958
|
-
} | {
|
|
2959
|
-
skill: SuggestionSkillPayload;
|
|
2960
|
-
} | {
|
|
2961
|
-
decision: SuggestionDecisionPayload;
|
|
2962
|
-
};
|
|
2963
|
-
declare const SuggestionPayloadSchema: z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
2964
|
-
goal: z$1.ZodObject<{
|
|
2965
|
-
title: z$1.ZodString;
|
|
2966
|
-
detail: z$1.ZodOptional<z$1.ZodString>;
|
|
2967
|
-
priority: z$1.ZodOptional<z$1.ZodString>;
|
|
2968
|
-
}, z$1.core.$strip>;
|
|
2969
|
-
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
2970
|
-
task: z$1.ZodObject<{
|
|
2971
|
-
title: z$1.ZodString;
|
|
2972
|
-
prompt: z$1.ZodString;
|
|
2973
|
-
roleType: z$1.ZodOptional<z$1.ZodString>;
|
|
2974
|
-
goalId: z$1.ZodOptional<z$1.ZodString>;
|
|
2975
|
-
priority: z$1.ZodOptional<z$1.ZodString>;
|
|
2976
|
-
}, z$1.core.$strip>;
|
|
2977
|
-
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
2978
|
-
skill: z$1.ZodObject<{
|
|
2979
|
-
title: z$1.ZodString;
|
|
2980
|
-
content: z$1.ZodString;
|
|
2981
|
-
sourceTaskId: z$1.ZodOptional<z$1.ZodString>;
|
|
2982
|
-
}, z$1.core.$strip>;
|
|
2983
|
-
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
2984
|
-
decision: z$1.ZodObject<{
|
|
2985
|
-
question: z$1.ZodString;
|
|
2986
|
-
context: z$1.ZodOptional<z$1.ZodString>;
|
|
2987
|
-
goalId: z$1.ZodOptional<z$1.ZodString>;
|
|
2988
|
-
existingDecisionId: z$1.ZodOptional<z$1.ZodString>;
|
|
2989
|
-
options: z$1.ZodArray<z$1.ZodObject<{
|
|
2990
|
-
id: z$1.ZodString;
|
|
2991
|
-
description: z$1.ZodString;
|
|
2992
|
-
pros: z$1.ZodOptional<z$1.ZodString>;
|
|
2993
|
-
cons: z$1.ZodOptional<z$1.ZodString>;
|
|
2994
|
-
}, z$1.core.$strip>>;
|
|
2995
|
-
precedentKey: z$1.ZodOptional<z$1.ZodString>;
|
|
2996
|
-
}, z$1.core.$strip>;
|
|
2997
|
-
}, z$1.core.$strip>]>;
|
|
2998
|
-
declare const AcceptBodySchema: z$1.ZodObject<{
|
|
2999
|
-
machineId: z$1.ZodOptional<z$1.ZodString>;
|
|
3000
|
-
priorityOverride: z$1.ZodOptional<z$1.ZodString>;
|
|
3001
|
-
roleOverride: z$1.ZodOptional<z$1.ZodString>;
|
|
3002
|
-
}, z$1.core.$strip>;
|
|
3003
|
-
type AcceptBody = z$1.infer<typeof AcceptBodySchema>;
|
|
3004
|
-
declare const WorldSuggestionUpdatedSchema: z$1.ZodObject<{
|
|
3005
|
-
type: z$1.ZodLiteral<"world-suggestion-updated">;
|
|
3006
|
-
projectId: z$1.ZodString;
|
|
3007
|
-
suggestionId: z$1.ZodString;
|
|
3008
|
-
status: z$1.ZodEnum<{
|
|
3009
|
-
open: "open";
|
|
3010
|
-
processing: "processing";
|
|
3011
|
-
accepted: "accepted";
|
|
3012
|
-
suspended: "suspended";
|
|
3013
|
-
dismissed: "dismissed";
|
|
3014
|
-
expired: "expired";
|
|
3015
|
-
}>;
|
|
3016
|
-
}, z$1.core.$strip>;
|
|
3017
|
-
type WorldSuggestionUpdated = z$1.infer<typeof WorldSuggestionUpdatedSchema>;
|
|
3018
|
-
type SuggestionSerialized = {
|
|
3019
|
-
id: string;
|
|
3020
|
-
projectId: string;
|
|
3021
|
-
relatedGoalId: string | null;
|
|
3022
|
-
relatedTaskId: string | null;
|
|
3023
|
-
type: "suggested_goal";
|
|
3024
|
-
title: string;
|
|
3025
|
-
summary: string;
|
|
3026
|
-
reason: string;
|
|
3027
|
-
evidence: SuggestionEvidence[];
|
|
3028
|
-
recommendedRole: string | null;
|
|
3029
|
-
payload: {
|
|
3030
|
-
goal: SuggestionGoalPayload;
|
|
3031
|
-
};
|
|
3032
|
-
requiresHuman: boolean;
|
|
3033
|
-
status: SuggestionStatus;
|
|
3034
|
-
dedupeKey: string;
|
|
3035
|
-
bucket: SuggestionBucket;
|
|
3036
|
-
createdAt: number;
|
|
3037
|
-
actedAt: number | null;
|
|
3038
|
-
acceptSource?: SuggestionAcceptSource | null;
|
|
3039
|
-
acceptAudit?: SuggestionAcceptAudit | null;
|
|
3040
|
-
autoAcceptStatus?: SuggestionAutoAcceptStatus | null;
|
|
3041
|
-
autoAcceptReasonCode?: SuggestionAutoAcceptReasonCode | null;
|
|
3042
|
-
autoAcceptFailureDetail?: SuggestionAutoAcceptFailureDetail | null;
|
|
3043
|
-
} | {
|
|
3044
|
-
id: string;
|
|
3045
|
-
projectId: string;
|
|
3046
|
-
relatedGoalId: string | null;
|
|
3047
|
-
relatedTaskId: string | null;
|
|
3048
|
-
type: "suggested_task";
|
|
3049
|
-
title: string;
|
|
3050
|
-
summary: string;
|
|
3051
|
-
reason: string;
|
|
3052
|
-
evidence: SuggestionEvidence[];
|
|
3053
|
-
recommendedRole: string | null;
|
|
3054
|
-
payload: {
|
|
3055
|
-
task: SuggestionTaskPayload;
|
|
3056
|
-
};
|
|
3057
|
-
requiresHuman: boolean;
|
|
3058
|
-
status: SuggestionStatus;
|
|
3059
|
-
dedupeKey: string;
|
|
3060
|
-
bucket: SuggestionBucket;
|
|
3061
|
-
createdAt: number;
|
|
3062
|
-
actedAt: number | null;
|
|
3063
|
-
acceptSource?: SuggestionAcceptSource | null;
|
|
3064
|
-
acceptAudit?: SuggestionAcceptAudit | null;
|
|
3065
|
-
autoAcceptStatus?: SuggestionAutoAcceptStatus | null;
|
|
3066
|
-
autoAcceptReasonCode?: SuggestionAutoAcceptReasonCode | null;
|
|
3067
|
-
autoAcceptFailureDetail?: SuggestionAutoAcceptFailureDetail | null;
|
|
3068
|
-
} | {
|
|
3069
|
-
id: string;
|
|
3070
|
-
projectId: string;
|
|
3071
|
-
relatedGoalId: string | null;
|
|
3072
|
-
relatedTaskId: string | null;
|
|
3073
|
-
type: "suggested_skill";
|
|
3074
|
-
title: string;
|
|
3075
|
-
summary: string;
|
|
3076
|
-
reason: string;
|
|
3077
|
-
evidence: SuggestionEvidence[];
|
|
3078
|
-
recommendedRole: string | null;
|
|
3079
|
-
payload: {
|
|
3080
|
-
skill: SuggestionSkillPayload;
|
|
3081
|
-
};
|
|
3082
|
-
requiresHuman: boolean;
|
|
3083
|
-
status: SuggestionStatus;
|
|
3084
|
-
dedupeKey: string;
|
|
3085
|
-
bucket: SuggestionBucket;
|
|
3086
|
-
createdAt: number;
|
|
3087
|
-
actedAt: number | null;
|
|
3088
|
-
acceptSource?: SuggestionAcceptSource | null;
|
|
3089
|
-
acceptAudit?: SuggestionAcceptAudit | null;
|
|
3090
|
-
autoAcceptStatus?: SuggestionAutoAcceptStatus | null;
|
|
3091
|
-
autoAcceptReasonCode?: SuggestionAutoAcceptReasonCode | null;
|
|
3092
|
-
autoAcceptFailureDetail?: SuggestionAutoAcceptFailureDetail | null;
|
|
3093
|
-
} | {
|
|
3094
|
-
id: string;
|
|
3095
|
-
projectId: string;
|
|
3096
|
-
relatedGoalId: string | null;
|
|
3097
|
-
relatedTaskId: string | null;
|
|
3098
|
-
type: "suggested_decision";
|
|
3099
|
-
title: string;
|
|
3100
|
-
summary: string;
|
|
3101
|
-
reason: string;
|
|
3102
|
-
evidence: SuggestionEvidence[];
|
|
3103
|
-
recommendedRole: string | null;
|
|
3104
|
-
payload: {
|
|
3105
|
-
decision: SuggestionDecisionPayload;
|
|
3106
|
-
};
|
|
3107
|
-
requiresHuman: boolean;
|
|
3108
|
-
status: SuggestionStatus;
|
|
3109
|
-
dedupeKey: string;
|
|
3110
|
-
bucket: SuggestionBucket;
|
|
3111
|
-
createdAt: number;
|
|
3112
|
-
actedAt: number | null;
|
|
3113
|
-
acceptSource?: SuggestionAcceptSource | null;
|
|
3114
|
-
acceptAudit?: SuggestionAcceptAudit | null;
|
|
3115
|
-
autoAcceptStatus?: SuggestionAutoAcceptStatus | null;
|
|
3116
|
-
autoAcceptReasonCode?: SuggestionAutoAcceptReasonCode | null;
|
|
3117
|
-
autoAcceptFailureDetail?: SuggestionAutoAcceptFailureDetail | null;
|
|
3118
|
-
};
|
|
3119
|
-
type SuggestionSummary = SuggestionSerialized;
|
|
3120
|
-
declare const AutonomyStatsRecentActionSchema: z$1.ZodObject<{
|
|
3121
|
-
suggestionId: z$1.ZodString;
|
|
3122
|
-
title: z$1.ZodString;
|
|
3123
|
-
type: z$1.ZodEnum<{
|
|
3124
|
-
suggested_goal: "suggested_goal";
|
|
3125
|
-
suggested_task: "suggested_task";
|
|
3126
|
-
suggested_skill: "suggested_skill";
|
|
3127
|
-
suggested_decision: "suggested_decision";
|
|
3128
|
-
}>;
|
|
3129
|
-
acceptedAt: z$1.ZodNumber;
|
|
3130
|
-
rule: z$1.ZodString;
|
|
3131
|
-
}, z$1.core.$strip>;
|
|
3132
|
-
declare const AutonomyStatsSchema: z$1.ZodObject<{
|
|
3133
|
-
mode: z$1.ZodEnum<{
|
|
3134
|
-
auto: "auto";
|
|
3135
|
-
disabled: "disabled";
|
|
3136
|
-
suggest: "suggest";
|
|
3137
|
-
"semi-auto": "semi-auto";
|
|
3138
|
-
}>;
|
|
3139
|
-
todayAutoAccepted: z$1.ZodNumber;
|
|
3140
|
-
todayQuota: z$1.ZodNullable<z$1.ZodNumber>;
|
|
3141
|
-
concurrentAutoTasks: z$1.ZodNumber;
|
|
3142
|
-
maxConcurrent: z$1.ZodNullable<z$1.ZodNumber>;
|
|
3143
|
-
recentAutoActions: z$1.ZodArray<z$1.ZodObject<{
|
|
3144
|
-
suggestionId: z$1.ZodString;
|
|
3145
|
-
title: z$1.ZodString;
|
|
3146
|
-
type: z$1.ZodEnum<{
|
|
3147
|
-
suggested_goal: "suggested_goal";
|
|
3148
|
-
suggested_task: "suggested_task";
|
|
3149
|
-
suggested_skill: "suggested_skill";
|
|
3150
|
-
suggested_decision: "suggested_decision";
|
|
3151
|
-
}>;
|
|
3152
|
-
acceptedAt: z$1.ZodNumber;
|
|
3153
|
-
rule: z$1.ZodString;
|
|
3154
|
-
}, z$1.core.$strip>>;
|
|
3155
|
-
}, z$1.core.$strip>;
|
|
3156
|
-
type AutonomyStats = z$1.infer<typeof AutonomyStatsSchema>;
|
|
3157
|
-
|
|
3158
|
-
declare const AGENT_MSG_TYPES: readonly ["request", "report", "conflict", "law_suggestion", "dependency_blocked", "handoff", "review_request", "decision_request"];
|
|
3159
|
-
type AgentMsgType = typeof AGENT_MSG_TYPES[number];
|
|
3160
|
-
declare const AgentMsgTypeSchema: z.ZodEnum<{
|
|
3161
|
-
request: "request";
|
|
3162
|
-
report: "report";
|
|
3163
|
-
conflict: "conflict";
|
|
3164
|
-
law_suggestion: "law_suggestion";
|
|
3165
|
-
dependency_blocked: "dependency_blocked";
|
|
3166
|
-
handoff: "handoff";
|
|
3167
|
-
review_request: "review_request";
|
|
3168
|
-
decision_request: "decision_request";
|
|
3169
|
-
}>;
|
|
3170
|
-
declare const AGENT_MSG_STATUSES: readonly ["unread", "read", "resolved"];
|
|
3171
|
-
type AgentMsgStatus = typeof AGENT_MSG_STATUSES[number];
|
|
3172
|
-
declare const AGENT_MSG_PRIORITIES: readonly ["urgent", "normal", "low"];
|
|
3173
|
-
type AgentMsgPriority = typeof AGENT_MSG_PRIORITIES[number];
|
|
3174
|
-
declare const AgentMessageSummarySchema: z.ZodObject<{
|
|
3175
|
-
id: z.ZodString;
|
|
3176
|
-
projectId: z.ZodString;
|
|
3177
|
-
fromRole: z.ZodString;
|
|
3178
|
-
toRole: z.ZodNullable<z.ZodString>;
|
|
3179
|
-
msgType: z.ZodEnum<{
|
|
3180
|
-
request: "request";
|
|
3181
|
-
report: "report";
|
|
3182
|
-
conflict: "conflict";
|
|
3183
|
-
law_suggestion: "law_suggestion";
|
|
3184
|
-
dependency_blocked: "dependency_blocked";
|
|
3185
|
-
handoff: "handoff";
|
|
3186
|
-
review_request: "review_request";
|
|
3187
|
-
decision_request: "decision_request";
|
|
3188
|
-
}>;
|
|
3189
|
-
content: z.ZodString;
|
|
3190
|
-
status: z.ZodEnum<{
|
|
3191
|
-
read: "read";
|
|
3192
|
-
unread: "unread";
|
|
3193
|
-
resolved: "resolved";
|
|
3194
|
-
}>;
|
|
3195
|
-
sessionId: z.ZodNullable<z.ZodString>;
|
|
3196
|
-
decisionId: z.ZodNullable<z.ZodString>;
|
|
3197
|
-
relatedGoalId: z.ZodNullable<z.ZodString>;
|
|
3198
|
-
relatedTaskId: z.ZodNullable<z.ZodString>;
|
|
3199
|
-
priority: z.ZodEnum<{
|
|
3200
|
-
urgent: "urgent";
|
|
3201
|
-
low: "low";
|
|
3202
|
-
normal: "normal";
|
|
3203
|
-
}>;
|
|
3204
|
-
createdAt: z.ZodNumber;
|
|
3205
|
-
updatedAt: z.ZodNumber;
|
|
3206
|
-
}, z.core.$strip>;
|
|
3207
|
-
type AgentMessageSummary = z.infer<typeof AgentMessageSummarySchema>;
|
|
3208
|
-
|
|
3209
2831
|
declare const BuiltInAIBackendProfileIdSchema: z$1.ZodEnum<{
|
|
3210
2832
|
anthropic: "anthropic";
|
|
3211
2833
|
deepseek: "deepseek";
|
|
@@ -3611,5 +3233,177 @@ declare function shouldHideSuccessfulHappyMcpTool(toolName: string | null | unde
|
|
|
3611
3233
|
declare function shouldAutoApproveHappyMcpToolName(toolName: string | null | undefined): boolean;
|
|
3612
3234
|
declare function shouldAutoApproveHappyMcpReason(reason: string | null | undefined): boolean;
|
|
3613
3235
|
|
|
3614
|
-
|
|
3615
|
-
|
|
3236
|
+
declare const CODEX_APP_SERVER_BACKEND = "codex-app-server";
|
|
3237
|
+
declare const CODEX_MCP_LEGACY_BACKEND = "codex-mcp-legacy";
|
|
3238
|
+
declare const CodexBackendModeSchema: z.ZodEnum<{
|
|
3239
|
+
auto: "auto";
|
|
3240
|
+
"codex-app-server": "codex-app-server";
|
|
3241
|
+
"codex-mcp-legacy": "codex-mcp-legacy";
|
|
3242
|
+
}>;
|
|
3243
|
+
type CodexBackendMode = z.infer<typeof CodexBackendModeSchema>;
|
|
3244
|
+
declare const CodexRequestedBackendSchema: z.ZodEnum<{
|
|
3245
|
+
auto: "auto";
|
|
3246
|
+
"codex-app-server": "codex-app-server";
|
|
3247
|
+
"codex-mcp-legacy": "codex-mcp-legacy";
|
|
3248
|
+
}>;
|
|
3249
|
+
type CodexRequestedBackend = CodexBackendMode;
|
|
3250
|
+
declare const CodexResolvedBackendSchema: z.ZodEnum<{
|
|
3251
|
+
"codex-app-server": "codex-app-server";
|
|
3252
|
+
"codex-mcp-legacy": "codex-mcp-legacy";
|
|
3253
|
+
}>;
|
|
3254
|
+
type CodexResolvedBackend = z.infer<typeof CodexResolvedBackendSchema>;
|
|
3255
|
+
declare const CodexConfigModeSchema: z.ZodEnum<{
|
|
3256
|
+
inherit: "inherit";
|
|
3257
|
+
"managed-profile": "managed-profile";
|
|
3258
|
+
"managed-overrides": "managed-overrides";
|
|
3259
|
+
}>;
|
|
3260
|
+
type CodexConfigMode = z.infer<typeof CodexConfigModeSchema>;
|
|
3261
|
+
declare const CODEX_REQUESTED_BACKEND_ALIASES: {
|
|
3262
|
+
readonly auto: readonly ["", "auto"];
|
|
3263
|
+
readonly "codex-app-server": readonly ["app-server", "appserver", "codex-app-server"];
|
|
3264
|
+
readonly "codex-mcp-legacy": readonly ["legacy", "mcp", "mcp-legacy", "codex-mcp-legacy"];
|
|
3265
|
+
};
|
|
3266
|
+
declare function resolveRequestedCodexBackend(rawValue: string | undefined): CodexRequestedBackend;
|
|
3267
|
+
declare function isCodexAppServerBackend(value: string | null | undefined): value is typeof CODEX_APP_SERVER_BACKEND;
|
|
3268
|
+
declare function isCodexLegacyBackend(value: string | null | undefined): value is typeof CODEX_MCP_LEGACY_BACKEND;
|
|
3269
|
+
declare function resolveCodexResolvedBackend(requestedBackend: CodexRequestedBackend, appServerSupported: boolean): CodexResolvedBackend;
|
|
3270
|
+
declare function resolveCodexResumableThreadId(value: {
|
|
3271
|
+
threadId?: string | null | undefined;
|
|
3272
|
+
resolvedBackend?: CodexResolvedBackend | undefined;
|
|
3273
|
+
} | null | undefined): string | null;
|
|
3274
|
+
|
|
3275
|
+
declare const CodexRuntimeConfigSchema: z.ZodObject<{
|
|
3276
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3277
|
+
profile: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3278
|
+
approvalPolicy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3279
|
+
sandboxMode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3280
|
+
serviceTier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3281
|
+
reasoningEffort: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3282
|
+
reasoningSummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3283
|
+
verbosity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3284
|
+
webSearch: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3285
|
+
}, z.core.$strip>;
|
|
3286
|
+
type CodexRuntimeConfig = z.infer<typeof CodexRuntimeConfigSchema>;
|
|
3287
|
+
declare const CodexAccountSchema: z.ZodObject<{
|
|
3288
|
+
type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
3289
|
+
apiKey: "apiKey";
|
|
3290
|
+
chatgpt: "chatgpt";
|
|
3291
|
+
}>>>;
|
|
3292
|
+
email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3293
|
+
planType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3294
|
+
requiresOpenaiAuth: z.ZodOptional<z.ZodBoolean>;
|
|
3295
|
+
}, z.core.$strip>;
|
|
3296
|
+
type CodexAccount = z.infer<typeof CodexAccountSchema>;
|
|
3297
|
+
declare const CodexRateLimitsSchema: z.ZodObject<{
|
|
3298
|
+
limitId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3299
|
+
limitName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3300
|
+
planType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3301
|
+
hasCredits: z.ZodOptional<z.ZodBoolean>;
|
|
3302
|
+
}, z.core.$strip>;
|
|
3303
|
+
type CodexRateLimits = z.infer<typeof CodexRateLimitsSchema>;
|
|
3304
|
+
declare const CodexExperimentalFeatureSchema: z.ZodObject<{
|
|
3305
|
+
name: z.ZodString;
|
|
3306
|
+
stage: z.ZodString;
|
|
3307
|
+
enabled: z.ZodBoolean;
|
|
3308
|
+
defaultEnabled: z.ZodBoolean;
|
|
3309
|
+
}, z.core.$strip>;
|
|
3310
|
+
type CodexExperimentalFeature = z.infer<typeof CodexExperimentalFeatureSchema>;
|
|
3311
|
+
declare const CodexSkillSummarySchema: z.ZodObject<{
|
|
3312
|
+
name: z.ZodString;
|
|
3313
|
+
description: z.ZodString;
|
|
3314
|
+
path: z.ZodString;
|
|
3315
|
+
enabled: z.ZodBoolean;
|
|
3316
|
+
}, z.core.$strip>;
|
|
3317
|
+
type CodexSkillSummary = z.infer<typeof CodexSkillSummarySchema>;
|
|
3318
|
+
declare const CodexPromptSummarySchema: z.ZodObject<{
|
|
3319
|
+
name: z.ZodString;
|
|
3320
|
+
path: z.ZodString;
|
|
3321
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3322
|
+
}, z.core.$strip>;
|
|
3323
|
+
type CodexPromptSummary = z.infer<typeof CodexPromptSummarySchema>;
|
|
3324
|
+
declare const CodexAgentSummarySchema: z.ZodObject<{
|
|
3325
|
+
name: z.ZodString;
|
|
3326
|
+
path: z.ZodString;
|
|
3327
|
+
}, z.core.$strip>;
|
|
3328
|
+
type CodexAgentSummary = z.infer<typeof CodexAgentSummarySchema>;
|
|
3329
|
+
declare const CodexMcpServerSummarySchema: z.ZodObject<{
|
|
3330
|
+
name: z.ZodString;
|
|
3331
|
+
authStatus: z.ZodString;
|
|
3332
|
+
toolCount: z.ZodNumber;
|
|
3333
|
+
}, z.core.$strip>;
|
|
3334
|
+
type CodexMcpServerSummary = z.infer<typeof CodexMcpServerSummarySchema>;
|
|
3335
|
+
declare const CodexMetadataSchema: z.ZodObject<{
|
|
3336
|
+
requestedBackend: z.ZodOptional<z.ZodEnum<{
|
|
3337
|
+
auto: "auto";
|
|
3338
|
+
"codex-app-server": "codex-app-server";
|
|
3339
|
+
"codex-mcp-legacy": "codex-mcp-legacy";
|
|
3340
|
+
}>>;
|
|
3341
|
+
resolvedBackend: z.ZodOptional<z.ZodEnum<{
|
|
3342
|
+
"codex-app-server": "codex-app-server";
|
|
3343
|
+
"codex-mcp-legacy": "codex-mcp-legacy";
|
|
3344
|
+
}>>;
|
|
3345
|
+
configMode: z.ZodOptional<z.ZodEnum<{
|
|
3346
|
+
inherit: "inherit";
|
|
3347
|
+
"managed-profile": "managed-profile";
|
|
3348
|
+
"managed-overrides": "managed-overrides";
|
|
3349
|
+
}>>;
|
|
3350
|
+
fallbackReason: z.ZodOptional<z.ZodString>;
|
|
3351
|
+
backendVersion: z.ZodOptional<z.ZodString>;
|
|
3352
|
+
threadId: z.ZodOptional<z.ZodString>;
|
|
3353
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
3354
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3355
|
+
profile: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3356
|
+
approvalPolicy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3357
|
+
sandboxMode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3358
|
+
serviceTier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3359
|
+
reasoningEffort: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3360
|
+
reasoningSummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3361
|
+
verbosity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3362
|
+
webSearch: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3363
|
+
}, z.core.$strip>>;
|
|
3364
|
+
account: z.ZodOptional<z.ZodObject<{
|
|
3365
|
+
type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
3366
|
+
apiKey: "apiKey";
|
|
3367
|
+
chatgpt: "chatgpt";
|
|
3368
|
+
}>>>;
|
|
3369
|
+
email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3370
|
+
planType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3371
|
+
requiresOpenaiAuth: z.ZodOptional<z.ZodBoolean>;
|
|
3372
|
+
}, z.core.$strip>>;
|
|
3373
|
+
rateLimits: z.ZodOptional<z.ZodObject<{
|
|
3374
|
+
limitId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3375
|
+
limitName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3376
|
+
planType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3377
|
+
hasCredits: z.ZodOptional<z.ZodBoolean>;
|
|
3378
|
+
}, z.core.$strip>>;
|
|
3379
|
+
experimentalFeatures: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3380
|
+
name: z.ZodString;
|
|
3381
|
+
stage: z.ZodString;
|
|
3382
|
+
enabled: z.ZodBoolean;
|
|
3383
|
+
defaultEnabled: z.ZodBoolean;
|
|
3384
|
+
}, z.core.$strip>>>;
|
|
3385
|
+
skills: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3386
|
+
name: z.ZodString;
|
|
3387
|
+
description: z.ZodString;
|
|
3388
|
+
path: z.ZodString;
|
|
3389
|
+
enabled: z.ZodBoolean;
|
|
3390
|
+
}, z.core.$strip>>>;
|
|
3391
|
+
prompts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3392
|
+
name: z.ZodString;
|
|
3393
|
+
path: z.ZodString;
|
|
3394
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3395
|
+
}, z.core.$strip>>>;
|
|
3396
|
+
agents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3397
|
+
name: z.ZodString;
|
|
3398
|
+
path: z.ZodString;
|
|
3399
|
+
}, z.core.$strip>>>;
|
|
3400
|
+
mcpServers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3401
|
+
name: z.ZodString;
|
|
3402
|
+
authStatus: z.ZodString;
|
|
3403
|
+
toolCount: z.ZodNumber;
|
|
3404
|
+
}, z.core.$strip>>>;
|
|
3405
|
+
}, z.core.$strip>;
|
|
3406
|
+
type CodexMetadata = z.infer<typeof CodexMetadataSchema>;
|
|
3407
|
+
|
|
3408
|
+
export { AIBackendProfileSchema, AgentLoopSummarySchema, AgentMessageSchema, AnthropicConfigSchema, ApiMessageSchema, ApiUpdateMachineStateSchema, ApiUpdateNewMessageSchema, ApiUpdateSessionStateSchema, AutoDreamProfileSummarySchema, AutomationAuditEventSummarySchema, AutomationAuditStatsSchema, AutomationCountsSchema, AutomationGuardianSummarySchema, AutomationGuardianUsageSummarySchema, AutomationJobKindSchema, AutomationJobStatusSchema, AutomationJobSummarySchema, AutomationPrioritySchema, AutomationStateSchema, AzureOpenAIConfigSchema, BUILT_IN_AI_BACKEND_PROFILE_IDS, BootstrapProfileSummarySchema, BriefMessageSchema, BuiltInAIBackendProfileIdSchema, CODEX_APP_SERVER_BACKEND, CODEX_MCP_LEGACY_BACKEND, CODEX_REQUESTED_BACKEND_ALIASES, CliInstallInfoSchema, CliInstallSourceSchema, CodexAccountSchema, CodexAgentSummarySchema, CodexBackendModeSchema, CodexConfigModeSchema, CodexConfigSchema, CodexExperimentalFeatureSchema, CodexMcpServerSummarySchema, CodexMetadataSchema, CodexPromptSummarySchema, CodexRateLimitsSchema, CodexRequestedBackendSchema, CodexResolvedBackendSchema, CodexRuntimeConfigSchema, CodexSkillSummarySchema, CoreUpdateBodySchema, CoreUpdateContainerSchema, CreateKnowledgeEntryBodySchema, CreateSkillBodySchema, CreateTaskBodySchema, CrossProjectSearchResponseSchema, CrossProjectSearchResultSchema, CustomModelSchema, DaemonStateSchema, DefaultPermissionModeSchema, EnvironmentVariableSchema, HAPPY_MCP_AUTO_APPROVE_TOOL_NAMES, HAPPY_MCP_SILENT_SUCCESS_TOOL_NAMES, HAPPY_MCP_TOOL_NAMES, HAPPY_MCP_TOOL_SPECS, InboxCategorySchema, InboxItemSummarySchema, InboxNewItemSchema, InboxSeveritySchema, InboxUnreadCountSchema, KnowledgeActionSchema, KnowledgeChainEntrySchema, KnowledgeChainRelationSchema, KnowledgeChainResponseSchema, KnowledgeConfidenceSchema, KnowledgeContributorTypeSchema, KnowledgeEntryTypeSchema, KnowledgeInjectionModeSchema, KnowledgeInjectionRequestSchema, KnowledgeInjectionResponseSchema, KnowledgeStatusSchema, LegacyMessageContentSchema, MachineMetadataSchema, MessageContentSchema, MessageMetaSchema, OpenAIConfigSchema, ProfileCompatibilitySchema, ProjectProfileSchema, QueryKnowledgeParamsSchema, RESOLVED_RUNTIME_PROFILE_SCHEMA_VERSION, ResolvedRuntimeProfileSchema, RuntimeProfileSourceSchema, RuntimeProfileTrustSchema, SessionEventCreatedSchema, SessionEventReportSchema, SessionEventSummarySchema, SessionEventTypeSchema, SessionMessageContentSchema, SessionMessageSchema, SessionProtocolMessageSchema, SkillContentSchema, SkillSummarySchema, TailscaleInfoSchema, TailscaleServeEntrySchema, TaskOutcomeSchema, TaskPrioritySchema, TaskStatusChangedSchema, TaskStatusReportSchema, TaskStatusSchema, TaskSummarySchema, TaskTriggerDataSchema, TaskTriggerTypeSchema, TmuxConfigSchema, TogetherAIConfigSchema, TunnelEntrySchema, TunnelProviderInfoSchema, TunnelStateSchema, TurnKnowledgeExtractionSchema, UpdateBodySchema, UpdateKnowledgeEntryBodySchema, UpdateMachineBodySchema, UpdateNewMessageBodySchema, UpdateSchema, UpdateSessionBodySchema, UpdateSkillBodySchema, UserMessageSchema, VersionedEncryptedValueSchema, VersionedMachineEncryptedValueSchema, VersionedNullableEncryptedValueSchema, VoiceTokenAllowedSchema, VoiceTokenDeniedSchema, VoiceTokenResponseSchema, createEnvelope, createResolvedRuntimeProfile, getBuiltInAIBackendProfile, getHappyMcpToolAction, getHappyMcpToolAliases, getHappyMcpToolTitle, getProfileEnvironmentVariables, isCodexAppServerBackend, isCodexLegacyBackend, isHappyMcpToolAlias, isHappyMcpToolName, isTrustedRuntimeProfile, normalizeHappyMcpToolName, normalizeResolvedRuntimeProfile, resolveCodexResolvedBackend, resolveCodexResumableThreadId, resolveRequestedCodexBackend, sessionContextUsageCategorySchema, sessionContextUsageEventSchema, sessionEnvelopeSchema, sessionEventSchema, sessionFileEventSchema, sessionModelUsageSchema, sessionNeedsContinueEventSchema, sessionProgressListSchema, sessionProgressStateSchema, sessionProgressTodoSchema, sessionProgressTodoStatusSchema, sessionPromptSuggestionEventSchema, sessionRoleSchema, sessionServiceMessageEventSchema, sessionStartEventSchema, sessionStateChangedEventSchema, sessionStopEventSchema, sessionSummaryStateSchema, sessionTaskEndEventSchema, sessionTaskLogEventSchema, sessionTaskProgressEventSchema, sessionTaskStartEventSchema, sessionTextDeltaEventSchema, sessionTextEventSchema, sessionToolCallEndEventSchema, sessionToolCallStartEventSchema, sessionToolProgressEventSchema, sessionTurnEndEventSchema, sessionTurnEndStatusSchema, sessionTurnStartEventSchema, sessionUsageUpdateEventSchema, shouldAutoApproveHappyMcpReason, shouldAutoApproveHappyMcpToolName, shouldHideSuccessfulHappyMcpTool, terminalCloseRequestSchema, terminalExitPayloadSchema, terminalInputPayloadSchema, terminalOutputPayloadSchema, terminalResizeRequestSchema, terminalSpawnRequestSchema, terminalSpawnResponseSchema, validateProfileForAgent };
|
|
3409
|
+
export type { AIBackendProfile, AgentLoopSummary, AgentMessage, ApiMessage, ApiUpdateMachineState, ApiUpdateNewMessage, ApiUpdateSessionState, AutoDreamProfileSummary, AutomationAuditEventSummary, AutomationAuditStats, AutomationCounts, AutomationGuardianSummary, AutomationGuardianUsageSummary, AutomationJobKind, AutomationJobStatus, AutomationJobSummary, AutomationPriority, AutomationState, BootstrapProfileSummary, BriefMessage, BuiltInAIBackendProfileId, CliInstallInfo, CliInstallSource, CodexAccount, CodexAgentSummary, CodexBackendMode, CodexConfigMode, CodexExperimentalFeature, CodexMcpServerSummary, CodexMetadata, CodexPromptSummary, CodexRateLimits, CodexRequestedBackend, CodexResolvedBackend, CodexRuntimeConfig, CodexSkillSummary, CoreUpdateBody, CoreUpdateContainer, CreateEnvelopeOptions, CreateKnowledgeEntryBody, CreateSkillBody, CreateTaskBody, CrossProjectSearchResponse, CrossProjectSearchResult, DaemonState, HappyMcpCanonicalToolName, HappyMcpToolActionMode, InboxCategory, InboxItemSummary, InboxNewItem, InboxSeverity, InboxUnreadCount, KnowledgeAction, KnowledgeChainEntry, KnowledgeChainRelation, KnowledgeChainResponse, KnowledgeConfidence, KnowledgeContributorType, KnowledgeEntryType, KnowledgeInjectionMode, KnowledgeInjectionRequest, KnowledgeInjectionResponse, KnowledgeStatus, LegacyMessageContent, MachineMetadata, MessageContent, MessageMeta, ProjectProfile, QueryKnowledgeParams, ResolvedRuntimeProfile, RuntimeProfileSource, RuntimeProfileTrust, SessionContextUsageEvent, SessionEnvelope, SessionEvent, SessionEventCreated, SessionEventReport, SessionEventSummary, SessionEventType, SessionMessage, SessionMessageContent, SessionModelUsage, SessionProgressList, SessionProgressState, SessionProgressTodo, SessionProgressTodoStatus, SessionProtocolMessage, SessionRole, SessionSummaryState, SessionTurnEndStatus, SkillContent, SkillSummary, TailscaleInfo, TailscaleServeEntry, TaskOutcome, TaskPriority, TaskStatus, TaskStatusChanged, TaskStatusReport, TaskSummary, TaskTriggerData, TaskTriggerType, TerminalCloseRequest, TerminalExitPayload, TerminalInputPayload, TerminalOutputPayload, TerminalResizeRequest, TerminalSpawnRequest, TerminalSpawnResponse, TunnelEntry, TunnelProviderInfo, TunnelState, TurnKnowledgeExtraction, Update, UpdateBody, UpdateKnowledgeEntryBody, UpdateMachineBody, UpdateNewMessageBody, UpdateSessionBody, UpdateSkillBody, UserMessage, VersionedEncryptedValue, VersionedMachineEncryptedValue, VersionedNullableEncryptedValue, VoiceTokenResponse };
|