calabasas 0.19.2 → 0.19.3

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.
Files changed (2) hide show
  1. package/dist/index.js +5 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2564,15 +2564,15 @@ async function generate(options) {
2564
2564
  syncExports.push("syncGuildAdmins");
2565
2565
  }
2566
2566
  if (text.includes("channels") && text.includes("true"))
2567
- syncExports.push("syncChannel");
2567
+ syncExports.push("syncChannel", "syncChannelBatch");
2568
2568
  if (text.includes("roles") && text.includes("true"))
2569
- syncExports.push("syncRole");
2569
+ syncExports.push("syncRole", "syncRoleBatch");
2570
2570
  if (text.includes("members") && text.includes("true"))
2571
- syncExports.push("syncMember");
2571
+ syncExports.push("syncMember", "syncMemberBatch");
2572
2572
  if (text.includes("presence") && text.includes("true"))
2573
- syncExports.push("syncPresence");
2573
+ syncExports.push("syncPresence", "syncPresenceBatch");
2574
2574
  if (syncExports.length === 0) {
2575
- syncExports.push("syncGuild", "syncChannel", "syncRole", "syncMember");
2575
+ syncExports.push("syncGuild", "syncChannel", "syncChannelBatch", "syncRole", "syncRoleBatch", "syncMember", "syncMemberBatch", "syncPresence", "syncPresenceBatch");
2576
2576
  }
2577
2577
  syncExports.push("updateSyncState");
2578
2578
  p5.note(`1. Add tables to your convex/schema.ts:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "calabasas",
3
- "version": "0.19.2",
3
+ "version": "0.19.3",
4
4
  "description": "CLI for Calabasas - Discord Gateway as a Service for Convex",
5
5
  "type": "module",
6
6
  "bin": {