@withone/cli 1.39.0 → 1.39.1
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/index.js +8 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6287,6 +6287,14 @@ async function testSyncProfile(api, profile) {
|
|
|
6287
6287
|
});
|
|
6288
6288
|
return report;
|
|
6289
6289
|
}
|
|
6290
|
+
if (actionDetails.tags?.includes("custom")) {
|
|
6291
|
+
checks.push({
|
|
6292
|
+
name: "action is passthrough (not custom)",
|
|
6293
|
+
ok: false,
|
|
6294
|
+
detail: `Action ${profile.actionId} is tagged "custom". Sync only supports passthrough actions. Run 'one actions search ${profile.platform} "${profile.model}"' to find one.`
|
|
6295
|
+
});
|
|
6296
|
+
return report;
|
|
6297
|
+
}
|
|
6290
6298
|
let responseData;
|
|
6291
6299
|
try {
|
|
6292
6300
|
const result = await api.executePassthroughRequest({
|