@kl1/contracts 1.0.86 → 1.0.87

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
@@ -1709,6 +1709,9 @@ var ConnectViberChannelSchema = z30.object({
1709
1709
  name: z30.string(),
1710
1710
  accessToken: z30.string()
1711
1711
  });
1712
+ var GetChannelSchema = z30.object({
1713
+ withDeleted: z30.coerce.boolean().default(false)
1714
+ });
1712
1715
 
1713
1716
  // src/instagram/validation.ts
1714
1717
  import z31 from "zod";
@@ -1851,6 +1854,7 @@ var channelContract = initContract6().router(
1851
1854
  data: ChannelSchema.array()
1852
1855
  })
1853
1856
  },
1857
+ query: GetChannelSchema,
1854
1858
  summary: "Get Channels"
1855
1859
  },
1856
1860
  disconnect: {