@kl1/contracts 1.3.35 → 1.3.37
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/api-contracts/src/contract.d.ts +11 -0
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/index.d.ts +11 -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/api-contracts/src/dashboard/validation.d.ts +1 -0
- package/dist/api-contracts/src/dashboard/validation.d.ts.map +1 -1
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -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<{
|
|
@@ -26666,17 +26674,20 @@ export declare const apiContract: {
|
|
|
26666
26674
|
automationQueueId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
26667
26675
|
selectedDate: import("zod").ZodString;
|
|
26668
26676
|
channelIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
26677
|
+
channelCountsFilter: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodLiteral<"channelName">, import("zod").ZodLiteral<"channelType">]>>>;
|
|
26669
26678
|
fileExtension: import("zod").ZodUnion<[import("zod").ZodLiteral<"csv">, import("zod").ZodLiteral<"xlsx">]>;
|
|
26670
26679
|
}, "strip", import("zod").ZodTypeAny, {
|
|
26671
26680
|
selectedDate: string;
|
|
26672
26681
|
fileExtension: "csv" | "xlsx";
|
|
26673
26682
|
automationQueueId?: string | undefined;
|
|
26674
26683
|
channelIds?: string[] | undefined;
|
|
26684
|
+
channelCountsFilter?: "channelType" | "channelName" | undefined;
|
|
26675
26685
|
}, {
|
|
26676
26686
|
selectedDate: string;
|
|
26677
26687
|
fileExtension: "csv" | "xlsx";
|
|
26678
26688
|
automationQueueId?: string | undefined;
|
|
26679
26689
|
channelIds?: string[] | undefined;
|
|
26690
|
+
channelCountsFilter?: "channelType" | "channelName" | undefined;
|
|
26680
26691
|
}>;
|
|
26681
26692
|
responses: {
|
|
26682
26693
|
200: import("zod").ZodObject<{
|