@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.mjs CHANGED
@@ -1154,7 +1154,7 @@ var TelephonyCdrSchema = DefaultEntitySchema.extend({
1154
1154
  });
1155
1155
  var TelephonyTrunkSchema = DefaultEntitySchema.extend({
1156
1156
  trunkId: z26.string().nullable(),
1157
- trunk: z26.string().nullable()
1157
+ trunkName: z26.string().nullable()
1158
1158
  });
1159
1159
  var TelephonyTrunkListSchema = z26.array(TelephonyTrunkSchema);
1160
1160
  var TelephonyQueueSchema = DefaultEntitySchema.extend({
@@ -6136,6 +6136,9 @@ var uploadContract = initContract35().router(
6136
6136
  }
6137
6137
  );
6138
6138
 
6139
+ // src/viber/index.ts
6140
+ import z90 from "zod";
6141
+
6139
6142
  // src/viber/validation.ts
6140
6143
  import z89 from "zod";
6141
6144
  var ViberChannelSchema = z89.object({
@@ -6174,7 +6177,9 @@ var viberContract = initContract36().router({
6174
6177
  }),
6175
6178
  400: DefaultErrorResponseSchema
6176
6179
  },
6177
- body: ViberChannelSchema,
6180
+ body: z90.object({
6181
+ id: z90.string().uuid()
6182
+ }),
6178
6183
  summary: "Connect message channel"
6179
6184
  },
6180
6185
  sendMessage: {