@framers/agentos 0.1.35 → 0.1.36

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.
@@ -587,26 +587,29 @@
587
587
  {
588
588
  "id": "twitter.bearerToken",
589
589
  "label": "Twitter/X Bearer Token",
590
- "description": "Bearer token for Twitter API v2 (app-only auth).",
590
+ "description": "Bearer token for Twitter API v2 (app-only auth). Optional if OAuth credentials are provided.",
591
591
  "envVar": "TWITTER_BEARER_TOKEN",
592
+ "aliases": ["X_BEARER_TOKEN"],
592
593
  "docsUrl": "https://developer.x.com/en/docs/authentication/oauth-2-0/bearer-tokens",
593
594
  "providers": ["twitter"],
594
595
  "optional": true
595
596
  },
596
597
  {
597
598
  "id": "twitter.apiKey",
598
- "label": "Twitter/X API Key",
599
- "description": "API key for Twitter/X (OAuth).",
599
+ "label": "Twitter/X API Key (Consumer Key)",
600
+ "description": "API key / consumer key for Twitter/X (OAuth 1.0a).",
600
601
  "envVar": "TWITTER_API_KEY",
602
+ "aliases": ["X_API_KEY", "X_CONSUMER_KEY", "TWITTER_CONSUMER_KEY"],
601
603
  "docsUrl": "https://developer.x.com/",
602
604
  "providers": ["twitter"],
603
605
  "optional": true
604
606
  },
605
607
  {
606
608
  "id": "twitter.apiSecret",
607
- "label": "Twitter/X API Secret",
608
- "description": "API secret for Twitter/X (OAuth).",
609
+ "label": "Twitter/X API Secret (Consumer Secret)",
610
+ "description": "API secret / consumer secret for Twitter/X (OAuth 1.0a).",
609
611
  "envVar": "TWITTER_API_SECRET",
612
+ "aliases": ["X_API_SECRET", "X_CONSUMER_SECRET", "X_CONSUMER_SECRET_KEY", "TWITTER_CONSUMER_SECRET"],
610
613
  "docsUrl": "https://developer.x.com/",
611
614
  "providers": ["twitter"],
612
615
  "optional": true
@@ -614,8 +617,9 @@
614
617
  {
615
618
  "id": "twitter.accessToken",
616
619
  "label": "Twitter/X Access Token",
617
- "description": "Access token for Twitter/X (user context).",
620
+ "description": "Access token for Twitter/X (user context, OAuth 1.0a).",
618
621
  "envVar": "TWITTER_ACCESS_TOKEN",
622
+ "aliases": ["X_ACCESS_TOKEN"],
619
623
  "docsUrl": "https://developer.x.com/",
620
624
  "providers": ["twitter"],
621
625
  "optional": true
@@ -623,8 +627,9 @@
623
627
  {
624
628
  "id": "twitter.accessSecret",
625
629
  "label": "Twitter/X Access Secret",
626
- "description": "Access token secret for Twitter/X (user context).",
630
+ "description": "Access token secret for Twitter/X (user context, OAuth 1.0a).",
627
631
  "envVar": "TWITTER_ACCESS_SECRET",
632
+ "aliases": ["X_ACCESS_SECRET", "X_ACCESS_TOKEN_SECRET", "TWITTER_ACCESS_TOKEN_SECRET"],
628
633
  "docsUrl": "https://developer.x.com/",
629
634
  "providers": ["twitter"],
630
635
  "optional": true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@framers/agentos",
3
- "version": "0.1.35",
3
+ "version": "0.1.36",
4
4
  "description": "Modular AgentOS orchestration library",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",