@select-org/select-post-builder 1.1.23 → 1.1.24

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.
@@ -33503,7 +33503,7 @@ const getCommonPayload = (groupId) => ({
33503
33503
  postId: v4(),
33504
33504
  timestamp: (/* @__PURE__ */ new Date()).getTime(),
33505
33505
  specialType: SpecialType.POST,
33506
- ...groupId && { groupId }
33506
+ ...groupId && { conversationId: groupId }
33507
33507
  });
33508
33508
  const getMentionDataPayload = (json) => {
33509
33509
  const mentions = findByType(json, "mention");
@@ -33473,7 +33473,7 @@ const getCommonPayload = (groupId) => ({
33473
33473
  postId: v4(),
33474
33474
  timestamp: (/* @__PURE__ */ new Date()).getTime(),
33475
33475
  specialType: SpecialType.POST,
33476
- ...groupId && { groupId }
33476
+ ...groupId && { conversationId: groupId }
33477
33477
  });
33478
33478
  const getMentionDataPayload = (json) => {
33479
33479
  const mentions = findByType(json, "mention");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@select-org/select-post-builder",
3
- "version": "1.1.23",
3
+ "version": "1.1.24",
4
4
  "description": "A reusable, extensible Post Builder widget for the Select platform and beyond.",
5
5
  "main": "./dist/post-builder.cjs.js",
6
6
  "module": "./dist/post-builder.js",