@kl1/contracts 1.0.69 → 1.0.70
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/index.js +7 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -2
- package/dist/index.mjs.map +1 -1
- package/dist/src/contract.d.ts +8 -44
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/telephony-cdr/index.d.ts +5 -5
- package/dist/src/telephony-cdr/schema.d.ts +6 -6
- package/dist/src/viber/index.d.ts +3 -39
- package/dist/src/viber/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/contract.d.ts
CHANGED
@@ -101051,47 +101051,11 @@ export declare const platformContract: {
|
|
101051
101051
|
};
|
101052
101052
|
disconnect: {
|
101053
101053
|
body: import("zod").ZodObject<{
|
101054
|
-
|
101055
|
-
accessToken: import("zod").ZodString;
|
101056
|
-
actor: import("zod").ZodOptional<import("zod").ZodObject<{
|
101057
|
-
id: import("zod").ZodString;
|
101058
|
-
name: import("zod").ZodString;
|
101059
|
-
email: import("zod").ZodString;
|
101060
|
-
address: import("zod").ZodNullable<import("zod").ZodString>;
|
101061
|
-
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
101062
|
-
}, "strip", import("zod").ZodTypeAny, {
|
101063
|
-
id: string;
|
101064
|
-
address: string | null;
|
101065
|
-
name: string;
|
101066
|
-
email: string;
|
101067
|
-
phone: string | null;
|
101068
|
-
}, {
|
101069
|
-
id: string;
|
101070
|
-
address: string | null;
|
101071
|
-
name: string;
|
101072
|
-
email: string;
|
101073
|
-
phone: string | null;
|
101074
|
-
}>>;
|
101054
|
+
id: import("zod").ZodString;
|
101075
101055
|
}, "strip", import("zod").ZodTypeAny, {
|
101076
|
-
|
101077
|
-
accessToken: string;
|
101078
|
-
actor?: {
|
101079
|
-
id: string;
|
101080
|
-
address: string | null;
|
101081
|
-
name: string;
|
101082
|
-
email: string;
|
101083
|
-
phone: string | null;
|
101084
|
-
} | undefined;
|
101056
|
+
id: string;
|
101085
101057
|
}, {
|
101086
|
-
|
101087
|
-
accessToken: string;
|
101088
|
-
actor?: {
|
101089
|
-
id: string;
|
101090
|
-
address: string | null;
|
101091
|
-
name: string;
|
101092
|
-
email: string;
|
101093
|
-
phone: string | null;
|
101094
|
-
} | undefined;
|
101058
|
+
id: string;
|
101095
101059
|
}>;
|
101096
101060
|
summary: "Connect message channel";
|
101097
101061
|
method: "POST";
|
@@ -154061,21 +154025,21 @@ export declare const telephonyContract: {
|
|
154061
154025
|
updatedAt: import("zod").ZodDate;
|
154062
154026
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
154063
154027
|
trunkId: import("zod").ZodNullable<import("zod").ZodString>;
|
154064
|
-
|
154028
|
+
trunkName: import("zod").ZodNullable<import("zod").ZodString>;
|
154065
154029
|
}, "strip", import("zod").ZodTypeAny, {
|
154066
154030
|
id: string;
|
154067
154031
|
createdAt: Date;
|
154068
154032
|
updatedAt: Date;
|
154069
154033
|
deletedAt: Date | null;
|
154070
154034
|
trunkId: string | null;
|
154071
|
-
|
154035
|
+
trunkName: string | null;
|
154072
154036
|
}, {
|
154073
154037
|
id: string;
|
154074
154038
|
createdAt: Date;
|
154075
154039
|
updatedAt: Date;
|
154076
154040
|
deletedAt: Date | null;
|
154077
154041
|
trunkId: string | null;
|
154078
|
-
|
154042
|
+
trunkName: string | null;
|
154079
154043
|
}>, "many">;
|
154080
154044
|
}, "strip", import("zod").ZodTypeAny, {
|
154081
154045
|
requestId: string;
|
@@ -154085,7 +154049,7 @@ export declare const telephonyContract: {
|
|
154085
154049
|
updatedAt: Date;
|
154086
154050
|
deletedAt: Date | null;
|
154087
154051
|
trunkId: string | null;
|
154088
|
-
|
154052
|
+
trunkName: string | null;
|
154089
154053
|
}[];
|
154090
154054
|
}, {
|
154091
154055
|
requestId: string;
|
@@ -154095,7 +154059,7 @@ export declare const telephonyContract: {
|
|
154095
154059
|
updatedAt: Date;
|
154096
154060
|
deletedAt: Date | null;
|
154097
154061
|
trunkId: string | null;
|
154098
|
-
|
154062
|
+
trunkName: string | null;
|
154099
154063
|
}[];
|
154100
154064
|
}>;
|
154101
154065
|
401: import("zod").ZodObject<{
|