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.
- package/dist/index.js +5 -5
- 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:
|