@kl1/contracts 1.4.44 → 1.4.45
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 +6 -0
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-cdr/index.d.ts +6 -0
- package/dist/api-contracts/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-cdr/validation.d.ts +6 -0
- package/dist/api-contracts/src/telephony-cdr/validation.d.ts.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -275840,6 +275840,7 @@ export declare const telephonyContract: {
|
|
275840
275840
|
queueStatus: import("zod").ZodOptional<import("zod").ZodString>;
|
275841
275841
|
agentCallsOnly: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
275842
275842
|
recordingsOnly: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
275843
|
+
tagIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
275843
275844
|
fileExtension: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodLiteral<"csv">, import("zod").ZodLiteral<"xlsx">]>>>;
|
275844
275845
|
}, "strip", import("zod").ZodTypeAny, {
|
275845
275846
|
module: "cdrs" | "call-logs";
|
@@ -275857,6 +275858,7 @@ export declare const telephonyContract: {
|
|
275857
275858
|
queueStatus?: string | undefined;
|
275858
275859
|
agentCallsOnly?: boolean | undefined;
|
275859
275860
|
recordingsOnly?: boolean | undefined;
|
275861
|
+
tagIds?: string[] | undefined;
|
275860
275862
|
fileExtension?: "csv" | "xlsx" | undefined;
|
275861
275863
|
}, {
|
275862
275864
|
type?: string[] | undefined;
|
@@ -275874,6 +275876,7 @@ export declare const telephonyContract: {
|
|
275874
275876
|
queueStatus?: string | undefined;
|
275875
275877
|
agentCallsOnly?: boolean | undefined;
|
275876
275878
|
recordingsOnly?: boolean | undefined;
|
275879
|
+
tagIds?: string[] | undefined;
|
275877
275880
|
fileExtension?: "csv" | "xlsx" | undefined;
|
275878
275881
|
}>;
|
275879
275882
|
responses: {
|
@@ -330482,6 +330485,7 @@ export declare const laravelServiceTelephonyCdrContract: {
|
|
330482
330485
|
agentCallsOnly: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
330483
330486
|
contactId: import("zod").ZodOptional<import("zod").ZodString>;
|
330484
330487
|
recordingsOnly: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
330488
|
+
tagIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
330485
330489
|
}, "strip", import("zod").ZodTypeAny, {
|
330486
330490
|
page: number;
|
330487
330491
|
pageSize: number;
|
@@ -330497,6 +330501,7 @@ export declare const laravelServiceTelephonyCdrContract: {
|
|
330497
330501
|
agentCallsOnly?: boolean | undefined;
|
330498
330502
|
contactId?: string | undefined;
|
330499
330503
|
recordingsOnly?: boolean | undefined;
|
330504
|
+
tagIds?: string[] | undefined;
|
330500
330505
|
}, {
|
330501
330506
|
page?: number | undefined;
|
330502
330507
|
pageSize?: number | undefined;
|
@@ -330512,6 +330517,7 @@ export declare const laravelServiceTelephonyCdrContract: {
|
|
330512
330517
|
agentCallsOnly?: boolean | undefined;
|
330513
330518
|
contactId?: string | undefined;
|
330514
330519
|
recordingsOnly?: boolean | undefined;
|
330520
|
+
tagIds?: string[] | undefined;
|
330515
330521
|
}>;
|
330516
330522
|
responses: {
|
330517
330523
|
200: import("zod").ZodObject<{
|