@amityco/social-plus-vise 0.14.13 → 0.14.14
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/CHANGELOG.md +9 -0
- package/dist/capabilities.js +4 -4
- package/dist/outcomes.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,15 @@ All notable changes to `@amityco/social-plus-vise` are documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is loosely based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## 0.14.14 — 2026-06-05
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- **Android poll optional capability:** `post-poll-creation` now recognizes native Android poll post linking via `createPost().poll(pollId)` and `createPollPost(...)`, not only the TypeScript `createPost({ data: { pollId } })` shape.
|
|
11
|
+
- **Native optional sensor wording:** poll composer guidance now names the native post-builder path so agents do not need marker comments to satisfy the selected capability.
|
|
12
|
+
|
|
13
|
+
### Verified
|
|
14
|
+
- Focused capability/product-flow tests and a marker-free `music-player-android` smoke passed with selected `post-poll-creation`.
|
|
15
|
+
|
|
7
16
|
## 0.14.13 — 2026-06-05
|
|
8
17
|
|
|
9
18
|
### Changed
|
package/dist/capabilities.js
CHANGED
|
@@ -403,14 +403,14 @@ export const OPTIONAL_CAPABILITIES = [
|
|
|
403
403
|
{ label: "SDK post creation/linking", symbols: [/\bcreatePollPost\b/i, /\bcreatePost\b/i] },
|
|
404
404
|
],
|
|
405
405
|
sensors: [
|
|
406
|
-
{ label: "PollRepository.createPoll", regex: /PollRepository\.createPoll\s*\(|(?<![
|
|
406
|
+
{ label: "PollRepository.createPoll", regex: /PollRepository\.createPoll\s*\(|(?<![\w])createPoll\s*\(/ },
|
|
407
407
|
{
|
|
408
408
|
label: "createPost links pollId",
|
|
409
|
-
regex: /createPost\s*\(\s*\{[\s\S]*?data\s*:\s*\{[\s\S]*?\bpollId\b\s*(?::|[,}])/,
|
|
409
|
+
regex: /createPost\s*\(\s*\{[\s\S]*?data\s*:\s*\{[\s\S]*?\bpollId\b\s*(?::|[,}])|\bcreatePollPost\s*\(|\.createPost\s*\(\s*\)[\s\S]{0,1200}?\.poll\s*\(\s*pollId\b/,
|
|
410
410
|
},
|
|
411
|
-
{ label: "PollRepository.votePoll", regex: /PollRepository\.votePoll\s*\(|(?<![
|
|
411
|
+
{ label: "PollRepository.votePoll", regex: /PollRepository\.votePoll\s*\(|(?<![\w])votePoll\s*\(/ },
|
|
412
412
|
],
|
|
413
|
-
hint: "If the user opts into polls, implement the createPoll -> createPost({ data: { pollId } })
|
|
413
|
+
hint: "If the user opts into polls, implement the platform poll creation -> poll post linking chain, for example createPoll -> createPost({ data: { pollId } }) on TypeScript or createPost().poll(pollId) / createPollPost on native SDKs, plus the votePoll read-side interaction.",
|
|
414
414
|
},
|
|
415
415
|
{
|
|
416
416
|
id: "post-edit",
|
package/dist/outcomes.js
CHANGED
|
@@ -629,7 +629,7 @@ const addFeed = {
|
|
|
629
629
|
evidence: ["social-plus-sdk/social/content-management/posts/creation/poll-post"],
|
|
630
630
|
},
|
|
631
631
|
{
|
|
632
|
-
step: "If the post composer supports poll creation, implement the two-step creation chain: (1)
|
|
632
|
+
step: "If the post composer supports poll creation, implement the two-step creation chain: (1) create the poll with the platform SDK poll repository — returns a Poll/pollId; (2) link that poll into a post with the platform post builder, for example `PostRepository.createPost({ targetType, targetId, data: { text: '', pollId } })` on TypeScript/React Native or `createPost().poll(pollId)` / `createPollPost(...)` on native SDKs. Rendering poll answers (votePoll/unvotePoll) is the read-side; without both creation steps the poll composer silently does nothing. Offer a dedicated poll-builder UI (question input + dynamic answer list) so users can author polls inline.",
|
|
633
633
|
evidence: [
|
|
634
634
|
"social-plus-sdk/social/content-management/posts/creation/poll-post",
|
|
635
635
|
"social-plus-sdk/social/posts",
|
package/package.json
CHANGED