@getsupervisor/agents-studio-sdk 1.41.2-patch.8 → 1.41.2-patch.9

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.cjs CHANGED
@@ -1191,7 +1191,7 @@ function createAgentsApi(cfg, relatedApis) {
1191
1191
  if (Array.isArray(selection)) {
1192
1192
  return selection;
1193
1193
  }
1194
- return Object.entries(selection).filter(([, enabled]) => Boolean(enabled)).map(([component]) => component);
1194
+ return Object.entries(selection).filter(([, enabled]) => enabled).map(([component]) => component);
1195
1195
  };
1196
1196
  const buildCloneAgentRequest = (payload) => {
1197
1197
  const { clone, ...rest } = payload;