@hasna/contacts 0.6.20 → 0.6.21
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/dist/cli/index.js +2 -5
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -25700,10 +25700,6 @@ function registerEventCommands(program, options) {
|
|
|
25700
25700
|
});
|
|
25701
25701
|
return events;
|
|
25702
25702
|
}
|
|
25703
|
-
function registerEventsCommands(program, options) {
|
|
25704
|
-
registerWebhookCommands(program, options);
|
|
25705
|
-
registerEventCommands(program, options);
|
|
25706
|
-
}
|
|
25707
25703
|
function parseNumber(value) {
|
|
25708
25704
|
const parsed = Number(value);
|
|
25709
25705
|
if (!Number.isFinite(parsed))
|
|
@@ -28252,5 +28248,6 @@ registerCoreCommands(program);
|
|
|
28252
28248
|
registerCrmCommands(program);
|
|
28253
28249
|
registerAdvancedCommands(program);
|
|
28254
28250
|
registerCloudCommands(program, "contacts");
|
|
28255
|
-
|
|
28251
|
+
registerWebhookCommands(program, { source: "contacts" });
|
|
28252
|
+
registerEventCommands(program, { source: "contacts", eventsCommandName: "hasna-events" });
|
|
28256
28253
|
program.parse(process.argv);
|