@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 CHANGED
@@ -1215,7 +1215,7 @@ var TelephonyCdrSchema = DefaultEntitySchema.extend({
1215
1215
  });
1216
1216
  var TelephonyTrunkSchema = DefaultEntitySchema.extend({
1217
1217
  trunkId: import_zod26.default.string().nullable(),
1218
- trunk: import_zod26.default.string().nullable()
1218
+ trunkName: import_zod26.default.string().nullable()
1219
1219
  });
1220
1220
  var TelephonyTrunkListSchema = import_zod26.default.array(TelephonyTrunkSchema);
1221
1221
  var TelephonyQueueSchema = DefaultEntitySchema.extend({
@@ -6197,6 +6197,9 @@ var uploadContract = (0, import_core35.initContract)().router(
6197
6197
  }
6198
6198
  );
6199
6199
 
6200
+ // src/viber/index.ts
6201
+ var import_zod90 = __toESM(require("zod"));
6202
+
6200
6203
  // src/viber/validation.ts
6201
6204
  var import_zod89 = __toESM(require("zod"));
6202
6205
  var ViberChannelSchema = import_zod89.default.object({
@@ -6235,7 +6238,9 @@ var viberContract = (0, import_core36.initContract)().router({
6235
6238
  }),
6236
6239
  400: DefaultErrorResponseSchema
6237
6240
  },
6238
- body: ViberChannelSchema,
6241
+ body: import_zod90.default.object({
6242
+ id: import_zod90.default.string().uuid()
6243
+ }),
6239
6244
  summary: "Connect message channel"
6240
6245
  },
6241
6246
  sendMessage: {