@absolutejs/voice 0.0.22-beta.672 → 0.0.22-beta.673
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/core/assistantHealth.d.ts +3 -40
- package/dist/core/auditDeliveryRoutes.d.ts +5 -40
- package/dist/core/auditRoutes.d.ts +3 -27
- package/dist/core/bargeInRoutes.d.ts +3 -27
- package/dist/core/browserCallProfiles.d.ts +3 -27
- package/dist/core/browserMediaRoutes.d.ts +3 -27
- package/dist/core/callDebugger.d.ts +3 -27
- package/dist/core/campaign.d.ts +166 -143
- package/dist/core/competitiveCoverage.d.ts +3 -40
- package/dist/core/dataControl.d.ts +3 -27
- package/dist/core/deliveryRuntime.d.ts +3 -40
- package/dist/core/deliverySinkRoutes.d.ts +3 -40
- package/dist/core/demoReadyRoutes.d.ts +3 -27
- package/dist/core/diagnosticsRoutes.d.ts +3 -27
- package/dist/core/evalRoutes.d.ts +3 -27
- package/dist/core/guardrails.d.ts +3 -27
- package/dist/core/handoffHealth.d.ts +5 -40
- package/dist/core/htmxDashboardRoutes.d.ts +309 -195
- package/dist/core/incidentBundle.d.ts +3 -27
- package/dist/core/incidentTimeline.d.ts +3 -40
- package/dist/core/liveLatency.d.ts +3 -40
- package/dist/core/liveOps.d.ts +154 -44
- package/dist/core/mediaPipelineRoutes.d.ts +3 -40
- package/dist/core/monitor.d.ts +5 -19
- package/dist/core/observabilityExport.d.ts +6 -54
- package/dist/core/operationalStatus.d.ts +3 -40
- package/dist/core/operationsRecord.d.ts +3 -27
- package/dist/core/opsActionAuditRoutes.d.ts +160 -51
- package/dist/core/opsConsoleRoutes.d.ts +3 -27
- package/dist/core/opsRecovery.d.ts +3 -40
- package/dist/core/opsStatusRoutes.d.ts +3 -27
- package/dist/core/opsWebhook.d.ts +158 -49
- package/dist/core/outcomeContract.d.ts +3 -40
- package/dist/core/phoneAgentProductionSmoke.d.ts +6 -40
- package/dist/core/platformCoverage.d.ts +3 -27
- package/dist/core/plugin.d.ts +12 -40
- package/dist/core/postCallAnalysis.d.ts +3 -27
- package/dist/core/productionReadiness.d.ts +3 -27
- package/dist/core/profileSwitchRecommendation.d.ts +299 -116
- package/dist/core/proofPack.d.ts +3 -27
- package/dist/core/proofTrends.d.ts +15 -135
- package/dist/core/providerCapabilities.d.ts +3 -40
- package/dist/core/providerDecisionTraces.d.ts +3 -40
- package/dist/core/providerHealth.d.ts +3 -40
- package/dist/core/providerOrchestration.d.ts +3 -40
- package/dist/core/providerSlo.d.ts +3 -27
- package/dist/core/providerStackRecommendations.d.ts +3 -27
- package/dist/core/qualityRoutes.d.ts +3 -27
- package/dist/core/realtimeChannel.d.ts +3 -40
- package/dist/core/realtimeProviderContracts.d.ts +3 -40
- package/dist/core/reconnectContract.d.ts +153 -79
- package/dist/core/resilienceRoutes.d.ts +3 -40
- package/dist/core/routeAuth.d.ts +3 -29
- package/dist/core/sessionObservability.d.ts +3 -27
- package/dist/core/sessionReplay.d.ts +10 -79
- package/dist/core/sessionSnapshot.d.ts +148 -39
- package/dist/core/simulationSuite.d.ts +3 -40
- package/dist/core/sloCalibration.d.ts +6 -54
- package/dist/core/telephonyMediaRoutes.d.ts +3 -27
- package/dist/core/telephonyOutcome.d.ts +148 -39
- package/dist/core/toolContract.d.ts +3 -40
- package/dist/core/traceDeliveryRoutes.d.ts +5 -40
- package/dist/core/traceTimeline.d.ts +3 -27
- package/dist/core/turnLatency.d.ts +3 -40
- package/dist/core/turnQuality.d.ts +3 -40
- package/dist/core/voiceMonitoring.d.ts +164 -115
- package/dist/index.js +58 -26
- package/dist/telephony/matrix.d.ts +148 -39
- package/dist/telephony/plivo.d.ts +10 -33
- package/dist/telephony/security.d.ts +3 -40
- package/dist/telephony/telnyx.d.ts +10 -33
- package/dist/testing/index.js +14 -10
- package/package.json +7 -81
package/dist/core/campaign.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { Elysia } from "elysia";
|
|
2
1
|
import type { VoiceRedisTaskLeaseCoordinator } from "./queue";
|
|
3
2
|
import type { VoiceTelephonyOutcomeDecision, VoiceTelephonyOutcomeProviderEvent, VoiceTelephonyWebhookDecision } from "./telephonyOutcome";
|
|
4
3
|
export type VoiceCampaignStatus = "canceled" | "completed" | "draft" | "paused" | "running";
|
|
@@ -433,22 +432,10 @@ export declare const renderVoiceCampaignObservabilityHTML: (report: VoiceCampaig
|
|
|
433
432
|
title?: string;
|
|
434
433
|
}) => string;
|
|
435
434
|
export declare const renderVoiceCampaignsHTML: (records: VoiceCampaignRecord[], options?: Pick<VoiceCampaignRoutesOptions, "operationsRecordHref" | "title">) => string;
|
|
436
|
-
export declare const createVoiceCampaignRoutes: (options: VoiceCampaignRoutesOptions) =>
|
|
437
|
-
decorator: {};
|
|
438
|
-
store: {};
|
|
439
|
-
derive: {};
|
|
440
|
-
resolve: {};
|
|
441
|
-
}, {
|
|
435
|
+
export declare const createVoiceCampaignRoutes: (options: VoiceCampaignRoutesOptions) => import("elysia/types").AddRoute<"", "local", import("elysia/types").DefaultSingleton, {
|
|
442
436
|
typebox: {};
|
|
443
|
-
error:
|
|
444
|
-
}, {
|
|
445
|
-
schema: {};
|
|
446
|
-
standaloneSchema: {};
|
|
447
|
-
macro: {};
|
|
448
|
-
macroFn: {};
|
|
449
|
-
parser: {};
|
|
450
|
-
response: {};
|
|
451
|
-
}, {
|
|
437
|
+
error: [];
|
|
438
|
+
}, import("elysia/types").DefaultMetadata, {
|
|
452
439
|
[x: string]: {
|
|
453
440
|
get: {
|
|
454
441
|
body: unknown;
|
|
@@ -461,6 +448,7 @@ export declare const createVoiceCampaignRoutes: (options: VoiceCampaignRoutesOpt
|
|
|
461
448
|
summary: VoiceCampaignSummary;
|
|
462
449
|
};
|
|
463
450
|
};
|
|
451
|
+
error: never;
|
|
464
452
|
};
|
|
465
453
|
};
|
|
466
454
|
} & {
|
|
@@ -474,6 +462,7 @@ export declare const createVoiceCampaignRoutes: (options: VoiceCampaignRoutesOpt
|
|
|
474
462
|
response: {
|
|
475
463
|
200: VoiceCampaignObservabilityReport;
|
|
476
464
|
};
|
|
465
|
+
error: never;
|
|
477
466
|
};
|
|
478
467
|
};
|
|
479
468
|
};
|
|
@@ -488,6 +477,7 @@ export declare const createVoiceCampaignRoutes: (options: VoiceCampaignRoutesOpt
|
|
|
488
477
|
response: {
|
|
489
478
|
200: VoiceCampaignReadinessProofReport;
|
|
490
479
|
};
|
|
480
|
+
error: never;
|
|
491
481
|
};
|
|
492
482
|
};
|
|
493
483
|
};
|
|
@@ -501,6 +491,7 @@ export declare const createVoiceCampaignRoutes: (options: VoiceCampaignRoutesOpt
|
|
|
501
491
|
response: {
|
|
502
492
|
200: VoiceCampaignRecord;
|
|
503
493
|
};
|
|
494
|
+
error: never;
|
|
504
495
|
};
|
|
505
496
|
};
|
|
506
497
|
} & {
|
|
@@ -513,17 +504,8 @@ export declare const createVoiceCampaignRoutes: (options: VoiceCampaignRoutesOpt
|
|
|
513
504
|
} & {};
|
|
514
505
|
query: unknown;
|
|
515
506
|
headers: unknown;
|
|
516
|
-
response: {
|
|
517
|
-
|
|
518
|
-
type: "validation";
|
|
519
|
-
on: string;
|
|
520
|
-
summary?: string;
|
|
521
|
-
message?: string;
|
|
522
|
-
found?: unknown;
|
|
523
|
-
property?: string;
|
|
524
|
-
expected?: string;
|
|
525
|
-
};
|
|
526
|
-
};
|
|
507
|
+
response: {};
|
|
508
|
+
error: never;
|
|
527
509
|
};
|
|
528
510
|
};
|
|
529
511
|
};
|
|
@@ -541,16 +523,8 @@ export declare const createVoiceCampaignRoutes: (options: VoiceCampaignRoutesOpt
|
|
|
541
523
|
200: {
|
|
542
524
|
ok: boolean;
|
|
543
525
|
};
|
|
544
|
-
422: {
|
|
545
|
-
type: "validation";
|
|
546
|
-
on: string;
|
|
547
|
-
summary?: string;
|
|
548
|
-
message?: string;
|
|
549
|
-
found?: unknown;
|
|
550
|
-
property?: string;
|
|
551
|
-
expected?: string;
|
|
552
|
-
};
|
|
553
526
|
};
|
|
527
|
+
error: never;
|
|
554
528
|
};
|
|
555
529
|
};
|
|
556
530
|
};
|
|
@@ -567,16 +541,8 @@ export declare const createVoiceCampaignRoutes: (options: VoiceCampaignRoutesOpt
|
|
|
567
541
|
headers: unknown;
|
|
568
542
|
response: {
|
|
569
543
|
200: VoiceCampaignRecord;
|
|
570
|
-
422: {
|
|
571
|
-
type: "validation";
|
|
572
|
-
on: string;
|
|
573
|
-
summary?: string;
|
|
574
|
-
message?: string;
|
|
575
|
-
found?: unknown;
|
|
576
|
-
property?: string;
|
|
577
|
-
expected?: string;
|
|
578
|
-
};
|
|
579
544
|
};
|
|
545
|
+
error: never;
|
|
580
546
|
};
|
|
581
547
|
};
|
|
582
548
|
};
|
|
@@ -597,16 +563,8 @@ export declare const createVoiceCampaignRoutes: (options: VoiceCampaignRoutesOpt
|
|
|
597
563
|
200: VoiceCampaignRecord & {
|
|
598
564
|
import: VoiceCampaignRecipientImportResult;
|
|
599
565
|
};
|
|
600
|
-
422: {
|
|
601
|
-
type: "validation";
|
|
602
|
-
on: string;
|
|
603
|
-
summary?: string;
|
|
604
|
-
message?: string;
|
|
605
|
-
found?: unknown;
|
|
606
|
-
property?: string;
|
|
607
|
-
expected?: string;
|
|
608
|
-
};
|
|
609
566
|
};
|
|
567
|
+
error: never;
|
|
610
568
|
};
|
|
611
569
|
};
|
|
612
570
|
};
|
|
@@ -625,16 +583,8 @@ export declare const createVoiceCampaignRoutes: (options: VoiceCampaignRoutesOpt
|
|
|
625
583
|
headers: unknown;
|
|
626
584
|
response: {
|
|
627
585
|
200: VoiceCampaignRecord;
|
|
628
|
-
422: {
|
|
629
|
-
type: "validation";
|
|
630
|
-
on: string;
|
|
631
|
-
summary?: string;
|
|
632
|
-
message?: string;
|
|
633
|
-
found?: unknown;
|
|
634
|
-
property?: string;
|
|
635
|
-
expected?: string;
|
|
636
|
-
};
|
|
637
586
|
};
|
|
587
|
+
error: never;
|
|
638
588
|
};
|
|
639
589
|
};
|
|
640
590
|
};
|
|
@@ -652,16 +602,8 @@ export declare const createVoiceCampaignRoutes: (options: VoiceCampaignRoutesOpt
|
|
|
652
602
|
headers: unknown;
|
|
653
603
|
response: {
|
|
654
604
|
200: VoiceCampaignRecord;
|
|
655
|
-
422: {
|
|
656
|
-
type: "validation";
|
|
657
|
-
on: string;
|
|
658
|
-
summary?: string;
|
|
659
|
-
message?: string;
|
|
660
|
-
found?: unknown;
|
|
661
|
-
property?: string;
|
|
662
|
-
expected?: string;
|
|
663
|
-
};
|
|
664
605
|
};
|
|
606
|
+
error: never;
|
|
665
607
|
};
|
|
666
608
|
};
|
|
667
609
|
};
|
|
@@ -679,16 +621,8 @@ export declare const createVoiceCampaignRoutes: (options: VoiceCampaignRoutesOpt
|
|
|
679
621
|
headers: unknown;
|
|
680
622
|
response: {
|
|
681
623
|
200: VoiceCampaignRecord;
|
|
682
|
-
422: {
|
|
683
|
-
type: "validation";
|
|
684
|
-
on: string;
|
|
685
|
-
summary?: string;
|
|
686
|
-
message?: string;
|
|
687
|
-
found?: unknown;
|
|
688
|
-
property?: string;
|
|
689
|
-
expected?: string;
|
|
690
|
-
};
|
|
691
624
|
};
|
|
625
|
+
error: never;
|
|
692
626
|
};
|
|
693
627
|
};
|
|
694
628
|
};
|
|
@@ -706,16 +640,8 @@ export declare const createVoiceCampaignRoutes: (options: VoiceCampaignRoutesOpt
|
|
|
706
640
|
headers: unknown;
|
|
707
641
|
response: {
|
|
708
642
|
200: VoiceCampaignRecord;
|
|
709
|
-
422: {
|
|
710
|
-
type: "validation";
|
|
711
|
-
on: string;
|
|
712
|
-
summary?: string;
|
|
713
|
-
message?: string;
|
|
714
|
-
found?: unknown;
|
|
715
|
-
property?: string;
|
|
716
|
-
expected?: string;
|
|
717
|
-
};
|
|
718
643
|
};
|
|
644
|
+
error: never;
|
|
719
645
|
};
|
|
720
646
|
};
|
|
721
647
|
};
|
|
@@ -733,63 +659,160 @@ export declare const createVoiceCampaignRoutes: (options: VoiceCampaignRoutesOpt
|
|
|
733
659
|
headers: unknown;
|
|
734
660
|
response: {
|
|
735
661
|
200: VoiceCampaignTickResult;
|
|
736
|
-
422: {
|
|
737
|
-
type: "validation";
|
|
738
|
-
on: string;
|
|
739
|
-
summary?: string;
|
|
740
|
-
message?: string;
|
|
741
|
-
found?: unknown;
|
|
742
|
-
property?: string;
|
|
743
|
-
expected?: string;
|
|
744
|
-
};
|
|
745
662
|
};
|
|
663
|
+
error: never;
|
|
746
664
|
};
|
|
747
665
|
};
|
|
748
666
|
};
|
|
749
667
|
};
|
|
750
|
-
}
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
200: VoiceCampaignRecord;
|
|
766
|
-
422: {
|
|
767
|
-
type: "validation";
|
|
768
|
-
on: string;
|
|
769
|
-
summary?: string;
|
|
770
|
-
message?: string;
|
|
771
|
-
found?: unknown;
|
|
772
|
-
property?: string;
|
|
773
|
-
expected?: string;
|
|
774
|
-
};
|
|
775
|
-
};
|
|
776
|
-
};
|
|
777
|
-
};
|
|
778
|
-
};
|
|
779
|
-
};
|
|
780
|
-
};
|
|
668
|
+
}, import("elysia/types").DefaultEphemeral, import("elysia/types").DefaultEphemeral, "post", `${string}/:campaignId/attempts/:attemptId/result`, import("elysia/types").IntersectIfObjectSchema<import("elysia").UnwrapRoute<{}, {}, `/${string}/:campaignId/attempts/:attemptId/result`>, import("elysia/types").MergeScopedSchemas<{}, {}, {}>>, {}, ({ params, request }: {
|
|
669
|
+
body: unknown;
|
|
670
|
+
query: Record<string, string | undefined>;
|
|
671
|
+
params: {
|
|
672
|
+
campaignId: string;
|
|
673
|
+
attemptId: string;
|
|
674
|
+
};
|
|
675
|
+
headers: Record<string, string | undefined>;
|
|
676
|
+
cookie: Record<string, import("elysia").Cookie<unknown>>;
|
|
677
|
+
server: import("elysia").Server | null;
|
|
678
|
+
redirect: import("elysia").redirect;
|
|
679
|
+
set: {
|
|
680
|
+
headers: import("elysia").HTTPHeaders;
|
|
681
|
+
status?: number | keyof import("elysia").StatusMap;
|
|
682
|
+
cookie?: Record<string, import("elysia").BaseCookie>;
|
|
781
683
|
};
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
684
|
+
status: <const Code extends number | keyof import("elysia").StatusMap, const T = Code extends 100 | 404 | 400 | 408 | 401 | 503 | 200 | 429 | 500 | 300 | 420 | 413 | 415 | 403 | 101 | 102 | 103 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 301 | 302 | 303 | 304 | 307 | 308 | 402 | 405 | 406 | 407 | 409 | 410 | 411 | 412 | 414 | 416 | 417 | 418 | 421 | 422 | 423 | 424 | 425 | 426 | 428 | 431 | 451 | 501 | 502 | 504 | 505 | 506 | 507 | 508 | 510 | 511 ? {
|
|
685
|
+
readonly 100: "Continue";
|
|
686
|
+
readonly 101: "Switching Protocols";
|
|
687
|
+
readonly 102: "Processing";
|
|
688
|
+
readonly 103: "Early Hints";
|
|
689
|
+
readonly 200: "OK";
|
|
690
|
+
readonly 201: "Created";
|
|
691
|
+
readonly 202: "Accepted";
|
|
692
|
+
readonly 203: "Non-Authoritative Information";
|
|
693
|
+
readonly 204: "No Content";
|
|
694
|
+
readonly 205: "Reset Content";
|
|
695
|
+
readonly 206: "Partial Content";
|
|
696
|
+
readonly 207: "Multi-Status";
|
|
697
|
+
readonly 208: "Already Reported";
|
|
698
|
+
readonly 300: "Multiple Choices";
|
|
699
|
+
readonly 301: "Moved Permanently";
|
|
700
|
+
readonly 302: "Found";
|
|
701
|
+
readonly 303: "See Other";
|
|
702
|
+
readonly 304: "Not Modified";
|
|
703
|
+
readonly 307: "Temporary Redirect";
|
|
704
|
+
readonly 308: "Permanent Redirect";
|
|
705
|
+
readonly 400: "Bad Request";
|
|
706
|
+
readonly 401: "Unauthorized";
|
|
707
|
+
readonly 402: "Payment Required";
|
|
708
|
+
readonly 403: "Forbidden";
|
|
709
|
+
readonly 404: "Not Found";
|
|
710
|
+
readonly 405: "Method Not Allowed";
|
|
711
|
+
readonly 406: "Not Acceptable";
|
|
712
|
+
readonly 407: "Proxy Authentication Required";
|
|
713
|
+
readonly 408: "Request Timeout";
|
|
714
|
+
readonly 409: "Conflict";
|
|
715
|
+
readonly 410: "Gone";
|
|
716
|
+
readonly 411: "Length Required";
|
|
717
|
+
readonly 412: "Precondition Failed";
|
|
718
|
+
readonly 413: "Payload Too Large";
|
|
719
|
+
readonly 414: "URI Too Long";
|
|
720
|
+
readonly 415: "Unsupported Media Type";
|
|
721
|
+
readonly 416: "Range Not Satisfiable";
|
|
722
|
+
readonly 417: "Expectation Failed";
|
|
723
|
+
readonly 418: "I'm a teapot";
|
|
724
|
+
readonly 420: "Enhance Your Calm";
|
|
725
|
+
readonly 421: "Misdirected Request";
|
|
726
|
+
readonly 422: "Unprocessable Content";
|
|
727
|
+
readonly 423: "Locked";
|
|
728
|
+
readonly 424: "Failed Dependency";
|
|
729
|
+
readonly 425: "Too Early";
|
|
730
|
+
readonly 426: "Upgrade Required";
|
|
731
|
+
readonly 428: "Precondition Required";
|
|
732
|
+
readonly 429: "Too Many Requests";
|
|
733
|
+
readonly 431: "Request Header Fields Too Large";
|
|
734
|
+
readonly 451: "Unavailable For Legal Reasons";
|
|
735
|
+
readonly 500: "Internal Server Error";
|
|
736
|
+
readonly 501: "Not Implemented";
|
|
737
|
+
readonly 502: "Bad Gateway";
|
|
738
|
+
readonly 503: "Service Unavailable";
|
|
739
|
+
readonly 504: "Gateway Timeout";
|
|
740
|
+
readonly 505: "HTTP Version Not Supported";
|
|
741
|
+
readonly 506: "Variant Also Negotiates";
|
|
742
|
+
readonly 507: "Insufficient Storage";
|
|
743
|
+
readonly 508: "Loop Detected";
|
|
744
|
+
readonly 510: "Not Extended";
|
|
745
|
+
readonly 511: "Network Authentication Required";
|
|
746
|
+
}[Code] : Code>(code: Code, response?: T) => import("elysia").ElysiaStatus<Code, T, Code extends "Continue" | "Switching Protocols" | "Processing" | "Early Hints" | "OK" | "Created" | "Accepted" | "Non-Authoritative Information" | "No Content" | "Reset Content" | "Partial Content" | "Multi-Status" | "Already Reported" | "Multiple Choices" | "Moved Permanently" | "Found" | "See Other" | "Not Modified" | "Temporary Redirect" | "Permanent Redirect" | "Bad Request" | "Unauthorized" | "Payment Required" | "Forbidden" | "Not Found" | "Method Not Allowed" | "Not Acceptable" | "Proxy Authentication Required" | "Request Timeout" | "Conflict" | "Gone" | "Length Required" | "Precondition Failed" | "Payload Too Large" | "URI Too Long" | "Unsupported Media Type" | "Range Not Satisfiable" | "Expectation Failed" | "I'm a teapot" | "Enhance Your Calm" | "Misdirected Request" | "Unprocessable Content" | "Locked" | "Failed Dependency" | "Too Early" | "Upgrade Required" | "Precondition Required" | "Too Many Requests" | "Request Header Fields Too Large" | "Unavailable For Legal Reasons" | "Internal Server Error" | "Not Implemented" | "Bad Gateway" | "Service Unavailable" | "Gateway Timeout" | "HTTP Version Not Supported" | "Variant Also Negotiates" | "Insufficient Storage" | "Loop Detected" | "Not Extended" | "Network Authentication Required" ? {
|
|
747
|
+
readonly Continue: 100;
|
|
748
|
+
readonly "Switching Protocols": 101;
|
|
749
|
+
readonly Processing: 102;
|
|
750
|
+
readonly "Early Hints": 103;
|
|
751
|
+
readonly OK: 200;
|
|
752
|
+
readonly Created: 201;
|
|
753
|
+
readonly Accepted: 202;
|
|
754
|
+
readonly "Non-Authoritative Information": 203;
|
|
755
|
+
readonly "No Content": 204;
|
|
756
|
+
readonly "Reset Content": 205;
|
|
757
|
+
readonly "Partial Content": 206;
|
|
758
|
+
readonly "Multi-Status": 207;
|
|
759
|
+
readonly "Already Reported": 208;
|
|
760
|
+
readonly "Multiple Choices": 300;
|
|
761
|
+
readonly "Moved Permanently": 301;
|
|
762
|
+
readonly Found: 302;
|
|
763
|
+
readonly "See Other": 303;
|
|
764
|
+
readonly "Not Modified": 304;
|
|
765
|
+
readonly "Temporary Redirect": 307;
|
|
766
|
+
readonly "Permanent Redirect": 308;
|
|
767
|
+
readonly "Bad Request": 400;
|
|
768
|
+
readonly Unauthorized: 401;
|
|
769
|
+
readonly "Payment Required": 402;
|
|
770
|
+
readonly Forbidden: 403;
|
|
771
|
+
readonly "Not Found": 404;
|
|
772
|
+
readonly "Method Not Allowed": 405;
|
|
773
|
+
readonly "Not Acceptable": 406;
|
|
774
|
+
readonly "Proxy Authentication Required": 407;
|
|
775
|
+
readonly "Request Timeout": 408;
|
|
776
|
+
readonly Conflict: 409;
|
|
777
|
+
readonly Gone: 410;
|
|
778
|
+
readonly "Length Required": 411;
|
|
779
|
+
readonly "Precondition Failed": 412;
|
|
780
|
+
readonly "Payload Too Large": 413;
|
|
781
|
+
readonly "URI Too Long": 414;
|
|
782
|
+
readonly "Unsupported Media Type": 415;
|
|
783
|
+
readonly "Range Not Satisfiable": 416;
|
|
784
|
+
readonly "Expectation Failed": 417;
|
|
785
|
+
readonly "I'm a teapot": 418;
|
|
786
|
+
readonly "Enhance Your Calm": 420;
|
|
787
|
+
readonly "Misdirected Request": 421;
|
|
788
|
+
readonly "Unprocessable Content": 422;
|
|
789
|
+
readonly Locked: 423;
|
|
790
|
+
readonly "Failed Dependency": 424;
|
|
791
|
+
readonly "Too Early": 425;
|
|
792
|
+
readonly "Upgrade Required": 426;
|
|
793
|
+
readonly "Precondition Required": 428;
|
|
794
|
+
readonly "Too Many Requests": 429;
|
|
795
|
+
readonly "Request Header Fields Too Large": 431;
|
|
796
|
+
readonly "Unavailable For Legal Reasons": 451;
|
|
797
|
+
readonly "Internal Server Error": 500;
|
|
798
|
+
readonly "Not Implemented": 501;
|
|
799
|
+
readonly "Bad Gateway": 502;
|
|
800
|
+
readonly "Service Unavailable": 503;
|
|
801
|
+
readonly "Gateway Timeout": 504;
|
|
802
|
+
readonly "HTTP Version Not Supported": 505;
|
|
803
|
+
readonly "Variant Also Negotiates": 506;
|
|
804
|
+
readonly "Insufficient Storage": 507;
|
|
805
|
+
readonly "Loop Detected": 508;
|
|
806
|
+
readonly "Not Extended": 510;
|
|
807
|
+
readonly "Network Authentication Required": 511;
|
|
808
|
+
}[Code] : Code>;
|
|
809
|
+
defer: (fn: import("elysia/types").AfterResponseHandler<NoInfer<import("elysia/types").IntersectIfObjectSchema<import("elysia").UnwrapRoute<{}, {}, `/${string}/:campaignId/attempts/:attemptId/result`>, import("elysia/types").MergeScopedSchemas<{}, {}, {}>>>, NoInfer<import("elysia/types").DefaultSingleton & {
|
|
810
|
+
derive: {};
|
|
811
|
+
}>>) => import("elysia/types").MaybePromise<void>;
|
|
812
|
+
readonly path: string;
|
|
813
|
+
route?: string | undefined;
|
|
814
|
+
rid?: string | undefined;
|
|
815
|
+
request: Request;
|
|
816
|
+
store: {};
|
|
817
|
+
}) => Promise<VoiceCampaignRecord>>;
|
|
795
818
|
export {};
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { Elysia } from "elysia";
|
|
2
1
|
export type VoiceCompetitiveCoverageStatus = "fail" | "pass" | "warn";
|
|
3
2
|
export type VoiceCompetitiveCoverageLevel = "covered" | "intentional-gap" | "missing" | "partial";
|
|
4
3
|
export type VoiceCompetitiveDepthLevel = "advantage" | "covered" | "intentional-gap" | "lag" | "parity";
|
|
@@ -99,43 +98,7 @@ export declare const buildVoiceCompetitiveCoverageReport: (input: VoiceCompetiti
|
|
|
99
98
|
export declare const evaluateVoiceCompetitiveCoverage: (report: VoiceCompetitiveCoverageReport, input?: VoiceCompetitiveCoverageAssertionInput) => VoiceCompetitiveCoverageAssertionReport;
|
|
100
99
|
export declare const renderVoiceCompetitiveCoverageHTML: (report: VoiceCompetitiveCoverageReport, title?: string) => string;
|
|
101
100
|
export declare const renderVoiceCompetitiveCoverageMarkdown: (report: VoiceCompetitiveCoverageReport, title?: string) => string;
|
|
102
|
-
export declare const createVoiceCompetitiveCoverageRoutes: (options: VoiceCompetitiveCoverageRoutesOptions) =>
|
|
103
|
-
decorator: {};
|
|
104
|
-
store: {};
|
|
105
|
-
derive: {};
|
|
106
|
-
resolve: {};
|
|
107
|
-
}, {
|
|
101
|
+
export declare const createVoiceCompetitiveCoverageRoutes: (options: VoiceCompetitiveCoverageRoutesOptions) => import("elysia/types").AddRoute<"", "local", import("elysia/types").DefaultSingleton, {
|
|
108
102
|
typebox: {};
|
|
109
|
-
error:
|
|
110
|
-
}, {
|
|
111
|
-
schema: {};
|
|
112
|
-
standaloneSchema: {};
|
|
113
|
-
macro: {};
|
|
114
|
-
macroFn: {};
|
|
115
|
-
parser: {};
|
|
116
|
-
response: {};
|
|
117
|
-
}, {
|
|
118
|
-
[x: string]: {
|
|
119
|
-
get: {
|
|
120
|
-
body: unknown;
|
|
121
|
-
params: {};
|
|
122
|
-
query: unknown;
|
|
123
|
-
headers: unknown;
|
|
124
|
-
response: {
|
|
125
|
-
200: Response;
|
|
126
|
-
};
|
|
127
|
-
};
|
|
128
|
-
};
|
|
129
|
-
}, {
|
|
130
|
-
derive: {};
|
|
131
|
-
resolve: {};
|
|
132
|
-
schema: {};
|
|
133
|
-
standaloneSchema: {};
|
|
134
|
-
response: {};
|
|
135
|
-
}, {
|
|
136
|
-
derive: {};
|
|
137
|
-
resolve: {};
|
|
138
|
-
schema: {};
|
|
139
|
-
standaloneSchema: {};
|
|
140
|
-
response: {};
|
|
141
|
-
}>;
|
|
103
|
+
error: [];
|
|
104
|
+
}, import("elysia/types").DefaultMetadata, {}, import("elysia/types").DefaultEphemeral, import("elysia/types").DefaultEphemeral, "get", string, import("elysia/types").IntersectIfObjectSchema<import("elysia").UnwrapRoute<{}, {}, `/${string}`>, import("elysia/types").MergeScopedSchemas<{}, {}, {}>>, {}, () => Promise<Response>>;
|
|
@@ -150,31 +150,7 @@ export declare const renderVoiceDataControlHTML: (report: VoiceDataControlReport
|
|
|
150
150
|
export declare const renderVoiceDataControlMarkdown: (report: VoiceDataControlReport, options?: {
|
|
151
151
|
title?: string;
|
|
152
152
|
}) => string;
|
|
153
|
-
export declare const createVoiceDataControlRoutes: (options: VoiceDataControlRoutesOptions) => Elysia<"", {
|
|
154
|
-
decorator: {};
|
|
155
|
-
store: {};
|
|
156
|
-
derive: {};
|
|
157
|
-
resolve: {};
|
|
158
|
-
}, {
|
|
153
|
+
export declare const createVoiceDataControlRoutes: (options: VoiceDataControlRoutesOptions) => Elysia<"", "local", import("elysia/types").DefaultSingleton, {
|
|
159
154
|
typebox: {};
|
|
160
|
-
error:
|
|
161
|
-
}, {
|
|
162
|
-
schema: {};
|
|
163
|
-
standaloneSchema: {};
|
|
164
|
-
macro: {};
|
|
165
|
-
macroFn: {};
|
|
166
|
-
parser: {};
|
|
167
|
-
response: {};
|
|
168
|
-
}, {}, {
|
|
169
|
-
derive: {};
|
|
170
|
-
resolve: {};
|
|
171
|
-
schema: {};
|
|
172
|
-
standaloneSchema: {};
|
|
173
|
-
response: {};
|
|
174
|
-
}, {
|
|
175
|
-
derive: {};
|
|
176
|
-
resolve: {};
|
|
177
|
-
schema: {};
|
|
178
|
-
standaloneSchema: {};
|
|
179
|
-
response: {};
|
|
180
|
-
}>;
|
|
155
|
+
error: [];
|
|
156
|
+
}, import("elysia/types").DefaultMetadata, {}, import("elysia/types").DefaultEphemeral, import("elysia/types").DefaultEphemeral>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { Elysia } from "elysia";
|
|
2
1
|
import { createVoiceAuditSinkDeliveryWorker, type VoiceAuditSinkDeliveryQueueSummary, type VoiceAuditSinkDeliveryRecord, type VoiceAuditSinkDeliveryStore, type VoiceAuditSinkDeliveryWorkerOptions, type VoiceAuditSinkDeliveryWorkerResult, type VoiceS3AuditSinkClient } from "./auditSinks";
|
|
3
2
|
import { createVoiceTraceSinkDeliveryWorker, type VoiceRedisTaskLeaseCoordinator, type VoiceTraceSinkDeliveryQueueSummary, type VoiceTraceSinkDeliveryWorkerOptions, type VoiceTraceSinkDeliveryWorkerResult } from "./queue";
|
|
4
3
|
import { type StoredVoiceTraceEvent, type VoiceS3TraceSinkClient, type VoiceTraceSinkDeliveryRecord, type VoiceTraceSinkDeliveryStore } from "./trace";
|
|
@@ -111,46 +110,10 @@ export type VoiceDeliveryRuntimePresetOptions = VoiceDeliveryRuntimeFilePresetOp
|
|
|
111
110
|
export declare const buildVoiceDeliveryRuntimeReport: (runtime: VoiceDeliveryRuntime) => Promise<VoiceDeliveryRuntimeReport>;
|
|
112
111
|
export declare const createVoiceDeliveryRuntime: <TAuditDelivery extends VoiceAuditSinkDeliveryRecord = VoiceAuditSinkDeliveryRecord, TTraceDelivery extends VoiceTraceSinkDeliveryRecord = VoiceTraceSinkDeliveryRecord>(config: VoiceDeliveryRuntimeConfig<TAuditDelivery, TTraceDelivery>) => VoiceDeliveryRuntime;
|
|
113
112
|
export declare const createVoiceDeliveryRuntimePresetConfig: (options: VoiceDeliveryRuntimePresetOptions) => VoiceDeliveryRuntimeConfig;
|
|
114
|
-
export declare const createVoiceDeliveryRuntimeRoutes: (options: VoiceDeliveryRuntimeRoutesOptions) =>
|
|
115
|
-
decorator: {};
|
|
116
|
-
store: {};
|
|
117
|
-
derive: {};
|
|
118
|
-
resolve: {};
|
|
119
|
-
}, {
|
|
113
|
+
export declare const createVoiceDeliveryRuntimeRoutes: (options: VoiceDeliveryRuntimeRoutesOptions) => import("elysia/types").AddRoute<"", "local", import("elysia/types").DefaultSingleton, {
|
|
120
114
|
typebox: {};
|
|
121
|
-
error:
|
|
122
|
-
}, {
|
|
123
|
-
schema: {};
|
|
124
|
-
standaloneSchema: {};
|
|
125
|
-
macro: {};
|
|
126
|
-
macroFn: {};
|
|
127
|
-
parser: {};
|
|
128
|
-
response: {};
|
|
129
|
-
}, {
|
|
130
|
-
[x: string]: {
|
|
131
|
-
get: {
|
|
132
|
-
body: unknown;
|
|
133
|
-
params: {};
|
|
134
|
-
query: unknown;
|
|
135
|
-
headers: unknown;
|
|
136
|
-
response: {
|
|
137
|
-
200: VoiceDeliveryRuntimeReport;
|
|
138
|
-
};
|
|
139
|
-
};
|
|
140
|
-
};
|
|
141
|
-
}, {
|
|
142
|
-
derive: {};
|
|
143
|
-
resolve: {};
|
|
144
|
-
schema: {};
|
|
145
|
-
standaloneSchema: {};
|
|
146
|
-
response: {};
|
|
147
|
-
}, {
|
|
148
|
-
derive: {};
|
|
149
|
-
resolve: {};
|
|
150
|
-
schema: {};
|
|
151
|
-
standaloneSchema: {};
|
|
152
|
-
response: {};
|
|
153
|
-
}>;
|
|
115
|
+
error: [];
|
|
116
|
+
}, import("elysia/types").DefaultMetadata, {}, import("elysia/types").DefaultEphemeral, import("elysia/types").DefaultEphemeral, "get", string, import("elysia/types").IntersectIfObjectSchema<import("elysia").UnwrapRoute<{}, {}, `/${string}`>, import("elysia/types").MergeScopedSchemas<{}, {}, {}>>, {}, () => Promise<VoiceDeliveryRuntimeReport>>;
|
|
154
117
|
export declare const renderVoiceDeliveryRuntimeHTML: (report: VoiceDeliveryRuntimeReport, options?: {
|
|
155
118
|
requeueDeadLettersPath?: false | string;
|
|
156
119
|
tickPath?: false | string;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { Elysia } from "elysia";
|
|
2
1
|
import { type VoiceAuditSinkDeliveryStore, type VoiceAuditSinkDeliveryQueueSummary } from "./auditSinks";
|
|
3
2
|
import { type VoiceTraceSinkDeliveryQueueSummary } from "./queue";
|
|
4
3
|
import type { VoiceTraceSinkDeliveryStore } from "./trace";
|
|
@@ -72,46 +71,10 @@ export declare const createVoicePostgresDeliverySink: (input?: Omit<VoiceDeliver
|
|
|
72
71
|
export declare const createVoiceS3DeliverySink: (input?: Omit<VoiceDeliverySinkDescriptorInput, "kind">) => VoiceDeliverySinkDescriptor;
|
|
73
72
|
export declare const createVoiceSQLiteDeliverySink: (input?: Omit<VoiceDeliverySinkDescriptorInput, "kind">) => VoiceDeliverySinkDescriptor;
|
|
74
73
|
export declare const createVoiceWebhookDeliverySink: (input?: Omit<VoiceDeliverySinkDescriptorInput, "kind">) => VoiceDeliverySinkDescriptor;
|
|
75
|
-
export declare const createVoiceDeliverySinkRoutes: (options: VoiceDeliverySinkRoutesOptions) =>
|
|
76
|
-
decorator: {};
|
|
77
|
-
store: {};
|
|
78
|
-
derive: {};
|
|
79
|
-
resolve: {};
|
|
80
|
-
}, {
|
|
74
|
+
export declare const createVoiceDeliverySinkRoutes: (options: VoiceDeliverySinkRoutesOptions) => import("elysia/types").AddRoute<"", "local", import("elysia/types").DefaultSingleton, {
|
|
81
75
|
typebox: {};
|
|
82
|
-
error:
|
|
83
|
-
}, {
|
|
84
|
-
schema: {};
|
|
85
|
-
standaloneSchema: {};
|
|
86
|
-
macro: {};
|
|
87
|
-
macroFn: {};
|
|
88
|
-
parser: {};
|
|
89
|
-
response: {};
|
|
90
|
-
}, {
|
|
91
|
-
[x: string]: {
|
|
92
|
-
get: {
|
|
93
|
-
body: unknown;
|
|
94
|
-
params: {};
|
|
95
|
-
query: unknown;
|
|
96
|
-
headers: unknown;
|
|
97
|
-
response: {
|
|
98
|
-
200: VoiceDeliverySinkReport;
|
|
99
|
-
};
|
|
100
|
-
};
|
|
101
|
-
};
|
|
102
|
-
}, {
|
|
103
|
-
derive: {};
|
|
104
|
-
resolve: {};
|
|
105
|
-
schema: {};
|
|
106
|
-
standaloneSchema: {};
|
|
107
|
-
response: {};
|
|
108
|
-
}, {
|
|
109
|
-
derive: {};
|
|
110
|
-
resolve: {};
|
|
111
|
-
schema: {};
|
|
112
|
-
standaloneSchema: {};
|
|
113
|
-
response: {};
|
|
114
|
-
}>;
|
|
76
|
+
error: [];
|
|
77
|
+
}, import("elysia/types").DefaultMetadata, {}, import("elysia/types").DefaultEphemeral, import("elysia/types").DefaultEphemeral, "get", string, import("elysia/types").IntersectIfObjectSchema<import("elysia").UnwrapRoute<{}, {}, `/${string}`>, import("elysia/types").MergeScopedSchemas<{}, {}, {}>>, {}, () => Promise<VoiceDeliverySinkReport>>;
|
|
115
78
|
export declare const renderVoiceDeliverySinkHTML: (report: VoiceDeliverySinkReport, options?: {
|
|
116
79
|
title?: string;
|
|
117
80
|
}) => string;
|
|
@@ -66,33 +66,9 @@ export declare const buildVoiceDemoReadyReport: (options: VoiceDemoReadyRoutesOp
|
|
|
66
66
|
query?: Record<string, unknown>;
|
|
67
67
|
request?: Request;
|
|
68
68
|
}) => Promise<VoiceDemoReadyReport>;
|
|
69
|
-
export declare const createVoiceDemoReadyRoutes: (options: VoiceDemoReadyRoutesOptions) => Elysia<"", {
|
|
70
|
-
decorator: {};
|
|
71
|
-
store: {};
|
|
72
|
-
derive: {};
|
|
73
|
-
resolve: {};
|
|
74
|
-
}, {
|
|
69
|
+
export declare const createVoiceDemoReadyRoutes: (options: VoiceDemoReadyRoutesOptions) => Elysia<"", "local", import("elysia/types").DefaultSingleton, {
|
|
75
70
|
typebox: {};
|
|
76
|
-
error:
|
|
77
|
-
}, {
|
|
78
|
-
schema: {};
|
|
79
|
-
standaloneSchema: {};
|
|
80
|
-
macro: {};
|
|
81
|
-
macroFn: {};
|
|
82
|
-
parser: {};
|
|
83
|
-
response: {};
|
|
84
|
-
}, {}, {
|
|
85
|
-
derive: {};
|
|
86
|
-
resolve: {};
|
|
87
|
-
schema: {};
|
|
88
|
-
standaloneSchema: {};
|
|
89
|
-
response: {};
|
|
90
|
-
}, {
|
|
91
|
-
derive: {};
|
|
92
|
-
resolve: {};
|
|
93
|
-
schema: {};
|
|
94
|
-
standaloneSchema: {};
|
|
95
|
-
response: {};
|
|
96
|
-
}>;
|
|
71
|
+
error: [];
|
|
72
|
+
}, import("elysia/types").DefaultMetadata, {}, import("elysia/types").DefaultEphemeral, import("elysia/types").DefaultEphemeral>;
|
|
97
73
|
export declare const renderVoiceDemoReadyHTML: (report: VoiceDemoReadyReport) => string;
|
|
98
74
|
export {};
|