@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.js CHANGED
@@ -1772,6 +1772,9 @@ var ConnectViberChannelSchema = import_zod30.default.object({
1772
1772
  name: import_zod30.default.string(),
1773
1773
  accessToken: import_zod30.default.string()
1774
1774
  });
1775
+ var GetChannelSchema = import_zod30.default.object({
1776
+ withDeleted: import_zod30.default.coerce.boolean().default(false)
1777
+ });
1775
1778
 
1776
1779
  // src/instagram/validation.ts
1777
1780
  var import_zod31 = __toESM(require("zod"));
@@ -1914,6 +1917,7 @@ var channelContract = (0, import_core6.initContract)().router(
1914
1917
  data: ChannelSchema.array()
1915
1918
  })
1916
1919
  },
1920
+ query: GetChannelSchema,
1917
1921
  summary: "Get Channels"
1918
1922
  },
1919
1923
  disconnect: {