@kl1/contracts 1.3.35 → 1.3.36
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/api-contracts/src/contract.d.ts +8 -0
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/index.d.ts +8 -0
- package/dist/api-contracts/src/dashboard/index.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/schema.d.ts +3 -0
- package/dist/api-contracts/src/dashboard/schema.d.ts.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -26596,39 +26596,47 @@ export declare const apiContract: {
|
|
26596
26596
|
automationQueueId: import("zod").ZodOptional<import("zod").ZodString>;
|
26597
26597
|
selectedDate: import("zod").ZodString;
|
26598
26598
|
channelIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
26599
|
+
channelCountsFilter: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodLiteral<"channelName">, import("zod").ZodLiteral<"channelType">]>>>;
|
26599
26600
|
}, "strip", import("zod").ZodTypeAny, {
|
26600
26601
|
selectedDate: string;
|
26601
26602
|
automationQueueId?: string | undefined;
|
26602
26603
|
channelIds?: string[] | undefined;
|
26604
|
+
channelCountsFilter?: "channelType" | "channelName" | undefined;
|
26603
26605
|
}, {
|
26604
26606
|
selectedDate: string;
|
26605
26607
|
automationQueueId?: string | undefined;
|
26606
26608
|
channelIds?: string[] | undefined;
|
26609
|
+
channelCountsFilter?: "channelType" | "channelName" | undefined;
|
26607
26610
|
}>;
|
26608
26611
|
responses: {
|
26609
26612
|
200: import("zod").ZodObject<{
|
26610
26613
|
requestId: import("zod").ZodString;
|
26611
26614
|
incomingMessageCounts: import("zod").ZodArray<import("zod").ZodObject<{
|
26615
|
+
channelName: import("zod").ZodOptional<import("zod").ZodString>;
|
26612
26616
|
channelType: import("zod").ZodString;
|
26613
26617
|
count: import("zod").ZodNumber;
|
26614
26618
|
}, "strip", import("zod").ZodTypeAny, {
|
26615
26619
|
count: number;
|
26616
26620
|
channelType: string;
|
26621
|
+
channelName?: string | undefined;
|
26617
26622
|
}, {
|
26618
26623
|
count: number;
|
26619
26624
|
channelType: string;
|
26625
|
+
channelName?: string | undefined;
|
26620
26626
|
}>, "many">;
|
26621
26627
|
}, "strip", import("zod").ZodTypeAny, {
|
26622
26628
|
requestId: string;
|
26623
26629
|
incomingMessageCounts: {
|
26624
26630
|
count: number;
|
26625
26631
|
channelType: string;
|
26632
|
+
channelName?: string | undefined;
|
26626
26633
|
}[];
|
26627
26634
|
}, {
|
26628
26635
|
requestId: string;
|
26629
26636
|
incomingMessageCounts: {
|
26630
26637
|
count: number;
|
26631
26638
|
channelType: string;
|
26639
|
+
channelName?: string | undefined;
|
26632
26640
|
}[];
|
26633
26641
|
}>;
|
26634
26642
|
401: import("zod").ZodObject<{
|