@apteva/integrations 0.3.14 → 0.3.16
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/package.json +1 -1
- package/src/apps/airtable.json +408 -58
- package/src/apps/heygen.json +881 -58
- package/src/apps/nordigen.json +512 -0
- package/src/apps/omnikit-code-ops.json +1183 -0
- package/src/apps/plaid.json +693 -0
- package/src/apps/saltedge.json +787 -0
- package/src/apps/socialcast.json +19 -1
package/src/apps/socialcast.json
CHANGED
|
@@ -266,7 +266,7 @@
|
|
|
266
266
|
},
|
|
267
267
|
"platform_overrides": {
|
|
268
268
|
"type": "object",
|
|
269
|
-
"description": "Per-platform overrides keyed by platform name. Only include platforms you want to customize. Available fields per platform: youtube: {title, description, tags (array), privacyStatus (public/unlisted/private), categoryId}. reddit: {title, subreddit, text, nsfw}. pinterest: {title, description, board_id}. tiktok: {title, text, privacyLevel (PUBLIC_TO_EVERYONE/MUTUAL_FOLLOW_FRIENDS/FOLLOWER_OF_CREATOR/SELF_ONLY), disableComment (bool), autoAddMusic (bool)}. linkedin: {text, visibility}. facebook: {text, title (video only)}. twitter: {text}. instagram: {text}. telegram: {text, chatId, parseMode}. All fields are optional — omitted fields fall back to the main post text.",
|
|
269
|
+
"description": "Per-platform overrides keyed by platform name. Only include platforms you want to customize. Available fields per platform: youtube: {title, description, tags (array), privacyStatus (public/unlisted/private), categoryId}. reddit: {title, subreddit, text, nsfw}. pinterest: {title, description, board_id}. tiktok: {title (photo posts only, max 90 chars), text (caption/description, falls back to main post text), privacyLevel (PUBLIC_TO_EVERYONE/MUTUAL_FOLLOW_FRIENDS/FOLLOWER_OF_CREATOR/SELF_ONLY), disableComment (bool), autoAddMusic (bool, photo posts only)}. linkedin: {text, visibility}. facebook: {text, title (video only)}. twitter: {text}. instagram: {text}. telegram: {text, chatId, parseMode}. All fields are optional — omitted fields fall back to the main post text.",
|
|
270
270
|
"properties": {
|
|
271
271
|
"twitter": {
|
|
272
272
|
"type": "object"
|
|
@@ -445,6 +445,24 @@
|
|
|
445
445
|
]
|
|
446
446
|
}
|
|
447
447
|
},
|
|
448
|
+
{
|
|
449
|
+
"name": "retry_post",
|
|
450
|
+
"description": "Retry publishing a failed or partially failed post. Re-publishes only to the platforms that failed, keeping existing successful results intact. The post must be in 'failed' or 'partial' status.",
|
|
451
|
+
"method": "POST",
|
|
452
|
+
"path": "/posts/{id}/retry",
|
|
453
|
+
"input_schema": {
|
|
454
|
+
"type": "object",
|
|
455
|
+
"properties": {
|
|
456
|
+
"id": {
|
|
457
|
+
"type": "integer",
|
|
458
|
+
"description": "Post ID to retry"
|
|
459
|
+
}
|
|
460
|
+
},
|
|
461
|
+
"required": [
|
|
462
|
+
"id"
|
|
463
|
+
]
|
|
464
|
+
}
|
|
465
|
+
},
|
|
448
466
|
{
|
|
449
467
|
"name": "get_post_analytics",
|
|
450
468
|
"description": "Fetch analytics and engagement metrics for a published post across all platforms. Returns impressions, reach, likes, comments, shares, views, saves, clicks, quotes, and bookmarks where available. Supported: Instagram, Facebook, YouTube, TikTok, Pinterest, Twitter/X. No analytics API: LinkedIn, Reddit, Telegram.",
|