@opengeni/core 0.15.1 → 0.16.1
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 +24 -3
- package/dist/index.js.map +1 -1
- package/package.json +8 -8
- package/src/domain/packs.ts +22 -1
- package/src/domain/sessions.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -1512,10 +1512,26 @@ var marketingSocialPack = {
|
|
|
1512
1512
|
category: "social-media",
|
|
1513
1513
|
authModel: "oauth2_authorization_code_pkce",
|
|
1514
1514
|
providers: ["x"],
|
|
1515
|
-
scopes: ["tweet.read", "users.read", "offline.access"],
|
|
1515
|
+
scopes: ["tweet.read", "tweet.write", "users.read", "offline.access"],
|
|
1516
1516
|
required: false,
|
|
1517
1517
|
metadata: {
|
|
1518
|
-
docs: "https://docs.x.com/fundamentals/authentication/oauth-2-0/authorization-code"
|
|
1518
|
+
docs: "https://docs.x.com/fundamentals/authentication/oauth-2-0/authorization-code",
|
|
1519
|
+
firstParty: true,
|
|
1520
|
+
oauthStartPath: "/social/oauth/start"
|
|
1521
|
+
}
|
|
1522
|
+
},
|
|
1523
|
+
{
|
|
1524
|
+
id: "reddit",
|
|
1525
|
+
name: "Reddit",
|
|
1526
|
+
category: "social-media",
|
|
1527
|
+
authModel: "oauth2_authorization_code",
|
|
1528
|
+
providers: ["reddit"],
|
|
1529
|
+
scopes: ["identity", "read", "submit", "privatemessages", "history"],
|
|
1530
|
+
required: false,
|
|
1531
|
+
metadata: {
|
|
1532
|
+
docs: "https://github.com/reddit-archive/reddit/wiki/OAuth2",
|
|
1533
|
+
firstParty: true,
|
|
1534
|
+
oauthStartPath: "/social/oauth/start"
|
|
1519
1535
|
}
|
|
1520
1536
|
},
|
|
1521
1537
|
{
|
|
@@ -1604,7 +1620,12 @@ var marketingSocialPack = {
|
|
|
1604
1620
|
firstPartyMcpTools: [
|
|
1605
1621
|
"social_connections_list",
|
|
1606
1622
|
"social_posts_recent",
|
|
1607
|
-
"social_daily_analysis_context"
|
|
1623
|
+
"social_daily_analysis_context",
|
|
1624
|
+
"social_search_live",
|
|
1625
|
+
"social_mentions_live",
|
|
1626
|
+
"social_thread_fetch",
|
|
1627
|
+
"social_posts_sync",
|
|
1628
|
+
"social_post_reply"
|
|
1608
1629
|
]
|
|
1609
1630
|
}
|
|
1610
1631
|
};
|