@elizaos/plugin-twitter 1.2.19 → 1.2.20

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
@@ -6105,8 +6105,6 @@ var twitterEnvSchema = external_exports.object({
6105
6105
  // Advanced
6106
6106
  TWITTER_RETRY_LIMIT: external_exports.string().default("5")
6107
6107
  });
6108
- delete process.env.TWITTER_SEARCH_ENABLE;
6109
- delete process.env.TWITTER_POST_ENABLE;
6110
6108
  function safeParseInt(value, defaultValue) {
6111
6109
  if (!value) return defaultValue;
6112
6110
  const parsed = parseInt(value, 10);