@selleragent/api-contract 0.8.0 → 0.10.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/.tsbuildinfo +1 -1
- package/dist/auth.d.ts +457 -0
- package/dist/auth.d.ts.map +1 -0
- package/dist/auth.js +122 -0
- package/dist/auth.js.map +1 -0
- package/dist/conversations.d.ts +135 -135
- package/dist/evaluations.d.ts +432 -0
- package/dist/evaluations.d.ts.map +1 -0
- package/dist/evaluations.js +69 -0
- package/dist/evaluations.js.map +1 -0
- package/dist/index.d.ts +5 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +49 -11
- package/dist/index.js.map +1 -1
- package/dist/judge-files.d.ts +330 -37
- package/dist/judge-files.d.ts.map +1 -1
- package/dist/judge-files.js +150 -6
- package/dist/judge-files.js.map +1 -1
- package/dist/operations.d.ts +2330 -985
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +118 -8
- package/dist/operations.js.map +1 -1
- package/dist/ops.d.ts +123 -123
- package/dist/runtime.d.ts +3 -3
- package/dist/semantic-eval.d.ts +16 -16
- package/package.json +1 -1
package/dist/judge-files.d.ts
CHANGED
|
@@ -6,10 +6,10 @@ export declare const judgeSeveritySchema: z.ZodEnum<{
|
|
|
6
6
|
minor: "minor";
|
|
7
7
|
}>;
|
|
8
8
|
export declare const judgeRuleApplyToSchema: z.ZodEnum<{
|
|
9
|
-
whole_dialog: "whole_dialog";
|
|
10
9
|
focus_only: "focus_only";
|
|
11
10
|
next_company_reply: "next_company_reply";
|
|
12
11
|
journey_slice: "journey_slice";
|
|
12
|
+
whole_dialog: "whole_dialog";
|
|
13
13
|
all_matches: "all_matches";
|
|
14
14
|
}>;
|
|
15
15
|
export declare const judgeScorecardModeSchema: z.ZodEnum<{
|
|
@@ -30,8 +30,8 @@ export declare const judgeRuleEpisodeHintActorSchema: z.ZodEnum<{
|
|
|
30
30
|
recent_turns: "recent_turns";
|
|
31
31
|
}>;
|
|
32
32
|
export declare const judgeRuleEpisodeSelectionStrategySchema: z.ZodEnum<{
|
|
33
|
-
last_pair: "last_pair";
|
|
34
33
|
auto: "auto";
|
|
34
|
+
last_pair: "last_pair";
|
|
35
35
|
best_signal: "best_signal";
|
|
36
36
|
}>;
|
|
37
37
|
export declare const canonicalConversationSourceSchema: z.ZodObject<{
|
|
@@ -65,20 +65,20 @@ export declare const canonicalConversationParticipantSchema: z.ZodObject<{
|
|
|
65
65
|
id: z.ZodString;
|
|
66
66
|
role: z.ZodEnum<{
|
|
67
67
|
customer: "customer";
|
|
68
|
-
system: "system";
|
|
69
68
|
company: "company";
|
|
69
|
+
system: "system";
|
|
70
70
|
}>;
|
|
71
71
|
actorMode: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
72
|
-
operator: "operator";
|
|
73
72
|
bot: "bot";
|
|
73
|
+
operator: "operator";
|
|
74
74
|
hybrid: "hybrid";
|
|
75
75
|
}>>>;
|
|
76
76
|
label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
77
77
|
}, z.core.$strip>;
|
|
78
78
|
export type CanonicalConversationParticipant = z.infer<typeof canonicalConversationParticipantSchema>;
|
|
79
79
|
export declare const canonicalConversationTurnAttachmentKindSchema: z.ZodEnum<{
|
|
80
|
-
document: "document";
|
|
81
80
|
photo: "photo";
|
|
81
|
+
document: "document";
|
|
82
82
|
audio: "audio";
|
|
83
83
|
video: "video";
|
|
84
84
|
sticker: "sticker";
|
|
@@ -87,8 +87,8 @@ export declare const canonicalConversationTurnAttachmentKindSchema: z.ZodEnum<{
|
|
|
87
87
|
export type CanonicalConversationTurnAttachmentKind = z.infer<typeof canonicalConversationTurnAttachmentKindSchema>;
|
|
88
88
|
export declare const canonicalConversationTurnAttachmentSchema: z.ZodObject<{
|
|
89
89
|
kind: z.ZodEnum<{
|
|
90
|
-
document: "document";
|
|
91
90
|
photo: "photo";
|
|
91
|
+
document: "document";
|
|
92
92
|
audio: "audio";
|
|
93
93
|
video: "video";
|
|
94
94
|
sticker: "sticker";
|
|
@@ -110,12 +110,12 @@ export declare const canonicalConversationTurnSchema: z.ZodObject<{
|
|
|
110
110
|
actorId: z.ZodString;
|
|
111
111
|
actorRole: z.ZodEnum<{
|
|
112
112
|
customer: "customer";
|
|
113
|
-
system: "system";
|
|
114
113
|
company: "company";
|
|
114
|
+
system: "system";
|
|
115
115
|
}>;
|
|
116
116
|
actorMode: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
117
|
-
operator: "operator";
|
|
118
117
|
bot: "bot";
|
|
118
|
+
operator: "operator";
|
|
119
119
|
hybrid: "hybrid";
|
|
120
120
|
}>>>;
|
|
121
121
|
external_message_ref: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
@@ -125,8 +125,8 @@ export declare const canonicalConversationTurnSchema: z.ZodObject<{
|
|
|
125
125
|
text: z.ZodString;
|
|
126
126
|
attachments: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
127
127
|
kind: z.ZodEnum<{
|
|
128
|
-
document: "document";
|
|
129
128
|
photo: "photo";
|
|
129
|
+
document: "document";
|
|
130
130
|
audio: "audio";
|
|
131
131
|
video: "video";
|
|
132
132
|
sticker: "sticker";
|
|
@@ -205,8 +205,8 @@ export declare const canonicalConversationLineageSchema: z.ZodObject<{
|
|
|
205
205
|
live_export: "live_export";
|
|
206
206
|
}>>;
|
|
207
207
|
actor_mode: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
208
|
-
operator: "operator";
|
|
209
208
|
bot: "bot";
|
|
209
|
+
operator: "operator";
|
|
210
210
|
hybrid: "hybrid";
|
|
211
211
|
}>>>;
|
|
212
212
|
based_on_transcript_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
@@ -265,12 +265,12 @@ export declare const canonicalConversationTranscriptSchema: z.ZodObject<{
|
|
|
265
265
|
id: z.ZodString;
|
|
266
266
|
role: z.ZodEnum<{
|
|
267
267
|
customer: "customer";
|
|
268
|
-
system: "system";
|
|
269
268
|
company: "company";
|
|
269
|
+
system: "system";
|
|
270
270
|
}>;
|
|
271
271
|
actorMode: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
272
|
-
operator: "operator";
|
|
273
272
|
bot: "bot";
|
|
273
|
+
operator: "operator";
|
|
274
274
|
hybrid: "hybrid";
|
|
275
275
|
}>>>;
|
|
276
276
|
label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
@@ -280,12 +280,12 @@ export declare const canonicalConversationTranscriptSchema: z.ZodObject<{
|
|
|
280
280
|
actorId: z.ZodString;
|
|
281
281
|
actorRole: z.ZodEnum<{
|
|
282
282
|
customer: "customer";
|
|
283
|
-
system: "system";
|
|
284
283
|
company: "company";
|
|
284
|
+
system: "system";
|
|
285
285
|
}>;
|
|
286
286
|
actorMode: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
287
|
-
operator: "operator";
|
|
288
287
|
bot: "bot";
|
|
288
|
+
operator: "operator";
|
|
289
289
|
hybrid: "hybrid";
|
|
290
290
|
}>>>;
|
|
291
291
|
external_message_ref: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
@@ -295,8 +295,8 @@ export declare const canonicalConversationTranscriptSchema: z.ZodObject<{
|
|
|
295
295
|
text: z.ZodString;
|
|
296
296
|
attachments: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
297
297
|
kind: z.ZodEnum<{
|
|
298
|
-
document: "document";
|
|
299
298
|
photo: "photo";
|
|
299
|
+
document: "document";
|
|
300
300
|
audio: "audio";
|
|
301
301
|
video: "video";
|
|
302
302
|
sticker: "sticker";
|
|
@@ -357,8 +357,8 @@ export declare const canonicalConversationTranscriptSchema: z.ZodObject<{
|
|
|
357
357
|
live_export: "live_export";
|
|
358
358
|
}>>;
|
|
359
359
|
actor_mode: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
360
|
-
operator: "operator";
|
|
361
360
|
bot: "bot";
|
|
361
|
+
operator: "operator";
|
|
362
362
|
hybrid: "hybrid";
|
|
363
363
|
}>>>;
|
|
364
364
|
based_on_transcript_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
@@ -429,8 +429,8 @@ export declare const judgeRuleEpisodeHintSchema: z.ZodObject<{
|
|
|
429
429
|
export type JudgeRuleEpisodeHint = z.infer<typeof judgeRuleEpisodeHintSchema>;
|
|
430
430
|
export declare const judgeRuleEpisodeSelectionSchema: z.ZodObject<{
|
|
431
431
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
432
|
-
last_pair: "last_pair";
|
|
433
432
|
auto: "auto";
|
|
433
|
+
last_pair: "last_pair";
|
|
434
434
|
best_signal: "best_signal";
|
|
435
435
|
}>>;
|
|
436
436
|
min_score: z.ZodDefault<z.ZodNumber>;
|
|
@@ -541,10 +541,10 @@ export declare const judgeRuleFileSchema: z.ZodObject<{
|
|
|
541
541
|
label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
542
542
|
question: z.ZodString;
|
|
543
543
|
applies_to: z.ZodEnum<{
|
|
544
|
-
whole_dialog: "whole_dialog";
|
|
545
544
|
focus_only: "focus_only";
|
|
546
545
|
next_company_reply: "next_company_reply";
|
|
547
546
|
journey_slice: "journey_slice";
|
|
547
|
+
whole_dialog: "whole_dialog";
|
|
548
548
|
all_matches: "all_matches";
|
|
549
549
|
}>;
|
|
550
550
|
imports: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -557,8 +557,8 @@ export declare const judgeRuleFileSchema: z.ZodObject<{
|
|
|
557
557
|
}>>;
|
|
558
558
|
episode_selection: z.ZodOptional<z.ZodObject<{
|
|
559
559
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
560
|
-
last_pair: "last_pair";
|
|
561
560
|
auto: "auto";
|
|
561
|
+
last_pair: "last_pair";
|
|
562
562
|
best_signal: "best_signal";
|
|
563
563
|
}>>;
|
|
564
564
|
min_score: z.ZodDefault<z.ZodNumber>;
|
|
@@ -706,8 +706,23 @@ export type JudgeRuleFile = z.infer<typeof judgeRuleFileSchema>;
|
|
|
706
706
|
export declare const judgeScorecardRuleEntrySchema: z.ZodObject<{
|
|
707
707
|
rule: z.ZodString;
|
|
708
708
|
weight: z.ZodDefault<z.ZodNumber>;
|
|
709
|
+
replace: z.ZodDefault<z.ZodBoolean>;
|
|
710
|
+
disable: z.ZodDefault<z.ZodBoolean>;
|
|
709
711
|
}, z.core.$strip>;
|
|
710
712
|
export type JudgeScorecardRuleEntry = z.infer<typeof judgeScorecardRuleEntrySchema>;
|
|
713
|
+
export declare const judgeScorecardCheckFileSchema: z.ZodObject<{
|
|
714
|
+
id: z.ZodString;
|
|
715
|
+
use: z.ZodString;
|
|
716
|
+
label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
717
|
+
severity: z.ZodDefault<z.ZodEnum<{
|
|
718
|
+
critical: "critical";
|
|
719
|
+
major: "major";
|
|
720
|
+
minor: "minor";
|
|
721
|
+
}>>;
|
|
722
|
+
replace: z.ZodDefault<z.ZodBoolean>;
|
|
723
|
+
disable: z.ZodDefault<z.ZodBoolean>;
|
|
724
|
+
}, z.core.$loose>;
|
|
725
|
+
export type JudgeScorecardCheckFile = z.infer<typeof judgeScorecardCheckFileSchema>;
|
|
711
726
|
export declare const judgeScorecardRuntimeSchema: z.ZodObject<{
|
|
712
727
|
engine: z.ZodDefault<z.ZodEnum<{
|
|
713
728
|
codex: "codex";
|
|
@@ -718,10 +733,10 @@ export declare const judgeScorecardRuntimeSchema: z.ZodObject<{
|
|
|
718
733
|
}>>;
|
|
719
734
|
model: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
720
735
|
reasoning: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
736
|
+
minimal: "minimal";
|
|
721
737
|
low: "low";
|
|
722
738
|
medium: "medium";
|
|
723
739
|
high: "high";
|
|
724
|
-
minimal: "minimal";
|
|
725
740
|
xhigh: "xhigh";
|
|
726
741
|
}>>>;
|
|
727
742
|
concurrency: z.ZodDefault<z.ZodNumber>;
|
|
@@ -736,12 +751,13 @@ export type JudgeScorecardPolicy = z.infer<typeof judgeScorecardPolicySchema>;
|
|
|
736
751
|
export declare const judgeScorecardFileSchema: z.ZodObject<{
|
|
737
752
|
schema_version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
738
753
|
kind: z.ZodDefault<z.ZodLiteral<"sa_judge_scorecard">>;
|
|
739
|
-
id: z.ZodString
|
|
754
|
+
id: z.ZodOptional<z.ZodString>;
|
|
740
755
|
label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
741
|
-
mode: z.
|
|
756
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
742
757
|
acceptance: "acceptance";
|
|
743
758
|
diagnostic: "diagnostic";
|
|
744
759
|
}>>;
|
|
760
|
+
extends: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
745
761
|
runtime: z.ZodOptional<z.ZodObject<{
|
|
746
762
|
engine: z.ZodDefault<z.ZodEnum<{
|
|
747
763
|
codex: "codex";
|
|
@@ -752,40 +768,190 @@ export declare const judgeScorecardFileSchema: z.ZodObject<{
|
|
|
752
768
|
}>>;
|
|
753
769
|
model: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
754
770
|
reasoning: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
771
|
+
minimal: "minimal";
|
|
755
772
|
low: "low";
|
|
756
773
|
medium: "medium";
|
|
757
774
|
high: "high";
|
|
758
|
-
minimal: "minimal";
|
|
759
775
|
xhigh: "xhigh";
|
|
760
776
|
}>>>;
|
|
761
777
|
concurrency: z.ZodDefault<z.ZodNumber>;
|
|
762
778
|
}, z.core.$strip>>;
|
|
763
|
-
rules: z.ZodArray<z.ZodObject<{
|
|
779
|
+
rules: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
764
780
|
rule: z.ZodString;
|
|
765
781
|
weight: z.ZodDefault<z.ZodNumber>;
|
|
766
|
-
|
|
767
|
-
|
|
782
|
+
replace: z.ZodDefault<z.ZodBoolean>;
|
|
783
|
+
disable: z.ZodDefault<z.ZodBoolean>;
|
|
784
|
+
}, z.core.$strip>>>;
|
|
785
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
786
|
+
id: z.ZodString;
|
|
787
|
+
use: z.ZodString;
|
|
788
|
+
label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
789
|
+
severity: z.ZodDefault<z.ZodEnum<{
|
|
790
|
+
critical: "critical";
|
|
791
|
+
major: "major";
|
|
792
|
+
minor: "minor";
|
|
793
|
+
}>>;
|
|
794
|
+
replace: z.ZodDefault<z.ZodBoolean>;
|
|
795
|
+
disable: z.ZodDefault<z.ZodBoolean>;
|
|
796
|
+
}, z.core.$loose>>>;
|
|
797
|
+
policy: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
768
798
|
min_total_score: z.ZodDefault<z.ZodNumber>;
|
|
769
799
|
fail_if_any: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
770
800
|
allow_partial: z.ZodDefault<z.ZodBoolean>;
|
|
771
|
-
}, z.core.$strip
|
|
801
|
+
}, z.core.$strip>>>;
|
|
772
802
|
}, z.core.$strip>;
|
|
773
803
|
export type JudgeScorecardFile = z.infer<typeof judgeScorecardFileSchema>;
|
|
804
|
+
export declare const judgeCaseCompareModeSchema: z.ZodEnum<{
|
|
805
|
+
optional: "optional";
|
|
806
|
+
off: "off";
|
|
807
|
+
required: "required";
|
|
808
|
+
}>;
|
|
809
|
+
export type JudgeCaseCompareMode = z.infer<typeof judgeCaseCompareModeSchema>;
|
|
810
|
+
export declare const judgeCaseFileSchema: z.ZodObject<{
|
|
811
|
+
schema_version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
812
|
+
kind: z.ZodDefault<z.ZodLiteral<"sa_judge_case">>;
|
|
813
|
+
id: z.ZodOptional<z.ZodString>;
|
|
814
|
+
title: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
815
|
+
transcript: z.ZodDefault<z.ZodString>;
|
|
816
|
+
scorecard: z.ZodOptional<z.ZodString>;
|
|
817
|
+
scorecards: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
818
|
+
compare: z.ZodDefault<z.ZodEnum<{
|
|
819
|
+
optional: "optional";
|
|
820
|
+
off: "off";
|
|
821
|
+
required: "required";
|
|
822
|
+
}>>;
|
|
823
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
824
|
+
}, z.core.$strip>;
|
|
825
|
+
export type JudgeCaseFile = z.infer<typeof judgeCaseFileSchema>;
|
|
826
|
+
export declare const judgeAuthoringTranscriptTurnSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
827
|
+
customer: z.ZodString;
|
|
828
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
829
|
+
company: z.ZodString;
|
|
830
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
831
|
+
actorRole: z.ZodEnum<{
|
|
832
|
+
customer: "customer";
|
|
833
|
+
company: "company";
|
|
834
|
+
system: "system";
|
|
835
|
+
}>;
|
|
836
|
+
text: z.ZodString;
|
|
837
|
+
actorMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
838
|
+
bot: "bot";
|
|
839
|
+
operator: "operator";
|
|
840
|
+
hybrid: "hybrid";
|
|
841
|
+
}>>>;
|
|
842
|
+
timestamp: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
843
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
844
|
+
kind: z.ZodEnum<{
|
|
845
|
+
photo: "photo";
|
|
846
|
+
document: "document";
|
|
847
|
+
audio: "audio";
|
|
848
|
+
video: "video";
|
|
849
|
+
sticker: "sticker";
|
|
850
|
+
other: "other";
|
|
851
|
+
}>;
|
|
852
|
+
title: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
853
|
+
description: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
854
|
+
status: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
855
|
+
source_ref: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
856
|
+
storage_ref: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
857
|
+
mime_type: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
858
|
+
size_bytes: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
859
|
+
included: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
860
|
+
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
861
|
+
}, z.core.$strip>>>;
|
|
862
|
+
}, z.core.$strip>]>;
|
|
863
|
+
export type JudgeAuthoringTranscriptTurn = z.infer<typeof judgeAuthoringTranscriptTurnSchema>;
|
|
864
|
+
export declare const judgeAuthoringTranscriptFileSchema: z.ZodObject<{
|
|
865
|
+
schema_version: z.ZodOptional<z.ZodLiteral<1>>;
|
|
866
|
+
kind: z.ZodOptional<z.ZodLiteral<"sa_conversation">>;
|
|
867
|
+
business_slug: z.ZodOptional<z.ZodString>;
|
|
868
|
+
profile_version: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
869
|
+
conversationId: z.ZodOptional<z.ZodString>;
|
|
870
|
+
channel: z.ZodOptional<z.ZodString>;
|
|
871
|
+
threadRef: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
872
|
+
turns: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
873
|
+
customer: z.ZodString;
|
|
874
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
875
|
+
company: z.ZodString;
|
|
876
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
877
|
+
actorRole: z.ZodEnum<{
|
|
878
|
+
customer: "customer";
|
|
879
|
+
company: "company";
|
|
880
|
+
system: "system";
|
|
881
|
+
}>;
|
|
882
|
+
text: z.ZodString;
|
|
883
|
+
actorMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
884
|
+
bot: "bot";
|
|
885
|
+
operator: "operator";
|
|
886
|
+
hybrid: "hybrid";
|
|
887
|
+
}>>>;
|
|
888
|
+
timestamp: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
889
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
890
|
+
kind: z.ZodEnum<{
|
|
891
|
+
photo: "photo";
|
|
892
|
+
document: "document";
|
|
893
|
+
audio: "audio";
|
|
894
|
+
video: "video";
|
|
895
|
+
sticker: "sticker";
|
|
896
|
+
other: "other";
|
|
897
|
+
}>;
|
|
898
|
+
title: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
899
|
+
description: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
900
|
+
status: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
901
|
+
source_ref: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
902
|
+
storage_ref: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
903
|
+
mime_type: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
904
|
+
size_bytes: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
905
|
+
included: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
906
|
+
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
907
|
+
}, z.core.$strip>>>;
|
|
908
|
+
}, z.core.$strip>]>>;
|
|
909
|
+
context: z.ZodOptional<z.ZodObject<{
|
|
910
|
+
domainNote: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
911
|
+
stateSummary: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
912
|
+
packedContextSummary: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
913
|
+
historicalSummaries: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
914
|
+
summaryRef: z.ZodString;
|
|
915
|
+
summaryText: z.ZodString;
|
|
916
|
+
knownFacts: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
917
|
+
productsMentioned: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
918
|
+
customerGoals: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
919
|
+
}, z.core.$strip>>>;
|
|
920
|
+
traceRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
921
|
+
ref: z.ZodString;
|
|
922
|
+
label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
923
|
+
}, z.core.$strip>>>;
|
|
924
|
+
}, z.core.$strip>>;
|
|
925
|
+
coverage: z.ZodOptional<z.ZodObject<{
|
|
926
|
+
mode: z.ZodEnum<{
|
|
927
|
+
full: "full";
|
|
928
|
+
packed: "packed";
|
|
929
|
+
excerpt: "excerpt";
|
|
930
|
+
raw_full: "raw_full";
|
|
931
|
+
}>;
|
|
932
|
+
note: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
933
|
+
}, z.core.$strip>>;
|
|
934
|
+
focus: z.ZodOptional<z.ZodObject<{
|
|
935
|
+
customer_turn_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
936
|
+
company_turn_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
937
|
+
}, z.core.$strip>>;
|
|
938
|
+
}, z.core.$strip>;
|
|
939
|
+
export type JudgeAuthoringTranscriptFile = z.infer<typeof judgeAuthoringTranscriptFileSchema>;
|
|
774
940
|
export declare const canonicalJudgeRuleRunSchema: z.ZodObject<{
|
|
775
941
|
job_id: z.ZodString;
|
|
776
942
|
rule_id: z.ZodString;
|
|
777
943
|
window_label: z.ZodString;
|
|
778
944
|
applies_to: z.ZodEnum<{
|
|
779
|
-
whole_dialog: "whole_dialog";
|
|
780
945
|
focus_only: "focus_only";
|
|
781
946
|
next_company_reply: "next_company_reply";
|
|
782
947
|
journey_slice: "journey_slice";
|
|
948
|
+
whole_dialog: "whole_dialog";
|
|
783
949
|
all_matches: "all_matches";
|
|
784
950
|
}>;
|
|
785
951
|
weight: z.ZodNumber;
|
|
786
952
|
operational_status: z.ZodEnum<{
|
|
787
|
-
failed: "failed";
|
|
788
953
|
completed: "completed";
|
|
954
|
+
failed: "failed";
|
|
789
955
|
}>;
|
|
790
956
|
worker_verdict: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
791
957
|
pass: "pass";
|
|
@@ -833,10 +999,10 @@ export declare const canonicalJudgeScorecardReportSchema: z.ZodObject<{
|
|
|
833
999
|
}>>;
|
|
834
1000
|
model: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
835
1001
|
reasoning: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
1002
|
+
minimal: "minimal";
|
|
836
1003
|
low: "low";
|
|
837
1004
|
medium: "medium";
|
|
838
1005
|
high: "high";
|
|
839
|
-
minimal: "minimal";
|
|
840
1006
|
xhigh: "xhigh";
|
|
841
1007
|
}>>>;
|
|
842
1008
|
concurrency: z.ZodDefault<z.ZodNumber>;
|
|
@@ -860,16 +1026,16 @@ export declare const canonicalJudgeScorecardReportSchema: z.ZodObject<{
|
|
|
860
1026
|
rule_id: z.ZodString;
|
|
861
1027
|
window_label: z.ZodString;
|
|
862
1028
|
applies_to: z.ZodEnum<{
|
|
863
|
-
whole_dialog: "whole_dialog";
|
|
864
1029
|
focus_only: "focus_only";
|
|
865
1030
|
next_company_reply: "next_company_reply";
|
|
866
1031
|
journey_slice: "journey_slice";
|
|
1032
|
+
whole_dialog: "whole_dialog";
|
|
867
1033
|
all_matches: "all_matches";
|
|
868
1034
|
}>;
|
|
869
1035
|
weight: z.ZodNumber;
|
|
870
1036
|
operational_status: z.ZodEnum<{
|
|
871
|
-
failed: "failed";
|
|
872
1037
|
completed: "completed";
|
|
1038
|
+
failed: "failed";
|
|
873
1039
|
}>;
|
|
874
1040
|
worker_verdict: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
875
1041
|
pass: "pass";
|
|
@@ -915,8 +1081,8 @@ export declare const canonicalJudgeCompareSideSchema: z.ZodObject<{
|
|
|
915
1081
|
live_export: "live_export";
|
|
916
1082
|
}>>>;
|
|
917
1083
|
actor_mode: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
918
|
-
operator: "operator";
|
|
919
1084
|
bot: "bot";
|
|
1085
|
+
operator: "operator";
|
|
920
1086
|
hybrid: "hybrid";
|
|
921
1087
|
}>>>;
|
|
922
1088
|
conversation_id: z.ZodString;
|
|
@@ -984,8 +1150,8 @@ export declare const canonicalJudgeCompareReportSchema: z.ZodObject<{
|
|
|
984
1150
|
live_export: "live_export";
|
|
985
1151
|
}>>>;
|
|
986
1152
|
actor_mode: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
987
|
-
operator: "operator";
|
|
988
1153
|
bot: "bot";
|
|
1154
|
+
operator: "operator";
|
|
989
1155
|
hybrid: "hybrid";
|
|
990
1156
|
}>>>;
|
|
991
1157
|
conversation_id: z.ZodString;
|
|
@@ -1011,8 +1177,8 @@ export declare const canonicalJudgeCompareReportSchema: z.ZodObject<{
|
|
|
1011
1177
|
live_export: "live_export";
|
|
1012
1178
|
}>>>;
|
|
1013
1179
|
actor_mode: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
1014
|
-
operator: "operator";
|
|
1015
1180
|
bot: "bot";
|
|
1181
|
+
operator: "operator";
|
|
1016
1182
|
hybrid: "hybrid";
|
|
1017
1183
|
}>>>;
|
|
1018
1184
|
conversation_id: z.ZodString;
|
|
@@ -1090,8 +1256,8 @@ export declare const canonicalJudgeTranscriptFamilyMemberSchema: z.ZodObject<{
|
|
|
1090
1256
|
live_export: "live_export";
|
|
1091
1257
|
}>>>;
|
|
1092
1258
|
actor_mode: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
1093
|
-
operator: "operator";
|
|
1094
1259
|
bot: "bot";
|
|
1260
|
+
operator: "operator";
|
|
1095
1261
|
hybrid: "hybrid";
|
|
1096
1262
|
}>>>;
|
|
1097
1263
|
based_on_transcript_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
@@ -1139,8 +1305,8 @@ export declare const canonicalJudgeTranscriptFamilyReportSchema: z.ZodObject<{
|
|
|
1139
1305
|
live_export: "live_export";
|
|
1140
1306
|
}>>>;
|
|
1141
1307
|
actor_mode: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
1142
|
-
operator: "operator";
|
|
1143
1308
|
bot: "bot";
|
|
1309
|
+
operator: "operator";
|
|
1144
1310
|
hybrid: "hybrid";
|
|
1145
1311
|
}>>>;
|
|
1146
1312
|
based_on_transcript_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
@@ -1155,4 +1321,131 @@ export declare const canonicalJudgeTranscriptFamilyReportSchema: z.ZodObject<{
|
|
|
1155
1321
|
generated_at: z.ZodString;
|
|
1156
1322
|
}, z.core.$strip>;
|
|
1157
1323
|
export type CanonicalJudgeTranscriptFamilyReport = z.infer<typeof canonicalJudgeTranscriptFamilyReportSchema>;
|
|
1324
|
+
export declare const evaluationSuiteRunStatusSchema: z.ZodEnum<{
|
|
1325
|
+
completed: "completed";
|
|
1326
|
+
failed: "failed";
|
|
1327
|
+
queued: "queued";
|
|
1328
|
+
running: "running";
|
|
1329
|
+
}>;
|
|
1330
|
+
export type EvaluationSuiteRunStatus = z.infer<typeof evaluationSuiteRunStatusSchema>;
|
|
1331
|
+
export declare const evaluationCaseRunStatusSchema: z.ZodEnum<{
|
|
1332
|
+
completed: "completed";
|
|
1333
|
+
failed: "failed";
|
|
1334
|
+
queued: "queued";
|
|
1335
|
+
running: "running";
|
|
1336
|
+
}>;
|
|
1337
|
+
export type EvaluationCaseRunStatus = z.infer<typeof evaluationCaseRunStatusSchema>;
|
|
1338
|
+
export declare const evaluationCaseVerdictSchema: z.ZodEnum<{
|
|
1339
|
+
error: "error";
|
|
1340
|
+
failed: "failed";
|
|
1341
|
+
passed: "passed";
|
|
1342
|
+
regressed: "regressed";
|
|
1343
|
+
soft_failed: "soft_failed";
|
|
1344
|
+
}>;
|
|
1345
|
+
export type EvaluationCaseVerdict = z.infer<typeof evaluationCaseVerdictSchema>;
|
|
1346
|
+
export declare const evaluationCompareStatusSchema: z.ZodEnum<{
|
|
1347
|
+
off: "off";
|
|
1348
|
+
preserved: "preserved";
|
|
1349
|
+
improved: "improved";
|
|
1350
|
+
regressed: "regressed";
|
|
1351
|
+
changed: "changed";
|
|
1352
|
+
unchanged: "unchanged";
|
|
1353
|
+
missing: "missing";
|
|
1354
|
+
}>;
|
|
1355
|
+
export type EvaluationCompareStatus = z.infer<typeof evaluationCompareStatusSchema>;
|
|
1356
|
+
export declare const evaluationCheckResultSchema: z.ZodObject<{
|
|
1357
|
+
check_result_id: z.ZodString;
|
|
1358
|
+
suite_run_id: z.ZodString;
|
|
1359
|
+
case_run_id: z.ZodString;
|
|
1360
|
+
business_slug: z.ZodString;
|
|
1361
|
+
case_id: z.ZodString;
|
|
1362
|
+
check_id: z.ZodString;
|
|
1363
|
+
check_use: z.ZodString;
|
|
1364
|
+
severity: z.ZodEnum<{
|
|
1365
|
+
critical: "critical";
|
|
1366
|
+
major: "major";
|
|
1367
|
+
minor: "minor";
|
|
1368
|
+
}>;
|
|
1369
|
+
passed: z.ZodBoolean;
|
|
1370
|
+
details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1371
|
+
created_at: z.ZodString;
|
|
1372
|
+
}, z.core.$strip>;
|
|
1373
|
+
export type EvaluationCheckResult = z.infer<typeof evaluationCheckResultSchema>;
|
|
1374
|
+
export declare const evaluationCaseRunRecordSchema: z.ZodObject<{
|
|
1375
|
+
case_run_id: z.ZodString;
|
|
1376
|
+
suite_run_id: z.ZodString;
|
|
1377
|
+
business_slug: z.ZodString;
|
|
1378
|
+
case_id: z.ZodString;
|
|
1379
|
+
case_path: z.ZodString;
|
|
1380
|
+
compare_mode: z.ZodEnum<{
|
|
1381
|
+
optional: "optional";
|
|
1382
|
+
off: "off";
|
|
1383
|
+
required: "required";
|
|
1384
|
+
}>;
|
|
1385
|
+
compare_status: z.ZodEnum<{
|
|
1386
|
+
off: "off";
|
|
1387
|
+
preserved: "preserved";
|
|
1388
|
+
improved: "improved";
|
|
1389
|
+
regressed: "regressed";
|
|
1390
|
+
changed: "changed";
|
|
1391
|
+
unchanged: "unchanged";
|
|
1392
|
+
missing: "missing";
|
|
1393
|
+
}>;
|
|
1394
|
+
status: z.ZodEnum<{
|
|
1395
|
+
completed: "completed";
|
|
1396
|
+
failed: "failed";
|
|
1397
|
+
queued: "queued";
|
|
1398
|
+
running: "running";
|
|
1399
|
+
}>;
|
|
1400
|
+
verdict: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
1401
|
+
error: "error";
|
|
1402
|
+
failed: "failed";
|
|
1403
|
+
passed: "passed";
|
|
1404
|
+
regressed: "regressed";
|
|
1405
|
+
soft_failed: "soft_failed";
|
|
1406
|
+
}>>>;
|
|
1407
|
+
transcript_path: z.ZodString;
|
|
1408
|
+
replay_transcript_path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
1409
|
+
scorecards: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1410
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1411
|
+
score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
1412
|
+
semantic_verdict: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
1413
|
+
pass: "pass";
|
|
1414
|
+
soft_fail: "soft_fail";
|
|
1415
|
+
fail: "fail";
|
|
1416
|
+
inconclusive: "inconclusive";
|
|
1417
|
+
contract_error: "contract_error";
|
|
1418
|
+
}>>>;
|
|
1419
|
+
check_failures: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1420
|
+
compare_regressions: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1421
|
+
started_at: z.ZodString;
|
|
1422
|
+
finished_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
1423
|
+
payload: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1424
|
+
}, z.core.$strip>;
|
|
1425
|
+
export type EvaluationCaseRunRecord = z.infer<typeof evaluationCaseRunRecordSchema>;
|
|
1426
|
+
export declare const evaluationSuiteRunRecordSchema: z.ZodObject<{
|
|
1427
|
+
suite_run_id: z.ZodString;
|
|
1428
|
+
business_slug: z.ZodString;
|
|
1429
|
+
suite_root: z.ZodString;
|
|
1430
|
+
filter: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
1431
|
+
status: z.ZodEnum<{
|
|
1432
|
+
completed: "completed";
|
|
1433
|
+
failed: "failed";
|
|
1434
|
+
queued: "queued";
|
|
1435
|
+
running: "running";
|
|
1436
|
+
}>;
|
|
1437
|
+
totals: z.ZodObject<{
|
|
1438
|
+
total_cases: z.ZodDefault<z.ZodNumber>;
|
|
1439
|
+
passed: z.ZodDefault<z.ZodNumber>;
|
|
1440
|
+
soft_failed: z.ZodDefault<z.ZodNumber>;
|
|
1441
|
+
failed: z.ZodDefault<z.ZodNumber>;
|
|
1442
|
+
regressed: z.ZodDefault<z.ZodNumber>;
|
|
1443
|
+
errored: z.ZodDefault<z.ZodNumber>;
|
|
1444
|
+
}, z.core.$strip>;
|
|
1445
|
+
started_at: z.ZodString;
|
|
1446
|
+
finished_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
1447
|
+
summary_markdown: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
1448
|
+
payload: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1449
|
+
}, z.core.$strip>;
|
|
1450
|
+
export type EvaluationSuiteRunRecord = z.infer<typeof evaluationSuiteRunRecordSchema>;
|
|
1158
1451
|
//# sourceMappingURL=judge-files.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"judge-files.d.ts","sourceRoot":"","sources":["../src/judge-files.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"judge-files.d.ts","sourceRoot":"","sources":["../src/judge-files.ts"],"names":[],"mappings":"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"}
|