myoperator-ui 0.0.216-beta.7 → 0.0.216-beta.8

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.
Files changed (2) hide show
  1. package/dist/index.js +8 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -22280,7 +22280,13 @@ async function sync(options) {
22280
22280
  "carousel-media": "Chat",
22281
22281
  "chat-bubble": "Chat",
22282
22282
  "chat-composer": "Chat",
22283
+ "contact-list-item": "Chat",
22284
+ "date-divider": "Chat",
22283
22285
  "doc-media": "Chat",
22286
+ "image-media": "Chat",
22287
+ "reply-quote": "Chat",
22288
+ "system-message": "Chat",
22289
+ "unread-separator": "Chat",
22284
22290
  "video-media": "Chat",
22285
22291
  "event-selector": "Webhook",
22286
22292
  "key-value-input": "Webhook",
@@ -22307,8 +22313,8 @@ async function sync(options) {
22307
22313
  "ivr-bot": "AI Bot"
22308
22314
  };
22309
22315
  if (!options.yes && toAdd.length > 0) {
22310
- const uiToAdd = toAdd.filter((c) => registry[c].category !== "custom");
22311
- const customToAdd = toAdd.filter((c) => registry[c].category === "custom");
22316
+ const uiToAdd = toAdd.filter((c) => !CUSTOM_GROUPS[c]);
22317
+ const customToAdd = toAdd.filter((c) => !!CUSTOM_GROUPS[c]);
22312
22318
  const picked = [];
22313
22319
  if (uiToAdd.length > 0) {
22314
22320
  console.log(chalk5.cyan.bold(" \u2500\u2500 Components \u2500\u2500\n"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myoperator-ui",
3
- "version": "0.0.216-beta.7",
3
+ "version": "0.0.216-beta.8",
4
4
  "description": "CLI for adding myOperator UI components to your project",
5
5
  "type": "module",
6
6
  "exports": "./dist/index.js",