@domu-ai/kiban-sdk 1.185.4 → 1.187.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/dashboard/client.d.ts +412 -0
- package/dashboard/client.js +149 -3
- package/dashboard/schemas.d.ts +349 -48
- package/dashboard/schemas.js +81 -2
- package/flags.d.ts +1 -0
- package/flags.js +1 -0
- package/package.json +1 -1
package/dashboard/schemas.d.ts
CHANGED
|
@@ -670,6 +670,273 @@ export declare const GetRecordingPresignedUrlResponse: zod.ZodObject<{
|
|
|
670
670
|
url: string;
|
|
671
671
|
expiresIn: number;
|
|
672
672
|
}>;
|
|
673
|
+
/**
|
|
674
|
+
* Reserves external call rows and returns presigned S3 PUT URLs for direct browser upload of .mp3 or .m4a recordings.
|
|
675
|
+
* @summary Presign external call recording uploads
|
|
676
|
+
*/
|
|
677
|
+
export declare const presignUploadBodyFilesMax = 50;
|
|
678
|
+
export declare const PresignUploadBody: zod.ZodObject<{
|
|
679
|
+
campaignId: zod.ZodString;
|
|
680
|
+
files: zod.ZodArray<zod.ZodObject<{
|
|
681
|
+
fileName: zod.ZodString;
|
|
682
|
+
sizeBytes: zod.ZodNumber;
|
|
683
|
+
}, "strip", zod.ZodTypeAny, {
|
|
684
|
+
fileName: string;
|
|
685
|
+
sizeBytes: number;
|
|
686
|
+
}, {
|
|
687
|
+
fileName: string;
|
|
688
|
+
sizeBytes: number;
|
|
689
|
+
}>, "many">;
|
|
690
|
+
}, "strip", zod.ZodTypeAny, {
|
|
691
|
+
campaignId: string;
|
|
692
|
+
files: {
|
|
693
|
+
fileName: string;
|
|
694
|
+
sizeBytes: number;
|
|
695
|
+
}[];
|
|
696
|
+
}, {
|
|
697
|
+
campaignId: string;
|
|
698
|
+
files: {
|
|
699
|
+
fileName: string;
|
|
700
|
+
sizeBytes: number;
|
|
701
|
+
}[];
|
|
702
|
+
}>;
|
|
703
|
+
export declare const PresignUploadResponse: zod.ZodObject<{
|
|
704
|
+
uploads: zod.ZodArray<zod.ZodObject<{
|
|
705
|
+
callId: zod.ZodString;
|
|
706
|
+
externalCallId: zod.ZodString;
|
|
707
|
+
recordingUrl: zod.ZodString;
|
|
708
|
+
fileKey: zod.ZodString;
|
|
709
|
+
contentType: zod.ZodString;
|
|
710
|
+
presignedPutUrl: zod.ZodString;
|
|
711
|
+
expiresIn: zod.ZodNumber;
|
|
712
|
+
}, "strip", zod.ZodTypeAny, {
|
|
713
|
+
callId: string;
|
|
714
|
+
fileKey: string;
|
|
715
|
+
expiresIn: number;
|
|
716
|
+
recordingUrl: string;
|
|
717
|
+
externalCallId: string;
|
|
718
|
+
contentType: string;
|
|
719
|
+
presignedPutUrl: string;
|
|
720
|
+
}, {
|
|
721
|
+
callId: string;
|
|
722
|
+
fileKey: string;
|
|
723
|
+
expiresIn: number;
|
|
724
|
+
recordingUrl: string;
|
|
725
|
+
externalCallId: string;
|
|
726
|
+
contentType: string;
|
|
727
|
+
presignedPutUrl: string;
|
|
728
|
+
}>, "many">;
|
|
729
|
+
}, "strip", zod.ZodTypeAny, {
|
|
730
|
+
uploads: {
|
|
731
|
+
callId: string;
|
|
732
|
+
fileKey: string;
|
|
733
|
+
expiresIn: number;
|
|
734
|
+
recordingUrl: string;
|
|
735
|
+
externalCallId: string;
|
|
736
|
+
contentType: string;
|
|
737
|
+
presignedPutUrl: string;
|
|
738
|
+
}[];
|
|
739
|
+
}, {
|
|
740
|
+
uploads: {
|
|
741
|
+
callId: string;
|
|
742
|
+
fileKey: string;
|
|
743
|
+
expiresIn: number;
|
|
744
|
+
recordingUrl: string;
|
|
745
|
+
externalCallId: string;
|
|
746
|
+
contentType: string;
|
|
747
|
+
presignedPutUrl: string;
|
|
748
|
+
}[];
|
|
749
|
+
}>;
|
|
750
|
+
/**
|
|
751
|
+
* Verifies uploaded external call recordings in S3 and queues transcription jobs.
|
|
752
|
+
* @summary Complete external call recording uploads
|
|
753
|
+
*/
|
|
754
|
+
export declare const completeUploadBodyCallIdsMax = 50;
|
|
755
|
+
export declare const CompleteUploadBody: zod.ZodObject<{
|
|
756
|
+
callIds: zod.ZodArray<zod.ZodString, "many">;
|
|
757
|
+
}, "strip", zod.ZodTypeAny, {
|
|
758
|
+
callIds: string[];
|
|
759
|
+
}, {
|
|
760
|
+
callIds: string[];
|
|
761
|
+
}>;
|
|
762
|
+
/**
|
|
763
|
+
* Returns latest successful QA scoring results for an uploaded external call recording.
|
|
764
|
+
* @summary Get scoring results for an external call
|
|
765
|
+
*/
|
|
766
|
+
export declare const GetScoringParams: zod.ZodObject<{
|
|
767
|
+
callId: zod.ZodString;
|
|
768
|
+
}, "strip", zod.ZodTypeAny, {
|
|
769
|
+
callId: string;
|
|
770
|
+
}, {
|
|
771
|
+
callId: string;
|
|
772
|
+
}>;
|
|
773
|
+
export declare const GetScoringQueryParams: zod.ZodObject<{
|
|
774
|
+
scorecardId: zod.ZodOptional<zod.ZodString>;
|
|
775
|
+
}, "strip", zod.ZodTypeAny, {
|
|
776
|
+
scorecardId?: string | undefined;
|
|
777
|
+
}, {
|
|
778
|
+
scorecardId?: string | undefined;
|
|
779
|
+
}>;
|
|
780
|
+
export declare const GetScoringResponse: zod.ZodObject<{
|
|
781
|
+
data: zod.ZodObject<{
|
|
782
|
+
autoFailed: zod.ZodBoolean;
|
|
783
|
+
transcript: zod.ZodNullable<zod.ZodString>;
|
|
784
|
+
results: zod.ZodArray<zod.ZodObject<{
|
|
785
|
+
id: zod.ZodString;
|
|
786
|
+
call_id: zod.ZodNullable<zod.ZodString>;
|
|
787
|
+
external_call_id: zod.ZodString;
|
|
788
|
+
scorecard_id: zod.ZodString;
|
|
789
|
+
item_id: zod.ZodString;
|
|
790
|
+
score: zod.ZodNullable<zod.ZodString>;
|
|
791
|
+
explanation: zod.ZodNullable<zod.ZodString>;
|
|
792
|
+
created_at: zod.ZodNullable<zod.ZodString>;
|
|
793
|
+
item_name: zod.ZodString;
|
|
794
|
+
item_category: zod.ZodString;
|
|
795
|
+
item_type: zod.ZodEnum<["boolean", "numeric"]>;
|
|
796
|
+
item_auto_fail: zod.ZodBoolean;
|
|
797
|
+
item_na_enabled: zod.ZodBoolean;
|
|
798
|
+
item_explanation_enabled: zod.ZodBoolean;
|
|
799
|
+
position: zod.ZodNumber;
|
|
800
|
+
}, "strip", zod.ZodTypeAny, {
|
|
801
|
+
id: string;
|
|
802
|
+
created_at: string | null;
|
|
803
|
+
call_id: string | null;
|
|
804
|
+
external_call_id: string;
|
|
805
|
+
scorecard_id: string;
|
|
806
|
+
item_id: string;
|
|
807
|
+
score: string | null;
|
|
808
|
+
explanation: string | null;
|
|
809
|
+
item_name: string;
|
|
810
|
+
item_category: string;
|
|
811
|
+
item_type: "boolean" | "numeric";
|
|
812
|
+
item_auto_fail: boolean;
|
|
813
|
+
item_na_enabled: boolean;
|
|
814
|
+
item_explanation_enabled: boolean;
|
|
815
|
+
position: number;
|
|
816
|
+
}, {
|
|
817
|
+
id: string;
|
|
818
|
+
created_at: string | null;
|
|
819
|
+
call_id: string | null;
|
|
820
|
+
external_call_id: string;
|
|
821
|
+
scorecard_id: string;
|
|
822
|
+
item_id: string;
|
|
823
|
+
score: string | null;
|
|
824
|
+
explanation: string | null;
|
|
825
|
+
item_name: string;
|
|
826
|
+
item_category: string;
|
|
827
|
+
item_type: "boolean" | "numeric";
|
|
828
|
+
item_auto_fail: boolean;
|
|
829
|
+
item_na_enabled: boolean;
|
|
830
|
+
item_explanation_enabled: boolean;
|
|
831
|
+
position: number;
|
|
832
|
+
}>, "many">;
|
|
833
|
+
}, "strip", zod.ZodTypeAny, {
|
|
834
|
+
transcript: string | null;
|
|
835
|
+
results: {
|
|
836
|
+
id: string;
|
|
837
|
+
created_at: string | null;
|
|
838
|
+
call_id: string | null;
|
|
839
|
+
external_call_id: string;
|
|
840
|
+
scorecard_id: string;
|
|
841
|
+
item_id: string;
|
|
842
|
+
score: string | null;
|
|
843
|
+
explanation: string | null;
|
|
844
|
+
item_name: string;
|
|
845
|
+
item_category: string;
|
|
846
|
+
item_type: "boolean" | "numeric";
|
|
847
|
+
item_auto_fail: boolean;
|
|
848
|
+
item_na_enabled: boolean;
|
|
849
|
+
item_explanation_enabled: boolean;
|
|
850
|
+
position: number;
|
|
851
|
+
}[];
|
|
852
|
+
autoFailed: boolean;
|
|
853
|
+
}, {
|
|
854
|
+
transcript: string | null;
|
|
855
|
+
results: {
|
|
856
|
+
id: string;
|
|
857
|
+
created_at: string | null;
|
|
858
|
+
call_id: string | null;
|
|
859
|
+
external_call_id: string;
|
|
860
|
+
scorecard_id: string;
|
|
861
|
+
item_id: string;
|
|
862
|
+
score: string | null;
|
|
863
|
+
explanation: string | null;
|
|
864
|
+
item_name: string;
|
|
865
|
+
item_category: string;
|
|
866
|
+
item_type: "boolean" | "numeric";
|
|
867
|
+
item_auto_fail: boolean;
|
|
868
|
+
item_na_enabled: boolean;
|
|
869
|
+
item_explanation_enabled: boolean;
|
|
870
|
+
position: number;
|
|
871
|
+
}[];
|
|
872
|
+
autoFailed: boolean;
|
|
873
|
+
}>;
|
|
874
|
+
}, "strip", zod.ZodTypeAny, {
|
|
875
|
+
data: {
|
|
876
|
+
transcript: string | null;
|
|
877
|
+
results: {
|
|
878
|
+
id: string;
|
|
879
|
+
created_at: string | null;
|
|
880
|
+
call_id: string | null;
|
|
881
|
+
external_call_id: string;
|
|
882
|
+
scorecard_id: string;
|
|
883
|
+
item_id: string;
|
|
884
|
+
score: string | null;
|
|
885
|
+
explanation: string | null;
|
|
886
|
+
item_name: string;
|
|
887
|
+
item_category: string;
|
|
888
|
+
item_type: "boolean" | "numeric";
|
|
889
|
+
item_auto_fail: boolean;
|
|
890
|
+
item_na_enabled: boolean;
|
|
891
|
+
item_explanation_enabled: boolean;
|
|
892
|
+
position: number;
|
|
893
|
+
}[];
|
|
894
|
+
autoFailed: boolean;
|
|
895
|
+
};
|
|
896
|
+
}, {
|
|
897
|
+
data: {
|
|
898
|
+
transcript: string | null;
|
|
899
|
+
results: {
|
|
900
|
+
id: string;
|
|
901
|
+
created_at: string | null;
|
|
902
|
+
call_id: string | null;
|
|
903
|
+
external_call_id: string;
|
|
904
|
+
scorecard_id: string;
|
|
905
|
+
item_id: string;
|
|
906
|
+
score: string | null;
|
|
907
|
+
explanation: string | null;
|
|
908
|
+
item_name: string;
|
|
909
|
+
item_category: string;
|
|
910
|
+
item_type: "boolean" | "numeric";
|
|
911
|
+
item_auto_fail: boolean;
|
|
912
|
+
item_na_enabled: boolean;
|
|
913
|
+
item_explanation_enabled: boolean;
|
|
914
|
+
position: number;
|
|
915
|
+
}[];
|
|
916
|
+
autoFailed: boolean;
|
|
917
|
+
};
|
|
918
|
+
}>;
|
|
919
|
+
/**
|
|
920
|
+
* Generates a short-lived presigned URL for accessing an uploaded external call recording.
|
|
921
|
+
* @summary Get presigned URL for an external call recording
|
|
922
|
+
*/
|
|
923
|
+
export declare const GetExternalCallRecordingPresignedUrlParams: zod.ZodObject<{
|
|
924
|
+
callId: zod.ZodString;
|
|
925
|
+
}, "strip", zod.ZodTypeAny, {
|
|
926
|
+
callId: string;
|
|
927
|
+
}, {
|
|
928
|
+
callId: string;
|
|
929
|
+
}>;
|
|
930
|
+
export declare const GetExternalCallRecordingPresignedUrlResponse: zod.ZodObject<{
|
|
931
|
+
url: zod.ZodString;
|
|
932
|
+
expiresIn: zod.ZodNumber;
|
|
933
|
+
}, "strip", zod.ZodTypeAny, {
|
|
934
|
+
url: string;
|
|
935
|
+
expiresIn: number;
|
|
936
|
+
}, {
|
|
937
|
+
url: string;
|
|
938
|
+
expiresIn: number;
|
|
939
|
+
}>;
|
|
673
940
|
/**
|
|
674
941
|
* @summary Start a sandbox WebRTC call for browser-based agent testing
|
|
675
942
|
*/
|
|
@@ -1255,6 +1522,16 @@ export declare const GetOrgFlagsResponse: zod.ZodObject<{
|
|
|
1255
1522
|
enabled: boolean;
|
|
1256
1523
|
config?: unknown;
|
|
1257
1524
|
}>;
|
|
1525
|
+
external_call_qa_enabled: zod.ZodObject<{
|
|
1526
|
+
enabled: zod.ZodBoolean;
|
|
1527
|
+
config: zod.ZodOptional<zod.ZodNullable<zod.ZodUnknown>>;
|
|
1528
|
+
}, "strip", zod.ZodTypeAny, {
|
|
1529
|
+
enabled: boolean;
|
|
1530
|
+
config?: unknown;
|
|
1531
|
+
}, {
|
|
1532
|
+
enabled: boolean;
|
|
1533
|
+
config?: unknown;
|
|
1534
|
+
}>;
|
|
1258
1535
|
}, "strip", zod.ZodTypeAny, {
|
|
1259
1536
|
voicebot_studio: {
|
|
1260
1537
|
enabled: boolean;
|
|
@@ -1284,6 +1561,10 @@ export declare const GetOrgFlagsResponse: zod.ZodObject<{
|
|
|
1284
1561
|
enabled: boolean;
|
|
1285
1562
|
config?: unknown;
|
|
1286
1563
|
};
|
|
1564
|
+
external_call_qa_enabled: {
|
|
1565
|
+
enabled: boolean;
|
|
1566
|
+
config?: unknown;
|
|
1567
|
+
};
|
|
1287
1568
|
}, {
|
|
1288
1569
|
voicebot_studio: {
|
|
1289
1570
|
enabled: boolean;
|
|
@@ -1313,6 +1594,10 @@ export declare const GetOrgFlagsResponse: zod.ZodObject<{
|
|
|
1313
1594
|
enabled: boolean;
|
|
1314
1595
|
config?: unknown;
|
|
1315
1596
|
};
|
|
1597
|
+
external_call_qa_enabled: {
|
|
1598
|
+
enabled: boolean;
|
|
1599
|
+
config?: unknown;
|
|
1600
|
+
};
|
|
1316
1601
|
}>;
|
|
1317
1602
|
}, "strip", zod.ZodTypeAny, {
|
|
1318
1603
|
flags: {
|
|
@@ -1344,6 +1629,10 @@ export declare const GetOrgFlagsResponse: zod.ZodObject<{
|
|
|
1344
1629
|
enabled: boolean;
|
|
1345
1630
|
config?: unknown;
|
|
1346
1631
|
};
|
|
1632
|
+
external_call_qa_enabled: {
|
|
1633
|
+
enabled: boolean;
|
|
1634
|
+
config?: unknown;
|
|
1635
|
+
};
|
|
1347
1636
|
};
|
|
1348
1637
|
}, {
|
|
1349
1638
|
flags: {
|
|
@@ -1375,6 +1664,10 @@ export declare const GetOrgFlagsResponse: zod.ZodObject<{
|
|
|
1375
1664
|
enabled: boolean;
|
|
1376
1665
|
config?: unknown;
|
|
1377
1666
|
};
|
|
1667
|
+
external_call_qa_enabled: {
|
|
1668
|
+
enabled: boolean;
|
|
1669
|
+
config?: unknown;
|
|
1670
|
+
};
|
|
1378
1671
|
};
|
|
1379
1672
|
}>;
|
|
1380
1673
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -1408,6 +1701,10 @@ export declare const GetOrgFlagsResponse: zod.ZodObject<{
|
|
|
1408
1701
|
enabled: boolean;
|
|
1409
1702
|
config?: unknown;
|
|
1410
1703
|
};
|
|
1704
|
+
external_call_qa_enabled: {
|
|
1705
|
+
enabled: boolean;
|
|
1706
|
+
config?: unknown;
|
|
1707
|
+
};
|
|
1411
1708
|
};
|
|
1412
1709
|
};
|
|
1413
1710
|
}, {
|
|
@@ -1441,6 +1738,10 @@ export declare const GetOrgFlagsResponse: zod.ZodObject<{
|
|
|
1441
1738
|
enabled: boolean;
|
|
1442
1739
|
config?: unknown;
|
|
1443
1740
|
};
|
|
1741
|
+
external_call_qa_enabled: {
|
|
1742
|
+
enabled: boolean;
|
|
1743
|
+
config?: unknown;
|
|
1744
|
+
};
|
|
1444
1745
|
};
|
|
1445
1746
|
};
|
|
1446
1747
|
}>;
|
|
@@ -1977,23 +2278,23 @@ export declare const GetActiveScorecardResponse: zod.ZodObject<{
|
|
|
1977
2278
|
created_at: string | null;
|
|
1978
2279
|
name: string;
|
|
1979
2280
|
category: string;
|
|
2281
|
+
item_id: string;
|
|
2282
|
+
position: number;
|
|
1980
2283
|
instruction: string | null;
|
|
1981
2284
|
auto_fail: boolean;
|
|
1982
2285
|
na_enabled: boolean;
|
|
1983
2286
|
explanation_enabled: boolean;
|
|
1984
|
-
item_id: string;
|
|
1985
|
-
position: number;
|
|
1986
2287
|
}, {
|
|
1987
2288
|
type: "boolean" | "numeric";
|
|
1988
2289
|
created_at: string | null;
|
|
1989
2290
|
name: string;
|
|
1990
2291
|
category: string;
|
|
2292
|
+
item_id: string;
|
|
2293
|
+
position: number;
|
|
1991
2294
|
instruction: string | null;
|
|
1992
2295
|
auto_fail: boolean;
|
|
1993
2296
|
na_enabled: boolean;
|
|
1994
2297
|
explanation_enabled: boolean;
|
|
1995
|
-
item_id: string;
|
|
1996
|
-
position: number;
|
|
1997
2298
|
}>, "many">;
|
|
1998
2299
|
}, "strip", zod.ZodTypeAny, {
|
|
1999
2300
|
id: string;
|
|
@@ -2006,12 +2307,12 @@ export declare const GetActiveScorecardResponse: zod.ZodObject<{
|
|
|
2006
2307
|
created_at: string | null;
|
|
2007
2308
|
name: string;
|
|
2008
2309
|
category: string;
|
|
2310
|
+
item_id: string;
|
|
2311
|
+
position: number;
|
|
2009
2312
|
instruction: string | null;
|
|
2010
2313
|
auto_fail: boolean;
|
|
2011
2314
|
na_enabled: boolean;
|
|
2012
2315
|
explanation_enabled: boolean;
|
|
2013
|
-
item_id: string;
|
|
2014
|
-
position: number;
|
|
2015
2316
|
}[];
|
|
2016
2317
|
is_active: boolean;
|
|
2017
2318
|
}, {
|
|
@@ -2025,12 +2326,12 @@ export declare const GetActiveScorecardResponse: zod.ZodObject<{
|
|
|
2025
2326
|
created_at: string | null;
|
|
2026
2327
|
name: string;
|
|
2027
2328
|
category: string;
|
|
2329
|
+
item_id: string;
|
|
2330
|
+
position: number;
|
|
2028
2331
|
instruction: string | null;
|
|
2029
2332
|
auto_fail: boolean;
|
|
2030
2333
|
na_enabled: boolean;
|
|
2031
2334
|
explanation_enabled: boolean;
|
|
2032
|
-
item_id: string;
|
|
2033
|
-
position: number;
|
|
2034
2335
|
}[];
|
|
2035
2336
|
is_active: boolean;
|
|
2036
2337
|
}>;
|
|
@@ -2046,12 +2347,12 @@ export declare const GetActiveScorecardResponse: zod.ZodObject<{
|
|
|
2046
2347
|
created_at: string | null;
|
|
2047
2348
|
name: string;
|
|
2048
2349
|
category: string;
|
|
2350
|
+
item_id: string;
|
|
2351
|
+
position: number;
|
|
2049
2352
|
instruction: string | null;
|
|
2050
2353
|
auto_fail: boolean;
|
|
2051
2354
|
na_enabled: boolean;
|
|
2052
2355
|
explanation_enabled: boolean;
|
|
2053
|
-
item_id: string;
|
|
2054
|
-
position: number;
|
|
2055
2356
|
}[];
|
|
2056
2357
|
is_active: boolean;
|
|
2057
2358
|
};
|
|
@@ -2067,12 +2368,12 @@ export declare const GetActiveScorecardResponse: zod.ZodObject<{
|
|
|
2067
2368
|
created_at: string | null;
|
|
2068
2369
|
name: string;
|
|
2069
2370
|
category: string;
|
|
2371
|
+
item_id: string;
|
|
2372
|
+
position: number;
|
|
2070
2373
|
instruction: string | null;
|
|
2071
2374
|
auto_fail: boolean;
|
|
2072
2375
|
na_enabled: boolean;
|
|
2073
2376
|
explanation_enabled: boolean;
|
|
2074
|
-
item_id: string;
|
|
2075
|
-
position: number;
|
|
2076
2377
|
}[];
|
|
2077
2378
|
is_active: boolean;
|
|
2078
2379
|
};
|
|
@@ -2112,23 +2413,23 @@ export declare const GetScorecardResponse: zod.ZodObject<{
|
|
|
2112
2413
|
created_at: string | null;
|
|
2113
2414
|
name: string;
|
|
2114
2415
|
category: string;
|
|
2416
|
+
item_id: string;
|
|
2417
|
+
position: number;
|
|
2115
2418
|
instruction: string | null;
|
|
2116
2419
|
auto_fail: boolean;
|
|
2117
2420
|
na_enabled: boolean;
|
|
2118
2421
|
explanation_enabled: boolean;
|
|
2119
|
-
item_id: string;
|
|
2120
|
-
position: number;
|
|
2121
2422
|
}, {
|
|
2122
2423
|
type: "boolean" | "numeric";
|
|
2123
2424
|
created_at: string | null;
|
|
2124
2425
|
name: string;
|
|
2125
2426
|
category: string;
|
|
2427
|
+
item_id: string;
|
|
2428
|
+
position: number;
|
|
2126
2429
|
instruction: string | null;
|
|
2127
2430
|
auto_fail: boolean;
|
|
2128
2431
|
na_enabled: boolean;
|
|
2129
2432
|
explanation_enabled: boolean;
|
|
2130
|
-
item_id: string;
|
|
2131
|
-
position: number;
|
|
2132
2433
|
}>, "many">;
|
|
2133
2434
|
}, "strip", zod.ZodTypeAny, {
|
|
2134
2435
|
id: string;
|
|
@@ -2141,12 +2442,12 @@ export declare const GetScorecardResponse: zod.ZodObject<{
|
|
|
2141
2442
|
created_at: string | null;
|
|
2142
2443
|
name: string;
|
|
2143
2444
|
category: string;
|
|
2445
|
+
item_id: string;
|
|
2446
|
+
position: number;
|
|
2144
2447
|
instruction: string | null;
|
|
2145
2448
|
auto_fail: boolean;
|
|
2146
2449
|
na_enabled: boolean;
|
|
2147
2450
|
explanation_enabled: boolean;
|
|
2148
|
-
item_id: string;
|
|
2149
|
-
position: number;
|
|
2150
2451
|
}[];
|
|
2151
2452
|
is_active: boolean;
|
|
2152
2453
|
}, {
|
|
@@ -2160,12 +2461,12 @@ export declare const GetScorecardResponse: zod.ZodObject<{
|
|
|
2160
2461
|
created_at: string | null;
|
|
2161
2462
|
name: string;
|
|
2162
2463
|
category: string;
|
|
2464
|
+
item_id: string;
|
|
2465
|
+
position: number;
|
|
2163
2466
|
instruction: string | null;
|
|
2164
2467
|
auto_fail: boolean;
|
|
2165
2468
|
na_enabled: boolean;
|
|
2166
2469
|
explanation_enabled: boolean;
|
|
2167
|
-
item_id: string;
|
|
2168
|
-
position: number;
|
|
2169
2470
|
}[];
|
|
2170
2471
|
is_active: boolean;
|
|
2171
2472
|
}>;
|
|
@@ -2181,12 +2482,12 @@ export declare const GetScorecardResponse: zod.ZodObject<{
|
|
|
2181
2482
|
created_at: string | null;
|
|
2182
2483
|
name: string;
|
|
2183
2484
|
category: string;
|
|
2485
|
+
item_id: string;
|
|
2486
|
+
position: number;
|
|
2184
2487
|
instruction: string | null;
|
|
2185
2488
|
auto_fail: boolean;
|
|
2186
2489
|
na_enabled: boolean;
|
|
2187
2490
|
explanation_enabled: boolean;
|
|
2188
|
-
item_id: string;
|
|
2189
|
-
position: number;
|
|
2190
2491
|
}[];
|
|
2191
2492
|
is_active: boolean;
|
|
2192
2493
|
};
|
|
@@ -2202,12 +2503,12 @@ export declare const GetScorecardResponse: zod.ZodObject<{
|
|
|
2202
2503
|
created_at: string | null;
|
|
2203
2504
|
name: string;
|
|
2204
2505
|
category: string;
|
|
2506
|
+
item_id: string;
|
|
2507
|
+
position: number;
|
|
2205
2508
|
instruction: string | null;
|
|
2206
2509
|
auto_fail: boolean;
|
|
2207
2510
|
na_enabled: boolean;
|
|
2208
2511
|
explanation_enabled: boolean;
|
|
2209
|
-
item_id: string;
|
|
2210
|
-
position: number;
|
|
2211
2512
|
}[];
|
|
2212
2513
|
is_active: boolean;
|
|
2213
2514
|
};
|
|
@@ -2305,9 +2606,8 @@ export declare const GetCallScoringResponse: zod.ZodObject<{
|
|
|
2305
2606
|
id: string;
|
|
2306
2607
|
created_at: string | null;
|
|
2307
2608
|
call_id: string;
|
|
2308
|
-
item_id: string;
|
|
2309
|
-
position: number;
|
|
2310
2609
|
scorecard_id: string;
|
|
2610
|
+
item_id: string;
|
|
2311
2611
|
score: string | null;
|
|
2312
2612
|
explanation: string | null;
|
|
2313
2613
|
item_name: string;
|
|
@@ -2316,13 +2616,13 @@ export declare const GetCallScoringResponse: zod.ZodObject<{
|
|
|
2316
2616
|
item_auto_fail: boolean;
|
|
2317
2617
|
item_na_enabled: boolean;
|
|
2318
2618
|
item_explanation_enabled: boolean;
|
|
2619
|
+
position: number;
|
|
2319
2620
|
}, {
|
|
2320
2621
|
id: string;
|
|
2321
2622
|
created_at: string | null;
|
|
2322
2623
|
call_id: string;
|
|
2323
|
-
item_id: string;
|
|
2324
|
-
position: number;
|
|
2325
2624
|
scorecard_id: string;
|
|
2625
|
+
item_id: string;
|
|
2326
2626
|
score: string | null;
|
|
2327
2627
|
explanation: string | null;
|
|
2328
2628
|
item_name: string;
|
|
@@ -2331,15 +2631,15 @@ export declare const GetCallScoringResponse: zod.ZodObject<{
|
|
|
2331
2631
|
item_auto_fail: boolean;
|
|
2332
2632
|
item_na_enabled: boolean;
|
|
2333
2633
|
item_explanation_enabled: boolean;
|
|
2634
|
+
position: number;
|
|
2334
2635
|
}>, "many">;
|
|
2335
2636
|
}, "strip", zod.ZodTypeAny, {
|
|
2336
2637
|
results: {
|
|
2337
2638
|
id: string;
|
|
2338
2639
|
created_at: string | null;
|
|
2339
2640
|
call_id: string;
|
|
2340
|
-
item_id: string;
|
|
2341
|
-
position: number;
|
|
2342
2641
|
scorecard_id: string;
|
|
2642
|
+
item_id: string;
|
|
2343
2643
|
score: string | null;
|
|
2344
2644
|
explanation: string | null;
|
|
2345
2645
|
item_name: string;
|
|
@@ -2348,6 +2648,7 @@ export declare const GetCallScoringResponse: zod.ZodObject<{
|
|
|
2348
2648
|
item_auto_fail: boolean;
|
|
2349
2649
|
item_na_enabled: boolean;
|
|
2350
2650
|
item_explanation_enabled: boolean;
|
|
2651
|
+
position: number;
|
|
2351
2652
|
}[];
|
|
2352
2653
|
autoFailed: boolean;
|
|
2353
2654
|
}, {
|
|
@@ -2355,9 +2656,8 @@ export declare const GetCallScoringResponse: zod.ZodObject<{
|
|
|
2355
2656
|
id: string;
|
|
2356
2657
|
created_at: string | null;
|
|
2357
2658
|
call_id: string;
|
|
2358
|
-
item_id: string;
|
|
2359
|
-
position: number;
|
|
2360
2659
|
scorecard_id: string;
|
|
2660
|
+
item_id: string;
|
|
2361
2661
|
score: string | null;
|
|
2362
2662
|
explanation: string | null;
|
|
2363
2663
|
item_name: string;
|
|
@@ -2366,6 +2666,7 @@ export declare const GetCallScoringResponse: zod.ZodObject<{
|
|
|
2366
2666
|
item_auto_fail: boolean;
|
|
2367
2667
|
item_na_enabled: boolean;
|
|
2368
2668
|
item_explanation_enabled: boolean;
|
|
2669
|
+
position: number;
|
|
2369
2670
|
}[];
|
|
2370
2671
|
autoFailed: boolean;
|
|
2371
2672
|
}>;
|
|
@@ -2375,9 +2676,8 @@ export declare const GetCallScoringResponse: zod.ZodObject<{
|
|
|
2375
2676
|
id: string;
|
|
2376
2677
|
created_at: string | null;
|
|
2377
2678
|
call_id: string;
|
|
2378
|
-
item_id: string;
|
|
2379
|
-
position: number;
|
|
2380
2679
|
scorecard_id: string;
|
|
2680
|
+
item_id: string;
|
|
2381
2681
|
score: string | null;
|
|
2382
2682
|
explanation: string | null;
|
|
2383
2683
|
item_name: string;
|
|
@@ -2386,6 +2686,7 @@ export declare const GetCallScoringResponse: zod.ZodObject<{
|
|
|
2386
2686
|
item_auto_fail: boolean;
|
|
2387
2687
|
item_na_enabled: boolean;
|
|
2388
2688
|
item_explanation_enabled: boolean;
|
|
2689
|
+
position: number;
|
|
2389
2690
|
}[];
|
|
2390
2691
|
autoFailed: boolean;
|
|
2391
2692
|
};
|
|
@@ -2395,9 +2696,8 @@ export declare const GetCallScoringResponse: zod.ZodObject<{
|
|
|
2395
2696
|
id: string;
|
|
2396
2697
|
created_at: string | null;
|
|
2397
2698
|
call_id: string;
|
|
2398
|
-
item_id: string;
|
|
2399
|
-
position: number;
|
|
2400
2699
|
scorecard_id: string;
|
|
2700
|
+
item_id: string;
|
|
2401
2701
|
score: string | null;
|
|
2402
2702
|
explanation: string | null;
|
|
2403
2703
|
item_name: string;
|
|
@@ -2406,6 +2706,7 @@ export declare const GetCallScoringResponse: zod.ZodObject<{
|
|
|
2406
2706
|
item_auto_fail: boolean;
|
|
2407
2707
|
item_na_enabled: boolean;
|
|
2408
2708
|
item_explanation_enabled: boolean;
|
|
2709
|
+
position: number;
|
|
2409
2710
|
}[];
|
|
2410
2711
|
autoFailed: boolean;
|
|
2411
2712
|
};
|
|
@@ -2450,9 +2751,8 @@ export declare const RerunCallScoringResponse: zod.ZodObject<{
|
|
|
2450
2751
|
id: string;
|
|
2451
2752
|
created_at: string | null;
|
|
2452
2753
|
call_id: string;
|
|
2453
|
-
item_id: string;
|
|
2454
|
-
position: number;
|
|
2455
2754
|
scorecard_id: string;
|
|
2755
|
+
item_id: string;
|
|
2456
2756
|
score: string | null;
|
|
2457
2757
|
explanation: string | null;
|
|
2458
2758
|
item_name: string;
|
|
@@ -2461,13 +2761,13 @@ export declare const RerunCallScoringResponse: zod.ZodObject<{
|
|
|
2461
2761
|
item_auto_fail: boolean;
|
|
2462
2762
|
item_na_enabled: boolean;
|
|
2463
2763
|
item_explanation_enabled: boolean;
|
|
2764
|
+
position: number;
|
|
2464
2765
|
}, {
|
|
2465
2766
|
id: string;
|
|
2466
2767
|
created_at: string | null;
|
|
2467
2768
|
call_id: string;
|
|
2468
|
-
item_id: string;
|
|
2469
|
-
position: number;
|
|
2470
2769
|
scorecard_id: string;
|
|
2770
|
+
item_id: string;
|
|
2471
2771
|
score: string | null;
|
|
2472
2772
|
explanation: string | null;
|
|
2473
2773
|
item_name: string;
|
|
@@ -2476,15 +2776,15 @@ export declare const RerunCallScoringResponse: zod.ZodObject<{
|
|
|
2476
2776
|
item_auto_fail: boolean;
|
|
2477
2777
|
item_na_enabled: boolean;
|
|
2478
2778
|
item_explanation_enabled: boolean;
|
|
2779
|
+
position: number;
|
|
2479
2780
|
}>, "many">;
|
|
2480
2781
|
}, "strip", zod.ZodTypeAny, {
|
|
2481
2782
|
results: {
|
|
2482
2783
|
id: string;
|
|
2483
2784
|
created_at: string | null;
|
|
2484
2785
|
call_id: string;
|
|
2485
|
-
item_id: string;
|
|
2486
|
-
position: number;
|
|
2487
2786
|
scorecard_id: string;
|
|
2787
|
+
item_id: string;
|
|
2488
2788
|
score: string | null;
|
|
2489
2789
|
explanation: string | null;
|
|
2490
2790
|
item_name: string;
|
|
@@ -2493,6 +2793,7 @@ export declare const RerunCallScoringResponse: zod.ZodObject<{
|
|
|
2493
2793
|
item_auto_fail: boolean;
|
|
2494
2794
|
item_na_enabled: boolean;
|
|
2495
2795
|
item_explanation_enabled: boolean;
|
|
2796
|
+
position: number;
|
|
2496
2797
|
}[];
|
|
2497
2798
|
autoFailed: boolean;
|
|
2498
2799
|
}, {
|
|
@@ -2500,9 +2801,8 @@ export declare const RerunCallScoringResponse: zod.ZodObject<{
|
|
|
2500
2801
|
id: string;
|
|
2501
2802
|
created_at: string | null;
|
|
2502
2803
|
call_id: string;
|
|
2503
|
-
item_id: string;
|
|
2504
|
-
position: number;
|
|
2505
2804
|
scorecard_id: string;
|
|
2805
|
+
item_id: string;
|
|
2506
2806
|
score: string | null;
|
|
2507
2807
|
explanation: string | null;
|
|
2508
2808
|
item_name: string;
|
|
@@ -2511,6 +2811,7 @@ export declare const RerunCallScoringResponse: zod.ZodObject<{
|
|
|
2511
2811
|
item_auto_fail: boolean;
|
|
2512
2812
|
item_na_enabled: boolean;
|
|
2513
2813
|
item_explanation_enabled: boolean;
|
|
2814
|
+
position: number;
|
|
2514
2815
|
}[];
|
|
2515
2816
|
autoFailed: boolean;
|
|
2516
2817
|
}>;
|
|
@@ -2520,9 +2821,8 @@ export declare const RerunCallScoringResponse: zod.ZodObject<{
|
|
|
2520
2821
|
id: string;
|
|
2521
2822
|
created_at: string | null;
|
|
2522
2823
|
call_id: string;
|
|
2523
|
-
item_id: string;
|
|
2524
|
-
position: number;
|
|
2525
2824
|
scorecard_id: string;
|
|
2825
|
+
item_id: string;
|
|
2526
2826
|
score: string | null;
|
|
2527
2827
|
explanation: string | null;
|
|
2528
2828
|
item_name: string;
|
|
@@ -2531,6 +2831,7 @@ export declare const RerunCallScoringResponse: zod.ZodObject<{
|
|
|
2531
2831
|
item_auto_fail: boolean;
|
|
2532
2832
|
item_na_enabled: boolean;
|
|
2533
2833
|
item_explanation_enabled: boolean;
|
|
2834
|
+
position: number;
|
|
2534
2835
|
}[];
|
|
2535
2836
|
autoFailed: boolean;
|
|
2536
2837
|
};
|
|
@@ -2540,9 +2841,8 @@ export declare const RerunCallScoringResponse: zod.ZodObject<{
|
|
|
2540
2841
|
id: string;
|
|
2541
2842
|
created_at: string | null;
|
|
2542
2843
|
call_id: string;
|
|
2543
|
-
item_id: string;
|
|
2544
|
-
position: number;
|
|
2545
2844
|
scorecard_id: string;
|
|
2845
|
+
item_id: string;
|
|
2546
2846
|
score: string | null;
|
|
2547
2847
|
explanation: string | null;
|
|
2548
2848
|
item_name: string;
|
|
@@ -2551,6 +2851,7 @@ export declare const RerunCallScoringResponse: zod.ZodObject<{
|
|
|
2551
2851
|
item_auto_fail: boolean;
|
|
2552
2852
|
item_na_enabled: boolean;
|
|
2553
2853
|
item_explanation_enabled: boolean;
|
|
2854
|
+
position: number;
|
|
2554
2855
|
}[];
|
|
2555
2856
|
autoFailed: boolean;
|
|
2556
2857
|
};
|