@amityco/social-plus-vise 0.14.9 → 0.14.10

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 CHANGED
@@ -4,6 +4,13 @@ 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.10 — 2026-06-05
8
+
9
+ ### Changed
10
+ - **Shared product expectation coverage gate:** capability tests now require every shared product expectation surfaced by feed-forward availability to have either a deterministic product binding for that platform or an explicit attestation fallback.
11
+ - **Rich post rendering binding:** `feed.rich-post-rendering` now maps to the existing rich-post datatype validators across TypeScript, React Native, Android, Flutter, and iOS, so add-feed validation reports the shared product expectation while retaining platform sensor evidence.
12
+ - **Comment tray fallback honesty:** non-Android comment read/write expectations are now surfaced as attestation-needed until product-level deterministic validators are added for those platforms.
13
+
7
14
  ## 0.14.9 — 2026-06-05
8
15
 
9
16
  ### Changed
@@ -426,7 +426,7 @@ export const OPTIONAL_CAPABILITIES = [
426
426
  hint: "If the user opts into author management, show edit only for post.postedUserId === currentUserId and call PostRepository.editPost with updated text data.",
427
427
  },
428
428
  ];
429
- const SHARED_PRODUCT_EXPECTATIONS = [
429
+ export const SHARED_PRODUCT_EXPECTATIONS = [
430
430
  {
431
431
  id: "feed.rich-post-rendering",
432
432
  label: "Rich post rendering",
@@ -480,7 +480,7 @@ const SHARED_PRODUCT_EXPECTATIONS = [
480
480
  { label: "SDK comment query", symbols: [/\bgetComments\b/i, /\bqueryComments\b/i] },
481
481
  { label: "SDK comment creation", symbols: [/\bcreateComment\b/i] },
482
482
  ],
483
- deterministicPlatforms: ["android", "flutter", "ios", "typescript"],
483
+ deterministicPlatforms: ["android"],
484
484
  hint: "if comments are shown, pair the list with a composer and loading/error/empty states unless the surface is explicitly read-only",
485
485
  },
486
486
  {
package/dist/outcomes.js CHANGED
@@ -654,7 +654,7 @@ const addFeed = {
654
654
  "feed target identified",
655
655
  "no invented communityId/targetId/feedId",
656
656
  `${platform}.feed.target.literal`,
657
- `${platform}.feed.post-datatype-handled`,
657
+ "feed.rich-post-rendering",
658
658
  ...(platform === "android"
659
659
  ? [
660
660
  "feed.rich-post-composer-scope",
@@ -1,4 +1,29 @@
1
1
  export const PRODUCT_EXPECTATION_BINDINGS = [
2
+ {
3
+ expectationId: "feed.rich-post-rendering",
4
+ sensorId: "typescript.feed.post-datatype-handled",
5
+ platform: "typescript",
6
+ },
7
+ {
8
+ expectationId: "feed.rich-post-rendering",
9
+ sensorId: "react-native.feed.post-datatype-handled",
10
+ platform: "react-native",
11
+ },
12
+ {
13
+ expectationId: "feed.rich-post-rendering",
14
+ sensorId: "android.feed.post-datatype-handled",
15
+ platform: "android",
16
+ },
17
+ {
18
+ expectationId: "feed.rich-post-rendering",
19
+ sensorId: "flutter.feed.post-datatype-handled",
20
+ platform: "flutter",
21
+ },
22
+ {
23
+ expectationId: "feed.rich-post-rendering",
24
+ sensorId: "ios.feed.post-datatype-handled",
25
+ platform: "ios",
26
+ },
2
27
  {
3
28
  expectationId: "feed.rich-post-composer-scope",
4
29
  sensorId: "android.feed.rich-post-composer-surfaced",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amityco/social-plus-vise",
3
- "version": "0.14.9",
3
+ "version": "0.14.10",
4
4
  "description": "Skill-guided deterministic CLI for social.plus SDK integration assistance.",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "type": "module",