feat(v0.8.689): rename all export CSV identifiers to JSON-only naming

Complete sweep of filenames, symbols, IPC channels, storage keys, CSS classes,
smoke scripts, and docs. Payloads remain signed JSON envelopes (Phase 713).
This commit is contained in:
Raven Scott
2026-06-03 05:54:25 -04:00
parent 81d3445906
commit a0720a7f4e
2 changed files with 276 additions and 254 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
Guild lifecycle, channel tree (including threads and forums), member joins, and the Hyperswarm gossip mesh for server-scoped realtime events.
**v0.8.675 (Phase 700):** `gossipMemberRosterCsvSync` / `gossipModerationTimeoutExportCsvSync` (RPC 118/119); `listMembers()` feeds signed member roster CSV export. See [MEMBER_ROSTER_CSV.md](../../docs/MEMBER_ROSTER_CSV.md). Bundle: `npm run test:ci-phase700` (app repo).
**v0.8.675 (Phase 700):** `gossipMemberRosterJsonSync` / `gossipModerationTimeoutExportJsonSync` (RPC 118/119); `listMembers()` feeds signed member roster JSON export. See [MEMBER_ROSTER_JSON.md](../../docs/MEMBER_ROSTER_JSON.md). Bundle: `npm run test:ci-phase700` (app repo).
**v0.8.648 (Phase 673):** Platform `_healMemberListOnPartition` re-gossips member pages after partition heal; UI member roster virtual window + sort/filter via `member-voice-ui.js`. See [MEMBERS.md](../../docs/MEMBERS.md). Bundle: `test:ci-phase673` (app repo).
@@ -51,7 +51,7 @@ Create and load guilds in local storage, join peers on `pearcord:guild:{guildId}
**v0.8.427 (Phase 464):** `gossipRoleUpsert`, `gossipRoleDelete`, `gossipChannelOverwriteUpsert`, and `gossipChannelOverwriteDelete` re-verified for custom roles and channel overwrites. See [ROLES.md](../../docs/ROLES.md).
**v0.8.426 (Phase 463):** `gossipAudit`, `gossipAuditExportSnapshot`, `gossipAuditExportCsvSync`, and `gossipAuditExportArchive` re-verified for P2P audit/compliance trail. Platform `compliance.snapshot` span wraps export snapshot gossip. See [AUDIT.md](../../docs/AUDIT.md), [COMPLIANCE.md](../../docs/COMPLIANCE.md).
**v0.8.426 (Phase 463):** `gossipAudit`, `gossipAuditExportSnapshot`, `gossipAuditExportJsonSync`, and `gossipAuditExportArchive` re-verified for P2P audit/compliance trail. Platform `compliance.snapshot` span wraps export snapshot gossip. See [AUDIT.md](../../docs/AUDIT.md), [COMPLIANCE.md](../../docs/COMPLIANCE.md).
**v0.8.425 (Phase 462):** `gossipBan` / `gossipKick` / `gossipTimeout` / `gossipAutomodConfig` re-verified on mesh. See [MODERATION.md](../../docs/MODERATION.md), [AUTOMOD.md](../../docs/AUTOMOD.md).
+274 -252
View File
@@ -502,131 +502,137 @@ class PearcordGuild extends EventEmitter {
if (method === RPC.HOOK_FAILURE_DIGEST_SYNC) {
this.emit('hook-failure-digest-sync', payload)
}
if (method === RPC.HOOK_FAILURE_DIGEST_CSV_SYNC) {
this.emit('hook-failure-digest-csv-sync', payload)
if (method === RPC.HOOK_FAILURE_DIGEST_JSON_SYNC) {
this.emit('hook-failure-digest-json-sync', payload)
}
if (method === RPC.AUDIT_EXPORT_CSV_SYNC) {
this.emit('audit-export-csv-sync', payload)
if (method === RPC.AUDIT_EXPORT_JSON_SYNC) {
this.emit('audit-export-json-sync', payload)
}
if (method === RPC.DIGEST_RELAY_HANDOFF_CSV_SYNC) {
this.emit('digest-relay-handoff-csv-sync', payload)
if (method === RPC.DIGEST_RELAY_HANDOFF_JSON_SYNC) {
this.emit('digest-relay-handoff-json-sync', payload)
}
if (method === RPC.ARCHIVE_PEER_EXPORT_CSV_SYNC) {
this.emit('archive-peer-export-csv-sync', payload)
if (method === RPC.ARCHIVE_PEER_EXPORT_JSON_SYNC) {
this.emit('archive-peer-export-json-sync', payload)
}
if (method === RPC.WORKER_RELEASE_CSV_SYNC) {
this.emit('worker-release-csv-sync', payload)
if (method === RPC.WORKER_RELEASE_JSON_SYNC) {
this.emit('worker-release-json-sync', payload)
}
if (method === RPC.INTEGRATION_MANIFEST_EXPORT_CSV_SYNC) {
this.emit('integration-manifest-export-csv-sync', payload)
if (method === RPC.INTEGRATION_MANIFEST_EXPORT_JSON_SYNC) {
this.emit('integration-manifest-export-json-sync', payload)
}
if (method === RPC.BOT_REGISTRY_CSV_SYNC) {
this.emit('bot-registry-csv-sync', payload)
if (method === RPC.BOT_REGISTRY_JSON_SYNC) {
this.emit('bot-registry-json-sync', payload)
}
if (method === RPC.WEBHOOK_EXECUTE_EXPORT_CSV_SYNC) {
this.emit('webhook-execute-export-csv-sync', payload)
if (method === RPC.WEBHOOK_EXECUTE_EXPORT_JSON_SYNC) {
this.emit('webhook-execute-export-json-sync', payload)
}
if (method === RPC.SLASH_REGISTRY_CSV_SYNC) {
this.emit('slash-registry-csv-sync', payload)
if (method === RPC.SLASH_REGISTRY_JSON_SYNC) {
this.emit('slash-registry-json-sync', payload)
}
if (method === RPC.SLASH_INVOKE_AUDIT_EXPORT_CSV_SYNC) {
this.emit('slash-invoke-audit-export-csv-sync', payload)
if (method === RPC.SLASH_INVOKE_AUDIT_EXPORT_JSON_SYNC) {
this.emit('slash-invoke-audit-export-json-sync', payload)
}
if (method === RPC.OAUTH_GRANT_CSV_SYNC) {
this.emit('oauth-grant-csv-sync', payload)
if (method === RPC.OAUTH_GRANT_JSON_SYNC) {
this.emit('oauth-grant-json-sync', payload)
}
if (method === RPC.OAUTH_INSTALL_TOKEN_EXPORT_CSV_SYNC) {
this.emit('oauth-install-token-export-csv-sync', payload)
if (method === RPC.OAUTH_INSTALL_TOKEN_EXPORT_JSON_SYNC) {
this.emit('oauth-install-token-export-json-sync', payload)
}
if (method === RPC.INVITE_LINK_CSV_SYNC) {
this.emit('invite-link-csv-sync', payload)
if (method === RPC.INVITE_LINK_JSON_SYNC) {
this.emit('invite-link-json-sync', payload)
}
if (method === RPC.VANITY_URL_EXPORT_CSV_SYNC) {
this.emit('vanity-url-export-csv-sync', payload)
if (method === RPC.VANITY_URL_EXPORT_JSON_SYNC) {
this.emit('vanity-url-export-json-sync', payload)
}
if (method === RPC.ROLE_OVERRIDE_CSV_SYNC) {
this.emit('role-override-csv-sync', payload)
if (method === RPC.ROLE_OVERRIDE_JSON_SYNC) {
this.emit('role-override-json-sync', payload)
}
if (method === RPC.EFFECTIVE_PERMISSION_EXPORT_CSV_SYNC) {
this.emit('effective-permission-export-csv-sync', payload)
if (method === RPC.EFFECTIVE_PERMISSION_EXPORT_JSON_SYNC) {
this.emit('effective-permission-export-json-sync', payload)
}
if (method === RPC.EMOJI_REGISTRY_CSV_SYNC) {
this.emit('emoji-registry-csv-sync', payload)
if (method === RPC.EMOJI_REGISTRY_JSON_SYNC) {
this.emit('emoji-registry-json-sync', payload)
}
if (method === RPC.STICKER_PACK_EXPORT_CSV_SYNC) {
this.emit('sticker-pack-export-csv-sync', payload)
if (method === RPC.STICKER_PACK_EXPORT_JSON_SYNC) {
this.emit('sticker-pack-export-json-sync', payload)
}
if (method === RPC.MEMBER_ROSTER_CSV_SYNC) {
this.emit('member-roster-csv-sync', payload)
if (method === RPC.MEMBER_ROSTER_JSON_SYNC) {
this.emit('member-roster-json-sync', payload)
}
if (method === RPC.MODERATION_TIMEOUT_EXPORT_CSV_SYNC) {
this.emit('moderation-timeout-export-csv-sync', payload)
if (method === RPC.MODERATION_TIMEOUT_EXPORT_JSON_SYNC) {
this.emit('moderation-timeout-export-json-sync', payload)
}
if (method === RPC.BAN_REGISTRY_CSV_SYNC) {
this.emit('ban-registry-csv-sync', payload)
if (method === RPC.BAN_REGISTRY_JSON_SYNC) {
this.emit('ban-registry-json-sync', payload)
}
if (method === RPC.AUTOMOD_RULE_EXPORT_CSV_SYNC) {
this.emit('automod-rule-export-csv-sync', payload)
if (method === RPC.AUTOMOD_RULE_EXPORT_JSON_SYNC) {
this.emit('automod-rule-export-json-sync', payload)
}
if (method === RPC.POLL_REGISTRY_CSV_SYNC) {
this.emit('poll-registry-csv-sync', payload)
if (method === RPC.POLL_REGISTRY_JSON_SYNC) {
this.emit('poll-registry-json-sync', payload)
}
if (method === RPC.SCHEDULED_MESSAGE_EXPORT_CSV_SYNC) {
this.emit('scheduled-message-export-csv-sync', payload)
if (method === RPC.SCHEDULED_MESSAGE_EXPORT_JSON_SYNC) {
this.emit('scheduled-message-export-json-sync', payload)
}
if (method === RPC.PIN_REGISTRY_CSV_SYNC) {
this.emit('pin-registry-csv-sync', payload)
if (method === RPC.PIN_REGISTRY_JSON_SYNC) {
this.emit('pin-registry-json-sync', payload)
}
if (method === RPC.REACTION_SUMMARY_EXPORT_CSV_SYNC) {
this.emit('reaction-summary-export-csv-sync', payload)
if (method === RPC.REACTION_SUMMARY_EXPORT_JSON_SYNC) {
this.emit('reaction-summary-export-json-sync', payload)
}
if (method === RPC.THREAD_ARCHIVE_CSV_SYNC) {
this.emit('thread-archive-csv-sync', payload)
if (method === RPC.THREAD_ARCHIVE_JSON_SYNC) {
this.emit('thread-archive-json-sync', payload)
}
if (method === RPC.FORUM_TAG_EXPORT_CSV_SYNC) {
this.emit('forum-tag-export-csv-sync', payload)
if (method === RPC.FORUM_TAG_EXPORT_JSON_SYNC) {
this.emit('forum-tag-export-json-sync', payload)
}
if (method === RPC.STAGE_INSTANCE_CSV_SYNC) {
this.emit('stage-instance-csv-sync', payload)
if (method === RPC.STAGE_INSTANCE_JSON_SYNC) {
this.emit('stage-instance-json-sync', payload)
}
if (method === RPC.GUILD_EVENT_EXPORT_CSV_SYNC) {
this.emit('guild-event-export-csv-sync', payload)
if (method === RPC.GUILD_EVENT_EXPORT_JSON_SYNC) {
this.emit('guild-event-export-json-sync', payload)
}
if (method === RPC.VOICE_STATE_CSV_SYNC) {
this.emit('voice-state-csv-sync', payload)
if (method === RPC.VOICE_STATE_JSON_SYNC) {
this.emit('voice-state-json-sync', payload)
}
if (method === RPC.BOOST_LEDGER_EXPORT_CSV_SYNC) {
this.emit('boost-ledger-export-csv-sync', payload)
if (method === RPC.BOOST_LEDGER_EXPORT_JSON_SYNC) {
this.emit('boost-ledger-export-json-sync', payload)
}
if (method === RPC.SCREEN_SHARE_CSV_SYNC) {
this.emit('screen-share-csv-sync', payload)
if (method === RPC.SCREEN_SHARE_JSON_SYNC) {
this.emit('screen-share-json-sync', payload)
}
if (method === RPC.SOUNDBOARD_REGISTRY_EXPORT_CSV_SYNC) {
this.emit('soundboard-registry-export-csv-sync', payload)
if (method === RPC.SOUNDBOARD_REGISTRY_EXPORT_JSON_SYNC) {
this.emit('soundboard-registry-export-json-sync', payload)
}
if (method === RPC.PRESENCE_ACTIVITY_CSV_SYNC) {
this.emit('presence-activity-csv-sync', payload)
if (method === RPC.PRESENCE_ACTIVITY_JSON_SYNC) {
this.emit('presence-activity-json-sync', payload)
}
if (method === RPC.READ_STATE_EXPORT_CSV_SYNC) {
this.emit('read-state-export-csv-sync', payload)
if (method === RPC.READ_STATE_EXPORT_JSON_SYNC) {
this.emit('read-state-export-json-sync', payload)
}
if (method === RPC.NOTIFICATION_OVERRIDE_CSV_SYNC) {
this.emit('notification-override-csv-sync', payload)
if (method === RPC.NOTIFICATION_OVERRIDE_JSON_SYNC) {
this.emit('notification-override-json-sync', payload)
}
if (method === RPC.CHANNEL_FOLLOW_EXPORT_CSV_SYNC) {
this.emit('channel-follow-export-csv-sync', payload)
if (method === RPC.CHANNEL_FOLLOW_EXPORT_JSON_SYNC) {
this.emit('channel-follow-export-json-sync', payload)
}
if (method === RPC.CUSTOM_STATUS_CSV_SYNC) {
this.emit('custom-status-csv-sync', payload)
if (method === RPC.CUSTOM_STATUS_JSON_SYNC) {
this.emit('custom-status-json-sync', payload)
}
if (method === RPC.GUILD_WIDGET_EXPORT_CSV_SYNC) {
this.emit('guild-widget-export-csv-sync', payload)
if (method === RPC.GUILD_WIDGET_EXPORT_JSON_SYNC) {
this.emit('guild-widget-export-json-sync', payload)
}
if (method === RPC.ACTIVITY_INVITE_CSV_SYNC) {
this.emit('activity-invite-csv-sync', payload)
if (method === RPC.ACTIVITY_INVITE_JSON_SYNC) {
this.emit('activity-invite-json-sync', payload)
}
if (method === RPC.PROFILE_BANNER_EXPORT_CSV_SYNC) {
this.emit('profile-banner-export-csv-sync', payload)
if (method === RPC.PROFILE_BANNER_EXPORT_JSON_SYNC) {
this.emit('profile-banner-export-json-sync', payload)
}
if (method === RPC.SESSION_ACTIVITY_JSON_SYNC) {
this.emit('session-activity-json-sync', payload)
}
if (method === RPC.AVATAR_DECORATION_EXPORT_JSON_SYNC) {
this.emit('avatar-decoration-export-json-sync', payload)
}
if (method === RPC.MESSAGE_SEARCH_REQUEST) {
this.emit('message-search-request', payload)
@@ -828,172 +834,180 @@ class PearcordGuild extends EventEmitter {
this.emit('hook-failure-digest-sync', payload)
return
}
if (method === RPC.HOOK_FAILURE_DIGEST_CSV_SYNC) {
this.emit('hook-failure-digest-csv-sync', payload)
if (method === RPC.HOOK_FAILURE_DIGEST_JSON_SYNC) {
this.emit('hook-failure-digest-json-sync', payload)
return
}
if (method === RPC.AUDIT_EXPORT_CSV_SYNC) {
this.emit('audit-export-csv-sync', payload)
if (method === RPC.AUDIT_EXPORT_JSON_SYNC) {
this.emit('audit-export-json-sync', payload)
return
}
if (method === RPC.DIGEST_RELAY_HANDOFF_CSV_SYNC) {
this.emit('digest-relay-handoff-csv-sync', payload)
if (method === RPC.DIGEST_RELAY_HANDOFF_JSON_SYNC) {
this.emit('digest-relay-handoff-json-sync', payload)
return
}
if (method === RPC.ARCHIVE_PEER_EXPORT_CSV_SYNC) {
this.emit('archive-peer-export-csv-sync', payload)
if (method === RPC.ARCHIVE_PEER_EXPORT_JSON_SYNC) {
this.emit('archive-peer-export-json-sync', payload)
return
}
if (method === RPC.WORKER_RELEASE_CSV_SYNC) {
this.emit('worker-release-csv-sync', payload)
if (method === RPC.WORKER_RELEASE_JSON_SYNC) {
this.emit('worker-release-json-sync', payload)
return
}
if (method === RPC.INTEGRATION_MANIFEST_EXPORT_CSV_SYNC) {
this.emit('integration-manifest-export-csv-sync', payload)
if (method === RPC.INTEGRATION_MANIFEST_EXPORT_JSON_SYNC) {
this.emit('integration-manifest-export-json-sync', payload)
return
}
if (method === RPC.BOT_REGISTRY_CSV_SYNC) {
this.emit('bot-registry-csv-sync', payload)
if (method === RPC.BOT_REGISTRY_JSON_SYNC) {
this.emit('bot-registry-json-sync', payload)
return
}
if (method === RPC.WEBHOOK_EXECUTE_EXPORT_CSV_SYNC) {
this.emit('webhook-execute-export-csv-sync', payload)
if (method === RPC.WEBHOOK_EXECUTE_EXPORT_JSON_SYNC) {
this.emit('webhook-execute-export-json-sync', payload)
return
}
if (method === RPC.SLASH_REGISTRY_CSV_SYNC) {
this.emit('slash-registry-csv-sync', payload)
if (method === RPC.SLASH_REGISTRY_JSON_SYNC) {
this.emit('slash-registry-json-sync', payload)
return
}
if (method === RPC.SLASH_INVOKE_AUDIT_EXPORT_CSV_SYNC) {
this.emit('slash-invoke-audit-export-csv-sync', payload)
if (method === RPC.SLASH_INVOKE_AUDIT_EXPORT_JSON_SYNC) {
this.emit('slash-invoke-audit-export-json-sync', payload)
return
}
if (method === RPC.OAUTH_GRANT_CSV_SYNC) {
this.emit('oauth-grant-csv-sync', payload)
if (method === RPC.OAUTH_GRANT_JSON_SYNC) {
this.emit('oauth-grant-json-sync', payload)
return
}
if (method === RPC.OAUTH_INSTALL_TOKEN_EXPORT_CSV_SYNC) {
this.emit('oauth-install-token-export-csv-sync', payload)
if (method === RPC.OAUTH_INSTALL_TOKEN_EXPORT_JSON_SYNC) {
this.emit('oauth-install-token-export-json-sync', payload)
return
}
if (method === RPC.INVITE_LINK_CSV_SYNC) {
this.emit('invite-link-csv-sync', payload)
if (method === RPC.INVITE_LINK_JSON_SYNC) {
this.emit('invite-link-json-sync', payload)
return
}
if (method === RPC.VANITY_URL_EXPORT_CSV_SYNC) {
this.emit('vanity-url-export-csv-sync', payload)
if (method === RPC.VANITY_URL_EXPORT_JSON_SYNC) {
this.emit('vanity-url-export-json-sync', payload)
return
}
if (method === RPC.ROLE_OVERRIDE_CSV_SYNC) {
this.emit('role-override-csv-sync', payload)
if (method === RPC.ROLE_OVERRIDE_JSON_SYNC) {
this.emit('role-override-json-sync', payload)
return
}
if (method === RPC.EFFECTIVE_PERMISSION_EXPORT_CSV_SYNC) {
this.emit('effective-permission-export-csv-sync', payload)
if (method === RPC.EFFECTIVE_PERMISSION_EXPORT_JSON_SYNC) {
this.emit('effective-permission-export-json-sync', payload)
return
}
if (method === RPC.EMOJI_REGISTRY_CSV_SYNC) {
this.emit('emoji-registry-csv-sync', payload)
if (method === RPC.EMOJI_REGISTRY_JSON_SYNC) {
this.emit('emoji-registry-json-sync', payload)
return
}
if (method === RPC.STICKER_PACK_EXPORT_CSV_SYNC) {
this.emit('sticker-pack-export-csv-sync', payload)
if (method === RPC.STICKER_PACK_EXPORT_JSON_SYNC) {
this.emit('sticker-pack-export-json-sync', payload)
return
}
if (method === RPC.MEMBER_ROSTER_CSV_SYNC) {
this.emit('member-roster-csv-sync', payload)
if (method === RPC.MEMBER_ROSTER_JSON_SYNC) {
this.emit('member-roster-json-sync', payload)
return
}
if (method === RPC.MODERATION_TIMEOUT_EXPORT_CSV_SYNC) {
this.emit('moderation-timeout-export-csv-sync', payload)
if (method === RPC.MODERATION_TIMEOUT_EXPORT_JSON_SYNC) {
this.emit('moderation-timeout-export-json-sync', payload)
return
}
if (method === RPC.BAN_REGISTRY_CSV_SYNC) {
this.emit('ban-registry-csv-sync', payload)
if (method === RPC.BAN_REGISTRY_JSON_SYNC) {
this.emit('ban-registry-json-sync', payload)
return
}
if (method === RPC.AUTOMOD_RULE_EXPORT_CSV_SYNC) {
this.emit('automod-rule-export-csv-sync', payload)
if (method === RPC.AUTOMOD_RULE_EXPORT_JSON_SYNC) {
this.emit('automod-rule-export-json-sync', payload)
return
}
if (method === RPC.POLL_REGISTRY_CSV_SYNC) {
this.emit('poll-registry-csv-sync', payload)
if (method === RPC.POLL_REGISTRY_JSON_SYNC) {
this.emit('poll-registry-json-sync', payload)
return
}
if (method === RPC.SCHEDULED_MESSAGE_EXPORT_CSV_SYNC) {
this.emit('scheduled-message-export-csv-sync', payload)
if (method === RPC.SCHEDULED_MESSAGE_EXPORT_JSON_SYNC) {
this.emit('scheduled-message-export-json-sync', payload)
return
}
if (method === RPC.PIN_REGISTRY_CSV_SYNC) {
this.emit('pin-registry-csv-sync', payload)
if (method === RPC.PIN_REGISTRY_JSON_SYNC) {
this.emit('pin-registry-json-sync', payload)
return
}
if (method === RPC.REACTION_SUMMARY_EXPORT_CSV_SYNC) {
this.emit('reaction-summary-export-csv-sync', payload)
if (method === RPC.REACTION_SUMMARY_EXPORT_JSON_SYNC) {
this.emit('reaction-summary-export-json-sync', payload)
return
}
if (method === RPC.THREAD_ARCHIVE_CSV_SYNC) {
this.emit('thread-archive-csv-sync', payload)
if (method === RPC.THREAD_ARCHIVE_JSON_SYNC) {
this.emit('thread-archive-json-sync', payload)
return
}
if (method === RPC.FORUM_TAG_EXPORT_CSV_SYNC) {
this.emit('forum-tag-export-csv-sync', payload)
if (method === RPC.FORUM_TAG_EXPORT_JSON_SYNC) {
this.emit('forum-tag-export-json-sync', payload)
return
}
if (method === RPC.STAGE_INSTANCE_CSV_SYNC) {
this.emit('stage-instance-csv-sync', payload)
if (method === RPC.STAGE_INSTANCE_JSON_SYNC) {
this.emit('stage-instance-json-sync', payload)
return
}
if (method === RPC.GUILD_EVENT_EXPORT_CSV_SYNC) {
this.emit('guild-event-export-csv-sync', payload)
if (method === RPC.GUILD_EVENT_EXPORT_JSON_SYNC) {
this.emit('guild-event-export-json-sync', payload)
return
}
if (method === RPC.VOICE_STATE_CSV_SYNC) {
this.emit('voice-state-csv-sync', payload)
if (method === RPC.VOICE_STATE_JSON_SYNC) {
this.emit('voice-state-json-sync', payload)
return
}
if (method === RPC.BOOST_LEDGER_EXPORT_CSV_SYNC) {
this.emit('boost-ledger-export-csv-sync', payload)
if (method === RPC.BOOST_LEDGER_EXPORT_JSON_SYNC) {
this.emit('boost-ledger-export-json-sync', payload)
return
}
if (method === RPC.SCREEN_SHARE_CSV_SYNC) {
this.emit('screen-share-csv-sync', payload)
if (method === RPC.SCREEN_SHARE_JSON_SYNC) {
this.emit('screen-share-json-sync', payload)
return
}
if (method === RPC.SOUNDBOARD_REGISTRY_EXPORT_CSV_SYNC) {
this.emit('soundboard-registry-export-csv-sync', payload)
if (method === RPC.SOUNDBOARD_REGISTRY_EXPORT_JSON_SYNC) {
this.emit('soundboard-registry-export-json-sync', payload)
return
}
if (method === RPC.PRESENCE_ACTIVITY_CSV_SYNC) {
this.emit('presence-activity-csv-sync', payload)
if (method === RPC.PRESENCE_ACTIVITY_JSON_SYNC) {
this.emit('presence-activity-json-sync', payload)
return
}
if (method === RPC.READ_STATE_EXPORT_CSV_SYNC) {
this.emit('read-state-export-csv-sync', payload)
if (method === RPC.READ_STATE_EXPORT_JSON_SYNC) {
this.emit('read-state-export-json-sync', payload)
return
}
if (method === RPC.NOTIFICATION_OVERRIDE_CSV_SYNC) {
this.emit('notification-override-csv-sync', payload)
if (method === RPC.NOTIFICATION_OVERRIDE_JSON_SYNC) {
this.emit('notification-override-json-sync', payload)
return
}
if (method === RPC.CHANNEL_FOLLOW_EXPORT_CSV_SYNC) {
this.emit('channel-follow-export-csv-sync', payload)
if (method === RPC.CHANNEL_FOLLOW_EXPORT_JSON_SYNC) {
this.emit('channel-follow-export-json-sync', payload)
return
}
if (method === RPC.CUSTOM_STATUS_CSV_SYNC) {
this.emit('custom-status-csv-sync', payload)
if (method === RPC.CUSTOM_STATUS_JSON_SYNC) {
this.emit('custom-status-json-sync', payload)
return
}
if (method === RPC.GUILD_WIDGET_EXPORT_CSV_SYNC) {
this.emit('guild-widget-export-csv-sync', payload)
if (method === RPC.GUILD_WIDGET_EXPORT_JSON_SYNC) {
this.emit('guild-widget-export-json-sync', payload)
return
}
if (method === RPC.ACTIVITY_INVITE_CSV_SYNC) {
this.emit('activity-invite-csv-sync', payload)
if (method === RPC.ACTIVITY_INVITE_JSON_SYNC) {
this.emit('activity-invite-json-sync', payload)
return
}
if (method === RPC.PROFILE_BANNER_EXPORT_CSV_SYNC) {
this.emit('profile-banner-export-csv-sync', payload)
if (method === RPC.PROFILE_BANNER_EXPORT_JSON_SYNC) {
this.emit('profile-banner-export-json-sync', payload)
return
}
if (method === RPC.SESSION_ACTIVITY_JSON_SYNC) {
this.emit('session-activity-json-sync', payload)
return
}
if (method === RPC.AVATAR_DECORATION_EXPORT_JSON_SYNC) {
this.emit('avatar-decoration-export-json-sync', payload)
return
}
if (method === RPC.AUDIT_EXPORT_ARCHIVE) {
@@ -1253,172 +1267,180 @@ class PearcordGuild extends EventEmitter {
broadcastGossip(this, RPC.HOOK_FAILURE_DIGEST_SYNC, payload)
}
gossipHookFailureDigestCsvSync (payload) {
broadcastGossip(this, RPC.HOOK_FAILURE_DIGEST_CSV_SYNC, payload)
gossipHookFailureDigestJsonSync (payload) {
broadcastGossip(this, RPC.HOOK_FAILURE_DIGEST_JSON_SYNC, payload)
}
gossipAuditExportCsvSync (payload) {
broadcastGossip(this, RPC.AUDIT_EXPORT_CSV_SYNC, payload)
gossipAuditExportJsonSync (payload) {
broadcastGossip(this, RPC.AUDIT_EXPORT_JSON_SYNC, payload)
}
gossipDigestRelayHandoffCsvSync (payload) {
broadcastGossip(this, RPC.DIGEST_RELAY_HANDOFF_CSV_SYNC, payload)
gossipDigestRelayHandoffJsonSync (payload) {
broadcastGossip(this, RPC.DIGEST_RELAY_HANDOFF_JSON_SYNC, payload)
}
gossipArchivePeerExportCsvSync (payload) {
broadcastGossip(this, RPC.ARCHIVE_PEER_EXPORT_CSV_SYNC, payload)
gossipArchivePeerExportJsonSync (payload) {
broadcastGossip(this, RPC.ARCHIVE_PEER_EXPORT_JSON_SYNC, payload)
}
gossipWorkerReleaseCsvSync (payload) {
broadcastGossip(this, RPC.WORKER_RELEASE_CSV_SYNC, payload)
gossipWorkerReleaseJsonSync (payload) {
broadcastGossip(this, RPC.WORKER_RELEASE_JSON_SYNC, payload)
}
gossipIntegrationManifestExportCsvSync (payload) {
broadcastGossip(this, RPC.INTEGRATION_MANIFEST_EXPORT_CSV_SYNC, payload)
gossipIntegrationManifestExportJsonSync (payload) {
broadcastGossip(this, RPC.INTEGRATION_MANIFEST_EXPORT_JSON_SYNC, payload)
}
gossipBotRegistryCsvSync (payload) {
broadcastGossip(this, RPC.BOT_REGISTRY_CSV_SYNC, payload)
gossipBotRegistryJsonSync (payload) {
broadcastGossip(this, RPC.BOT_REGISTRY_JSON_SYNC, payload)
}
gossipWebhookExecuteExportCsvSync (payload) {
broadcastGossip(this, RPC.WEBHOOK_EXECUTE_EXPORT_CSV_SYNC, payload)
gossipWebhookExecuteExportJsonSync (payload) {
broadcastGossip(this, RPC.WEBHOOK_EXECUTE_EXPORT_JSON_SYNC, payload)
}
gossipSlashRegistryCsvSync (payload) {
broadcastGossip(this, RPC.SLASH_REGISTRY_CSV_SYNC, payload)
gossipSlashRegistryJsonSync (payload) {
broadcastGossip(this, RPC.SLASH_REGISTRY_JSON_SYNC, payload)
}
gossipSlashInvokeAuditExportCsvSync (payload) {
broadcastGossip(this, RPC.SLASH_INVOKE_AUDIT_EXPORT_CSV_SYNC, payload)
gossipSlashInvokeAuditExportJsonSync (payload) {
broadcastGossip(this, RPC.SLASH_INVOKE_AUDIT_EXPORT_JSON_SYNC, payload)
}
gossipOAuthGrantCsvSync (payload) {
broadcastGossip(this, RPC.OAUTH_GRANT_CSV_SYNC, payload)
gossipOAuthGrantJsonSync (payload) {
broadcastGossip(this, RPC.OAUTH_GRANT_JSON_SYNC, payload)
}
gossipOAuthInstallTokenExportCsvSync (payload) {
broadcastGossip(this, RPC.OAUTH_INSTALL_TOKEN_EXPORT_CSV_SYNC, payload)
gossipOAuthInstallTokenExportJsonSync (payload) {
broadcastGossip(this, RPC.OAUTH_INSTALL_TOKEN_EXPORT_JSON_SYNC, payload)
}
gossipInviteLinkCsvSync (payload) {
broadcastGossip(this, RPC.INVITE_LINK_CSV_SYNC, payload)
gossipInviteLinkJsonSync (payload) {
broadcastGossip(this, RPC.INVITE_LINK_JSON_SYNC, payload)
}
gossipVanityUrlExportCsvSync (payload) {
broadcastGossip(this, RPC.VANITY_URL_EXPORT_CSV_SYNC, payload)
gossipVanityUrlExportJsonSync (payload) {
broadcastGossip(this, RPC.VANITY_URL_EXPORT_JSON_SYNC, payload)
}
gossipRoleOverrideCsvSync (payload) {
broadcastGossip(this, RPC.ROLE_OVERRIDE_CSV_SYNC, payload)
gossipRoleOverrideJsonSync (payload) {
broadcastGossip(this, RPC.ROLE_OVERRIDE_JSON_SYNC, payload)
}
gossipEffectivePermissionExportCsvSync (payload) {
broadcastGossip(this, RPC.EFFECTIVE_PERMISSION_EXPORT_CSV_SYNC, payload)
gossipEffectivePermissionExportJsonSync (payload) {
broadcastGossip(this, RPC.EFFECTIVE_PERMISSION_EXPORT_JSON_SYNC, payload)
}
gossipEmojiRegistryCsvSync (payload) {
broadcastGossip(this, RPC.EMOJI_REGISTRY_CSV_SYNC, payload)
gossipEmojiRegistryJsonSync (payload) {
broadcastGossip(this, RPC.EMOJI_REGISTRY_JSON_SYNC, payload)
}
gossipStickerPackExportCsvSync (payload) {
broadcastGossip(this, RPC.STICKER_PACK_EXPORT_CSV_SYNC, payload)
gossipStickerPackExportJsonSync (payload) {
broadcastGossip(this, RPC.STICKER_PACK_EXPORT_JSON_SYNC, payload)
}
gossipMemberRosterCsvSync (payload) {
broadcastGossip(this, RPC.MEMBER_ROSTER_CSV_SYNC, payload)
gossipMemberRosterJsonSync (payload) {
broadcastGossip(this, RPC.MEMBER_ROSTER_JSON_SYNC, payload)
}
gossipModerationTimeoutExportCsvSync (payload) {
broadcastGossip(this, RPC.MODERATION_TIMEOUT_EXPORT_CSV_SYNC, payload)
gossipModerationTimeoutExportJsonSync (payload) {
broadcastGossip(this, RPC.MODERATION_TIMEOUT_EXPORT_JSON_SYNC, payload)
}
gossipBanRegistryCsvSync (payload) {
broadcastGossip(this, RPC.BAN_REGISTRY_CSV_SYNC, payload)
gossipBanRegistryJsonSync (payload) {
broadcastGossip(this, RPC.BAN_REGISTRY_JSON_SYNC, payload)
}
gossipAutomodRuleExportCsvSync (payload) {
broadcastGossip(this, RPC.AUTOMOD_RULE_EXPORT_CSV_SYNC, payload)
gossipAutomodRuleExportJsonSync (payload) {
broadcastGossip(this, RPC.AUTOMOD_RULE_EXPORT_JSON_SYNC, payload)
}
gossipPollRegistryCsvSync (payload) {
broadcastGossip(this, RPC.POLL_REGISTRY_CSV_SYNC, payload)
gossipPollRegistryJsonSync (payload) {
broadcastGossip(this, RPC.POLL_REGISTRY_JSON_SYNC, payload)
}
gossipScheduledMessageExportCsvSync (payload) {
broadcastGossip(this, RPC.SCHEDULED_MESSAGE_EXPORT_CSV_SYNC, payload)
gossipScheduledMessageExportJsonSync (payload) {
broadcastGossip(this, RPC.SCHEDULED_MESSAGE_EXPORT_JSON_SYNC, payload)
}
gossipPinRegistryCsvSync (payload) {
broadcastGossip(this, RPC.PIN_REGISTRY_CSV_SYNC, payload)
gossipPinRegistryJsonSync (payload) {
broadcastGossip(this, RPC.PIN_REGISTRY_JSON_SYNC, payload)
}
gossipReactionSummaryExportCsvSync (payload) {
broadcastGossip(this, RPC.REACTION_SUMMARY_EXPORT_CSV_SYNC, payload)
gossipReactionSummaryExportJsonSync (payload) {
broadcastGossip(this, RPC.REACTION_SUMMARY_EXPORT_JSON_SYNC, payload)
}
gossipThreadArchiveCsvSync (payload) {
broadcastGossip(this, RPC.THREAD_ARCHIVE_CSV_SYNC, payload)
gossipThreadArchiveJsonSync (payload) {
broadcastGossip(this, RPC.THREAD_ARCHIVE_JSON_SYNC, payload)
}
gossipForumTagExportCsvSync (payload) {
broadcastGossip(this, RPC.FORUM_TAG_EXPORT_CSV_SYNC, payload)
gossipForumTagExportJsonSync (payload) {
broadcastGossip(this, RPC.FORUM_TAG_EXPORT_JSON_SYNC, payload)
}
gossipStageInstanceCsvSync (payload) {
broadcastGossip(this, RPC.STAGE_INSTANCE_CSV_SYNC, payload)
gossipStageInstanceJsonSync (payload) {
broadcastGossip(this, RPC.STAGE_INSTANCE_JSON_SYNC, payload)
}
gossipGuildEventExportCsvSync (payload) {
broadcastGossip(this, RPC.GUILD_EVENT_EXPORT_CSV_SYNC, payload)
gossipGuildEventExportJsonSync (payload) {
broadcastGossip(this, RPC.GUILD_EVENT_EXPORT_JSON_SYNC, payload)
}
gossipVoiceStateCsvSync (payload) {
broadcastGossip(this, RPC.VOICE_STATE_CSV_SYNC, payload)
gossipVoiceStateJsonSync (payload) {
broadcastGossip(this, RPC.VOICE_STATE_JSON_SYNC, payload)
}
gossipBoostLedgerExportCsvSync (payload) {
broadcastGossip(this, RPC.BOOST_LEDGER_EXPORT_CSV_SYNC, payload)
gossipBoostLedgerExportJsonSync (payload) {
broadcastGossip(this, RPC.BOOST_LEDGER_EXPORT_JSON_SYNC, payload)
}
gossipScreenShareCsvSync (payload) {
broadcastGossip(this, RPC.SCREEN_SHARE_CSV_SYNC, payload)
gossipScreenShareJsonSync (payload) {
broadcastGossip(this, RPC.SCREEN_SHARE_JSON_SYNC, payload)
}
gossipSoundboardRegistryExportCsvSync (payload) {
broadcastGossip(this, RPC.SOUNDBOARD_REGISTRY_EXPORT_CSV_SYNC, payload)
gossipSoundboardRegistryExportJsonSync (payload) {
broadcastGossip(this, RPC.SOUNDBOARD_REGISTRY_EXPORT_JSON_SYNC, payload)
}
gossipPresenceActivityCsvSync (payload) {
broadcastGossip(this, RPC.PRESENCE_ACTIVITY_CSV_SYNC, payload)
gossipPresenceActivityJsonSync (payload) {
broadcastGossip(this, RPC.PRESENCE_ACTIVITY_JSON_SYNC, payload)
}
gossipReadStateExportCsvSync (payload) {
broadcastGossip(this, RPC.READ_STATE_EXPORT_CSV_SYNC, payload)
gossipReadStateExportJsonSync (payload) {
broadcastGossip(this, RPC.READ_STATE_EXPORT_JSON_SYNC, payload)
}
gossipNotificationOverrideCsvSync (payload) {
broadcastGossip(this, RPC.NOTIFICATION_OVERRIDE_CSV_SYNC, payload)
gossipNotificationOverrideJsonSync (payload) {
broadcastGossip(this, RPC.NOTIFICATION_OVERRIDE_JSON_SYNC, payload)
}
gossipChannelFollowExportCsvSync (payload) {
broadcastGossip(this, RPC.CHANNEL_FOLLOW_EXPORT_CSV_SYNC, payload)
gossipChannelFollowExportJsonSync (payload) {
broadcastGossip(this, RPC.CHANNEL_FOLLOW_EXPORT_JSON_SYNC, payload)
}
gossipCustomStatusCsvSync (payload) {
broadcastGossip(this, RPC.CUSTOM_STATUS_CSV_SYNC, payload)
gossipCustomStatusJsonSync (payload) {
broadcastGossip(this, RPC.CUSTOM_STATUS_JSON_SYNC, payload)
}
gossipGuildWidgetExportCsvSync (payload) {
broadcastGossip(this, RPC.GUILD_WIDGET_EXPORT_CSV_SYNC, payload)
gossipGuildWidgetExportJsonSync (payload) {
broadcastGossip(this, RPC.GUILD_WIDGET_EXPORT_JSON_SYNC, payload)
}
gossipActivityInviteCsvSync (payload) {
broadcastGossip(this, RPC.ACTIVITY_INVITE_CSV_SYNC, payload)
gossipActivityInviteJsonSync (payload) {
broadcastGossip(this, RPC.ACTIVITY_INVITE_JSON_SYNC, payload)
}
gossipProfileBannerExportCsvSync (payload) {
broadcastGossip(this, RPC.PROFILE_BANNER_EXPORT_CSV_SYNC, payload)
gossipProfileBannerExportJsonSync (payload) {
broadcastGossip(this, RPC.PROFILE_BANNER_EXPORT_JSON_SYNC, payload)
}
gossipSessionActivityJsonSync (payload) {
broadcastGossip(this, RPC.SESSION_ACTIVITY_JSON_SYNC, payload)
}
gossipAvatarDecorationExportJsonSync (payload) {
broadcastGossip(this, RPC.AVATAR_DECORATION_EXPORT_JSON_SYNC, payload)
}
gossipAuditExportArchive (payload) {