@toothfairyai/cli 1.0.15 → 1.0.16
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/bin/toothfairy.js +4 -4
- package/package.json +1 -1
package/bin/toothfairy.js
CHANGED
|
@@ -380,7 +380,6 @@ program
|
|
|
380
380
|
options.customerId,
|
|
381
381
|
options.providerId,
|
|
382
382
|
customerInfo,
|
|
383
|
-
attachments,
|
|
384
383
|
(eventType, eventData) => {
|
|
385
384
|
allEvents.push({ event_type: eventType, event_data: eventData });
|
|
386
385
|
|
|
@@ -391,7 +390,8 @@ program
|
|
|
391
390
|
)
|
|
392
391
|
);
|
|
393
392
|
}
|
|
394
|
-
}
|
|
393
|
+
},
|
|
394
|
+
attachments
|
|
395
395
|
);
|
|
396
396
|
|
|
397
397
|
console.log(JSON.stringify(allEvents, null, 2));
|
|
@@ -439,7 +439,6 @@ program
|
|
|
439
439
|
options.customerId,
|
|
440
440
|
options.providerId,
|
|
441
441
|
customerInfo,
|
|
442
|
-
attachments,
|
|
443
442
|
(eventType, eventData) => {
|
|
444
443
|
if (options.verbose) {
|
|
445
444
|
// Verbose mode: show all event details
|
|
@@ -546,7 +545,8 @@ program
|
|
|
546
545
|
console.error(chalk.red(`\n❌ Error: ${errorMsg}`));
|
|
547
546
|
process.exit(1);
|
|
548
547
|
}
|
|
549
|
-
}
|
|
548
|
+
},
|
|
549
|
+
attachments
|
|
550
550
|
);
|
|
551
551
|
|
|
552
552
|
// Clean up spinner after streaming completes
|