@amityco/social-plus-vise 0.4.0 → 0.7.0

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.
@@ -61,6 +61,66 @@
61
61
  "deterministic": [{ "check": "validator-finding-absent", "finding_rule_id": "ios.live.cleanup" }],
62
62
  "attestation": { "allowed": true, "host_agent_min_confidence": "high", "human_allowed": true, "evidence_required": [{ "field": "lifecycle_owner", "description": "Lifecycle owner and cleanup location (deinit, viewWillDisappear, etc.).", "upload_policy": "upload-with-consent" }] }
63
63
  }
64
+ },
65
+ {
66
+ "id": "android.live-collection.api-mismatch",
67
+ "version": 1,
68
+ "title": "Android list UIs should use reactive LiveCollections",
69
+ "severity": "warning",
70
+ "rationale": "Using one-shot Future-style queries for lists means the feed won't update when a new item is created. Use the reactive LiveCollection/observe API instead.",
71
+ "applies_when": { "platforms": ["android"], "outcomes": ["add-feed", "add-comments", "add-chat", "setup-live-data", "validate-setup"] },
72
+ "enforcement": {
73
+ "deterministic": [{ "check": "validator-finding-absent", "finding_rule_id": "android.live-collection.api-mismatch" }],
74
+ "attestation": { "allowed": true, "host_agent_min_confidence": "high", "human_allowed": true, "evidence_required": [{ "field": "query_lifetime", "description": "Why a one-shot query is appropriate here (e.g. static search).", "upload_policy": "upload-with-consent" }] }
75
+ }
76
+ },
77
+ {
78
+ "id": "flutter.live-collection.api-mismatch",
79
+ "version": 1,
80
+ "title": "Flutter list UIs should use reactive LiveCollections",
81
+ "severity": "warning",
82
+ "rationale": "Using one-shot Future-style queries for lists means the feed won't update when a new item is created. Use the reactive LiveCollection/listen API instead.",
83
+ "applies_when": { "platforms": ["flutter"], "outcomes": ["add-feed", "add-comments", "add-chat", "setup-live-data", "validate-setup"] },
84
+ "enforcement": {
85
+ "deterministic": [{ "check": "validator-finding-absent", "finding_rule_id": "flutter.live-collection.api-mismatch" }],
86
+ "attestation": { "allowed": true, "host_agent_min_confidence": "high", "human_allowed": true, "evidence_required": [{ "field": "query_lifetime", "description": "Why a one-shot query is appropriate here.", "upload_policy": "upload-with-consent" }] }
87
+ }
88
+ },
89
+ {
90
+ "id": "ios.live-collection.api-mismatch",
91
+ "version": 1,
92
+ "title": "iOS list UIs should use reactive LiveCollections",
93
+ "severity": "warning",
94
+ "rationale": "Using one-shot Future-style queries for lists means the feed won't update when a new item is created. Use the reactive observe API instead.",
95
+ "applies_when": { "platforms": ["ios"], "outcomes": ["add-feed", "add-comments", "add-chat", "setup-live-data", "validate-setup"] },
96
+ "enforcement": {
97
+ "deterministic": [{ "check": "validator-finding-absent", "finding_rule_id": "ios.live-collection.api-mismatch" }],
98
+ "attestation": { "allowed": true, "host_agent_min_confidence": "high", "human_allowed": true, "evidence_required": [{ "field": "query_lifetime", "description": "Why a one-shot query is appropriate here.", "upload_policy": "upload-with-consent" }] }
99
+ }
100
+ },
101
+ {
102
+ "id": "typescript.live-collection.api-mismatch",
103
+ "version": 1,
104
+ "title": "TypeScript list UIs should use reactive LiveCollections",
105
+ "severity": "warning",
106
+ "rationale": "Using one-shot Promise-style queries for lists means the feed won't update when a new item is created. Use the reactive onData API instead.",
107
+ "applies_when": { "platforms": ["typescript"], "outcomes": ["add-feed", "add-comments", "add-chat", "setup-live-data", "validate-setup"] },
108
+ "enforcement": {
109
+ "deterministic": [{ "check": "validator-finding-absent", "finding_rule_id": "typescript.live-collection.api-mismatch" }],
110
+ "attestation": { "allowed": true, "host_agent_min_confidence": "high", "human_allowed": true, "evidence_required": [{ "field": "query_lifetime", "description": "Why a one-shot query is appropriate here.", "upload_policy": "upload-with-consent" }] }
111
+ }
112
+ },
113
+ {
114
+ "id": "react-native.live-collection.api-mismatch",
115
+ "version": 1,
116
+ "title": "React Native list UIs should use reactive LiveCollections",
117
+ "severity": "warning",
118
+ "rationale": "Using one-shot Promise-style queries for lists means the feed won't update when a new item is created. Use the reactive onData API instead.",
119
+ "applies_when": { "platforms": ["react-native"], "outcomes": ["add-feed", "add-comments", "add-chat", "setup-live-data", "validate-setup"] },
120
+ "enforcement": {
121
+ "deterministic": [{ "check": "validator-finding-absent", "finding_rule_id": "react-native.live-collection.api-mismatch" }],
122
+ "attestation": { "allowed": true, "host_agent_min_confidence": "high", "human_allowed": true, "evidence_required": [{ "field": "query_lifetime", "description": "Why a one-shot query is appropriate here.", "upload_policy": "upload-with-consent" }] }
123
+ }
64
124
  }
65
125
  ]
66
126
  }