@base44-preview/cli 0.1.2-pr.560.079a819 → 0.1.2-pr.560.cf66e4d

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 CHANGED
@@ -244239,7 +244239,8 @@ async function deployAll(projectData, options) {
244239
244239
  });
244240
244240
  await agentResource.push(agents);
244241
244241
  await authConfigResource.push(authConfig);
244242
- const connectorResults = connectors.length > 0 ? (await pushConnectors(connectors)).results : [];
244242
+ const skipConnectorSync = connectors.length === 0 && hasWorkspaceApiKeyAuth();
244243
+ const connectorResults = skipConnectorSync ? [] : (await pushConnectors(connectors)).results;
244243
244244
  if (project.site?.outputDirectory) {
244244
244245
  const outputDir = resolve2(project.root, project.site.outputDirectory);
244245
244246
  const { appUrl } = await deploySite(outputDir);
@@ -253824,7 +253825,8 @@ async function fetchLogsForFunctions(functionNames, options, availableFunctionNa
253824
253825
  }
253825
253826
  throw error48;
253826
253827
  }
253827
- allEntries.push(...logs.map((entry) => normalizeLogEntry(entry, functionName)));
253828
+ const matchingLogs = filters.level ? logs.filter((entry) => entry.level === filters.level) : logs;
253829
+ allEntries.push(...matchingLogs.map((entry) => normalizeLogEntry(entry, functionName)));
253828
253830
  }
253829
253831
  if (functionNames.length > 1) {
253830
253832
  const order = options.order?.toUpperCase() === "ASC" ? 1 : -1;
@@ -262573,4 +262575,4 @@ export {
262573
262575
  CLIExitError
262574
262576
  };
262575
262577
 
262576
- //# debugId=AF0A655FA851A06864756E2164756E21
262578
+ //# debugId=E15997208358C91664756E2164756E21