|
78839
|
2020
|
0
|
2026-04-24T13:50:42.150752+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-24/1777 /Users/lukas/.screenpipe/data/data/2026-04-24/1777038642150_m2.jpg...
|
PhpStorm
|
faVsco.js – AutomatedReportsRepository.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20508-notify-before-AJ Project: faVsco.js, menu
JY-20508-notify-before-AJ-report-expiration, menu
Start Listening for PHP Debug Connections
ReportControllerTest
Run 'ReportControllerTest'
Debug 'ReportControllerTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
16
7
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Repositories;
use Carbon\CarbonImmutable;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Support\Carbon;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Pagination\LengthAwarePaginator;
use Illuminate\Support\Facades\DB;
use Jiminny\Models\AutomatedReport;
use Jiminny\Models\AutomatedReportResult;
use Jiminny\Models\Team;
use Jiminny\Models\User;
use Jiminny\Services\Kiosk\AutomatedReports\AutomatedReportsService;
use Jiminny\Services\Kiosk\AutomatedReports\ReportSort;
use Jiminny\Services\Kiosk\AutomatedReports\ReportSortDirection;
class AutomatedReportsRepository
{
/**
* Create a new automated report
*
* @param array $data
*
* @return AutomatedReport
*/
public function create(array $data): AutomatedReport
{
return AutomatedReport::create($data);
}
/**
* Find an automated report by UUID
*
* @param string $uuid
*
* @return AutomatedReport|null
*/
public function findByUuid(string $uuid): ?AutomatedReport
{
return AutomatedReport::where('uuid', AutomatedReport::toOptimized($uuid))->first();
}
public function findByIdOrUuid(string $idOrUuid): ?AutomatedReport
{
if (is_numeric($idOrUuid)) {
return AutomatedReport::find((int) $idOrUuid);
}
return AutomatedReport::where('uuid', AutomatedReport::toOptimized($idOrUuid))->first();
}
/**
* Retrieve all standard (non-Ask Jiminny) automated reports.
*
* @param string $sortColumn The column to sort by. Allowed values: 'created_by', 'created_at'. Defaults to 'created_at'.
* @param string $sortDirection The sort direction. Allowed values: 'asc', 'desc'. Defaults to 'desc'.
*
* @return Collection<AutomatedReport>
*/
public function getAllStandardReports(
string $sortColumn = 'created_at',
string $sortDirection = 'desc'
): Collection {
return $this->buildSortedQuery($sortColumn, $sortDirection)
->whereNot('type', AutomatedReportsService::TYPE_ASK_JIMINNY)
->get();
}
/**
* Retrieve all Ask Jiminny reports created by the given user.
*
* @param User $user The user whose reports to retrieve.
* @param string $sortColumn The column to sort by. Allowed values: 'created_by', 'created_at'. Defaults to 'created_at'.
* @param string $sortDirection The sort direction. Allowed values: 'asc', 'desc'. Defaults to 'desc'.
*
* @return Collection<AutomatedReport>
*/
public function getAskJiminnyReportsByUser(
User $user,
string $sortColumn = 'created_at',
string $sortDirection = 'desc'
): Collection {
return $this->buildSortedQuery($sortColumn, $sortDirection)
->where('type', AutomatedReportsService::TYPE_ASK_JIMINNY)
->where('created_by', $user->getId())
->get();
}
private function buildSortedQuery(string $sortColumn, string $sortDirection): \Illuminate\Database\Eloquent\Builder
{
$allowedColumns = ['created_by', 'created_at'];
if (! in_array($sortColumn, $allowedColumns)) {
$sortColumn = 'created_at';
}
$sortDirection = strtolower($sortDirection) === 'asc' ? 'asc' : 'desc';
$query = AutomatedReport::query()->with(['creator', 'team']);
if ($sortColumn === 'created_by') {
$query->leftJoin('users', 'users.id', '=', 'automated_reports.created_by')
->orderByRaw("users.name COLLATE utf8mb4_unicode_ci {$sortDirection}")
->select('automated_reports.*');
} else {
$query->orderBy($sortColumn, $sortDirection);
}
return $query;
}
/**
* Get all active Ask Jiminny reports whose expiry date has passed.
*
* @return Collection<AutomatedReport>
*/
public function getExpiredActiveAskJiminnyReports(): Collection
{
return AutomatedReport::where('status', true)
->where('type', AutomatedReportsService::TYPE_ASK_JIMINNY)
->whereNotNull('expires_at')
->where('expires_at', '<', now()->toDateString())
->get();
}
/**
* Get all active Ask Jiminny reports that expire exactly on the given date.
*
* @return Collection<AutomatedReport>
*/
public function getActiveAskJiminnyReportsExpiringOn(CarbonImmutable $date): Collection
{
return AutomatedReport::with('creator')
->where('status', true)
->where('type', AutomatedReportsService::TYPE_ASK_JIMINNY)
->whereNotNull('expires_at')
->whereDate('expires_at', $date->toDateString())
->get();
}
/**
* Get all active and enabled reports with active teams for the specified frequency.
*
* @param string $frequency
*
* @return Collection<AutomatedReport>
*/
public function getActiveReportsByFrequency(string $frequency): Collection
{
return AutomatedReport::where('automated_reports.status', true)
->where('automated_reports.frequency', $frequency)
->join('teams', 'automated_reports.team_id', '=', 'teams.id')
->where('teams.status', Team::STATUS_ACTIVE)
->where(function ($query) {
$query->whereNull('automated_reports.expires_at')
->orWhere('automated_reports.expires_at', '>=', now()->toDateString());
})
->select('automated_reports.*')
->get();
}
/**
* Update an automated report
*
* @param AutomatedReport $report
* @param array $data
*
* @return AutomatedReport
*/
public function update(AutomatedReport $report, array $data): AutomatedReport
{
$report->update($data);
return $report;
}
/**
* Create a new automated report result.
*
* @param array $data The data to create the automated report result with.
*
* @return AutomatedReportResult The newly created automated report result.
*/
public function createResult(array $data): AutomatedReportResult
{
return AutomatedReportResult::create($data);
}
/**
* Find an automated report result by UUID.
*
* @param string $uuid The UUID to find the automated report result with.
*
* @return AutomatedReportResult|null The automated report result if found, otherwise null.
*/
public function findResultByUuid(string $uuid): ?AutomatedReportResult
{
return AutomatedReportResult::where('uuid', AutomatedReportResult::toOptimized($uuid))->first();
}
public function findResultByUuidForUser(string $uuid, User $user): ?AutomatedReportResult
{
return AutomatedReportResult::query()
->where('uuid', AutomatedReportResult::toOptimized($uuid))
->whereHas('report', static function ($query) use ($user): void {
$query->where('team_id', $user->getTeamId())
->where('created_by', $user->getId());
})
->first();
}
public function findChildResult(AutomatedReportResult $result, string $type): ?AutomatedReportResult
{
return AutomatedReportResult::query()
->where('parent_id', $result->getId())
->where('media_type', $type)
->first();
}
public function findLatestDefaultOrFailedResult(AutomatedReport $report): ?AutomatedReportResult
{
return AutomatedReportResult::query()
->where('report_id', $report->getId())
->whereIn('status', [AutomatedReportResult::STATUS_DEFAULT, AutomatedReportResult::STATUS_FAILED])
->latest()
->first();
}
public function getGeneratedNotSentResults(): Collection
{
return AutomatedReportResult::query()
->whereNotNull('generated_at')
->whereNull('sent_at')
->where('status', AutomatedReportResult::STATUS_GENERATED)
->whereHas('report')
->with('report')
->get();
}
public function getPaginatedUserReports(
User $user,
ReportSort $sort,
ReportSortDirection $sortDirection,
int $resultsPerPage,
int $page,
?Carbon $fromDate,
?Carbon $toDate,
array $teamIds,
array $reportTypes,
?string $name,
): LengthAwarePaginator {
$query = AutomatedReportResult::query()
->whereNotNull('automated_report_results.generated_at')
->join('automated_reports', 'automated_report_results.report_id', '=', 'automated_reports.id')
->where(fn (Builder $q) => $this->applyUserAccessScope($q, $user))
->orderByRaw("$sort->value COLLATE utf8mb4_unicode_ci {$sortDirection->value}")
->select('automated_report_results.*')
->with('report.team');
if ($fromDate !== null && $toDate !== null) {
$query->whereBetween('generated_at', [$fromDate, $toDate]);
}
if (! empty($teamIds)) {
$query->where(function ($q) use ($teamIds) {
foreach ($teamIds as $id) {
$q->orWhereJsonContains('automated_reports.groups', $id);
}
});
}
if (! empty($reportTypes)) {
$query->whereIn('automated_reports.type', $reportTypes);
}
if (! empty($name)) {
$query->whereLike('name', "%$name%");
}
return $query->paginate($resultsPerPage, ['*'], 'page', $page);
}
public function countUserReports(User $user): int
{
return AutomatedReportResult::query()
->whereNotNull('generated_at')
->whereNotNull('sent_at')
->whereHas('report', function ($q) use ($user) {
$q->where('team_id', $user->getTeamId())
->whereJsonContains('recipients->users', $user->getId());
})
->count();
}
/**
* Restrict a query on the automated_reports table to reports the given user is allowed to see.
*
* Matches the customer-facing audience:
* - explicit user recipients (recipients.users)
* - members of any of the report's groups (Ask Jiminny reports)
*/
private function applyUserAccessScope(Builder $query, User $user): void
{
$userId = $user->getId();
$groupId = $user->getGroupId();
$query
->where('automated_reports.team_id', $user->getTeamId())
->where(function (Builder $q) use ($userId, $groupId): void {
$q->whereJsonContains('automated_reports.recipients->users', $userId);
if ($groupId !== null) {
$q->orWhere(function (Builder $sub) use ($groupId): void {
$sub->where('automated_reports.type', AutomatedReportsService::TYPE_ASK_JIMINNY)
->whereJsonContains('automated_reports.groups', $groupId);
});
}
});
}
/**
* Get report IDs for a specific team
*
* @param Team $team
*
* @return \Illuminate\Support\Collection
*/
public function getReportIdsByTeam(Team $team): \Illuminate\Support\Collection
{
return AutomatedReport::where('team_id', $team->getId())->pluck('id');
}
/**
* Get all reports for a specific team
*
* @param Team $team
*
* @return Collection
*/
public function getReportsByTeam(Team $team): Collection
{
return AutomatedReport::where('team_id', $team->getId())->get();
}
/**
* Get all report results for a specific report
*
* @param AutomatedReport $report
*
* @return Collection
*/
public function getResultsByReport(AutomatedReport $report): Collection
{
return $this->getResultsByReportQuery($report)->get();
}
public function getResultsByReportQuery(AutomatedReport $report): Builder
{
return AutomatedReportResult::where('report_id', $report->getId());
}
public function getReportResultsQueryForRetention(Team $team, CarbonImmutable $retentionDate): Builder
{
$reportIds = $this->getReportIdsByTeam($team);
return AutomatedReportResult::query()->whereIn('report_id', $reportIds)
->whereRaw('IFNULL(generated_at, created_at) <= ?', [$retentionDate]);
}
/**
* @param int|null $teamId Optional team ID to filter results
*
* @return \Illuminate\Support\Collection<int, int> Collection of team IDs
*/
public function getTeamIdsWithReportsResults(?int $teamId = null): \Illuminate\Support\Collection
{
$query = DB::table('automated_reports')
->join('teams', 'automated_reports.team_id', '=', 'teams.id')
->select('teams.id')
->distinct();
if ($teamId !== null) {
$query->where('teams.id', $teamId);
}
return $query->pluck('teams.id');
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
200
Previous Highlighted Error
Next Highlighted Error
[2026-04-24 10:24:09] local.INFO: [automated-reports] Started {"correlation_id":"4ef6e232-88d2-4935-87d3-62ff95c3b2d5","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:09] local.INFO: [automated-reports] Checking conditions {"isMonday":false,"isWeekend":false,"isFirstDayOfMonth":false,"currentMonth":4,"isQuarterlyMonth":true} {"correlation_id":"4ef6e232-88d2-4935-87d3-62ff95c3b2d5","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:09] local.INFO: [automated-reports] Processing daily reports {"correlation_id":"4ef6e232-88d2-4935-87d3-62ff95c3b2d5","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:10] local.INFO: [automated-reports] Found 1 daily reports to process {"correlation_id":"4ef6e232-88d2-4935-87d3-62ff95c3b2d5","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:10] local.INFO: [automated-reports] Dispatching Generate Report job for report {"reportUuid":"4f6ca2b5-1993-48aa-99ad-b66f19f15d43","teamId":1,"frequency":"weekly","type":"ask_jiminny"} {"correlation_id":"4ef6e232-88d2-4935-87d3-62ff95c3b2d5","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:10] local.INFO: [automated-reports] Completed {"correlation_id":"4ef6e232-88d2-4935-87d3-62ff95c3b2d5","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:11] local.INFO: [AskJiminnyReport:Generate] Started {"automatedReportUuid":"4f6ca2b5-1993-48aa-99ad-b66f19f15d43"} {"correlation_id":"00ca4f00-8a80-4bdd-b401-804183825595","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:15] local.INFO: [AskJiminnyReport] Fetched activity IDs for saved search {"saved_search_id":1977,"user_id":143,"activity_count":0} {"correlation_id":"00ca4f00-8a80-4bdd-b401-804183825595","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:15] local.INFO: [AskJiminnyReport:Generate] Fetched activity IDs {"automatedReportUuid":"4f6ca2b5-1993-48aa-99ad-b66f19f15d43","activityCount":0} {"correlation_id":"00ca4f00-8a80-4bdd-b401-804183825595","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:15] local.INFO: [AskJiminnyReport:Generate] Not enough activities, skipped {"automatedReportUuid":"4f6ca2b5-1993-48aa-99ad-b66f19f15d43","activityCount":0} {"correlation_id":"00ca4f00-8a80-4bdd-b401-804183825595","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:15] local.INFO: [AskJiminnyReport:Generate] Dispatched not-generated notifications {"automatedReportUuid":"4f6ca2b5-1993-48aa-99ad-b66f19f15d43","recipientsCount":1} {"correlation_id":"00ca4f00-8a80-4bdd-b401-804183825595","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:18] local.INFO: [Send Report Not Generated Mail] Email sent {"uuid":"dcb12181-9de1-4ef0-9d45-fb4ea6fd0778","email":"[EMAIL]"} {"correlation_id":"27ada0cc-4eb3-49c4-9115-19ece9e24576","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:18] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"d9261d90-9df8-4eb4-8dcc-54b29d8e39cb","trace_id":"5c4d23da-1340-4066-b354-55bfb79c0f4a"}
[2026-04-24 10:24:18] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {"correlation_id":"d9261d90-9df8-4eb4-8dcc-54b29d8e39cb","trace_id":"5c4d23da-1340-4066-b354-55bfb79c0f4a"}
[2026-04-24 10:24:18] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"d9261d90-9df8-4eb4-8dcc-54b29d8e39cb","trace_id":"5c4d23da-1340-4066-b354-55bfb79c0f4a"}
[2026-04-24 10:24:26] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"cdcdc062-b51a-4f27-9d4c-95ef48442391","trace_id":"e7701141-f61a-431e-8fac-697bccd67630"}
[2026-04-24 10:24:26] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"cdcdc062-b51a-4f27-9d4c-95ef48442391","trace_id":"e7701141-f61a-431e-8fac-697bccd67630"}
[2026-04-24 10:24:35] local.NOTICE: Monitoring start {"correlation_id":"862cdf2d-46ca-4f7b-966b-79a5f2648771","trace_id":"961d76fe-7891-42e6-9d2e-c1dec32ec53b"}
[2026-04-24 10:24:35] local.NOTICE: Monitoring end {"correlation_id":"862cdf2d-46ca-4f7b-966b-79a5f2648771","trace_id":"961d76fe-7891-42e6-9d2e-c1dec32ec53b"}
[2026-04-24 10:24:45] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"3529a427-eebb-4c61-9efb-be7b720d4dc3","trace_id":"63b1fd43-6c0e-44d1-a8d4-a7aaa509815d"}
[2026-04-24 10:24:45] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"3529a427-eebb-4c61-9efb-be7b720d4dc3","trace_id":"63b1fd43-6c0e-44d1-a8d4-a7aaa509815d"}
[2026-04-24 10:24:53] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"ebdfa028-0918-4dff-8eec-bafc1d997f9d","trace_id":"dd8b3479-50fa-4fc2-b3f9-581a6250baea"}
[2026-04-24 10:24:53] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"ebdfa028-0918-4dff-8eec-bafc1d997f9d","trace_id":"dd8b3479-50fa-4fc2-b3f9-581a6250baea"}
[2026-04-24 10:24:53] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"ebdfa028-0918-4dff-8eec-bafc1d997f9d","trace_id":"dd8b3479-50fa-4fc2-b3f9-581a6250baea"}
[2026-04-24 10:24:53] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"ebdfa028-0918-4dff-8eec-bafc1d997f9d","trace_id":"dd8b3479-50fa-4fc2-b3f9-581a6250baea"}
[2026-04-24 10:25:01] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"6ace59e3-341b-49e4-8e3f-36ea22423005","trace_id":"53678e7f-c854-4c0f-bc6d-c1ad8ba49696"}
[2026-04-24 10:25:01] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:23:00, 2026-04-24 10:25:00] {"correlation_id":"6ace59e3-341b-49e4-8e3f-36ea22423005","trace_id":"53678e7f-c854-4c0f-bc6d-c1ad8ba49696"}
[2026-04-24 10:25:01] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:23:00, 2026-04-24 10:25:00] {"correlation_id":"6ace59e3-341b-49e4-8e3f-36ea22423005","trace_id":"53678e7f-c854-4c0f-bc6d-c1ad8ba49696"}
[2026-04-24 10:25:01] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"6ace59e3-341b-49e4-8e3f-36ea22423005","trace_id":"53678e7f-c854-4c0f-bc6d-c1ad8ba49696"}
[2026-04-24 10:25:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"11e8b9cf-a3f0-49b8-9066-e1f16e743f68","trace_id":"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35"}
[2026-04-24 10:25:10] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"11e8b9cf-a3f0-49b8-9066-e1f16e743f68","trace_id":"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35"}
[2026-04-24 10:25:10] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"11e8b9cf-a3f0-49b8-9066-e1f16e743f68","trace_id":"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35"}
[2026-04-24 10:25:10] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"11e8b9cf-a3f0-49b8-9066-e1f16e743f68","trace_id":"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35"}
[2026-04-24 10:25:10] local.ERROR: [Aircall] Re-activating webhooks failed {"team_id":1,"reason":"{\"message\":\"Forbidden\"}"} {"correlation_id":"11e8b9cf-a3f0-49b8-9066-e1f16e743f68","trace_id":"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35"}
[2026-04-24 10:25:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"11e8b9cf-a3f0-49b8-9066-e1f16e743f68","trace_id":"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35"}
[2026-04-24 10:25:18] local.INFO: [RetryFailedDownloads] Starting {"options":{"from":null,"to":null,"help":false,"silent":false,"quiet":false,"verbose":false,"version":false,"ansi":null,"no-interaction":false,"env":null}} {"correlation_id":"6b84611f-1af3-4e64-8c1c-c963ed5bcfa7","trace_id":"056c6533-0c1b-480c-93bb-4b7c788b5dc4"}
[2026-04-24 10:26:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"cef03617-e15a-498b-8751-efa9b8808ec9","trace_id":"793af5d4-ea14-4e7d-bf10-bdf65c4b41b9"}
[2026-04-24 10:26:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {"correlation_id":"cef03617-e15a-498b-8751-efa9b8808ec9","trace_id":"793af5d4-ea14-4e7d-bf10-bdf65c4b41b9"}
[2026-04-24 10:26:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"cef03617-e15a-498b-8751-efa9b8808ec9","trace_id":"793af5d4-ea14-4e7d-bf10-bdf65c4b41b9"}
[2026-04-24 10:26:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"d916f4b2-7912-4b9d-a733-794daab3d108","trace_id":"75dc6489-d592-4de8-968d-4f9e9c4a2a57"}
[2026-04-24 10:26:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"d916f4b2-7912-4b9d-a733-794daab3d108","trace_id":"75dc6489-d592-4de8-968d-4f9e9c4a2a57"}
[2026-04-24 10:26:23] local.NOTICE: Monitoring start {"correlation_id":"9e9c1b30-7cf9-4944-9e1e-5a81e68a65df","trace_id":"000992c5-8e61-4246-a35f-09f1d832ddd1"}
[2026-04-24 10:26:23] local.NOTICE: Monitoring end {"correlation_id":"9e9c1b30-7cf9-4944-9e1e-5a81e68a65df","trace_id":"000992c5-8e61-4246-a35f-09f1d832ddd1"}
[2026-04-24 10:26:28] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"f8026235-b956-4aaf-9600-b7b93e3d9c74","trace_id":"759b3dbc-2e19-46cd-91c9-9065e063d32e"}
[2026-04-24 10:26:28] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"f8026235-b956-4aaf-9600-b7b93e3d9c74","trace_id":"759b3dbc-2e19-46cd-91c9-9065e063d32e"}
[2026-04-24 10:26:33] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"4669b9f7-c3b1-4147-b391-8f8314c25042","trace_id":"aff20f19-1f01-4fed-98d7-8ecafcae8c6e"}
[2026-04-24 10:26:33] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"4669b9f7-c3b1-4147-b391-8f8314c25042","trace_id":"aff20f19-1f01-4fed-98d7-8ecafcae8c6e"}
[2026-04-24 10:26:33] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"4669b9f7-c3b1-4147-b391-8f8314c25042","trace_id":"aff20f19-1f01-4fed-98d7-8ecafcae8c6e"}
[2026-04-24 10:26:33] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"4669b9f7-c3b1-4147-b391-8f8314c25042","trace_id":"aff20f19-1f01-4fed-98d7-8ecafcae8c6e"}
[2026-04-24 10:26:39] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"23076007-fc54-415a-9900-2270769cd622","trace_id":"ffefe56f-2881-4273-9dd1-93b8efff8334"}
[2026-04-24 10:26:39] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:24:00, 2026-04-24 10:26:00] {"correlation_id":"23076007-fc54-415a-9900-2270769cd622","trace_id":"ffefe56f-2881-4273-9dd1-93b8efff8334"}
[2026-04-24 10:26:39] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:24:00, 2026-04-24 10:26:00] {"correlation_id":"23076007-fc54-415a-9900-2270769cd622","trace_id":"ffefe56f-2881-4273-9dd1-93b8efff8334"}
[2026-04-24 10:26:39] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"23076007-fc54-415a-9900-2270769cd622","trace_id":"ffefe56f-2881-4273-9dd1-93b8efff8334"}
[2026-04-24 10:26:44] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"cd5d0352-aec8-49be-8730-433061921ee7","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:44] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"cd5d0352-aec8-49be-8730-433061921ee7","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","usage":23540024,"real_usage":65011712,"pid":13878} {"correlation_id":"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.WARNING: [HubSpot] Account not connected for user {"userId":"33e34a7a-1c02-4f04-87ac-22c3a385e6e3","account":{"Jiminny\\Models\\SocialAccount":{"id":306,"sociable_id":109,"provider_user_id":"11348452","expires":1701077403,"refresh_token_expires":null,"provider":"hubspot","state":"full-refresh","auth_scope":null,"retry_after":null,"created_at":"2020-09-01 16:59:04","updated_at":"2023-11-27 09:30:03"}}} {"correlation_id":"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":109,"team_id":29} {"correlation_id":"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","provider":"hubspot","status":"disconnected","duration_ms":38.25,"usage":23605688,"real_usage":65011712,"pid":13878,"reason":"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect."} {"correlation_id":"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [SyncHubspotObjects] Starting sync {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","usage":23563904,"real_usage":65011712,"pid":13878} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [SocialAccountService] Token needs refreshing {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [SocialAccountService] Refreshing token from provider {"socialAccountId":1499,"provider":"hubspot","refreshToken":"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86","state":"connected"} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [SocialAccountObserver] Saving model {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:46] local.INFO: [SocialAccountService] Token refreshed {"socialAccountId":1499,"provider":"hubspot","state":"connected"} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"hubspot","crm_owner":148,"team_id":2} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:46] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {"team":2} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [Hubspot] Pagination completed {"team_id":2,"endpoint":"https://api.hubapi.com/crm/v3/objects/deals/search","total_requests":1,"total_records_fetched":0,"total_elapsed_seconds":0.6,"average_seconds_per_request":0.6} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [HubSpot] Synced opportunities {"team":2,"strategies":"lastModified","sync_count":0,"total":0,"last_synced_id":null,"duration_ms":635.09} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [SyncHubspotObjects] Sync finished {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","provider":"hubspot","status":"completed","duration_ms":2129.8,"usage":23740736,"real_usage":65011712,"pid":13878} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [SyncHubspotObjects] Starting sync {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","usage":23715400,"real_usage":65011712,"pid":13878} {"correlation_id":"09262b7b-a2e2-41d5-b42b-25f31846d7a8","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.WARNING: [HubSpot] Account not connected for user {"userId":"71e3aac5-fb66-47c5-a236-2d051ae3e319","account":null} {"correlation_id":"09262b7b-a2e2-41d5-b42b-25f31846d7a8","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":256,"team_id":49} {"correlation_id":"09262b7b-a2e2-41d5-b42b-25f31846d7a8","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"09262b7b-a2e2-41d5-b42b-25f31846d7a8","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"09262b7b-a2e2-41d5-b42b-25f31846d7a8","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [SyncHubspotObjects] Sync finished {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","provider":"hubspot","status":"disconnected","duration_ms":51.31,"usage":23689016,"real_usage":65011712,"pid":13878,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"09262b7b-a2e2-41d5-b42b-25f31846d7a8","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","usage":23649656,"real_usage":65011712,"pid":13878} {"correlation_id":"70df60f3-aed6-4daa-a246-71fb82f49d68","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.WARNING: [HubSpot] Account not connected for user {"userId":"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b","account":null} {"correlation_id":"70df60f3-aed6-4daa-a246-71fb82f49d68","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":130,"team_id":42} {"correlation_id":"70df60f3-aed6-4daa-a246-71fb82f49d68","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"70df60f3-aed6-4daa-a246-71fb82f49d68","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"70df60f3-aed6-4daa-a246-71fb82f49d68","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","provider":"hubspot","status":"disconnected","duration_ms":18.47,"usage":23692568,"real_usage":65011712,"pid":13878,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"70df60f3-aed6-4daa-a246-71fb82f49d68","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:49] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"42acc0c5-3653-49d1-a44a-19758cc28092","trace_id":"c0b07036-9e27-4742-a009-69972c67bced"}
[2026-04-24 10:26:49] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"42acc0c5-3653-49d1-a44a-19758cc28092","trace_id":"c0b07036-9e27-4742-a009-69972c67bced"}
[2026-04-24 10:26:59] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"55eab912-4003-455b-813c-4e3f8383acc8","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:26:59] local.INFO: [EmailSchedule] STARTING Inbox Sync {"host":"docker_lamp_1"} {"correlation_id":"55eab912-4003-455b-813c-4e3f8383acc8","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:26:59] local.INFO: [EmailSchedule] FINISHED Inbox Sync {"host":"docker_lamp_1","events":2} {"correlation_id":"55eab912-4003-455b-813c-4e3f8383acc8","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:26:59] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"55eab912-4003-455b-813c-4e3f8383acc8","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:27:00] local.INFO: [Sync Mailbox] Sync start {"inbox_id":59} {"correlation_id":"be91dd09-c8e5-4e5d-a1e8-e1cc9979a32f","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {"correlation_id":"be91dd09-c8e5-4e5d-a1e8-e1cc9979a32f","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:27:00] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":59} {"correlation_id":"be91dd09-c8e5-4e5d-a1e8-e1cc9979a32f","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:27:00] local.INFO: [Sync Mailbox] Sync start {"inbox_id":212} {"correlation_id":"da707eb9-3c1d-487e-8c92-1d018e0ca29d","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:27:00] local.WARNING: [Salesforce] Account not connected for user {"userId":"641f1acb-16b8-42d1-8726-df52979dad0e","account":{"Jiminny\\Models\\SocialAccount":{"id":1500,"sociable_id":143,"provider_user_id":"0052g000003frelAAA","expires":null,"refresh_token_expires":null,"provider":"salesforce","state":"full-refresh","auth_scope":"refresh_token web api","retry_after":null,"created_at":"2026-02-06 08:39:03","updated_at":"2026-04-24 06:38:47"}}} {"correlation_id":"da707eb9-3c1d-487e-8c92-1d018e0ca29d","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:27:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"da707eb9-3c1d-487e-8c92-1d018e0ca29d","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:27:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"da707eb9-3c1d-487e-8c92-1d018e0ca29d","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:27:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"da707eb9-3c1d-487e-8c92-1d018e0ca29d","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:27:00] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {"correlation_id":"da707eb9-3c1d-487e-8c92-1d018e0ca29d","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:27:00] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":212} {"correlation_id":"da707eb9-3c1d-487e-8c92-1d018e0ca29d","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:28:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"d1e33635-9ed1-4df1-86f1-8a9fbb4a9aad","trace_id":"c6abf4b5-1c8f-4bdf-a4ee-99e15a883fdc"}
[2026-04-24 10:28:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {"correlation_id":"d1e33635-9ed1-4df1-86f1-8a9fbb4a9aad","trace_id":"c6abf4b5-1c8f-4bdf-a4ee-99e15a883fdc"}
[2026-04-24 10:28:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"d1e33635-9ed1-4df1-86f1-8a9fbb4a9aad","trace_id":"c6abf4b5-1c8f-4bdf-a4ee-99e15a883fdc"}
[2026-04-24 10:28:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"62e59e15-b6bd-4952-be03-365a8341880d","trace_id":"ef3bd6bb-ab65-4e80-82cd-5e91b176b702"}
[2026-04-24 10:28:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"62e59e15-b6bd-4952-be03-365a8341880d","trace_id":"ef3bd6bb-ab65-4e80-82cd-5e91b176b702"}
[2026-04-24 10:28:18] local.NOTICE: Monitoring start {"correlation_id":"fde8ab81-2a83-4068-9a10-f407d3a55d8e","trace_id":"5bad50f3-1b72-4f42-82d1-01b230b9c096"}
[2026-04-24 10:28:18] local.NOTICE: Monitoring end {"correlation_id":"fde8ab81-2a83-4068-9a10-f407d3a55d8e","trace_id":"5bad50f3-1b72-4f42-82d1-01b230b9c096"}
[2026-04-24 10:28:25] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"3b9652a6-4242-49c2-a3c5-a0ff70d13469","trace_id":"8a1a2a8c-7fa6-4a35-b189-6165f66e1ae9"}
[2026-04-24 10:28:25] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"3b9652a6-4242-49c2-a3c5-a0ff70d13469","trace_id":"8a1a2a8c-7fa6-4a35-b189-6165f66e1ae9"}
[2026-04-24 10:28:33] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"983ba273-68c0-472a-bd0f-83c4705711a3","trace_id":"382d4d84-d0e5-4f63-96f1-bfb6c0b366ea"}
[2026-04-24 10:28:33] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"983ba273-68c0-472a-bd0f-83c4705711a3","trace_id":"382d4d84-d0e5-4f63-96f1-bfb6c0b366ea"}
[2026-04-24 10:28:33] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"983ba273-68c0-472a-bd0f-83c4705711a3","trace_id":"382d4d84-d0e5-4f63-96f1-bfb6c0b366ea"}
[2026-04-24 10:28:33] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"983ba273-68c0-472a-bd0f-83c4705711a3","trace_id":"382d4d84-d0e5-4f63-96f1-bfb6c0b366ea"}
[2026-04-24 10:28:39] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"26102185-655f-4837-ba5d-ed80e510f81b","trace_id":"8eca9c30-8319-480b-b138-c96d558f3930"}
[2026-04-24 10:28:39] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:26:00, 2026-04-24 10:28:00] {"correlation_id":"26102185-655f-4837-ba5d-ed80e510f81b","trace_id":"8eca9c30-8319-480b-b138-c96d558f3930"}
[2026-04-24 10:28:39] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:26:00, 2026-04-24 10:28:00] {"correlation_id":"26102185-655f-4837-ba5d-ed80e510f81b","trace_id":"8eca9c30-8319-480b-b138-c96d558f3930"}
[2026-04-24 10:28:39] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"26102185-655f-4837-ba5d-ed80e510f81b","trace_id":"8eca9c30-8319-480b-b138-c96d558f3930"}
[2026-04-24 10:28:45] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"calendar:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454","trace_id":"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27"}
[2026-04-24 10:28:45] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"6daa2a6a-4861-4a83-97d1-720d8627b90c","trace_id":"1a8fc095-aca6-48d5-91f7-775fb9010d5b"}
[2026-04-24 10:28:45] local.NOTICE: Calendar sync start {"correlation_id":"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454","trace_id":"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27"}
[2026-04-24 10:28:46] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"6daa2a6a-4861-4a83-97d1-720d8627b90c","trace_id":"1a8fc095-aca6-48d5-91f7-775fb9010d5b"}
[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1393,"provider":"google"} {"correlation_id":"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454","trace_id":"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27"}
[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Token needs refreshing {"socialAccountId":1393,"provider":"google"} {"correlation_id":"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454","trace_id":"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27"}
[2026-04-24 10:28:46] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454","trace_id":"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27"}
[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Refreshing token from provider {"socialAccountId":1393,"provider":"google","refreshToken":"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf","state":"full-refresh"} {"correlation_id":"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454","trace_id":"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27"}
[2026-04-24 10:28:46] local.ERROR: [SocialAccountService] Failed to refresh token {"socialAccountId":1393,"provider":"google","responseBody":{"error":"invalid_grant","error_description":"Account has been deleted"}} {"correlation_id":"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454","trace_i...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20508-notify-before-AJ-report-expiration, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.10771277,"height":0.025538707},"help_text":"Git Branch: JY-20508-notify-before-AJ-report-expiration","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.83976066,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"ReportControllerTest","depth":6,"bounds":{"left":0.8550532,"top":0.019952115,"width":0.06017287,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'ReportControllerTest'","depth":6,"bounds":{"left":0.91522604,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'ReportControllerTest'","depth":6,"bounds":{"left":0.9265292,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9378325,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96575797,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.97706115,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.98836434,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"16","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.009640957,"height":0.0},"role_description":"text"},{"role":"AXStaticText","text":"7","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.0076462766,"height":0.0},"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.006981383,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Repositories;\n\nuse Carbon\\CarbonImmutable;\nuse Illuminate\\Database\\Eloquent\\Builder;\nuse Illuminate\\Support\\Carbon;\nuse Illuminate\\Database\\Eloquent\\Collection;\nuse Illuminate\\Pagination\\LengthAwarePaginator;\nuse Illuminate\\Support\\Facades\\DB;\nuse Jiminny\\Models\\AutomatedReport;\nuse Jiminny\\Models\\AutomatedReportResult;\nuse Jiminny\\Models\\Team;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Services\\Kiosk\\AutomatedReports\\AutomatedReportsService;\nuse Jiminny\\Services\\Kiosk\\AutomatedReports\\ReportSort;\nuse Jiminny\\Services\\Kiosk\\AutomatedReports\\ReportSortDirection;\n\nclass AutomatedReportsRepository\n{\n /**\n * Create a new automated report\n *\n * @param array $data\n *\n * @return AutomatedReport\n */\n public function create(array $data): AutomatedReport\n {\n return AutomatedReport::create($data);\n }\n\n /**\n * Find an automated report by UUID\n *\n * @param string $uuid\n *\n * @return AutomatedReport|null\n */\n public function findByUuid(string $uuid): ?AutomatedReport\n {\n return AutomatedReport::where('uuid', AutomatedReport::toOptimized($uuid))->first();\n }\n\n public function findByIdOrUuid(string $idOrUuid): ?AutomatedReport\n {\n if (is_numeric($idOrUuid)) {\n return AutomatedReport::find((int) $idOrUuid);\n }\n\n return AutomatedReport::where('uuid', AutomatedReport::toOptimized($idOrUuid))->first();\n }\n\n /**\n * Retrieve all standard (non-Ask Jiminny) automated reports.\n *\n * @param string $sortColumn The column to sort by. Allowed values: 'created_by', 'created_at'. Defaults to 'created_at'.\n * @param string $sortDirection The sort direction. Allowed values: 'asc', 'desc'. Defaults to 'desc'.\n *\n * @return Collection<AutomatedReport>\n */\n public function getAllStandardReports(\n string $sortColumn = 'created_at',\n string $sortDirection = 'desc'\n ): Collection {\n return $this->buildSortedQuery($sortColumn, $sortDirection)\n ->whereNot('type', AutomatedReportsService::TYPE_ASK_JIMINNY)\n ->get();\n }\n\n /**\n * Retrieve all Ask Jiminny reports created by the given user.\n *\n * @param User $user The user whose reports to retrieve.\n * @param string $sortColumn The column to sort by. Allowed values: 'created_by', 'created_at'. Defaults to 'created_at'.\n * @param string $sortDirection The sort direction. Allowed values: 'asc', 'desc'. Defaults to 'desc'.\n *\n * @return Collection<AutomatedReport>\n */\n public function getAskJiminnyReportsByUser(\n User $user,\n string $sortColumn = 'created_at',\n string $sortDirection = 'desc'\n ): Collection {\n return $this->buildSortedQuery($sortColumn, $sortDirection)\n ->where('type', AutomatedReportsService::TYPE_ASK_JIMINNY)\n ->where('created_by', $user->getId())\n ->get();\n }\n\n private function buildSortedQuery(string $sortColumn, string $sortDirection): \\Illuminate\\Database\\Eloquent\\Builder\n {\n $allowedColumns = ['created_by', 'created_at'];\n if (! in_array($sortColumn, $allowedColumns)) {\n $sortColumn = 'created_at';\n }\n\n $sortDirection = strtolower($sortDirection) === 'asc' ? 'asc' : 'desc';\n\n $query = AutomatedReport::query()->with(['creator', 'team']);\n\n if ($sortColumn === 'created_by') {\n $query->leftJoin('users', 'users.id', '=', 'automated_reports.created_by')\n ->orderByRaw(\"users.name COLLATE utf8mb4_unicode_ci {$sortDirection}\")\n ->select('automated_reports.*');\n } else {\n $query->orderBy($sortColumn, $sortDirection);\n }\n\n return $query;\n }\n\n /**\n * Get all active Ask Jiminny reports whose expiry date has passed.\n *\n * @return Collection<AutomatedReport>\n */\n public function getExpiredActiveAskJiminnyReports(): Collection\n {\n return AutomatedReport::where('status', true)\n ->where('type', AutomatedReportsService::TYPE_ASK_JIMINNY)\n ->whereNotNull('expires_at')\n ->where('expires_at', '<', now()->toDateString())\n ->get();\n }\n\n /**\n * Get all active Ask Jiminny reports that expire exactly on the given date.\n *\n * @return Collection<AutomatedReport>\n */\n public function getActiveAskJiminnyReportsExpiringOn(CarbonImmutable $date): Collection\n {\n return AutomatedReport::with('creator')\n ->where('status', true)\n ->where('type', AutomatedReportsService::TYPE_ASK_JIMINNY)\n ->whereNotNull('expires_at')\n ->whereDate('expires_at', $date->toDateString())\n ->get();\n }\n\n /**\n * Get all active and enabled reports with active teams for the specified frequency.\n *\n * @param string $frequency\n *\n * @return Collection<AutomatedReport>\n */\n public function getActiveReportsByFrequency(string $frequency): Collection\n {\n return AutomatedReport::where('automated_reports.status', true)\n ->where('automated_reports.frequency', $frequency)\n ->join('teams', 'automated_reports.team_id', '=', 'teams.id')\n ->where('teams.status', Team::STATUS_ACTIVE)\n ->where(function ($query) {\n $query->whereNull('automated_reports.expires_at')\n ->orWhere('automated_reports.expires_at', '>=', now()->toDateString());\n })\n ->select('automated_reports.*')\n ->get();\n }\n\n /**\n * Update an automated report\n *\n * @param AutomatedReport $report\n * @param array $data\n *\n * @return AutomatedReport\n */\n public function update(AutomatedReport $report, array $data): AutomatedReport\n {\n $report->update($data);\n\n return $report;\n }\n\n /**\n * Create a new automated report result.\n *\n * @param array $data The data to create the automated report result with.\n *\n * @return AutomatedReportResult The newly created automated report result.\n */\n public function createResult(array $data): AutomatedReportResult\n {\n return AutomatedReportResult::create($data);\n }\n\n /**\n * Find an automated report result by UUID.\n *\n * @param string $uuid The UUID to find the automated report result with.\n *\n * @return AutomatedReportResult|null The automated report result if found, otherwise null.\n */\n public function findResultByUuid(string $uuid): ?AutomatedReportResult\n {\n return AutomatedReportResult::where('uuid', AutomatedReportResult::toOptimized($uuid))->first();\n }\n\n public function findResultByUuidForUser(string $uuid, User $user): ?AutomatedReportResult\n {\n return AutomatedReportResult::query()\n ->where('uuid', AutomatedReportResult::toOptimized($uuid))\n ->whereHas('report', static function ($query) use ($user): void {\n $query->where('team_id', $user->getTeamId())\n ->where('created_by', $user->getId());\n })\n ->first();\n }\n\n public function findChildResult(AutomatedReportResult $result, string $type): ?AutomatedReportResult\n {\n return AutomatedReportResult::query()\n ->where('parent_id', $result->getId())\n ->where('media_type', $type)\n ->first();\n }\n\n public function findLatestDefaultOrFailedResult(AutomatedReport $report): ?AutomatedReportResult\n {\n return AutomatedReportResult::query()\n ->where('report_id', $report->getId())\n ->whereIn('status', [AutomatedReportResult::STATUS_DEFAULT, AutomatedReportResult::STATUS_FAILED])\n ->latest()\n ->first();\n }\n\n public function getGeneratedNotSentResults(): Collection\n {\n return AutomatedReportResult::query()\n ->whereNotNull('generated_at')\n ->whereNull('sent_at')\n ->where('status', AutomatedReportResult::STATUS_GENERATED)\n ->whereHas('report')\n ->with('report')\n ->get();\n }\n\n public function getPaginatedUserReports(\n User $user,\n ReportSort $sort,\n ReportSortDirection $sortDirection,\n int $resultsPerPage,\n int $page,\n ?Carbon $fromDate,\n ?Carbon $toDate,\n array $teamIds,\n array $reportTypes,\n ?string $name,\n ): LengthAwarePaginator {\n $query = AutomatedReportResult::query()\n ->whereNotNull('automated_report_results.generated_at')\n ->join('automated_reports', 'automated_report_results.report_id', '=', 'automated_reports.id')\n ->where(fn (Builder $q) => $this->applyUserAccessScope($q, $user))\n ->orderByRaw(\"$sort->value COLLATE utf8mb4_unicode_ci {$sortDirection->value}\")\n ->select('automated_report_results.*')\n ->with('report.team');\n\n if ($fromDate !== null && $toDate !== null) {\n $query->whereBetween('generated_at', [$fromDate, $toDate]);\n }\n\n if (! empty($teamIds)) {\n $query->where(function ($q) use ($teamIds) {\n foreach ($teamIds as $id) {\n $q->orWhereJsonContains('automated_reports.groups', $id);\n }\n });\n }\n\n if (! empty($reportTypes)) {\n $query->whereIn('automated_reports.type', $reportTypes);\n }\n\n if (! empty($name)) {\n $query->whereLike('name', \"%$name%\");\n }\n\n return $query->paginate($resultsPerPage, ['*'], 'page', $page);\n }\n\n public function countUserReports(User $user): int\n {\n return AutomatedReportResult::query()\n ->whereNotNull('generated_at')\n ->whereNotNull('sent_at')\n ->whereHas('report', function ($q) use ($user) {\n $q->where('team_id', $user->getTeamId())\n ->whereJsonContains('recipients->users', $user->getId());\n })\n ->count();\n }\n\n /**\n * Restrict a query on the automated_reports table to reports the given user is allowed to see.\n *\n * Matches the customer-facing audience:\n * - explicit user recipients (recipients.users)\n * - members of any of the report's groups (Ask Jiminny reports)\n */\n private function applyUserAccessScope(Builder $query, User $user): void\n {\n $userId = $user->getId();\n $groupId = $user->getGroupId();\n\n $query\n ->where('automated_reports.team_id', $user->getTeamId())\n ->where(function (Builder $q) use ($userId, $groupId): void {\n $q->whereJsonContains('automated_reports.recipients->users', $userId);\n\n if ($groupId !== null) {\n $q->orWhere(function (Builder $sub) use ($groupId): void {\n $sub->where('automated_reports.type', AutomatedReportsService::TYPE_ASK_JIMINNY)\n ->whereJsonContains('automated_reports.groups', $groupId);\n });\n }\n });\n }\n\n /**\n * Get report IDs for a specific team\n *\n * @param Team $team\n *\n * @return \\Illuminate\\Support\\Collection\n */\n public function getReportIdsByTeam(Team $team): \\Illuminate\\Support\\Collection\n {\n return AutomatedReport::where('team_id', $team->getId())->pluck('id');\n }\n\n /**\n * Get all reports for a specific team\n *\n * @param Team $team\n *\n * @return Collection\n */\n public function getReportsByTeam(Team $team): Collection\n {\n return AutomatedReport::where('team_id', $team->getId())->get();\n }\n\n /**\n * Get all report results for a specific report\n *\n * @param AutomatedReport $report\n *\n * @return Collection\n */\n public function getResultsByReport(AutomatedReport $report): Collection\n {\n return $this->getResultsByReportQuery($report)->get();\n }\n\n public function getResultsByReportQuery(AutomatedReport $report): Builder\n {\n return AutomatedReportResult::where('report_id', $report->getId());\n }\n\n public function getReportResultsQueryForRetention(Team $team, CarbonImmutable $retentionDate): Builder\n {\n $reportIds = $this->getReportIdsByTeam($team);\n\n return AutomatedReportResult::query()->whereIn('report_id', $reportIds)\n ->whereRaw('IFNULL(generated_at, created_at) <= ?', [$retentionDate]);\n }\n\n /**\n * @param int|null $teamId Optional team ID to filter results\n *\n * @return \\Illuminate\\Support\\Collection<int, int> Collection of team IDs\n */\n public function getTeamIdsWithReportsResults(?int $teamId = null): \\Illuminate\\Support\\Collection\n {\n $query = DB::table('automated_reports')\n ->join('teams', 'automated_reports.team_id', '=', 'teams.id')\n ->select('teams.id')\n ->distinct();\n\n if ($teamId !== null) {\n $query->where('teams.id', $teamId);\n }\n\n return $query->pluck('teams.id');\n }\n}","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Repositories;\n\nuse Carbon\\CarbonImmutable;\nuse Illuminate\\Database\\Eloquent\\Builder;\nuse Illuminate\\Support\\Carbon;\nuse Illuminate\\Database\\Eloquent\\Collection;\nuse Illuminate\\Pagination\\LengthAwarePaginator;\nuse Illuminate\\Support\\Facades\\DB;\nuse Jiminny\\Models\\AutomatedReport;\nuse Jiminny\\Models\\AutomatedReportResult;\nuse Jiminny\\Models\\Team;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Services\\Kiosk\\AutomatedReports\\AutomatedReportsService;\nuse Jiminny\\Services\\Kiosk\\AutomatedReports\\ReportSort;\nuse Jiminny\\Services\\Kiosk\\AutomatedReports\\ReportSortDirection;\n\nclass AutomatedReportsRepository\n{\n /**\n * Create a new automated report\n *\n * @param array $data\n *\n * @return AutomatedReport\n */\n public function create(array $data): AutomatedReport\n {\n return AutomatedReport::create($data);\n }\n\n /**\n * Find an automated report by UUID\n *\n * @param string $uuid\n *\n * @return AutomatedReport|null\n */\n public function findByUuid(string $uuid): ?AutomatedReport\n {\n return AutomatedReport::where('uuid', AutomatedReport::toOptimized($uuid))->first();\n }\n\n public function findByIdOrUuid(string $idOrUuid): ?AutomatedReport\n {\n if (is_numeric($idOrUuid)) {\n return AutomatedReport::find((int) $idOrUuid);\n }\n\n return AutomatedReport::where('uuid', AutomatedReport::toOptimized($idOrUuid))->first();\n }\n\n /**\n * Retrieve all standard (non-Ask Jiminny) automated reports.\n *\n * @param string $sortColumn The column to sort by. Allowed values: 'created_by', 'created_at'. Defaults to 'created_at'.\n * @param string $sortDirection The sort direction. Allowed values: 'asc', 'desc'. Defaults to 'desc'.\n *\n * @return Collection<AutomatedReport>\n */\n public function getAllStandardReports(\n string $sortColumn = 'created_at',\n string $sortDirection = 'desc'\n ): Collection {\n return $this->buildSortedQuery($sortColumn, $sortDirection)\n ->whereNot('type', AutomatedReportsService::TYPE_ASK_JIMINNY)\n ->get();\n }\n\n /**\n * Retrieve all Ask Jiminny reports created by the given user.\n *\n * @param User $user The user whose reports to retrieve.\n * @param string $sortColumn The column to sort by. Allowed values: 'created_by', 'created_at'. Defaults to 'created_at'.\n * @param string $sortDirection The sort direction. Allowed values: 'asc', 'desc'. Defaults to 'desc'.\n *\n * @return Collection<AutomatedReport>\n */\n public function getAskJiminnyReportsByUser(\n User $user,\n string $sortColumn = 'created_at',\n string $sortDirection = 'desc'\n ): Collection {\n return $this->buildSortedQuery($sortColumn, $sortDirection)\n ->where('type', AutomatedReportsService::TYPE_ASK_JIMINNY)\n ->where('created_by', $user->getId())\n ->get();\n }\n\n private function buildSortedQuery(string $sortColumn, string $sortDirection): \\Illuminate\\Database\\Eloquent\\Builder\n {\n $allowedColumns = ['created_by', 'created_at'];\n if (! in_array($sortColumn, $allowedColumns)) {\n $sortColumn = 'created_at';\n }\n\n $sortDirection = strtolower($sortDirection) === 'asc' ? 'asc' : 'desc';\n\n $query = AutomatedReport::query()->with(['creator', 'team']);\n\n if ($sortColumn === 'created_by') {\n $query->leftJoin('users', 'users.id', '=', 'automated_reports.created_by')\n ->orderByRaw(\"users.name COLLATE utf8mb4_unicode_ci {$sortDirection}\")\n ->select('automated_reports.*');\n } else {\n $query->orderBy($sortColumn, $sortDirection);\n }\n\n return $query;\n }\n\n /**\n * Get all active Ask Jiminny reports whose expiry date has passed.\n *\n * @return Collection<AutomatedReport>\n */\n public function getExpiredActiveAskJiminnyReports(): Collection\n {\n return AutomatedReport::where('status', true)\n ->where('type', AutomatedReportsService::TYPE_ASK_JIMINNY)\n ->whereNotNull('expires_at')\n ->where('expires_at', '<', now()->toDateString())\n ->get();\n }\n\n /**\n * Get all active Ask Jiminny reports that expire exactly on the given date.\n *\n * @return Collection<AutomatedReport>\n */\n public function getActiveAskJiminnyReportsExpiringOn(CarbonImmutable $date): Collection\n {\n return AutomatedReport::with('creator')\n ->where('status', true)\n ->where('type', AutomatedReportsService::TYPE_ASK_JIMINNY)\n ->whereNotNull('expires_at')\n ->whereDate('expires_at', $date->toDateString())\n ->get();\n }\n\n /**\n * Get all active and enabled reports with active teams for the specified frequency.\n *\n * @param string $frequency\n *\n * @return Collection<AutomatedReport>\n */\n public function getActiveReportsByFrequency(string $frequency): Collection\n {\n return AutomatedReport::where('automated_reports.status', true)\n ->where('automated_reports.frequency', $frequency)\n ->join('teams', 'automated_reports.team_id', '=', 'teams.id')\n ->where('teams.status', Team::STATUS_ACTIVE)\n ->where(function ($query) {\n $query->whereNull('automated_reports.expires_at')\n ->orWhere('automated_reports.expires_at', '>=', now()->toDateString());\n })\n ->select('automated_reports.*')\n ->get();\n }\n\n /**\n * Update an automated report\n *\n * @param AutomatedReport $report\n * @param array $data\n *\n * @return AutomatedReport\n */\n public function update(AutomatedReport $report, array $data): AutomatedReport\n {\n $report->update($data);\n\n return $report;\n }\n\n /**\n * Create a new automated report result.\n *\n * @param array $data The data to create the automated report result with.\n *\n * @return AutomatedReportResult The newly created automated report result.\n */\n public function createResult(array $data): AutomatedReportResult\n {\n return AutomatedReportResult::create($data);\n }\n\n /**\n * Find an automated report result by UUID.\n *\n * @param string $uuid The UUID to find the automated report result with.\n *\n * @return AutomatedReportResult|null The automated report result if found, otherwise null.\n */\n public function findResultByUuid(string $uuid): ?AutomatedReportResult\n {\n return AutomatedReportResult::where('uuid', AutomatedReportResult::toOptimized($uuid))->first();\n }\n\n public function findResultByUuidForUser(string $uuid, User $user): ?AutomatedReportResult\n {\n return AutomatedReportResult::query()\n ->where('uuid', AutomatedReportResult::toOptimized($uuid))\n ->whereHas('report', static function ($query) use ($user): void {\n $query->where('team_id', $user->getTeamId())\n ->where('created_by', $user->getId());\n })\n ->first();\n }\n\n public function findChildResult(AutomatedReportResult $result, string $type): ?AutomatedReportResult\n {\n return AutomatedReportResult::query()\n ->where('parent_id', $result->getId())\n ->where('media_type', $type)\n ->first();\n }\n\n public function findLatestDefaultOrFailedResult(AutomatedReport $report): ?AutomatedReportResult\n {\n return AutomatedReportResult::query()\n ->where('report_id', $report->getId())\n ->whereIn('status', [AutomatedReportResult::STATUS_DEFAULT, AutomatedReportResult::STATUS_FAILED])\n ->latest()\n ->first();\n }\n\n public function getGeneratedNotSentResults(): Collection\n {\n return AutomatedReportResult::query()\n ->whereNotNull('generated_at')\n ->whereNull('sent_at')\n ->where('status', AutomatedReportResult::STATUS_GENERATED)\n ->whereHas('report')\n ->with('report')\n ->get();\n }\n\n public function getPaginatedUserReports(\n User $user,\n ReportSort $sort,\n ReportSortDirection $sortDirection,\n int $resultsPerPage,\n int $page,\n ?Carbon $fromDate,\n ?Carbon $toDate,\n array $teamIds,\n array $reportTypes,\n ?string $name,\n ): LengthAwarePaginator {\n $query = AutomatedReportResult::query()\n ->whereNotNull('automated_report_results.generated_at')\n ->join('automated_reports', 'automated_report_results.report_id', '=', 'automated_reports.id')\n ->where(fn (Builder $q) => $this->applyUserAccessScope($q, $user))\n ->orderByRaw(\"$sort->value COLLATE utf8mb4_unicode_ci {$sortDirection->value}\")\n ->select('automated_report_results.*')\n ->with('report.team');\n\n if ($fromDate !== null && $toDate !== null) {\n $query->whereBetween('generated_at', [$fromDate, $toDate]);\n }\n\n if (! empty($teamIds)) {\n $query->where(function ($q) use ($teamIds) {\n foreach ($teamIds as $id) {\n $q->orWhereJsonContains('automated_reports.groups', $id);\n }\n });\n }\n\n if (! empty($reportTypes)) {\n $query->whereIn('automated_reports.type', $reportTypes);\n }\n\n if (! empty($name)) {\n $query->whereLike('name', \"%$name%\");\n }\n\n return $query->paginate($resultsPerPage, ['*'], 'page', $page);\n }\n\n public function countUserReports(User $user): int\n {\n return AutomatedReportResult::query()\n ->whereNotNull('generated_at')\n ->whereNotNull('sent_at')\n ->whereHas('report', function ($q) use ($user) {\n $q->where('team_id', $user->getTeamId())\n ->whereJsonContains('recipients->users', $user->getId());\n })\n ->count();\n }\n\n /**\n * Restrict a query on the automated_reports table to reports the given user is allowed to see.\n *\n * Matches the customer-facing audience:\n * - explicit user recipients (recipients.users)\n * - members of any of the report's groups (Ask Jiminny reports)\n */\n private function applyUserAccessScope(Builder $query, User $user): void\n {\n $userId = $user->getId();\n $groupId = $user->getGroupId();\n\n $query\n ->where('automated_reports.team_id', $user->getTeamId())\n ->where(function (Builder $q) use ($userId, $groupId): void {\n $q->whereJsonContains('automated_reports.recipients->users', $userId);\n\n if ($groupId !== null) {\n $q->orWhere(function (Builder $sub) use ($groupId): void {\n $sub->where('automated_reports.type', AutomatedReportsService::TYPE_ASK_JIMINNY)\n ->whereJsonContains('automated_reports.groups', $groupId);\n });\n }\n });\n }\n\n /**\n * Get report IDs for a specific team\n *\n * @param Team $team\n *\n * @return \\Illuminate\\Support\\Collection\n */\n public function getReportIdsByTeam(Team $team): \\Illuminate\\Support\\Collection\n {\n return AutomatedReport::where('team_id', $team->getId())->pluck('id');\n }\n\n /**\n * Get all reports for a specific team\n *\n * @param Team $team\n *\n * @return Collection\n */\n public function getReportsByTeam(Team $team): Collection\n {\n return AutomatedReport::where('team_id', $team->getId())->get();\n }\n\n /**\n * Get all report results for a specific report\n *\n * @param AutomatedReport $report\n *\n * @return Collection\n */\n public function getResultsByReport(AutomatedReport $report): Collection\n {\n return $this->getResultsByReportQuery($report)->get();\n }\n\n public function getResultsByReportQuery(AutomatedReport $report): Builder\n {\n return AutomatedReportResult::where('report_id', $report->getId());\n }\n\n public function getReportResultsQueryForRetention(Team $team, CarbonImmutable $retentionDate): Builder\n {\n $reportIds = $this->getReportIdsByTeam($team);\n\n return AutomatedReportResult::query()->whereIn('report_id', $reportIds)\n ->whereRaw('IFNULL(generated_at, created_at) <= ?', [$retentionDate]);\n }\n\n /**\n * @param int|null $teamId Optional team ID to filter results\n *\n * @return \\Illuminate\\Support\\Collection<int, int> Collection of team IDs\n */\n public function getTeamIdsWithReportsResults(?int $teamId = null): \\Illuminate\\Support\\Collection\n {\n $query = DB::table('automated_reports')\n ->join('teams', 'automated_reports.team_id', '=', 'teams.id')\n ->select('teams.id')\n ->distinct();\n\n if ($teamId !== null) {\n $query->where('teams.id', $teamId);\n }\n\n return $query->pluck('teams.id');\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"200","depth":4,"bounds":{"left":0.67353725,"top":0.10055866,"width":0.012300532,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.6875,"top":0.09896249,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.69481385,"top":0.09896249,"width":0.006981383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"[2026-04-24 10:24:09] local.INFO: [automated-reports] Started {\"correlation_id\":\"4ef6e232-88d2-4935-87d3-62ff95c3b2d5\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:09] local.INFO: [automated-reports] Checking conditions {\"isMonday\":false,\"isWeekend\":false,\"isFirstDayOfMonth\":false,\"currentMonth\":4,\"isQuarterlyMonth\":true} {\"correlation_id\":\"4ef6e232-88d2-4935-87d3-62ff95c3b2d5\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:09] local.INFO: [automated-reports] Processing daily reports {\"correlation_id\":\"4ef6e232-88d2-4935-87d3-62ff95c3b2d5\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:10] local.INFO: [automated-reports] Found 1 daily reports to process {\"correlation_id\":\"4ef6e232-88d2-4935-87d3-62ff95c3b2d5\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:10] local.INFO: [automated-reports] Dispatching Generate Report job for report {\"reportUuid\":\"4f6ca2b5-1993-48aa-99ad-b66f19f15d43\",\"teamId\":1,\"frequency\":\"weekly\",\"type\":\"ask_jiminny\"} {\"correlation_id\":\"4ef6e232-88d2-4935-87d3-62ff95c3b2d5\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:10] local.INFO: [automated-reports] Completed {\"correlation_id\":\"4ef6e232-88d2-4935-87d3-62ff95c3b2d5\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:11] local.INFO: [AskJiminnyReport:Generate] Started {\"automatedReportUuid\":\"4f6ca2b5-1993-48aa-99ad-b66f19f15d43\"} {\"correlation_id\":\"00ca4f00-8a80-4bdd-b401-804183825595\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:15] local.INFO: [AskJiminnyReport] Fetched activity IDs for saved search {\"saved_search_id\":1977,\"user_id\":143,\"activity_count\":0} {\"correlation_id\":\"00ca4f00-8a80-4bdd-b401-804183825595\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:15] local.INFO: [AskJiminnyReport:Generate] Fetched activity IDs {\"automatedReportUuid\":\"4f6ca2b5-1993-48aa-99ad-b66f19f15d43\",\"activityCount\":0} {\"correlation_id\":\"00ca4f00-8a80-4bdd-b401-804183825595\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:15] local.INFO: [AskJiminnyReport:Generate] Not enough activities, skipped {\"automatedReportUuid\":\"4f6ca2b5-1993-48aa-99ad-b66f19f15d43\",\"activityCount\":0} {\"correlation_id\":\"00ca4f00-8a80-4bdd-b401-804183825595\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:15] local.INFO: [AskJiminnyReport:Generate] Dispatched not-generated notifications {\"automatedReportUuid\":\"4f6ca2b5-1993-48aa-99ad-b66f19f15d43\",\"recipientsCount\":1} {\"correlation_id\":\"00ca4f00-8a80-4bdd-b401-804183825595\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:18] local.INFO: [Send Report Not Generated Mail] Email sent {\"uuid\":\"dcb12181-9de1-4ef0-9d45-fb4ea6fd0778\",\"email\":\"lukas.kovalik@jiminny.com\"} {\"correlation_id\":\"27ada0cc-4eb3-49c4-9115-19ece9e24576\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"d9261d90-9df8-4eb4-8dcc-54b29d8e39cb\",\"trace_id\":\"5c4d23da-1340-4066-b354-55bfb79c0f4a\"}\n[2026-04-24 10:24:18] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d9261d90-9df8-4eb4-8dcc-54b29d8e39cb\",\"trace_id\":\"5c4d23da-1340-4066-b354-55bfb79c0f4a\"}\n[2026-04-24 10:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"d9261d90-9df8-4eb4-8dcc-54b29d8e39cb\",\"trace_id\":\"5c4d23da-1340-4066-b354-55bfb79c0f4a\"}\n[2026-04-24 10:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"cdcdc062-b51a-4f27-9d4c-95ef48442391\",\"trace_id\":\"e7701141-f61a-431e-8fac-697bccd67630\"}\n[2026-04-24 10:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"cdcdc062-b51a-4f27-9d4c-95ef48442391\",\"trace_id\":\"e7701141-f61a-431e-8fac-697bccd67630\"}\n[2026-04-24 10:24:35] local.NOTICE: Monitoring start {\"correlation_id\":\"862cdf2d-46ca-4f7b-966b-79a5f2648771\",\"trace_id\":\"961d76fe-7891-42e6-9d2e-c1dec32ec53b\"}\n[2026-04-24 10:24:35] local.NOTICE: Monitoring end {\"correlation_id\":\"862cdf2d-46ca-4f7b-966b-79a5f2648771\",\"trace_id\":\"961d76fe-7891-42e6-9d2e-c1dec32ec53b\"}\n[2026-04-24 10:24:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"3529a427-eebb-4c61-9efb-be7b720d4dc3\",\"trace_id\":\"63b1fd43-6c0e-44d1-a8d4-a7aaa509815d\"}\n[2026-04-24 10:24:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"3529a427-eebb-4c61-9efb-be7b720d4dc3\",\"trace_id\":\"63b1fd43-6c0e-44d1-a8d4-a7aaa509815d\"}\n[2026-04-24 10:24:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"ebdfa028-0918-4dff-8eec-bafc1d997f9d\",\"trace_id\":\"dd8b3479-50fa-4fc2-b3f9-581a6250baea\"}\n[2026-04-24 10:24:53] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ebdfa028-0918-4dff-8eec-bafc1d997f9d\",\"trace_id\":\"dd8b3479-50fa-4fc2-b3f9-581a6250baea\"}\n[2026-04-24 10:24:53] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ebdfa028-0918-4dff-8eec-bafc1d997f9d\",\"trace_id\":\"dd8b3479-50fa-4fc2-b3f9-581a6250baea\"}\n[2026-04-24 10:24:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"ebdfa028-0918-4dff-8eec-bafc1d997f9d\",\"trace_id\":\"dd8b3479-50fa-4fc2-b3f9-581a6250baea\"}\n[2026-04-24 10:25:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"6ace59e3-341b-49e4-8e3f-36ea22423005\",\"trace_id\":\"53678e7f-c854-4c0f-bc6d-c1ad8ba49696\"}\n[2026-04-24 10:25:01] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:23:00, 2026-04-24 10:25:00] {\"correlation_id\":\"6ace59e3-341b-49e4-8e3f-36ea22423005\",\"trace_id\":\"53678e7f-c854-4c0f-bc6d-c1ad8ba49696\"}\n[2026-04-24 10:25:01] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:23:00, 2026-04-24 10:25:00] {\"correlation_id\":\"6ace59e3-341b-49e4-8e3f-36ea22423005\",\"trace_id\":\"53678e7f-c854-4c0f-bc6d-c1ad8ba49696\"}\n[2026-04-24 10:25:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"6ace59e3-341b-49e4-8e3f-36ea22423005\",\"trace_id\":\"53678e7f-c854-4c0f-bc6d-c1ad8ba49696\"}\n[2026-04-24 10:25:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"11e8b9cf-a3f0-49b8-9066-e1f16e743f68\",\"trace_id\":\"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35\"}\n[2026-04-24 10:25:10] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"11e8b9cf-a3f0-49b8-9066-e1f16e743f68\",\"trace_id\":\"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35\"}\n[2026-04-24 10:25:10] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"11e8b9cf-a3f0-49b8-9066-e1f16e743f68\",\"trace_id\":\"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35\"}\n[2026-04-24 10:25:10] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"11e8b9cf-a3f0-49b8-9066-e1f16e743f68\",\"trace_id\":\"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35\"}\n[2026-04-24 10:25:10] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"11e8b9cf-a3f0-49b8-9066-e1f16e743f68\",\"trace_id\":\"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35\"}\n[2026-04-24 10:25:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"11e8b9cf-a3f0-49b8-9066-e1f16e743f68\",\"trace_id\":\"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35\"}\n[2026-04-24 10:25:18] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"6b84611f-1af3-4e64-8c1c-c963ed5bcfa7\",\"trace_id\":\"056c6533-0c1b-480c-93bb-4b7c788b5dc4\"}\n[2026-04-24 10:26:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"cef03617-e15a-498b-8751-efa9b8808ec9\",\"trace_id\":\"793af5d4-ea14-4e7d-bf10-bdf65c4b41b9\"}\n[2026-04-24 10:26:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cef03617-e15a-498b-8751-efa9b8808ec9\",\"trace_id\":\"793af5d4-ea14-4e7d-bf10-bdf65c4b41b9\"}\n[2026-04-24 10:26:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"cef03617-e15a-498b-8751-efa9b8808ec9\",\"trace_id\":\"793af5d4-ea14-4e7d-bf10-bdf65c4b41b9\"}\n[2026-04-24 10:26:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"d916f4b2-7912-4b9d-a733-794daab3d108\",\"trace_id\":\"75dc6489-d592-4de8-968d-4f9e9c4a2a57\"}\n[2026-04-24 10:26:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"d916f4b2-7912-4b9d-a733-794daab3d108\",\"trace_id\":\"75dc6489-d592-4de8-968d-4f9e9c4a2a57\"}\n[2026-04-24 10:26:23] local.NOTICE: Monitoring start {\"correlation_id\":\"9e9c1b30-7cf9-4944-9e1e-5a81e68a65df\",\"trace_id\":\"000992c5-8e61-4246-a35f-09f1d832ddd1\"}\n[2026-04-24 10:26:23] local.NOTICE: Monitoring end {\"correlation_id\":\"9e9c1b30-7cf9-4944-9e1e-5a81e68a65df\",\"trace_id\":\"000992c5-8e61-4246-a35f-09f1d832ddd1\"}\n[2026-04-24 10:26:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"f8026235-b956-4aaf-9600-b7b93e3d9c74\",\"trace_id\":\"759b3dbc-2e19-46cd-91c9-9065e063d32e\"}\n[2026-04-24 10:26:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"f8026235-b956-4aaf-9600-b7b93e3d9c74\",\"trace_id\":\"759b3dbc-2e19-46cd-91c9-9065e063d32e\"}\n[2026-04-24 10:26:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"4669b9f7-c3b1-4147-b391-8f8314c25042\",\"trace_id\":\"aff20f19-1f01-4fed-98d7-8ecafcae8c6e\"}\n[2026-04-24 10:26:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4669b9f7-c3b1-4147-b391-8f8314c25042\",\"trace_id\":\"aff20f19-1f01-4fed-98d7-8ecafcae8c6e\"}\n[2026-04-24 10:26:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4669b9f7-c3b1-4147-b391-8f8314c25042\",\"trace_id\":\"aff20f19-1f01-4fed-98d7-8ecafcae8c6e\"}\n[2026-04-24 10:26:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"4669b9f7-c3b1-4147-b391-8f8314c25042\",\"trace_id\":\"aff20f19-1f01-4fed-98d7-8ecafcae8c6e\"}\n[2026-04-24 10:26:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"23076007-fc54-415a-9900-2270769cd622\",\"trace_id\":\"ffefe56f-2881-4273-9dd1-93b8efff8334\"}\n[2026-04-24 10:26:39] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:24:00, 2026-04-24 10:26:00] {\"correlation_id\":\"23076007-fc54-415a-9900-2270769cd622\",\"trace_id\":\"ffefe56f-2881-4273-9dd1-93b8efff8334\"}\n[2026-04-24 10:26:39] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:24:00, 2026-04-24 10:26:00] {\"correlation_id\":\"23076007-fc54-415a-9900-2270769cd622\",\"trace_id\":\"ffefe56f-2881-4273-9dd1-93b8efff8334\"}\n[2026-04-24 10:26:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"23076007-fc54-415a-9900-2270769cd622\",\"trace_id\":\"ffefe56f-2881-4273-9dd1-93b8efff8334\"}\n[2026-04-24 10:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"cd5d0352-aec8-49be-8730-433061921ee7\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"cd5d0352-aec8-49be-8730-433061921ee7\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23540024,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":38.25,\"usage\":23605688,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23563904,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:46] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:46] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.6,\"average_seconds_per_request\":0.6} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":635.09} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2129.8,\"usage\":23740736,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23715400,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"09262b7b-a2e2-41d5-b42b-25f31846d7a8\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"09262b7b-a2e2-41d5-b42b-25f31846d7a8\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"09262b7b-a2e2-41d5-b42b-25f31846d7a8\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"09262b7b-a2e2-41d5-b42b-25f31846d7a8\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"09262b7b-a2e2-41d5-b42b-25f31846d7a8\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":51.31,\"usage\":23689016,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"09262b7b-a2e2-41d5-b42b-25f31846d7a8\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23649656,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"70df60f3-aed6-4daa-a246-71fb82f49d68\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"70df60f3-aed6-4daa-a246-71fb82f49d68\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"70df60f3-aed6-4daa-a246-71fb82f49d68\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"70df60f3-aed6-4daa-a246-71fb82f49d68\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"70df60f3-aed6-4daa-a246-71fb82f49d68\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.47,\"usage\":23692568,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"70df60f3-aed6-4daa-a246-71fb82f49d68\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"42acc0c5-3653-49d1-a44a-19758cc28092\",\"trace_id\":\"c0b07036-9e27-4742-a009-69972c67bced\"}\n[2026-04-24 10:26:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"42acc0c5-3653-49d1-a44a-19758cc28092\",\"trace_id\":\"c0b07036-9e27-4742-a009-69972c67bced\"}\n[2026-04-24 10:26:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"55eab912-4003-455b-813c-4e3f8383acc8\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:26:59] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55eab912-4003-455b-813c-4e3f8383acc8\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:26:59] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"55eab912-4003-455b-813c-4e3f8383acc8\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:26:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"55eab912-4003-455b-813c-4e3f8383acc8\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:27:00] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"be91dd09-c8e5-4e5d-a1e8-e1cc9979a32f\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"be91dd09-c8e5-4e5d-a1e8-e1cc9979a32f\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"be91dd09-c8e5-4e5d-a1e8-e1cc9979a32f\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:27:00] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"da707eb9-3c1d-487e-8c92-1d018e0ca29d\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:27:00] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-04-24 06:38:47\"}}} {\"correlation_id\":\"da707eb9-3c1d-487e-8c92-1d018e0ca29d\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:27:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"da707eb9-3c1d-487e-8c92-1d018e0ca29d\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:27:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"da707eb9-3c1d-487e-8c92-1d018e0ca29d\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:27:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"da707eb9-3c1d-487e-8c92-1d018e0ca29d\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:27:00] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {\"correlation_id\":\"da707eb9-3c1d-487e-8c92-1d018e0ca29d\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"da707eb9-3c1d-487e-8c92-1d018e0ca29d\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:28:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"d1e33635-9ed1-4df1-86f1-8a9fbb4a9aad\",\"trace_id\":\"c6abf4b5-1c8f-4bdf-a4ee-99e15a883fdc\"}\n[2026-04-24 10:28:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d1e33635-9ed1-4df1-86f1-8a9fbb4a9aad\",\"trace_id\":\"c6abf4b5-1c8f-4bdf-a4ee-99e15a883fdc\"}\n[2026-04-24 10:28:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"d1e33635-9ed1-4df1-86f1-8a9fbb4a9aad\",\"trace_id\":\"c6abf4b5-1c8f-4bdf-a4ee-99e15a883fdc\"}\n[2026-04-24 10:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"62e59e15-b6bd-4952-be03-365a8341880d\",\"trace_id\":\"ef3bd6bb-ab65-4e80-82cd-5e91b176b702\"}\n[2026-04-24 10:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"62e59e15-b6bd-4952-be03-365a8341880d\",\"trace_id\":\"ef3bd6bb-ab65-4e80-82cd-5e91b176b702\"}\n[2026-04-24 10:28:18] local.NOTICE: Monitoring start {\"correlation_id\":\"fde8ab81-2a83-4068-9a10-f407d3a55d8e\",\"trace_id\":\"5bad50f3-1b72-4f42-82d1-01b230b9c096\"}\n[2026-04-24 10:28:18] local.NOTICE: Monitoring end {\"correlation_id\":\"fde8ab81-2a83-4068-9a10-f407d3a55d8e\",\"trace_id\":\"5bad50f3-1b72-4f42-82d1-01b230b9c096\"}\n[2026-04-24 10:28:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"3b9652a6-4242-49c2-a3c5-a0ff70d13469\",\"trace_id\":\"8a1a2a8c-7fa6-4a35-b189-6165f66e1ae9\"}\n[2026-04-24 10:28:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"3b9652a6-4242-49c2-a3c5-a0ff70d13469\",\"trace_id\":\"8a1a2a8c-7fa6-4a35-b189-6165f66e1ae9\"}\n[2026-04-24 10:28:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"983ba273-68c0-472a-bd0f-83c4705711a3\",\"trace_id\":\"382d4d84-d0e5-4f63-96f1-bfb6c0b366ea\"}\n[2026-04-24 10:28:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"983ba273-68c0-472a-bd0f-83c4705711a3\",\"trace_id\":\"382d4d84-d0e5-4f63-96f1-bfb6c0b366ea\"}\n[2026-04-24 10:28:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"983ba273-68c0-472a-bd0f-83c4705711a3\",\"trace_id\":\"382d4d84-d0e5-4f63-96f1-bfb6c0b366ea\"}\n[2026-04-24 10:28:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"983ba273-68c0-472a-bd0f-83c4705711a3\",\"trace_id\":\"382d4d84-d0e5-4f63-96f1-bfb6c0b366ea\"}\n[2026-04-24 10:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"26102185-655f-4837-ba5d-ed80e510f81b\",\"trace_id\":\"8eca9c30-8319-480b-b138-c96d558f3930\"}\n[2026-04-24 10:28:39] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:26:00, 2026-04-24 10:28:00] {\"correlation_id\":\"26102185-655f-4837-ba5d-ed80e510f81b\",\"trace_id\":\"8eca9c30-8319-480b-b138-c96d558f3930\"}\n[2026-04-24 10:28:39] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:26:00, 2026-04-24 10:28:00] {\"correlation_id\":\"26102185-655f-4837-ba5d-ed80e510f81b\",\"trace_id\":\"8eca9c30-8319-480b-b138-c96d558f3930\"}\n[2026-04-24 10:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"26102185-655f-4837-ba5d-ed80e510f81b\",\"trace_id\":\"8eca9c30-8319-480b-b138-c96d558f3930\"}\n[2026-04-24 10:28:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"6daa2a6a-4861-4a83-97d1-720d8627b90c\",\"trace_id\":\"1a8fc095-aca6-48d5-91f7-775fb9010d5b\"}\n[2026-04-24 10:28:45] local.NOTICE: Calendar sync start {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"6daa2a6a-4861-4a83-97d1-720d8627b90c\",\"trace_id\":\"1a8fc095-aca6-48d5-91f7-775fb9010d5b\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 4ffd6251-0bb8-42a2-a18e-27d014070900 Correlation ID: 3dfd1327-0fd0-48ab-abc8-3e24d3e54823 Timestamp: 2026-04-24 10:28:49Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-04-24 10:28:49Z\\\",\\\"trace_id\\\":\\\"4ffd6251-0bb8-42a2-a18e-27d014070900\\\",\\\"correlation_id\\\":\\\"3dfd1327-0fd0-48ab-abc8-3e24d3e54823\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: a7ed49b0-e6c0-46a2-89d2-ccd2945a4a00 Correlation ID: 37093cd8-0b46-4609-9795-2d03ed6bd5a0 Timestamp: 2026-04-24 10:28:50Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-04-24 10:28:50Z\\\",\\\"trace_id\\\":\\\"a7ed49b0-e6c0-46a2-89d2-ccd2945a4a00\\\",\\\"correlation_id\\\":\\\"37093cd8-0b46-4609-9795-2d03ed6bd5a0\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0f144555-32b8-4d69-87d6-f6def6d148ba\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0f144555-32b8-4d69-87d6-f6def6d148ba\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0f144555-32b8-4d69-87d6-f6def6d148ba\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"0f144555-32b8-4d69-87d6-f6def6d148ba\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"0f144555-32b8-4d69-87d6-f6def6d148ba\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0f144555-32b8-4d69-87d6-f6def6d148ba\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0f144555-32b8-4d69-87d6-f6def6d148ba\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0f144555-32b8-4d69-87d6-f6def6d148ba\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:51] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"0f144555-32b8-4d69-87d6-f6def6d148ba\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:51] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"0f144555-32b8-4d69-87d6-f6def6d148ba\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: f80e988f-7954-4b3a-8ec3-114accb80500 Correlation ID: 9071fc56-b9f5-4652-a659-15c6eae96e2b Timestamp: 2026-04-24 10:28:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-04-24 10:28:51Z\\\",\\\"trace_id\\\":\\\"f80e988f-7954-4b3a-8ec3-114accb80500\\\",\\\"correlation_id\\\":\\\"9071fc56-b9f5-4652-a659-15c6eae96e2b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 1bff69e5-e16d-4ba1-a98d-a3c1f0c31200 Correlation ID: d592f12c-def5-4788-9547-488e14ea76c7 Timestamp: 2026-04-24 10:28:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-04-24 10:28:52Z\\\",\\\"trace_id\\\":\\\"1bff69e5-e16d-4ba1-a98d-a3c1f0c31200\\\",\\\"correlation_id\\\":\\\"d592f12c-def5-4788-9547-488e14ea76c7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: ea8e72a7-34e6-4e27-8430-34b44df69500 Correlation ID: 5d9e83c5-ae5b-4aae-a37e-34afd4d607cb Timestamp: 2026-04-24 10:28:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-04-24 10:28:52Z\\\",\\\"trace_id\\\":\\\"ea8e72a7-34e6-4e27-8430-34b44df69500\\\",\\\"correlation_id\\\":\\\"5d9e83c5-ae5b-4aae-a37e-34afd4d607cb\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1775683749,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-04-08 22:58:34\"}}} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"1175c7e0-9830-4799-a597-e7f131a973e2\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"1175c7e0-9830-4799-a597-e7f131a973e2\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1175c7e0-9830-4799-a597-e7f131a973e2\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCOpQOqkGB4Pj13KJp8CjfHSqwzw_GVdqxIRq9Jb0hz1cJsuWX3kegXyzmE5ezjgS3bZLZBGTUO4Rg5nbrbDvJdP58A83_g7W_e4dyJy7FzGSzERJRkAPo9reNW1pMNdHsu3K4fPGIclAUOtCFxfbGCwKwBmmG5AfByCkRM7hIX55P_Tomo5tunpeIOFTWpmb6g.gT2h9-9FyL9gDgQlNvJn5K8h1j5MhlzHMCL9NZarLm8\",\"last_sync\":\"2026-04-23 12:43:29\",\"dateMode\":\"daily\"} {\"correlation_id\":\"1175c7e0-9830-4799-a597-e7f131a973e2\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1175c7e0-9830-4799-a597-e7f131a973e2\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1175c7e0-9830-4799-a597-e7f131a973e2\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1175c7e0-9830-4799-a597-e7f131a973e2\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"1175c7e0-9830-4799-a597-e7f131a973e2\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"1175c7e0-9830-4799-a597-e7f131a973e2\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:29:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"1436c1f3-2620-4d4b-921e-d7e885ceaa71\",\"trace_id\":\"51bf8c5c-dc89-47cb-ae42-b3dec986b519\"}\n[2026-04-24 10:29:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1436c1f3-2620-4d4b-921e-d7e885ceaa71\",\"trace_id\":\"51bf8c5c-dc89-47cb-ae42-b3dec986b519\"}\n[2026-04-24 10:29:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"1436c1f3-2620-4d4b-921e-d7e885ceaa71\",\"trace_id\":\"51bf8c5c-dc89-47cb-ae42-b3dec986b519\"}\n[2026-04-24 10:29:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"cb39d14f-69d4-4373-a3d4-f46191d98970\",\"trace_id\":\"2032550b-1ac4-4484-9504-0cba490f1778\"}\n[2026-04-24 10:29:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"cb39d14f-69d4-4373-a3d4-f46191d98970\",\"trace_id\":\"2032550b-1ac4-4484-9504-0cba490f1778\"}\n[2026-04-24 10:29:34] local.NOTICE: Monitoring start {\"correlation_id\":\"032d258b-18c4-4452-aaf5-906dcbacfafb\",\"trace_id\":\"f2be0856-c0ab-4444-89e3-af2fdb85bfa0\"}\n[2026-04-24 10:29:34] local.NOTICE: Monitoring end {\"correlation_id\":\"032d258b-18c4-4452-aaf5-906dcbacfafb\",\"trace_id\":\"f2be0856-c0ab-4444-89e3-af2fdb85bfa0\"}\n[2026-04-24 10:29:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"a2c16ec1-6072-4aad-a3b9-15e457614636\",\"trace_id\":\"257c5c2f-4682-4124-9fa1-9eb9a9abf8fd\"}\n[2026-04-24 10:29:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"a2c16ec1-6072-4aad-a3b9-15e457614636\",\"trace_id\":\"257c5c2f-4682-4124-9fa1-9eb9a9abf8fd\"}\n[2026-04-24 10:29:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"f4bb49cd-a10c-42b0-a0d3-58f0ad13fa27\",\"trace_id\":\"d2d5af99-9c40-4d26-add6-56adecb9438a\"}\n[2026-04-24 10:29:48] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f4bb49cd-a10c-42b0-a0d3-58f0ad13fa27\",\"trace_id\":\"d2d5af99-9c40-4d26-add6-56adecb9438a\"}\n[2026-04-24 10:29:49] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f4bb49cd-a10c-42b0-a0d3-58f0ad13fa27\",\"trace_id\":\"d2d5af99-9c40-4d26-add6-56adecb9438a\"}\n[2026-04-24 10:29:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"f4bb49cd-a10c-42b0-a0d3-58f0ad13fa27\",\"trace_id\":\"d2d5af99-9c40-4d26-add6-56adecb9438a\"}\n[2026-04-24 10:30:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"6e619170-bbfb-4412-9341-a9325b91fee5\",\"trace_id\":\"eb0ac6ea-3f84-4d67-bdf1-ea22e6e20463\"}\n[2026-04-24 10:30:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6e619170-bbfb-4412-9341-a9325b91fee5\",\"trace_id\":\"eb0ac6ea-3f84-4d67-bdf1-ea22e6e20463\"}\n[2026-04-24 10:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"6e619170-bbfb-4412-9341-a9325b91fee5\",\"trace_id\":\"eb0ac6ea-3f84-4d67-bdf1-ea22e6e20463\"}\n[2026-04-24 10:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"a59bd51f-e398-4ac6-bbe9-3e1ea8c374ed\",\"trace_id\":\"6f4c799b-9145-455b-b790-759f6b74c966\"}\n[2026-04-24 10:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"a59bd51f-e398-4ac6-bbe9-3e1ea8c374ed\",\"trace_id\":\"6f4c799b-9145-455b-b790-759f6b74c966\"}\n[2026-04-24 10:30:35] local.NOTICE: Monitoring start {\"correlation_id\":\"2d70031f-41fc-4c01-8083-5de12afe92a2\",\"trace_id\":\"6fa8952c-dd6c-4800-9ab1-b0ac211f30b7\"}\n[2026-04-24 10:30:35] local.NOTICE: Monitoring end {\"correlation_id\":\"2d70031f-41fc-4c01-8083-5de12afe92a2\",\"trace_id\":\"6fa8952c-dd6c-4800-9ab1-b0ac211f30b7\"}\n[2026-04-24 10:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"ad086719-c370-4a5d-9a44-36e617278767\",\"trace_id\":\"3ce06ef6-3c4b-4516-b533-ebec2ca578f8\"}\n[2026-04-24 10:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"ad086719-c370-4a5d-9a44-36e617278767\",\"trace_id\":\"3ce06ef6-3c4b-4516-b533-ebec2ca578f8\"}\n[2026-04-24 10:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"9f538b4b-a08c-465e-8b22-374099ae9f37\",\"trace_id\":\"582cedbe-dcaf-455b-97e7-c2104b7fe854\"}\n[2026-04-24 10:30:53] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9f538b4b-a08c-465e-8b22-374099ae9f37\",\"trace_id\":\"582cedbe-dcaf-455b-97e7-c2104b7fe854\"}\n[2026-04-24 10:30:53] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9f538b4b-a08c-465e-8b22-374099ae9f37\",\"trace_id\":\"582cedbe-dcaf-455b-97e7-c2104b7fe854\"}\n[2026-04-24 10:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"9f538b4b-a08c-465e-8b22-374099ae9f37\",\"trace_id\":\"582cedbe-dcaf-455b-97e7-c2104b7fe854\"}\n[2026-04-24 10:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"f951dc73-a9be-4097-a271-e07ad063e254\",\"trace_id\":\"c6379570-95c6-40d2-b04d-5d360f6a22b8\"}\n[2026-04-24 10:31:00] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:29:00, 2026-04-24 10:31:00] {\"correlation_id\":\"f951dc73-a9be-4097-a271-e07ad063e254\",\"trace_id\":\"c6379570-95c6-40d2-b04d-5d360f6a22b8\"}\n[2026-04-24 10:31:00] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:29:00, 2026-04-24 10:31:00] {\"correlation_id\":\"f951dc73-a9be-4097-a271-e07ad063e254\",\"trace_id\":\"c6379570-95c6-40d2-b04d-5d360f6a22b8\"}\n[2026-04-24 10:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"f951dc73-a9be-4097-a271-e07ad063e254\",\"trace_id\":\"c6379570-95c6-40d2-b04d-5d360f6a22b8\"}\n[2026-04-24 10:31:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"50d26433-a5cc-43c8-b8a9-773f8ac630b3\",\"trace_id\":\"4cad1d73-b46a-4fe4-87c7-3cc2ee6c5733\"}\n[2026-04-24 10:31:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"50d26433-a5cc-43c8-b8a9-773f8ac630b3\",\"trace_id\":\"4cad1d73-b46a-4fe4-87c7-3cc2ee6c5733\"}\n[2026-04-24 10:31:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"db8af027-da4b-46cf-bcb4-187655c07131\",\"trace_id\":\"a1815442-b319-47f7-a6cb-acc620de0af8\"}\n[2026-04-24 10:31:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"db8af027-da4b-46cf-bcb4-187655c07131\",\"trace_id\":\"a1815442-b319-47f7-a6cb-acc620de0af8\"}\n[2026-04-24 10:31:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"f5d0e1d8-406a-4c7b-9f82-efc89bd90d43\",\"trace_id\":\"b143b90f-9045-405f-9ff7-247d4ef53651\"}\n[2026-04-24 10:31:21] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f5d0e1d8-406a-4c7b-9f82-efc89bd90d43\",\"trace_id\":\"b143b90f-9045-405f-9ff7-247d4ef53651\"}\n[2026-04-24 10:31:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"f5d0e1d8-406a-4c7b-9f82-efc89bd90d43\",\"trace_id\":\"b143b90f-9045-405f-9ff7-247d4ef53651\"}\n[2026-04-24 10:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"ca67328d-57bd-4544-9c2b-fbd042895bbf\",\"trace_id\":\"bfa8f513-d649-4df4-8148-8867ec612e8c\"}\n[2026-04-24 10:31:27] local.INFO: Running conference:monitor:start command for activities in (2026-04-24 10:21:00, 2026-04-24 10:26:00] {\"correlation_id\":\"ca67328d-57bd-4544-9c2b-fbd042895bbf\",\"trace_id\":\"bfa8f513-d649-4df4-8148-8867ec612e8c\"}\n[2026-04-24 10:31:28] local.INFO: [conference:monitor:start] No activities found in (2026-04-24 10:21:00, 2026-04-24 10:26:00] {\"correlation_id\":\"ca67328d-57bd-4544-9c2b-fbd042895bbf\",\"trace_id\":\"bfa8f513-d649-4df4-8148-8867ec612e8c\"}\n[2026-04-24 10:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"ca67328d-57bd-4544-9c2b-fbd042895bbf\",\"trace_id\":\"bfa8f513-d649-4df4-8148-8867ec612e8c\"}\n[2026-04-24 10:31:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"54538e48-98ae-4295-b463-675b4ab6c335\",\"trace_id\":\"b84ab2ef-ef92-4ea7-be6c-e57f913dea15\"}\n[2026-04-24 10:31:34] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"10:26\",\"to\":\"10:31\"} {\"correlation_id\":\"54538e48-98ae-4295-b463-675b4ab6c335\",\"trace_id\":\"b84ab2ef-ef92-4ea7-be6c-e57f913dea15\"}\n[2026-04-24 10:31:34] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"00:21\",\"to\":\"00:26\"} {\"correlation_id\":\"54538e48-98ae-4295-b463-675b4ab6c335\",\"trace_id\":\"b84ab2ef-ef92-4ea7-be6c-e57f913dea15\"}\n[2026-04-24 10:31:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"54538e48-98ae-4295-b463-675b4ab6c335\",\"trace_id\":\"b84ab2ef-ef92-4ea7-be6c-e57f913dea15\"}\n[2026-04-24 10:31:39] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:39] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:39] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:40] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:40] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:40] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:40] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"8b192510-7546-4543-990b-236d77279702\",\"trace_id\":\"a64f7407-5910-480d-a02a-421d48243722\"}\n[2026-04-24 10:31:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"fe4b936b-3f9f-43d2-ad3f-428199366afb\",\"trace_id\":\"d9defe92-d062-4b5a-b569-c01dc2563194\"}\n[2026-04-24 10:31:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"8b192510-7546-4543-990b-236d77279702\",\"trace_id\":\"a64f7407-5910-480d-a02a-421d48243722\"}\n[2026-04-24 10:31:49] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:49] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:49] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:49] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-04-24T10:33:49.213623Z\"} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:49] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:49] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:49] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"fe4b936b-3f9f-43d2-ad3f-428199366afb\",\"trace_id\":\"d9defe92-d062-4b5a-b569-c01dc2563194\"}\n[2026-04-24 10:31:49] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:54] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:54] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"4635d32e-fc85-45c0-8c7b-bfbf73d6d6af\",\"trace_id\":\"ebc9a6ed-625a-4fd9-9548-ffaf303ae642\"}\n[2026-04-24 10:31:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"4635d32e-fc85-45c0-8c7b-bfbf73d6d6af\",\"trace_id\":\"ebc9a6ed-625a-4fd9-9548-ffaf303ae642\"}\n[2026-04-24 10:32:00] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:00] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:00] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"a7e1d0a4-49c8-4497-958e-9981db3aaa3e\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:08] local.INFO: Dispatching activity sync job {\"import_id\":811658,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"a7e1d0a4-49c8-4497-958e-9981db3aaa3e\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:08] local.INFO: Dispatching activity sync job {\"import_id\":811659,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"a7e1d0a4-49c8-4497-958e-9981db3aaa3e\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:09] local.INFO: Dispatching activity sync job {\"import_id\":811660,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"a7e1d0a4-49c8-4497-958e-9981db3aaa3e\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:09] local.INFO: Dispatching activity sync job {\"import_id\":811661,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"a7e1d0a4-49c8-4497-958e-9981db3aaa3e\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:09] local.INFO: Dispatching activity sync job {\"import_id\":811662,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"a7e1d0a4-49c8-4497-958e-9981db3aaa3e\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:09] local.INFO: Dispatching activity sync job {\"import_id\":811663,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"a7e1d0a4-49c8-4497-958e-9981db3aaa3e\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"a7e1d0a4-49c8-4497-958e-9981db3aaa3e\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:11] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"da62f2ec-af92-467a-b6e3-6062c6f87d59\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:11] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"da62f2ec-af92-467a-b6e3-6062c6f87d59\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:11] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"da62f2ec-af92-467a-b6e3-6062c6f87d59\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:11] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"da62f2ec-af92-467a-b6e3-6062c6f87d59\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:11] local.ALERT: [SyncActivity] Failed {\"import_id\":811658,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":734} {\"correlation_id\":\"da62f2ec-af92-467a-b6e3-6062c6f87d59\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"a18dbdd7-0201-4872-b4f3-83d47096868c\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"a18dbdd7-0201-4872-b4f3-83d47096868c\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a18dbdd7-0201-4872-b4f3-83d47096868c\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:12] local.ALERT: [SyncActivity] Failed {\"import_id\":811659,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"a18dbdd7-0201-4872-b4f3-83d47096868c\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"2f1dd2b3-8563-4ddc-8427-7ab28fc8c45c\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"2f1dd2b3-8563-4ddc-8427-7ab28fc8c45c\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2f1dd2b3-8563-4ddc-8427-7ab28fc8c45c\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:13] local.ALERT: [SyncActivity] Failed {\"import_id\":811660,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"2f1dd2b3-8563-4ddc-8427-7ab28fc8c45c\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"cab315a5-13aa-40f4-807a-fb2e73bd41c1\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"cab315a5-13aa-40f4-807a-fb2e73bd41c1\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cab315a5-13aa-40f4-807a-fb2e73bd41c1\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:13] local.ALERT: [SyncActivity] Failed {\"import_id\":811661,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"cab315a5-13aa-40f4-807a-fb2e73bd41c1\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"67d017f0-1506-488a-9945-fd804c35279d\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"67d017f0-1506-488a-9945-fd804c35279d\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"67d017f0-1506-488a-9945-fd804c35279d\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"c4048497-4519-46b8-a4e7-817075866c76\",\"trace_id\":\"aabb17ad-07bf-426a-97f6-cb994e27c7bf\"}\n[2026-04-24 10:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"c4048497-4519-46b8-a4e7-817075866c76\",\"trace_id\":\"aabb17ad-07bf-426a-97f6-cb994e27c7bf\"}\n[2026-04-24 10:32:14] local.ALERT: [SyncActivity] Failed {\"import_id\":811662,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"67d017f0-1506-488a-9945-fd804c35279d\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [SyncActivity] Start {\"import_id\":811663,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-04-24 10:14:00\",\"to\":\"2026-04-24 10:30:00\"} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [SyncActivity] End {\"import_id\":811663,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [SyncActivity] Memory usage {\"import_id\":811663,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25835392,\"memory_real_usage\":67108864,\"pid\":13882} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:15] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:15] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"2da22d3d-5c10-490d-ad82-c57312ec5e45\",\"trace_id\":\"eac3c2a0-4aa8-4ab4-a0a7-946e9d9ec3a2\"}\n[2026-04-24 10:32:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"2da22d3d-5c10-490d-ad82-c57312ec5e45\",\"trace_id\":\"eac3c2a0-4aa8-4ab4-a0a7-946e9d9ec3a2\"}\n[2026-04-24 10:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"22c8340e-5104-4cd7-a030-50b132712ac5\",\"trace_id\":\"844754f4-aad4-458a-9009-f10344ddec9b\"}\n[2026-04-24 10:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"22c8340e-5104-4cd7-a030-50b132712ac5\",\"trace_id\":\"844754f4-aad4-458a-9009-f10344ddec9b\"}\n[2026-04-24 10:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"f12dd5f1-743b-4b59-a985-f15c0cc0be52\",\"trace_id\":\"a8df4a0f-7718-48a8-a897-cc47117ace0b\"}\n[2026-04-24 10:32:31] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"f12dd5f1-743b-4b59-a985-f15c0cc0be52\",\"trace_id\":\"a8df4a0f-7718-48a8-a897-cc47117ace0b\"}\n[2026-04-24 10:32:31] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"f12dd5f1-743b-4b59-a985-f15c0cc0be52\",\"trace_id\":\"a8df4a0f-7718-48a8-a897-cc47117ace0b\"}\n[2026-04-24 10:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"f12dd5f1-743b-4b59-a985-f15c0cc0be52\",\"trace_id\":\"a8df4a0f-7718-48a8-a897-cc47117ace0b\"}\n[2026-04-24 10:32:45] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:46] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:46] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":274.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.72} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:33:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"7087c00b-b452-4700-8ddd-275a1d3b8ae6\",\"trace_id\":\"9eda2c41-2a49-4e0d-bb07-50c8caf4ee75\"}\n[2026-04-24 10:33:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7087c00b-b452-4700-8ddd-275a1d3b8ae6\",\"trace_id\":\"9eda2c41-2a49-4e0d-bb07-50c8caf4ee75\"}\n[2026-04-24 10:33:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"7087c00b-b452-4700-8ddd-275a1d3b8ae6\",\"trace_id\":\"9eda2c41-2a49-4e0d-bb07-50c8caf4ee75\"}\n[2026-04-24 10:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"a7467c96-5061-4205-93d2-6f5b47929170\",\"trace_id\":\"52c0692f-c954-4293-aaca-0228b2fdc91c\"}\n[2026-04-24 10:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"a7467c96-5061-4205-93d2-6f5b47929170\",\"trace_id\":\"52c0692f-c954-4293-aaca-0228b2fdc91c\"}\n[2026-04-24 10:33:25] local.NOTICE: Monitoring start {\"correlation_id\":\"a5383125-c008-4d14-8b07-d85f54ce7ea5\",\"trace_id\":\"cac64e6a-f8a3-494e-a377-2680ca851ff9\"}\n[2026-04-24 10:33:26] local.NOTICE: Monitoring end {\"correlation_id\":\"a5383125-c008-4d14-8b07-d85f54ce7ea5\",\"trace_id\":\"cac64e6a-f8a3-494e-a377-2680ca851ff9\"}\n[2026-04-24 10:33:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"c233f1d1-8ff0-4c90-8936-5b98d635dcc7\",\"trace_id\":\"b481875b-e906-4ebd-8643-602657b71ebe\"}\n[2026-04-24 10:33:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"c233f1d1-8ff0-4c90-8936-5b98d635dcc7\",\"trace_id\":\"b481875b-e906-4ebd-8643-602657b71ebe\"}\n[2026-04-24 10:33:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"3b645fae-4a5e-4c08-a217-fb3a1a45cd99\",\"trace_id\":\"5198381d-4e2d-41b2-9077-047ec08aa411\"}\n[2026-04-24 10:33:39] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3b645fae-4a5e-4c08-a217-fb3a1a45cd99\",\"trace_id\":\"5198381d-4e2d-41b2-9077-047ec08aa411\"}\n[2026-04-24 10:33:39] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3b645fae-4a5e-4c08-a217-fb3a1a45cd99\",\"trace_id\":\"5198381d-4e2d-41b2-9077-047ec08aa411\"}\n[2026-04-24 10:33:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"3b645fae-4a5e-4c08-a217-fb3a1a45cd99\",\"trace_id\":\"5198381d-4e2d-41b2-9077-047ec08aa411\"}\n[2026-04-24 10:33:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"d6dff042-de9d-43b5-ab61-c8c73d7da9f4\",\"trace_id\":\"c28a89cd-5e0a-42ab-8065-17a4c75dd59a\"}\n[2026-04-24 10:33:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"d6dff042-de9d-43b5-ab61-c8c73d7da9f4\",\"trace_id\":\"c28a89cd-5e0a-42ab-8065-17a4c75dd59a\"}\n[2026-04-24 10:34:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"0bfb8185-4311-45ff-9912-019a8c2efcbf\",\"trace_id\":\"f8264ae9-7c3b-4805-9112-e9b1d55ab8d1\"}\n[2026-04-24 10:34:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0bfb8185-4311-45ff-9912-019a8c2efcbf\",\"trace_id\":\"f8264ae9-7c3b-4805-9112-e9b1d55ab8d1\"}\n[2026-04-24 10:34:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"0bfb8185-4311-45ff-9912-019a8c2efcbf\",\"trace_id\":\"f8264ae9-7c3b-4805-9112-e9b1d55ab8d1\"}\n[2026-04-24 10:34:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"3714b13d-5365-4dfa-8243-1efca8fd7287\",\"trace_id\":\"3d8bdcb1-9429-48fc-b42b-6fe561fcf2bb\"}\n[2026-04-24 10:34:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"3714b13d-5365-4dfa-8243-1efca8fd7287\",\"trace_id\":\"3d8bdcb1-9429-48fc-b42b-6fe561fcf2bb\"}\n[2026-04-24 10:34:12] local.NOTICE: Monitoring start {\"correlation_id\":\"b761195f-f8dd-4259-afbc-0e317391ac6d\",\"trace_id\":\"79e1a8c8-d7ca-4c90-85f0-8a4accee74f9\"}\n[2026-04-24 10:34:12] local.NOTICE: Monitoring end {\"correlation_id\":\"b761195f-f8dd-4259-afbc-0e317391ac6d\",\"trace_id\":\"79e1a8c8-d7ca-4c90-85f0-8a4accee74f9\"}\n[2026-04-24 10:34:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"26d17c4f-b77d-476d-8892-d9ffd4f68804\",\"trace_id\":\"502cd251-cc79-4e10-b763-c5a87c5d72c4\"}\n[2026-04-24 10:34:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"26d17c4f-b77d-476d-8892-d9ffd4f68804\",\"trace_id\":\"502cd251-cc79-4e10-b763-c5a87c5d72c4\"}\n[2026-04-24 10:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"98c97947-2a39-4baf-a2ae-5b93fe22f201\",\"trace_id\":\"aded15eb-34e6-4db0-9653-ed06f25b38b3\"}\n[2026-04-24 10:34:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"98c97947-2a39-4baf-a2ae-5b93fe22f201\",\"trace_id\":\"aded15eb-34e6-4db0-9653-ed06f25b38b3\"}\n[2026-04-24 10:34:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"98c97947-2a39-4baf-a2ae-5b93fe22f201\",\"trace_id\":\"aded15eb-34e6-4db0-9653-ed06f25b38b3\"}\n[2026-04-24 10:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"98c97947-2a39-4baf-a2ae-5b93fe22f201\",\"trace_id\":\"aded15eb-34e6-4db0-9653-ed06f25b38b3\"}\n[2026-04-24 10:34:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"ca5fa4ad-7531-4796-a6d2-2bf959538fdf\",\"trace_id\":\"4a1672e9-2c2b-4b62-8adb-0caa105958b5\"}\n[2026-04-24 10:34:23] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:32:00, 2026-04-24 10:34:00] {\"correlation_id\":\"ca5fa4ad-7531-4796-a6d2-2bf959538fdf\",\"trace_id\":\"4a1672e9-2c2b-4b62-8adb-0caa105958b5\"}\n[2026-04-24 10:34:23] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:32:00, 2026-04-24 10:34:00] {\"correlation_id\":\"ca5fa4ad-7531-4796-a6d2-2bf959538fdf\",\"trace_id\":\"4a1672e9-2c2b-4b62-8adb-0caa105958b5\"}\n[2026-04-24 10:34:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"ca5fa4ad-7531-4796-a6d2-2bf959538fdf\",\"trace_id\":\"4a1672e9-2c2b-4b62-8adb-0caa105958b5\"}\n[2026-04-24 10:35:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"537a6afb-7982-43ba-874c-cfaf945b546b\",\"trace_id\":\"0e8dc196-f9a5-4593-94ab-e7ec13532657\"}\n[2026-04-24 10:35:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"537a6afb-7982-43ba-874c-cfaf945b546b\",\"trace_id\":\"0e8dc196-f9a5-4593-94ab-e7ec13532657\"}\n[2026-04-24 10:35:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"537a6afb-7982-43ba-874c-cfaf945b546b\",\"trace_id\":\"0e8dc196-f9a5-4593-94ab-e7ec13532657\"}\n[2026-04-24 10:35:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"4052431b-ea85-4966-bf60-2664fba0f1ff\",\"trace_id\":\"33edbed0-ee90-461f-bd68-7e2b3edac796\"}\n[2026-04-24 10:35:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"4052431b-ea85-4966-bf60-2664fba0f1ff\",\"trace_id\":\"33edbed0-ee90-461f-bd68-7e2b3edac796\"}\n[2026-04-24 10:35:23] local.NOTICE: Monitoring start {\"correlation_id\":\"19278d24-c565-487d-a1fa-0bfa0b462819\",\"trace_id\":\"22ea452c-19fc-4018-bd81-6523c85dcb17\"}\n[2026-04-24 10:35:23] local.NOTICE: Monitoring end {\"correlation_id\":\"19278d24-c565-487d-a1fa-0bfa0b462819\",\"trace_id\":\"22ea452c-19fc-4018-bd81-6523c85dcb17\"}\n[2026-04-24 10:35:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"aa117f5a-9a2c-420d-af17-62d567e7b0bb\",\"trace_id\":\"50af364b-4e4c-4bea-9f08-80d2dccca2a0\"}\n[2026-04-24 10:35:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"aa117f5a-9a2c-420d-af17-62d567e7b0bb\",\"trace_id\":\"50af364b-4e4c-4bea-9f08-80d2dccca2a0\"}\n[2026-04-24 10:35:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"b266947a-e6f7-4e15-a3ea-05fc8f70e049\",\"trace_id\":\"3f898250-268d-4adb-8761-fe347722ccc0\"}\n[2026-04-24 10:35:28] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b266947a-e6f7-4e15-a3ea-05fc8f70e049\",\"trace_id\":\"3f898250-268d-4adb-8761-fe347722ccc0\"}\n[2026-04-24 10:35:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b266947a-e6f7-4e15-a3ea-05fc8f70e049\",\"trace_id\":\"3f898250-268d-4adb-8761-fe347722ccc0\"}\n[2026-04-24 10:35:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"b266947a-e6f7-4e15-a3ea-05fc8f70e049\",\"trace_id\":\"3f898250-268d-4adb-8761-fe347722ccc0\"}\n[2026-04-24 10:35:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"be6ec988-1d26-4cf9-a7e9-5cfe2b2b2c00\",\"trace_id\":\"ac80e092-288e-46f3-9684-2c22be08ed96\"}\n[2026-04-24 10:35:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"be6ec988-1d26-4cf9-a7e9-5cfe2b2b2c00\",\"trace_id\":\"ac80e092-288e-46f3-9684-2c22be08ed96\"}\n[2026-04-24 10:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"252843f9-192e-4366-b49e-139f8caada46\",\"trace_id\":\"bb764db2-98aa-4d52-92ea-1023c84c2492\"}\n[2026-04-24 10:35:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"252843f9-192e-4366-b49e-139f8caada46\",\"trace_id\":\"bb764db2-98aa-4d52-92ea-1023c84c2492\"}\n[2026-04-24 10:35:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"c3c1224f-0f3d-4377-84fe-8ae164941fe8\",\"trace_id\":\"a08d0d72-2d13-4a05-90bd-e16e8e0f24fa\"}\n[2026-04-24 10:35:33] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"c3c1224f-0f3d-4377-84fe-8ae164941fe8\",\"trace_id\":\"a08d0d72-2d13-4a05-90bd-e16e8e0f24fa\"}\n[2026-04-24 10:35:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"c3c1224f-0f3d-4377-84fe-8ae164941fe8\",\"trace_id\":\"a08d0d72-2d13-4a05-90bd-e16e8e0f24fa\"}\n[2026-04-24 10:35:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"529ad329-c2b9-4a6c-b4b5-af82df0812fe\",\"trace_id\":\"4322958e-288d-445e-888f-bd011bc2da08\"}\n[2026-04-24 10:35:34] local.INFO: Running conference:monitor:start command for activities in (2026-04-24 10:25:00, 2026-04-24 10:30:00] {\"correlation_id\":\"529ad329-c2b9-4a6c-b4b5-af82df0812fe\",\"trace_id\":\"4322958e-288d-445e-888f-bd011bc2da08\"}\n[2026-04-24 10:35:34] local.INFO: [conference:monitor:start] No activities found in (2026-04-24 10:25:00, 2026-04-24 10:30:00] {\"correlation_id\":\"529ad329-c2b9-4a6c-b4b5-af82df0812fe\",\"trace_id\":\"4322958e-288d-445e-888f-bd011bc2da08\"}\n[2026-04-24 10:35:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"529ad329-c2b9-4a6c-b4b5-af82df0812fe\",\"trace_id\":\"4322958e-288d-445e-888f-bd011bc2da08\"}\n[2026-04-24 10:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"0562fd82-791b-468c-90a0-65b9c620ef2e\",\"trace_id\":\"09261a36-c342-46cb-bb82-fc05aa367823\"}\n[2026-04-24 10:35:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"10:30\",\"to\":\"10:35\"} {\"correlation_id\":\"0562fd82-791b-468c-90a0-65b9c620ef2e\",\"trace_id\":\"09261a36-c342-46cb-bb82-fc05aa367823\"}\n[2026-04-24 10:35:37] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"00:25\",\"to\":\"00:30\"} {\"correlation_id\":\"0562fd82-791b-468c-90a0-65b9c620ef2e\",\"trace_id\":\"09261a36-c342-46cb-bb82-fc05aa367823\"}\n[2026-04-24 10:35:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"0562fd82-791b-468c-90a0-65b9c620ef2e\",\"trace_id\":\"09261a36-c342-46cb-bb82-fc05aa367823\"}\n[2026-04-24 10:35:38] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:38] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:38] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:38] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:39] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:39] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:39] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:39] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:39] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:39] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:39] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:39] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"e8a4afe0-7a27-4459-9912-a7ebce8f903f\",\"trace_id\":\"14ad454e-986d-4451-af00-053486af39a5\"}\n[2026-04-24 10:35:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"7b3b58cf-5690-4c9d-b972-4ca0ce61f11f\",\"trace_id\":\"0e97e9b0-7c31-450c-b39e-d23278ce5401\"}\n[2026-04-24 10:35:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"7b3b58cf-5690-4c9d-b972-4ca0ce61f11f\",\"trace_id\":\"0e97e9b0-7c31-450c-b39e-d23278ce5401\"}\n[2026-04-24 10:35:43] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:43] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:43] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:43] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-04-24T10:37:43.896065Z\"} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:43] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:43] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"e8a4afe0-7a27-4459-9912-a7ebce8f903f\",\"trace_id\":\"14ad454e-986d-4451-af00-053486af39a5\"}\n[2026-04-24 10:35:44] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:49] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:49] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:54] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:54] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"6d00ee59-b87c-49a6-af97-4afd4b8286b8\",\"trace_id\":\"dfee013b-dae8-4ded-8956-5c0a00b729c9\"}\n[2026-04-24 10:36:03] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6d00ee59-b87c-49a6-af97-4afd4b8286b8\",\"trace_id\":\"dfee013b-dae8-4ded-8956-5c0a00b729c9\"}\n[2026-04-24 10:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"6d00ee59-b87c-49a6-af97-4afd4b8286b8\",\"trace_id\":\"dfee013b-dae8-4ded-8956-5c0a00b729c9\"}\n[2026-04-24 10:36:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"936afe4d-f1d2-44cc-8ddc-9e509725940d\",\"trace_id\":\"cc468641-be48-4063-955a-92a55cca41a1\"}\n[2026-04-24 10:36:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"936afe4d-f1d2-44cc-8ddc-9e509725940d\",\"trace_id\":\"cc468641-be48-4063-955a-92a55cca41a1\"}\n[2026-04-24 10:36:05] local.NOTICE: Monitoring start {\"correlation_id\":\"65c90b6f-4486-443f-83af-0cf2e3e0fdd1\",\"trace_id\":\"165a35a5-3569-4f6a-8935-921e8459e8da\"}\n[2026-04-24 10:36:05] local.NOTICE: Monitoring end {\"correlation_id\":\"65c90b6f-4486-443f-83af-0cf2e3e0fdd1\",\"trace_id\":\"165a35a5-3569-4f6a-8935-921e8459e8da\"}\n[2026-04-24 10:36:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"8b8be7b4-6857-42a9-8349-7d6f4155d120\",\"trace_id\":\"3f0cd915-a3f0-4e2a-8a1f-668fa98723db\"}\n[2026-04-24 10:36:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"8b8be7b4-6857-42a9-8349-7d6f4155d120\",\"trace_id\":\"3f0cd915-a3f0-4e2a-8a1f-668fa98723db\"}\n[2026-04-24 10:36:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"5378d67d-9f96-4b38-b8e9-c38a748a5294\",\"trace_id\":\"5036e660-db15-4275-8811-07aba3e35a1c\"}\n[2026-04-24 10:36:07] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5378d67d-9f96-4b38-b8e9-c38a748a5294\",\"trace_id\":\"5036e660-db15-4275-8811-07aba3e35a1c\"}\n[2026-04-24 10:36:07] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5378d67d-9f96-4b38-b8e9-c38a748a5294\",\"trace_id\":\"5036e660-db15-4275-8811-07aba3e35a1c\"}\n[2026-04-24 10:36:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"5378d67d-9f96-4b38-b8e9-c38a748a5294\",\"trace_id\":\"5036e660-db15-4275-8811-07aba3e35a1c\"}\n[2026-04-24 10:36:09] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:36:09] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:36:09] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"1d793cba-dfdf-4794-96cf-b6815db21af4\",\"trace_id\":\"7680c390-f0e3-4201-a8f4-02f50f6d2431\"}\n[2026-04-24 10:36:09] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:34:00, 2026-04-24 10:36:00] {\"correlation_id\":\"1d793cba-dfdf-4794-96cf-b6815db21af4\",\"trace_id\":\"7680c390-f0e3-4201-a8f4-02f50f6d2431\"}\n[2026-04-24 10:36:09] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:34:00, 2026-04-24 10:36:00] {\"correlation_id\":\"1d793cba-dfdf-4794-96cf-b6815db21af4\",\"trace_id\":\"7680c390-f0e3-4201-a8f4-02f50f6d2431\"}\n[2026-04-24 10:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"1d793cba-dfdf-4794-96cf-b6815db21af4\",\"trace_id\":\"7680c390-f0e3-4201-a8f4-02f50f6d2431\"}\n[2026-04-24 10:36:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"47ff13fc-d2da-4439-ae3e-647ca3cd9cc5\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"47ff13fc-d2da-4439-ae3e-647ca3cd9cc5\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23653320,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"38cbf870-b4a1-46ae-9adb-2ee5e3cfbd2a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"38cbf870-b4a1-46ae-9adb-2ee5e3cfbd2a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"38cbf870-b4a1-46ae-9adb-2ee5e3cfbd2a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"38cbf870-b4a1-46ae-9adb-2ee5e3cfbd2a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"38cbf870-b4a1-46ae-9adb-2ee5e3cfbd2a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":24.05,\"usage\":23715392,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"38cbf870-b4a1-46ae-9adb-2ee5e3cfbd2a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23673608,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"f906888b-c9f0-4676-a3a9-1a70204e4c3a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f906888b-c9f0-4676-a3a9-1a70204e4c3a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f906888b-c9f0-4676-a3a9-1a70204e4c3a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f906888b-c9f0-4676-a3a9-1a70204e4c3a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f906888b-c9f0-4676-a3a9-1a70204e4c3a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"f906888b-c9f0-4676-a3a9-1a70204e4c3a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.52,\"average_seconds_per_request\":0.52} {\"correlation_id\":\"f906888b-c9f0-4676-a3a9-1a70204e4c3a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":529.44} {\"correlation_id\":\"f906888b-c9f0-4676-a3a9-1a70204e4c3a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":557.15,\"usage\":23737960,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"f906888b-c9f0-4676-a3a9-1a70204e4c3a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"f0884f66-15a4-4130-b432-99f739944cbd\",\"trace_id\":\"5dce41b5-d070-4496-ad61-7f32e3c80014\"}\n[2026-04-24 10:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"f0884f66-15a4-4130-b432-99f739944cbd\",\"trace_id\":\"5dce41b5-d070-4496-ad61-7f32e3c80014\"}\n[2026-04-24 10:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23715888,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"365304de-f573-48f2-b4a0-b46c42774380\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"365304de-f573-48f2-b4a0-b46c42774380\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"365304de-f573-48f2-b4a0-b46c42774380\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"365304de-f573-48f2-b4a0-b46c42774380\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"365304de-f573-48f2-b4a0-b46c42774380\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.21,\"usage\":23703864,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"365304de-f573-48f2-b4a0-b46c42774380\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23664544,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"c464c3a4-e7dc-41f9-a3fa-ccacd4576a72\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"c464c3a4-e7dc-41f9-a3fa-ccacd4576a72\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"c464c3a4-e7dc-41f9-a3fa-ccacd4576a72\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"c464c3a4-e7dc-41f9-a3fa-ccacd4576a72\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"c464c3a4-e7dc-41f9-a3fa-ccacd4576a72\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":15.21,\"usage\":23700312,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"c464c3a4-e7dc-41f9-a3fa-ccacd4576a72\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"c81ae81a-8655-4d34-b0e9-7a55c7007412\",\"trace_id\":\"a98cd1a9-99e1-4cba-9c3d-d1c11c53798b\"}\n[2026-04-24 10:36:14] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c81ae81a-8655-4d34-b0e9-7a55c7007412\",\"trace_id\":\"a98cd1a9-99e1-4cba-9c3d-d1c11c53798b\"}\n[2026-04-24 10:36:14] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":1} {\"correlation_id\":\"c81ae81a-8655-4d34-b0e9-7a55c7007412\",\"trace_id\":\"a98cd1a9-99e1-4cba-9c3d-d1c11c53798b\"}\n[2026-04-24 10:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"c81ae81a-8655-4d34-b0e9-7a55c7007412\",\"trace_id\":\"a98cd1a9-99e1-4cba-9c3d-d1c11c53798b\"}\n[2026-04-24 10:36:14] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"63917e7c-8e0b-4824-b489-eab64e736354\",\"trace_id\":\"a98cd1a9-99e1-4cba-9c3d-d1c11c53798b\"}\n[2026-04-24 10:36:14] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"63917e7c-8e0b-4824-b489-eab64e736354\",\"trace_id\":\"a98cd1a9-99e1-4cba-9c3d-d1c11c53798b\"}\n[2026-04-24 10:36:14] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"63917e7c-8e0b-4824-b489-eab64e736354\",\"trace_id\":\"a98cd1a9-99e1-4cba-9c3d-d1c11c53798b\"}\n[2026-04-24 10:36:39] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:36:39] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:36:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:36:40] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:36:40] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:36:40] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":170.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.72} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:36:40] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"e398832f-e51b-453a-8f0d-ca3083de8f22\",\"trace_id\":\"e2b3db21-82f2-49c6-ac5d-24f5d2bc6adf\"}\n[2026-04-24 10:37:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e398832f-e51b-453a-8f0d-ca3083de8f22\",\"trace_id\":\"e2b3db21-82f2-49c6-ac5d-24f5d2bc6adf\"}\n[2026-04-24 10:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"e398832f-e51b-453a-8f0d-ca3083de8f22\",\"trace_id\":\"e2b3db21-82f2-49c6-ac5d-24f5d2bc6adf\"}\n[2026-04-24 10:37:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"0ba5c756-a3fa-4ceb-b468-b8188544c3f7\",\"trace_id\":\"d2bcfbff-bbdc-4f2a-ab10-c3fd7cea79b2\"}\n[2026-04-24 10:37:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"0ba5c756-a3fa-4ceb-b468-b8188544c3f7\",\"trace_id\":\"d2bcfbff-bbdc-4f2a-ab10-c3fd7cea79b2\"}\n[2026-04-24 10:37:25] local.NOTICE: Monitoring start {\"correlation_id\":\"dbe3b963-92f7-4417-af0e-c0f7921b9907\",\"trace_id\":\"e3adefac-e11f-46ef-9999-5443fbfa9d85\"}\n[2026-04-24 10:37:25] local.NOTICE: Monitoring end {\"correlation_id\":\"dbe3b963-92f7-4417-af0e-c0f7921b9907\",\"trace_id\":\"e3adefac-e11f-46ef-9999-5443fbfa9d85\"}\n[2026-04-24 10:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"529d53b7-d23d-4715-a7e6-feb3e839cc5d\",\"trace_id\":\"c16e8a02-8036-4bf4-ab36-803dacb4767c\"}\n[2026-04-24 10:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"529d53b7-d23d-4715-a7e6-feb3e839cc5d\",\"trace_id\":\"c16e8a02-8036-4bf4-ab36-803dacb4767c\"}\n[2026-04-24 10:37:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"ba1d909c-fcdc-43af-a4e6-b30038572186\",\"trace_id\":\"afe0994f-5352-4eb0-aa7a-45d367b307e4\"}\n[2026-04-24 10:37:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ba1d909c-fcdc-43af-a4e6-b30038572186\",\"trace_id\":\"afe0994f-5352-4eb0-aa7a-45d367b307e4\"}\n[2026-04-24 10:37:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ba1d909c-fcdc-43af-a4e6-b30038572186\",\"trace_id\":\"afe0994f-5352-4eb0-aa7a-45d367b307e4\"}\n[2026-04-24 10:37:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"ba1d909c-fcdc-43af-a4e6-b30038572186\",\"trace_id\":\"afe0994f-5352-4eb0-aa7a-45d367b307e4\"}\n[2026-04-24 10:37:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"4e56979c-fb0d-4146-9182-9189b3709d8e\",\"trace_id\":\"40c89c09-7f79-4256-9d06-6ea1dea69558\"}\n[2026-04-24 10:37:38] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4e56979c-fb0d-4146-9182-9189b3709d8e\",\"trace_id\":\"40c89c09-7f79-4256-9d06-6ea1dea69558\"}\n[2026-04-24 10:37:38] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4e56979c-fb0d-4146-9182-9189b3709d8e\",\"trace_id\":\"40c89c09-7f79-4256-9d06-6ea1dea69558\"}\n[2026-04-24 10:37:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"4e56979c-fb0d-4146-9182-9189b3709d8e\",\"trace_id\":\"40c89c09-7f79-4256-9d06-6ea1dea69558\"}\n[2026-04-24 10:37:39] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"c17f8fa5-8019-4bac-96a0-79872914ffe1\",\"trace_id\":\"40c89c09-7f79-4256-9d06-6ea1dea69558\"}\n[2026-04-24 10:37:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"60396790-0d9d-45a6-9f2c-2ff7cd744fcf\",\"trace_id\":\"4b4198d7-8de7-4937-b4bb-87ae8d72c8f5\"}\n[2026-04-24 10:37:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"60396790-0d9d-45a6-9f2c-2ff7cd744fcf\",\"trace_id\":\"4b4198d7-8de7-4937-b4bb-87ae8d72c8f5\"}\n[2026-04-24 10:38:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"ee4cd687-1fbb-48d7-82e8-0c6e597d9a61\",\"trace_id\":\"fd3156a9-082f-48ce-90f3-53d2bde6de42\"}\n[2026-04-24 10:38:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ee4cd687-1fbb-48d7-82e8-0c6e597d9a61\",\"trace_id\":\"fd3156a9-082f-48ce-90f3-53d2bde6de42\"}\n[2026-04-24 10:38:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"ee4cd687-1fbb-48d7-82e8-0c6e597d9a61\",\"trace_id\":\"fd3156a9-082f-48ce-90f3-53d2bde6de42\"}\n[2026-04-24 10:38:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"b83c9f80-d267-4ef5-a9d8-16d7389ebfbe\",\"trace_id\":\"2e55c7a4-4ec2-4e3d-a6b8-059552fd6b5a\"}\n[2026-04-24 10:38:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"b83c9f80-d267-4ef5-a9d8-16d7389ebfbe\",\"trace_id\":\"2e55c7a4-4ec2-4e3d-a6b8-059552fd6b5a\"}\n[2026-04-24 10:38:29] local.NOTICE: Monitoring start {\"correlation_id\":\"7df6b8a4-a9a2-4d57-9f33-424d76235085\",\"trace_id\":\"f8bf88c1-df50-468b-af01-55cef581459e\"}\n[2026-04-24 10:38:29] local.NOTICE: Monitoring end {\"correlation_id\":\"7df6b8a4-a9a2-4d57-9f33-424d76235085\",\"trace_id\":\"f8bf88c1-df50-468b-af01-55cef581459e\"}\n[2026-04-24 10:38:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"016e74f8-ecd4-4261-9236-5e90c28e0346\",\"trace_id\":\"2f196199-3ecc-4615-b5fd-54c963fc280c\"}\n[2026-04-24 10:38:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"016e74f8-ecd4-4261-9236-5e90c28e0346\",\"trace_id\":\"2f196199-3ecc-4615-b5fd-54c963fc280c\"}\n[2026-04-24 10:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"ffe45e4f-7e79-49e7-8236-b793cec601b1\",\"trace_id\":\"32ac79cd-a559-4f05-9dfe-287b4a0968d5\"}\n[2026-04-24 10:38:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ffe45e4f-7e79-49e7-8236-b793cec601b1\",\"trace_id\":\"32ac79cd-a559-4f05-9dfe-287b4a0968d5\"}\n[2026-04-24 10:38:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ffe45e4f-7e79-49e7-8236-b793cec601b1\",\"trace_id\":\"32ac79cd-a559-4f05-9dfe-287b4a0968d5\"}\n[2026-04-24 10:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"ffe45e4f-7e79-49e7-8236-b793cec601b1\",\"trace_id\":\"32ac79cd-a559-4f05-9dfe-287b4a0968d5\"}\n[2026-04-24 10:38:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"a3956ca7-ded9-4686-b97f-fae9150d76fe\",\"trace_id\":\"bd87eb41-3fff-4782-9b21-e420abd24c3a\"}\n[2026-04-24 10:38:46] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:36:00, 2026-04-24 10:38:00] {\"correlation_id\":\"a3956ca7-ded9-4686-b97f-fae9150d76fe\",\"trace_id\":\"bd87eb41-3fff-4782-9b21-e420abd24c3a\"}\n[2026-04-24 10:38:46] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:36:00, 2026-04-24 10:38:00] {\"correlation_id\":\"a3956ca7-ded9-4686-b97f-fae9150d76fe\",\"trace_id\":\"bd87eb41-3fff-4782-9b21-e420abd24c3a\"}\n[2026-04-24 10:38:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"a3956ca7-ded9-4686-b97f-fae9150d76fe\",\"trace_id\":\"bd87eb41-3fff-4782-9b21-e420abd24c3a\"}\n[2026-04-24 10:38:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"4ba21787-388d-4a75-b097-10ca75622abd\",\"trace_id\":\"1b9d20b1-059c-4457-8f1c-924489985e62\"}\n[2026-04-24 10:38:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"4ba21787-388d-4a75-b097-10ca75622abd\",\"trace_id\":\"1b9d20b1-059c-4457-8f1c-924489985e62\"}\n[2026-04-24 10:39:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"c282109a-e743-4910-8eaa-828aa9aefb19\",\"trace_id\":\"a8999946-2027-4a46-8cbc-600ca892971c\"}\n[2026-04-24 10:39:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c282109a-e743-4910-8eaa-828aa9aefb19\",\"trace_id\":\"a8999946-2027-4a46-8cbc-600ca892971c\"}\n[2026-04-24 10:39:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"c282109a-e743-4910-8eaa-828aa9aefb19\",\"trace_id\":\"a8999946-2027-4a46-8cbc-600ca892971c\"}\n[2026-04-24 10:39:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"d7182115-c721-47d4-a1d5-94d87d56c4e9\",\"trace_id\":\"8b35ed74-cca1-4eae-99fa-4d31d9b13ae8\"}\n[2026-04-24 10:39:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"d7182115-c721-47d4-a1d5-94d87d56c4e9\",\"trace_id\":\"8b35ed74-cca1-4eae-99fa-4d31d9b13ae8\"}\n[2026-04-24 10:39:23] local.NOTICE: Monitoring start {\"correlation_id\":\"27299084-f76c-4397-b5e0-2e9b2055e681\",\"trace_id\":\"34f513e1-7da0-4e5a-a098-819d688c2440\"}\n[2026-04-24 10:39:24] local.NOTICE: Monitoring end {\"correlation_id\":\"27299084-f76c-4397-b5e0-2e9b2055e681\",\"trace_id\":\"34f513e1-7da0-4e5a-a098-819d688c2440\"}\n[2026-04-24 10:39:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"648cf755-ce41-4cb3-994a-f19be68b01dc\",\"trace_id\":\"5e5c0d77-0412-423f-83c3-612a91531cb9\"}\n[2026-04-24 10:39:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"648cf755-ce41-4cb3-994a-f19be68b01dc\",\"trace_id\":\"5e5c0d77-0412-423f-83c3-612a91531cb9\"}\n[2026-04-24 10:39:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"9e892f5a-1994-4a76-b58f-bf30a293bc17\",\"trace_id\":\"47b816b7-c7c4-4316-a525-3212b72c1081\"}\n[2026-04-24 10:39:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9e892f5a-1994-4a76-b58f-bf30a293bc17\",\"trace_id\":\"47b816b7-c7c4-4316-a525-3212b72c1081\"}\n[2026-04-24 10:39:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9e892f5a-1994-4a76-b58f-bf30a293bc17\",\"trace_id\":\"47b816b7-c7c4-4316-a525-3212b72c1081\"}\n[2026-04-24 10:39:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"9e892f5a-1994-4a76-b58f-bf30a293bc17\",\"trace_id\":\"47b816b7-c7c4-4316-a525-3212b72c1081\"}\n[2026-04-24 10:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"c61bbf92-2cd5-4e7d-ae1b-097c7b22b760\",\"trace_id\":\"943c199b-5915-4638-b26f-9ebbaa4e5951\"}\n[2026-04-24 10:39:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"c61bbf92-2cd5-4e7d-ae1b-097c7b22b760\",\"trace_id\":\"943c199b-5915-4638-b26f-9ebbaa4e5951\"}\n[2026-04-24 10:39:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"c61bbf92-2cd5-4e7d-ae1b-097c7b22b760\",\"trace_id\":\"943c199b-5915-4638-b26f-9ebbaa4e5951\"}\n[2026-04-24 10:39:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c61bbf92-2cd5-4e7d-ae1b-097c7b22b760\",\"trace_id\":\"943c199b-5915-4638-b26f-9ebbaa4e5951\"}\n[2026-04-24 10:39:45] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"c61bbf92-2cd5-4e7d-ae1b-097c7b22b760\",\"trace_id\":\"943c199b-5915-4638-b26f-9ebbaa4e5951\"}\n[2026-04-24 10:39:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"c61bbf92-2cd5-4e7d-ae1b-097c7b22b760\",\"trace_id\":\"943c199b-5915-4638-b26f-9ebbaa4e5951\"}\n[2026-04-24 10:39:52] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"f5e9e1c6-a2b7-4389-8b09-4bac9f893daa\",\"trace_id\":\"d964aaf1-4db6-43b2-b3b6-f463dc269e63\"}\n[2026-04-24 10:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"e7c58474-886e-4045-a81b-08ad59e97dcd\",\"trace_id\":\"794b5a18-5525-4851-9c29-229a3ec412a4\"}\n[2026-04-24 10:40:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e7c58474-886e-4045-a81b-08ad59e97dcd\",\"trace_id\":\"794b5a18-5525-4851-9c29-229a3ec412a4\"}\n[2026-04-24 10:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"e7c58474-886e-4045-a81b-08ad59e97dcd\",\"trace_id\":\"794b5a18-5525-4851-9c29-229a3ec412a4\"}\n[2026-04-24 10:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"09e6afde-f9f7-44ef-8703-89fc9479e345\",\"trace_id\":\"35d3e72a-2392-4219-9317-32c7d0f4b2d7\"}\n[2026-04-24 10:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"09e6afde-f9f7-44ef-8703-89fc9479e345\",\"trace_id\":\"35d3e72a-2392-4219-9317-32c7d0f4b2d7\"}\n[2026-04-24 10:40:21] local.NOTICE: Monitoring start {\"correlation_id\":\"5e67b9e1-9e94-414b-ba6c-ab0e508f7de5\",\"trace_id\":\"987a2217-3c6f-49ed-8f61-df78b2e16b95\"}\n[2026-04-24 10:40:21] local.NOTICE: Monitoring end {\"correlation_id\":\"5e67b9e1-9e94-414b-ba6c-ab0e508f7de5\",\"trace_id\":\"987a2217-3c6f-49ed-8f61-df78b2e16b95\"}\n[2026-04-24 10:40:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"aa034468-7bb4-44a8-9de1-8ed3c38901bf\",\"trace_id\":\"969a7bca-fe51-4982-939c-4b7e019fffdc\"}\n[2026-04-24 10:40:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"aa034468-7bb4-44a8-9de1-8ed3c38901bf\",\"trace_id\":\"969a7bca-fe51-4982-939c-4b7e019fffdc\"}\n[2026-04-24 10:40:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"364e20d6-12ff-4f5f-af75-134ac8dd56b5\",\"trace_id\":\"f9932c8b-02a8-4aa0-ba5c-ade95b9b5609\"}\n[2026-04-24 10:40:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"364e20d6-12ff-4f5f-af75-134ac8dd56b5\",\"trace_id\":\"f9932c8b-02a8-4aa0-ba5c-ade95b9b5609\"}\n[2026-04-24 10:40:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"364e20d6-12ff-4f5f-af75-134ac8dd56b5\",\"trace_id\":\"f9932c8b-02a8-4aa0-ba5c-ade95b9b5609\"}\n[2026-04-24 10:40:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"364e20d6-12ff-4f5f-af75-134ac8dd56b5\",\"trace_id\":\"f9932c8b-02a8-4aa0-ba5c-ade95b9b5609\"}\n[2026-04-24 10:40:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"dec148e1-6cfc-4196-93b4-7392214485ea\",\"trace_id\":\"6f285d37-8d04-4c75-8c40-d2aabf9337ba\"}\n[2026-04-24 10:40:38] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:38:00, 2026-04-24 10:40:00] {\"correlation_id\":\"dec148e1-6cfc-4196-93b4-7392214485ea\",\"trace_id\":\"6f285d37-8d04-4c75-8c40-d2aabf9337ba\"}\n[2026-04-24 10:40:38] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:38:00, 2026-04-24 10:40:00] {\"correlation_id\":\"dec148e1-6cfc-4196-93b4-7392214485ea\",\"trace_id\":\"6f285d37-8d04-4c75-8c40-d2aabf9337ba\"}\n[2026-04-24 10:40:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"dec148e1-6cfc-4196-93b4-7392214485ea\",\"trace_id\":\"6f285d37-8d04-4c75-8c40-d2aabf9337ba\"}\n[2026-04-24 10:40:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"5ffc43bb-9998-404e-b93b-20703a72fb0b\",\"trace_id\":\"a38adc36-a696-4cbd-93bb-0beb86c1c774\"}\n[2026-04-24 10:40:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"5ffc43bb-9998-404e-b93b-20703a72fb0b\",\"trace_id\":\"a38adc36-a696-4cbd-93bb-0beb86c1c774\"}\n[2026-04-24 10:40:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"3df8abcd-13c6-4dbb-bc9f-701ec27c5ef4\",\"trace_id\":\"5749396d-a60d-4183-bbd4-829a978e3a58\"}\n[2026-04-24 10:40:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"3df8abcd-13c6-4dbb-bc9f-701ec27c5ef4\",\"trace_id\":\"5749396d-a60d-4183-bbd4-829a978e3a58\"}\n[2026-04-24 10:40:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"b06884d6-b3ab-4b3d-a22e-c2e6960ef404\",\"trace_id\":\"6f2693d9-7ced-4f04-bd07-eba7ab289e39\"}\n[2026-04-24 10:40:56] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"b06884d6-b3ab-4b3d-a22e-c2e6960ef404\",\"trace_id\":\"6f2693d9-7ced-4f04-bd07-eba7ab289e39\"}\n[2026-04-24 10:40:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"b06884d6-b3ab-4b3d-a22e-c2e6960ef404\",\"trace_id\":\"6f2693d9-7ced-4f04-bd07-eba7ab289e39\"}\n[2026-04-24 10:41:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"7810ea54-a6fb-488b-950f-2f084c71a064\",\"trace_id\":\"3ca90aba-713c-4a75-8028-2b38a1f56c15\"}\n[2026-04-24 10:41:02] local.INFO: Running conference:monitor:start command for activities in (2026-04-24 10:31:00, 2026-04-24 10:36:00] {\"correlation_id\":\"7810ea54-a6fb-488b-950f-2f084c71a064\",\"trace_id\":\"3ca90aba-713c-4a75-8028-2b38a1f56c15\"}\n[2026-04-24 10:41:03] local.INFO: [conference:monitor:start] No activities found in (2026-04-24 10:31:00, 2026-04-24 10:36:00] {\"correlation_id\":\"7810ea54-a6fb-488b-950f-2f084c71a064\",\"trace_id\":\"3ca90aba-713c-4a75-8028-2b38a1f56c15\"}\n[2026-04-24 10:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"7810ea54-a6fb-488b-950f-2f084c71a064\",\"trace_id\":\"3ca90aba-713c-4a75-8028-2b38a1f56c15\"}\n[2026-04-24 10:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"bcfa8eb1-dc0e-4449-9920-2bd723db4121\",\"trace_id\":\"1f01785a-8be0-4fe0-af84-414451dbc297\"}\n[2026-04-24 10:41:08] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"10:36\",\"to\":\"10:41\"} {\"correlation_id\":\"bcfa8eb1-dc0e-4449-9920-2bd723db4121\",\"trace_id\":\"1f01785a-8be0-4fe0-af84-414451dbc297\"}\n[2026-04-24 10:41:08] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"00:31\",\"to\":\"00:36\"} {\"correlation_id\":\"bcfa8eb1-dc0e-4449-9920-2bd723db4121\",\"trace_id\":\"1f01785a-8be0-4fe0-af84-414451dbc297\"}\n[2026-04-24 10:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"bcfa8eb1-dc0e-4449-9920-2bd723db4121\",\"trace_id\":\"1f01785a-8be0-4fe0-af84-414451dbc297\"}\n[2026-04-24 10:41:15] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:15] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:16] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:16] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:16] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:16] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"974445d8-9256-49fd-8133-97b068b18251\",\"trace_id\":\"409954c6-e337-4e4d-b769-c2c119e465c6\"}\n[2026-04-24 10:41:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"1e1796ab-cabd-4e48-a3a5-67a664afdc18\",\"trace_id\":\"23555050-5b20-4059-aeb9-a957d70637c5\"}\n[2026-04-24 10:41:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"1e1796ab-cabd-4e48-a3a5-67a664afdc18\",\"trace_id\":\"23555050-5b20-4059-aeb9-a957d70637c5\"}\n[2026-04-24 10:41:27] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:27] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:27] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:27] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-04-24T10:43:27.859813Z\"} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:27] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:27] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"974445d8-9256-49fd-8133-97b068b18251\",\"trace_id\":\"409954c6-e337-4e4d-b769-c2c119e465c6\"}\n[2026-04-24 10:41:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:33] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:33] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"684f3425-f03d-4233-b383-03b51ba2954d\",\"trace_id\":\"789c5af8-88cd-4c4f-9983-0bb127171faa\"}\n[2026-04-24 10:41:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"684f3425-f03d-4233-b383-03b51ba2954d\",\"trace_id\":\"789c5af8-88cd-4c4f-9983-0bb127171faa\"}\n[2026-04-24 10:41:38] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:38] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"54a5e141-46c5-4c26-be85-cc9ddd10b329\",\"trace_id\":\"05a19cf6-6a1f-4427-b834-a9245abd1e9a\"}\n[2026-04-24 10:41:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"54a5e141-46c5-4c26-be85-cc9ddd10b329\",\"trace_id\":\"05a19cf6-6a1f-4427-b834-a9245abd1e9a\"}\n[2026-04-24 10:41:54] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:54] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"9ffcc71c-0d35-4c76-a3a4-21250b09fb4c\",\"trace_id\":\"9613a3e3-00fb-480f-9aac-e389e035f4a4\"}\n[2026-04-24 10:42:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9ffcc71c-0d35-4c76-a3a4-21250b09fb4c\",\"trace_id\":\"9613a3e3-00fb-480f-9aac-e389e035f4a4\"}\n[2026-04-24 10:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"9ffcc71c-0d35-4c76-a3a4-21250b09fb4c\",\"trace_id\":\"9613a3e3-00fb-480f-9aac-e389e035f4a4\"}\n[2026-04-24 10:42:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"194bc665-f2d7-421f-86a1-5a93756f8bed\",\"trace_id\":\"e6953dc5-512b-45e2-8665-38fdd3927c17\"}\n[2026-04-24 10:42:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"194bc665-f2d7-421f-86a1-5a93756f8bed\",\"trace_id\":\"e6953dc5-512b-45e2-8665-38fdd3927c17\"}\n[2026-04-24 10:42:24] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:42:24] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:42:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:42:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:42:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:42:24] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":265.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.72} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:42:24] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:42:26] local.NOTICE: Monitoring start {\"correlation_id\":\"fa3c8e3d-8dd3-46c2-b6a7-3716462beb08\",\"trace_id\":\"21265322-4fec-405b-95e8-5005164d9e51\"}\n[2026-04-24 10:42:26] local.NOTICE: Monitoring end {\"correlation_id\":\"fa3c8e3d-8dd3-46c2-b6a7-3716462beb08\",\"trace_id\":\"21265322-4fec-405b-95e8-5005164d9e51\"}\n[2026-04-24 10:42:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"c76858df-2745-4106-a5b8-aad6870ef4a5\",\"trace_id\":\"bc996feb-7500-433b-9c03-e9d0210cc4c4\"}\n[2026-04-24 10:42:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"c76858df-2745-4106-a5b8-aad6870ef4a5\",\"trace_id\":\"bc996feb-7500-433b-9c03-e9d0210cc4c4\"}\n[2026-04-24 10:42:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"70c8501b-3ede-4e54-bbc8-9569b46cb30a\",\"trace_id\":\"75a24f2f-98d7-4783-bcd0-b0217af708a8\"}\n[2026-04-24 10:42:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"70c8501b-3ede-4e54-bbc8-9569b46cb30a\",\"trace_id\":\"75a24f2f-98d7-4783-bcd0-b0217af708a8\"}\n[2026-04-24 10:42:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"70c8501b-3ede-4e54-bbc8-9569b46cb30a\",\"trace_id\":\"75a24f2f-98d7-4783-bcd0-b0217af708a8\"}\n[2026-04-24 10:42:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"70c8501b-3ede-4e54-bbc8-9569b46cb30a\",\"trace_id\":\"75a24f2f-98d7-4783-bcd0-b0217af708a8\"}\n[2026-04-24 10:42:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"69e90715-4c8e-48f3-960f-069a8a9a6ebf\",\"trace_id\":\"72f23a77-3c83-4f13-aad0-aaab4deedadf\"}\n[2026-04-24 10:42:50] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:40:00, 2026-04-24 10:42:00] {\"correlation_id\":\"69e90715-4c8e-48f3-960f-069a8a9a6ebf\",\"trace_id\":\"72f23a77-3c83-4f13-aad0-aaab4deedadf\"}\n[2026-04-24 10:42:51] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:40:00, 2026-04-24 10:42:00] {\"correlation_id\":\"69e90715-4c8e-48f3-960f-069a8a9a6ebf\",\"trace_id\":\"72f23a77-3c83-4f13-aad0-aaab4deedadf\"}\n[2026-04-24 10:42:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"69e90715-4c8e-48f3-960f-069a8a9a6ebf\",\"trace_id\":\"72f23a77-3c83-4f13-aad0-aaab4deedadf\"}\n[2026-04-24 10:42:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"d4d6680a-2ead-4560-bdd8-457b047d61b2\",\"trace_id\":\"a4946a48-3be8-4d80-9e4d-b9fc11f863e9\"}\n[2026-04-24 10:42:59] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d4d6680a-2ead-4560-bdd8-457b047d61b2\",\"trace_id\":\"a4946a48-3be8-4d80-9e4d-b9fc11f863e9\"}\n[2026-04-24 10:42:59] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d4d6680a-2ead-4560-bdd8-457b047d61b2\",\"trace_id\":\"a4946a48-3be8-4d80-9e4d-b9fc11f863e9\"}\n[2026-04-24 10:42:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"d4d6680a-2ead-4560-bdd8-457b047d61b2\",\"trace_id\":\"a4946a48-3be8-4d80-9e4d-b9fc11f863e9\"}\n[2026-04-24 10:43:01] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"181fefef-3ab4-4e50-9e43-0176839f80a5\",\"trace_id\":\"a4946a48-3be8-4d80-9e4d-b9fc11f863e9\"}\n[2026-04-24 10:43:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"3e9ceb6d-2bb8-4afa-8dd2-fe7aee0b5513\",\"trace_id\":\"ca55cc1e-bd7e-4e16-ad6e-e891914631f6\"}\n[2026-04-24 10:43:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3e9ceb6d-2bb8-4afa-8dd2-fe7aee0b5513\",\"trace_id\":\"ca55cc1e-bd7e-4e16-ad6e-e891914631f6\"}\n[2026-04-24 10:43:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"3e9ceb6d-2bb8-4afa-8dd2-fe7aee0b5513\",\"trace_id\":\"ca55cc1e-bd7e-4e16-ad6e-e891914631f6\"}\n[2026-04-24 10:43:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"5ff9c995-0d83-4239-916b-64632bf138e5\",\"trace_id\":\"cd69934e-4d72-42fd-a81b-2d7c2e4432eb\"}\n[2026-04-24 10:43:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"5ff9c995-0d83-4239-916b-64632bf138e5\",\"trace_id\":\"cd69934e-4d72-42fd-a81b-2d7c2e4432eb\"}\n[2026-04-24 10:43:23] local.NOTICE: Monitoring start {\"correlation_id\":\"b76e2ff3-eb29-416a-ba96-a142852f7d5f\",\"trace_id\":\"a439d0ef-0d9b-44d9-91c4-71ec9a5ef6f1\"}\n[2026-04-24 10:43:23] local.NOTICE: Monitoring end {\"correlation_id\":\"b76e2ff3-eb29-416a-ba96-a142852f7d5f\",\"trace_id\":\"a439d0ef-0d9b-44d9-91c4-71ec9a5ef6f1\"}\n[2026-04-24 10:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"f6e72721-737d-449d-9585-97240bd59eab\",\"trace_id\":\"83583a54-50e1-410f-bf4c-1437633db0d6\"}\n[2026-04-24 10:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"f6e72721-737d-449d-9585-97240bd59eab\",\"trace_id\":\"83583a54-50e1-410f-bf4c-1437633db0d6\"}\n[2026-04-24 10:43:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"735d25af-b789-4430-9d79-854572b7f7ce\",\"trace_id\":\"cb173b25-393b-427e-a6aa-5c42a140fb12\"}\n[2026-04-24 10:43:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"735d25af-b789-4430-9d79-854572b7f7ce\",\"trace_id\":\"cb173b25-393b-427e-a6aa-5c42a140fb12\"}\n[2026-04-24 10:43:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"735d25af-b789-4430-9d79-854572b7f7ce\",\"trace_id\":\"cb173b25-393b-427e-a6aa-5c42a140fb12\"}\n[2026-04-24 10:43:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"735d25af-b789-4430-9d79-854572b7f7ce\",\"trace_id\":\"cb173b25-393b-427e-a6aa-5c42a140fb12\"}\n[2026-04-24 10:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"cf225528-db6c-4fd4-a774-2c6a5dae9850\",\"trace_id\":\"c3fc326d-e22a-4102-a36c-2913c8743149\"}\n[2026-04-24 10:43:43] local.NOTICE: Calendar sync start {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"cf225528-db6c-4fd4-a774-2c6a5dae9850\",\"trace_id\":\"c3fc326d-e22a-4102-a36c-2913c8743149\"}\n[2026-04-24 10:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 141772b4-13f6-4d7c-9d62-180e61140e00 Correlation ID: 7a33d672-3b29-409c-9a7e-809b437ff1cc Timestamp: 2026-04-24 10:43:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-04-24 10:43:47Z\\\",\\\"trace_id\\\":\\\"141772b4-13f6-4d7c-9d62-180e61140e00\\\",\\\"correlation_id\\\":\\\"7a33d672-3b29-409c-9a7e-809b437ff1cc\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 644bfd61-a77c-47d4-8021-25ebad431400 Correlation ID: 2d57c4e2-ea25-4cce-ad2f-2070b336feea Timestamp: 2026-04-24 10:43:48Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-04-24 10:43:48Z\\\",\\\"trace_id\\\":\\\"644bfd61-a77c-47d4-8021-25ebad431400\\\",\\\"correlation_id\\\":\\\"2d57c4e2-ea25-4cce-ad2f-2070b336feea\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:48] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 673e2791-28a4-4b0c-b527-94df7fa61400 Correlation ID: 39b3df04-64a8-4564-a9fc-1dc97e3e18c3 Timestamp: 2026-04-24 10:43:50Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-04-24 10:43:50Z\\\",\\\"trace_id\\\":\\\"673e2791-28a4-4b0c-b527-94df7fa61400\\\",\\\"correlation_id\\\":\\\"39b3df04-64a8-4564-a9fc-1dc97e3e18c3\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 227397e0-6520-44b0-aa07-4b8c19f11400 Correlation ID: 64c1c5eb-f1e9-4240-b801-499afc07c25a Timestamp: 2026-04-24 10:43:50Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-04-24 10:43:50Z\\\",\\\"trace_id\\\":\\\"227397e0-6520-44b0-aa07-4b8c19f11400\\\",\\\"correlation_id\\\":\\\"64c1c5eb-f1e9-4240-b801-499afc07c25a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a39f1656-5747-486c-9cd8-3f47abfaadbc\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a39f1656-5747-486c-9cd8-3f47abfaadbc\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39f1656-5747-486c-9cd8-3f47abfaadbc\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"a39f1656-5747-486c-9cd8-3f47abfaadbc\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"a39f1656-5747-486c-9cd8-3f47abfaadbc\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a39f1656-5747-486c-9cd8-3f47abfaadbc\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a39f1656-5747-486c-9cd8-3f47abfaadbc\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39f1656-5747-486c-9cd8-3f47abfaadbc\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 824e8253-29dc-41d1-98ea-bfcd67de4400 Correlation ID: 9cf5c0b1-83fd-4c1b-8801-3cb0491fc822 Timestamp: 2026-04-24 10:43:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-04-24 10:43:51Z\\\",\\\"trace_id\\\":\\\"824e8253-29dc-41d1-98ea-bfcd67de4400\\\",\\\"correlation_id\\\":\\\"9cf5c0b1-83fd-4c1b-8801-3cb0491fc822\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"a39f1656-5747-486c-9cd8-3f47abfaadbc\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"a39f1656-5747-486c-9cd8-3f47abfaadbc\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"7c2db39427c8a527d982f28d342e8b1ce66fca1ee2e3d936c44b727ed9da5b57\",\"state\":\"connected\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1775683749,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-04-08 22:58:34\"}}} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"0a4b2ae8-c1d5-4481-934e-981a876900d2\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"0a4b2ae8-c1d5-4481-934e-981a876900d2\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a4b2ae8-c1d5-4481-934e-981a876900d2\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCOpQOqkGB4Pj13KJp8CjfHSqwzw_GVdqxIRq9Jb0hz1cJsuWX3kegXyzmE5ezjgS3bZLZBGTUO4Rg5nbrbDvJdP58A83_g7W_e4dyJy7FzGSzERJRkAPo9reNW1pMNdHsu3K4fPGIclAUOtCFxfbGCwKwBmmG5AfByCkRM7hIX55P_Tomo5tunpeIOFTWpmb6g.gT2h9-9FyL9gDgQlNvJn5K8h1j5MhlzHMCL9NZarLm8\",\"last_sync\":\"2026-04-23 12:43:29\",\"dateMode\":\"daily\"} {\"correlation_id\":\"0a4b2ae8-c1d5-4481-934e-981a876900d2\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a4b2ae8-c1d5-4481-934e-981a876900d2\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a4b2ae8-c1d5-4481-934e-981a876900d2\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a4b2ae8-c1d5-4481-934e-981a876900d2\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"0a4b2ae8-c1d5-4481-934e-981a876900d2\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"0a4b2ae8-c1d5-4481-934e-981a876900d2\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"32f62f76-e6f1-4ee0-8042-c00b13c7fdb7\",\"trace_id\":\"befe512e-5778-40c9-9437-dfd5fe7ba1a5\"}\n[2026-04-24 10:44:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"32f62f76-e6f1-4ee0-8042-c00b13c7fdb7\",\"trace_id\":\"befe512e-5778-40c9-9437-dfd5fe7ba1a5\"}\n[2026-04-24 10:44:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"32f62f76-e6f1-4ee0-8042-c00b13c7fdb7\",\"trace_id\":\"befe512e-5778-40c9-9437-dfd5fe7ba1a5\"}\n[2026-04-24 10:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"2a3fb393-20ad-4f6f-9f4b-a60d4709119b\",\"trace_id\":\"a777c465-1b16-4ad0-9f1d-de1b15057c0e\"}\n[2026-04-24 10:44:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"2a3fb393-20ad-4f6f-9f4b-a60d4709119b\",\"trace_id\":\"a777c465-1b16-4ad0-9f1d-de1b15057c0e\"}\n[2026-04-24 10:44:23] local.NOTICE: Monitoring start {\"correlation_id\":\"cd7273fd-d2b6-432a-9179-1b94660ae99a\",\"trace_id\":\"0c18ec7f-d365-45b5-8c27-ee1627b38ae1\"}\n[2026-04-24 10:44:23] local.NOTICE: Monitoring end {\"correlation_id\":\"cd7273fd-d2b6-432a-9179-1b94660ae99a\",\"trace_id\":\"0c18ec7f-d365-45b5-8c27-ee1627b38ae1\"}\n[2026-04-24 10:44:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"601d69ce-3381-4183-9113-7949977b761b\",\"trace_id\":\"c1189b05-55f2-4e1a-965f-6c7547fcfd1d\"}\n[2026-04-24 10:44:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"601d69ce-3381-4183-9113-7949977b761b\",\"trace_id\":\"c1189b05-55f2-4e1a-965f-6c7547fcfd1d\"}\n[2026-04-24 10:44:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"1351bd14-c41d-4096-89ed-052922431cb2\",\"trace_id\":\"ccae98f3-d931-4e0c-87bd-c30a8a9fcecf\"}\n[2026-04-24 10:44:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1351bd14-c41d-4096-89ed-052922431cb2\",\"trace_id\":\"ccae98f3-d931-4e0c-87bd-c30a8a9fcecf\"}\n[2026-04-24 10:44:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1351bd14-c41d-4096-89ed-052922431cb2\",\"trace_id\":\"ccae98f3-d931-4e0c-87bd-c30a8a9fcecf\"}\n[2026-04-24 10:44:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"1351bd14-c41d-4096-89ed-052922431cb2\",\"trace_id\":\"ccae98f3-d931-4e0c-87bd-c30a8a9fcecf\"}\n[2026-04-24 10:44:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"66a1012e-ef69-422b-a93c-fa4a061daabf\",\"trace_id\":\"208c3955-5b1a-40f6-baff-b4f3155f7fe5\"}\n[2026-04-24 10:44:42] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:42:00, 2026-04-24 10:44:00] {\"correlation_id\":\"66a1012e-ef69-422b-a93c-fa4a061daabf\",\"trace_id\":\"208c3955-5b1a-40f6-baff-b4f3155f7fe5\"}\n[2026-04-24 10:44:42] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:42:00, 2026-04-24 10:44:00] {\"correlation_id\":\"66a1012e-ef69-422b-a93c-fa4a061daabf\",\"trace_id\":\"208c3955-5b1a-40f6-baff-b4f3155f7fe5\"}\n[2026-04-24 10:44:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"66a1012e-ef69-422b-a93c-fa4a061daabf\",\"trace_id\":\"208c3955-5b1a-40f6-baff-b4f3155f7fe5\"}\n[2026-04-24 10:44:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"4040c772-42c0-4cb0-9a74-0df8fb7d5731\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"4040c772-42c0-4cb0-9a74-0df8fb7d5731\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:48] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":23661824,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"4fb201ca-77ea-4d78-ae82-347463b6686d\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:48] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-04-24 06:38:47\"}}} {\"correlation_id\":\"4fb201ca-77ea-4d78-ae82-347463b6686d\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:48] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"4fb201ca-77ea-4d78-ae82-347463b6686d\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:48] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4fb201ca-77ea-4d78-ae82-347463b6686d\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:48] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4fb201ca-77ea-4d78-ae82-347463b6686d\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:48] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":67.35,\"usage\":23704944,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4fb201ca-77ea-4d78-ae82-347463b6686d\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":23660768,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"dbb9c5c5-f699-494b-9c80-426379c721d7\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:50] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1775683749,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-04-08 22:58:34\"}}} {\"correlation_id\":\"dbb9c5c5-f699-494b-9c80-426379c721d7\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:50] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"dbb9c5c5-f699-494b-9c80-426379c721d7\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:50] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"dbb9c5c5-f699-494b-9c80-426379c721d7\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:50] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"dbb9c5c5-f699-494b-9c80-426379c721d7\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":30.63,\"usage\":23705592,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"dbb9c5c5-f699-494b-9c80-426379c721d7\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:52] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":23660760,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"97d41525-7d13-4f90-b766-c1cdba7f94ed\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:52] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"97d41525-7d13-4f90-b766-c1cdba7f94ed\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:53] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1777025653,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"97d41525-7d13-4f90-b766-c1cdba7f94ed\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:54] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1434.81,\"usage\":23679464,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"97d41525-7d13-4f90-b766-c1cdba7f94ed\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":23660952,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"6da7eab4-1d26-485b-9355-f8fc961b4019\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:54] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1775683749,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-04-08 22:58:34\"}}} {\"correlation_id\":\"6da7eab4-1d26-485b-9355-f8fc961b4019\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"6da7eab4-1d26-485b-9355-f8fc961b4019\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:54] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"6da7eab4-1d26-485b-9355-f8fc961b4019\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:54] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"6da7eab4-1d26-485b-9355-f8fc961b4019\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:54] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":38.86,\"usage\":23705736,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"6da7eab4-1d26-485b-9355-f8fc961b4019\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:56] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":23661080,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"68d3a020-e2c6-4848-88bb-db7362a988ce\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"68d3a020-e2c6-4848-88bb-db7362a988ce\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"68d3a020-e2c6-4848-88bb-db7362a988ce\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"68d3a020-e2c6-4848-88bb-db7362a988ce\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"68d3a020-e2c6-4848-88bb-db7362a988ce\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:57] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1241.2,\"usage\":23682400,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"68d3a020-e2c6-4848-88bb-db7362a988ce\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:58] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":23661040,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"651767a2-4c3f-49df-8f8d-1c009dd1eec3\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:58] local.WARNING: [Bullhorn] Account not connected for user {\"userId\":\"941d12a6-e84f-4c3a-a4c8-2ef433792095\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":348,\"sociable_id\":121,\"provider_user_id\":null,\"expires\":1733727508,\"refresh_token_expires\":null,\"provider\":\"bullhorn\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2021-04-06 11:07:26\",\"updated_at\":\"2024-12-09 15:10:40\"}}} {\"correlation_id\":\"651767a2-4c3f-49df-8f8d-1c009dd1eec3\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"651767a2-4c3f-49df-8f8d-1c009dd1eec3\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"651767a2-4c3f-49df-8f8d-1c009dd1eec3\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"651767a2-4c3f-49df-8f8d-1c009dd1eec3\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:58] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":22.86,\"usage\":23703400,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"651767a2-4c3f-49df-8f8d-1c009dd1eec3\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:00] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":23660416,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"9457fce9-3b36-4ff6-a08e-5f5d68d4151f\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:00] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"ed89227b-e364-4dfb-b4bf-343f154bf21e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1360,\"sociable_id\":245,\"provider_user_id\":\"0052g000003frZNAAY\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-02 06:11:55\",\"updated_at\":\"2024-12-11 08:50:23\"}}} {\"correlation_id\":\"9457fce9-3b36-4ff6-a08e-5f5d68d4151f\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"9457fce9-3b36-4ff6-a08e-5f5d68d4151f\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"9457fce9-3b36-4ff6-a08e-5f5d68d4151f\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"9457fce9-3b36-4ff6-a08e-5f5d68d4151f\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:00] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":49.38,\"usage\":23702456,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9457fce9-3b36-4ff6-a08e-5f5d68d4151f\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:02] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":23660600,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:02] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-04-24 10:14:23\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:02] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: ExternalContactMap before {\"current\":23668520,\"peak\":78342936,\"config_id\":500} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: ExternalContactMap after {\"used\":4960,\"current\":23673480,\"peak\":78342936,\"config_id\":500} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: ExternalContactMap final {\"used\":5824,\"current\":23674344,\"peak\":78342936,\"config_id\":500} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: [integration-app] create ExternalAccountMap {\"team_id\":3143,\"config_id\":500} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: ExternalAccountMap before {\"current\":23671352,\"peak\":78342936,\"config_id\":500} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: ExternalAccountMap after {\"used\":5280,\"current\":23676632,\"peak\":78342936,\"config_id\":500} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: ExternalAccountMap final {\"used\":6144,\"current\":23677496,\"peak\":78342936,\"config_id\":500} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-04-24 10:14:23\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-04-24 10:14:23\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-04-24 10:14:23\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-04-24 10:14:23\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:05] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-04-24 10:14:23\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:05] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-04-24 10:14:23\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:05] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/get-converted-leads/run\",\"full_target\":\"connections/zohocrm/actions/get-converted-leads/run\"} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:06] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-04-24 10:14:23\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:06] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":3242.96,\"usage\":23680656,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}","depth":4,"value":"[2026-04-24 10:24:09] local.INFO: [automated-reports] Started {\"correlation_id\":\"4ef6e232-88d2-4935-87d3-62ff95c3b2d5\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:09] local.INFO: [automated-reports] Checking conditions {\"isMonday\":false,\"isWeekend\":false,\"isFirstDayOfMonth\":false,\"currentMonth\":4,\"isQuarterlyMonth\":true} {\"correlation_id\":\"4ef6e232-88d2-4935-87d3-62ff95c3b2d5\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:09] local.INFO: [automated-reports] Processing daily reports {\"correlation_id\":\"4ef6e232-88d2-4935-87d3-62ff95c3b2d5\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:10] local.INFO: [automated-reports] Found 1 daily reports to process {\"correlation_id\":\"4ef6e232-88d2-4935-87d3-62ff95c3b2d5\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:10] local.INFO: [automated-reports] Dispatching Generate Report job for report {\"reportUuid\":\"4f6ca2b5-1993-48aa-99ad-b66f19f15d43\",\"teamId\":1,\"frequency\":\"weekly\",\"type\":\"ask_jiminny\"} {\"correlation_id\":\"4ef6e232-88d2-4935-87d3-62ff95c3b2d5\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:10] local.INFO: [automated-reports] Completed {\"correlation_id\":\"4ef6e232-88d2-4935-87d3-62ff95c3b2d5\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:11] local.INFO: [AskJiminnyReport:Generate] Started {\"automatedReportUuid\":\"4f6ca2b5-1993-48aa-99ad-b66f19f15d43\"} {\"correlation_id\":\"00ca4f00-8a80-4bdd-b401-804183825595\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:15] local.INFO: [AskJiminnyReport] Fetched activity IDs for saved search {\"saved_search_id\":1977,\"user_id\":143,\"activity_count\":0} {\"correlation_id\":\"00ca4f00-8a80-4bdd-b401-804183825595\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:15] local.INFO: [AskJiminnyReport:Generate] Fetched activity IDs {\"automatedReportUuid\":\"4f6ca2b5-1993-48aa-99ad-b66f19f15d43\",\"activityCount\":0} {\"correlation_id\":\"00ca4f00-8a80-4bdd-b401-804183825595\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:15] local.INFO: [AskJiminnyReport:Generate] Not enough activities, skipped {\"automatedReportUuid\":\"4f6ca2b5-1993-48aa-99ad-b66f19f15d43\",\"activityCount\":0} {\"correlation_id\":\"00ca4f00-8a80-4bdd-b401-804183825595\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:15] local.INFO: [AskJiminnyReport:Generate] Dispatched not-generated notifications {\"automatedReportUuid\":\"4f6ca2b5-1993-48aa-99ad-b66f19f15d43\",\"recipientsCount\":1} {\"correlation_id\":\"00ca4f00-8a80-4bdd-b401-804183825595\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:18] local.INFO: [Send Report Not Generated Mail] Email sent {\"uuid\":\"dcb12181-9de1-4ef0-9d45-fb4ea6fd0778\",\"email\":\"lukas.kovalik@jiminny.com\"} {\"correlation_id\":\"27ada0cc-4eb3-49c4-9115-19ece9e24576\",\"trace_id\":\"6af075f9-940e-4789-b9b4-cb42649b2cf5\"}\n[2026-04-24 10:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"d9261d90-9df8-4eb4-8dcc-54b29d8e39cb\",\"trace_id\":\"5c4d23da-1340-4066-b354-55bfb79c0f4a\"}\n[2026-04-24 10:24:18] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d9261d90-9df8-4eb4-8dcc-54b29d8e39cb\",\"trace_id\":\"5c4d23da-1340-4066-b354-55bfb79c0f4a\"}\n[2026-04-24 10:24:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"d9261d90-9df8-4eb4-8dcc-54b29d8e39cb\",\"trace_id\":\"5c4d23da-1340-4066-b354-55bfb79c0f4a\"}\n[2026-04-24 10:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"cdcdc062-b51a-4f27-9d4c-95ef48442391\",\"trace_id\":\"e7701141-f61a-431e-8fac-697bccd67630\"}\n[2026-04-24 10:24:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"cdcdc062-b51a-4f27-9d4c-95ef48442391\",\"trace_id\":\"e7701141-f61a-431e-8fac-697bccd67630\"}\n[2026-04-24 10:24:35] local.NOTICE: Monitoring start {\"correlation_id\":\"862cdf2d-46ca-4f7b-966b-79a5f2648771\",\"trace_id\":\"961d76fe-7891-42e6-9d2e-c1dec32ec53b\"}\n[2026-04-24 10:24:35] local.NOTICE: Monitoring end {\"correlation_id\":\"862cdf2d-46ca-4f7b-966b-79a5f2648771\",\"trace_id\":\"961d76fe-7891-42e6-9d2e-c1dec32ec53b\"}\n[2026-04-24 10:24:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"3529a427-eebb-4c61-9efb-be7b720d4dc3\",\"trace_id\":\"63b1fd43-6c0e-44d1-a8d4-a7aaa509815d\"}\n[2026-04-24 10:24:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"3529a427-eebb-4c61-9efb-be7b720d4dc3\",\"trace_id\":\"63b1fd43-6c0e-44d1-a8d4-a7aaa509815d\"}\n[2026-04-24 10:24:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"ebdfa028-0918-4dff-8eec-bafc1d997f9d\",\"trace_id\":\"dd8b3479-50fa-4fc2-b3f9-581a6250baea\"}\n[2026-04-24 10:24:53] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ebdfa028-0918-4dff-8eec-bafc1d997f9d\",\"trace_id\":\"dd8b3479-50fa-4fc2-b3f9-581a6250baea\"}\n[2026-04-24 10:24:53] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ebdfa028-0918-4dff-8eec-bafc1d997f9d\",\"trace_id\":\"dd8b3479-50fa-4fc2-b3f9-581a6250baea\"}\n[2026-04-24 10:24:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"ebdfa028-0918-4dff-8eec-bafc1d997f9d\",\"trace_id\":\"dd8b3479-50fa-4fc2-b3f9-581a6250baea\"}\n[2026-04-24 10:25:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"6ace59e3-341b-49e4-8e3f-36ea22423005\",\"trace_id\":\"53678e7f-c854-4c0f-bc6d-c1ad8ba49696\"}\n[2026-04-24 10:25:01] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:23:00, 2026-04-24 10:25:00] {\"correlation_id\":\"6ace59e3-341b-49e4-8e3f-36ea22423005\",\"trace_id\":\"53678e7f-c854-4c0f-bc6d-c1ad8ba49696\"}\n[2026-04-24 10:25:01] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:23:00, 2026-04-24 10:25:00] {\"correlation_id\":\"6ace59e3-341b-49e4-8e3f-36ea22423005\",\"trace_id\":\"53678e7f-c854-4c0f-bc6d-c1ad8ba49696\"}\n[2026-04-24 10:25:01] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"6ace59e3-341b-49e4-8e3f-36ea22423005\",\"trace_id\":\"53678e7f-c854-4c0f-bc6d-c1ad8ba49696\"}\n[2026-04-24 10:25:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"11e8b9cf-a3f0-49b8-9066-e1f16e743f68\",\"trace_id\":\"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35\"}\n[2026-04-24 10:25:10] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"11e8b9cf-a3f0-49b8-9066-e1f16e743f68\",\"trace_id\":\"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35\"}\n[2026-04-24 10:25:10] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"11e8b9cf-a3f0-49b8-9066-e1f16e743f68\",\"trace_id\":\"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35\"}\n[2026-04-24 10:25:10] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"11e8b9cf-a3f0-49b8-9066-e1f16e743f68\",\"trace_id\":\"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35\"}\n[2026-04-24 10:25:10] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"11e8b9cf-a3f0-49b8-9066-e1f16e743f68\",\"trace_id\":\"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35\"}\n[2026-04-24 10:25:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"11e8b9cf-a3f0-49b8-9066-e1f16e743f68\",\"trace_id\":\"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35\"}\n[2026-04-24 10:25:18] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"6b84611f-1af3-4e64-8c1c-c963ed5bcfa7\",\"trace_id\":\"056c6533-0c1b-480c-93bb-4b7c788b5dc4\"}\n[2026-04-24 10:26:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"cef03617-e15a-498b-8751-efa9b8808ec9\",\"trace_id\":\"793af5d4-ea14-4e7d-bf10-bdf65c4b41b9\"}\n[2026-04-24 10:26:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"cef03617-e15a-498b-8751-efa9b8808ec9\",\"trace_id\":\"793af5d4-ea14-4e7d-bf10-bdf65c4b41b9\"}\n[2026-04-24 10:26:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"cef03617-e15a-498b-8751-efa9b8808ec9\",\"trace_id\":\"793af5d4-ea14-4e7d-bf10-bdf65c4b41b9\"}\n[2026-04-24 10:26:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"d916f4b2-7912-4b9d-a733-794daab3d108\",\"trace_id\":\"75dc6489-d592-4de8-968d-4f9e9c4a2a57\"}\n[2026-04-24 10:26:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"d916f4b2-7912-4b9d-a733-794daab3d108\",\"trace_id\":\"75dc6489-d592-4de8-968d-4f9e9c4a2a57\"}\n[2026-04-24 10:26:23] local.NOTICE: Monitoring start {\"correlation_id\":\"9e9c1b30-7cf9-4944-9e1e-5a81e68a65df\",\"trace_id\":\"000992c5-8e61-4246-a35f-09f1d832ddd1\"}\n[2026-04-24 10:26:23] local.NOTICE: Monitoring end {\"correlation_id\":\"9e9c1b30-7cf9-4944-9e1e-5a81e68a65df\",\"trace_id\":\"000992c5-8e61-4246-a35f-09f1d832ddd1\"}\n[2026-04-24 10:26:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"f8026235-b956-4aaf-9600-b7b93e3d9c74\",\"trace_id\":\"759b3dbc-2e19-46cd-91c9-9065e063d32e\"}\n[2026-04-24 10:26:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"f8026235-b956-4aaf-9600-b7b93e3d9c74\",\"trace_id\":\"759b3dbc-2e19-46cd-91c9-9065e063d32e\"}\n[2026-04-24 10:26:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"4669b9f7-c3b1-4147-b391-8f8314c25042\",\"trace_id\":\"aff20f19-1f01-4fed-98d7-8ecafcae8c6e\"}\n[2026-04-24 10:26:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4669b9f7-c3b1-4147-b391-8f8314c25042\",\"trace_id\":\"aff20f19-1f01-4fed-98d7-8ecafcae8c6e\"}\n[2026-04-24 10:26:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4669b9f7-c3b1-4147-b391-8f8314c25042\",\"trace_id\":\"aff20f19-1f01-4fed-98d7-8ecafcae8c6e\"}\n[2026-04-24 10:26:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"4669b9f7-c3b1-4147-b391-8f8314c25042\",\"trace_id\":\"aff20f19-1f01-4fed-98d7-8ecafcae8c6e\"}\n[2026-04-24 10:26:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"23076007-fc54-415a-9900-2270769cd622\",\"trace_id\":\"ffefe56f-2881-4273-9dd1-93b8efff8334\"}\n[2026-04-24 10:26:39] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:24:00, 2026-04-24 10:26:00] {\"correlation_id\":\"23076007-fc54-415a-9900-2270769cd622\",\"trace_id\":\"ffefe56f-2881-4273-9dd1-93b8efff8334\"}\n[2026-04-24 10:26:39] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:24:00, 2026-04-24 10:26:00] {\"correlation_id\":\"23076007-fc54-415a-9900-2270769cd622\",\"trace_id\":\"ffefe56f-2881-4273-9dd1-93b8efff8334\"}\n[2026-04-24 10:26:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"23076007-fc54-415a-9900-2270769cd622\",\"trace_id\":\"ffefe56f-2881-4273-9dd1-93b8efff8334\"}\n[2026-04-24 10:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"cd5d0352-aec8-49be-8730-433061921ee7\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"cd5d0352-aec8-49be-8730-433061921ee7\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23540024,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":38.25,\"usage\":23605688,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23563904,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"refreshToken\":\"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86\",\"state\":\"connected\"} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:45] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:46] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1499,\"provider\":\"hubspot\",\"state\":\"connected\"} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:46] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.6,\"average_seconds_per_request\":0.6} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":635.09} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":2129.8,\"usage\":23740736,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"281cf1ba-d862-4a45-aaf6-26a340bc2bfd\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23715400,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"09262b7b-a2e2-41d5-b42b-25f31846d7a8\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"09262b7b-a2e2-41d5-b42b-25f31846d7a8\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"09262b7b-a2e2-41d5-b42b-25f31846d7a8\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"09262b7b-a2e2-41d5-b42b-25f31846d7a8\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"09262b7b-a2e2-41d5-b42b-25f31846d7a8\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":51.31,\"usage\":23689016,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"09262b7b-a2e2-41d5-b42b-25f31846d7a8\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23649656,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"70df60f3-aed6-4daa-a246-71fb82f49d68\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"70df60f3-aed6-4daa-a246-71fb82f49d68\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"70df60f3-aed6-4daa-a246-71fb82f49d68\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"70df60f3-aed6-4daa-a246-71fb82f49d68\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"70df60f3-aed6-4daa-a246-71fb82f49d68\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:47] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":18.47,\"usage\":23692568,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"70df60f3-aed6-4daa-a246-71fb82f49d68\",\"trace_id\":\"594c907f-7401-4dd2-8ba1-59e5857f0d4c\"}\n[2026-04-24 10:26:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"42acc0c5-3653-49d1-a44a-19758cc28092\",\"trace_id\":\"c0b07036-9e27-4742-a009-69972c67bced\"}\n[2026-04-24 10:26:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"42acc0c5-3653-49d1-a44a-19758cc28092\",\"trace_id\":\"c0b07036-9e27-4742-a009-69972c67bced\"}\n[2026-04-24 10:26:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"55eab912-4003-455b-813c-4e3f8383acc8\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:26:59] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"55eab912-4003-455b-813c-4e3f8383acc8\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:26:59] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"55eab912-4003-455b-813c-4e3f8383acc8\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:26:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"55eab912-4003-455b-813c-4e3f8383acc8\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:27:00] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"be91dd09-c8e5-4e5d-a1e8-e1cc9979a32f\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"be91dd09-c8e5-4e5d-a1e8-e1cc9979a32f\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"be91dd09-c8e5-4e5d-a1e8-e1cc9979a32f\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:27:00] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"da707eb9-3c1d-487e-8c92-1d018e0ca29d\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:27:00] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-04-24 06:38:47\"}}} {\"correlation_id\":\"da707eb9-3c1d-487e-8c92-1d018e0ca29d\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:27:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"da707eb9-3c1d-487e-8c92-1d018e0ca29d\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:27:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"da707eb9-3c1d-487e-8c92-1d018e0ca29d\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:27:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"da707eb9-3c1d-487e-8c92-1d018e0ca29d\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:27:00] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {\"correlation_id\":\"da707eb9-3c1d-487e-8c92-1d018e0ca29d\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:27:00] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"da707eb9-3c1d-487e-8c92-1d018e0ca29d\",\"trace_id\":\"cf803936-d9cd-4a75-b022-49f4b9a758da\"}\n[2026-04-24 10:28:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"d1e33635-9ed1-4df1-86f1-8a9fbb4a9aad\",\"trace_id\":\"c6abf4b5-1c8f-4bdf-a4ee-99e15a883fdc\"}\n[2026-04-24 10:28:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"d1e33635-9ed1-4df1-86f1-8a9fbb4a9aad\",\"trace_id\":\"c6abf4b5-1c8f-4bdf-a4ee-99e15a883fdc\"}\n[2026-04-24 10:28:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"d1e33635-9ed1-4df1-86f1-8a9fbb4a9aad\",\"trace_id\":\"c6abf4b5-1c8f-4bdf-a4ee-99e15a883fdc\"}\n[2026-04-24 10:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"62e59e15-b6bd-4952-be03-365a8341880d\",\"trace_id\":\"ef3bd6bb-ab65-4e80-82cd-5e91b176b702\"}\n[2026-04-24 10:28:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"62e59e15-b6bd-4952-be03-365a8341880d\",\"trace_id\":\"ef3bd6bb-ab65-4e80-82cd-5e91b176b702\"}\n[2026-04-24 10:28:18] local.NOTICE: Monitoring start {\"correlation_id\":\"fde8ab81-2a83-4068-9a10-f407d3a55d8e\",\"trace_id\":\"5bad50f3-1b72-4f42-82d1-01b230b9c096\"}\n[2026-04-24 10:28:18] local.NOTICE: Monitoring end {\"correlation_id\":\"fde8ab81-2a83-4068-9a10-f407d3a55d8e\",\"trace_id\":\"5bad50f3-1b72-4f42-82d1-01b230b9c096\"}\n[2026-04-24 10:28:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"3b9652a6-4242-49c2-a3c5-a0ff70d13469\",\"trace_id\":\"8a1a2a8c-7fa6-4a35-b189-6165f66e1ae9\"}\n[2026-04-24 10:28:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"3b9652a6-4242-49c2-a3c5-a0ff70d13469\",\"trace_id\":\"8a1a2a8c-7fa6-4a35-b189-6165f66e1ae9\"}\n[2026-04-24 10:28:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"983ba273-68c0-472a-bd0f-83c4705711a3\",\"trace_id\":\"382d4d84-d0e5-4f63-96f1-bfb6c0b366ea\"}\n[2026-04-24 10:28:33] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"983ba273-68c0-472a-bd0f-83c4705711a3\",\"trace_id\":\"382d4d84-d0e5-4f63-96f1-bfb6c0b366ea\"}\n[2026-04-24 10:28:33] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"983ba273-68c0-472a-bd0f-83c4705711a3\",\"trace_id\":\"382d4d84-d0e5-4f63-96f1-bfb6c0b366ea\"}\n[2026-04-24 10:28:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"983ba273-68c0-472a-bd0f-83c4705711a3\",\"trace_id\":\"382d4d84-d0e5-4f63-96f1-bfb6c0b366ea\"}\n[2026-04-24 10:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"26102185-655f-4837-ba5d-ed80e510f81b\",\"trace_id\":\"8eca9c30-8319-480b-b138-c96d558f3930\"}\n[2026-04-24 10:28:39] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:26:00, 2026-04-24 10:28:00] {\"correlation_id\":\"26102185-655f-4837-ba5d-ed80e510f81b\",\"trace_id\":\"8eca9c30-8319-480b-b138-c96d558f3930\"}\n[2026-04-24 10:28:39] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:26:00, 2026-04-24 10:28:00] {\"correlation_id\":\"26102185-655f-4837-ba5d-ed80e510f81b\",\"trace_id\":\"8eca9c30-8319-480b-b138-c96d558f3930\"}\n[2026-04-24 10:28:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"26102185-655f-4837-ba5d-ed80e510f81b\",\"trace_id\":\"8eca9c30-8319-480b-b138-c96d558f3930\"}\n[2026-04-24 10:28:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"6daa2a6a-4861-4a83-97d1-720d8627b90c\",\"trace_id\":\"1a8fc095-aca6-48d5-91f7-775fb9010d5b\"}\n[2026-04-24 10:28:45] local.NOTICE: Calendar sync start {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"6daa2a6a-4861-4a83-97d1-720d8627b90c\",\"trace_id\":\"1a8fc095-aca6-48d5-91f7-775fb9010d5b\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 4ffd6251-0bb8-42a2-a18e-27d014070900 Correlation ID: 3dfd1327-0fd0-48ab-abc8-3e24d3e54823 Timestamp: 2026-04-24 10:28:49Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-04-24 10:28:49Z\\\",\\\"trace_id\\\":\\\"4ffd6251-0bb8-42a2-a18e-27d014070900\\\",\\\"correlation_id\\\":\\\"3dfd1327-0fd0-48ab-abc8-3e24d3e54823\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: a7ed49b0-e6c0-46a2-89d2-ccd2945a4a00 Correlation ID: 37093cd8-0b46-4609-9795-2d03ed6bd5a0 Timestamp: 2026-04-24 10:28:50Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-04-24 10:28:50Z\\\",\\\"trace_id\\\":\\\"a7ed49b0-e6c0-46a2-89d2-ccd2945a4a00\\\",\\\"correlation_id\\\":\\\"37093cd8-0b46-4609-9795-2d03ed6bd5a0\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0f144555-32b8-4d69-87d6-f6def6d148ba\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0f144555-32b8-4d69-87d6-f6def6d148ba\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0f144555-32b8-4d69-87d6-f6def6d148ba\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"0f144555-32b8-4d69-87d6-f6def6d148ba\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"0f144555-32b8-4d69-87d6-f6def6d148ba\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0f144555-32b8-4d69-87d6-f6def6d148ba\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"0f144555-32b8-4d69-87d6-f6def6d148ba\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0f144555-32b8-4d69-87d6-f6def6d148ba\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:51] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"0f144555-32b8-4d69-87d6-f6def6d148ba\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:51] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"0f144555-32b8-4d69-87d6-f6def6d148ba\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: f80e988f-7954-4b3a-8ec3-114accb80500 Correlation ID: 9071fc56-b9f5-4652-a659-15c6eae96e2b Timestamp: 2026-04-24 10:28:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-04-24 10:28:51Z\\\",\\\"trace_id\\\":\\\"f80e988f-7954-4b3a-8ec3-114accb80500\\\",\\\"correlation_id\\\":\\\"9071fc56-b9f5-4652-a659-15c6eae96e2b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 1bff69e5-e16d-4ba1-a98d-a3c1f0c31200 Correlation ID: d592f12c-def5-4788-9547-488e14ea76c7 Timestamp: 2026-04-24 10:28:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-04-24 10:28:52Z\\\",\\\"trace_id\\\":\\\"1bff69e5-e16d-4ba1-a98d-a3c1f0c31200\\\",\\\"correlation_id\\\":\\\"d592f12c-def5-4788-9547-488e14ea76c7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: ea8e72a7-34e6-4e27-8430-34b44df69500 Correlation ID: 5d9e83c5-ae5b-4aae-a37e-34afd4d607cb Timestamp: 2026-04-24 10:28:52Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-04-24 10:28:52Z\\\",\\\"trace_id\\\":\\\"ea8e72a7-34e6-4e27-8430-34b44df69500\\\",\\\"correlation_id\\\":\\\"5d9e83c5-ae5b-4aae-a37e-34afd4d607cb\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:52] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1775683749,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-04-08 22:58:34\"}}} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"8033b980-638f-4243-81a5-8e3eaae0d4ea\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"1175c7e0-9830-4799-a597-e7f131a973e2\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"1175c7e0-9830-4799-a597-e7f131a973e2\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1175c7e0-9830-4799-a597-e7f131a973e2\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCOpQOqkGB4Pj13KJp8CjfHSqwzw_GVdqxIRq9Jb0hz1cJsuWX3kegXyzmE5ezjgS3bZLZBGTUO4Rg5nbrbDvJdP58A83_g7W_e4dyJy7FzGSzERJRkAPo9reNW1pMNdHsu3K4fPGIclAUOtCFxfbGCwKwBmmG5AfByCkRM7hIX55P_Tomo5tunpeIOFTWpmb6g.gT2h9-9FyL9gDgQlNvJn5K8h1j5MhlzHMCL9NZarLm8\",\"last_sync\":\"2026-04-23 12:43:29\",\"dateMode\":\"daily\"} {\"correlation_id\":\"1175c7e0-9830-4799-a597-e7f131a973e2\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1175c7e0-9830-4799-a597-e7f131a973e2\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"1175c7e0-9830-4799-a597-e7f131a973e2\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"1175c7e0-9830-4799-a597-e7f131a973e2\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"1175c7e0-9830-4799-a597-e7f131a973e2\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:28:53] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"1175c7e0-9830-4799-a597-e7f131a973e2\",\"trace_id\":\"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27\"}\n[2026-04-24 10:29:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"1436c1f3-2620-4d4b-921e-d7e885ceaa71\",\"trace_id\":\"51bf8c5c-dc89-47cb-ae42-b3dec986b519\"}\n[2026-04-24 10:29:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"1436c1f3-2620-4d4b-921e-d7e885ceaa71\",\"trace_id\":\"51bf8c5c-dc89-47cb-ae42-b3dec986b519\"}\n[2026-04-24 10:29:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"1436c1f3-2620-4d4b-921e-d7e885ceaa71\",\"trace_id\":\"51bf8c5c-dc89-47cb-ae42-b3dec986b519\"}\n[2026-04-24 10:29:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"cb39d14f-69d4-4373-a3d4-f46191d98970\",\"trace_id\":\"2032550b-1ac4-4484-9504-0cba490f1778\"}\n[2026-04-24 10:29:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"cb39d14f-69d4-4373-a3d4-f46191d98970\",\"trace_id\":\"2032550b-1ac4-4484-9504-0cba490f1778\"}\n[2026-04-24 10:29:34] local.NOTICE: Monitoring start {\"correlation_id\":\"032d258b-18c4-4452-aaf5-906dcbacfafb\",\"trace_id\":\"f2be0856-c0ab-4444-89e3-af2fdb85bfa0\"}\n[2026-04-24 10:29:34] local.NOTICE: Monitoring end {\"correlation_id\":\"032d258b-18c4-4452-aaf5-906dcbacfafb\",\"trace_id\":\"f2be0856-c0ab-4444-89e3-af2fdb85bfa0\"}\n[2026-04-24 10:29:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"a2c16ec1-6072-4aad-a3b9-15e457614636\",\"trace_id\":\"257c5c2f-4682-4124-9fa1-9eb9a9abf8fd\"}\n[2026-04-24 10:29:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"a2c16ec1-6072-4aad-a3b9-15e457614636\",\"trace_id\":\"257c5c2f-4682-4124-9fa1-9eb9a9abf8fd\"}\n[2026-04-24 10:29:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"f4bb49cd-a10c-42b0-a0d3-58f0ad13fa27\",\"trace_id\":\"d2d5af99-9c40-4d26-add6-56adecb9438a\"}\n[2026-04-24 10:29:48] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"f4bb49cd-a10c-42b0-a0d3-58f0ad13fa27\",\"trace_id\":\"d2d5af99-9c40-4d26-add6-56adecb9438a\"}\n[2026-04-24 10:29:49] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"f4bb49cd-a10c-42b0-a0d3-58f0ad13fa27\",\"trace_id\":\"d2d5af99-9c40-4d26-add6-56adecb9438a\"}\n[2026-04-24 10:29:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"f4bb49cd-a10c-42b0-a0d3-58f0ad13fa27\",\"trace_id\":\"d2d5af99-9c40-4d26-add6-56adecb9438a\"}\n[2026-04-24 10:30:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"6e619170-bbfb-4412-9341-a9325b91fee5\",\"trace_id\":\"eb0ac6ea-3f84-4d67-bdf1-ea22e6e20463\"}\n[2026-04-24 10:30:19] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6e619170-bbfb-4412-9341-a9325b91fee5\",\"trace_id\":\"eb0ac6ea-3f84-4d67-bdf1-ea22e6e20463\"}\n[2026-04-24 10:30:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"6e619170-bbfb-4412-9341-a9325b91fee5\",\"trace_id\":\"eb0ac6ea-3f84-4d67-bdf1-ea22e6e20463\"}\n[2026-04-24 10:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"a59bd51f-e398-4ac6-bbe9-3e1ea8c374ed\",\"trace_id\":\"6f4c799b-9145-455b-b790-759f6b74c966\"}\n[2026-04-24 10:30:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"a59bd51f-e398-4ac6-bbe9-3e1ea8c374ed\",\"trace_id\":\"6f4c799b-9145-455b-b790-759f6b74c966\"}\n[2026-04-24 10:30:35] local.NOTICE: Monitoring start {\"correlation_id\":\"2d70031f-41fc-4c01-8083-5de12afe92a2\",\"trace_id\":\"6fa8952c-dd6c-4800-9ab1-b0ac211f30b7\"}\n[2026-04-24 10:30:35] local.NOTICE: Monitoring end {\"correlation_id\":\"2d70031f-41fc-4c01-8083-5de12afe92a2\",\"trace_id\":\"6fa8952c-dd6c-4800-9ab1-b0ac211f30b7\"}\n[2026-04-24 10:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"ad086719-c370-4a5d-9a44-36e617278767\",\"trace_id\":\"3ce06ef6-3c4b-4516-b533-ebec2ca578f8\"}\n[2026-04-24 10:30:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"ad086719-c370-4a5d-9a44-36e617278767\",\"trace_id\":\"3ce06ef6-3c4b-4516-b533-ebec2ca578f8\"}\n[2026-04-24 10:30:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"9f538b4b-a08c-465e-8b22-374099ae9f37\",\"trace_id\":\"582cedbe-dcaf-455b-97e7-c2104b7fe854\"}\n[2026-04-24 10:30:53] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9f538b4b-a08c-465e-8b22-374099ae9f37\",\"trace_id\":\"582cedbe-dcaf-455b-97e7-c2104b7fe854\"}\n[2026-04-24 10:30:53] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9f538b4b-a08c-465e-8b22-374099ae9f37\",\"trace_id\":\"582cedbe-dcaf-455b-97e7-c2104b7fe854\"}\n[2026-04-24 10:30:53] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"9f538b4b-a08c-465e-8b22-374099ae9f37\",\"trace_id\":\"582cedbe-dcaf-455b-97e7-c2104b7fe854\"}\n[2026-04-24 10:30:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"f951dc73-a9be-4097-a271-e07ad063e254\",\"trace_id\":\"c6379570-95c6-40d2-b04d-5d360f6a22b8\"}\n[2026-04-24 10:31:00] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:29:00, 2026-04-24 10:31:00] {\"correlation_id\":\"f951dc73-a9be-4097-a271-e07ad063e254\",\"trace_id\":\"c6379570-95c6-40d2-b04d-5d360f6a22b8\"}\n[2026-04-24 10:31:00] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:29:00, 2026-04-24 10:31:00] {\"correlation_id\":\"f951dc73-a9be-4097-a271-e07ad063e254\",\"trace_id\":\"c6379570-95c6-40d2-b04d-5d360f6a22b8\"}\n[2026-04-24 10:31:00] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"f951dc73-a9be-4097-a271-e07ad063e254\",\"trace_id\":\"c6379570-95c6-40d2-b04d-5d360f6a22b8\"}\n[2026-04-24 10:31:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"50d26433-a5cc-43c8-b8a9-773f8ac630b3\",\"trace_id\":\"4cad1d73-b46a-4fe4-87c7-3cc2ee6c5733\"}\n[2026-04-24 10:31:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"50d26433-a5cc-43c8-b8a9-773f8ac630b3\",\"trace_id\":\"4cad1d73-b46a-4fe4-87c7-3cc2ee6c5733\"}\n[2026-04-24 10:31:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"db8af027-da4b-46cf-bcb4-187655c07131\",\"trace_id\":\"a1815442-b319-47f7-a6cb-acc620de0af8\"}\n[2026-04-24 10:31:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"db8af027-da4b-46cf-bcb4-187655c07131\",\"trace_id\":\"a1815442-b319-47f7-a6cb-acc620de0af8\"}\n[2026-04-24 10:31:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"f5d0e1d8-406a-4c7b-9f82-efc89bd90d43\",\"trace_id\":\"b143b90f-9045-405f-9ff7-247d4ef53651\"}\n[2026-04-24 10:31:21] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"f5d0e1d8-406a-4c7b-9f82-efc89bd90d43\",\"trace_id\":\"b143b90f-9045-405f-9ff7-247d4ef53651\"}\n[2026-04-24 10:31:21] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"f5d0e1d8-406a-4c7b-9f82-efc89bd90d43\",\"trace_id\":\"b143b90f-9045-405f-9ff7-247d4ef53651\"}\n[2026-04-24 10:31:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"ca67328d-57bd-4544-9c2b-fbd042895bbf\",\"trace_id\":\"bfa8f513-d649-4df4-8148-8867ec612e8c\"}\n[2026-04-24 10:31:27] local.INFO: Running conference:monitor:start command for activities in (2026-04-24 10:21:00, 2026-04-24 10:26:00] {\"correlation_id\":\"ca67328d-57bd-4544-9c2b-fbd042895bbf\",\"trace_id\":\"bfa8f513-d649-4df4-8148-8867ec612e8c\"}\n[2026-04-24 10:31:28] local.INFO: [conference:monitor:start] No activities found in (2026-04-24 10:21:00, 2026-04-24 10:26:00] {\"correlation_id\":\"ca67328d-57bd-4544-9c2b-fbd042895bbf\",\"trace_id\":\"bfa8f513-d649-4df4-8148-8867ec612e8c\"}\n[2026-04-24 10:31:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"ca67328d-57bd-4544-9c2b-fbd042895bbf\",\"trace_id\":\"bfa8f513-d649-4df4-8148-8867ec612e8c\"}\n[2026-04-24 10:31:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"54538e48-98ae-4295-b463-675b4ab6c335\",\"trace_id\":\"b84ab2ef-ef92-4ea7-be6c-e57f913dea15\"}\n[2026-04-24 10:31:34] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"10:26\",\"to\":\"10:31\"} {\"correlation_id\":\"54538e48-98ae-4295-b463-675b4ab6c335\",\"trace_id\":\"b84ab2ef-ef92-4ea7-be6c-e57f913dea15\"}\n[2026-04-24 10:31:34] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"00:21\",\"to\":\"00:26\"} {\"correlation_id\":\"54538e48-98ae-4295-b463-675b4ab6c335\",\"trace_id\":\"b84ab2ef-ef92-4ea7-be6c-e57f913dea15\"}\n[2026-04-24 10:31:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"54538e48-98ae-4295-b463-675b4ab6c335\",\"trace_id\":\"b84ab2ef-ef92-4ea7-be6c-e57f913dea15\"}\n[2026-04-24 10:31:39] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:39] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:39] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:40] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:40] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:40] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:40] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:40] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:40] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:40] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"cd6ad6f8-3b79-4e1d-a797-42f245fffa86\",\"trace_id\":\"f8d8f942-e890-40be-b3c2-18c5977c9745\"}\n[2026-04-24 10:31:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"8b192510-7546-4543-990b-236d77279702\",\"trace_id\":\"a64f7407-5910-480d-a02a-421d48243722\"}\n[2026-04-24 10:31:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"fe4b936b-3f9f-43d2-ad3f-428199366afb\",\"trace_id\":\"d9defe92-d062-4b5a-b569-c01dc2563194\"}\n[2026-04-24 10:31:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"8b192510-7546-4543-990b-236d77279702\",\"trace_id\":\"a64f7407-5910-480d-a02a-421d48243722\"}\n[2026-04-24 10:31:49] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:49] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:49] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:49] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-04-24T10:33:49.213623Z\"} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:49] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:49] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:49] local.INFO: [HubSpot Journal Auth] Requesting new client credentials token {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:49] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"fe4b936b-3f9f-43d2-ad3f-428199366afb\",\"trace_id\":\"d9defe92-d062-4b5a-b569-c01dc2563194\"}\n[2026-04-24 10:31:49] local.INFO: [HubSpot Journal Auth] Successfully obtained new access token {\"expires_in\":1800,\"cached_for\":1500} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:54] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:54] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:55] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:31:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"4635d32e-fc85-45c0-8c7b-bfbf73d6d6af\",\"trace_id\":\"ebc9a6ed-625a-4fd9-9548-ffaf303ae642\"}\n[2026-04-24 10:31:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"4635d32e-fc85-45c0-8c7b-bfbf73d6d6af\",\"trace_id\":\"ebc9a6ed-625a-4fd9-9548-ffaf303ae642\"}\n[2026-04-24 10:32:00] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:00] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:00] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"a7e1d0a4-49c8-4497-958e-9981db3aaa3e\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:08] local.INFO: Dispatching activity sync job {\"import_id\":811658,\"provider\":\"twilio-flex\",\"team\":\"jiminny\"} {\"correlation_id\":\"a7e1d0a4-49c8-4497-958e-9981db3aaa3e\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:08] local.INFO: Dispatching activity sync job {\"import_id\":811659,\"provider\":\"xant\",\"team\":\"jiminny\"} {\"correlation_id\":\"a7e1d0a4-49c8-4497-958e-9981db3aaa3e\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:09] local.INFO: Dispatching activity sync job {\"import_id\":811660,\"provider\":\"apollo\",\"team\":\"jiminny\"} {\"correlation_id\":\"a7e1d0a4-49c8-4497-958e-9981db3aaa3e\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:09] local.INFO: Dispatching activity sync job {\"import_id\":811661,\"provider\":\"groove\",\"team\":\"jiminny\"} {\"correlation_id\":\"a7e1d0a4-49c8-4497-958e-9981db3aaa3e\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:09] local.INFO: Dispatching activity sync job {\"import_id\":811662,\"provider\":\"twilio-video\",\"team\":\"jiminny\"} {\"correlation_id\":\"a7e1d0a4-49c8-4497-958e-9981db3aaa3e\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:09] local.INFO: Dispatching activity sync job {\"import_id\":811663,\"provider\":\"hubspot\",\"team\":\"hubspot\"} {\"correlation_id\":\"a7e1d0a4-49c8-4497-958e-9981db3aaa3e\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"a7e1d0a4-49c8-4497-958e-9981db3aaa3e\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:11] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"cdf8b554-d951-4758-bc2b-c1b85d1cd0b9\",\"account\":null} {\"correlation_id\":\"da62f2ec-af92-467a-b6e3-6062c6f87d59\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:11] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":3,\"team_id\":1} {\"correlation_id\":\"da62f2ec-af92-467a-b6e3-6062c6f87d59\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:11] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"da62f2ec-af92-467a-b6e3-6062c6f87d59\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:11] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"da62f2ec-af92-467a-b6e3-6062c6f87d59\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:11] local.ALERT: [SyncActivity] Failed {\"import_id\":811658,\"provider\":\"twilio-flex\",\"provider_id\":317,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Social account for Salesforce cannot be found. Please login to Jiminny to connect.\",\"file\":\"/home/jiminny/app/Services/Crm/BaseService.php\",\"line\":734} {\"correlation_id\":\"da62f2ec-af92-467a-b6e3-6062c6f87d59\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"a18dbdd7-0201-4872-b4f3-83d47096868c\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"a18dbdd7-0201-4872-b4f3-83d47096868c\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a18dbdd7-0201-4872-b4f3-83d47096868c\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:12] local.ALERT: [SyncActivity] Failed {\"import_id\":811659,\"provider\":\"xant\",\"provider_id\":161,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"a18dbdd7-0201-4872-b4f3-83d47096868c\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"2f1dd2b3-8563-4ddc-8427-7ab28fc8c45c\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"2f1dd2b3-8563-4ddc-8427-7ab28fc8c45c\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2f1dd2b3-8563-4ddc-8427-7ab28fc8c45c\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:13] local.ALERT: [SyncActivity] Failed {\"import_id\":811660,\"provider\":\"apollo\",\"provider_id\":441,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"2f1dd2b3-8563-4ddc-8427-7ab28fc8c45c\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"cab315a5-13aa-40f4-807a-fb2e73bd41c1\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"cab315a5-13aa-40f4-807a-fb2e73bd41c1\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"cab315a5-13aa-40f4-807a-fb2e73bd41c1\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:13] local.ALERT: [SyncActivity] Failed {\"import_id\":811661,\"provider\":\"groove\",\"provider_id\":228,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"cab315a5-13aa-40f4-807a-fb2e73bd41c1\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"67d017f0-1506-488a-9945-fd804c35279d\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:13] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1173,\"provider\":\"salesforce\"} {\"correlation_id\":\"67d017f0-1506-488a-9945-fd804c35279d\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"67d017f0-1506-488a-9945-fd804c35279d\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"c4048497-4519-46b8-a4e7-817075866c76\",\"trace_id\":\"aabb17ad-07bf-426a-97f6-cb994e27c7bf\"}\n[2026-04-24 10:32:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:fail-stalled\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"c4048497-4519-46b8-a4e7-817075866c76\",\"trace_id\":\"aabb17ad-07bf-426a-97f6-cb994e27c7bf\"}\n[2026-04-24 10:32:14] local.ALERT: [SyncActivity] Failed {\"import_id\":811662,\"provider\":\"twilio-video\",\"provider_id\":243,\"team\":\"jiminny\",\"team_id\":1,\"reason\":\"Activity Provider account not connected.\",\"file\":\"/home/jiminny/app/Services/Activity/ActivityProviderService.php\",\"line\":174} {\"correlation_id\":\"67d017f0-1506-488a-9945-fd804c35279d\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":408,\"provider\":\"hubspot\"} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [SyncActivity] Start {\"import_id\":811663,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [HubSpot] Search calls for period {\"from\":\"2026-04-24 10:14:00\",\"to\":\"2026-04-24 10:30:00\"} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [SyncActivity] End {\"import_id\":811663,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:14] local.INFO: [SyncActivity] Memory usage {\"import_id\":811663,\"provider\":\"hubspot\",\"provider_id\":31,\"team\":\"hubspot\",\"team_id\":2,\"memory_usage\":25835392,\"memory_real_usage\":67108864,\"pid\":13882} {\"correlation_id\":\"709b2abd-91a2-49ac-ad75-92784cfc60e9\",\"trace_id\":\"98e369a4-6019-4db7-9794-78a65de0615d\"}\n[2026-04-24 10:32:15] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:15] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:15] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"2da22d3d-5c10-490d-ad82-c57312ec5e45\",\"trace_id\":\"eac3c2a0-4aa8-4ab4-a0a7-946e9d9ec3a2\"}\n[2026-04-24 10:32:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"2da22d3d-5c10-490d-ad82-c57312ec5e45\",\"trace_id\":\"eac3c2a0-4aa8-4ab4-a0a7-946e9d9ec3a2\"}\n[2026-04-24 10:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"22c8340e-5104-4cd7-a030-50b132712ac5\",\"trace_id\":\"844754f4-aad4-458a-9009-f10344ddec9b\"}\n[2026-04-24 10:32:24] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"nudges:send\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"22c8340e-5104-4cd7-a030-50b132712ac5\",\"trace_id\":\"844754f4-aad4-458a-9009-f10344ddec9b\"}\n[2026-04-24 10:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"f12dd5f1-743b-4b59-a985-f15c0cc0be52\",\"trace_id\":\"a8df4a0f-7718-48a8-a897-cc47117ace0b\"}\n[2026-04-24 10:32:31] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] starting. {\"playlists\":[]} {\"correlation_id\":\"f12dd5f1-743b-4b59-a985-f15c0cc0be52\",\"trace_id\":\"a8df4a0f-7718-48a8-a897-cc47117ace0b\"}\n[2026-04-24 10:32:31] local.INFO: [Jiminny\\Component\\Playlist\\Command\\NormalizeSortCommand::handle] finished. {\"normalizedPlaylists\":[],\"deletedPlaylists\":[]} {\"correlation_id\":\"f12dd5f1-743b-4b59-a985-f15c0cc0be52\",\"trace_id\":\"a8df4a0f-7718-48a8-a897-cc47117ace0b\"}\n[2026-04-24 10:32:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:playlists:normalize-sort\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"f12dd5f1-743b-4b59-a985-f15c0cc0be52\",\"trace_id\":\"a8df4a0f-7718-48a8-a897-cc47117ace0b\"}\n[2026-04-24 10:32:45] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:46] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:46] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:46] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:46] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":274.6,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.72} {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:32:46] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"1de2be07-1491-4b81-8134-a2e3a16905cf\",\"trace_id\":\"0f92134b-a2fb-4f2d-b299-76645f790d7b\"}\n[2026-04-24 10:33:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"7087c00b-b452-4700-8ddd-275a1d3b8ae6\",\"trace_id\":\"9eda2c41-2a49-4e0d-bb07-50c8caf4ee75\"}\n[2026-04-24 10:33:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"7087c00b-b452-4700-8ddd-275a1d3b8ae6\",\"trace_id\":\"9eda2c41-2a49-4e0d-bb07-50c8caf4ee75\"}\n[2026-04-24 10:33:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"7087c00b-b452-4700-8ddd-275a1d3b8ae6\",\"trace_id\":\"9eda2c41-2a49-4e0d-bb07-50c8caf4ee75\"}\n[2026-04-24 10:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"a7467c96-5061-4205-93d2-6f5b47929170\",\"trace_id\":\"52c0692f-c954-4293-aaca-0228b2fdc91c\"}\n[2026-04-24 10:33:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"a7467c96-5061-4205-93d2-6f5b47929170\",\"trace_id\":\"52c0692f-c954-4293-aaca-0228b2fdc91c\"}\n[2026-04-24 10:33:25] local.NOTICE: Monitoring start {\"correlation_id\":\"a5383125-c008-4d14-8b07-d85f54ce7ea5\",\"trace_id\":\"cac64e6a-f8a3-494e-a377-2680ca851ff9\"}\n[2026-04-24 10:33:26] local.NOTICE: Monitoring end {\"correlation_id\":\"a5383125-c008-4d14-8b07-d85f54ce7ea5\",\"trace_id\":\"cac64e6a-f8a3-494e-a377-2680ca851ff9\"}\n[2026-04-24 10:33:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"c233f1d1-8ff0-4c90-8936-5b98d635dcc7\",\"trace_id\":\"b481875b-e906-4ebd-8643-602657b71ebe\"}\n[2026-04-24 10:33:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"c233f1d1-8ff0-4c90-8936-5b98d635dcc7\",\"trace_id\":\"b481875b-e906-4ebd-8643-602657b71ebe\"}\n[2026-04-24 10:33:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"3b645fae-4a5e-4c08-a217-fb3a1a45cd99\",\"trace_id\":\"5198381d-4e2d-41b2-9077-047ec08aa411\"}\n[2026-04-24 10:33:39] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3b645fae-4a5e-4c08-a217-fb3a1a45cd99\",\"trace_id\":\"5198381d-4e2d-41b2-9077-047ec08aa411\"}\n[2026-04-24 10:33:39] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3b645fae-4a5e-4c08-a217-fb3a1a45cd99\",\"trace_id\":\"5198381d-4e2d-41b2-9077-047ec08aa411\"}\n[2026-04-24 10:33:39] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"3b645fae-4a5e-4c08-a217-fb3a1a45cd99\",\"trace_id\":\"5198381d-4e2d-41b2-9077-047ec08aa411\"}\n[2026-04-24 10:33:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"d6dff042-de9d-43b5-ab61-c8c73d7da9f4\",\"trace_id\":\"c28a89cd-5e0a-42ab-8065-17a4c75dd59a\"}\n[2026-04-24 10:33:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"d6dff042-de9d-43b5-ab61-c8c73d7da9f4\",\"trace_id\":\"c28a89cd-5e0a-42ab-8065-17a4c75dd59a\"}\n[2026-04-24 10:34:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"0bfb8185-4311-45ff-9912-019a8c2efcbf\",\"trace_id\":\"f8264ae9-7c3b-4805-9112-e9b1d55ab8d1\"}\n[2026-04-24 10:34:05] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"0bfb8185-4311-45ff-9912-019a8c2efcbf\",\"trace_id\":\"f8264ae9-7c3b-4805-9112-e9b1d55ab8d1\"}\n[2026-04-24 10:34:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"0bfb8185-4311-45ff-9912-019a8c2efcbf\",\"trace_id\":\"f8264ae9-7c3b-4805-9112-e9b1d55ab8d1\"}\n[2026-04-24 10:34:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"3714b13d-5365-4dfa-8243-1efca8fd7287\",\"trace_id\":\"3d8bdcb1-9429-48fc-b42b-6fe561fcf2bb\"}\n[2026-04-24 10:34:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"3714b13d-5365-4dfa-8243-1efca8fd7287\",\"trace_id\":\"3d8bdcb1-9429-48fc-b42b-6fe561fcf2bb\"}\n[2026-04-24 10:34:12] local.NOTICE: Monitoring start {\"correlation_id\":\"b761195f-f8dd-4259-afbc-0e317391ac6d\",\"trace_id\":\"79e1a8c8-d7ca-4c90-85f0-8a4accee74f9\"}\n[2026-04-24 10:34:12] local.NOTICE: Monitoring end {\"correlation_id\":\"b761195f-f8dd-4259-afbc-0e317391ac6d\",\"trace_id\":\"79e1a8c8-d7ca-4c90-85f0-8a4accee74f9\"}\n[2026-04-24 10:34:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"26d17c4f-b77d-476d-8892-d9ffd4f68804\",\"trace_id\":\"502cd251-cc79-4e10-b763-c5a87c5d72c4\"}\n[2026-04-24 10:34:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"26d17c4f-b77d-476d-8892-d9ffd4f68804\",\"trace_id\":\"502cd251-cc79-4e10-b763-c5a87c5d72c4\"}\n[2026-04-24 10:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"98c97947-2a39-4baf-a2ae-5b93fe22f201\",\"trace_id\":\"aded15eb-34e6-4db0-9653-ed06f25b38b3\"}\n[2026-04-24 10:34:20] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"98c97947-2a39-4baf-a2ae-5b93fe22f201\",\"trace_id\":\"aded15eb-34e6-4db0-9653-ed06f25b38b3\"}\n[2026-04-24 10:34:20] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"98c97947-2a39-4baf-a2ae-5b93fe22f201\",\"trace_id\":\"aded15eb-34e6-4db0-9653-ed06f25b38b3\"}\n[2026-04-24 10:34:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"98c97947-2a39-4baf-a2ae-5b93fe22f201\",\"trace_id\":\"aded15eb-34e6-4db0-9653-ed06f25b38b3\"}\n[2026-04-24 10:34:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"ca5fa4ad-7531-4796-a6d2-2bf959538fdf\",\"trace_id\":\"4a1672e9-2c2b-4b62-8adb-0caa105958b5\"}\n[2026-04-24 10:34:23] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:32:00, 2026-04-24 10:34:00] {\"correlation_id\":\"ca5fa4ad-7531-4796-a6d2-2bf959538fdf\",\"trace_id\":\"4a1672e9-2c2b-4b62-8adb-0caa105958b5\"}\n[2026-04-24 10:34:23] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:32:00, 2026-04-24 10:34:00] {\"correlation_id\":\"ca5fa4ad-7531-4796-a6d2-2bf959538fdf\",\"trace_id\":\"4a1672e9-2c2b-4b62-8adb-0caa105958b5\"}\n[2026-04-24 10:34:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"ca5fa4ad-7531-4796-a6d2-2bf959538fdf\",\"trace_id\":\"4a1672e9-2c2b-4b62-8adb-0caa105958b5\"}\n[2026-04-24 10:35:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"537a6afb-7982-43ba-874c-cfaf945b546b\",\"trace_id\":\"0e8dc196-f9a5-4593-94ab-e7ec13532657\"}\n[2026-04-24 10:35:16] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"537a6afb-7982-43ba-874c-cfaf945b546b\",\"trace_id\":\"0e8dc196-f9a5-4593-94ab-e7ec13532657\"}\n[2026-04-24 10:35:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"537a6afb-7982-43ba-874c-cfaf945b546b\",\"trace_id\":\"0e8dc196-f9a5-4593-94ab-e7ec13532657\"}\n[2026-04-24 10:35:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"4052431b-ea85-4966-bf60-2664fba0f1ff\",\"trace_id\":\"33edbed0-ee90-461f-bd68-7e2b3edac796\"}\n[2026-04-24 10:35:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"4052431b-ea85-4966-bf60-2664fba0f1ff\",\"trace_id\":\"33edbed0-ee90-461f-bd68-7e2b3edac796\"}\n[2026-04-24 10:35:23] local.NOTICE: Monitoring start {\"correlation_id\":\"19278d24-c565-487d-a1fa-0bfa0b462819\",\"trace_id\":\"22ea452c-19fc-4018-bd81-6523c85dcb17\"}\n[2026-04-24 10:35:23] local.NOTICE: Monitoring end {\"correlation_id\":\"19278d24-c565-487d-a1fa-0bfa0b462819\",\"trace_id\":\"22ea452c-19fc-4018-bd81-6523c85dcb17\"}\n[2026-04-24 10:35:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"aa117f5a-9a2c-420d-af17-62d567e7b0bb\",\"trace_id\":\"50af364b-4e4c-4bea-9f08-80d2dccca2a0\"}\n[2026-04-24 10:35:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"aa117f5a-9a2c-420d-af17-62d567e7b0bb\",\"trace_id\":\"50af364b-4e4c-4bea-9f08-80d2dccca2a0\"}\n[2026-04-24 10:35:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"b266947a-e6f7-4e15-a3ea-05fc8f70e049\",\"trace_id\":\"3f898250-268d-4adb-8761-fe347722ccc0\"}\n[2026-04-24 10:35:28] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"b266947a-e6f7-4e15-a3ea-05fc8f70e049\",\"trace_id\":\"3f898250-268d-4adb-8761-fe347722ccc0\"}\n[2026-04-24 10:35:28] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"b266947a-e6f7-4e15-a3ea-05fc8f70e049\",\"trace_id\":\"3f898250-268d-4adb-8761-fe347722ccc0\"}\n[2026-04-24 10:35:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"b266947a-e6f7-4e15-a3ea-05fc8f70e049\",\"trace_id\":\"3f898250-268d-4adb-8761-fe347722ccc0\"}\n[2026-04-24 10:35:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"be6ec988-1d26-4cf9-a7e9-5cfe2b2b2c00\",\"trace_id\":\"ac80e092-288e-46f3-9684-2c22be08ed96\"}\n[2026-04-24 10:35:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"be6ec988-1d26-4cf9-a7e9-5cfe2b2b2c00\",\"trace_id\":\"ac80e092-288e-46f3-9684-2c22be08ed96\"}\n[2026-04-24 10:35:31] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"252843f9-192e-4366-b49e-139f8caada46\",\"trace_id\":\"bb764db2-98aa-4d52-92ea-1023c84c2492\"}\n[2026-04-24 10:35:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"252843f9-192e-4366-b49e-139f8caada46\",\"trace_id\":\"bb764db2-98aa-4d52-92ea-1023c84c2492\"}\n[2026-04-24 10:35:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"c3c1224f-0f3d-4377-84fe-8ae164941fe8\",\"trace_id\":\"a08d0d72-2d13-4a05-90bd-e16e8e0f24fa\"}\n[2026-04-24 10:35:33] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"c3c1224f-0f3d-4377-84fe-8ae164941fe8\",\"trace_id\":\"a08d0d72-2d13-4a05-90bd-e16e8e0f24fa\"}\n[2026-04-24 10:35:33] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"c3c1224f-0f3d-4377-84fe-8ae164941fe8\",\"trace_id\":\"a08d0d72-2d13-4a05-90bd-e16e8e0f24fa\"}\n[2026-04-24 10:35:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"529ad329-c2b9-4a6c-b4b5-af82df0812fe\",\"trace_id\":\"4322958e-288d-445e-888f-bd011bc2da08\"}\n[2026-04-24 10:35:34] local.INFO: Running conference:monitor:start command for activities in (2026-04-24 10:25:00, 2026-04-24 10:30:00] {\"correlation_id\":\"529ad329-c2b9-4a6c-b4b5-af82df0812fe\",\"trace_id\":\"4322958e-288d-445e-888f-bd011bc2da08\"}\n[2026-04-24 10:35:34] local.INFO: [conference:monitor:start] No activities found in (2026-04-24 10:25:00, 2026-04-24 10:30:00] {\"correlation_id\":\"529ad329-c2b9-4a6c-b4b5-af82df0812fe\",\"trace_id\":\"4322958e-288d-445e-888f-bd011bc2da08\"}\n[2026-04-24 10:35:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"529ad329-c2b9-4a6c-b4b5-af82df0812fe\",\"trace_id\":\"4322958e-288d-445e-888f-bd011bc2da08\"}\n[2026-04-24 10:35:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"0562fd82-791b-468c-90a0-65b9c620ef2e\",\"trace_id\":\"09261a36-c342-46cb-bb82-fc05aa367823\"}\n[2026-04-24 10:35:36] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"10:30\",\"to\":\"10:35\"} {\"correlation_id\":\"0562fd82-791b-468c-90a0-65b9c620ef2e\",\"trace_id\":\"09261a36-c342-46cb-bb82-fc05aa367823\"}\n[2026-04-24 10:35:37] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"00:25\",\"to\":\"00:30\"} {\"correlation_id\":\"0562fd82-791b-468c-90a0-65b9c620ef2e\",\"trace_id\":\"09261a36-c342-46cb-bb82-fc05aa367823\"}\n[2026-04-24 10:35:37] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"0562fd82-791b-468c-90a0-65b9c620ef2e\",\"trace_id\":\"09261a36-c342-46cb-bb82-fc05aa367823\"}\n[2026-04-24 10:35:38] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:38] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:38] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:38] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:39] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:39] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:39] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:39] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:39] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:39] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:39] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:39] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:39] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"2676acee-9cf8-40ec-bb7f-b7681fdca341\",\"trace_id\":\"62ca739b-9e94-4a12-a172-f8976f189dc3\"}\n[2026-04-24 10:35:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"e8a4afe0-7a27-4459-9912-a7ebce8f903f\",\"trace_id\":\"14ad454e-986d-4451-af00-053486af39a5\"}\n[2026-04-24 10:35:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"7b3b58cf-5690-4c9d-b972-4ca0ce61f11f\",\"trace_id\":\"0e97e9b0-7c31-450c-b39e-d23278ce5401\"}\n[2026-04-24 10:35:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"7b3b58cf-5690-4c9d-b972-4ca0ce61f11f\",\"trace_id\":\"0e97e9b0-7c31-450c-b39e-d23278ce5401\"}\n[2026-04-24 10:35:43] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:43] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:43] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:43] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-04-24T10:37:43.896065Z\"} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:43] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:43] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"e8a4afe0-7a27-4459-9912-a7ebce8f903f\",\"trace_id\":\"14ad454e-986d-4451-af00-053486af39a5\"}\n[2026-04-24 10:35:44] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:49] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:49] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:49] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:54] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:54] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:35:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"6d00ee59-b87c-49a6-af97-4afd4b8286b8\",\"trace_id\":\"dfee013b-dae8-4ded-8956-5c0a00b729c9\"}\n[2026-04-24 10:36:03] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"6d00ee59-b87c-49a6-af97-4afd4b8286b8\",\"trace_id\":\"dfee013b-dae8-4ded-8956-5c0a00b729c9\"}\n[2026-04-24 10:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"6d00ee59-b87c-49a6-af97-4afd4b8286b8\",\"trace_id\":\"dfee013b-dae8-4ded-8956-5c0a00b729c9\"}\n[2026-04-24 10:36:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"936afe4d-f1d2-44cc-8ddc-9e509725940d\",\"trace_id\":\"cc468641-be48-4063-955a-92a55cca41a1\"}\n[2026-04-24 10:36:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"936afe4d-f1d2-44cc-8ddc-9e509725940d\",\"trace_id\":\"cc468641-be48-4063-955a-92a55cca41a1\"}\n[2026-04-24 10:36:05] local.NOTICE: Monitoring start {\"correlation_id\":\"65c90b6f-4486-443f-83af-0cf2e3e0fdd1\",\"trace_id\":\"165a35a5-3569-4f6a-8935-921e8459e8da\"}\n[2026-04-24 10:36:05] local.NOTICE: Monitoring end {\"correlation_id\":\"65c90b6f-4486-443f-83af-0cf2e3e0fdd1\",\"trace_id\":\"165a35a5-3569-4f6a-8935-921e8459e8da\"}\n[2026-04-24 10:36:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"8b8be7b4-6857-42a9-8349-7d6f4155d120\",\"trace_id\":\"3f0cd915-a3f0-4e2a-8a1f-668fa98723db\"}\n[2026-04-24 10:36:06] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"8b8be7b4-6857-42a9-8349-7d6f4155d120\",\"trace_id\":\"3f0cd915-a3f0-4e2a-8a1f-668fa98723db\"}\n[2026-04-24 10:36:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"5378d67d-9f96-4b38-b8e9-c38a748a5294\",\"trace_id\":\"5036e660-db15-4275-8811-07aba3e35a1c\"}\n[2026-04-24 10:36:07] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"5378d67d-9f96-4b38-b8e9-c38a748a5294\",\"trace_id\":\"5036e660-db15-4275-8811-07aba3e35a1c\"}\n[2026-04-24 10:36:07] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"5378d67d-9f96-4b38-b8e9-c38a748a5294\",\"trace_id\":\"5036e660-db15-4275-8811-07aba3e35a1c\"}\n[2026-04-24 10:36:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"5378d67d-9f96-4b38-b8e9-c38a748a5294\",\"trace_id\":\"5036e660-db15-4275-8811-07aba3e35a1c\"}\n[2026-04-24 10:36:09] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:36:09] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:36:09] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"1d793cba-dfdf-4794-96cf-b6815db21af4\",\"trace_id\":\"7680c390-f0e3-4201-a8f4-02f50f6d2431\"}\n[2026-04-24 10:36:09] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:34:00, 2026-04-24 10:36:00] {\"correlation_id\":\"1d793cba-dfdf-4794-96cf-b6815db21af4\",\"trace_id\":\"7680c390-f0e3-4201-a8f4-02f50f6d2431\"}\n[2026-04-24 10:36:09] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:34:00, 2026-04-24 10:36:00] {\"correlation_id\":\"1d793cba-dfdf-4794-96cf-b6815db21af4\",\"trace_id\":\"7680c390-f0e3-4201-a8f4-02f50f6d2431\"}\n[2026-04-24 10:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"1d793cba-dfdf-4794-96cf-b6815db21af4\",\"trace_id\":\"7680c390-f0e3-4201-a8f4-02f50f6d2431\"}\n[2026-04-24 10:36:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"47ff13fc-d2da-4439-ae3e-647ca3cd9cc5\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"47ff13fc-d2da-4439-ae3e-647ca3cd9cc5\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":23653320,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"38cbf870-b4a1-46ae-9adb-2ee5e3cfbd2a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"38cbf870-b4a1-46ae-9adb-2ee5e3cfbd2a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"38cbf870-b4a1-46ae-9adb-2ee5e3cfbd2a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"38cbf870-b4a1-46ae-9adb-2ee5e3cfbd2a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"38cbf870-b4a1-46ae-9adb-2ee5e3cfbd2a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":24.05,\"usage\":23715392,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"38cbf870-b4a1-46ae-9adb-2ee5e3cfbd2a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":23673608,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"f906888b-c9f0-4676-a3a9-1a70204e4c3a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f906888b-c9f0-4676-a3a9-1a70204e4c3a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"f906888b-c9f0-4676-a3a9-1a70204e4c3a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"f906888b-c9f0-4676-a3a9-1a70204e4c3a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"f906888b-c9f0-4676-a3a9-1a70204e4c3a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"f906888b-c9f0-4676-a3a9-1a70204e4c3a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.52,\"average_seconds_per_request\":0.52} {\"correlation_id\":\"f906888b-c9f0-4676-a3a9-1a70204e4c3a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":529.44} {\"correlation_id\":\"f906888b-c9f0-4676-a3a9-1a70204e4c3a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:11] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":557.15,\"usage\":23737960,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"f906888b-c9f0-4676-a3a9-1a70204e4c3a\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"f0884f66-15a4-4130-b432-99f739944cbd\",\"trace_id\":\"5dce41b5-d070-4496-ad61-7f32e3c80014\"}\n[2026-04-24 10:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"f0884f66-15a4-4130-b432-99f739944cbd\",\"trace_id\":\"5dce41b5-d070-4496-ad61-7f32e3c80014\"}\n[2026-04-24 10:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":23715888,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"365304de-f573-48f2-b4a0-b46c42774380\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"365304de-f573-48f2-b4a0-b46c42774380\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"365304de-f573-48f2-b4a0-b46c42774380\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"365304de-f573-48f2-b4a0-b46c42774380\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"365304de-f573-48f2-b4a0-b46c42774380\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":14.21,\"usage\":23703864,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"365304de-f573-48f2-b4a0-b46c42774380\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":23664544,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"c464c3a4-e7dc-41f9-a3fa-ccacd4576a72\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"c464c3a4-e7dc-41f9-a3fa-ccacd4576a72\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"c464c3a4-e7dc-41f9-a3fa-ccacd4576a72\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"c464c3a4-e7dc-41f9-a3fa-ccacd4576a72\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"c464c3a4-e7dc-41f9-a3fa-ccacd4576a72\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":15.21,\"usage\":23700312,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"c464c3a4-e7dc-41f9-a3fa-ccacd4576a72\",\"trace_id\":\"2fed0f6a-c3e0-4efc-a336-a3ad18ac957d\"}\n[2026-04-24 10:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"c81ae81a-8655-4d34-b0e9-7a55c7007412\",\"trace_id\":\"a98cd1a9-99e1-4cba-9c3d-d1c11c53798b\"}\n[2026-04-24 10:36:14] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"c81ae81a-8655-4d34-b0e9-7a55c7007412\",\"trace_id\":\"a98cd1a9-99e1-4cba-9c3d-d1c11c53798b\"}\n[2026-04-24 10:36:14] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":1} {\"correlation_id\":\"c81ae81a-8655-4d34-b0e9-7a55c7007412\",\"trace_id\":\"a98cd1a9-99e1-4cba-9c3d-d1c11c53798b\"}\n[2026-04-24 10:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"c81ae81a-8655-4d34-b0e9-7a55c7007412\",\"trace_id\":\"a98cd1a9-99e1-4cba-9c3d-d1c11c53798b\"}\n[2026-04-24 10:36:14] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"63917e7c-8e0b-4824-b489-eab64e736354\",\"trace_id\":\"a98cd1a9-99e1-4cba-9c3d-d1c11c53798b\"}\n[2026-04-24 10:36:14] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"63917e7c-8e0b-4824-b489-eab64e736354\",\"trace_id\":\"a98cd1a9-99e1-4cba-9c3d-d1c11c53798b\"}\n[2026-04-24 10:36:14] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"63917e7c-8e0b-4824-b489-eab64e736354\",\"trace_id\":\"a98cd1a9-99e1-4cba-9c3d-d1c11c53798b\"}\n[2026-04-24 10:36:39] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:36:39] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:36:40] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:36:40] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:36:40] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:36:40] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":170.3,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.72} {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:36:40] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"1e25bda9-2d96-49cc-9554-7c29a8a61f22\",\"trace_id\":\"1fa5725d-f595-40dd-9eee-fe52a45fcbd7\"}\n[2026-04-24 10:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"e398832f-e51b-453a-8f0d-ca3083de8f22\",\"trace_id\":\"e2b3db21-82f2-49c6-ac5d-24f5d2bc6adf\"}\n[2026-04-24 10:37:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e398832f-e51b-453a-8f0d-ca3083de8f22\",\"trace_id\":\"e2b3db21-82f2-49c6-ac5d-24f5d2bc6adf\"}\n[2026-04-24 10:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"e398832f-e51b-453a-8f0d-ca3083de8f22\",\"trace_id\":\"e2b3db21-82f2-49c6-ac5d-24f5d2bc6adf\"}\n[2026-04-24 10:37:19] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"0ba5c756-a3fa-4ceb-b468-b8188544c3f7\",\"trace_id\":\"d2bcfbff-bbdc-4f2a-ab10-c3fd7cea79b2\"}\n[2026-04-24 10:37:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"0ba5c756-a3fa-4ceb-b468-b8188544c3f7\",\"trace_id\":\"d2bcfbff-bbdc-4f2a-ab10-c3fd7cea79b2\"}\n[2026-04-24 10:37:25] local.NOTICE: Monitoring start {\"correlation_id\":\"dbe3b963-92f7-4417-af0e-c0f7921b9907\",\"trace_id\":\"e3adefac-e11f-46ef-9999-5443fbfa9d85\"}\n[2026-04-24 10:37:25] local.NOTICE: Monitoring end {\"correlation_id\":\"dbe3b963-92f7-4417-af0e-c0f7921b9907\",\"trace_id\":\"e3adefac-e11f-46ef-9999-5443fbfa9d85\"}\n[2026-04-24 10:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"529d53b7-d23d-4715-a7e6-feb3e839cc5d\",\"trace_id\":\"c16e8a02-8036-4bf4-ab36-803dacb4767c\"}\n[2026-04-24 10:37:28] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"529d53b7-d23d-4715-a7e6-feb3e839cc5d\",\"trace_id\":\"c16e8a02-8036-4bf4-ab36-803dacb4767c\"}\n[2026-04-24 10:37:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"ba1d909c-fcdc-43af-a4e6-b30038572186\",\"trace_id\":\"afe0994f-5352-4eb0-aa7a-45d367b307e4\"}\n[2026-04-24 10:37:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ba1d909c-fcdc-43af-a4e6-b30038572186\",\"trace_id\":\"afe0994f-5352-4eb0-aa7a-45d367b307e4\"}\n[2026-04-24 10:37:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ba1d909c-fcdc-43af-a4e6-b30038572186\",\"trace_id\":\"afe0994f-5352-4eb0-aa7a-45d367b307e4\"}\n[2026-04-24 10:37:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"ba1d909c-fcdc-43af-a4e6-b30038572186\",\"trace_id\":\"afe0994f-5352-4eb0-aa7a-45d367b307e4\"}\n[2026-04-24 10:37:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"4e56979c-fb0d-4146-9182-9189b3709d8e\",\"trace_id\":\"40c89c09-7f79-4256-9d06-6ea1dea69558\"}\n[2026-04-24 10:37:38] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4e56979c-fb0d-4146-9182-9189b3709d8e\",\"trace_id\":\"40c89c09-7f79-4256-9d06-6ea1dea69558\"}\n[2026-04-24 10:37:38] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4e56979c-fb0d-4146-9182-9189b3709d8e\",\"trace_id\":\"40c89c09-7f79-4256-9d06-6ea1dea69558\"}\n[2026-04-24 10:37:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"4e56979c-fb0d-4146-9182-9189b3709d8e\",\"trace_id\":\"40c89c09-7f79-4256-9d06-6ea1dea69558\"}\n[2026-04-24 10:37:39] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"c17f8fa5-8019-4bac-96a0-79872914ffe1\",\"trace_id\":\"40c89c09-7f79-4256-9d06-6ea1dea69558\"}\n[2026-04-24 10:37:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"60396790-0d9d-45a6-9f2c-2ff7cd744fcf\",\"trace_id\":\"4b4198d7-8de7-4937-b4bb-87ae8d72c8f5\"}\n[2026-04-24 10:37:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"60396790-0d9d-45a6-9f2c-2ff7cd744fcf\",\"trace_id\":\"4b4198d7-8de7-4937-b4bb-87ae8d72c8f5\"}\n[2026-04-24 10:38:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"ee4cd687-1fbb-48d7-82e8-0c6e597d9a61\",\"trace_id\":\"fd3156a9-082f-48ce-90f3-53d2bde6de42\"}\n[2026-04-24 10:38:17] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"ee4cd687-1fbb-48d7-82e8-0c6e597d9a61\",\"trace_id\":\"fd3156a9-082f-48ce-90f3-53d2bde6de42\"}\n[2026-04-24 10:38:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"ee4cd687-1fbb-48d7-82e8-0c6e597d9a61\",\"trace_id\":\"fd3156a9-082f-48ce-90f3-53d2bde6de42\"}\n[2026-04-24 10:38:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"b83c9f80-d267-4ef5-a9d8-16d7389ebfbe\",\"trace_id\":\"2e55c7a4-4ec2-4e3d-a6b8-059552fd6b5a\"}\n[2026-04-24 10:38:23] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"b83c9f80-d267-4ef5-a9d8-16d7389ebfbe\",\"trace_id\":\"2e55c7a4-4ec2-4e3d-a6b8-059552fd6b5a\"}\n[2026-04-24 10:38:29] local.NOTICE: Monitoring start {\"correlation_id\":\"7df6b8a4-a9a2-4d57-9f33-424d76235085\",\"trace_id\":\"f8bf88c1-df50-468b-af01-55cef581459e\"}\n[2026-04-24 10:38:29] local.NOTICE: Monitoring end {\"correlation_id\":\"7df6b8a4-a9a2-4d57-9f33-424d76235085\",\"trace_id\":\"f8bf88c1-df50-468b-af01-55cef581459e\"}\n[2026-04-24 10:38:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"016e74f8-ecd4-4261-9236-5e90c28e0346\",\"trace_id\":\"2f196199-3ecc-4615-b5fd-54c963fc280c\"}\n[2026-04-24 10:38:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"016e74f8-ecd4-4261-9236-5e90c28e0346\",\"trace_id\":\"2f196199-3ecc-4615-b5fd-54c963fc280c\"}\n[2026-04-24 10:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"ffe45e4f-7e79-49e7-8236-b793cec601b1\",\"trace_id\":\"32ac79cd-a559-4f05-9dfe-287b4a0968d5\"}\n[2026-04-24 10:38:40] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ffe45e4f-7e79-49e7-8236-b793cec601b1\",\"trace_id\":\"32ac79cd-a559-4f05-9dfe-287b4a0968d5\"}\n[2026-04-24 10:38:40] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"ffe45e4f-7e79-49e7-8236-b793cec601b1\",\"trace_id\":\"32ac79cd-a559-4f05-9dfe-287b4a0968d5\"}\n[2026-04-24 10:38:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"ffe45e4f-7e79-49e7-8236-b793cec601b1\",\"trace_id\":\"32ac79cd-a559-4f05-9dfe-287b4a0968d5\"}\n[2026-04-24 10:38:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"a3956ca7-ded9-4686-b97f-fae9150d76fe\",\"trace_id\":\"bd87eb41-3fff-4782-9b21-e420abd24c3a\"}\n[2026-04-24 10:38:46] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:36:00, 2026-04-24 10:38:00] {\"correlation_id\":\"a3956ca7-ded9-4686-b97f-fae9150d76fe\",\"trace_id\":\"bd87eb41-3fff-4782-9b21-e420abd24c3a\"}\n[2026-04-24 10:38:46] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:36:00, 2026-04-24 10:38:00] {\"correlation_id\":\"a3956ca7-ded9-4686-b97f-fae9150d76fe\",\"trace_id\":\"bd87eb41-3fff-4782-9b21-e420abd24c3a\"}\n[2026-04-24 10:38:46] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"a3956ca7-ded9-4686-b97f-fae9150d76fe\",\"trace_id\":\"bd87eb41-3fff-4782-9b21-e420abd24c3a\"}\n[2026-04-24 10:38:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"4ba21787-388d-4a75-b097-10ca75622abd\",\"trace_id\":\"1b9d20b1-059c-4457-8f1c-924489985e62\"}\n[2026-04-24 10:38:52] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"4ba21787-388d-4a75-b097-10ca75622abd\",\"trace_id\":\"1b9d20b1-059c-4457-8f1c-924489985e62\"}\n[2026-04-24 10:39:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"c282109a-e743-4910-8eaa-828aa9aefb19\",\"trace_id\":\"a8999946-2027-4a46-8cbc-600ca892971c\"}\n[2026-04-24 10:39:12] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"c282109a-e743-4910-8eaa-828aa9aefb19\",\"trace_id\":\"a8999946-2027-4a46-8cbc-600ca892971c\"}\n[2026-04-24 10:39:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"c282109a-e743-4910-8eaa-828aa9aefb19\",\"trace_id\":\"a8999946-2027-4a46-8cbc-600ca892971c\"}\n[2026-04-24 10:39:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"d7182115-c721-47d4-a1d5-94d87d56c4e9\",\"trace_id\":\"8b35ed74-cca1-4eae-99fa-4d31d9b13ae8\"}\n[2026-04-24 10:39:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"d7182115-c721-47d4-a1d5-94d87d56c4e9\",\"trace_id\":\"8b35ed74-cca1-4eae-99fa-4d31d9b13ae8\"}\n[2026-04-24 10:39:23] local.NOTICE: Monitoring start {\"correlation_id\":\"27299084-f76c-4397-b5e0-2e9b2055e681\",\"trace_id\":\"34f513e1-7da0-4e5a-a098-819d688c2440\"}\n[2026-04-24 10:39:24] local.NOTICE: Monitoring end {\"correlation_id\":\"27299084-f76c-4397-b5e0-2e9b2055e681\",\"trace_id\":\"34f513e1-7da0-4e5a-a098-819d688c2440\"}\n[2026-04-24 10:39:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"648cf755-ce41-4cb3-994a-f19be68b01dc\",\"trace_id\":\"5e5c0d77-0412-423f-83c3-612a91531cb9\"}\n[2026-04-24 10:39:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"648cf755-ce41-4cb3-994a-f19be68b01dc\",\"trace_id\":\"5e5c0d77-0412-423f-83c3-612a91531cb9\"}\n[2026-04-24 10:39:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"9e892f5a-1994-4a76-b58f-bf30a293bc17\",\"trace_id\":\"47b816b7-c7c4-4316-a525-3212b72c1081\"}\n[2026-04-24 10:39:36] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"9e892f5a-1994-4a76-b58f-bf30a293bc17\",\"trace_id\":\"47b816b7-c7c4-4316-a525-3212b72c1081\"}\n[2026-04-24 10:39:36] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"9e892f5a-1994-4a76-b58f-bf30a293bc17\",\"trace_id\":\"47b816b7-c7c4-4316-a525-3212b72c1081\"}\n[2026-04-24 10:39:36] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"9e892f5a-1994-4a76-b58f-bf30a293bc17\",\"trace_id\":\"47b816b7-c7c4-4316-a525-3212b72c1081\"}\n[2026-04-24 10:39:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"c61bbf92-2cd5-4e7d-ae1b-097c7b22b760\",\"trace_id\":\"943c199b-5915-4638-b26f-9ebbaa4e5951\"}\n[2026-04-24 10:39:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"c61bbf92-2cd5-4e7d-ae1b-097c7b22b760\",\"trace_id\":\"943c199b-5915-4638-b26f-9ebbaa4e5951\"}\n[2026-04-24 10:39:44] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"c61bbf92-2cd5-4e7d-ae1b-097c7b22b760\",\"trace_id\":\"943c199b-5915-4638-b26f-9ebbaa4e5951\"}\n[2026-04-24 10:39:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"c61bbf92-2cd5-4e7d-ae1b-097c7b22b760\",\"trace_id\":\"943c199b-5915-4638-b26f-9ebbaa4e5951\"}\n[2026-04-24 10:39:45] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"c61bbf92-2cd5-4e7d-ae1b-097c7b22b760\",\"trace_id\":\"943c199b-5915-4638-b26f-9ebbaa4e5951\"}\n[2026-04-24 10:39:45] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"c61bbf92-2cd5-4e7d-ae1b-097c7b22b760\",\"trace_id\":\"943c199b-5915-4638-b26f-9ebbaa4e5951\"}\n[2026-04-24 10:39:52] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"f5e9e1c6-a2b7-4389-8b09-4bac9f893daa\",\"trace_id\":\"d964aaf1-4db6-43b2-b3b6-f463dc269e63\"}\n[2026-04-24 10:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"e7c58474-886e-4045-a81b-08ad59e97dcd\",\"trace_id\":\"794b5a18-5525-4851-9c29-229a3ec412a4\"}\n[2026-04-24 10:40:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"e7c58474-886e-4045-a81b-08ad59e97dcd\",\"trace_id\":\"794b5a18-5525-4851-9c29-229a3ec412a4\"}\n[2026-04-24 10:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"e7c58474-886e-4045-a81b-08ad59e97dcd\",\"trace_id\":\"794b5a18-5525-4851-9c29-229a3ec412a4\"}\n[2026-04-24 10:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"09e6afde-f9f7-44ef-8703-89fc9479e345\",\"trace_id\":\"35d3e72a-2392-4219-9317-32c7d0f4b2d7\"}\n[2026-04-24 10:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"09e6afde-f9f7-44ef-8703-89fc9479e345\",\"trace_id\":\"35d3e72a-2392-4219-9317-32c7d0f4b2d7\"}\n[2026-04-24 10:40:21] local.NOTICE: Monitoring start {\"correlation_id\":\"5e67b9e1-9e94-414b-ba6c-ab0e508f7de5\",\"trace_id\":\"987a2217-3c6f-49ed-8f61-df78b2e16b95\"}\n[2026-04-24 10:40:21] local.NOTICE: Monitoring end {\"correlation_id\":\"5e67b9e1-9e94-414b-ba6c-ab0e508f7de5\",\"trace_id\":\"987a2217-3c6f-49ed-8f61-df78b2e16b95\"}\n[2026-04-24 10:40:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"aa034468-7bb4-44a8-9de1-8ed3c38901bf\",\"trace_id\":\"969a7bca-fe51-4982-939c-4b7e019fffdc\"}\n[2026-04-24 10:40:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"aa034468-7bb4-44a8-9de1-8ed3c38901bf\",\"trace_id\":\"969a7bca-fe51-4982-939c-4b7e019fffdc\"}\n[2026-04-24 10:40:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"364e20d6-12ff-4f5f-af75-134ac8dd56b5\",\"trace_id\":\"f9932c8b-02a8-4aa0-ba5c-ade95b9b5609\"}\n[2026-04-24 10:40:32] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"364e20d6-12ff-4f5f-af75-134ac8dd56b5\",\"trace_id\":\"f9932c8b-02a8-4aa0-ba5c-ade95b9b5609\"}\n[2026-04-24 10:40:32] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"364e20d6-12ff-4f5f-af75-134ac8dd56b5\",\"trace_id\":\"f9932c8b-02a8-4aa0-ba5c-ade95b9b5609\"}\n[2026-04-24 10:40:32] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"364e20d6-12ff-4f5f-af75-134ac8dd56b5\",\"trace_id\":\"f9932c8b-02a8-4aa0-ba5c-ade95b9b5609\"}\n[2026-04-24 10:40:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"dec148e1-6cfc-4196-93b4-7392214485ea\",\"trace_id\":\"6f285d37-8d04-4c75-8c40-d2aabf9337ba\"}\n[2026-04-24 10:40:38] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:38:00, 2026-04-24 10:40:00] {\"correlation_id\":\"dec148e1-6cfc-4196-93b4-7392214485ea\",\"trace_id\":\"6f285d37-8d04-4c75-8c40-d2aabf9337ba\"}\n[2026-04-24 10:40:38] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:38:00, 2026-04-24 10:40:00] {\"correlation_id\":\"dec148e1-6cfc-4196-93b4-7392214485ea\",\"trace_id\":\"6f285d37-8d04-4c75-8c40-d2aabf9337ba\"}\n[2026-04-24 10:40:38] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"dec148e1-6cfc-4196-93b4-7392214485ea\",\"trace_id\":\"6f285d37-8d04-4c75-8c40-d2aabf9337ba\"}\n[2026-04-24 10:40:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"5ffc43bb-9998-404e-b93b-20703a72fb0b\",\"trace_id\":\"a38adc36-a696-4cbd-93bb-0beb86c1c774\"}\n[2026-04-24 10:40:44] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"5ffc43bb-9998-404e-b93b-20703a72fb0b\",\"trace_id\":\"a38adc36-a696-4cbd-93bb-0beb86c1c774\"}\n[2026-04-24 10:40:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"3df8abcd-13c6-4dbb-bc9f-701ec27c5ef4\",\"trace_id\":\"5749396d-a60d-4183-bbd4-829a978e3a58\"}\n[2026-04-24 10:40:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"3df8abcd-13c6-4dbb-bc9f-701ec27c5ef4\",\"trace_id\":\"5749396d-a60d-4183-bbd4-829a978e3a58\"}\n[2026-04-24 10:40:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"b06884d6-b3ab-4b3d-a22e-c2e6960ef404\",\"trace_id\":\"6f2693d9-7ced-4f04-bd07-eba7ab289e39\"}\n[2026-04-24 10:40:56] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"b06884d6-b3ab-4b3d-a22e-c2e6960ef404\",\"trace_id\":\"6f2693d9-7ced-4f04-bd07-eba7ab289e39\"}\n[2026-04-24 10:40:56] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"b06884d6-b3ab-4b3d-a22e-c2e6960ef404\",\"trace_id\":\"6f2693d9-7ced-4f04-bd07-eba7ab289e39\"}\n[2026-04-24 10:41:02] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"7810ea54-a6fb-488b-950f-2f084c71a064\",\"trace_id\":\"3ca90aba-713c-4a75-8028-2b38a1f56c15\"}\n[2026-04-24 10:41:02] local.INFO: Running conference:monitor:start command for activities in (2026-04-24 10:31:00, 2026-04-24 10:36:00] {\"correlation_id\":\"7810ea54-a6fb-488b-950f-2f084c71a064\",\"trace_id\":\"3ca90aba-713c-4a75-8028-2b38a1f56c15\"}\n[2026-04-24 10:41:03] local.INFO: [conference:monitor:start] No activities found in (2026-04-24 10:31:00, 2026-04-24 10:36:00] {\"correlation_id\":\"7810ea54-a6fb-488b-950f-2f084c71a064\",\"trace_id\":\"3ca90aba-713c-4a75-8028-2b38a1f56c15\"}\n[2026-04-24 10:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"7810ea54-a6fb-488b-950f-2f084c71a064\",\"trace_id\":\"3ca90aba-713c-4a75-8028-2b38a1f56c15\"}\n[2026-04-24 10:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"bcfa8eb1-dc0e-4449-9920-2bd723db4121\",\"trace_id\":\"1f01785a-8be0-4fe0-af84-414451dbc297\"}\n[2026-04-24 10:41:08] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"10:36\",\"to\":\"10:41\"} {\"correlation_id\":\"bcfa8eb1-dc0e-4449-9920-2bd723db4121\",\"trace_id\":\"1f01785a-8be0-4fe0-af84-414451dbc297\"}\n[2026-04-24 10:41:08] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"00:31\",\"to\":\"00:36\"} {\"correlation_id\":\"bcfa8eb1-dc0e-4449-9920-2bd723db4121\",\"trace_id\":\"1f01785a-8be0-4fe0-af84-414451dbc297\"}\n[2026-04-24 10:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"bcfa8eb1-dc0e-4449-9920-2bd723db4121\",\"trace_id\":\"1f01785a-8be0-4fe0-af84-414451dbc297\"}\n[2026-04-24 10:41:15] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:15] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:16] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:16] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:16] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:16] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:16] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"d4a00e32-430e-40ca-b218-046c55b2c21c\",\"trace_id\":\"d9d37e5d-cd06-4012-9a0a-716dd272ef49\"}\n[2026-04-24 10:41:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"974445d8-9256-49fd-8133-97b068b18251\",\"trace_id\":\"409954c6-e337-4e4d-b769-c2c119e465c6\"}\n[2026-04-24 10:41:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"1e1796ab-cabd-4e48-a3a5-67a664afdc18\",\"trace_id\":\"23555050-5b20-4059-aeb9-a957d70637c5\"}\n[2026-04-24 10:41:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"1e1796ab-cabd-4e48-a3a5-67a664afdc18\",\"trace_id\":\"23555050-5b20-4059-aeb9-a957d70637c5\"}\n[2026-04-24 10:41:27] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:27] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:27] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":60.0} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:27] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-04-24T10:43:27.859813Z\"} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:27] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:27] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:27] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"974445d8-9256-49fd-8133-97b068b18251\",\"trace_id\":\"409954c6-e337-4e4d-b769-c2c119e465c6\"}\n[2026-04-24 10:41:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:33] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:33] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"684f3425-f03d-4233-b383-03b51ba2954d\",\"trace_id\":\"789c5af8-88cd-4c4f-9983-0bb127171faa\"}\n[2026-04-24 10:41:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"684f3425-f03d-4233-b383-03b51ba2954d\",\"trace_id\":\"789c5af8-88cd-4c4f-9983-0bb127171faa\"}\n[2026-04-24 10:41:38] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:38] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:39] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"54a5e141-46c5-4c26-be85-cc9ddd10b329\",\"trace_id\":\"05a19cf6-6a1f-4427-b834-a9245abd1e9a\"}\n[2026-04-24 10:41:40] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"54a5e141-46c5-4c26-be85-cc9ddd10b329\",\"trace_id\":\"05a19cf6-6a1f-4427-b834-a9245abd1e9a\"}\n[2026-04-24 10:41:54] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:54] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:41:54] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"9ffcc71c-0d35-4c76-a3a4-21250b09fb4c\",\"trace_id\":\"9613a3e3-00fb-480f-9aac-e389e035f4a4\"}\n[2026-04-24 10:42:14] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"9ffcc71c-0d35-4c76-a3a4-21250b09fb4c\",\"trace_id\":\"9613a3e3-00fb-480f-9aac-e389e035f4a4\"}\n[2026-04-24 10:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"9ffcc71c-0d35-4c76-a3a4-21250b09fb4c\",\"trace_id\":\"9613a3e3-00fb-480f-9aac-e389e035f4a4\"}\n[2026-04-24 10:42:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"194bc665-f2d7-421f-86a1-5a93756f8bed\",\"trace_id\":\"e6953dc5-512b-45e2-8665-38fdd3927c17\"}\n[2026-04-24 10:42:20] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"194bc665-f2d7-421f-86a1-5a93756f8bed\",\"trace_id\":\"e6953dc5-512b-45e2-8665-38fdd3927c17\"}\n[2026-04-24 10:42:24] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:42:24] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:42:24] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:42:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:42:24] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:42:24] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":265.5,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.72} {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:42:24] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"e5140988-4f1d-4f4a-84ae-77366cf6f941\",\"trace_id\":\"558aaf86-90da-462d-9877-f28e72a5d579\"}\n[2026-04-24 10:42:26] local.NOTICE: Monitoring start {\"correlation_id\":\"fa3c8e3d-8dd3-46c2-b6a7-3716462beb08\",\"trace_id\":\"21265322-4fec-405b-95e8-5005164d9e51\"}\n[2026-04-24 10:42:26] local.NOTICE: Monitoring end {\"correlation_id\":\"fa3c8e3d-8dd3-46c2-b6a7-3716462beb08\",\"trace_id\":\"21265322-4fec-405b-95e8-5005164d9e51\"}\n[2026-04-24 10:42:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"c76858df-2745-4106-a5b8-aad6870ef4a5\",\"trace_id\":\"bc996feb-7500-433b-9c03-e9d0210cc4c4\"}\n[2026-04-24 10:42:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"c76858df-2745-4106-a5b8-aad6870ef4a5\",\"trace_id\":\"bc996feb-7500-433b-9c03-e9d0210cc4c4\"}\n[2026-04-24 10:42:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"70c8501b-3ede-4e54-bbc8-9569b46cb30a\",\"trace_id\":\"75a24f2f-98d7-4783-bcd0-b0217af708a8\"}\n[2026-04-24 10:42:42] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"70c8501b-3ede-4e54-bbc8-9569b46cb30a\",\"trace_id\":\"75a24f2f-98d7-4783-bcd0-b0217af708a8\"}\n[2026-04-24 10:42:42] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"70c8501b-3ede-4e54-bbc8-9569b46cb30a\",\"trace_id\":\"75a24f2f-98d7-4783-bcd0-b0217af708a8\"}\n[2026-04-24 10:42:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"70c8501b-3ede-4e54-bbc8-9569b46cb30a\",\"trace_id\":\"75a24f2f-98d7-4783-bcd0-b0217af708a8\"}\n[2026-04-24 10:42:50] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"69e90715-4c8e-48f3-960f-069a8a9a6ebf\",\"trace_id\":\"72f23a77-3c83-4f13-aad0-aaab4deedadf\"}\n[2026-04-24 10:42:50] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:40:00, 2026-04-24 10:42:00] {\"correlation_id\":\"69e90715-4c8e-48f3-960f-069a8a9a6ebf\",\"trace_id\":\"72f23a77-3c83-4f13-aad0-aaab4deedadf\"}\n[2026-04-24 10:42:51] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:40:00, 2026-04-24 10:42:00] {\"correlation_id\":\"69e90715-4c8e-48f3-960f-069a8a9a6ebf\",\"trace_id\":\"72f23a77-3c83-4f13-aad0-aaab4deedadf\"}\n[2026-04-24 10:42:51] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"69e90715-4c8e-48f3-960f-069a8a9a6ebf\",\"trace_id\":\"72f23a77-3c83-4f13-aad0-aaab4deedadf\"}\n[2026-04-24 10:42:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"d4d6680a-2ead-4560-bdd8-457b047d61b2\",\"trace_id\":\"a4946a48-3be8-4d80-9e4d-b9fc11f863e9\"}\n[2026-04-24 10:42:59] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d4d6680a-2ead-4560-bdd8-457b047d61b2\",\"trace_id\":\"a4946a48-3be8-4d80-9e4d-b9fc11f863e9\"}\n[2026-04-24 10:42:59] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d4d6680a-2ead-4560-bdd8-457b047d61b2\",\"trace_id\":\"a4946a48-3be8-4d80-9e4d-b9fc11f863e9\"}\n[2026-04-24 10:42:59] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"d4d6680a-2ead-4560-bdd8-457b047d61b2\",\"trace_id\":\"a4946a48-3be8-4d80-9e4d-b9fc11f863e9\"}\n[2026-04-24 10:43:01] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"181fefef-3ab4-4e50-9e43-0176839f80a5\",\"trace_id\":\"a4946a48-3be8-4d80-9e4d-b9fc11f863e9\"}\n[2026-04-24 10:43:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"3e9ceb6d-2bb8-4afa-8dd2-fe7aee0b5513\",\"trace_id\":\"ca55cc1e-bd7e-4e16-ad6e-e891914631f6\"}\n[2026-04-24 10:43:13] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"3e9ceb6d-2bb8-4afa-8dd2-fe7aee0b5513\",\"trace_id\":\"ca55cc1e-bd7e-4e16-ad6e-e891914631f6\"}\n[2026-04-24 10:43:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"3e9ceb6d-2bb8-4afa-8dd2-fe7aee0b5513\",\"trace_id\":\"ca55cc1e-bd7e-4e16-ad6e-e891914631f6\"}\n[2026-04-24 10:43:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"5ff9c995-0d83-4239-916b-64632bf138e5\",\"trace_id\":\"cd69934e-4d72-42fd-a81b-2d7c2e4432eb\"}\n[2026-04-24 10:43:18] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"5ff9c995-0d83-4239-916b-64632bf138e5\",\"trace_id\":\"cd69934e-4d72-42fd-a81b-2d7c2e4432eb\"}\n[2026-04-24 10:43:23] local.NOTICE: Monitoring start {\"correlation_id\":\"b76e2ff3-eb29-416a-ba96-a142852f7d5f\",\"trace_id\":\"a439d0ef-0d9b-44d9-91c4-71ec9a5ef6f1\"}\n[2026-04-24 10:43:23] local.NOTICE: Monitoring end {\"correlation_id\":\"b76e2ff3-eb29-416a-ba96-a142852f7d5f\",\"trace_id\":\"a439d0ef-0d9b-44d9-91c4-71ec9a5ef6f1\"}\n[2026-04-24 10:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"f6e72721-737d-449d-9585-97240bd59eab\",\"trace_id\":\"83583a54-50e1-410f-bf4c-1437633db0d6\"}\n[2026-04-24 10:43:29] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"f6e72721-737d-449d-9585-97240bd59eab\",\"trace_id\":\"83583a54-50e1-410f-bf4c-1437633db0d6\"}\n[2026-04-24 10:43:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"735d25af-b789-4430-9d79-854572b7f7ce\",\"trace_id\":\"cb173b25-393b-427e-a6aa-5c42a140fb12\"}\n[2026-04-24 10:43:34] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"735d25af-b789-4430-9d79-854572b7f7ce\",\"trace_id\":\"cb173b25-393b-427e-a6aa-5c42a140fb12\"}\n[2026-04-24 10:43:34] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"735d25af-b789-4430-9d79-854572b7f7ce\",\"trace_id\":\"cb173b25-393b-427e-a6aa-5c42a140fb12\"}\n[2026-04-24 10:43:34] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"735d25af-b789-4430-9d79-854572b7f7ce\",\"trace_id\":\"cb173b25-393b-427e-a6aa-5c42a140fb12\"}\n[2026-04-24 10:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"cf225528-db6c-4fd4-a774-2c6a5dae9850\",\"trace_id\":\"c3fc326d-e22a-4102-a36c-2913c8743149\"}\n[2026-04-24 10:43:43] local.NOTICE: Calendar sync start {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:43] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"cf225528-db6c-4fd4-a774-2c6a5dae9850\",\"trace_id\":\"c3fc326d-e22a-4102-a36c-2913c8743149\"}\n[2026-04-24 10:43:43] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:43] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:43] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:43] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:44] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:45] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:46] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 141772b4-13f6-4d7c-9d62-180e61140e00 Correlation ID: 7a33d672-3b29-409c-9a7e-809b437ff1cc Timestamp: 2026-04-24 10:43:47Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-04-24 10:43:47Z\\\",\\\"trace_id\\\":\\\"141772b4-13f6-4d7c-9d62-180e61140e00\\\",\\\"correlation_id\\\":\\\"7a33d672-3b29-409c-9a7e-809b437ff1cc\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:47] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:47] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:47] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:47] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:47] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:47] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 644bfd61-a77c-47d4-8021-25ebad431400 Correlation ID: 2d57c4e2-ea25-4cce-ad2f-2070b336feea Timestamp: 2026-04-24 10:43:48Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-04-24 10:43:48Z\\\",\\\"trace_id\\\":\\\"644bfd61-a77c-47d4-8021-25ebad431400\\\",\\\"correlation_id\\\":\\\"2d57c4e2-ea25-4cce-ad2f-2070b336feea\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:48] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:48] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:48] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:48] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:48] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:48] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:48] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:49] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 673e2791-28a4-4b0c-b527-94df7fa61400 Correlation ID: 39b3df04-64a8-4564-a9fc-1dc97e3e18c3 Timestamp: 2026-04-24 10:43:50Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-04-24 10:43:50Z\\\",\\\"trace_id\\\":\\\"673e2791-28a4-4b0c-b527-94df7fa61400\\\",\\\"correlation_id\\\":\\\"39b3df04-64a8-4564-a9fc-1dc97e3e18c3\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 227397e0-6520-44b0-aa07-4b8c19f11400 Correlation ID: 64c1c5eb-f1e9-4240-b801-499afc07c25a Timestamp: 2026-04-24 10:43:50Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-04-24 10:43:50Z\\\",\\\"trace_id\\\":\\\"227397e0-6520-44b0-aa07-4b8c19f11400\\\",\\\"correlation_id\\\":\\\"64c1c5eb-f1e9-4240-b801-499afc07c25a\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:50] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a39f1656-5747-486c-9cd8-3f47abfaadbc\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a39f1656-5747-486c-9cd8-3f47abfaadbc\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39f1656-5747-486c-9cd8-3f47abfaadbc\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"a39f1656-5747-486c-9cd8-3f47abfaadbc\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"a39f1656-5747-486c-9cd8-3f47abfaadbc\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a39f1656-5747-486c-9cd8-3f47abfaadbc\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"a39f1656-5747-486c-9cd8-3f47abfaadbc\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"a39f1656-5747-486c-9cd8-3f47abfaadbc\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 824e8253-29dc-41d1-98ea-bfcd67de4400 Correlation ID: 9cf5c0b1-83fd-4c1b-8801-3cb0491fc822 Timestamp: 2026-04-24 10:43:51Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-04-24 10:43:51Z\\\",\\\"trace_id\\\":\\\"824e8253-29dc-41d1-98ea-bfcd67de4400\\\",\\\"correlation_id\\\":\\\"9cf5c0b1-83fd-4c1b-8801-3cb0491fc822\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Token has been expired or revoked.\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"a39f1656-5747-486c-9cd8-3f47abfaadbc\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"a39f1656-5747-486c-9cd8-3f47abfaadbc\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:51] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:52] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"7c2db39427c8a527d982f28d342e8b1ce66fca1ee2e3d936c44b727ed9da5b57\",\"state\":\"connected\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1775683749,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-04-08 22:58:34\"}}} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:53] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"eb23deda-68bb-49fa-9024-f46288838e7e\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"21876741-7307-41c3-bef4-1505bf0d0214\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"0a4b2ae8-c1d5-4481-934e-981a876900d2\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"0a4b2ae8-c1d5-4481-934e-981a876900d2\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a4b2ae8-c1d5-4481-934e-981a876900d2\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCOpQOqkGB4Pj13KJp8CjfHSqwzw_GVdqxIRq9Jb0hz1cJsuWX3kegXyzmE5ezjgS3bZLZBGTUO4Rg5nbrbDvJdP58A83_g7W_e4dyJy7FzGSzERJRkAPo9reNW1pMNdHsu3K4fPGIclAUOtCFxfbGCwKwBmmG5AfByCkRM7hIX55P_Tomo5tunpeIOFTWpmb6g.gT2h9-9FyL9gDgQlNvJn5K8h1j5MhlzHMCL9NZarLm8\",\"last_sync\":\"2026-04-23 12:43:29\",\"dateMode\":\"daily\"} {\"correlation_id\":\"0a4b2ae8-c1d5-4481-934e-981a876900d2\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a4b2ae8-c1d5-4481-934e-981a876900d2\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"0a4b2ae8-c1d5-4481-934e-981a876900d2\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"0a4b2ae8-c1d5-4481-934e-981a876900d2\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"0a4b2ae8-c1d5-4481-934e-981a876900d2\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:43:54] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"0a4b2ae8-c1d5-4481-934e-981a876900d2\",\"trace_id\":\"dffff834-f734-448b-9473-5d2f258d2373\"}\n[2026-04-24 10:44:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"32f62f76-e6f1-4ee0-8042-c00b13c7fdb7\",\"trace_id\":\"befe512e-5778-40c9-9437-dfd5fe7ba1a5\"}\n[2026-04-24 10:44:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {\"correlation_id\":\"32f62f76-e6f1-4ee0-8042-c00b13c7fdb7\",\"trace_id\":\"befe512e-5778-40c9-9437-dfd5fe7ba1a5\"}\n[2026-04-24 10:44:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"32f62f76-e6f1-4ee0-8042-c00b13c7fdb7\",\"trace_id\":\"befe512e-5778-40c9-9437-dfd5fe7ba1a5\"}\n[2026-04-24 10:44:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"2a3fb393-20ad-4f6f-9f4b-a60d4709119b\",\"trace_id\":\"a777c465-1b16-4ad0-9f1d-de1b15057c0e\"}\n[2026-04-24 10:44:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"2a3fb393-20ad-4f6f-9f4b-a60d4709119b\",\"trace_id\":\"a777c465-1b16-4ad0-9f1d-de1b15057c0e\"}\n[2026-04-24 10:44:23] local.NOTICE: Monitoring start {\"correlation_id\":\"cd7273fd-d2b6-432a-9179-1b94660ae99a\",\"trace_id\":\"0c18ec7f-d365-45b5-8c27-ee1627b38ae1\"}\n[2026-04-24 10:44:23] local.NOTICE: Monitoring end {\"correlation_id\":\"cd7273fd-d2b6-432a-9179-1b94660ae99a\",\"trace_id\":\"0c18ec7f-d365-45b5-8c27-ee1627b38ae1\"}\n[2026-04-24 10:44:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"601d69ce-3381-4183-9113-7949977b761b\",\"trace_id\":\"c1189b05-55f2-4e1a-965f-6c7547fcfd1d\"}\n[2026-04-24 10:44:30] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"601d69ce-3381-4183-9113-7949977b761b\",\"trace_id\":\"c1189b05-55f2-4e1a-965f-6c7547fcfd1d\"}\n[2026-04-24 10:44:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"1351bd14-c41d-4096-89ed-052922431cb2\",\"trace_id\":\"ccae98f3-d931-4e0c-87bd-c30a8a9fcecf\"}\n[2026-04-24 10:44:35] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"1351bd14-c41d-4096-89ed-052922431cb2\",\"trace_id\":\"ccae98f3-d931-4e0c-87bd-c30a8a9fcecf\"}\n[2026-04-24 10:44:35] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"1351bd14-c41d-4096-89ed-052922431cb2\",\"trace_id\":\"ccae98f3-d931-4e0c-87bd-c30a8a9fcecf\"}\n[2026-04-24 10:44:35] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"1351bd14-c41d-4096-89ed-052922431cb2\",\"trace_id\":\"ccae98f3-d931-4e0c-87bd-c30a8a9fcecf\"}\n[2026-04-24 10:44:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"66a1012e-ef69-422b-a93c-fa4a061daabf\",\"trace_id\":\"208c3955-5b1a-40f6-baff-b4f3155f7fe5\"}\n[2026-04-24 10:44:42] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:42:00, 2026-04-24 10:44:00] {\"correlation_id\":\"66a1012e-ef69-422b-a93c-fa4a061daabf\",\"trace_id\":\"208c3955-5b1a-40f6-baff-b4f3155f7fe5\"}\n[2026-04-24 10:44:42] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:42:00, 2026-04-24 10:44:00] {\"correlation_id\":\"66a1012e-ef69-422b-a93c-fa4a061daabf\",\"trace_id\":\"208c3955-5b1a-40f6-baff-b4f3155f7fe5\"}\n[2026-04-24 10:44:42] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"66a1012e-ef69-422b-a93c-fa4a061daabf\",\"trace_id\":\"208c3955-5b1a-40f6-baff-b4f3155f7fe5\"}\n[2026-04-24 10:44:47] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.723} {\"correlation_id\":\"4040c772-42c0-4cb0-9a74-0df8fb7d5731\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:48] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.723,\"memoryPeakAfterCommandInMB\":99.723} {\"correlation_id\":\"4040c772-42c0-4cb0-9a74-0df8fb7d5731\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:48] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":23661824,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"4fb201ca-77ea-4d78-ae82-347463b6686d\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:48] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-04-24 06:38:47\"}}} {\"correlation_id\":\"4fb201ca-77ea-4d78-ae82-347463b6686d\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:48] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"4fb201ca-77ea-4d78-ae82-347463b6686d\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:48] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4fb201ca-77ea-4d78-ae82-347463b6686d\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:48] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"4fb201ca-77ea-4d78-ae82-347463b6686d\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:48] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":67.35,\"usage\":23704944,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"4fb201ca-77ea-4d78-ae82-347463b6686d\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:50] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":23660768,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"dbb9c5c5-f699-494b-9c80-426379c721d7\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:50] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1775683749,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-04-08 22:58:34\"}}} {\"correlation_id\":\"dbb9c5c5-f699-494b-9c80-426379c721d7\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:50] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"dbb9c5c5-f699-494b-9c80-426379c721d7\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:50] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"dbb9c5c5-f699-494b-9c80-426379c721d7\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:50] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"dbb9c5c5-f699-494b-9c80-426379c721d7\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:50] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":30.63,\"usage\":23705592,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"dbb9c5c5-f699-494b-9c80-426379c721d7\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:52] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":23660760,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"97d41525-7d13-4f90-b766-c1cdba7f94ed\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:52] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"97d41525-7d13-4f90-b766-c1cdba7f94ed\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:53] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1777025653,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"97d41525-7d13-4f90-b766-c1cdba7f94ed\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:54] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1434.81,\"usage\":23679464,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"97d41525-7d13-4f90-b766-c1cdba7f94ed\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:54] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":23660952,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"6da7eab4-1d26-485b-9355-f8fc961b4019\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:54] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1775683749,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-04-08 22:58:34\"}}} {\"correlation_id\":\"6da7eab4-1d26-485b-9355-f8fc961b4019\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:54] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"6da7eab4-1d26-485b-9355-f8fc961b4019\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:54] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"6da7eab4-1d26-485b-9355-f8fc961b4019\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:54] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"6da7eab4-1d26-485b-9355-f8fc961b4019\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:54] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":38.86,\"usage\":23705736,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"6da7eab4-1d26-485b-9355-f8fc961b4019\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:56] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":23661080,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"68d3a020-e2c6-4848-88bb-db7362a988ce\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:56] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"68d3a020-e2c6-4848-88bb-db7362a988ce\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:56] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"68d3a020-e2c6-4848-88bb-db7362a988ce\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:56] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"68d3a020-e2c6-4848-88bb-db7362a988ce\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:56] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"68d3a020-e2c6-4848-88bb-db7362a988ce\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:57] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1241.2,\"usage\":23682400,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"68d3a020-e2c6-4848-88bb-db7362a988ce\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:58] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":23661040,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"651767a2-4c3f-49df-8f8d-1c009dd1eec3\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:58] local.WARNING: [Bullhorn] Account not connected for user {\"userId\":\"941d12a6-e84f-4c3a-a4c8-2ef433792095\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":348,\"sociable_id\":121,\"provider_user_id\":null,\"expires\":1733727508,\"refresh_token_expires\":null,\"provider\":\"bullhorn\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2021-04-06 11:07:26\",\"updated_at\":\"2024-12-09 15:10:40\"}}} {\"correlation_id\":\"651767a2-4c3f-49df-8f8d-1c009dd1eec3\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:58] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"651767a2-4c3f-49df-8f8d-1c009dd1eec3\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:58] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"651767a2-4c3f-49df-8f8d-1c009dd1eec3\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:58] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"651767a2-4c3f-49df-8f8d-1c009dd1eec3\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:44:58] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":22.86,\"usage\":23703400,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"651767a2-4c3f-49df-8f8d-1c009dd1eec3\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:00] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":23660416,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"9457fce9-3b36-4ff6-a08e-5f5d68d4151f\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:00] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"ed89227b-e364-4dfb-b4bf-343f154bf21e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1360,\"sociable_id\":245,\"provider_user_id\":\"0052g000003frZNAAY\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-02 06:11:55\",\"updated_at\":\"2024-12-11 08:50:23\"}}} {\"correlation_id\":\"9457fce9-3b36-4ff6-a08e-5f5d68d4151f\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"9457fce9-3b36-4ff6-a08e-5f5d68d4151f\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"9457fce9-3b36-4ff6-a08e-5f5d68d4151f\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"9457fce9-3b36-4ff6-a08e-5f5d68d4151f\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:00] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":49.38,\"usage\":23702456,\"real_usage\":65011712,\"pid\":13878,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"9457fce9-3b36-4ff6-a08e-5f5d68d4151f\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:02] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":23660600,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:02] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:02] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-04-24 10:14:23\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:02] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: ExternalContactMap before {\"current\":23668520,\"peak\":78342936,\"config_id\":500} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: ExternalContactMap after {\"used\":4960,\"current\":23673480,\"peak\":78342936,\"config_id\":500} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: ExternalContactMap final {\"used\":5824,\"current\":23674344,\"peak\":78342936,\"config_id\":500} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: [integration-app] create ExternalAccountMap {\"team_id\":3143,\"config_id\":500} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: ExternalAccountMap before {\"current\":23671352,\"peak\":78342936,\"config_id\":500} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: ExternalAccountMap after {\"used\":5280,\"current\":23676632,\"peak\":78342936,\"config_id\":500} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: ExternalAccountMap final {\"used\":6144,\"current\":23677496,\"peak\":78342936,\"config_id\":500} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-04-24 10:14:23\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-04-24 10:14:23\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-04-24 10:14:23\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-04-24 10:14:23\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:04] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:05] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-04-24 10:14:23\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:05] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-04-24 10:14:23\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:05] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/get-converted-leads/run\",\"full_target\":\"connections/zohocrm/actions/get-converted-leads/run\"} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:06] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-04-24 10:14:23\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}\n[2026-04-24 10:45:06] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":3242.96,\"usage\":23680656,\"real_usage\":65011712,\"pid\":13878} {\"correlation_id\":\"70769cb3-a7d7-45b4-9742-457806195b92\",\"trace_id\":\"8c63d50a-2621-4963-b17e-22f3f588c3da\"}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
8409739779266792278
|
-8255819580656018307
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20508-notify-before-AJ Project: faVsco.js, menu
JY-20508-notify-before-AJ-report-expiration, menu
Start Listening for PHP Debug Connections
ReportControllerTest
Run 'ReportControllerTest'
Debug 'ReportControllerTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
16
7
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Repositories;
use Carbon\CarbonImmutable;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Support\Carbon;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Pagination\LengthAwarePaginator;
use Illuminate\Support\Facades\DB;
use Jiminny\Models\AutomatedReport;
use Jiminny\Models\AutomatedReportResult;
use Jiminny\Models\Team;
use Jiminny\Models\User;
use Jiminny\Services\Kiosk\AutomatedReports\AutomatedReportsService;
use Jiminny\Services\Kiosk\AutomatedReports\ReportSort;
use Jiminny\Services\Kiosk\AutomatedReports\ReportSortDirection;
class AutomatedReportsRepository
{
/**
* Create a new automated report
*
* @param array $data
*
* @return AutomatedReport
*/
public function create(array $data): AutomatedReport
{
return AutomatedReport::create($data);
}
/**
* Find an automated report by UUID
*
* @param string $uuid
*
* @return AutomatedReport|null
*/
public function findByUuid(string $uuid): ?AutomatedReport
{
return AutomatedReport::where('uuid', AutomatedReport::toOptimized($uuid))->first();
}
public function findByIdOrUuid(string $idOrUuid): ?AutomatedReport
{
if (is_numeric($idOrUuid)) {
return AutomatedReport::find((int) $idOrUuid);
}
return AutomatedReport::where('uuid', AutomatedReport::toOptimized($idOrUuid))->first();
}
/**
* Retrieve all standard (non-Ask Jiminny) automated reports.
*
* @param string $sortColumn The column to sort by. Allowed values: 'created_by', 'created_at'. Defaults to 'created_at'.
* @param string $sortDirection The sort direction. Allowed values: 'asc', 'desc'. Defaults to 'desc'.
*
* @return Collection<AutomatedReport>
*/
public function getAllStandardReports(
string $sortColumn = 'created_at',
string $sortDirection = 'desc'
): Collection {
return $this->buildSortedQuery($sortColumn, $sortDirection)
->whereNot('type', AutomatedReportsService::TYPE_ASK_JIMINNY)
->get();
}
/**
* Retrieve all Ask Jiminny reports created by the given user.
*
* @param User $user The user whose reports to retrieve.
* @param string $sortColumn The column to sort by. Allowed values: 'created_by', 'created_at'. Defaults to 'created_at'.
* @param string $sortDirection The sort direction. Allowed values: 'asc', 'desc'. Defaults to 'desc'.
*
* @return Collection<AutomatedReport>
*/
public function getAskJiminnyReportsByUser(
User $user,
string $sortColumn = 'created_at',
string $sortDirection = 'desc'
): Collection {
return $this->buildSortedQuery($sortColumn, $sortDirection)
->where('type', AutomatedReportsService::TYPE_ASK_JIMINNY)
->where('created_by', $user->getId())
->get();
}
private function buildSortedQuery(string $sortColumn, string $sortDirection): \Illuminate\Database\Eloquent\Builder
{
$allowedColumns = ['created_by', 'created_at'];
if (! in_array($sortColumn, $allowedColumns)) {
$sortColumn = 'created_at';
}
$sortDirection = strtolower($sortDirection) === 'asc' ? 'asc' : 'desc';
$query = AutomatedReport::query()->with(['creator', 'team']);
if ($sortColumn === 'created_by') {
$query->leftJoin('users', 'users.id', '=', 'automated_reports.created_by')
->orderByRaw("users.name COLLATE utf8mb4_unicode_ci {$sortDirection}")
->select('automated_reports.*');
} else {
$query->orderBy($sortColumn, $sortDirection);
}
return $query;
}
/**
* Get all active Ask Jiminny reports whose expiry date has passed.
*
* @return Collection<AutomatedReport>
*/
public function getExpiredActiveAskJiminnyReports(): Collection
{
return AutomatedReport::where('status', true)
->where('type', AutomatedReportsService::TYPE_ASK_JIMINNY)
->whereNotNull('expires_at')
->where('expires_at', '<', now()->toDateString())
->get();
}
/**
* Get all active Ask Jiminny reports that expire exactly on the given date.
*
* @return Collection<AutomatedReport>
*/
public function getActiveAskJiminnyReportsExpiringOn(CarbonImmutable $date): Collection
{
return AutomatedReport::with('creator')
->where('status', true)
->where('type', AutomatedReportsService::TYPE_ASK_JIMINNY)
->whereNotNull('expires_at')
->whereDate('expires_at', $date->toDateString())
->get();
}
/**
* Get all active and enabled reports with active teams for the specified frequency.
*
* @param string $frequency
*
* @return Collection<AutomatedReport>
*/
public function getActiveReportsByFrequency(string $frequency): Collection
{
return AutomatedReport::where('automated_reports.status', true)
->where('automated_reports.frequency', $frequency)
->join('teams', 'automated_reports.team_id', '=', 'teams.id')
->where('teams.status', Team::STATUS_ACTIVE)
->where(function ($query) {
$query->whereNull('automated_reports.expires_at')
->orWhere('automated_reports.expires_at', '>=', now()->toDateString());
})
->select('automated_reports.*')
->get();
}
/**
* Update an automated report
*
* @param AutomatedReport $report
* @param array $data
*
* @return AutomatedReport
*/
public function update(AutomatedReport $report, array $data): AutomatedReport
{
$report->update($data);
return $report;
}
/**
* Create a new automated report result.
*
* @param array $data The data to create the automated report result with.
*
* @return AutomatedReportResult The newly created automated report result.
*/
public function createResult(array $data): AutomatedReportResult
{
return AutomatedReportResult::create($data);
}
/**
* Find an automated report result by UUID.
*
* @param string $uuid The UUID to find the automated report result with.
*
* @return AutomatedReportResult|null The automated report result if found, otherwise null.
*/
public function findResultByUuid(string $uuid): ?AutomatedReportResult
{
return AutomatedReportResult::where('uuid', AutomatedReportResult::toOptimized($uuid))->first();
}
public function findResultByUuidForUser(string $uuid, User $user): ?AutomatedReportResult
{
return AutomatedReportResult::query()
->where('uuid', AutomatedReportResult::toOptimized($uuid))
->whereHas('report', static function ($query) use ($user): void {
$query->where('team_id', $user->getTeamId())
->where('created_by', $user->getId());
})
->first();
}
public function findChildResult(AutomatedReportResult $result, string $type): ?AutomatedReportResult
{
return AutomatedReportResult::query()
->where('parent_id', $result->getId())
->where('media_type', $type)
->first();
}
public function findLatestDefaultOrFailedResult(AutomatedReport $report): ?AutomatedReportResult
{
return AutomatedReportResult::query()
->where('report_id', $report->getId())
->whereIn('status', [AutomatedReportResult::STATUS_DEFAULT, AutomatedReportResult::STATUS_FAILED])
->latest()
->first();
}
public function getGeneratedNotSentResults(): Collection
{
return AutomatedReportResult::query()
->whereNotNull('generated_at')
->whereNull('sent_at')
->where('status', AutomatedReportResult::STATUS_GENERATED)
->whereHas('report')
->with('report')
->get();
}
public function getPaginatedUserReports(
User $user,
ReportSort $sort,
ReportSortDirection $sortDirection,
int $resultsPerPage,
int $page,
?Carbon $fromDate,
?Carbon $toDate,
array $teamIds,
array $reportTypes,
?string $name,
): LengthAwarePaginator {
$query = AutomatedReportResult::query()
->whereNotNull('automated_report_results.generated_at')
->join('automated_reports', 'automated_report_results.report_id', '=', 'automated_reports.id')
->where(fn (Builder $q) => $this->applyUserAccessScope($q, $user))
->orderByRaw("$sort->value COLLATE utf8mb4_unicode_ci {$sortDirection->value}")
->select('automated_report_results.*')
->with('report.team');
if ($fromDate !== null && $toDate !== null) {
$query->whereBetween('generated_at', [$fromDate, $toDate]);
}
if (! empty($teamIds)) {
$query->where(function ($q) use ($teamIds) {
foreach ($teamIds as $id) {
$q->orWhereJsonContains('automated_reports.groups', $id);
}
});
}
if (! empty($reportTypes)) {
$query->whereIn('automated_reports.type', $reportTypes);
}
if (! empty($name)) {
$query->whereLike('name', "%$name%");
}
return $query->paginate($resultsPerPage, ['*'], 'page', $page);
}
public function countUserReports(User $user): int
{
return AutomatedReportResult::query()
->whereNotNull('generated_at')
->whereNotNull('sent_at')
->whereHas('report', function ($q) use ($user) {
$q->where('team_id', $user->getTeamId())
->whereJsonContains('recipients->users', $user->getId());
})
->count();
}
/**
* Restrict a query on the automated_reports table to reports the given user is allowed to see.
*
* Matches the customer-facing audience:
* - explicit user recipients (recipients.users)
* - members of any of the report's groups (Ask Jiminny reports)
*/
private function applyUserAccessScope(Builder $query, User $user): void
{
$userId = $user->getId();
$groupId = $user->getGroupId();
$query
->where('automated_reports.team_id', $user->getTeamId())
->where(function (Builder $q) use ($userId, $groupId): void {
$q->whereJsonContains('automated_reports.recipients->users', $userId);
if ($groupId !== null) {
$q->orWhere(function (Builder $sub) use ($groupId): void {
$sub->where('automated_reports.type', AutomatedReportsService::TYPE_ASK_JIMINNY)
->whereJsonContains('automated_reports.groups', $groupId);
});
}
});
}
/**
* Get report IDs for a specific team
*
* @param Team $team
*
* @return \Illuminate\Support\Collection
*/
public function getReportIdsByTeam(Team $team): \Illuminate\Support\Collection
{
return AutomatedReport::where('team_id', $team->getId())->pluck('id');
}
/**
* Get all reports for a specific team
*
* @param Team $team
*
* @return Collection
*/
public function getReportsByTeam(Team $team): Collection
{
return AutomatedReport::where('team_id', $team->getId())->get();
}
/**
* Get all report results for a specific report
*
* @param AutomatedReport $report
*
* @return Collection
*/
public function getResultsByReport(AutomatedReport $report): Collection
{
return $this->getResultsByReportQuery($report)->get();
}
public function getResultsByReportQuery(AutomatedReport $report): Builder
{
return AutomatedReportResult::where('report_id', $report->getId());
}
public function getReportResultsQueryForRetention(Team $team, CarbonImmutable $retentionDate): Builder
{
$reportIds = $this->getReportIdsByTeam($team);
return AutomatedReportResult::query()->whereIn('report_id', $reportIds)
->whereRaw('IFNULL(generated_at, created_at) <= ?', [$retentionDate]);
}
/**
* @param int|null $teamId Optional team ID to filter results
*
* @return \Illuminate\Support\Collection<int, int> Collection of team IDs
*/
public function getTeamIdsWithReportsResults(?int $teamId = null): \Illuminate\Support\Collection
{
$query = DB::table('automated_reports')
->join('teams', 'automated_reports.team_id', '=', 'teams.id')
->select('teams.id')
->distinct();
if ($teamId !== null) {
$query->where('teams.id', $teamId);
}
return $query->pluck('teams.id');
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
200
Previous Highlighted Error
Next Highlighted Error
[2026-04-24 10:24:09] local.INFO: [automated-reports] Started {"correlation_id":"4ef6e232-88d2-4935-87d3-62ff95c3b2d5","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:09] local.INFO: [automated-reports] Checking conditions {"isMonday":false,"isWeekend":false,"isFirstDayOfMonth":false,"currentMonth":4,"isQuarterlyMonth":true} {"correlation_id":"4ef6e232-88d2-4935-87d3-62ff95c3b2d5","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:09] local.INFO: [automated-reports] Processing daily reports {"correlation_id":"4ef6e232-88d2-4935-87d3-62ff95c3b2d5","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:10] local.INFO: [automated-reports] Found 1 daily reports to process {"correlation_id":"4ef6e232-88d2-4935-87d3-62ff95c3b2d5","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:10] local.INFO: [automated-reports] Dispatching Generate Report job for report {"reportUuid":"4f6ca2b5-1993-48aa-99ad-b66f19f15d43","teamId":1,"frequency":"weekly","type":"ask_jiminny"} {"correlation_id":"4ef6e232-88d2-4935-87d3-62ff95c3b2d5","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:10] local.INFO: [automated-reports] Completed {"correlation_id":"4ef6e232-88d2-4935-87d3-62ff95c3b2d5","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:11] local.INFO: [AskJiminnyReport:Generate] Started {"automatedReportUuid":"4f6ca2b5-1993-48aa-99ad-b66f19f15d43"} {"correlation_id":"00ca4f00-8a80-4bdd-b401-804183825595","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:15] local.INFO: [AskJiminnyReport] Fetched activity IDs for saved search {"saved_search_id":1977,"user_id":143,"activity_count":0} {"correlation_id":"00ca4f00-8a80-4bdd-b401-804183825595","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:15] local.INFO: [AskJiminnyReport:Generate] Fetched activity IDs {"automatedReportUuid":"4f6ca2b5-1993-48aa-99ad-b66f19f15d43","activityCount":0} {"correlation_id":"00ca4f00-8a80-4bdd-b401-804183825595","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:15] local.INFO: [AskJiminnyReport:Generate] Not enough activities, skipped {"automatedReportUuid":"4f6ca2b5-1993-48aa-99ad-b66f19f15d43","activityCount":0} {"correlation_id":"00ca4f00-8a80-4bdd-b401-804183825595","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:15] local.INFO: [AskJiminnyReport:Generate] Dispatched not-generated notifications {"automatedReportUuid":"4f6ca2b5-1993-48aa-99ad-b66f19f15d43","recipientsCount":1} {"correlation_id":"00ca4f00-8a80-4bdd-b401-804183825595","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:18] local.INFO: [Send Report Not Generated Mail] Email sent {"uuid":"dcb12181-9de1-4ef0-9d45-fb4ea6fd0778","email":"[EMAIL]"} {"correlation_id":"27ada0cc-4eb3-49c4-9115-19ece9e24576","trace_id":"6af075f9-940e-4789-b9b4-cb42649b2cf5"}
[2026-04-24 10:24:18] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"d9261d90-9df8-4eb4-8dcc-54b29d8e39cb","trace_id":"5c4d23da-1340-4066-b354-55bfb79c0f4a"}
[2026-04-24 10:24:18] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {"correlation_id":"d9261d90-9df8-4eb4-8dcc-54b29d8e39cb","trace_id":"5c4d23da-1340-4066-b354-55bfb79c0f4a"}
[2026-04-24 10:24:18] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"d9261d90-9df8-4eb4-8dcc-54b29d8e39cb","trace_id":"5c4d23da-1340-4066-b354-55bfb79c0f4a"}
[2026-04-24 10:24:26] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"cdcdc062-b51a-4f27-9d4c-95ef48442391","trace_id":"e7701141-f61a-431e-8fac-697bccd67630"}
[2026-04-24 10:24:26] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"cdcdc062-b51a-4f27-9d4c-95ef48442391","trace_id":"e7701141-f61a-431e-8fac-697bccd67630"}
[2026-04-24 10:24:35] local.NOTICE: Monitoring start {"correlation_id":"862cdf2d-46ca-4f7b-966b-79a5f2648771","trace_id":"961d76fe-7891-42e6-9d2e-c1dec32ec53b"}
[2026-04-24 10:24:35] local.NOTICE: Monitoring end {"correlation_id":"862cdf2d-46ca-4f7b-966b-79a5f2648771","trace_id":"961d76fe-7891-42e6-9d2e-c1dec32ec53b"}
[2026-04-24 10:24:45] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"3529a427-eebb-4c61-9efb-be7b720d4dc3","trace_id":"63b1fd43-6c0e-44d1-a8d4-a7aaa509815d"}
[2026-04-24 10:24:45] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"3529a427-eebb-4c61-9efb-be7b720d4dc3","trace_id":"63b1fd43-6c0e-44d1-a8d4-a7aaa509815d"}
[2026-04-24 10:24:53] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"ebdfa028-0918-4dff-8eec-bafc1d997f9d","trace_id":"dd8b3479-50fa-4fc2-b3f9-581a6250baea"}
[2026-04-24 10:24:53] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"ebdfa028-0918-4dff-8eec-bafc1d997f9d","trace_id":"dd8b3479-50fa-4fc2-b3f9-581a6250baea"}
[2026-04-24 10:24:53] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"ebdfa028-0918-4dff-8eec-bafc1d997f9d","trace_id":"dd8b3479-50fa-4fc2-b3f9-581a6250baea"}
[2026-04-24 10:24:53] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"ebdfa028-0918-4dff-8eec-bafc1d997f9d","trace_id":"dd8b3479-50fa-4fc2-b3f9-581a6250baea"}
[2026-04-24 10:25:01] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"6ace59e3-341b-49e4-8e3f-36ea22423005","trace_id":"53678e7f-c854-4c0f-bc6d-c1ad8ba49696"}
[2026-04-24 10:25:01] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:23:00, 2026-04-24 10:25:00] {"correlation_id":"6ace59e3-341b-49e4-8e3f-36ea22423005","trace_id":"53678e7f-c854-4c0f-bc6d-c1ad8ba49696"}
[2026-04-24 10:25:01] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:23:00, 2026-04-24 10:25:00] {"correlation_id":"6ace59e3-341b-49e4-8e3f-36ea22423005","trace_id":"53678e7f-c854-4c0f-bc6d-c1ad8ba49696"}
[2026-04-24 10:25:01] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"6ace59e3-341b-49e4-8e3f-36ea22423005","trace_id":"53678e7f-c854-4c0f-bc6d-c1ad8ba49696"}
[2026-04-24 10:25:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"11e8b9cf-a3f0-49b8-9066-e1f16e743f68","trace_id":"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35"}
[2026-04-24 10:25:10] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"11e8b9cf-a3f0-49b8-9066-e1f16e743f68","trace_id":"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35"}
[2026-04-24 10:25:10] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"11e8b9cf-a3f0-49b8-9066-e1f16e743f68","trace_id":"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35"}
[2026-04-24 10:25:10] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"11e8b9cf-a3f0-49b8-9066-e1f16e743f68","trace_id":"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35"}
[2026-04-24 10:25:10] local.ERROR: [Aircall] Re-activating webhooks failed {"team_id":1,"reason":"{\"message\":\"Forbidden\"}"} {"correlation_id":"11e8b9cf-a3f0-49b8-9066-e1f16e743f68","trace_id":"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35"}
[2026-04-24 10:25:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"11e8b9cf-a3f0-49b8-9066-e1f16e743f68","trace_id":"15598fe3-5b2f-49a6-84e3-48c9ab2a0d35"}
[2026-04-24 10:25:18] local.INFO: [RetryFailedDownloads] Starting {"options":{"from":null,"to":null,"help":false,"silent":false,"quiet":false,"verbose":false,"version":false,"ansi":null,"no-interaction":false,"env":null}} {"correlation_id":"6b84611f-1af3-4e64-8c1c-c963ed5bcfa7","trace_id":"056c6533-0c1b-480c-93bb-4b7c788b5dc4"}
[2026-04-24 10:26:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"cef03617-e15a-498b-8751-efa9b8808ec9","trace_id":"793af5d4-ea14-4e7d-bf10-bdf65c4b41b9"}
[2026-04-24 10:26:11] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {"correlation_id":"cef03617-e15a-498b-8751-efa9b8808ec9","trace_id":"793af5d4-ea14-4e7d-bf10-bdf65c4b41b9"}
[2026-04-24 10:26:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"cef03617-e15a-498b-8751-efa9b8808ec9","trace_id":"793af5d4-ea14-4e7d-bf10-bdf65c4b41b9"}
[2026-04-24 10:26:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"d916f4b2-7912-4b9d-a733-794daab3d108","trace_id":"75dc6489-d592-4de8-968d-4f9e9c4a2a57"}
[2026-04-24 10:26:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"d916f4b2-7912-4b9d-a733-794daab3d108","trace_id":"75dc6489-d592-4de8-968d-4f9e9c4a2a57"}
[2026-04-24 10:26:23] local.NOTICE: Monitoring start {"correlation_id":"9e9c1b30-7cf9-4944-9e1e-5a81e68a65df","trace_id":"000992c5-8e61-4246-a35f-09f1d832ddd1"}
[2026-04-24 10:26:23] local.NOTICE: Monitoring end {"correlation_id":"9e9c1b30-7cf9-4944-9e1e-5a81e68a65df","trace_id":"000992c5-8e61-4246-a35f-09f1d832ddd1"}
[2026-04-24 10:26:28] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"f8026235-b956-4aaf-9600-b7b93e3d9c74","trace_id":"759b3dbc-2e19-46cd-91c9-9065e063d32e"}
[2026-04-24 10:26:28] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"f8026235-b956-4aaf-9600-b7b93e3d9c74","trace_id":"759b3dbc-2e19-46cd-91c9-9065e063d32e"}
[2026-04-24 10:26:33] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"4669b9f7-c3b1-4147-b391-8f8314c25042","trace_id":"aff20f19-1f01-4fed-98d7-8ecafcae8c6e"}
[2026-04-24 10:26:33] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"4669b9f7-c3b1-4147-b391-8f8314c25042","trace_id":"aff20f19-1f01-4fed-98d7-8ecafcae8c6e"}
[2026-04-24 10:26:33] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"4669b9f7-c3b1-4147-b391-8f8314c25042","trace_id":"aff20f19-1f01-4fed-98d7-8ecafcae8c6e"}
[2026-04-24 10:26:33] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"4669b9f7-c3b1-4147-b391-8f8314c25042","trace_id":"aff20f19-1f01-4fed-98d7-8ecafcae8c6e"}
[2026-04-24 10:26:39] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"23076007-fc54-415a-9900-2270769cd622","trace_id":"ffefe56f-2881-4273-9dd1-93b8efff8334"}
[2026-04-24 10:26:39] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:24:00, 2026-04-24 10:26:00] {"correlation_id":"23076007-fc54-415a-9900-2270769cd622","trace_id":"ffefe56f-2881-4273-9dd1-93b8efff8334"}
[2026-04-24 10:26:39] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:24:00, 2026-04-24 10:26:00] {"correlation_id":"23076007-fc54-415a-9900-2270769cd622","trace_id":"ffefe56f-2881-4273-9dd1-93b8efff8334"}
[2026-04-24 10:26:39] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"23076007-fc54-415a-9900-2270769cd622","trace_id":"ffefe56f-2881-4273-9dd1-93b8efff8334"}
[2026-04-24 10:26:44] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"cd5d0352-aec8-49be-8730-433061921ee7","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:44] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"cd5d0352-aec8-49be-8730-433061921ee7","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","usage":23540024,"real_usage":65011712,"pid":13878} {"correlation_id":"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.WARNING: [HubSpot] Account not connected for user {"userId":"33e34a7a-1c02-4f04-87ac-22c3a385e6e3","account":{"Jiminny\\Models\\SocialAccount":{"id":306,"sociable_id":109,"provider_user_id":"11348452","expires":1701077403,"refresh_token_expires":null,"provider":"hubspot","state":"full-refresh","auth_scope":null,"retry_after":null,"created_at":"2020-09-01 16:59:04","updated_at":"2023-11-27 09:30:03"}}} {"correlation_id":"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":109,"team_id":29} {"correlation_id":"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","provider":"hubspot","status":"disconnected","duration_ms":38.25,"usage":23605688,"real_usage":65011712,"pid":13878,"reason":"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect."} {"correlation_id":"f65fbc87-0ff6-49b0-bb0f-2b6edf95b900","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [SyncHubspotObjects] Starting sync {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","usage":23563904,"real_usage":65011712,"pid":13878} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [SocialAccountService] Token needs refreshing {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [SocialAccountService] Refreshing token from provider {"socialAccountId":1499,"provider":"hubspot","refreshToken":"96f94c623a404e02ebdbf07f1b75707bb6cdbf848cbf45d418baf608c41a8d86","state":"connected"} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [SocialAccountObserver] Saving model {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:45] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:46] local.INFO: [SocialAccountService] Token refreshed {"socialAccountId":1499,"provider":"hubspot","state":"connected"} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:46] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"hubspot","crm_owner":148,"team_id":2} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:46] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {"team":2} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [Hubspot] Pagination completed {"team_id":2,"endpoint":"https://api.hubapi.com/crm/v3/objects/deals/search","total_requests":1,"total_records_fetched":0,"total_elapsed_seconds":0.6,"average_seconds_per_request":0.6} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [HubSpot] Synced opportunities {"team":2,"strategies":"lastModified","sync_count":0,"total":0,"last_synced_id":null,"duration_ms":635.09} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [SyncHubspotObjects] Sync finished {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","provider":"hubspot","status":"completed","duration_ms":2129.8,"usage":23740736,"real_usage":65011712,"pid":13878} {"correlation_id":"281cf1ba-d862-4a45-aaf6-26a340bc2bfd","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [SyncHubspotObjects] Starting sync {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","usage":23715400,"real_usage":65011712,"pid":13878} {"correlation_id":"09262b7b-a2e2-41d5-b42b-25f31846d7a8","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.WARNING: [HubSpot] Account not connected for user {"userId":"71e3aac5-fb66-47c5-a236-2d051ae3e319","account":null} {"correlation_id":"09262b7b-a2e2-41d5-b42b-25f31846d7a8","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":256,"team_id":49} {"correlation_id":"09262b7b-a2e2-41d5-b42b-25f31846d7a8","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"09262b7b-a2e2-41d5-b42b-25f31846d7a8","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"09262b7b-a2e2-41d5-b42b-25f31846d7a8","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [SyncHubspotObjects] Sync finished {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","provider":"hubspot","status":"disconnected","duration_ms":51.31,"usage":23689016,"real_usage":65011712,"pid":13878,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"09262b7b-a2e2-41d5-b42b-25f31846d7a8","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","usage":23649656,"real_usage":65011712,"pid":13878} {"correlation_id":"70df60f3-aed6-4daa-a246-71fb82f49d68","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.WARNING: [HubSpot] Account not connected for user {"userId":"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b","account":null} {"correlation_id":"70df60f3-aed6-4daa-a246-71fb82f49d68","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":130,"team_id":42} {"correlation_id":"70df60f3-aed6-4daa-a246-71fb82f49d68","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"70df60f3-aed6-4daa-a246-71fb82f49d68","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"70df60f3-aed6-4daa-a246-71fb82f49d68","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:47] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","provider":"hubspot","status":"disconnected","duration_ms":18.47,"usage":23692568,"real_usage":65011712,"pid":13878,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"70df60f3-aed6-4daa-a246-71fb82f49d68","trace_id":"594c907f-7401-4dd2-8ba1-59e5857f0d4c"}
[2026-04-24 10:26:49] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"42acc0c5-3653-49d1-a44a-19758cc28092","trace_id":"c0b07036-9e27-4742-a009-69972c67bced"}
[2026-04-24 10:26:49] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"42acc0c5-3653-49d1-a44a-19758cc28092","trace_id":"c0b07036-9e27-4742-a009-69972c67bced"}
[2026-04-24 10:26:59] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"55eab912-4003-455b-813c-4e3f8383acc8","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:26:59] local.INFO: [EmailSchedule] STARTING Inbox Sync {"host":"docker_lamp_1"} {"correlation_id":"55eab912-4003-455b-813c-4e3f8383acc8","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:26:59] local.INFO: [EmailSchedule] FINISHED Inbox Sync {"host":"docker_lamp_1","events":2} {"correlation_id":"55eab912-4003-455b-813c-4e3f8383acc8","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:26:59] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"55eab912-4003-455b-813c-4e3f8383acc8","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:27:00] local.INFO: [Sync Mailbox] Sync start {"inbox_id":59} {"correlation_id":"be91dd09-c8e5-4e5d-a1e8-e1cc9979a32f","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:27:00] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {"correlation_id":"be91dd09-c8e5-4e5d-a1e8-e1cc9979a32f","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:27:00] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":59} {"correlation_id":"be91dd09-c8e5-4e5d-a1e8-e1cc9979a32f","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:27:00] local.INFO: [Sync Mailbox] Sync start {"inbox_id":212} {"correlation_id":"da707eb9-3c1d-487e-8c92-1d018e0ca29d","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:27:00] local.WARNING: [Salesforce] Account not connected for user {"userId":"641f1acb-16b8-42d1-8726-df52979dad0e","account":{"Jiminny\\Models\\SocialAccount":{"id":1500,"sociable_id":143,"provider_user_id":"0052g000003frelAAA","expires":null,"refresh_token_expires":null,"provider":"salesforce","state":"full-refresh","auth_scope":"refresh_token web api","retry_after":null,"created_at":"2026-02-06 08:39:03","updated_at":"2026-04-24 06:38:47"}}} {"correlation_id":"da707eb9-3c1d-487e-8c92-1d018e0ca29d","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:27:00] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"da707eb9-3c1d-487e-8c92-1d018e0ca29d","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:27:00] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"da707eb9-3c1d-487e-8c92-1d018e0ca29d","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:27:00] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"da707eb9-3c1d-487e-8c92-1d018e0ca29d","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:27:00] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {"correlation_id":"da707eb9-3c1d-487e-8c92-1d018e0ca29d","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:27:00] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":212} {"correlation_id":"da707eb9-3c1d-487e-8c92-1d018e0ca29d","trace_id":"cf803936-d9cd-4a75-b022-49f4b9a758da"}
[2026-04-24 10:28:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"d1e33635-9ed1-4df1-86f1-8a9fbb4a9aad","trace_id":"c6abf4b5-1c8f-4bdf-a4ee-99e15a883fdc"}
[2026-04-24 10:28:04] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {"correlation_id":"d1e33635-9ed1-4df1-86f1-8a9fbb4a9aad","trace_id":"c6abf4b5-1c8f-4bdf-a4ee-99e15a883fdc"}
[2026-04-24 10:28:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"d1e33635-9ed1-4df1-86f1-8a9fbb4a9aad","trace_id":"c6abf4b5-1c8f-4bdf-a4ee-99e15a883fdc"}
[2026-04-24 10:28:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"62e59e15-b6bd-4952-be03-365a8341880d","trace_id":"ef3bd6bb-ab65-4e80-82cd-5e91b176b702"}
[2026-04-24 10:28:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"62e59e15-b6bd-4952-be03-365a8341880d","trace_id":"ef3bd6bb-ab65-4e80-82cd-5e91b176b702"}
[2026-04-24 10:28:18] local.NOTICE: Monitoring start {"correlation_id":"fde8ab81-2a83-4068-9a10-f407d3a55d8e","trace_id":"5bad50f3-1b72-4f42-82d1-01b230b9c096"}
[2026-04-24 10:28:18] local.NOTICE: Monitoring end {"correlation_id":"fde8ab81-2a83-4068-9a10-f407d3a55d8e","trace_id":"5bad50f3-1b72-4f42-82d1-01b230b9c096"}
[2026-04-24 10:28:25] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"3b9652a6-4242-49c2-a3c5-a0ff70d13469","trace_id":"8a1a2a8c-7fa6-4a35-b189-6165f66e1ae9"}
[2026-04-24 10:28:25] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"3b9652a6-4242-49c2-a3c5-a0ff70d13469","trace_id":"8a1a2a8c-7fa6-4a35-b189-6165f66e1ae9"}
[2026-04-24 10:28:33] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"983ba273-68c0-472a-bd0f-83c4705711a3","trace_id":"382d4d84-d0e5-4f63-96f1-bfb6c0b366ea"}
[2026-04-24 10:28:33] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"983ba273-68c0-472a-bd0f-83c4705711a3","trace_id":"382d4d84-d0e5-4f63-96f1-bfb6c0b366ea"}
[2026-04-24 10:28:33] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"983ba273-68c0-472a-bd0f-83c4705711a3","trace_id":"382d4d84-d0e5-4f63-96f1-bfb6c0b366ea"}
[2026-04-24 10:28:33] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"983ba273-68c0-472a-bd0f-83c4705711a3","trace_id":"382d4d84-d0e5-4f63-96f1-bfb6c0b366ea"}
[2026-04-24 10:28:39] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"26102185-655f-4837-ba5d-ed80e510f81b","trace_id":"8eca9c30-8319-480b-b138-c96d558f3930"}
[2026-04-24 10:28:39] local.INFO: Running conference:monitor:count command for activities in (2026-04-24 10:26:00, 2026-04-24 10:28:00] {"correlation_id":"26102185-655f-4837-ba5d-ed80e510f81b","trace_id":"8eca9c30-8319-480b-b138-c96d558f3930"}
[2026-04-24 10:28:39] local.INFO: [conference:monitor:count] No activities found in (2026-04-24 10:26:00, 2026-04-24 10:28:00] {"correlation_id":"26102185-655f-4837-ba5d-ed80e510f81b","trace_id":"8eca9c30-8319-480b-b138-c96d558f3930"}
[2026-04-24 10:28:39] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"26102185-655f-4837-ba5d-ed80e510f81b","trace_id":"8eca9c30-8319-480b-b138-c96d558f3930"}
[2026-04-24 10:28:45] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"calendar:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454","trace_id":"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27"}
[2026-04-24 10:28:45] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"6daa2a6a-4861-4a83-97d1-720d8627b90c","trace_id":"1a8fc095-aca6-48d5-91f7-775fb9010d5b"}
[2026-04-24 10:28:45] local.NOTICE: Calendar sync start {"correlation_id":"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454","trace_id":"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27"}
[2026-04-24 10:28:46] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"6daa2a6a-4861-4a83-97d1-720d8627b90c","trace_id":"1a8fc095-aca6-48d5-91f7-775fb9010d5b"}
[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1393,"provider":"google"} {"correlation_id":"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454","trace_id":"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27"}
[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Token needs refreshing {"socialAccountId":1393,"provider":"google"} {"correlation_id":"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454","trace_id":"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27"}
[2026-04-24 10:28:46] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454","trace_id":"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27"}
[2026-04-24 10:28:46] local.INFO: [SocialAccountService] Refreshing token from provider {"socialAccountId":1393,"provider":"google","refreshToken":"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf","state":"full-refresh"} {"correlation_id":"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454","trace_id":"3f0ebfa1-5cdd-43d4-8bf2-1836de106d27"}
[2026-04-24 10:28:46] local.ERROR: [SocialAccountService] Failed to refresh token {"socialAccountId":1393,"provider":"google","responseBody":{"error":"invalid_grant","error_description":"Account has been deleted"}} {"correlation_id":"b9d8fda5-07a8-4e2e-aed6-dfc9e429c454","trace_i...
|
78836
|
|
52568
|
1137
|
42
|
2026-04-20T07:22:50.721473+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-20/1776 /Users/lukas/.screenpipe/data/data/2026-04-20/1776669770721_m2.jpg...
|
Firefox
|
fix(security): composer dependency updates – 2026- fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app — Work...
|
True
|
github.com/jiminny/app/pull/11970
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Platform Sprint 2 Q2 - Platform Team - Scrum Board Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira
[SRD-6793] Les Mills activity types not pulling in - Jira
[SRD-6793] Les Mills activity types not pulling in - Jira
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app
JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app
[JY-20543] AJ Reports > Tracking - Jira
[JY-20543] AJ Reports > Tracking - Jira
[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira
[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira
Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app
Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app
New Tab
New Tab
Product Growth Platform | Userpilot
Product Growth Platform | Userpilot
Userpilot | Events
Userpilot | Events
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Close bookmarks (⌘B)
Bookmarks
Bookmarks
Close sidebar
Search bookmarks
Skip to content
Skip to content
Open menu
Homepage (g then d)
jiminny
jiminny
app
app
Search or jump to…
Type
/
to search
Chat with Copilot
Open Copilot…
Create new...
Issues(g then i)
Pull requests
Repositories
You have unread notifications(g then n)
Open user navigation menu
Repository navigation
Repository navigation
Code
Code
Pull requests (32)
Pull requests
(
32
)
Agents
Agents
Actions
Actions
Wiki
Wiki
Security and quality (28)
Security and quality
(
28
)
Insights
Insights
Settings
Settings
Important update
Important update
On April 24 we'll start using GitHub Copilot interaction data for AI model training unless you opt out.
Review this update
Review this update
and manage your preferences in your
GitHub account settings
GitHub account settings
.
Dismiss banner
fix(security): composer dependency updates – 2026-04-15 #11970 Edit title
fix(security): composer dependency updates – 2026-04-15
#
11970
Edit title
Ready to merge
Ready to merge
Code
Code
Open
github-actions[bot]
github-actions[bot]
wants to merge 1 commit into
master
master
from
secfix/composer-20260415
secfix/composer-20260415
Copy head branch name to clipboard
Lines changed: 23 additions & 23 deletions
Conversation (3)
Conversation
(
3
)
Commits (1)
Commits
(
1
)
Checks (6)
Checks
(
6
)
Files changed (1)
Files changed
(
1
)
Open
fix(security): composer dependency updates – 2026-04-15 #11970 github-actions[bot] wants to merge 1 commit into master from secfix/composer-20260415 Copy head branch name to clipboard
fix(security): composer dependency updates – 2026-04-15
fix(security): composer dependency updates – 2026-04-15
#
11970
github-actions[bot]
github-actions[bot]
wants to merge 1 commit into
master
master
from
secfix/composer-20260415
secfix/composer-20260415
Copy head branch name to clipboard
Conversation
Conversation
@github-actions
Show options
github-actions bot commented 5 days ago •
github-actions
github-actions
bot
commented
5 days ago
5 days ago
•
edited
edited
Security dependency updates — composer — 2026-04-15
Security dependency updates — composer — 2026-04-15
This PR was opened automatically by the secfix bot. For this ecosystem, one commit carries every dependency upgrade from this run; see
Fixed alerts
below.
CI run logs →
CI run logs →
Upgrade safety (changelog review)
Upgrade safety (changelog review)
Overall verdict:
Mixed
— All previously-actionable alerts were fixed as safe patch/minor bumps. Alert
#463
#463
(phpunit/phpunit) is listed under
Skipped alerts
: the patched version (12.5.22) requires a major version jump from 11.x that includes documented breaking API removals and requires manual migration.
This does not replace CI, tests, or manual smoke checks before merge.
Fixed alerts
Fixed alerts
Alert
Package
Severity
CVE
Patched version
Changelog
Notes
#457
#457
laravel/passport
high
CVE-2026-39976
CVE-2026-39976
13.7.1
releases
releases
Breaking-change risk:
none observed (patch/minor). Bumped from v13.6.0 to v13.7.4 via
composer update
.
#434
#434
google/protobuf
high
CVE-2026-6409
CVE-2026-6409
4.33.6
releases
releases
Breaking-change risk:
none observed (patch/minor). Transitive dep; bumped from v4.33.5 to v4.33.6 via
composer update
.
#425
#425
phpseclib/phpseclib
high
CVE-2026-32935
CVE-2026-32935
3.0.50
releases
releases
Breaking-change risk:
none observed (patch/minor). Bumped from 3.0.49 to 3.0.51 (also
fixes
#454).
#429
#429
league/commonmark
medium
CVE-2026-33347
CVE-2026-33347
2.8.2
releases
releases
Breaking-change risk:
none observed (patch/minor). Transitive dep (via laravel/framework); bumped from 2.8.1 to 2.8.2 via
composer update
.
#454
#454
phpseclib/phpseclib
low
CVE-2026-40194
CVE-2026-40194
3.0.51
releases
releases
Breaking-change risk:
none observed (patch/minor). Covered by bump to 3.0.51 (also
fixes
#425).
Alert
#457
#457
#434
#434
#425
#425
#429
#429
#454
#454
Package
laravel/passport
google/protobuf
phpseclib/phpseclib
league/commonmark
phpseclib/phpseclib
Severity
high
high
high
medium
low
CVE
CVE-2026-39976
CVE-2026-39976
CVE-2026-6409
CVE-2026-6409
CVE-2026-32935
CVE-2026-32935...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira","depth":4,"bounds":{"left":0.0018284575,"top":0.0518755,"width":0.07596409,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"[SRD-6793] Les Mills activity types not pulling in - Jira","depth":4,"bounds":{"left":0.0,"top":0.09497207,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[SRD-6793] Les Mills activity types not pulling in - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.10614525,"width":0.09524601,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.12769353,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.13886672,"width":0.19963431,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.16041501,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.17158818,"width":0.15525267,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20543] AJ Reports > Tracking - Jira","depth":4,"bounds":{"left":0.0,"top":0.19313647,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20543] AJ Reports > Tracking - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.20430966,"width":0.06981383,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira","depth":4,"bounds":{"left":0.0,"top":0.22585794,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.23703113,"width":0.10688165,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.2585794,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.2697526,"width":0.12915559,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"bounds":{"left":0.0,"top":0.29130086,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"bounds":{"left":0.013297873,"top":0.30247405,"width":0.014960106,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Product Growth Platform | Userpilot","depth":4,"bounds":{"left":0.0,"top":0.32402235,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Product Growth Platform | Userpilot","depth":5,"bounds":{"left":0.013297873,"top":0.33519554,"width":0.06200133,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Userpilot | Events","depth":4,"bounds":{"left":0.0,"top":0.3567438,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Userpilot | Events","depth":5,"bounds":{"left":0.013297873,"top":0.367917,"width":0.030418882,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.38946527,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.40063846,"width":0.2052859,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.06732048,"top":0.39664805,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"New Tab","depth":4,"bounds":{"left":0.0028257978,"top":0.4237829,"width":0.07413564,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"bounds":{"left":0.0028257978,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"bounds":{"left":0.013796543,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Tabs from other devices","depth":6,"bounds":{"left":0.024933511,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"bounds":{"left":0.036070477,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Close bookmarks (⌘B)","depth":6,"bounds":{"left":0.04720745,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Bookmarks","depth":5,"bounds":{"left":0.083277926,"top":0.06943336,"width":0.026761968,"height":0.014764565},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Bookmarks","depth":6,"bounds":{"left":0.083277926,"top":0.06943336,"width":0.026761968,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close sidebar","depth":6,"bounds":{"left":0.1783577,"top":0.06424581,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXTextField","text":"Search bookmarks","depth":7,"bounds":{"left":0.082446806,"top":0.09976058,"width":0.107546546,"height":0.025538707},"help_text":"","role_description":"search text field","subrole":"AXSearchField","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Skip to content","depth":6,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to content","depth":7,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Open menu","depth":10,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Homepage (g then d)","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"jiminny","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"jiminny","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"app","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"app","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Search or jump to…","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Type","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"to search","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Chat with Copilot","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXMenuButton","text":"Open Copilot…","depth":9,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXMenuButton","text":"Create new...","depth":9,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Issues(g then i)","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Pull requests","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Repositories","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"You have unread notifications(g then n)","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Open user navigation menu","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Repository navigation","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Repository navigation","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Code","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Code","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Pull requests (32)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pull requests","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"32","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Agents","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Agents","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Actions","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Actions","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wiki","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Wiki","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Security and quality (28)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Security and quality","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"28","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Insights","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Insights","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Settings","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Settings","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Important update","depth":10,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Important update","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"On April 24 we'll start using GitHub Copilot interaction data for AI model training unless you opt out.","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Review this update","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Review this update","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"and manage your preferences in your","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"GitHub account settings","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GitHub account settings","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Dismiss banner","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"fix(security): composer dependency updates – 2026-04-15 #11970 Edit title","depth":13,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"fix(security): composer dependency updates – 2026-04-15","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"#","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11970","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Edit title","depth":14,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Ready to merge","depth":13,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ready to merge","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Code","depth":13,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Code","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Open","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"github-actions[bot]","depth":15,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"github-actions[bot]","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"wants to merge 1 commit into","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"master","depth":15,"role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"master","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"from","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"secfix/composer-20260415","depth":16,"role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"secfix/composer-20260415","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy head branch name to clipboard","depth":16,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Lines changed: 23 additions & 23 deletions","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Conversation (3)","depth":16,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Conversation","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Commits (1)","depth":16,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Commits","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Checks (6)","depth":16,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Checks","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Files changed (1)","depth":16,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Files changed","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Open","depth":14,"bounds":{"left":0.40641624,"top":0.0726257,"width":0.011968086,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"fix(security): composer dependency updates – 2026-04-15 #11970 github-actions[bot] wants to merge 1 commit into master from secfix/composer-20260415 Copy head branch name to clipboard","depth":14,"bounds":{"left":0.42503324,"top":0.058260176,"width":0.20162898,"height":0.042298485},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"fix(security): composer dependency updates – 2026-04-15","depth":16,"bounds":{"left":0.42503324,"top":0.05865922,"width":0.13397606,"height":0.01915403},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"fix(security): composer dependency updates – 2026-04-15","depth":17,"bounds":{"left":0.42503324,"top":0.06304868,"width":0.13397606,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"#","depth":16,"bounds":{"left":0.5616689,"top":0.06304868,"width":0.0028257978,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11970","depth":16,"bounds":{"left":0.56449467,"top":0.06304868,"width":0.012466756,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"github-actions[bot]","depth":18,"bounds":{"left":0.42503324,"top":0.08339984,"width":0.03873005,"height":0.011971269},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"github-actions[bot]","depth":19,"bounds":{"left":0.42503324,"top":0.08339984,"width":0.03873005,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"wants to merge 1 commit into","depth":18,"bounds":{"left":0.46509308,"top":0.08339984,"width":0.055352394,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"master","depth":18,"bounds":{"left":0.52177525,"top":0.08180367,"width":0.018284574,"height":0.015163607},"role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"master","depth":19,"bounds":{"left":0.52377,"top":0.083798885,"width":0.014295213,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"from","depth":19,"bounds":{"left":0.54138964,"top":0.08339984,"width":0.00880984,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"secfix/composer-20260415","depth":19,"bounds":{"left":0.5515292,"top":0.08180367,"width":0.061502658,"height":0.015163607},"role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"secfix/composer-20260415","depth":20,"bounds":{"left":0.55352396,"top":0.083798885,"width":0.057513297,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy head branch name to clipboard","depth":19,"bounds":{"left":0.6143617,"top":0.07821229,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Conversation","depth":12,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Conversation","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"@github-actions","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Show options","depth":15,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"github-actions bot commented 5 days ago •","depth":14,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"github-actions","depth":16,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"github-actions","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"bot","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"commented","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"5 days ago","depth":15,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"5 days ago","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"•","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"edited","depth":17,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"edited","depth":19,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Security dependency updates — composer — 2026-04-15","depth":16,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Security dependency updates — composer — 2026-04-15","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"This PR was opened automatically by the secfix bot. For this ecosystem, one commit carries every dependency upgrade from this run; see","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Fixed alerts","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"below.","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"CI run logs →","depth":17,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CI run logs →","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Upgrade safety (changelog review)","depth":16,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Upgrade safety (changelog review)","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Overall verdict:","depth":18,"bounds":{"left":0.42004654,"top":0.0,"width":0.034075797,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Mixed","depth":18,"bounds":{"left":0.4554521,"top":0.0,"width":0.013464096,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"— All previously-actionable alerts were fixed as safe patch/minor bumps. Alert","depth":17,"bounds":{"left":0.46891624,"top":0.0,"width":0.16988032,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"#463","depth":17,"bounds":{"left":0.63879657,"top":0.0,"width":0.011635638,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"#463","depth":18,"bounds":{"left":0.63879657,"top":0.0,"width":0.011635638,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(phpunit/phpunit) is listed under","depth":17,"bounds":{"left":0.42004654,"top":0.0,"width":0.25116357,"height":0.030327214},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Skipped alerts","depth":18,"bounds":{"left":0.4709109,"top":0.0,"width":0.032413565,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":": the patched version (12.5.22) requires a major version jump from 11.x that includes documented breaking API removals and requires manual migration.","depth":17,"bounds":{"left":0.42004654,"top":0.0,"width":0.2435173,"height":0.030327214},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"This does not replace CI, tests, or manual smoke checks before merge.","depth":18,"bounds":{"left":0.42004654,"top":0.0,"width":0.2534907,"height":0.030327214},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Fixed alerts","depth":16,"bounds":{"left":0.42004654,"top":0.0047885077,"width":0.25731382,"height":0.017557861},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Fixed alerts","depth":17,"bounds":{"left":0.42004654,"top":0.00518755,"width":0.031416222,"height":0.016759777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Alert","depth":20,"bounds":{"left":0.42486703,"top":0.050678372,"width":0.010970744,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Package","depth":20,"bounds":{"left":0.4509641,"top":0.050678372,"width":0.018949468,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Severity","depth":20,"bounds":{"left":0.48470744,"top":0.050678372,"width":0.018450798,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CVE","depth":20,"bounds":{"left":0.5270944,"top":0.050678372,"width":0.009474734,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Patched version","depth":20,"bounds":{"left":0.5611702,"top":0.042298485,"width":0.018450798,"height":0.030327214},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Changelog","depth":20,"bounds":{"left":0.5894282,"top":0.050678372,"width":0.024102394,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Notes","depth":20,"bounds":{"left":0.6409575,"top":0.050678372,"width":0.013297873,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"#457","depth":20,"bounds":{"left":0.4247008,"top":0.11971269,"width":0.011469414,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"#457","depth":21,"bounds":{"left":0.4247008,"top":0.11971269,"width":0.011469414,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"laravel/passport","depth":20,"bounds":{"left":0.44514626,"top":0.111332804,"width":0.018949468,"height":0.030327214},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"high","depth":20,"bounds":{"left":0.48470744,"top":0.11971269,"width":0.00930851,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"CVE-2026-39976","depth":20,"bounds":{"left":0.5121343,"top":0.11971269,"width":0.03939495,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CVE-2026-39976","depth":21,"bounds":{"left":0.5121343,"top":0.11971269,"width":0.03939495,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13.7.1","depth":20,"bounds":{"left":0.56050533,"top":0.11971269,"width":0.01412899,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"releases","depth":20,"bounds":{"left":0.5894282,"top":0.11971269,"width":0.017785905,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"releases","depth":21,"bounds":{"left":0.5894282,"top":0.11971269,"width":0.017785905,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Breaking-change risk:","depth":21,"bounds":{"left":0.6225067,"top":0.08619314,"width":0.049534574,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"none observed (patch/minor). Bumped from v13.6.0 to v13.7.4 via","depth":20,"bounds":{"left":0.6225067,"top":0.10295291,"width":0.048537236,"height":0.04708699},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"composer update","depth":21,"bounds":{"left":0.6241689,"top":0.15522745,"width":0.035738032,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":20,"bounds":{"left":0.66140294,"top":0.15323225,"width":0.0013297872,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"#434","depth":20,"bounds":{"left":0.4247008,"top":0.22226655,"width":0.011469414,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"#434","depth":21,"bounds":{"left":0.4247008,"top":0.22226655,"width":0.011469414,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"google/protobuf","depth":20,"bounds":{"left":0.44514626,"top":0.21388668,"width":0.01861702,"height":0.030327214},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"high","depth":20,"bounds":{"left":0.48470744,"top":0.22226655,"width":0.00930851,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"CVE-2026-6409","depth":20,"bounds":{"left":0.5121343,"top":0.22226655,"width":0.036402926,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CVE-2026-6409","depth":21,"bounds":{"left":0.5121343,"top":0.22226655,"width":0.036402926,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"4.33.6","depth":20,"bounds":{"left":0.56050533,"top":0.22226655,"width":0.01412899,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"releases","depth":20,"bounds":{"left":0.5894282,"top":0.22226655,"width":0.017785905,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"releases","depth":21,"bounds":{"left":0.5894282,"top":0.22226655,"width":0.017785905,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Breaking-change risk:","depth":21,"bounds":{"left":0.6225067,"top":0.18036711,"width":0.049534574,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"none observed (patch/minor). Transitive dep; bumped from v4.33.5 to v4.33.6 via","depth":20,"bounds":{"left":0.6225067,"top":0.1971269,"width":0.048537236,"height":0.06384677},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"composer update","depth":21,"bounds":{"left":0.6241689,"top":0.2661612,"width":0.035738032,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":20,"bounds":{"left":0.66140294,"top":0.264166,"width":0.0013297872,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"#425","depth":20,"bounds":{"left":0.4247008,"top":0.32482043,"width":0.011469414,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"#425","depth":21,"bounds":{"left":0.4247008,"top":0.32482043,"width":0.011469414,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"phpseclib/phpseclib","depth":20,"bounds":{"left":0.44514626,"top":0.31644055,"width":0.022273935,"height":0.030327214},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"high","depth":20,"bounds":{"left":0.48470744,"top":0.32482043,"width":0.00930851,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"CVE-2026-32935","depth":20,"bounds":{"left":0.5121343,"top":0.32482043,"width":0.03939495,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CVE-2026-32935","depth":21,"bounds":{"left":0.5121343,"top":0.32482043,"width":0.03939495,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.0.50","depth":20,"bounds":{"left":0.56050533,"top":0.32482043,"width":0.01412899,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"releases","depth":20,"bounds":{"left":0.5894282,"top":0.32482043,"width":0.017785905,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"releases","depth":21,"bounds":{"left":0.5894282,"top":0.32482043,"width":0.017785905,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Breaking-change risk:","depth":21,"bounds":{"left":0.6225067,"top":0.29130086,"width":0.049534574,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"none observed (patch/minor). Bumped from 3.0.49 to 3.0.51 (also","depth":20,"bounds":{"left":0.6225067,"top":0.30806065,"width":0.048537236,"height":0.04708699},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"fixes","depth":21,"bounds":{"left":0.6225067,"top":0.35834,"width":0.009973404,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"#454).","depth":20,"bounds":{"left":0.63248,"top":0.35834,"width":0.015957447,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"#429","depth":20,"bounds":{"left":0.4247008,"top":0.43575418,"width":0.011469414,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"#429","depth":21,"bounds":{"left":0.4247008,"top":0.43575418,"width":0.011469414,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"league/commonmark","depth":20,"bounds":{"left":0.44514626,"top":0.4273743,"width":0.02925532,"height":0.030327214},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"medium","depth":20,"bounds":{"left":0.48470744,"top":0.43575418,"width":0.017287234,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"CVE-2026-33347","depth":20,"bounds":{"left":0.5121343,"top":0.43575418,"width":0.03939495,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CVE-2026-33347","depth":21,"bounds":{"left":0.5121343,"top":0.43575418,"width":0.03939495,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2.8.2","depth":20,"bounds":{"left":0.56050533,"top":0.43575418,"width":0.011303191,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"releases","depth":20,"bounds":{"left":0.5894282,"top":0.43575418,"width":0.017785905,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"releases","depth":21,"bounds":{"left":0.5894282,"top":0.43575418,"width":0.017785905,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Breaking-change risk:","depth":21,"bounds":{"left":0.6225067,"top":0.38547486,"width":0.049534574,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"none observed (patch/minor). Transitive dep (via laravel/framework); bumped from 2.8.1 to 2.8.2 via","depth":20,"bounds":{"left":0.6225067,"top":0.40223464,"width":0.048537236,"height":0.08060654},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"composer update","depth":21,"bounds":{"left":0.6241689,"top":0.48802873,"width":0.035738032,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":20,"bounds":{"left":0.66140294,"top":0.48603353,"width":0.0013297872,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"#454","depth":20,"bounds":{"left":0.4247008,"top":0.54668796,"width":0.011469414,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"#454","depth":21,"bounds":{"left":0.4247008,"top":0.54668796,"width":0.011469414,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"phpseclib/phpseclib","depth":20,"bounds":{"left":0.44514626,"top":0.5383081,"width":0.022273935,"height":0.030327214},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"low","depth":20,"bounds":{"left":0.48470744,"top":0.54668796,"width":0.00731383,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"CVE-2026-40194","depth":20,"bounds":{"left":0.5121343,"top":0.54668796,"width":0.03939495,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CVE-2026-40194","depth":21,"bounds":{"left":0.5121343,"top":0.54668796,"width":0.03939495,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.0.51","depth":20,"bounds":{"left":0.56050533,"top":0.54668796,"width":0.01412899,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"releases","depth":20,"bounds":{"left":0.5894282,"top":0.54668796,"width":0.017785905,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"releases","depth":21,"bounds":{"left":0.5894282,"top":0.54668796,"width":0.017785905,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Breaking-change risk:","depth":21,"bounds":{"left":0.6225067,"top":0.5131684,"width":0.049534574,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"none observed (patch/minor). Covered by bump to 3.0.51 (also","depth":20,"bounds":{"left":0.6225067,"top":0.52992815,"width":0.048537236,"height":0.04708699},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"fixes","depth":21,"bounds":{"left":0.6225067,"top":0.5802075,"width":0.009973404,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"#425).","depth":20,"bounds":{"left":0.63248,"top":0.5802075,"width":0.015957447,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Alert","depth":20,"bounds":{"left":0.42486703,"top":0.050678372,"width":0.010970744,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"#457","depth":20,"bounds":{"left":0.4247008,"top":0.11971269,"width":0.011469414,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"#457","depth":21,"bounds":{"left":0.4247008,"top":0.11971269,"width":0.011469414,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"#434","depth":20,"bounds":{"left":0.4247008,"top":0.22226655,"width":0.011469414,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"#434","depth":21,"bounds":{"left":0.4247008,"top":0.22226655,"width":0.011469414,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"#425","depth":20,"bounds":{"left":0.4247008,"top":0.32482043,"width":0.011469414,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"#425","depth":21,"bounds":{"left":0.4247008,"top":0.32482043,"width":0.011469414,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"#429","depth":20,"bounds":{"left":0.4247008,"top":0.43575418,"width":0.011469414,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"#429","depth":21,"bounds":{"left":0.4247008,"top":0.43575418,"width":0.011469414,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"#454","depth":20,"bounds":{"left":0.4247008,"top":0.54668796,"width":0.011469414,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"#454","depth":21,"bounds":{"left":0.4247008,"top":0.54668796,"width":0.011469414,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Package","depth":20,"bounds":{"left":0.4509641,"top":0.050678372,"width":0.018949468,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"laravel/passport","depth":20,"bounds":{"left":0.44514626,"top":0.111332804,"width":0.018949468,"height":0.030327214},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"google/protobuf","depth":20,"bounds":{"left":0.44514626,"top":0.21388668,"width":0.01861702,"height":0.030327214},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"phpseclib/phpseclib","depth":20,"bounds":{"left":0.44514626,"top":0.31644055,"width":0.022273935,"height":0.030327214},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"league/commonmark","depth":20,"bounds":{"left":0.44514626,"top":0.4273743,"width":0.02925532,"height":0.030327214},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"phpseclib/phpseclib","depth":20,"bounds":{"left":0.44514626,"top":0.5383081,"width":0.022273935,"height":0.030327214},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Severity","depth":20,"bounds":{"left":0.48470744,"top":0.050678372,"width":0.018450798,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"high","depth":20,"bounds":{"left":0.48470744,"top":0.11971269,"width":0.00930851,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"high","depth":20,"bounds":{"left":0.48470744,"top":0.22226655,"width":0.00930851,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"high","depth":20,"bounds":{"left":0.48470744,"top":0.32482043,"width":0.00930851,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"medium","depth":20,"bounds":{"left":0.48470744,"top":0.43575418,"width":0.017287234,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"low","depth":20,"bounds":{"left":0.48470744,"top":0.54668796,"width":0.00731383,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CVE","depth":20,"bounds":{"left":0.5270944,"top":0.050678372,"width":0.009474734,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"CVE-2026-39976","depth":20,"bounds":{"left":0.5121343,"top":0.11971269,"width":0.03939495,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CVE-2026-39976","depth":21,"bounds":{"left":0.5121343,"top":0.11971269,"width":0.03939495,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"CVE-2026-6409","depth":20,"bounds":{"left":0.5121343,"top":0.22226655,"width":0.036402926,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CVE-2026-6409","depth":21,"bounds":{"left":0.5121343,"top":0.22226655,"width":0.036402926,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"CVE-2026-32935","depth":20,"bounds":{"left":0.5121343,"top":0.32482043,"width":0.03939495,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CVE-2026-32935","depth":21,"bounds":{"left":0.5121343,"top":0.32482043,"width":0.03939495,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
8409162413310818289
|
8127894044931927474
|
click
|
accessibility
|
NULL
|
Platform Sprint 2 Q2 - Platform Team - Scrum Board Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira
[SRD-6793] Les Mills activity types not pulling in - Jira
[SRD-6793] Les Mills activity types not pulling in - Jira
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app
JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app
[JY-20543] AJ Reports > Tracking - Jira
[JY-20543] AJ Reports > Tracking - Jira
[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira
[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira
Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app
Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app
New Tab
New Tab
Product Growth Platform | Userpilot
Product Growth Platform | Userpilot
Userpilot | Events
Userpilot | Events
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Close bookmarks (⌘B)
Bookmarks
Bookmarks
Close sidebar
Search bookmarks
Skip to content
Skip to content
Open menu
Homepage (g then d)
jiminny
jiminny
app
app
Search or jump to…
Type
/
to search
Chat with Copilot
Open Copilot…
Create new...
Issues(g then i)
Pull requests
Repositories
You have unread notifications(g then n)
Open user navigation menu
Repository navigation
Repository navigation
Code
Code
Pull requests (32)
Pull requests
(
32
)
Agents
Agents
Actions
Actions
Wiki
Wiki
Security and quality (28)
Security and quality
(
28
)
Insights
Insights
Settings
Settings
Important update
Important update
On April 24 we'll start using GitHub Copilot interaction data for AI model training unless you opt out.
Review this update
Review this update
and manage your preferences in your
GitHub account settings
GitHub account settings
.
Dismiss banner
fix(security): composer dependency updates – 2026-04-15 #11970 Edit title
fix(security): composer dependency updates – 2026-04-15
#
11970
Edit title
Ready to merge
Ready to merge
Code
Code
Open
github-actions[bot]
github-actions[bot]
wants to merge 1 commit into
master
master
from
secfix/composer-20260415
secfix/composer-20260415
Copy head branch name to clipboard
Lines changed: 23 additions & 23 deletions
Conversation (3)
Conversation
(
3
)
Commits (1)
Commits
(
1
)
Checks (6)
Checks
(
6
)
Files changed (1)
Files changed
(
1
)
Open
fix(security): composer dependency updates – 2026-04-15 #11970 github-actions[bot] wants to merge 1 commit into master from secfix/composer-20260415 Copy head branch name to clipboard
fix(security): composer dependency updates – 2026-04-15
fix(security): composer dependency updates – 2026-04-15
#
11970
github-actions[bot]
github-actions[bot]
wants to merge 1 commit into
master
master
from
secfix/composer-20260415
secfix/composer-20260415
Copy head branch name to clipboard
Conversation
Conversation
@github-actions
Show options
github-actions bot commented 5 days ago •
github-actions
github-actions
bot
commented
5 days ago
5 days ago
•
edited
edited
Security dependency updates — composer — 2026-04-15
Security dependency updates — composer — 2026-04-15
This PR was opened automatically by the secfix bot. For this ecosystem, one commit carries every dependency upgrade from this run; see
Fixed alerts
below.
CI run logs →
CI run logs →
Upgrade safety (changelog review)
Upgrade safety (changelog review)
Overall verdict:
Mixed
— All previously-actionable alerts were fixed as safe patch/minor bumps. Alert
#463
#463
(phpunit/phpunit) is listed under
Skipped alerts
: the patched version (12.5.22) requires a major version jump from 11.x that includes documented breaking API removals and requires manual migration.
This does not replace CI, tests, or manual smoke checks before merge.
Fixed alerts
Fixed alerts
Alert
Package
Severity
CVE
Patched version
Changelog
Notes
#457
#457
laravel/passport
high
CVE-2026-39976
CVE-2026-39976
13.7.1
releases
releases
Breaking-change risk:
none observed (patch/minor). Bumped from v13.6.0 to v13.7.4 via
composer update
.
#434
#434
google/protobuf
high
CVE-2026-6409
CVE-2026-6409
4.33.6
releases
releases
Breaking-change risk:
none observed (patch/minor). Transitive dep; bumped from v4.33.5 to v4.33.6 via
composer update
.
#425
#425
phpseclib/phpseclib
high
CVE-2026-32935
CVE-2026-32935
3.0.50
releases
releases
Breaking-change risk:
none observed (patch/minor). Bumped from 3.0.49 to 3.0.51 (also
fixes
#454).
#429
#429
league/commonmark
medium
CVE-2026-33347
CVE-2026-33347
2.8.2
releases
releases
Breaking-change risk:
none observed (patch/minor). Transitive dep (via laravel/framework); bumped from 2.8.1 to 2.8.2 via
composer update
.
#454
#454
phpseclib/phpseclib
low
CVE-2026-40194
CVE-2026-40194
3.0.51
releases
releases
Breaking-change risk:
none observed (patch/minor). Covered by bump to 3.0.51 (also
fixes
#425).
Alert
#457
#457
#434
#434
#425
#425
#429
#429
#454
#454
Package
laravel/passport
google/protobuf
phpseclib/phpseclib
league/commonmark
phpseclib/phpseclib
Severity
high
high
high
medium
low
CVE
CVE-2026-39976
CVE-2026-39976
CVE-2026-6409
CVE-2026-6409
CVE-2026-32935
CVE-2026-32935...
|
NULL
|
|
55255
|
1192
|
38
|
2026-04-20T09:40:20.383886+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-20/1776 /Users/lukas/.screenpipe/data/data/2026-04-20/1776678020383_m2.jpg...
|
Firefox
|
JY-20553 | Improve crm-sync delays by yalokin-jimi JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app — Work...
|
True
|
github.com/jiminny/app/pull/11976
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Platform Sprint 2 Q2 - Platform Team - Scrum Board Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira
JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app
JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app
Close tab
[SRD-6793] Les Mills activity types not pulling in - Jira
[SRD-6793] Les Mills activity types not pulling in - Jira
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app
JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app
[JY-20543] AJ Reports > Tracking - Jira
[JY-20543] AJ Reports > Tracking - Jira
[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira
[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira
Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app
Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app
New Tab
New Tab
Product Growth Platform | Userpilot
Product Growth Platform | Userpilot
Userpilot | Logged-activity
Userpilot | Logged-activity
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
Jiminny
Jiminny
Jiminny
Jiminny
Jiminny
Jiminny
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
Skip to content
Skip to content
Open menu
Homepage (g then d)
jiminny
jiminny
app
app
Search or jump to…
Type
/
to search
Chat with Copilot
Open Copilot…
Create new...
Issues(g then i)
Pull requests
Repositories
You have unread notifications(g then n)
Open user navigation menu
Repository navigation
Repository navigation
Code
Code
Pull requests (31)
Pull requests
(
31
)
Agents
Agents
Actions
Actions
Wiki
Wiki
Security and quality (22)
Security and quality
(
22
)
Insights
Insights
Settings
Settings
Important update
Important update
On April 24 we'll start using GitHub Copilot interaction data for AI model training unless you opt out.
Review this update
Review this update
and manage your preferences in your
GitHub account settings
GitHub account settings
.
Dismiss banner
Review requested
Review requested
yalokin-jiminny
yalokin-jiminny
requested your review on this pull request.
Add your review
Add your review
JY-20553 | Improve crm-sync delays #11976 Edit title
JY-20553 | Improve crm-sync delays
#
11976
Edit title
Checks pending
Checks pending
Code
Code
Open
yalokin-jiminny
yalokin-jiminny
wants to merge 21 commits into
master
master
from
JY-20553-debug-crm-sync-delays
JY-20553-debug-crm-sync-delays
Copy head branch name to clipboard
Lines changed: 907 additions & 132 deletions...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira","depth":4,"bounds":{"left":0.0018284575,"top":0.0518755,"width":0.07596409,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.09497207,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.10614525,"width":0.15774602,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.06732048,"top":0.10215483,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"[SRD-6793] Les Mills activity types not pulling in - Jira","depth":4,"bounds":{"left":0.0,"top":0.12769353,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[SRD-6793] Les Mills activity types not pulling in - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.13886672,"width":0.09524601,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.16041501,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.17158818,"width":0.19963431,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.19313647,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.20430966,"width":0.15525267,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20543] AJ Reports > Tracking - Jira","depth":4,"bounds":{"left":0.0,"top":0.22585794,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20543] AJ Reports > Tracking - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.23703113,"width":0.06981383,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira","depth":4,"bounds":{"left":0.0,"top":0.2585794,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.2697526,"width":0.10688165,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.29130086,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.30247405,"width":0.12915559,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"bounds":{"left":0.0,"top":0.32402235,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"bounds":{"left":0.013297873,"top":0.33519554,"width":0.014960106,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Product Growth Platform | Userpilot","depth":4,"bounds":{"left":0.0,"top":0.3567438,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Product Growth Platform | Userpilot","depth":5,"bounds":{"left":0.013297873,"top":0.367917,"width":0.06200133,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Userpilot | Logged-activity","depth":4,"bounds":{"left":0.0,"top":0.38946527,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Userpilot | Logged-activity","depth":5,"bounds":{"left":0.013297873,"top":0.40063846,"width":0.04637633,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.42218676,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.43335995,"width":0.2052859,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipelines - jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.45490822,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pipelines - jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.4660814,"width":0.039228722,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Feed — jiminny — Sentry","depth":4,"bounds":{"left":0.0,"top":0.48762968,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Feed — jiminny — Sentry","depth":5,"bounds":{"left":0.013297873,"top":0.49880287,"width":0.042719416,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.5203512,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.53152436,"width":0.2052859,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny","depth":4,"bounds":{"left":0.0,"top":0.55307263,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny","depth":5,"bounds":{"left":0.013297873,"top":0.5642458,"width":0.013131649,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny","depth":4,"bounds":{"left":0.0,"top":0.5857941,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny","depth":5,"bounds":{"left":0.013297873,"top":0.5969673,"width":0.013131649,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny","depth":4,"bounds":{"left":0.0,"top":0.61851555,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny","depth":5,"bounds":{"left":0.013297873,"top":0.62968874,"width":0.013131649,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"bounds":{"left":0.0028257978,"top":0.6528332,"width":0.07413564,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"bounds":{"left":0.0028257978,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"bounds":{"left":0.013796543,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Tabs from other devices","depth":6,"bounds":{"left":0.024933511,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"bounds":{"left":0.036070477,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"bounds":{"left":0.04720745,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Skip to content","depth":6,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to content","depth":7,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Open menu","depth":10,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Homepage (g then d)","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"jiminny","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"jiminny","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"app","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"app","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Search or jump to…","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Type","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"to search","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Chat with Copilot","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXMenuButton","text":"Open Copilot…","depth":9,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXMenuButton","text":"Create new...","depth":9,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Issues(g then i)","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Pull requests","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Repositories","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"You have unread notifications(g then n)","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Open user navigation menu","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Repository navigation","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Repository navigation","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Code","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Code","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Pull requests (31)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pull requests","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"31","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Agents","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Agents","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Actions","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Actions","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wiki","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Wiki","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Security and quality (22)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Security and quality","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"22","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Insights","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Insights","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Settings","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Settings","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Important update","depth":10,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Important update","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"On April 24 we'll start using GitHub Copilot interaction data for AI model training unless you opt out.","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Review this update","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Review this update","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"and manage your preferences in your","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"GitHub account settings","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GitHub account settings","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Dismiss banner","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Review requested","depth":15,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Review requested","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"yalokin-jiminny","depth":15,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"yalokin-jiminny","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"requested your review on this pull request.","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Add your review","depth":14,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add your review","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"JY-20553 | Improve crm-sync delays #11976 Edit title","depth":13,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"JY-20553 | Improve crm-sync delays","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"#","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11976","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Edit title","depth":14,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Checks pending","depth":13,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Checks pending","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Code","depth":13,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Code","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Open","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"yalokin-jiminny","depth":15,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"yalokin-jiminny","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"wants to merge 21 commits into","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"master","depth":15,"role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"master","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"from","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20553-debug-crm-sync-delays","depth":16,"role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20553-debug-crm-sync-delays","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy head branch name to clipboard","depth":16,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Lines changed: 907 additions & 132 deletions","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
8409064556178390195
|
-3295380380748716244
|
visual_change
|
accessibility
|
NULL
|
Platform Sprint 2 Q2 - Platform Team - Scrum Board Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira
JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app
JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app
Close tab
[SRD-6793] Les Mills activity types not pulling in - Jira
[SRD-6793] Les Mills activity types not pulling in - Jira
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app
JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app
[JY-20543] AJ Reports > Tracking - Jira
[JY-20543] AJ Reports > Tracking - Jira
[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira
[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira
Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app
Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app
New Tab
New Tab
Product Growth Platform | Userpilot
Product Growth Platform | Userpilot
Userpilot | Logged-activity
Userpilot | Logged-activity
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
Jiminny
Jiminny
Jiminny
Jiminny
Jiminny
Jiminny
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
Skip to content
Skip to content
Open menu
Homepage (g then d)
jiminny
jiminny
app
app
Search or jump to…
Type
/
to search
Chat with Copilot
Open Copilot…
Create new...
Issues(g then i)
Pull requests
Repositories
You have unread notifications(g then n)
Open user navigation menu
Repository navigation
Repository navigation
Code
Code
Pull requests (31)
Pull requests
(
31
)
Agents
Agents
Actions
Actions
Wiki
Wiki
Security and quality (22)
Security and quality
(
22
)
Insights
Insights
Settings
Settings
Important update
Important update
On April 24 we'll start using GitHub Copilot interaction data for AI model training unless you opt out.
Review this update
Review this update
and manage your preferences in your
GitHub account settings
GitHub account settings
.
Dismiss banner
Review requested
Review requested
yalokin-jiminny
yalokin-jiminny
requested your review on this pull request.
Add your review
Add your review
JY-20553 | Improve crm-sync delays #11976 Edit title
JY-20553 | Improve crm-sync delays
#
11976
Edit title
Checks pending
Checks pending
Code
Code
Open
yalokin-jiminny
yalokin-jiminny
wants to merge 21 commits into
master
master
from
JY-20553-debug-crm-sync-delays
JY-20553-debug-crm-sync-delays
Copy head branch name to clipboard
Lines changed: 907 additions & 132 deletions...
|
55254
|
|
34344
|
691
|
46
|
2026-04-16T08:30:48.100760+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-16/1776 /Users/lukas/.screenpipe/data/data/2026-04-16/1776328248100_m2.jpg...
|
NULL
|
NULL
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
SlackFileEditViewHistoryWindowHelp= custom.logA co SlackFileEditViewHistoryWindowHelp= custom.logA console [PROD]A HS_local [jiminny@localhost]Al console [EU]5495515525615635655667567568 v= laravel.logA SF [jiminny@localhost]A console [STAGING] XIX. AUlo vHaycroundvpc.lu, pc.nameFRUM playdooks pJoin playbook_cacegories pc1<->1.n: on p.id = pc.playbook_idwhere p.team id = 1 and p.activity tvoe = 'event':SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event' ;SELECT * FROM crm_field_values WHERE crm_field_id = 4;select * from crm_layouts cl join playbook_layouts plwhere crm_configuration_id = 1 and pl.playbook_id = 175;1<-›1..n: on cl.id = pl. layout_idselect * tron teans.Euee** -rur autonared redortsjoin teams t on r.teamid = t.idWHERE r. Enequencx = 'daily'and r.status = 1AND t.status = 'active'AND (r.exRicesat >= now() OR r.expinesat IS NULL);select * from automated_report_results where report id IN (18, 33);select * from activity_searches where id = 10932;select * from activity_search_filters where activity_search_id = 10932;select * from automated_reports order by id desc;select * from automated_report_results order by id desc;select * from automated_report_results where ceRontaig IN (37);select * from users where id IN (7160, 3248);573574SELECT * FROM automated_reports WHERE uvid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid:40liblGa jiminny ~018 A 16 X 13 ^j Support Daily • in 3 h 30 mU AutomatedReportsCommandTest-100% C4Thu 16 Apr 11:30:48CascadeNew Cascade+D..WCascade Code #0OKick off a new project. Make changesacross your entire codebase.rix Automareakeponscommana lestsReview Automated Reports Suggestionsc Modify AutomatedReportsSendCommandRevewi how is the integration app connected.+ <> CodeClaude Sonnet 4.615 B4 omerencesCurrent versionuiminny Joos leam› syncionercom vvvvvvuvvvuIntercomService $intercomService,ActivityProviderRegistry $activityProviderRegistry,TeamRepository $teamRepository,): void {return;$team = $this->team;// We don't want to sync partner accounts to Intercom.if ($team->isPartnerDefault() === false) {return;$crm = $team->getCrmConfiguration);$tier = $team->getTier();$tierTitle = $tier?->getTitle() ?? 'Unknown';// Create remote Intercom company.W Windsurf Teams...
|
NULL
|
8408823871861099127
|
NULL
|
visual_change
|
ocr
|
NULL
|
SlackFileEditViewHistoryWindowHelp= custom.logA co SlackFileEditViewHistoryWindowHelp= custom.logA console [PROD]A HS_local [jiminny@localhost]Al console [EU]5495515525615635655667567568 v= laravel.logA SF [jiminny@localhost]A console [STAGING] XIX. AUlo vHaycroundvpc.lu, pc.nameFRUM playdooks pJoin playbook_cacegories pc1<->1.n: on p.id = pc.playbook_idwhere p.team id = 1 and p.activity tvoe = 'event':SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event' ;SELECT * FROM crm_field_values WHERE crm_field_id = 4;select * from crm_layouts cl join playbook_layouts plwhere crm_configuration_id = 1 and pl.playbook_id = 175;1<-›1..n: on cl.id = pl. layout_idselect * tron teans.Euee** -rur autonared redortsjoin teams t on r.teamid = t.idWHERE r. Enequencx = 'daily'and r.status = 1AND t.status = 'active'AND (r.exRicesat >= now() OR r.expinesat IS NULL);select * from automated_report_results where report id IN (18, 33);select * from activity_searches where id = 10932;select * from activity_search_filters where activity_search_id = 10932;select * from automated_reports order by id desc;select * from automated_report_results order by id desc;select * from automated_report_results where ceRontaig IN (37);select * from users where id IN (7160, 3248);573574SELECT * FROM automated_reports WHERE uvid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid:40liblGa jiminny ~018 A 16 X 13 ^j Support Daily • in 3 h 30 mU AutomatedReportsCommandTest-100% C4Thu 16 Apr 11:30:48CascadeNew Cascade+D..WCascade Code #0OKick off a new project. Make changesacross your entire codebase.rix Automareakeponscommana lestsReview Automated Reports Suggestionsc Modify AutomatedReportsSendCommandRevewi how is the integration app connected.+ <> CodeClaude Sonnet 4.615 B4 omerencesCurrent versionuiminny Joos leam› syncionercom vvvvvvuvvvuIntercomService $intercomService,ActivityProviderRegistry $activityProviderRegistry,TeamRepository $teamRepository,): void {return;$team = $this->team;// We don't want to sync partner accounts to Intercom.if ($team->isPartnerDefault() === false) {return;$crm = $team->getCrmConfiguration);$tier = $team->getTier();$tierTitle = $tier?->getTitle() ?? 'Unknown';// Create remote Intercom company.W Windsurf Teams...
|
NULL
|
|
24941
|
537
|
16
|
2026-04-15T12:37:15.275851+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-15/1776 /Users/lukas/.screenpipe/data/data/2026-04-15/1776256635275_m1.jpg...
|
Boosteroid
|
Boosteroid
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
BoosteroidS0 ll 0# Sprint Review - in 23 ml• 0-zsh BoosteroidS0 ll 0# Sprint Review - in 23 ml• 0-zshDOCKERO $1DEV (-zsh)182APP (-zsh)83ec2-user@ip-10-.. 884-zsh85-zsh861536336|244781accessibilitylAXStaticTextl1l-zshl0.48819443583488510.033333335071802110.02291666716337210.01777777820825581536335|24478laccessibility|AXStaticText|1|<x110.95486110448837310.032222222536802310.0388888902962208I0.[CREDIT_CARD]-zsh-100% <8 Wed 15 Apr 15:37:14181O 87* Unable to a...O x8-zshzsh: command not found: #31105|2026-04-15T12:22:33.375110+00:00|clipboardl ||||# What's in one day's folderls ~/.screenpipe/data/data/2026-04-15/ | head -40# Total size of jpg vs mp4find ~/.screenpipe/data -name "*.jpg" -exec du -c {} + 2>/dev/null | tail -1find ~/.screenpipe/data -name "*.mp4" -exec du -c {} + 2>/dev/null | tail -1# Sample filenames to understand naming patternls ~/.screenpipe/data/data/2026-04-15/ | head -20# One more query - sample ocr_text correctlysqlite3 ~/.screenpipe/db.sqliteSELECT o. frame_id, o.app_name, o.window_name, o. focused,substr(o.text, 1, 120) as text_previewFROM ocr_text oORDER BY o. frame_id DESCLIMIT 5;# And frames samplesqlite3 ~/.screenpipe/db.sqlite "SELECT id, timestamp, app_name, window_name, snapshot_path,capture_trigger, text_source, content_hashFROM framesORDER BY id DESCLIMIT 5;# And elements samplesqlite3 ~/.screenpipe/db.sqlite "SELECT id, frame_id, source, role, depth,substr(text,1,80) as text_preview,left_bound, top_bound, width_bound, height_boun...l31104|2026-04-15T12:22:33.374610+00:00|key|Code|Getting started with Cla... - screenpipe [SSH: [IP_ADDRESS]]11|1131103|2026-04-15T12:22:32.539852+00:00|text|||||clear31102|2026-04-15T12:22:30.783272+00:00|click|Code|Getting started with Cla... - screenpipe [SSH: [IP_ADDRESS]]192014791|AXTextArea| shell31101|2026-04-15T12:22:30.697760+00:00|click|Code|Getting started with Cla... - screenpipe [SSH: [IP_ADDRESS]]19201479111lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $...
|
NULL
|
8408259026659780079
|
NULL
|
click
|
ocr
|
NULL
|
BoosteroidS0 ll 0# Sprint Review - in 23 ml• 0-zsh BoosteroidS0 ll 0# Sprint Review - in 23 ml• 0-zshDOCKERO $1DEV (-zsh)182APP (-zsh)83ec2-user@ip-10-.. 884-zsh85-zsh861536336|244781accessibilitylAXStaticTextl1l-zshl0.48819443583488510.033333335071802110.02291666716337210.01777777820825581536335|24478laccessibility|AXStaticText|1|<x110.95486110448837310.032222222536802310.0388888902962208I0.[CREDIT_CARD]-zsh-100% <8 Wed 15 Apr 15:37:14181O 87* Unable to a...O x8-zshzsh: command not found: #31105|2026-04-15T12:22:33.375110+00:00|clipboardl ||||# What's in one day's folderls ~/.screenpipe/data/data/2026-04-15/ | head -40# Total size of jpg vs mp4find ~/.screenpipe/data -name "*.jpg" -exec du -c {} + 2>/dev/null | tail -1find ~/.screenpipe/data -name "*.mp4" -exec du -c {} + 2>/dev/null | tail -1# Sample filenames to understand naming patternls ~/.screenpipe/data/data/2026-04-15/ | head -20# One more query - sample ocr_text correctlysqlite3 ~/.screenpipe/db.sqliteSELECT o. frame_id, o.app_name, o.window_name, o. focused,substr(o.text, 1, 120) as text_previewFROM ocr_text oORDER BY o. frame_id DESCLIMIT 5;# And frames samplesqlite3 ~/.screenpipe/db.sqlite "SELECT id, timestamp, app_name, window_name, snapshot_path,capture_trigger, text_source, content_hashFROM framesORDER BY id DESCLIMIT 5;# And elements samplesqlite3 ~/.screenpipe/db.sqlite "SELECT id, frame_id, source, role, depth,substr(text,1,80) as text_preview,left_bound, top_bound, width_bound, height_boun...l31104|2026-04-15T12:22:33.374610+00:00|key|Code|Getting started with Cla... - screenpipe [SSH: [IP_ADDRESS]]11|1131103|2026-04-15T12:22:32.539852+00:00|text|||||clear31102|2026-04-15T12:22:30.783272+00:00|click|Code|Getting started with Cla... - screenpipe [SSH: [IP_ADDRESS]]192014791|AXTextArea| shell31101|2026-04-15T12:22:30.697760+00:00|click|Code|Getting started with Cla... - screenpipe [SSH: [IP_ADDRESS]]19201479111lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $...
|
NULL
|
|
35706
|
727
|
56
|
2026-04-16T10:04:02.888268+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-16/1776 /Users/lukas/.screenpipe/data/data/2026-04-16/1776333842888_m2.jpg...
|
NULL
|
NULL
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
FirefoxFileEditHistoryBookmarksProfilesToolsWindow FirefoxFileEditHistoryBookmarksProfilesToolsWindowHelp= app.dev.jiminny.com/connect/zohocrmSupport Daily - in 1h 56 m100% C2Thu 16 Aor 13:04:02C | 0 Inspector E Console D DebuggerN Network{) Style Editor@ PerformanceO: Memoryû | Filter OutputA MouseEvent.mozInputSource is deprecated. Use PointerEvent.pointerType instead.A Storage access automatically granted for origin "https://ui. integration.app" on "https://app.dev.jiminny.com".Storagei AccessibilityErrors Warnings Info Logs8: ApplicationCSsXHRIRequests7 Jiminny x Shiji - Reconnecting theZ For you - Confluence® Lukas Kovalik - Time Offu Product Growth Plattorm Userpilou Userpilotfix(security): composer dependera JiminnyNew Tab8 Jiminny© GoogleIntegrationAccessorMemorane• Jiminny • Memorane( Fix an autocomplete mistake that sSymfony\Component|Debug\ExcepE App "Zoho CRM" • Kavita • Membra+ New TabTop ÷ FBIZ Zoho CRM2Linking your Zoho CRM accountconnecting[ A popup window should open, please proceed thereconnectedjunt has become disconnectedct to continueth Zoho CRM...
|
NULL
|
8408109171858608156
|
NULL
|
click
|
ocr
|
NULL
|
FirefoxFileEditHistoryBookmarksProfilesToolsWindow FirefoxFileEditHistoryBookmarksProfilesToolsWindowHelp= app.dev.jiminny.com/connect/zohocrmSupport Daily - in 1h 56 m100% C2Thu 16 Aor 13:04:02C | 0 Inspector E Console D DebuggerN Network{) Style Editor@ PerformanceO: Memoryû | Filter OutputA MouseEvent.mozInputSource is deprecated. Use PointerEvent.pointerType instead.A Storage access automatically granted for origin "https://ui. integration.app" on "https://app.dev.jiminny.com".Storagei AccessibilityErrors Warnings Info Logs8: ApplicationCSsXHRIRequests7 Jiminny x Shiji - Reconnecting theZ For you - Confluence® Lukas Kovalik - Time Offu Product Growth Plattorm Userpilou Userpilotfix(security): composer dependera JiminnyNew Tab8 Jiminny© GoogleIntegrationAccessorMemorane• Jiminny • Memorane( Fix an autocomplete mistake that sSymfony\Component|Debug\ExcepE App "Zoho CRM" • Kavita • Membra+ New TabTop ÷ FBIZ Zoho CRM2Linking your Zoho CRM accountconnecting[ A popup window should open, please proceed thereconnectedjunt has become disconnectedct to continueth Zoho CRM...
|
35704
|
|
9597
|
185
|
45
|
2026-04-14T07:45:35.591419+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-14/1776 /Users/lukas/.screenpipe/data/data/2026-04-14/1776152735591_m2.jpg...
|
NULL
|
NULL
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
FirefoxFileEoitViewHistoryBookmarksProfilesToolsWi FirefoxFileEoitViewHistoryBookmarksProfilesToolsWindowHelpjiminny.atlassian.net/wiki/spaces/EN/pages/2112585768/Configure+SSH+access+to+multiple+environment~ Google GeminiPlatform Sprint 1 Q2 - Platform Tea2 Configure SSH access to multilJY-20543 add AJ reports User pil( SRD-6779 | JY-20632 | Unable to• Jy 19798 evaluation for ai activityJiminnyg Ask Jiminny test report - 8 Apr 20)Service-Desk - Queues - PlatformJY-20543 add AJ reports User pilc(x) Configure SSH access to multiple+ New Tab• The Danger: While valid Python, injectingconditionals directly into a multi-linestring sequence via( "str" ifcondition else "") + f"str" ishighly prone to formatting bugs, missingspaces, or accidental syntax errors duringfuture refactors.• The Fix: Construct the prompt fragmentsusing standard control flow for betterreadability:Pythonprompt_parts = ["# Answer\n\n"]if report mode:romlol Oalus.dusene cramloollanl.prompt_parts. append(f"Synthesize all {Overly Defensive Call Count FallbackLine 195 contains: call_count =len(aa_request.call_ids) ifaa_request.call_ids else 0• The Danger: This impliesad_request.call_ids might be None.If an empty state is valid, this line handlesit correctly. However, a request to analyze"Ask Anything" on calls without anycall_ids represents a logically invalidrequest state.• The Fix: Ensure upstream validationcatches empty call_ids before itreaches the report generator, or explicitlyraise a ValueError here to preventgenerating a "Data Source" sectionbased on zero calls.• Enter a prompt for GeminiPro vJIMINNY@ For you• Recent|# Starred• Spaces•* AppsOf Engineering...C* Shortcuts+= How-to articles- Close mernoos# Content+..Q Search by titleUnboarding© Start hereE Engineering On…..# Create AWS A…..Developer en...E Configure SS...• E Configure En...AccountsE Sidekick & ngro…..• @ DevOps onboar...> E Configuring Php...• E Enabling LogRo...• E Setup app platfo...E How to setup Xd...# Jiminny Environ…..= Git hooks• LogsAgileunaoters• Infrastructure= Processes© Training Program# ComplianceYour Jiminny chats aren't used to improve our models. Gemini is Alane can make mistakes, Inciualne aoout peodleYour privacy & GeminiSummarize page0g Get answers for work, XanywhereAsk about your projects, workpollcles, or anyinine aoout vourcompany. Rovo chat trom any tab.Get the browser extensionv E contigure ssh access to multiple environmentC . 40 lbl O l Support Daily. in 4h 15m A 100% C/a Tue 14 Apr 10:45:35+ CreateL ASK RoVO A ® eUpdated Jan 09C Edit & Share @ ...Q Search Confluence, Jira, Google Drive and other apps29 Leul30role_arn = arn:aws: iam::765720199711:role/EU_View_Only31source_profile = stage32mfa_serial = arn:aws: iam: :438740370364:mfa/xxxxxxxxxxxduration_seconds = 28000Change the xxxxxxx to your mfa device id provided by an admin.https://us-east-1.console.aws.amazon.com/iam/home?region=us-east-2#/security_credentialsTest if config above works by running this command:2 avs sts get-caller-identity -profile stageaws sts get-caller-identity --profile qa3 aws sts get-caller-identity --profile qai4aws sts get-caller-identity --profile prodaws sts get-caller-identity --profile eu4. Whitelist your IPAdd your IP to the external SSH allow whitelistBastion servers are configured to only allow access from a list of IP addresses. You need to addyour IP address to the allow list. If you have to edit the SSH whitelist then you'll have to switch tothe appropriate AWS role for respective environment.In AWS Console you can assume different roles. That way you can access AWS resources indifferent accounts e.g. Staging or Production. After using a Switch Role link the roles get stored inyour Role history.# Comment8https://us-east-2.console.aсиосл шамsg-48ec3e21 - jiminny-app-stage-stage-extern swgina, Vvew. Only e ImryEU.Admin @ 765720199711Production. View.,Onty ®imionyFor Staging:https://signin.aws.amazon.com/switchrole?roleName=Staging_View_Only&account=jmnyFor QA:https://signin.aws.amazon.com/switchrole?roleName=QA_View_Only&account=jiminny-qaFor QAi:https://signin.aws.amazon.com/switchrole?roleName=QA2_View_Only&account=jiminny-qa2For Production:https://signin.aws.amazon.uvrpvrle 4w.._.rew_Only&account=jiminny...
|
NULL
|
8407969278021084349
|
NULL
|
visual_change
|
ocr
|
NULL
|
FirefoxFileEoitViewHistoryBookmarksProfilesToolsWi FirefoxFileEoitViewHistoryBookmarksProfilesToolsWindowHelpjiminny.atlassian.net/wiki/spaces/EN/pages/2112585768/Configure+SSH+access+to+multiple+environment~ Google GeminiPlatform Sprint 1 Q2 - Platform Tea2 Configure SSH access to multilJY-20543 add AJ reports User pil( SRD-6779 | JY-20632 | Unable to• Jy 19798 evaluation for ai activityJiminnyg Ask Jiminny test report - 8 Apr 20)Service-Desk - Queues - PlatformJY-20543 add AJ reports User pilc(x) Configure SSH access to multiple+ New Tab• The Danger: While valid Python, injectingconditionals directly into a multi-linestring sequence via( "str" ifcondition else "") + f"str" ishighly prone to formatting bugs, missingspaces, or accidental syntax errors duringfuture refactors.• The Fix: Construct the prompt fragmentsusing standard control flow for betterreadability:Pythonprompt_parts = ["# Answer\n\n"]if report mode:romlol Oalus.dusene cramloollanl.prompt_parts. append(f"Synthesize all {Overly Defensive Call Count FallbackLine 195 contains: call_count =len(aa_request.call_ids) ifaa_request.call_ids else 0• The Danger: This impliesad_request.call_ids might be None.If an empty state is valid, this line handlesit correctly. However, a request to analyze"Ask Anything" on calls without anycall_ids represents a logically invalidrequest state.• The Fix: Ensure upstream validationcatches empty call_ids before itreaches the report generator, or explicitlyraise a ValueError here to preventgenerating a "Data Source" sectionbased on zero calls.• Enter a prompt for GeminiPro vJIMINNY@ For you• Recent|# Starred• Spaces•* AppsOf Engineering...C* Shortcuts+= How-to articles- Close mernoos# Content+..Q Search by titleUnboarding© Start hereE Engineering On…..# Create AWS A…..Developer en...E Configure SS...• E Configure En...AccountsE Sidekick & ngro…..• @ DevOps onboar...> E Configuring Php...• E Enabling LogRo...• E Setup app platfo...E How to setup Xd...# Jiminny Environ…..= Git hooks• LogsAgileunaoters• Infrastructure= Processes© Training Program# ComplianceYour Jiminny chats aren't used to improve our models. Gemini is Alane can make mistakes, Inciualne aoout peodleYour privacy & GeminiSummarize page0g Get answers for work, XanywhereAsk about your projects, workpollcles, or anyinine aoout vourcompany. Rovo chat trom any tab.Get the browser extensionv E contigure ssh access to multiple environmentC . 40 lbl O l Support Daily. in 4h 15m A 100% C/a Tue 14 Apr 10:45:35+ CreateL ASK RoVO A ® eUpdated Jan 09C Edit & Share @ ...Q Search Confluence, Jira, Google Drive and other apps29 Leul30role_arn = arn:aws: iam::765720199711:role/EU_View_Only31source_profile = stage32mfa_serial = arn:aws: iam: :438740370364:mfa/xxxxxxxxxxxduration_seconds = 28000Change the xxxxxxx to your mfa device id provided by an admin.https://us-east-1.console.aws.amazon.com/iam/home?region=us-east-2#/security_credentialsTest if config above works by running this command:2 avs sts get-caller-identity -profile stageaws sts get-caller-identity --profile qa3 aws sts get-caller-identity --profile qai4aws sts get-caller-identity --profile prodaws sts get-caller-identity --profile eu4. Whitelist your IPAdd your IP to the external SSH allow whitelistBastion servers are configured to only allow access from a list of IP addresses. You need to addyour IP address to the allow list. If you have to edit the SSH whitelist then you'll have to switch tothe appropriate AWS role for respective environment.In AWS Console you can assume different roles. That way you can access AWS resources indifferent accounts e.g. Staging or Production. After using a Switch Role link the roles get stored inyour Role history.# Comment8https://us-east-2.console.aсиосл шамsg-48ec3e21 - jiminny-app-stage-stage-extern swgina, Vvew. Only e ImryEU.Admin @ 765720199711Production. View.,Onty ®imionyFor Staging:https://signin.aws.amazon.com/switchrole?roleName=Staging_View_Only&account=jmnyFor QA:https://signin.aws.amazon.com/switchrole?roleName=QA_View_Only&account=jiminny-qaFor QAi:https://signin.aws.amazon.com/switchrole?roleName=QA2_View_Only&account=jiminny-qa2For Production:https://signin.aws.amazon.uvrpvrle 4w.._.rew_Only&account=jiminny...
|
9596
|
|
48362
|
1027
|
5
|
2026-04-17T12:38:20.219784+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-17/1776 /Users/lukas/.screenpipe/data/data/2026-04-17/1776429500219_m1.jpg...
|
NULL
|
NULL
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Term2ShellEditViewSessionScriptsProfilesWindowHelp Term2ShellEditViewSessionScriptsProfilesWindowHelp(ab)• Tech Day Review • in 1h 22 mAAPP (-zsh)₴4-zshDOCKER• ₴1DEV (docker)APP (-zsh)X3-zsh• ₴5* Review screenp...• 286Changes notstagedfor commit:(use"git add ‹file>..to update what will becommitted)(use"git restore<files..." to discard changesin working directory)modified:./.env.localmodified:./app/Console/Commands/JiminnyDebugCommand.phpmodified:../app/Http/Controllers/API/ActivityController.phpmodified:../app/Http/Controllers/Webhook/ReportController.phpmodified::./app/Jobs/Team/SyncToIntercom.phpmodified:/app/Services/PlaybackService.phpmodified::/config/logging.phpmodified:../routes/web.phpUntracked files:Cuse"git add <files..."to include in what will be committed)'.env.nikilocal/.env.other../WEBHOOK_FILTERING_IMPLEMENTATION.md../app/Console/Commands/Crm/Hubspot/SimulateWebhooksCommand.php../app/Console/Commands/Reports/CreateMockAskJiminnyReportResultCommand.php./ids.txt../raw_sql_query.sql../tests/Unit/Policies/CanAccessAiReportsTest.phpno changes addedto commit (use "git add"and/or "git commit -a")lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app/front-end (JY-18909-automated-reports-ask-jiminny) $ git pullremote: Enumerating objects: 170,done.remote: Counting objects: 100% (147/147), done.remote: Compressing objects: 100% (35/35), done.remote:Total 170 (delta 116), reused 121 (delta 111), pack-reused 23 (from 1)Receiving objects: 100% (170/170), 55.28 KiB | 1.42 MiB/s,done.Resolving deltas: 100% (119/119), completed with 47 local objects.From github.com:jiminny/app82671d4c13..d4352c6e59JY-20291-datadog-processing-states-> origin/JY-20291-datadog-processing-states20e95bbbc9..360f12adddJY-20541-cleanup-stale-tasks-and-events-> origin/JY-20541-cleanup-stale-tasks-and-events+ 9f8d154791...01c43d2aa6 JY-20553-debug-crm-sync-delays-> origin/JY-20553-debug-crm-sync-delays (forced update)* [new branch]JY-20695-handle-no-raw-transcript-› origin/JY-20695-handle-no-raw-transcriptbe76d8ba82..9b30c928c4JY-9712-change-forever-nudges-to-1-year-expiration -> origin/JY-9712-change-forever-nudges-to-1-year-expiration5bb8fefcba..c04e334173master-> origin/masterUpdating aba9685c0d..08ed383c5berror: Your local changes to the following files would be overwritten by merge:app/Http/Controllers/Webhook/ReportController.phpPlease commit your changes or stash them before you merge.Abortingukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app/front-end (JY-18909-automated-reports-ask-jiminny) $ Uec2-user@ip-10-...• 87100% <478Fri 17 Apr 15:38:191₴81ec2-user@ip-10-...• 88APP...
|
NULL
|
8407859265098630118
|
NULL
|
click
|
ocr
|
NULL
|
Term2ShellEditViewSessionScriptsProfilesWindowHelp Term2ShellEditViewSessionScriptsProfilesWindowHelp(ab)• Tech Day Review • in 1h 22 mAAPP (-zsh)₴4-zshDOCKER• ₴1DEV (docker)APP (-zsh)X3-zsh• ₴5* Review screenp...• 286Changes notstagedfor commit:(use"git add ‹file>..to update what will becommitted)(use"git restore<files..." to discard changesin working directory)modified:./.env.localmodified:./app/Console/Commands/JiminnyDebugCommand.phpmodified:../app/Http/Controllers/API/ActivityController.phpmodified:../app/Http/Controllers/Webhook/ReportController.phpmodified::./app/Jobs/Team/SyncToIntercom.phpmodified:/app/Services/PlaybackService.phpmodified::/config/logging.phpmodified:../routes/web.phpUntracked files:Cuse"git add <files..."to include in what will be committed)'.env.nikilocal/.env.other../WEBHOOK_FILTERING_IMPLEMENTATION.md../app/Console/Commands/Crm/Hubspot/SimulateWebhooksCommand.php../app/Console/Commands/Reports/CreateMockAskJiminnyReportResultCommand.php./ids.txt../raw_sql_query.sql../tests/Unit/Policies/CanAccessAiReportsTest.phpno changes addedto commit (use "git add"and/or "git commit -a")lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app/front-end (JY-18909-automated-reports-ask-jiminny) $ git pullremote: Enumerating objects: 170,done.remote: Counting objects: 100% (147/147), done.remote: Compressing objects: 100% (35/35), done.remote:Total 170 (delta 116), reused 121 (delta 111), pack-reused 23 (from 1)Receiving objects: 100% (170/170), 55.28 KiB | 1.42 MiB/s,done.Resolving deltas: 100% (119/119), completed with 47 local objects.From github.com:jiminny/app82671d4c13..d4352c6e59JY-20291-datadog-processing-states-> origin/JY-20291-datadog-processing-states20e95bbbc9..360f12adddJY-20541-cleanup-stale-tasks-and-events-> origin/JY-20541-cleanup-stale-tasks-and-events+ 9f8d154791...01c43d2aa6 JY-20553-debug-crm-sync-delays-> origin/JY-20553-debug-crm-sync-delays (forced update)* [new branch]JY-20695-handle-no-raw-transcript-› origin/JY-20695-handle-no-raw-transcriptbe76d8ba82..9b30c928c4JY-9712-change-forever-nudges-to-1-year-expiration -> origin/JY-9712-change-forever-nudges-to-1-year-expiration5bb8fefcba..c04e334173master-> origin/masterUpdating aba9685c0d..08ed383c5berror: Your local changes to the following files would be overwritten by merge:app/Http/Controllers/Webhook/ReportController.phpPlease commit your changes or stash them before you merge.Abortingukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app/front-end (JY-18909-automated-reports-ask-jiminny) $ Uec2-user@ip-10-...• 87100% <478Fri 17 Apr 15:38:191₴81ec2-user@ip-10-...• 88APP...
|
48359
|
|
59120
|
1273
|
18
|
2026-04-20T13:28:13.589683+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-20/1776 /Users/lukas/.screenpipe/data/data/2026-04-20/1776691693589_m2.jpg...
|
PhpStorm
|
PhpStorm
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
PhostormProledey© SyncOpportunity.phpGosyncrrotile PhostormProledey© SyncOpportunity.phpGosyncrrotileLeaas.ong© syncrrotileupportunities.ongD DealRisksW clasticsearch_ GrouosMallboxw PlavlistsWebhook= .gitkeep© ChangeLogContextCorrelationid.phpIM MaillM Modole> D ActivityD AskAnythingi CalendarM ConnectionD Contracts• CmbusinessProcess.oneconticuration.onoc) contactRole.phpc) Field.php© FieldData.phpc) FieldValue.phpc) Lavout.phpc) Lavout Entitv.oheC) Loa,oho(C) Profille,ohoC) Recordtivoe,ohoC) SvncBatch.ohvElasticSearchm SeatureM OnnortunitvM ParticinantM PlavbackThemePlavlistN ScorecardiN Wehhook(e Account nhn© [EMAIL](e) AiPromot.phcAutomatedReportsService.phpAutomatedkeporscommand.pnp© SyncOpportunitiesJob.php©ImportOpportunityBatch.php(©)ImportContactBatch.php© Client.php(C) HubspotPaqinationService.php(C) Service.phpBatchSyncTrait.php® AutomatedReportsController.phpphp api v2.php(C) TrackProviderInstalledEvent.php(C) AutomatedReportResult.pho(C) AutomatedReport.ohoclass SyncProfile0pportunities implements ShouldQueuepublic function handte (Profilecreated Sevent): voi$this->logger->info('Syncing opportunities for the newly created profile', l'profile' => Scrmid,= Steamid.83 ^ v 574cthis-siohhicnatchen.sdicnatchlinewSvncProfil eMetadataSnrofip->aetlisenonn•$this->createDealInsightsLayoutIfDoesNotExist($crmConfiguration);$since = $this->configurationSettingsService->getSyncPeriod(ScrmConfiguration):if (! $this->configurationSettingsService->requiresSlidingWindowSearch($crmConfiguration)){Sthis->jobDispatcher->dispatch(new syncuppolfunttlessoblScrmConfiquration->qetIdO.'crm protile 1d => scrmld.'since' => Ssince.strategy: OpportunitySyncStrategyResolver::LAST_MODIFIED_BY_PROFILE SYNC_OPPORTUNITY STRATEGYsthis->timePerioditerator->generateUntillNowForMaxSevenDavsastartDate: SsincelonPeriod: function (Carbon $start. Carbon $end) use (ScrmConfiquration. $crmId): void {..?Tusageprivate function createDealInsightsLayoutIfDoesNotExist(Configuration ScrmConfiguration): void{...}100% 52• Mon ZU Aor 10.20.12LAskJiminnyReportActivityServiceTest v=custom.log= laravel.logA SF [jiminny@localhost]4 HS_local (iminny@localhost]CascadeA console [PROD] X A console [EU]59€59215951594598$99- 600604607608A console [STAGING]Retactor ConnectionCRM Initial Sync OvenTx: Autovdo jiminnyLets say I don't use webhook based opportunity sync but last modified, do we use ImportOpportunityBatch in hubspotGELECT * FROM crm profiles WHERE crm_ confiqurat: m034 A1 A34 M62 ^ -TnoughtsbELEcl * rkun crm conticuracions whEkE 10 = 305GELECT * FROM users WHERE id = 15440: # team. 581, qr. 15440, pl. 3911, actSELECTCONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) A:U.ema1l.Explored ImportOpportunityBatch.php and searched ImportOpportunityBatch ›AnswerNo. For non-webhook strategies like last-modified, Importopportun1tyBatch is not used.sa.*towner 1d FRol sochal accounts saFlow for last-modified syncSyncOpportunitiesJob calls Hubspot\Service:: syncOpportunities() (the OpportunitySyncTrait you just added). That method:JOIN users u on u.id = sa.sociable_idJOIN teams t 1..n<->1: on t.id = U.team id1. Resolves strategies via OpportunitySyncStrategyResolver (for last-modified you get e.g. HubspotLastModifiedSyncStrategy ).VHERE U.team_id = 581 and sa.provider = 'salesforce';SELECT * FROM automated_report_results order by id desc;2. Iterates the strategy's fetchopportunities(...) generator in-process, buffering up to BATCH_PROCESS_SIZE = 800 deals3. Calls process0pportunityBatch($buffer) → importOpportunityBatch($deals) synchronously inside the same job (OpportunitySyncTrait.pho:249-308)No sub-iobs are disnatched. The whole strateav-driven imnort runs within the sinale Svncûnnortunitiesloh execution.select * from features;Bplect * from team fpatunos where featunp id = 40:When ImportOpportunityBatch is usedOnly on the webhook path:select * from teams where id = 556;• HubspotWebhookBatchSvncStrateay returns an empty generator (it doesn't vield deals) and instead drains Redis via WebhookSyncBatchProcessor::dispatchBatchJob() which dispatches Import0pportunityBatch::dispatch($configId, $crmProviderIds) - see WebhookSyncBatchProcessor.0ho:144-156.select * from•ts where id = 54; # 4fdd41f6-dcf0-30d0-b339-734SELECT * FROM automated_report_results WHERE uuid_to_bin('822fa41b-afd3-43a9select * from automated_report_results order by id desc;SELECT * FROM automated report results WHERE id = 1919:•That job then calls back into import0pportunityBatchByIds() (0pportunitySyncTrait.php:174-208), which fetches deals by ID fromHubSoot and reuses the same imoortOpportunitvBatch@ methodlShared codeBoth paths converge on importOpportunityBatch() in the trait. The difference is only how deals are obtained and where the work runs:select * from automated report results WHERE report id = 54:• Last-modified: deals come from the strategy's paginated search, processed in-line in the sync jobselect * from opportunities where id = 7594349:•Webhook: dealDs come from Redis, tetched via cbient-saet0oportunitiesßvldso, orocessed in a dispatched imoortOoportunitvBatchqueue od with retiesbackow,GELECT * FROM teams WHERE name LIKE 1%Les%': # 711. 692. 16067 - jiminnvinteselect * from plavbooks where team id = 711: # event 226147GELECT * FROM plavbook categories WHERE plavbook id = 5515:GELECT * FROM crm fields WHERE id = 226147SELECT * FROM crm Field values WHERE crm field 1d = 2261471SELECT * FROM com confiqurations WHERE 1d = 6925GELECTCONCAT(u.id, CASE WHEN U.id = t.owner_id THEN ' (owner)' ELSE •• END) A$u. emailsa.*,+ownen id EROM social accounts saJOTN usens u on trid = ca.cociable idiJOIN teams t 1..n<->1: on t.id = u.team_idVHERE u.team_id = 711 and sa.provider = 'salesforce';SELECT * FROM crm profiles cp JOIN users u 1..n<->1: on u.id = cp.user id WHEAsk anvthina (84-D<> GodeClaude Qnus 4.7 Medium75•221Po 4 spac...
|
NULL
|
8407798562473426850
|
NULL
|
click
|
ocr
|
NULL
|
PhostormProledey© SyncOpportunity.phpGosyncrrotile PhostormProledey© SyncOpportunity.phpGosyncrrotileLeaas.ong© syncrrotileupportunities.ongD DealRisksW clasticsearch_ GrouosMallboxw PlavlistsWebhook= .gitkeep© ChangeLogContextCorrelationid.phpIM MaillM Modole> D ActivityD AskAnythingi CalendarM ConnectionD Contracts• CmbusinessProcess.oneconticuration.onoc) contactRole.phpc) Field.php© FieldData.phpc) FieldValue.phpc) Lavout.phpc) Lavout Entitv.oheC) Loa,oho(C) Profille,ohoC) Recordtivoe,ohoC) SvncBatch.ohvElasticSearchm SeatureM OnnortunitvM ParticinantM PlavbackThemePlavlistN ScorecardiN Wehhook(e Account nhn© [EMAIL](e) AiPromot.phcAutomatedReportsService.phpAutomatedkeporscommand.pnp© SyncOpportunitiesJob.php©ImportOpportunityBatch.php(©)ImportContactBatch.php© Client.php(C) HubspotPaqinationService.php(C) Service.phpBatchSyncTrait.php® AutomatedReportsController.phpphp api v2.php(C) TrackProviderInstalledEvent.php(C) AutomatedReportResult.pho(C) AutomatedReport.ohoclass SyncProfile0pportunities implements ShouldQueuepublic function handte (Profilecreated Sevent): voi$this->logger->info('Syncing opportunities for the newly created profile', l'profile' => Scrmid,= Steamid.83 ^ v 574cthis-siohhicnatchen.sdicnatchlinewSvncProfil eMetadataSnrofip->aetlisenonn•$this->createDealInsightsLayoutIfDoesNotExist($crmConfiguration);$since = $this->configurationSettingsService->getSyncPeriod(ScrmConfiguration):if (! $this->configurationSettingsService->requiresSlidingWindowSearch($crmConfiguration)){Sthis->jobDispatcher->dispatch(new syncuppolfunttlessoblScrmConfiquration->qetIdO.'crm protile 1d => scrmld.'since' => Ssince.strategy: OpportunitySyncStrategyResolver::LAST_MODIFIED_BY_PROFILE SYNC_OPPORTUNITY STRATEGYsthis->timePerioditerator->generateUntillNowForMaxSevenDavsastartDate: SsincelonPeriod: function (Carbon $start. Carbon $end) use (ScrmConfiquration. $crmId): void {..?Tusageprivate function createDealInsightsLayoutIfDoesNotExist(Configuration ScrmConfiguration): void{...}100% 52• Mon ZU Aor 10.20.12LAskJiminnyReportActivityServiceTest v=custom.log= laravel.logA SF [jiminny@localhost]4 HS_local (iminny@localhost]CascadeA console [PROD] X A console [EU]59€59215951594598$99- 600604607608A console [STAGING]Retactor ConnectionCRM Initial Sync OvenTx: Autovdo jiminnyLets say I don't use webhook based opportunity sync but last modified, do we use ImportOpportunityBatch in hubspotGELECT * FROM crm profiles WHERE crm_ confiqurat: m034 A1 A34 M62 ^ -TnoughtsbELEcl * rkun crm conticuracions whEkE 10 = 305GELECT * FROM users WHERE id = 15440: # team. 581, qr. 15440, pl. 3911, actSELECTCONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) A:U.ema1l.Explored ImportOpportunityBatch.php and searched ImportOpportunityBatch ›AnswerNo. For non-webhook strategies like last-modified, Importopportun1tyBatch is not used.sa.*towner 1d FRol sochal accounts saFlow for last-modified syncSyncOpportunitiesJob calls Hubspot\Service:: syncOpportunities() (the OpportunitySyncTrait you just added). That method:JOIN users u on u.id = sa.sociable_idJOIN teams t 1..n<->1: on t.id = U.team id1. Resolves strategies via OpportunitySyncStrategyResolver (for last-modified you get e.g. HubspotLastModifiedSyncStrategy ).VHERE U.team_id = 581 and sa.provider = 'salesforce';SELECT * FROM automated_report_results order by id desc;2. Iterates the strategy's fetchopportunities(...) generator in-process, buffering up to BATCH_PROCESS_SIZE = 800 deals3. Calls process0pportunityBatch($buffer) → importOpportunityBatch($deals) synchronously inside the same job (OpportunitySyncTrait.pho:249-308)No sub-iobs are disnatched. The whole strateav-driven imnort runs within the sinale Svncûnnortunitiesloh execution.select * from features;Bplect * from team fpatunos where featunp id = 40:When ImportOpportunityBatch is usedOnly on the webhook path:select * from teams where id = 556;• HubspotWebhookBatchSvncStrateay returns an empty generator (it doesn't vield deals) and instead drains Redis via WebhookSyncBatchProcessor::dispatchBatchJob() which dispatches Import0pportunityBatch::dispatch($configId, $crmProviderIds) - see WebhookSyncBatchProcessor.0ho:144-156.select * from•ts where id = 54; # 4fdd41f6-dcf0-30d0-b339-734SELECT * FROM automated_report_results WHERE uuid_to_bin('822fa41b-afd3-43a9select * from automated_report_results order by id desc;SELECT * FROM automated report results WHERE id = 1919:•That job then calls back into import0pportunityBatchByIds() (0pportunitySyncTrait.php:174-208), which fetches deals by ID fromHubSoot and reuses the same imoortOpportunitvBatch@ methodlShared codeBoth paths converge on importOpportunityBatch() in the trait. The difference is only how deals are obtained and where the work runs:select * from automated report results WHERE report id = 54:• Last-modified: deals come from the strategy's paginated search, processed in-line in the sync jobselect * from opportunities where id = 7594349:•Webhook: dealDs come from Redis, tetched via cbient-saet0oportunitiesßvldso, orocessed in a dispatched imoortOoportunitvBatchqueue od with retiesbackow,GELECT * FROM teams WHERE name LIKE 1%Les%': # 711. 692. 16067 - jiminnvinteselect * from plavbooks where team id = 711: # event 226147GELECT * FROM plavbook categories WHERE plavbook id = 5515:GELECT * FROM crm fields WHERE id = 226147SELECT * FROM crm Field values WHERE crm field 1d = 2261471SELECT * FROM com confiqurations WHERE 1d = 6925GELECTCONCAT(u.id, CASE WHEN U.id = t.owner_id THEN ' (owner)' ELSE •• END) A$u. emailsa.*,+ownen id EROM social accounts saJOTN usens u on trid = ca.cociable idiJOIN teams t 1..n<->1: on t.id = u.team_idVHERE u.team_id = 711 and sa.provider = 'salesforce';SELECT * FROM crm profiles cp JOIN users u 1..n<->1: on u.id = cp.user id WHEAsk anvthina (84-D<> GodeClaude Qnus 4.7 Medium75•221Po 4 spac...
|
59118
|
|
71957
|
1739
|
6
|
2026-04-22T14:33:53.193173+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776868433193_m2.jpg...
|
Firefox
|
Jiminny MCP Connector - Product - Confluence — Wor Jiminny MCP Connector - Product - Confluence — Work...
|
True
|
jiminny.atlassian.net/wiki/spaces/PROD/pages/37282 jiminny.atlassian.net/wiki/spaces/PROD/pages/3728244737/Jiminny+MCP+Connector...
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Platform Sprint 2 Q2 - Platform Team - Scrum Board Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira
SevenShores\Hubspot\Exceptions\BadRequest: Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response: {"status":"error","message":"You have reached your secondly limit.","errorType":"RATE_LIMIT
SevenShores\Hubspot\Exceptions\BadRequest: Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response: {"status":"error","message":"You have reached your secondly limit.","errorType":"RATE_LIMIT
[JY-20372] AI Reports > Empty page design and promotion - Jira
[JY-20372] AI Reports > Empty page design and promotion - Jira
Jiminny MCP Connector - Product - Confluence
Jiminny MCP Connector - Product - Confluence
Jiminny
Jiminny
Workers | Datadog
Workers | Datadog
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20728] [HubSpot] Find the root cause of 429 hit and tweak API client rate limiter - Jira
[JY-20728] [HubSpot] Find the root cause of 429 hit and tweak API client rate limiter - Jira
JY-9712 | Nuges to expire after one year by nikolaybiaivanov · Pull Request #11981 · jiminny/app
JY-9712 | Nuges to expire after one year by nikolaybiaivanov · Pull Request #11981 · jiminny/app
Jiminny
Jiminny
CloudWatch | us-east-2
CloudWatch | us-east-2
Your 'Not enpough activities' report wasn't generated - [EMAIL] - Jiminny Mail
Your 'Not enpough activities' report wasn't generated - [EMAIL] - Jiminny Mail
Jiminny MCP Connector - Product - Confluence
Jiminny MCP Connector - Product - Confluence
Close tab
New Tab
Customize sidebar
Close Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
AI Chat settings
Close
WORK, Google Account: [EMAIL]
Main menu
New Chat
Open menu for conversation actions.
Conversation with Gemini
Conversation with Gemini
Copy prompt
Edit
You said what is the oauth required for mcp for clauide code and claude chat
You said
what is the oauth required for mcp for clauide code and claude chat
Listen
Show more options
Show thinking
Gemini said
Gemini said
To understand the OAuth requirements for the Model Context Protocol (MCP) in Claude Code and Claude Chat, it helps to look at how MCP handles secure connections.
MCP acts as a universal "USB port" that allows AI models to connect to external data sources and tools.
When connecting to remote, HTTP-based MCP servers, Anthropic relies on the
OAuth 2.1
authorization framework.
This ensures that Claude can access your protected tools securely using temporary tokens, rather than requiring you to copy and paste long-lived API keys, passwords, or configuration secrets.
View source details for citations from Stytch, Model Context Protocol, and Zuplo. Opens side panel.
+2
Here is exactly what is required and how OAuth is handled across both environments.
The Underlying OAuth Flow for MCP
The Underlying OAuth Flow for MCP
Whether you are using Claude Code or Claude Chat, the underlying architecture is identical.
The Claude application acts as the
OAuth Client
, and the remote tool you are connecting to acts as the
Resource Server
.
View source details for citation from Model Context Protocol. Opens side panel.
To build or connect to an MCP server, the OAuth integration must support this standard discovery and token exchange flow:
Initial Handshake (Discovery):
Claude attempts to connect to the MCP server without credentials. The server must reject this with a
401 Unauthorized
HTTP status and include a
WWW-Authenticate
header pointing to a Protected Resource Metadata (PRM) document.
Metadata Fetch:
Claude reads the PRM document to locate your specific Authorization Server (e.g., Okta, Auth0, Clerk, or a custom auth server).
View source details for citation from Model Context Protocol. Opens side panel.
User Consent:
Claude prompts the user to authenticate.
The user is temporarily redirected to a browser window to log in and explicitly grant permission (e.g., "Allow Claude to access your GitHub repositories").
View source details for citations from GitHub and Model Context Protocol. Opens side panel.
+1
Token Exchange:
Claude receives a temporary authorization code via a redirect, which it silently exchanges for a long-lived access token.
View source details for citation from Upstash. Opens side panel.
Access Granted:
Claude now includes this token in the header of subsequent requests to invoke tools and read data on your behalf.
View source details for citation from Model Context Protocol. Opens side panel.
MCP OAuth in Claude Code
MCP OAuth in Claude Code
Claude Code is Anthropic's command-line interface (CLI) tool for software engineering. When you connect Claude Code to a protected remote MCP server, the OAuth flow is adapted for the terminal:
Browser Handoff:
When Claude Code hits an MCP server that requires OAuth, it will generate a secure authorization link and automatically open your default desktop web browser (or output the URL to the terminal for headless environments).
Authentication:
Once you log in and approve access in the browser, the authorization server redirects the payload back to a local loopback port managed by Claude Code, handing off the authorization code.
View source details for citation from Model Context Protocol. Opens side panel.
Alternative (Static Headers):
If setting up a full OAuth 2.1 server is too complex for a quick internal tool, Claude Code also allows you to bypass the browser flow by injecting static bearer tokens directly via the CLI.
You can do this using the
--header
flag (e.g.,
claude mcp add my-server --transport http --header "Authorization: Bearer your-token"
).
View source details for citation from TrueFoundry. Opens side panel.
MCP OAuth in Claude Chat (Claude Desktop & Web)
MCP OAuth in Claude Chat (Claude Desktop & Web)
"Claude Chat" encompasses the visual interfaces—both the Claude Desktop application and the Claude.ai web platform.
Claude.ai (Web Custom Connectors):
When you add a remote MCP server via the "Custom Connectors" menu in your settings, Claude.ai handles the OAuth flow entirely in the browser. You simply paste the MCP server URL. Claude automatically parses the 401 discovery response and redirects you to the third-party service to grant permission, before seamlessly dropping you back into your chat session.
Claude Desktop:
Claude Desktop traditionally relies on a local configuration file (
claude_desktop_config.json
). While local stdio servers often require pasting API keys into this file, remote HTTP MCP servers utilizing OAuth eliminate this security risk.
When Claude Desktop encounters an OAuth-protected server, it pops open your system's default browser to capture your consent.
It then stores the resulting token securely in your operating system's native keychain or credential manager, keeping your
config.json
free of sensitive plaintext passwords.
View source details for citation from GitHub. Opens side panel.
The Bottom Line:
You do not need to build a bespoke authentication protocol for MCP.
If your external tool already utilizes standard OpenID Connect or OAuth 2.0/2.1, Claude Code and Claude Chat are heavily standardized to automatically discover those endpoints, route the user for consent, and manage the resulting tokens behind the scenes.
View source details for citation from GitHub. Opens side panel.
Sources
Sources
Enter a prompt for Gemini
encrypted
Enter a prompt for Gemini
encrypted
Open upload file menu
Tools
Open mode picker
Pro
Microphone
Your Jiminny chats aren’t used to improve our models. Gemini is AI and can make mistakes, including about people.
Your privacy & Gemini Opens in a new window
Your privacy & Gemini
Opens in a new window
Summarize page
Summarize page
Skip to:
Top Bar
Top Bar
Sidebar
Sidebar
Main Content
Main Content
Collapse sidebar Ctrl [
Collapse sidebar
Ctrl
[
Switch sites or apps
Switch sites or apps
Confluence
Search, press enter to navigate to advanced search with your text query
Create
Create
Rovo Ask Rovo
Ask Rovo
Notifications
Notifications
Help
Help
[EMAIL]
[EMAIL]
For you
For you
Recent
Recent
Starred
Starred
Spaces
Spaces
Apps
Apps
Product
Product
More actions
More actions
Back to top
Back to top
Content
Content
Create Create
Create
Change view
Change view
Search by title
Results will update as you type.
Product Strategy 2025+ Change emoji
Product Strategy 2025+
Product Strategy 2025+
Competitive analysis Change emoji
Competitive analysis
Competitive analysis
Ways of working - Product processes Change emoji
Ways of working - Product processes
Ways of working - Product processes
Core Product Performance Metrics 📈
Core Product Performance Metrics
📈
Core Product Performance Metrics
Product Documentation Change emoji
Product Documentation
Product Documentation
Product Briefs Change emoji
Product Briefs
Product Briefs
Change emoji Activity Export
Activity Export
Change emoji Autologging activities
Autologging activities
Deal Insights - Multiple currencies
Deal Insights - Multiple currencies
Reinvent Themes & Topics (and ACS)
Reinvent Themes & Topics (and ACS)
Change emoji Billing Portal
Billing Portal
Change emoji Upload Video/Audio Recordings
Upload Video/Audio Recordings
White-Label Jiminny Instance
White-Label Jiminny Instance
Win/Loss Analysis for a Deal
Win/Loss Analysis for a Deal
Change emoji Hubspot app
Hubspot app
Change emoji Automatically hard delete data for churned customers
Automatically hard delete data for churned customers
Change emoji Ask Jiminny Anything on Call level
Ask Jiminny Anything on Call level
Change emoji Ask Jiminny for Open and Closed Deals
Ask Jiminny for Open and Closed Deals
Change emoji Ask Jiminny Anything on Deal level
Ask Jiminny Anything on Deal level
Change emoji Automatically record all calendar meetings
Automatically record all calendar meetings
Change emoji Product Tiering
Product Tiering
Change emoji Recording Consent
Recording Consent
Change emoji Automated CRM Filling
Automated CRM Filling
Change emoji Automated Exec Reports
Automated Exec Reports
Change emoji Auto-detect Activity Type
Auto-detect Activity Type
AI Signals & Alerts
AI Signals & Alerts
Change emoji AJA on Anything
AJA on Anything
Change emoji AI Call Scoring
AI Call Scoring
Jiminny MCP Connector
Jiminny MCP Connector
Desktop app to record a meetings without visible Notetaker
Desktop app to record a meetings without visible Notetaker
Feedback Change emoji
Feedback
Feedback
Research & User Feedback Change emoji
Research & User Feedback
Research & User Feedback
Create
Create
Jira , (opens new window)
Jira
, (opens new window)
Teams , (opens new window)
Teams
, (opens new window)
open menu
open menu
More
More
Side Navigation Drag Handle
Breadcrumbs
Jiminny MCP Connector
Updated 10m ago
Updated 10m ago
Edit this content
Edit
Share, Open - Anyone in the space can edit
Share
Copy link
Copy link
More actions
More actions
Jiminny MCP Connector
Jiminny MCP Connector
Jiminny MCP Connector
By Galya Dimitrova
By Galya Dimitrova
Read time 12 min
12 min
Views 14
14
Add a reaction
Add a reaction
Epic
Link to Epik in Jira
Document status
DRAFT
Epic
Document status
Link to Epik in Jira
DRAFT
Change emoji Objective
Objective
Change emoji Objective
Enable customers to connect Jiminny data to external AI tools (Claude, OpenAI, Gemini) so it can be used as part of their broader knowledge base and workflows.
Position Jiminny as a
data layer for AI-driven revenue workflows
, not just a standalone product.
👤 Target user
👤 Target user
👤 Target user
Revenue teams using AI tools (Sales,
CS
, RevOps)
Companies already experimenting with Claude / OpenAI
Mid-market & Enterprise customers with multiple data sources (CRM, docs, CI tools, Support tools etc)
🤕 Pain point or problem
🤕
🤕
Pain point or problem
🤕 Pain point or problem
Jiminny data is locked in the platform
AI tools lack access to high-value conversation context
Customers must manually export/copy transcripts
No easy way to combine calls with CRM + docs + other info - using the Jiminny API is not suitable for non technical sales people
Peer pressure as almost all competitors have this
💥 Impact and benefits
💥
💥
Impact and benefits
💥 Impact and benefits
For customers
For customers
For customers
Better AI outputs using real customer conversations
Ability to build automated workflows across tools
For Jiminny
For Jiminny
For Jiminny
Increased product stickiness (embedded in workflows)
Competitive parity with Gong / Avoma etc.
💡 Solution ideas
💡
💡
Solution ideas
💡 Solution ideas
Build an
AI Knowledge Connector (
MCP
-based)
that:
Exposes Jiminny data (calls, transcripts, metadata) to AI tools
Provides
structured insights
(summaries, action items, scoring etc.)
Supports
deal-level context
Allows integration into customer-owned AI stacks (Claude + Zapier, etc.)
Change emoji Success metrics
Success metrics
Change emoji Success metrics
List the key goals and how you will measure success. Include both qualitative and quantitative metrics (e.g., user adoption, retention rate, revenue targets).
Goal
No sort applied to the column
Metric
No sort applied to the column
Increase stickiness by ensuring Jiminny is embedded in the customer’s workflows
% of customers connecting external AI tools
Number of
MCP
/API calls per customer - and which ones are being used the most
Decrease the manual copying of transcripts
decrease by X %
Goal
No sort applied to the column
Increase stickiness by ensuring Jiminny is embedded in the customer’s workflows
Decrease the manual copying of transcripts
Metric
No sort applied to the column
% of customers connecting external AI tools
Number of
MCP
/API calls per customer - and which ones are being used the most
decrease by X %
Change emoji User interaction and design
User interaction and design
Change emoji User interaction and design
Simple setup flow:
Generate API key / connect
MCP
Clear instructions for Claude / Zapier setup
Provide:
Example prompts for Claude
Pre-built workflow templates for Zapier
Clear documentation - with use cases
👉 Focus:
usable by non-technical users
Change emoji Detailed Requirements
Detailed Requirements
Change emoji Detailed Requirements
List the functional and non-functional requirements. Prioritize them (e.g., High, Medium, Low) and add notes for clarification.
Requirement
No sort applied to the column
Importance
No sort applied to the column
Notes
No sort applied to the column
Requirement
No sort applied to the column
Importance
No sort applied to the column
Notes
No sort applied to the column
Requirement
No sort applied to the column
Importance
No sort applied to the column
Notes
No sort applied to the column
Allow customers to connect Jiminny to their AI tools (e.g. Claude, OpenAI)
HIGH
Provide
MCP
endpoint so customers can easily integrate Jiminny into their AI stack
Allow customers to access call data through AI tools
HIGH
Expose Jiminny data:
list calls (filter by date, user, account, deal)
get call
get transcript (speaker-separated)
get call metadata
search calls (keyword + semantic)
Support filtering by:
account / contact/ lead / deal
jiminny user
date range
Allow customers to search and query calls using AI tools
HIGH
Support keyword and semantic search across conversations
Provide structured insights so customers can generate better outputs
HIGH...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira","depth":4,"bounds":{"left":0.28307846,"top":0.0518755,"width":0.07596409,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"SevenShores\\Hubspot\\Exceptions\\BadRequest: Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response: {\"status\":\"error\",\"message\":\"You have reached your secondly limit.\",\"errorType\":\"RATE_LIMIT","depth":4,"bounds":{"left":0.28125,"top":0.09497207,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SevenShores\\Hubspot\\Exceptions\\BadRequest: Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response: {\"status\":\"error\",\"message\":\"You have reached your secondly limit.\",\"errorType\":\"RATE_LIMIT","depth":5,"bounds":{"left":0.2945479,"top":0.10614525,"width":0.4644282,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20372] AI Reports > Empty page design and promotion - Jira","depth":4,"bounds":{"left":0.28125,"top":0.12769353,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20372] AI Reports > Empty page design and promotion - Jira","depth":5,"bounds":{"left":0.2945479,"top":0.13886672,"width":0.11319814,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny MCP Connector - Product - Confluence","depth":4,"bounds":{"left":0.28125,"top":0.16041501,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny MCP Connector - Product - Confluence","depth":5,"bounds":{"left":0.2945479,"top":0.17158818,"width":0.08294548,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny","depth":4,"bounds":{"left":0.28125,"top":0.19313647,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny","depth":5,"bounds":{"left":0.2945479,"top":0.20430966,"width":0.013131649,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Workers | Datadog","depth":4,"bounds":{"left":0.28125,"top":0.22585794,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Workers | Datadog","depth":5,"bounds":{"left":0.2945479,"top":0.23703113,"width":0.032081116,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pull requests · jiminny/app","depth":4,"bounds":{"left":0.28125,"top":0.2585794,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pull requests · jiminny/app","depth":5,"bounds":{"left":0.2945479,"top":0.2697526,"width":0.04537899,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20728] [HubSpot] Find the root cause of 429 hit and tweak API client rate limiter - Jira","depth":4,"bounds":{"left":0.28125,"top":0.29130086,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20728] [HubSpot] Find the root cause of 429 hit and tweak API client rate limiter - Jira","depth":5,"bounds":{"left":0.2945479,"top":0.30247405,"width":0.15791224,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-9712 | Nuges to expire after one year by nikolaybiaivanov · Pull Request #11981 · jiminny/app","depth":4,"bounds":{"left":0.28125,"top":0.32402235,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-9712 | Nuges to expire after one year by nikolaybiaivanov · Pull Request #11981 · jiminny/app","depth":5,"bounds":{"left":0.2945479,"top":0.33519554,"width":0.16555852,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny","depth":4,"bounds":{"left":0.28125,"top":0.3567438,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny","depth":5,"bounds":{"left":0.2945479,"top":0.367917,"width":0.013131649,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"CloudWatch | us-east-2","depth":4,"bounds":{"left":0.28125,"top":0.38946527,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CloudWatch | us-east-2","depth":5,"bounds":{"left":0.2945479,"top":0.40063846,"width":0.041223403,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Your 'Not enpough activities' report wasn't generated - lukas.kovalik@jiminny.com - Jiminny Mail","depth":4,"bounds":{"left":0.28125,"top":0.42218676,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Your 'Not enpough activities' report wasn't generated - lukas.kovalik@jiminny.com - Jiminny Mail","depth":5,"bounds":{"left":0.2945479,"top":0.43335995,"width":0.16821809,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny MCP Connector - Product - Confluence","depth":4,"bounds":{"left":0.28125,"top":0.45490822,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Jiminny MCP Connector - Product - Confluence","depth":5,"bounds":{"left":0.2945479,"top":0.4660814,"width":0.08294548,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.34857047,"top":0.46209097,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"New Tab","depth":4,"bounds":{"left":0.2840758,"top":0.48922586,"width":0.07413564,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"bounds":{"left":0.2840758,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Close Google Gemini (⌃X)","depth":6,"bounds":{"left":0.29504654,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Tabs from other devices","depth":6,"bounds":{"left":0.30618352,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"bounds":{"left":0.31732047,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"bounds":{"left":0.32845744,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Chat settings","depth":7,"bounds":{"left":0.4659242,"top":0.055067837,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":7,"bounds":{"left":0.47789228,"top":0.055067837,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"WORK, Google Account: lukas.kovalik@jiminny.com","depth":12,"bounds":{"left":0.47523272,"top":0.103751,"width":0.013297873,"height":0.031923383},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Main menu","depth":12,"bounds":{"left":0.3648604,"top":0.103751,"width":0.013297873,"height":0.031923383},"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"New Chat","depth":12,"bounds":{"left":0.44730717,"top":0.103751,"width":0.013297873,"height":0.031923383},"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Open menu for conversation actions.","depth":12,"bounds":{"left":0.46060506,"top":0.103751,"width":0.013297873,"height":0.031923383},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"Conversation with Gemini","depth":15,"bounds":{"left":0.36053857,"top":0.14764565,"width":0.0003324468,"height":0.0007980846},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Conversation with Gemini","depth":16,"bounds":{"left":0.36053857,"top":0.15003991,"width":0.1200133,"height":0.025538707},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy prompt","depth":21,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit","depth":21,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"You said what is the oauth required for mcp for clauide code and claude chat","depth":21,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"You said","depth":23,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"what is the oauth required for mcp for clauide code and claude chat","depth":23,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Listen","depth":22,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Show more options","depth":20,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Show thinking","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Gemini said","depth":20,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Gemini said","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"To understand the OAuth requirements for the Model Context Protocol (MCP) in Claude Code and Claude Chat, it helps to look at how MCP handles secure connections.","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"MCP acts as a universal \"USB port\" that allows AI models to connect to external data sources and tools.","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"When connecting to remote, HTTP-based MCP servers, Anthropic relies on the","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"OAuth 2.1","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"authorization framework.","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"This ensures that Claude can access your protected tools securely using temporary tokens, rather than requiring you to copy and paste long-lived API keys, passwords, or configuration secrets.","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"View source details for citations from Stytch, Model Context Protocol, and Zuplo. Opens side panel.","depth":24,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"+2","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Here is exactly what is required and how OAuth is handled across both environments.","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"The Underlying OAuth Flow for MCP","depth":23,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"The Underlying OAuth Flow for MCP","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Whether you are using Claude Code or Claude Chat, the underlying architecture is identical.","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"The Claude application acts as the","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"OAuth Client","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", and the remote tool you are connecting to acts as the","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Resource Server","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"View source details for citation from Model Context Protocol. Opens side panel.","depth":24,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"To build or connect to an MCP server, the OAuth integration must support this standard discovery and token exchange flow:","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Initial Handshake (Discovery):","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Claude attempts to connect to the MCP server without credentials. The server must reject this with a","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"401 Unauthorized","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"HTTP status and include a","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"WWW-Authenticate","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"header pointing to a Protected Resource Metadata (PRM) document.","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Metadata Fetch:","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Claude reads the PRM document to locate your specific Authorization Server (e.g., Okta, Auth0, Clerk, or a custom auth server).","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"View source details for citation from Model Context Protocol. Opens side panel.","depth":26,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"User Consent:","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Claude prompts the user to authenticate.","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"The user is temporarily redirected to a browser window to log in and explicitly grant permission (e.g., \"Allow Claude to access your GitHub repositories\").","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"View source details for citations from GitHub and Model Context Protocol. Opens side panel.","depth":26,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"+1","depth":28,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Token Exchange:","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Claude receives a temporary authorization code via a redirect, which it silently exchanges for a long-lived access token.","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"View source details for citation from Upstash. Opens side panel.","depth":26,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Access Granted:","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Claude now includes this token in the header of subsequent requests to invoke tools and read data on your behalf.","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"View source details for citation from Model Context Protocol. Opens side panel.","depth":26,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"MCP OAuth in Claude Code","depth":23,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"MCP OAuth in Claude Code","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Claude Code is Anthropic's command-line interface (CLI) tool for software engineering. When you connect Claude Code to a protected remote MCP server, the OAuth flow is adapted for the terminal:","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Browser Handoff:","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"When Claude Code hits an MCP server that requires OAuth, it will generate a secure authorization link and automatically open your default desktop web browser (or output the URL to the terminal for headless environments).","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Authentication:","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Once you log in and approve access in the browser, the authorization server redirects the payload back to a local loopback port managed by Claude Code, handing off the authorization code.","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"View source details for citation from Model Context Protocol. Opens side panel.","depth":26,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Alternative (Static Headers):","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"If setting up a full OAuth 2.1 server is too complex for a quick internal tool, Claude Code also allows you to bypass the browser flow by injecting static bearer tokens directly via the CLI.","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"You can do this using the","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--header","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"flag (e.g.,","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"claude mcp add my-server --transport http --header \"Authorization: Bearer your-token\"","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":").","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"View source details for citation from TrueFoundry. Opens side panel.","depth":26,"bounds":{"left":0.38314494,"top":0.0,"width":0.008643617,"height":0.015961692},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"MCP OAuth in Claude Chat (Claude Desktop & Web)","depth":23,"bounds":{"left":0.3695146,"top":0.0,"width":0.11635638,"height":0.03830806},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"MCP OAuth in Claude Chat (Claude Desktop & Web)","depth":24,"bounds":{"left":0.3695146,"top":0.0,"width":0.11552527,"height":0.035514764},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\"Claude Chat\" encompasses the visual interfaces—both the Claude Desktop application and the Claude.ai web platform.","depth":24,"bounds":{"left":0.3695146,"top":0.015961692,"width":0.105053194,"height":0.057861134},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Claude.ai (Web Custom Connectors):","depth":26,"bounds":{"left":0.38115028,"top":0.08459697,"width":0.09541223,"height":0.016360734},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"When you add a remote MCP server via the \"Custom Connectors\" menu in your settings, Claude.ai handles the OAuth flow entirely in the browser. You simply paste the MCP server URL. Claude automatically parses the 401 discovery response and redirects you to the third-party service to grant permission, before seamlessly dropping you back into your chat session.","depth":26,"bounds":{"left":0.38115028,"top":0.08459697,"width":0.10472074,"height":0.20311253},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Claude Desktop:","depth":26,"bounds":{"left":0.38115028,"top":0.29848364,"width":0.042719416,"height":0.016360734},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Claude Desktop traditionally relies on a local configuration file (","depth":26,"bounds":{"left":0.38115028,"top":0.29848364,"width":0.101894945,"height":0.057861134},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"claude_desktop_config.json","depth":27,"bounds":{"left":0.39378324,"top":0.34118116,"width":0.07247341,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"). While local stdio servers often require pasting API keys into this file, remote HTTP MCP servers utilizing OAuth eliminate this security risk.","depth":26,"bounds":{"left":0.38115028,"top":0.33998403,"width":0.10405585,"height":0.09936153},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"When Claude Desktop encounters an OAuth-protected server, it pops open your system's default browser to capture your consent.","depth":26,"bounds":{"left":0.38115028,"top":0.42298484,"width":0.1008976,"height":0.07861133},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"It then stores the resulting token securely in your operating system's native keychain or credential manager, keeping your","depth":26,"bounds":{"left":0.38115028,"top":0.48523542,"width":0.10305851,"height":0.07861133},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"config.json","depth":27,"bounds":{"left":0.43932846,"top":0.54868317,"width":0.030751329,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"free of sensitive plaintext passwords.","depth":26,"bounds":{"left":0.38115028,"top":0.547486,"width":0.103390954,"height":0.037110932},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"View source details for citation from GitHub. Opens side panel.","depth":26,"bounds":{"left":0.46126994,"top":0.5686353,"width":0.008643617,"height":0.015961692},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"The Bottom Line:","depth":24,"bounds":{"left":0.3695146,"top":0.6017558,"width":0.044215426,"height":0.016360734},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"You do not need to build a bespoke authentication protocol for MCP.","depth":24,"bounds":{"left":0.3695146,"top":0.6017558,"width":0.109707445,"height":0.037110932},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"If your external tool already utilizes standard OpenID Connect or OAuth 2.0/2.1, Claude Code and Claude Chat are heavily standardized to automatically discover those endpoints, route the user for consent, and manage the resulting tokens behind the scenes.","depth":24,"bounds":{"left":0.3695146,"top":0.62250596,"width":0.115192816,"height":0.14086193},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"View source details for citation from GitHub. Opens side panel.","depth":24,"bounds":{"left":0.4348404,"top":0.74740624,"width":0.008643617,"height":0.015961692},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Sources","depth":23,"bounds":{"left":0.36685506,"top":0.78451717,"width":0.036402926,"height":0.031923383},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Sources","depth":25,"bounds":{"left":0.37982047,"top":0.7932961,"width":0.017785905,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextArea","text":"Enter a prompt for Gemini\nencrypted","depth":20,"bounds":{"left":0.37416887,"top":0.8104549,"width":0.10638298,"height":0.01915403},"value":"Enter a prompt for Gemini\nencrypted","help_text":"","role_description":"text entry area","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enter a prompt for Gemini","depth":21,"bounds":{"left":0.38081783,"top":0.81085396,"width":0.069980055,"height":0.018355945},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"encrypted","depth":21,"bounds":{"left":0.37317154,"top":0.8104549,"width":0.0066489363,"height":0.01915403},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Open upload file menu","depth":20,"bounds":{"left":0.37017953,"top":0.8447725,"width":0.013297873,"height":0.031923383},"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tools","depth":18,"bounds":{"left":0.38613698,"top":0.8447725,"width":0.013297873,"height":0.031923383},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open mode picker","depth":20,"bounds":{"left":0.4431516,"top":0.8439745,"width":0.026097074,"height":0.031923383},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pro","depth":23,"bounds":{"left":0.44847074,"top":0.8527534,"width":0.007480053,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Microphone","depth":19,"bounds":{"left":0.47124335,"top":0.8439745,"width":0.013297873,"height":0.031923383},"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Your Jiminny chats aren’t used to improve our models. Gemini is AI and can make mistakes, including about people.","depth":17,"bounds":{"left":0.3665226,"top":0.896249,"width":0.12167553,"height":0.025139665},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Your privacy & Gemini Opens in a new window","depth":17,"bounds":{"left":0.40724733,"top":0.92178774,"width":0.040226065,"height":0.012370312},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Your privacy & Gemini","depth":18,"bounds":{"left":0.40724733,"top":0.92178774,"width":0.040226065,"height":0.012370312},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Opens in a new window","depth":19,"bounds":{"left":0.36053857,"top":0.92098963,"width":0.043218084,"height":0.012370312},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Summarize page","depth":7,"bounds":{"left":0.36619017,"top":0.95730245,"width":0.053523935,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Summarize page","depth":9,"bounds":{"left":0.37184176,"top":0.96249,"width":0.042220745,"height":0.015163607},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Skip to:","depth":10,"bounds":{"left":0.50731385,"top":0.07861133,"width":0.016954787,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Top Bar","depth":11,"bounds":{"left":0.50731385,"top":0.097765364,"width":0.016954787,"height":0.01396648},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Top Bar","depth":12,"bounds":{"left":0.50731385,"top":0.097765364,"width":0.016954787,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Sidebar","depth":11,"bounds":{"left":0.50731385,"top":0.11691939,"width":0.016954787,"height":0.01396648},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Sidebar","depth":12,"bounds":{"left":0.50731385,"top":0.11691939,"width":0.016954787,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Main Content","depth":11,"bounds":{"left":0.50731385,"top":0.13607343,"width":0.029421542,"height":0.01396648},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Main Content","depth":12,"bounds":{"left":0.50731385,"top":0.13607343,"width":0.029421542,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse sidebar Ctrl [","depth":10,"bounds":{"left":0.5006649,"top":0.057861134,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Collapse sidebar","depth":12,"bounds":{"left":0.50581783,"top":0.066640064,"width":0.03673537,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ctrl","depth":13,"bounds":{"left":0.5465425,"top":0.066640064,"width":0.007978723,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"[","depth":13,"bounds":{"left":0.5611702,"top":0.066640064,"width":0.0016622341,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Switch sites or apps","depth":12,"bounds":{"left":0.51263297,"top":0.057861134,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Switch sites or apps","depth":14,"bounds":{"left":0.5177859,"top":0.06344773,"width":0.044215426,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Confluence","depth":10,"bounds":{"left":0.5259308,"top":0.057861134,"width":0.029421542,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXComboBox","text":"Search, press enter to navigate to advanced search with your text query","depth":11,"bounds":{"left":0.62400264,"top":0.06264964,"width":0.22140957,"height":0.015961692},"help_text":"","placeholder":"Search Confluence, Jira, Google Drive and other apps","role_description":"combo box","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Create","depth":10,"bounds":{"left":0.8537234,"top":0.057861134,"width":0.030086435,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create","depth":12,"bounds":{"left":0.8650266,"top":0.06384677,"width":0.014793883,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Rovo Ask Rovo","depth":13,"bounds":{"left":0.92420214,"top":0.057861134,"width":0.036070477,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Rovo","depth":15,"bounds":{"left":0.93550533,"top":0.06384677,"width":0.020777926,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Notifications","depth":13,"bounds":{"left":0.9616024,"top":0.057861134,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Notifications","depth":15,"bounds":{"left":0.96675533,"top":0.06344773,"width":0.027759308,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Help","depth":13,"bounds":{"left":0.97357047,"top":0.057861134,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Help","depth":15,"bounds":{"left":0.9787234,"top":0.06344773,"width":0.010139627,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"lukas.kovalik@jiminny.com","depth":13,"bounds":{"left":0.98553854,"top":0.057861134,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"lukas.kovalik@jiminny.com","depth":15,"bounds":{"left":0.9906915,"top":0.06344773,"width":0.009308517,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"For you","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"For you","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Recent","depth":13,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Recent","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Starred","depth":13,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Starred","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Spaces","depth":13,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Spaces","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Apps","depth":13,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Apps","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Product","depth":13,"bounds":{"left":0.5006649,"top":0.09976058,"width":0.15392287,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Product","depth":16,"bounds":{"left":0.5113032,"top":0.10574621,"width":0.017453458,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions","depth":14,"bounds":{"left":0.6452792,"top":0.10295291,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More actions","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Back to top","depth":11,"bounds":{"left":0.5568484,"top":0.1396648,"width":0.04155585,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Back to top","depth":13,"bounds":{"left":0.5696476,"top":0.14644852,"width":0.021276595,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Content","depth":12,"bounds":{"left":0.5006649,"top":0.0,"width":0.15392287,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"Content","depth":15,"bounds":{"left":0.5113032,"top":0.0,"width":0.01761968,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Create Create","depth":14,"bounds":{"left":0.63730055,"top":0.0,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Create","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Change view","depth":13,"bounds":{"left":0.6452792,"top":0.0,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Change view","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Search by title","depth":15,"bounds":{"left":0.51163566,"top":0.005586592,"width":0.14261968,"height":0.022346368},"role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Results will update as you type.","depth":15,"bounds":{"left":0.50332445,"top":0.00518755,"width":0.06931516,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Product Strategy 2025+ Change emoji","depth":16,"bounds":{"left":0.5046542,"top":0.035913806,"width":0.14993352,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Product Strategy 2025+","depth":17,"bounds":{"left":0.50598407,"top":0.039106146,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Product Strategy 2025+","depth":19,"bounds":{"left":0.52393615,"top":0.041899443,"width":0.053523935,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Competitive analysis Change emoji","depth":16,"bounds":{"left":0.5046542,"top":0.061452515,"width":0.14993352,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Competitive analysis","depth":17,"bounds":{"left":0.50598407,"top":0.06464485,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Competitive analysis","depth":19,"bounds":{"left":0.52393615,"top":0.06743815,"width":0.046210106,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Ways of working - Product processes Change emoji","depth":16,"bounds":{"left":0.5046542,"top":0.08699122,"width":0.14993352,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Ways of working - Product processes","depth":17,"bounds":{"left":0.50598407,"top":0.090183556,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Ways of working - Product processes","depth":19,"bounds":{"left":0.52393615,"top":0.09297685,"width":0.08361037,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Core Product Performance Metrics 📈","depth":16,"bounds":{"left":0.5046542,"top":0.112529926,"width":0.14993352,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Core Product Performance Metrics","depth":17,"bounds":{"left":0.50598407,"top":0.11572227,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"📈","depth":18,"bounds":{"left":0.5159575,"top":0.118515566,"width":0.004654255,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Core Product Performance Metrics","depth":19,"bounds":{"left":0.52393615,"top":0.118515566,"width":0.0774601,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Product Documentation Change emoji","depth":16,"bounds":{"left":0.5046542,"top":0.13806863,"width":0.14993352,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Product Documentation","depth":17,"bounds":{"left":0.50598407,"top":0.14126097,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Product Documentation","depth":19,"bounds":{"left":0.52393615,"top":0.14405426,"width":0.05269282,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Product Briefs Change emoji","depth":16,"bounds":{"left":0.5046542,"top":0.16360734,"width":0.14993352,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Product Briefs","depth":17,"bounds":{"left":0.50598407,"top":0.16679968,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"Product Briefs","depth":19,"bounds":{"left":0.52393615,"top":0.16959298,"width":0.03174867,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Change emoji Activity Export","depth":18,"bounds":{"left":0.5099734,"top":0.18914606,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Activity Export","depth":21,"bounds":{"left":0.52925533,"top":0.19513169,"width":0.03274601,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Change emoji Autologging activities","depth":18,"bounds":{"left":0.5099734,"top":0.21468475,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Autologging activities","depth":21,"bounds":{"left":0.52925533,"top":0.22067039,"width":0.048204787,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Deal Insights - Multiple currencies","depth":18,"bounds":{"left":0.5099734,"top":0.24022347,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Deal Insights - Multiple currencies","depth":21,"bounds":{"left":0.52925533,"top":0.2462091,"width":0.076961435,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Reinvent Themes & Topics (and ACS)","depth":18,"bounds":{"left":0.5099734,"top":0.26576218,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reinvent Themes & Topics (and ACS)","depth":21,"bounds":{"left":0.52925533,"top":0.2717478,"width":0.082446806,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Change emoji Billing Portal","depth":18,"bounds":{"left":0.5099734,"top":0.29130086,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Billing Portal","depth":21,"bounds":{"left":0.52925533,"top":0.2972865,"width":0.027759308,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Change emoji Upload Video/Audio Recordings","depth":18,"bounds":{"left":0.5099734,"top":0.31683958,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Upload Video/Audio Recordings","depth":21,"bounds":{"left":0.52925533,"top":0.32282522,"width":0.0709774,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"White-Label Jiminny Instance","depth":18,"bounds":{"left":0.5099734,"top":0.3423783,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"White-Label Jiminny Instance","depth":21,"bounds":{"left":0.52925533,"top":0.34836394,"width":0.066821806,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Win/Loss Analysis for a Deal","depth":18,"bounds":{"left":0.5099734,"top":0.367917,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Win/Loss Analysis for a Deal","depth":21,"bounds":{"left":0.52925533,"top":0.37390262,"width":0.06349734,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Change emoji Hubspot app","depth":18,"bounds":{"left":0.5099734,"top":0.3934557,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Hubspot app","depth":21,"bounds":{"left":0.52925533,"top":0.39944133,"width":0.028590426,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Change emoji Automatically hard delete data for churned customers","depth":18,"bounds":{"left":0.5099734,"top":0.41899443,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Automatically hard delete data for churned customers","depth":21,"bounds":{"left":0.52925533,"top":0.42498004,"width":0.11968085,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Change emoji Ask Jiminny Anything on Call level","depth":18,"bounds":{"left":0.5099734,"top":0.4445331,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Jiminny Anything on Call level","depth":21,"bounds":{"left":0.52925533,"top":0.45051876,"width":0.076296546,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Change emoji Ask Jiminny for Open and Closed Deals","depth":18,"bounds":{"left":0.5099734,"top":0.47007182,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Jiminny for Open and Closed Deals","depth":21,"bounds":{"left":0.52925533,"top":0.47605747,"width":0.087765954,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Change emoji Ask Jiminny Anything on Deal level","depth":18,"bounds":{"left":0.5099734,"top":0.49561054,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Jiminny Anything on Deal level","depth":21,"bounds":{"left":0.52925533,"top":0.50159615,"width":0.077792555,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Change emoji Automatically record all calendar meetings","depth":18,"bounds":{"left":0.5099734,"top":0.5211492,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Automatically record all calendar meetings","depth":21,"bounds":{"left":0.52925533,"top":0.5271349,"width":0.094913565,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Change emoji Product Tiering","depth":18,"bounds":{"left":0.5099734,"top":0.54668796,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Product Tiering","depth":21,"bounds":{"left":0.52925533,"top":0.5526736,"width":0.034408245,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Change emoji Recording Consent","depth":18,"bounds":{"left":0.5099734,"top":0.57222664,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Recording Consent","depth":21,"bounds":{"left":0.52925533,"top":0.57821226,"width":0.04255319,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Change emoji Automated CRM Filling","depth":18,"bounds":{"left":0.5099734,"top":0.5977654,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Automated CRM Filling","depth":21,"bounds":{"left":0.52925533,"top":0.603751,"width":0.05069814,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Change emoji Automated Exec Reports","depth":18,"bounds":{"left":0.5099734,"top":0.62330407,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Automated Exec Reports","depth":21,"bounds":{"left":0.52925533,"top":0.6292897,"width":0.054853722,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Change emoji Auto-detect Activity Type","depth":18,"bounds":{"left":0.5099734,"top":0.64884275,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Auto-detect Activity Type","depth":21,"bounds":{"left":0.52925533,"top":0.6548284,"width":0.05718085,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"AI Signals & Alerts","depth":18,"bounds":{"left":0.5099734,"top":0.6743815,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AI Signals & Alerts","depth":21,"bounds":{"left":0.52925533,"top":0.6803671,"width":0.04155585,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Change emoji AJA on Anything","depth":18,"bounds":{"left":0.5099734,"top":0.6999202,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AJA on Anything","depth":21,"bounds":{"left":0.52925533,"top":0.70590585,"width":0.03723404,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Change emoji AI Call Scoring","depth":18,"bounds":{"left":0.5099734,"top":0.7254589,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AI Call Scoring","depth":21,"bounds":{"left":0.52925533,"top":0.73144454,"width":0.03357713,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny MCP Connector","depth":18,"bounds":{"left":0.5099734,"top":0.7509976,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny MCP Connector","depth":21,"bounds":{"left":0.52925533,"top":0.7569832,"width":0.053856384,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Desktop app to record a meetings without visible Notetaker","depth":18,"bounds":{"left":0.5099734,"top":0.7765363,"width":0.14461437,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Desktop app to record a meetings without visible Notetaker","depth":21,"bounds":{"left":0.52925533,"top":0.78252196,"width":0.13164894,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Feedback Change emoji","depth":16,"bounds":{"left":0.5046542,"top":0.802075,"width":0.14993352,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Feedback","depth":17,"bounds":{"left":0.50598407,"top":0.80526733,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Feedback","depth":19,"bounds":{"left":0.52393615,"top":0.80806065,"width":0.021775266,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Research & User Feedback Change emoji","depth":16,"bounds":{"left":0.5046542,"top":0.8276137,"width":0.14993352,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Research & User Feedback","depth":17,"bounds":{"left":0.50598407,"top":0.8308061,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Research & User Feedback","depth":19,"bounds":{"left":0.52393615,"top":0.8335994,"width":0.059840426,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create","depth":16,"bounds":{"left":0.5046542,"top":0.85315245,"width":0.14993352,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create","depth":19,"bounds":{"left":0.5152925,"top":0.8591381,"width":0.014793883,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jira , (opens new window)","depth":14,"bounds":{"left":0.5006649,"top":0.9042298,"width":0.15392287,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jira","depth":18,"bounds":{"left":0.5113032,"top":0.9102155,"width":0.00831117,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":16,"bounds":{"left":0.5006649,"top":0.91779727,"width":0.04837101,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Teams , (opens new window)","depth":14,"bounds":{"left":0.5006649,"top":0.92976856,"width":0.15392287,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Teams","depth":18,"bounds":{"left":0.5113032,"top":0.9357542,"width":0.014793883,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":16,"bounds":{"left":0.5006649,"top":0.943336,"width":0.04837101,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"open menu","depth":15,"bounds":{"left":0.64328456,"top":0.93296087,"width":0.0039893617,"height":0.01915403},"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"open menu","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More","depth":13,"bounds":{"left":0.5006649,"top":0.9648843,"width":0.15392287,"height":0.025538707},"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More","depth":16,"bounds":{"left":0.5113032,"top":0.9708699,"width":0.011469414,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Side Navigation Drag Handle","depth":14,"bounds":{"left":0.71043885,"top":0.0981644,"width":0.0631649,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Breadcrumbs","depth":15,"bounds":{"left":0.66289896,"top":0.09936153,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Jiminny MCP Connector","depth":17,"bounds":{"left":0.68417555,"top":0.105347164,"width":0.0546875,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Updated 10m ago","depth":16,"bounds":{"left":0.84541225,"top":0.105347164,"width":0.03873005,"height":0.01396648},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Updated 10m ago","depth":17,"bounds":{"left":0.84541225,"top":0.105347164,"width":0.03873005,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Edit this content","depth":16,"bounds":{"left":0.91738695,"top":0.09936153,"width":0.023603724,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Edit","depth":18,"bounds":{"left":0.92869014,"top":0.105347164,"width":0.00831117,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Share, Open - Anyone in the space can edit","depth":16,"bounds":{"left":0.94298536,"top":0.09936153,"width":0.02825798,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Share","depth":18,"bounds":{"left":0.95428854,"top":0.105347164,"width":0.012965426,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy link","depth":16,"bounds":{"left":0.9709109,"top":0.09936153,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Copy link","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions","depth":15,"bounds":{"left":0.9835439,"top":0.09936153,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More actions","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Jiminny MCP Connector","depth":15,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Jiminny MCP Connector","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Jiminny MCP Connector","depth":16,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXMenuButton","text":"By Galya Dimitrova","depth":13,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"By Galya Dimitrova","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Read time 12 min","depth":13,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"12 min","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Views 14","depth":15,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"14","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add a reaction","depth":14,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Add a reaction","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Epic","depth":23,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Link to Epik in Jira","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Document status","depth":23,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"DRAFT","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Epic","depth":23,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Document status","depth":23,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Link to Epik in Jira","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"DRAFT","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Change emoji Objective","depth":15,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Objective","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Change emoji Objective","depth":16,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enable customers to connect Jiminny data to external AI tools (Claude, OpenAI, Gemini) so it can be used as part of their broader knowledge base and workflows.","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Position Jiminny as a","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"data layer for AI-driven revenue workflows","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", not just a standalone product.","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"👤 Target user","depth":15,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"👤 Target user","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"👤 Target user","depth":16,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Revenue teams using AI tools (Sales,","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CS","depth":19,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", RevOps)","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Companies already experimenting with Claude / OpenAI","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Mid-market & Enterprise customers with multiple data sources (CRM, docs, CI tools, Support tools etc)","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"🤕 Pain point or problem","depth":15,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"🤕","depth":16,"help_text":"https://emojipedia.org/face-with-head-bandage/","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"🤕","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Pain point or problem","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"🤕 Pain point or problem","depth":16,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny data is locked in the platform","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AI tools lack access to high-value conversation context","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Customers must manually export/copy transcripts","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"No easy way to combine calls with CRM + docs + other info - using the Jiminny API is not suitable for non technical sales people","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Peer pressure as almost all competitors have this","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"💥 Impact and benefits","depth":15,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"💥","depth":16,"help_text":"https://emojiterra.com/collision/","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"💥","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Impact and benefits","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"💥 Impact and benefits","depth":16,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"For customers","depth":15,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"For customers","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"For customers","depth":16,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Better AI outputs using real customer conversations","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ability to build automated workflows across tools","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"For Jiminny","depth":15,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"For Jiminny","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"For Jiminny","depth":16,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Increased product stickiness (embedded in workflows)","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Competitive parity with Gong / Avoma etc.","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"💡 Solution ideas","depth":15,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"💡","depth":16,"help_text":"https://emojipedia.org/light-bulb/","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"💡","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Solution ideas","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"💡 Solution ideas","depth":16,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Build an","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AI Knowledge Connector (","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"MCP","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"-based)","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"that:","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Exposes Jiminny data (calls, transcripts, metadata) to AI tools","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Provides","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"structured insights","depth":19,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(summaries, action items, scoring etc.)","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Supports","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"deal-level context","depth":19,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Allows integration into customer-owned AI stacks (Claude + Zapier, etc.)","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Change emoji Success metrics","depth":15,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Success metrics","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Change emoji Success metrics","depth":16,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"List the key goals and how you will measure success. Include both qualitative and quantitative metrics (e.g., user adoption, retention rate, revenue targets).","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Goal","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"No sort applied to the column","depth":20,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Metric","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"No sort applied to the column","depth":20,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Increase stickiness by ensuring Jiminny is embedded in the customer’s workflows","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"% of customers connecting external AI tools","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Number of","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"MCP","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/API calls per customer - and which ones are being used the most","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Decrease the manual copying of transcripts","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"decrease by X %","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Goal","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"No sort applied to the column","depth":20,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Increase stickiness by ensuring Jiminny is embedded in the customer’s workflows","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Decrease the manual copying of transcripts","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Metric","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"No sort applied to the column","depth":20,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"% of customers connecting external AI tools","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Number of","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"MCP","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/API calls per customer - and which ones are being used the most","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"decrease by X %","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Change emoji User interaction and design","depth":15,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"User interaction and design","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Change emoji User interaction and design","depth":16,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Simple setup flow:","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Generate API key / connect","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"MCP","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Clear instructions for Claude / Zapier setup","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Provide:","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Example prompts for Claude","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Pre-built workflow templates for Zapier","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Clear documentation - with use cases","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"👉 Focus:","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"usable by non-technical users","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Change emoji Detailed Requirements","depth":15,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Detailed Requirements","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Change emoji Detailed Requirements","depth":16,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"List the functional and non-functional requirements. Prioritize them (e.g., High, Medium, Low) and add notes for clarification.","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Requirement","depth":22,"bounds":{"left":0.68633646,"top":0.15203512,"width":0.03307846,"height":0.01556265},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"No sort applied to the column","depth":21,"bounds":{"left":0.81133646,"top":0.14604948,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Importance","depth":22,"bounds":{"left":0.82613033,"top":0.15203512,"width":0.030751329,"height":0.01556265},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"No sort applied to the column","depth":21,"bounds":{"left":0.85738033,"top":0.14604948,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notes","depth":22,"bounds":{"left":0.8721742,"top":0.15203512,"width":0.015292553,"height":0.01556265},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"No sort applied to the column","depth":21,"bounds":{"left":0.9645944,"top":0.14604948,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Requirement","depth":22,"bounds":{"left":0.68633646,"top":0.15203512,"width":0.03307846,"height":0.01556265},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"No sort applied to the column","depth":21,"bounds":{"left":0.81133646,"top":0.14604948,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Importance","depth":22,"bounds":{"left":0.82613033,"top":0.15203512,"width":0.030751329,"height":0.01556265},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"No sort applied to the column","depth":21,"bounds":{"left":0.85738033,"top":0.14604948,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notes","depth":22,"bounds":{"left":0.8721742,"top":0.15203512,"width":0.015292553,"height":0.01556265},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"No sort applied to the column","depth":21,"bounds":{"left":0.9645944,"top":0.14604948,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Requirement","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"No sort applied to the column","depth":20,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Importance","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"No sort applied to the column","depth":20,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notes","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"No sort applied to the column","depth":20,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Allow customers to connect Jiminny to their AI tools (e.g. Claude, OpenAI)","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"HIGH","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Provide","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"MCP","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"endpoint so customers can easily integrate Jiminny into their AI stack","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Allow customers to access call data through AI tools","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"HIGH","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Expose Jiminny data:","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"list calls (filter by date, user, account, deal)","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"get call","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"get transcript (speaker-separated)","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"get call metadata","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"search calls (keyword + semantic)","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Support filtering by:","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"account / contact/ lead / deal","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"jiminny user","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"date range","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Allow customers to search and query calls using AI tools","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"HIGH","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Support keyword and semantic search across conversations","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Provide structured insights so customers can generate better outputs","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"HIGH","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
8407610553365276124
|
-1811093946051365147
|
click
|
accessibility
|
NULL
|
Platform Sprint 2 Q2 - Platform Team - Scrum Board Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira
SevenShores\Hubspot\Exceptions\BadRequest: Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response: {"status":"error","message":"You have reached your secondly limit.","errorType":"RATE_LIMIT
SevenShores\Hubspot\Exceptions\BadRequest: Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response: {"status":"error","message":"You have reached your secondly limit.","errorType":"RATE_LIMIT
[JY-20372] AI Reports > Empty page design and promotion - Jira
[JY-20372] AI Reports > Empty page design and promotion - Jira
Jiminny MCP Connector - Product - Confluence
Jiminny MCP Connector - Product - Confluence
Jiminny
Jiminny
Workers | Datadog
Workers | Datadog
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20728] [HubSpot] Find the root cause of 429 hit and tweak API client rate limiter - Jira
[JY-20728] [HubSpot] Find the root cause of 429 hit and tweak API client rate limiter - Jira
JY-9712 | Nuges to expire after one year by nikolaybiaivanov · Pull Request #11981 · jiminny/app
JY-9712 | Nuges to expire after one year by nikolaybiaivanov · Pull Request #11981 · jiminny/app
Jiminny
Jiminny
CloudWatch | us-east-2
CloudWatch | us-east-2
Your 'Not enpough activities' report wasn't generated - [EMAIL] - Jiminny Mail
Your 'Not enpough activities' report wasn't generated - [EMAIL] - Jiminny Mail
Jiminny MCP Connector - Product - Confluence
Jiminny MCP Connector - Product - Confluence
Close tab
New Tab
Customize sidebar
Close Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
AI Chat settings
Close
WORK, Google Account: [EMAIL]
Main menu
New Chat
Open menu for conversation actions.
Conversation with Gemini
Conversation with Gemini
Copy prompt
Edit
You said what is the oauth required for mcp for clauide code and claude chat
You said
what is the oauth required for mcp for clauide code and claude chat
Listen
Show more options
Show thinking
Gemini said
Gemini said
To understand the OAuth requirements for the Model Context Protocol (MCP) in Claude Code and Claude Chat, it helps to look at how MCP handles secure connections.
MCP acts as a universal "USB port" that allows AI models to connect to external data sources and tools.
When connecting to remote, HTTP-based MCP servers, Anthropic relies on the
OAuth 2.1
authorization framework.
This ensures that Claude can access your protected tools securely using temporary tokens, rather than requiring you to copy and paste long-lived API keys, passwords, or configuration secrets.
View source details for citations from Stytch, Model Context Protocol, and Zuplo. Opens side panel.
+2
Here is exactly what is required and how OAuth is handled across both environments.
The Underlying OAuth Flow for MCP
The Underlying OAuth Flow for MCP
Whether you are using Claude Code or Claude Chat, the underlying architecture is identical.
The Claude application acts as the
OAuth Client
, and the remote tool you are connecting to acts as the
Resource Server
.
View source details for citation from Model Context Protocol. Opens side panel.
To build or connect to an MCP server, the OAuth integration must support this standard discovery and token exchange flow:
Initial Handshake (Discovery):
Claude attempts to connect to the MCP server without credentials. The server must reject this with a
401 Unauthorized
HTTP status and include a
WWW-Authenticate
header pointing to a Protected Resource Metadata (PRM) document.
Metadata Fetch:
Claude reads the PRM document to locate your specific Authorization Server (e.g., Okta, Auth0, Clerk, or a custom auth server).
View source details for citation from Model Context Protocol. Opens side panel.
User Consent:
Claude prompts the user to authenticate.
The user is temporarily redirected to a browser window to log in and explicitly grant permission (e.g., "Allow Claude to access your GitHub repositories").
View source details for citations from GitHub and Model Context Protocol. Opens side panel.
+1
Token Exchange:
Claude receives a temporary authorization code via a redirect, which it silently exchanges for a long-lived access token.
View source details for citation from Upstash. Opens side panel.
Access Granted:
Claude now includes this token in the header of subsequent requests to invoke tools and read data on your behalf.
View source details for citation from Model Context Protocol. Opens side panel.
MCP OAuth in Claude Code
MCP OAuth in Claude Code
Claude Code is Anthropic's command-line interface (CLI) tool for software engineering. When you connect Claude Code to a protected remote MCP server, the OAuth flow is adapted for the terminal:
Browser Handoff:
When Claude Code hits an MCP server that requires OAuth, it will generate a secure authorization link and automatically open your default desktop web browser (or output the URL to the terminal for headless environments).
Authentication:
Once you log in and approve access in the browser, the authorization server redirects the payload back to a local loopback port managed by Claude Code, handing off the authorization code.
View source details for citation from Model Context Protocol. Opens side panel.
Alternative (Static Headers):
If setting up a full OAuth 2.1 server is too complex for a quick internal tool, Claude Code also allows you to bypass the browser flow by injecting static bearer tokens directly via the CLI.
You can do this using the
--header
flag (e.g.,
claude mcp add my-server --transport http --header "Authorization: Bearer your-token"
).
View source details for citation from TrueFoundry. Opens side panel.
MCP OAuth in Claude Chat (Claude Desktop & Web)
MCP OAuth in Claude Chat (Claude Desktop & Web)
"Claude Chat" encompasses the visual interfaces—both the Claude Desktop application and the Claude.ai web platform.
Claude.ai (Web Custom Connectors):
When you add a remote MCP server via the "Custom Connectors" menu in your settings, Claude.ai handles the OAuth flow entirely in the browser. You simply paste the MCP server URL. Claude automatically parses the 401 discovery response and redirects you to the third-party service to grant permission, before seamlessly dropping you back into your chat session.
Claude Desktop:
Claude Desktop traditionally relies on a local configuration file (
claude_desktop_config.json
). While local stdio servers often require pasting API keys into this file, remote HTTP MCP servers utilizing OAuth eliminate this security risk.
When Claude Desktop encounters an OAuth-protected server, it pops open your system's default browser to capture your consent.
It then stores the resulting token securely in your operating system's native keychain or credential manager, keeping your
config.json
free of sensitive plaintext passwords.
View source details for citation from GitHub. Opens side panel.
The Bottom Line:
You do not need to build a bespoke authentication protocol for MCP.
If your external tool already utilizes standard OpenID Connect or OAuth 2.0/2.1, Claude Code and Claude Chat are heavily standardized to automatically discover those endpoints, route the user for consent, and manage the resulting tokens behind the scenes.
View source details for citation from GitHub. Opens side panel.
Sources
Sources
Enter a prompt for Gemini
encrypted
Enter a prompt for Gemini
encrypted
Open upload file menu
Tools
Open mode picker
Pro
Microphone
Your Jiminny chats aren’t used to improve our models. Gemini is AI and can make mistakes, including about people.
Your privacy & Gemini Opens in a new window
Your privacy & Gemini
Opens in a new window
Summarize page
Summarize page
Skip to:
Top Bar
Top Bar
Sidebar
Sidebar
Main Content
Main Content
Collapse sidebar Ctrl [
Collapse sidebar
Ctrl
[
Switch sites or apps
Switch sites or apps
Confluence
Search, press enter to navigate to advanced search with your text query
Create
Create
Rovo Ask Rovo
Ask Rovo
Notifications
Notifications
Help
Help
[EMAIL]
[EMAIL]
For you
For you
Recent
Recent
Starred
Starred
Spaces
Spaces
Apps
Apps
Product
Product
More actions
More actions
Back to top
Back to top
Content
Content
Create Create
Create
Change view
Change view
Search by title
Results will update as you type.
Product Strategy 2025+ Change emoji
Product Strategy 2025+
Product Strategy 2025+
Competitive analysis Change emoji
Competitive analysis
Competitive analysis
Ways of working - Product processes Change emoji
Ways of working - Product processes
Ways of working - Product processes
Core Product Performance Metrics 📈
Core Product Performance Metrics
📈
Core Product Performance Metrics
Product Documentation Change emoji
Product Documentation
Product Documentation
Product Briefs Change emoji
Product Briefs
Product Briefs
Change emoji Activity Export
Activity Export
Change emoji Autologging activities
Autologging activities
Deal Insights - Multiple currencies
Deal Insights - Multiple currencies
Reinvent Themes & Topics (and ACS)
Reinvent Themes & Topics (and ACS)
Change emoji Billing Portal
Billing Portal
Change emoji Upload Video/Audio Recordings
Upload Video/Audio Recordings
White-Label Jiminny Instance
White-Label Jiminny Instance
Win/Loss Analysis for a Deal
Win/Loss Analysis for a Deal
Change emoji Hubspot app
Hubspot app
Change emoji Automatically hard delete data for churned customers
Automatically hard delete data for churned customers
Change emoji Ask Jiminny Anything on Call level
Ask Jiminny Anything on Call level
Change emoji Ask Jiminny for Open and Closed Deals
Ask Jiminny for Open and Closed Deals
Change emoji Ask Jiminny Anything on Deal level
Ask Jiminny Anything on Deal level
Change emoji Automatically record all calendar meetings
Automatically record all calendar meetings
Change emoji Product Tiering
Product Tiering
Change emoji Recording Consent
Recording Consent
Change emoji Automated CRM Filling
Automated CRM Filling
Change emoji Automated Exec Reports
Automated Exec Reports
Change emoji Auto-detect Activity Type
Auto-detect Activity Type
AI Signals & Alerts
AI Signals & Alerts
Change emoji AJA on Anything
AJA on Anything
Change emoji AI Call Scoring
AI Call Scoring
Jiminny MCP Connector
Jiminny MCP Connector
Desktop app to record a meetings without visible Notetaker
Desktop app to record a meetings without visible Notetaker
Feedback Change emoji
Feedback
Feedback
Research & User Feedback Change emoji
Research & User Feedback
Research & User Feedback
Create
Create
Jira , (opens new window)
Jira
, (opens new window)
Teams , (opens new window)
Teams
, (opens new window)
open menu
open menu
More
More
Side Navigation Drag Handle
Breadcrumbs
Jiminny MCP Connector
Updated 10m ago
Updated 10m ago
Edit this content
Edit
Share, Open - Anyone in the space can edit
Share
Copy link
Copy link
More actions
More actions
Jiminny MCP Connector
Jiminny MCP Connector
Jiminny MCP Connector
By Galya Dimitrova
By Galya Dimitrova
Read time 12 min
12 min
Views 14
14
Add a reaction
Add a reaction
Epic
Link to Epik in Jira
Document status
DRAFT
Epic
Document status
Link to Epik in Jira
DRAFT
Change emoji Objective
Objective
Change emoji Objective
Enable customers to connect Jiminny data to external AI tools (Claude, OpenAI, Gemini) so it can be used as part of their broader knowledge base and workflows.
Position Jiminny as a
data layer for AI-driven revenue workflows
, not just a standalone product.
👤 Target user
👤 Target user
👤 Target user
Revenue teams using AI tools (Sales,
CS
, RevOps)
Companies already experimenting with Claude / OpenAI
Mid-market & Enterprise customers with multiple data sources (CRM, docs, CI tools, Support tools etc)
🤕 Pain point or problem
🤕
🤕
Pain point or problem
🤕 Pain point or problem
Jiminny data is locked in the platform
AI tools lack access to high-value conversation context
Customers must manually export/copy transcripts
No easy way to combine calls with CRM + docs + other info - using the Jiminny API is not suitable for non technical sales people
Peer pressure as almost all competitors have this
💥 Impact and benefits
💥
💥
Impact and benefits
💥 Impact and benefits
For customers
For customers
For customers
Better AI outputs using real customer conversations
Ability to build automated workflows across tools
For Jiminny
For Jiminny
For Jiminny
Increased product stickiness (embedded in workflows)
Competitive parity with Gong / Avoma etc.
💡 Solution ideas
💡
💡
Solution ideas
💡 Solution ideas
Build an
AI Knowledge Connector (
MCP
-based)
that:
Exposes Jiminny data (calls, transcripts, metadata) to AI tools
Provides
structured insights
(summaries, action items, scoring etc.)
Supports
deal-level context
Allows integration into customer-owned AI stacks (Claude + Zapier, etc.)
Change emoji Success metrics
Success metrics
Change emoji Success metrics
List the key goals and how you will measure success. Include both qualitative and quantitative metrics (e.g., user adoption, retention rate, revenue targets).
Goal
No sort applied to the column
Metric
No sort applied to the column
Increase stickiness by ensuring Jiminny is embedded in the customer’s workflows
% of customers connecting external AI tools
Number of
MCP
/API calls per customer - and which ones are being used the most
Decrease the manual copying of transcripts
decrease by X %
Goal
No sort applied to the column
Increase stickiness by ensuring Jiminny is embedded in the customer’s workflows
Decrease the manual copying of transcripts
Metric
No sort applied to the column
% of customers connecting external AI tools
Number of
MCP
/API calls per customer - and which ones are being used the most
decrease by X %
Change emoji User interaction and design
User interaction and design
Change emoji User interaction and design
Simple setup flow:
Generate API key / connect
MCP
Clear instructions for Claude / Zapier setup
Provide:
Example prompts for Claude
Pre-built workflow templates for Zapier
Clear documentation - with use cases
👉 Focus:
usable by non-technical users
Change emoji Detailed Requirements
Detailed Requirements
Change emoji Detailed Requirements
List the functional and non-functional requirements. Prioritize them (e.g., High, Medium, Low) and add notes for clarification.
Requirement
No sort applied to the column
Importance
No sort applied to the column
Notes
No sort applied to the column
Requirement
No sort applied to the column
Importance
No sort applied to the column
Notes
No sort applied to the column
Requirement
No sort applied to the column
Importance
No sort applied to the column
Notes
No sort applied to the column
Allow customers to connect Jiminny to their AI tools (e.g. Claude, OpenAI)
HIGH
Provide
MCP
endpoint so customers can easily integrate Jiminny into their AI stack
Allow customers to access call data through AI tools
HIGH
Expose Jiminny data:
list calls (filter by date, user, account, deal)
get call
get transcript (speaker-separated)
get call metadata
search calls (keyword + semantic)
Support filtering by:
account / contact/ lead / deal
jiminny user
date range
Allow customers to search and query calls using AI tools
HIGH
Support keyword and semantic search across conversations
Provide structured insights so customers can generate better outputs
HIGH...
|
71956
|
|
74345
|
1848
|
26
|
2026-04-23T09:40:35.552778+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-23/1776 /Users/lukas/.screenpipe/data/data/2026-04-23/1776937235552_m2.jpg...
|
iTerm2
|
NULL
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
ActivityMorerireroyToolsMistorbookmarksJiminny... ActivityMorerireroyToolsMistorbookmarksJiminny... v# platform-tickets# product launches# random# releases# sofia-office# support# thank-yous# the_people_of jimi...6? Direct messagesP. Adelina Petrova3 Aneliya Angelova, ...8. Stoyan TomovRP. Nikolay Yankov&. Petko Kashinski. Aneliya Angelovaf. Nikolay Nikolov&. Mario GeorgievI. Todor Stamatovf. Gabriela Dureva€. Vasil Vasilev. Galya Dimitrova Ef8. Stefka Stoyanova8. Stoyan Tanev#: Apps® Toastf Jira CloudGoogle Cale...ProtllesWindowmelp0. Adelina PetrovaMessagesAdd canvasur FilesTimkac Kovalik 14.44 лL/oт bчeраAdelina Petrova 12:30 PMа те не са ли 2 евентаїLukas Kovallk 12:30 PMn ZodidAdelina Petrova 12:31 PMсега ше поглелнаLukas Kovalik 12:32 PMами ако не се праща правилно тогава ще мулобавя логове ла виля какво се случва и.тогава трябва на някаква планетаAdelina Petrova 12:36 PMа ние в кола как го поашаме кьм кюп?Lukas Kovalik 12•38 PMами като пои лоугитеSthis->userPilotClient->track(Suser,ами ше лобавя логове лали не е нешо по.самия event. пуснах го на сляпо нямаше как.ла го тествамможе ли да ми кажеш само накой евенткойто може ла вилим на планетитеMessage Adelina Petrhta+ Aa IAdelina Petrova is typinsNew Tal• Jy-9712 | Nuges to expire after on8 JiminnyU Userpilot Saved Report:8 Jiminny- New TabO run.userpilot.io/reports/create/trendUntitled Analysis Add descriptionTrends FunnelsPathsRetentionI& Users|al Companies~ MetricsEvents → PH-TI-DealsTotal event countA Event properties → URLequals app.staging.jiminny.com/dashboard+ Add filter+ Add Metric^ Filters+ Select Filter^ BreakdownAll metricsSpecific metrics+ Select BreakdownTodavYesterdayBreakdown Q Search…Metric• 1 A. PH-TI-Deals - Total CountRun QueryMar 25. 2026B 40 0 1 Support Daily - in 2h 20mCompare previous periodDwMMar 26, 2026We couldn't find any data for this query— Last 30 days-- Comparative PeriodMar 27, 2026Mar 28. 2026Mar 29. 2026Mar 30.2026Mar 31. 2026100% C48Thu 23 Apr 12:40:35Give FeedbackX Close… LineApr 01, 2026Average...
|
NULL
|
8407570505515215590
|
NULL
|
click
|
ocr
|
NULL
|
ActivityMorerireroyToolsMistorbookmarksJiminny... ActivityMorerireroyToolsMistorbookmarksJiminny... v# platform-tickets# product launches# random# releases# sofia-office# support# thank-yous# the_people_of jimi...6? Direct messagesP. Adelina Petrova3 Aneliya Angelova, ...8. Stoyan TomovRP. Nikolay Yankov&. Petko Kashinski. Aneliya Angelovaf. Nikolay Nikolov&. Mario GeorgievI. Todor Stamatovf. Gabriela Dureva€. Vasil Vasilev. Galya Dimitrova Ef8. Stefka Stoyanova8. Stoyan Tanev#: Apps® Toastf Jira CloudGoogle Cale...ProtllesWindowmelp0. Adelina PetrovaMessagesAdd canvasur FilesTimkac Kovalik 14.44 лL/oт bчeраAdelina Petrova 12:30 PMа те не са ли 2 евентаїLukas Kovallk 12:30 PMn ZodidAdelina Petrova 12:31 PMсега ше поглелнаLukas Kovalik 12:32 PMами ако не се праща правилно тогава ще мулобавя логове ла виля какво се случва и.тогава трябва на някаква планетаAdelina Petrova 12:36 PMа ние в кола как го поашаме кьм кюп?Lukas Kovalik 12•38 PMами като пои лоугитеSthis->userPilotClient->track(Suser,ами ше лобавя логове лали не е нешо по.самия event. пуснах го на сляпо нямаше как.ла го тествамможе ли да ми кажеш само накой евенткойто може ла вилим на планетитеMessage Adelina Petrhta+ Aa IAdelina Petrova is typinsNew Tal• Jy-9712 | Nuges to expire after on8 JiminnyU Userpilot Saved Report:8 Jiminny- New TabO run.userpilot.io/reports/create/trendUntitled Analysis Add descriptionTrends FunnelsPathsRetentionI& Users|al Companies~ MetricsEvents → PH-TI-DealsTotal event countA Event properties → URLequals app.staging.jiminny.com/dashboard+ Add filter+ Add Metric^ Filters+ Select Filter^ BreakdownAll metricsSpecific metrics+ Select BreakdownTodavYesterdayBreakdown Q Search…Metric• 1 A. PH-TI-Deals - Total CountRun QueryMar 25. 2026B 40 0 1 Support Daily - in 2h 20mCompare previous periodDwMMar 26, 2026We couldn't find any data for this query— Last 30 days-- Comparative PeriodMar 27, 2026Mar 28. 2026Mar 29. 2026Mar 30.2026Mar 31. 2026100% C48Thu 23 Apr 12:40:35Give FeedbackX Close… LineApr 01, 2026Average...
|
74342
|
|
56561
|
1220
|
68
|
2026-04-20T11:15:19.544356+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-20/1776 /Users/lukas/.screenpipe/data/data/2026-04-20/1776683719544_m2.jpg...
|
Firefox
|
Firefox
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
FirefoxcalVIewHistorybookmarksProtllesToolsWindowm FirefoxcalVIewHistorybookmarksProtllesToolsWindowmelpinny.sentry.io/issues/7417255437/?environment=production&environment=production-eu&project=82419&query=is%3Aunresolved&referrer=issue-stream&sort=newRookmarksIssuesIssues APP-IFNJJy 19798 evaluation for ai activity• Search bookmarksreedsymtony component rrorHandler trror ratalerror| Allowed memory size of 268435456 bytes exhausted (tried to allocate 10485760 bytes)aoo/Renositories/crm/crmEntitReoositorv.ono in?JY-20553 | Improve crm-sync delav a bookmarks loolbaErrors & Outages• Sorint BoardiResolveArchiveSRD-6793) Les Mills activity type→SRD QueueBreached MetricdGithubExploreJY-20698 handle failed field syncwarningsproduction, production-euSince First Seen v• Filter events...8 Jiminny DEV•JY-20692 change confirmation paAsk liminnv Renorts bv nikolav-vankov . ...08user reedback0 Circle CEvents(JY-20543) AJ Reports > Trackina& PROD USAll Views> = bookmarks MenuInsiahts(JY-18909] (Part2] Automated repOther BookmarksconnoureAsk Jiminny Reports by nikolay-ya=vents v inthis ssueSettinac- New Tab10. 2051081629 minutes ago | JSONu Product Growth Plattorm Userpilgphp php 8.3.30. Linux 6.1.141-155.222.amzn2023.aarch64 • 873060 production-euv Highlights(fix(security): composer dependePipelines - jiminny/app) Feed - jiminny - Sentry8 Jiminny8Jiminnyv Stack liraceSymfony\Component\ErrorHandler\Error\ FatalError8 liminnvAllowed memory size of 268435456 bytes exhausted (tried to allocate 10485760 bytes)(JY-20692] Issue with reconnectatohwthllehagenerichandled true code• Jy-20692 change confirmation pa/app/Repositories/Crm/CrmEntityRepository.php:102(JY-20692) Issue with reconnectircontia1d => Scontlaurationidi19 ISRD-67871 Issue with reconnect*) Jiminny MCP Connector - Productforeach (Sitems as Sitem)Saccounts|Sitem->crm_provider_idl = Sitem->id:(JY-20676] Notity the user if a Pal) Pinelines - liminnvlaors) Symfony|Component\ErrorHanSm3 = memory_get_usageo):Log::info('ExternalAccountMap final',J New Tabv Trace PreviewFirstLatestView More EventsJump to: HighlightsStack Irace• Copy as vContex,# Edit) Display• Copy as vIn AppvMiow Full Trace100% LzMon zU AOr 14.:10.19Events (total) Users (90d)Priority alvAssianee UnassignedvLast seen 29 minutes agoFirst seen 4 days agov Seer Autofix ÀIssue lrackingy ActivityAdd a comment..First SeenMarked as hiah orioritvv PeopleNINMP viewedSimilar IssuesMeraed Issues4 days agoView...
|
NULL
|
8407058881884548806
|
NULL
|
visual_change
|
ocr
|
NULL
|
FirefoxcalVIewHistorybookmarksProtllesToolsWindowm FirefoxcalVIewHistorybookmarksProtllesToolsWindowmelpinny.sentry.io/issues/7417255437/?environment=production&environment=production-eu&project=82419&query=is%3Aunresolved&referrer=issue-stream&sort=newRookmarksIssuesIssues APP-IFNJJy 19798 evaluation for ai activity• Search bookmarksreedsymtony component rrorHandler trror ratalerror| Allowed memory size of 268435456 bytes exhausted (tried to allocate 10485760 bytes)aoo/Renositories/crm/crmEntitReoositorv.ono in?JY-20553 | Improve crm-sync delav a bookmarks loolbaErrors & Outages• Sorint BoardiResolveArchiveSRD-6793) Les Mills activity type→SRD QueueBreached MetricdGithubExploreJY-20698 handle failed field syncwarningsproduction, production-euSince First Seen v• Filter events...8 Jiminny DEV•JY-20692 change confirmation paAsk liminnv Renorts bv nikolav-vankov . ...08user reedback0 Circle CEvents(JY-20543) AJ Reports > Trackina& PROD USAll Views> = bookmarks MenuInsiahts(JY-18909] (Part2] Automated repOther BookmarksconnoureAsk Jiminny Reports by nikolay-ya=vents v inthis ssueSettinac- New Tab10. 2051081629 minutes ago | JSONu Product Growth Plattorm Userpilgphp php 8.3.30. Linux 6.1.141-155.222.amzn2023.aarch64 • 873060 production-euv Highlights(fix(security): composer dependePipelines - jiminny/app) Feed - jiminny - Sentry8 Jiminny8Jiminnyv Stack liraceSymfony\Component\ErrorHandler\Error\ FatalError8 liminnvAllowed memory size of 268435456 bytes exhausted (tried to allocate 10485760 bytes)(JY-20692] Issue with reconnectatohwthllehagenerichandled true code• Jy-20692 change confirmation pa/app/Repositories/Crm/CrmEntityRepository.php:102(JY-20692) Issue with reconnectircontia1d => Scontlaurationidi19 ISRD-67871 Issue with reconnect*) Jiminny MCP Connector - Productforeach (Sitems as Sitem)Saccounts|Sitem->crm_provider_idl = Sitem->id:(JY-20676] Notity the user if a Pal) Pinelines - liminnvlaors) Symfony|Component\ErrorHanSm3 = memory_get_usageo):Log::info('ExternalAccountMap final',J New Tabv Trace PreviewFirstLatestView More EventsJump to: HighlightsStack Irace• Copy as vContex,# Edit) Display• Copy as vIn AppvMiow Full Trace100% LzMon zU AOr 14.:10.19Events (total) Users (90d)Priority alvAssianee UnassignedvLast seen 29 minutes agoFirst seen 4 days agov Seer Autofix ÀIssue lrackingy ActivityAdd a comment..First SeenMarked as hiah orioritvv PeopleNINMP viewedSimilar IssuesMeraed Issues4 days agoView...
|
56560
|
|
76188
|
1908
|
16
|
2026-04-24T07:34:57.917702+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-24/1777 /Users/lukas/.screenpipe/data/data/2026-04-24/1777016097917_m2.jpg...
|
Firefox
|
JY-20157 add not enough activities notification by JY-20157 add not enough activities notification by LakyLak · Pull Request #12011 · jiminny/app — Work...
|
True
|
github.com/jiminny/app/pull/12011/changes#diff-f8f github.com/jiminny/app/pull/12011/changes#diff-f8f7411db53b599689b4b1c08af54c9c359a0ec0342dcfa8639fdb2b10a94207...
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Platform Sprint 2 Q2 - Platform Team - Scrum Board Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira
JY-20489 | Optimize Nudges - Phase 2 by yalokin-jiminny · Pull Request #11997 · jiminny/app
JY-20489 | Optimize Nudges - Phase 2 by yalokin-jiminny · Pull Request #11997 · jiminny/app
New Tab
New Tab
AI reports promotion pages by nikolay-yankov · Pull Request #11998 · jiminny/app
AI reports promotion pages by nikolay-yankov · Pull Request #11998 · jiminny/app
JY-9712 | Nuges to expire after one year by nikolaybiaivanov · Pull Request #11981 · jiminny/app
JY-9712 | Nuges to expire after one year by nikolaybiaivanov · Pull Request #11981 · jiminny/app
Jiminny
Jiminny
Userpilot | Nudge-created
Userpilot | Nudge-created
JY-20157 add not enough activities notification by LakyLak · Pull Request #12011 · jiminny/app
JY-20157 add not enough activities notification by LakyLak · Pull Request #12011 · jiminny/app
Close tab
Pipelines - jiminny/app
Pipelines - jiminny/app
JY-20543 add AJ reports User pilot tracking by LakyLak · Pull Request #11932 · jiminny/app
JY-20543 add AJ reports User pilot tracking by LakyLak · Pull Request #11932 · jiminny/app
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
Skip to content
Skip to content
Open menu
Homepage (g then d)
jiminny
jiminny
app
app
Search or jump to…
Type
/
to search
Chat with Copilot
Open Copilot…
Create new...
Issues(g then i)
Pull requests
Repositories
You have unread notifications(g then n)
Open user navigation menu
Repository navigation
Repository navigation
Code
Code
Pull requests (31)
Pull requests
(
31
)
Agents
Agents
Actions
Actions
Wiki
Wiki
Security and quality (32)
Security and quality
(
32
)
Insights
Insights
Settings
Settings
Important update
Important update
On April 24 we'll start using GitHub Copilot interaction data for AI model training unless you opt out.
Review this update
Review this update
and manage your preferences in your
GitHub account settings
GitHub account settings
.
Dismiss banner
JY-20157 add not enough activities notification #12011 Edit title
JY-20157 add not enough activities notification
#
12011
Edit title
Preview
Preview
Checks failing
Checks failing
Code
Code
Open
LakyLak
LakyLak
wants to merge 2 commits into
master
master
from
JY-20157-AJ-report-not-send-notification
JY-20157-AJ-report-not-send-notification
Copy head branch name to clipboard
Lines changed: 384 additions & 52 deletions
Conversation (1)
Conversation
(
1
)
Commits (2)
Commits
(
2
)
Checks (3)
Checks
(
3
)
Files changed (13)
Files changed
(
13
)
Pull Request Toolbar
Pull Request Toolbar
Collapse file tree
Open
JY-20157 add not enough activities notification
JY-20157 add not enough activities notification
#
12011
All commits
All commits
LakyLak
LakyLak
wants to merge 2 commits into
master
master
from
JY-20157-AJ-report-not-send-notification
JY-20157-AJ-report-not-send-notification
Copy head branch name to clipboard
0
/
13
viewed
Checks failing
Checks failing
Submit review
Submit
review
Open diff view settings
Open overview panel
Open comments panel
(
0
)
Filter files…
Filter options
File tree
File tree
app
Console/Commands/Reports
AutomatedReportsCommand.php
AutomatedReportsCommand.php
Jobs/AutomatedReports
RequestGenerateAskJiminnyReportJob.php
RequestGenerateAskJiminnyReportJob.php
SendReportNotGeneratedMailJob.php
SendReportNotGeneratedMailJob.php
Listeners/AutomatedReports/UserPilot
TrackAutomatedReportGeneratedEvent.php
TrackAutomatedReportGeneratedEvent.php
Mail/Reports
ReportNotGenerated.php
ReportNotGenerated.php
Services/Kiosk/AutomatedReports
AskJiminnyReportActivityService.php
AskJiminnyReportActivityService.php
AutomatedReportsService.php
AutomatedReportsService.php
resources/views/emails/reports
report-not-generated.blade.php
report-not-generated.blade.php
tests/Unit
Jobs/AutomatedReports
RequestGenerateAskJiminnyReportJobTest.php
RequestGenerateAskJiminnyReportJobTest.php
Listeners/AutomatedReports/UserPilot
TrackAutomatedReportGeneratedEventTest.php
TrackAutomatedReportGeneratedEventTest.php
Services/Kiosk/AutomatedReports
AskJiminnyReportActivityServiceTest.php
AskJiminnyReportActivityServiceTest.php
AutomatedReportsServiceActivitiesCountTest.php
AutomatedReportsServiceActivitiesCountTest.php
AutomatedReportsServiceReportGenerationTest.php
AutomatedReportsServiceReportGenerationTest.php
Collapse file
app/Console/Commands/Reports/AutomatedReportsCommand.php
app/Console/Commands/Reports/AutomatedReportsCommand.php
app/Console/Commands/Reports/AutomatedReportsCommand.php
Copy file name to clipboard
Expand all lines: app/Console/Commands/Reports/AutomatedReportsCommand.php
Lines changed: 10 additions & 2 deletions
Not Viewed
Viewed
Comment on this file
More options
Original file line number
Original file line
Diff line number
Diff line change
@@ -61,21 +61,29 @@ public function handle(): int
61
61
62
$
now
= Carbon::
now
();
62
$
now
= Carbon::
now
();
63
$
isMonday
=
$
now
->
isMonday
();
63
$
isMonday
=
$
now
->
isMonday
();
64
+
$
isWeekend
=
$
now
->
isWeekend
();
64
$
isFirstDayOfMonth
=
$
now
->
day
===
1...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira","depth":4,"bounds":{"left":0.23287898,"top":0.0518755,"width":0.07596409,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"JY-20489 | Optimize Nudges - Phase 2 by yalokin-jiminny · Pull Request #11997 · jiminny/app","depth":4,"bounds":{"left":0.23105054,"top":0.09497207,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20489 | Optimize Nudges - Phase 2 by yalokin-jiminny · Pull Request #11997 · jiminny/app","depth":5,"bounds":{"left":0.2443484,"top":0.10614525,"width":0.1619016,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"bounds":{"left":0.23105054,"top":0.12769353,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"bounds":{"left":0.2443484,"top":0.13886672,"width":0.014960106,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"AI reports promotion pages by nikolay-yankov · Pull Request #11998 · jiminny/app","depth":4,"bounds":{"left":0.23105054,"top":0.16041501,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AI reports promotion pages by nikolay-yankov · Pull Request #11998 · jiminny/app","depth":5,"bounds":{"left":0.2443484,"top":0.17158818,"width":0.14128989,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-9712 | Nuges to expire after one year by nikolaybiaivanov · Pull Request #11981 · jiminny/app","depth":4,"bounds":{"left":0.23105054,"top":0.19313647,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-9712 | Nuges to expire after one year by nikolaybiaivanov · Pull Request #11981 · jiminny/app","depth":5,"bounds":{"left":0.2443484,"top":0.20430966,"width":0.16555852,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny","depth":4,"bounds":{"left":0.23105054,"top":0.22585794,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny","depth":5,"bounds":{"left":0.2443484,"top":0.23703113,"width":0.013131649,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Userpilot | Nudge-created","depth":4,"bounds":{"left":0.23105054,"top":0.2585794,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Userpilot | Nudge-created","depth":5,"bounds":{"left":0.2443484,"top":0.2697526,"width":0.04537899,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20157 add not enough activities notification by LakyLak · Pull Request #12011 · jiminny/app","depth":4,"bounds":{"left":0.23105054,"top":0.29130086,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"JY-20157 add not enough activities notification by LakyLak · Pull Request #12011 · jiminny/app","depth":5,"bounds":{"left":0.2443484,"top":0.30247405,"width":0.16356383,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.29837102,"top":0.29848364,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Pipelines - jiminny/app","depth":4,"bounds":{"left":0.23105054,"top":0.32402235,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pipelines - jiminny/app","depth":5,"bounds":{"left":0.2443484,"top":0.33519554,"width":0.039228722,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20543 add AJ reports User pilot tracking by LakyLak · Pull Request #11932 · jiminny/app","depth":4,"bounds":{"left":0.23105054,"top":0.3567438,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20543 add AJ reports User pilot tracking by LakyLak · Pull Request #11932 · jiminny/app","depth":5,"bounds":{"left":0.2443484,"top":0.367917,"width":0.15924202,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"bounds":{"left":0.23387633,"top":0.39106146,"width":0.07413564,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"bounds":{"left":0.23387633,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"bounds":{"left":0.24484707,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Tabs from other devices","depth":6,"bounds":{"left":0.25598404,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"bounds":{"left":0.26712102,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"bounds":{"left":0.27825797,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Skip to content","depth":6,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to content","depth":7,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Open menu","depth":10,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Homepage (g then d)","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"jiminny","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"jiminny","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"app","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"app","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Search or jump to…","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Type","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"to search","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Chat with Copilot","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXMenuButton","text":"Open Copilot…","depth":9,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXMenuButton","text":"Create new...","depth":9,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Issues(g then i)","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Pull requests","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Repositories","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"You have unread notifications(g then n)","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Open user navigation menu","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Repository navigation","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Repository navigation","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Code","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Code","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Pull requests (31)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pull requests","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"31","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Agents","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Agents","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Actions","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Actions","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wiki","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Wiki","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Security and quality (32)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Security and quality","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"32","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Insights","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Insights","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Settings","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Settings","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Important update","depth":10,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Important update","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"On April 24 we'll start using GitHub Copilot interaction data for AI model training unless you opt out.","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Review this update","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Review this update","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"and manage your preferences in your","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"GitHub account settings","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GitHub account settings","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Dismiss banner","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"JY-20157 add not enough activities notification #12011 Edit title","depth":13,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"JY-20157 add not enough activities notification","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"#","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12011","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Edit title","depth":14,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXMenuButton","text":"Preview","depth":13,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Preview","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Checks failing","depth":13,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Checks failing","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Code","depth":13,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Code","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Open","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"LakyLak","depth":15,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"LakyLak","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"wants to merge 2 commits into","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"master","depth":15,"role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"master","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"from","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20157-AJ-report-not-send-notification","depth":16,"role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20157-AJ-report-not-send-notification","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy head branch name to clipboard","depth":16,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Lines changed: 384 additions & 52 deletions","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Conversation (1)","depth":16,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Conversation","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Commits (2)","depth":16,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Commits","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Checks (3)","depth":16,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Checks","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Files changed (13)","depth":16,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Files changed","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Pull Request Toolbar","depth":14,"bounds":{"left":0.32130983,"top":0.07581804,"width":0.0003324468,"height":0.0007980846},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Pull Request Toolbar","depth":15,"bounds":{"left":0.32130983,"top":0.07861133,"width":0.030086435,"height":0.08060654},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse file tree","depth":14,"bounds":{"left":0.32130983,"top":0.0650439,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"Open","depth":14,"bounds":{"left":0.34391624,"top":0.06943336,"width":0.011968086,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20157 add not enough activities notification","depth":14,"bounds":{"left":0.36253324,"top":0.058260176,"width":0.10638298,"height":0.016759777},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20157 add not enough activities notification","depth":16,"bounds":{"left":0.36253324,"top":0.059856344,"width":0.10638298,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"#","depth":15,"bounds":{"left":0.4715758,"top":0.059856344,"width":0.0028257978,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12011","depth":15,"bounds":{"left":0.4744016,"top":0.059856344,"width":0.011968086,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"All commits","depth":14,"bounds":{"left":0.35987368,"top":0.07182761,"width":0.03374335,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"All commits","depth":16,"bounds":{"left":0.3628657,"top":0.07701516,"width":0.02244016,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"LakyLak","depth":15,"bounds":{"left":0.39793882,"top":0.07581804,"width":0.016289894,"height":0.014365523},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"LakyLak","depth":16,"bounds":{"left":0.39793882,"top":0.07701516,"width":0.016289894,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"wants to merge 2 commits into","depth":15,"bounds":{"left":0.41555852,"top":0.07701516,"width":0.057845745,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"master","depth":15,"bounds":{"left":0.47473404,"top":0.074221864,"width":0.018450798,"height":0.017557861},"role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"master","depth":16,"bounds":{"left":0.47672874,"top":0.07741421,"width":0.014461436,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"from","depth":16,"bounds":{"left":0.4945146,"top":0.07701516,"width":0.008643617,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20157-AJ-report-not-send-notification","depth":16,"bounds":{"left":0.50448805,"top":0.074221864,"width":0.09990027,"height":0.017557861},"role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20157-AJ-report-not-send-notification","depth":17,"bounds":{"left":0.5064827,"top":0.07741421,"width":0.09591091,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy head branch name to clipboard","depth":16,"bounds":{"left":0.6057181,"top":0.07182761,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"0","depth":15,"bounds":{"left":0.82696146,"top":0.070231445,"width":0.002493351,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":15,"bounds":{"left":0.8294548,"top":0.070231445,"width":0.0023271276,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13","depth":15,"bounds":{"left":0.83294547,"top":0.070231445,"width":0.004488032,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"viewed","depth":15,"bounds":{"left":0.83859706,"top":0.070231445,"width":0.013131649,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Checks failing","depth":14,"bounds":{"left":0.8600399,"top":0.0650439,"width":0.03956117,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Checks failing","depth":16,"bounds":{"left":0.8696808,"top":0.070231445,"width":0.026928192,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Submit review","depth":14,"bounds":{"left":0.90226066,"top":0.0650439,"width":0.03856383,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Submit","depth":16,"bounds":{"left":0.90525264,"top":0.070231445,"width":0.014793883,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"review","depth":16,"bounds":{"left":0.92004657,"top":0.070231445,"width":0.012466756,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Open diff view settings","depth":14,"bounds":{"left":0.94348407,"top":0.0650439,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open overview panel","depth":14,"bounds":{"left":0.96110374,"top":0.0650439,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open comments panel","depth":14,"bounds":{"left":0.97174203,"top":0.0650439,"width":0.017287234,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"(","depth":16,"bounds":{"left":0.9800532,"top":0.070231445,"width":0.0026595744,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":16,"bounds":{"left":0.98271275,"top":0.070231445,"width":0.0026595744,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":16,"bounds":{"left":0.98537236,"top":0.070231445,"width":0.0014960107,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Filter files…","depth":16,"bounds":{"left":0.33261302,"top":0.11332801,"width":0.06815159,"height":0.023942538},"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXMenuButton","text":"Filter options","depth":16,"bounds":{"left":0.40375665,"top":0.112529926,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"File tree","depth":15,"bounds":{"left":0.32164228,"top":0.15083799,"width":0.0003324468,"height":0.0007980846},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"File tree","depth":16,"bounds":{"left":0.32164228,"top":0.15363128,"width":0.014295213,"height":0.0518755},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"app","depth":19,"bounds":{"left":0.33759972,"top":0.15682362,"width":0.008144947,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Console/Commands/Reports","depth":21,"bounds":{"left":0.3402593,"top":0.18276137,"width":0.061336435,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"AutomatedReportsCommand.php","depth":23,"bounds":{"left":0.34291887,"top":0.20830008,"width":0.07180851,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AutomatedReportsCommand.php","depth":24,"bounds":{"left":0.34291887,"top":0.20830008,"width":0.07180851,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Jobs/AutomatedReports","depth":21,"bounds":{"left":0.3402593,"top":0.23383878,"width":0.051861703,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"RequestGenerateAskJiminnyReportJob.php","depth":23,"bounds":{"left":0.34291887,"top":0.25937748,"width":0.093417555,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"RequestGenerateAskJiminnyReportJob.php","depth":24,"bounds":{"left":0.34291887,"top":0.25937748,"width":0.093417555,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"SendReportNotGeneratedMailJob.php","depth":23,"bounds":{"left":0.34291887,"top":0.2849162,"width":0.08194814,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SendReportNotGeneratedMailJob.php","depth":24,"bounds":{"left":0.34291887,"top":0.2849162,"width":0.08194814,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Listeners/AutomatedReports/UserPilot","depth":21,"bounds":{"left":0.3402593,"top":0.3104549,"width":0.08211436,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"TrackAutomatedReportGeneratedEvent.php","depth":23,"bounds":{"left":0.34291887,"top":0.33639267,"width":0.09391622,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"TrackAutomatedReportGeneratedEvent.php","depth":24,"bounds":{"left":0.34291887,"top":0.33639267,"width":0.09391622,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Mail/Reports","depth":21,"bounds":{"left":0.3402593,"top":0.36193135,"width":0.026928192,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"ReportNotGenerated.php","depth":23,"bounds":{"left":0.34291887,"top":0.38747007,"width":0.05435505,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ReportNotGenerated.php","depth":24,"bounds":{"left":0.34291887,"top":0.38747007,"width":0.05435505,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Services/Kiosk/AutomatedReports","depth":21,"bounds":{"left":0.3402593,"top":0.41300878,"width":0.072972074,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"AskJiminnyReportActivityService.php","depth":23,"bounds":{"left":0.34291887,"top":0.43894652,"width":0.08028591,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AskJiminnyReportActivityService.php","depth":24,"bounds":{"left":0.34291887,"top":0.43894652,"width":0.08028591,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"AutomatedReportsService.php","depth":23,"bounds":{"left":0.34291887,"top":0.46448523,"width":0.06582447,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AutomatedReportsService.php","depth":24,"bounds":{"left":0.34291887,"top":0.46448523,"width":0.06582447,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"resources/views/emails/reports","depth":19,"bounds":{"left":0.33759972,"top":0.49002394,"width":0.06665558,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"report-not-generated.blade.php","depth":21,"bounds":{"left":0.3402593,"top":0.51556265,"width":0.06898271,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"report-not-generated.blade.php","depth":22,"bounds":{"left":0.3402593,"top":0.51556265,"width":0.06898271,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"tests/Unit","depth":19,"bounds":{"left":0.33759972,"top":0.54110134,"width":0.020777926,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Jobs/AutomatedReports","depth":21,"bounds":{"left":0.3402593,"top":0.5666401,"width":0.051861703,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"RequestGenerateAskJiminnyReportJobTest.php","depth":23,"bounds":{"left":0.34291887,"top":0.5925778,"width":0.10206117,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"RequestGenerateAskJiminnyReportJobTest.php","depth":24,"bounds":{"left":0.34291887,"top":0.5925778,"width":0.10206117,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Listeners/AutomatedReports/UserPilot","depth":21,"bounds":{"left":0.3402593,"top":0.6181165,"width":0.08211436,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"TrackAutomatedReportGeneratedEventTest.php","depth":23,"bounds":{"left":0.34291887,"top":0.64365524,"width":0.10289229,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"TrackAutomatedReportGeneratedEventTest.php","depth":24,"bounds":{"left":0.34291887,"top":0.64365524,"width":0.10289229,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Services/Kiosk/AutomatedReports","depth":21,"bounds":{"left":0.3402593,"top":0.669593,"width":0.072972074,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"AskJiminnyReportActivityServiceTest.php","depth":23,"bounds":{"left":0.34291887,"top":0.69513166,"width":0.08892952,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AskJiminnyReportActivityServiceTest.php","depth":24,"bounds":{"left":0.34291887,"top":0.69513166,"width":0.08892952,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"AutomatedReportsServiceActivitiesCountTest.php","depth":23,"bounds":{"left":0.34291887,"top":0.7206704,"width":0.10721409,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AutomatedReportsServiceActivitiesCountTest.php","depth":24,"bounds":{"left":0.34291887,"top":0.7206704,"width":0.10721409,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"AutomatedReportsServiceReportGenerationTest.php","depth":23,"bounds":{"left":0.34291887,"top":0.7462091,"width":0.11269947,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AutomatedReportsServiceReportGenerationTest.php","depth":24,"bounds":{"left":0.34291887,"top":0.7462091,"width":0.11269947,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse file","depth":14,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"app/Console/Commands/Reports/AutomatedReportsCommand.php","depth":15,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"app/Console/Commands/Reports/AutomatedReportsCommand.php","depth":16,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"app/Console/Commands/Reports/AutomatedReportsCommand.php","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy file name to clipboard","depth":15,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Expand all lines: app/Console/Commands/Reports/AutomatedReportsCommand.php","depth":15,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Lines changed: 10 additions & 2 deletions","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Not Viewed","depth":14,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Viewed","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Comment on this file","depth":14,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXMenuButton","text":"More options","depth":14,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Original file line number","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Original file line","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Diff line number","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Diff line change","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"@@ -61,21 +61,29 @@ public function handle(): int","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"61","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"61","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"62","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"now","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"= Carbon::","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"now","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"();","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"62","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"now","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"= Carbon::","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"now","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"();","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"63","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"isMonday","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"=","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"now","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"isMonday","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"();","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"63","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"isMonday","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"=","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"now","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"isMonday","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"();","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"64","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"isWeekend","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"=","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"now","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"isWeekend","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"();","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"64","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"isFirstDayOfMonth","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"=","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"now","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"day","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"===","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
8406982872967716600
|
-5666839292341721362
|
click
|
accessibility
|
NULL
|
Platform Sprint 2 Q2 - Platform Team - Scrum Board Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira
JY-20489 | Optimize Nudges - Phase 2 by yalokin-jiminny · Pull Request #11997 · jiminny/app
JY-20489 | Optimize Nudges - Phase 2 by yalokin-jiminny · Pull Request #11997 · jiminny/app
New Tab
New Tab
AI reports promotion pages by nikolay-yankov · Pull Request #11998 · jiminny/app
AI reports promotion pages by nikolay-yankov · Pull Request #11998 · jiminny/app
JY-9712 | Nuges to expire after one year by nikolaybiaivanov · Pull Request #11981 · jiminny/app
JY-9712 | Nuges to expire after one year by nikolaybiaivanov · Pull Request #11981 · jiminny/app
Jiminny
Jiminny
Userpilot | Nudge-created
Userpilot | Nudge-created
JY-20157 add not enough activities notification by LakyLak · Pull Request #12011 · jiminny/app
JY-20157 add not enough activities notification by LakyLak · Pull Request #12011 · jiminny/app
Close tab
Pipelines - jiminny/app
Pipelines - jiminny/app
JY-20543 add AJ reports User pilot tracking by LakyLak · Pull Request #11932 · jiminny/app
JY-20543 add AJ reports User pilot tracking by LakyLak · Pull Request #11932 · jiminny/app
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
Skip to content
Skip to content
Open menu
Homepage (g then d)
jiminny
jiminny
app
app
Search or jump to…
Type
/
to search
Chat with Copilot
Open Copilot…
Create new...
Issues(g then i)
Pull requests
Repositories
You have unread notifications(g then n)
Open user navigation menu
Repository navigation
Repository navigation
Code
Code
Pull requests (31)
Pull requests
(
31
)
Agents
Agents
Actions
Actions
Wiki
Wiki
Security and quality (32)
Security and quality
(
32
)
Insights
Insights
Settings
Settings
Important update
Important update
On April 24 we'll start using GitHub Copilot interaction data for AI model training unless you opt out.
Review this update
Review this update
and manage your preferences in your
GitHub account settings
GitHub account settings
.
Dismiss banner
JY-20157 add not enough activities notification #12011 Edit title
JY-20157 add not enough activities notification
#
12011
Edit title
Preview
Preview
Checks failing
Checks failing
Code
Code
Open
LakyLak
LakyLak
wants to merge 2 commits into
master
master
from
JY-20157-AJ-report-not-send-notification
JY-20157-AJ-report-not-send-notification
Copy head branch name to clipboard
Lines changed: 384 additions & 52 deletions
Conversation (1)
Conversation
(
1
)
Commits (2)
Commits
(
2
)
Checks (3)
Checks
(
3
)
Files changed (13)
Files changed
(
13
)
Pull Request Toolbar
Pull Request Toolbar
Collapse file tree
Open
JY-20157 add not enough activities notification
JY-20157 add not enough activities notification
#
12011
All commits
All commits
LakyLak
LakyLak
wants to merge 2 commits into
master
master
from
JY-20157-AJ-report-not-send-notification
JY-20157-AJ-report-not-send-notification
Copy head branch name to clipboard
0
/
13
viewed
Checks failing
Checks failing
Submit review
Submit
review
Open diff view settings
Open overview panel
Open comments panel
(
0
)
Filter files…
Filter options
File tree
File tree
app
Console/Commands/Reports
AutomatedReportsCommand.php
AutomatedReportsCommand.php
Jobs/AutomatedReports
RequestGenerateAskJiminnyReportJob.php
RequestGenerateAskJiminnyReportJob.php
SendReportNotGeneratedMailJob.php
SendReportNotGeneratedMailJob.php
Listeners/AutomatedReports/UserPilot
TrackAutomatedReportGeneratedEvent.php
TrackAutomatedReportGeneratedEvent.php
Mail/Reports
ReportNotGenerated.php
ReportNotGenerated.php
Services/Kiosk/AutomatedReports
AskJiminnyReportActivityService.php
AskJiminnyReportActivityService.php
AutomatedReportsService.php
AutomatedReportsService.php
resources/views/emails/reports
report-not-generated.blade.php
report-not-generated.blade.php
tests/Unit
Jobs/AutomatedReports
RequestGenerateAskJiminnyReportJobTest.php
RequestGenerateAskJiminnyReportJobTest.php
Listeners/AutomatedReports/UserPilot
TrackAutomatedReportGeneratedEventTest.php
TrackAutomatedReportGeneratedEventTest.php
Services/Kiosk/AutomatedReports
AskJiminnyReportActivityServiceTest.php
AskJiminnyReportActivityServiceTest.php
AutomatedReportsServiceActivitiesCountTest.php
AutomatedReportsServiceActivitiesCountTest.php
AutomatedReportsServiceReportGenerationTest.php
AutomatedReportsServiceReportGenerationTest.php
Collapse file
app/Console/Commands/Reports/AutomatedReportsCommand.php
app/Console/Commands/Reports/AutomatedReportsCommand.php
app/Console/Commands/Reports/AutomatedReportsCommand.php
Copy file name to clipboard
Expand all lines: app/Console/Commands/Reports/AutomatedReportsCommand.php
Lines changed: 10 additions & 2 deletions
Not Viewed
Viewed
Comment on this file
More options
Original file line number
Original file line
Diff line number
Diff line change
@@ -61,21 +61,29 @@ public function handle(): int
61
61
62
$
now
= Carbon::
now
();
62
$
now
= Carbon::
now
();
63
$
isMonday
=
$
now
->
isMonday
();
63
$
isMonday
=
$
now
->
isMonday
();
64
+
$
isWeekend
=
$
now
->
isWeekend
();
64
$
isFirstDayOfMonth
=
$
now
->
day
===
1...
|
76186
|
|
67842
|
1528
|
9
|
2026-04-21T16:09:16.859824+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776787756859_m1.jpg...
|
PhpStorm
|
faVsco.js – AutomatedReportsServiceTest.php
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
8406483354002077742
|
-8132285380336319549
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
iTerm2• 0DOCKER-//-//-//-11-//-11-I/+++++++++++/////////1/////////////1//////////////////ShellEditViewSessionScriptsProfilesWindowHelpA-zshO ·1-zsh82-zsh* Build full day activity... • 34screenpipe"• ₴5Srouter-›get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])->name('ai-reports.pdf.download');-zshSrouter-›get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])-›name('ai-reports.audio.view');Srouter->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class,'download'])-›name('ai-reports.audio.download');Srouter->group(['middleware'=> ['can:canAccessAiReports,' . User::class]],static function (RouterSrouter): void {Srouter->get('/ai-reports', [FrontendController::class, 'render'])->name('ai.reports.show');Srouter-›get('/ai-reports/manage', [FrontendController::class, 'render'])->name('ai.reports.manage');Srouter-›get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])->name('ai-reports.pdf.view');Srouter-›get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class,'download'])->name('ai-reports.pdf.download');Srouter->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])-›name('ai-reports.audio.view');Srouter-›get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class,'download'])->name('ai-reports.audio.download');100% C8Tue 21 Apr 19:09:18T81APP (-zsh)+// Playback of audio streams.Srouter->get('/stream/{track}', [AudioController::class, 'streamTrack'])end diffFixed 1 of 5609 files in 38.740 seconds, 60.00 MB memory usedWhat's next:Try Docker Debug for seamless, persistent debugging tools in any container or image + docker debug docker_lamp_1Learn more at https://docs.docker.com/go/debug-cli/lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $O...
|
67840
|
|
4892
|
92
|
61
|
2026-04-13T12:42:05.066372+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776084125066_m1.jpg...
|
Boosteroid
|
Boosteroid
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShellEdit|ViewSessionScriptsProfilesWindowHe iTerm2ShellEdit|ViewSessionScriptsProfilesWindowHelp* Unable to access screenpipe activity dataDOCKERO $1- Used Claude, LikelyDEV (-zsh)relatedtoO 882APP (-zsh)• *3-zsh• *4screenpipework (querying the screenpipe search API)-zsh• 25lahl91% C2Mon 13 Apr 15:42:04181-zsh86-zsh®O 87* Unable to access s...TL;DR: Mostly a dev day focused on building something with screenpipe data (a reporting UI), some light work task-checking on Jira/email, and evening reading on Slovak news.what did I do today so farThe screenpipe MCP server has disconnected, so I can't query your activity right now. You'd need to reconnect it to get today's summary.You can try restarting the screenpipe MCP server and then ask again.give mesummary for last 48 hoursThe screenpipe MCPserver is still disconnected - I don't have access to those tools. You'll need to reconnect it first.If screenpipe is running locally, you can try restarting the MCPserver or check its status with ! screenpipe or however you normally manage it.it is healhty and running, chekc againThe tools aren't showing up in my session even though screenpipe is running. This likely means the MCP connection needs to be re-established on the Claude Code side.Try running ! claude mep list to check the MCP serverstatus, or restart Claude Code to reconnect the screenpipe MCP server.claude mep listBash(Claude mcp list)L Checking MCP server health...claude.ai Reminders: https://todo.lakylak.xyz/mcp - ! Needs authentication. +5 lines (ctrl+o to expand)Screenpipe shows asconnected. The tools may just need to be re-registered in this session. Let me try calling it directly:The screenpipe MCP is connected, but the tools got deregistered from this session when it disconnected earlier and can't be re-loaded mid-conversation.Start a new Claude Code session - the tools will be fully available again and I can pull the 48-hour summary right away.? for shortcuts...
|
NULL
|
8405994477671044589
|
NULL
|
click
|
ocr
|
NULL
|
iTerm2ShellEdit|ViewSessionScriptsProfilesWindowHe iTerm2ShellEdit|ViewSessionScriptsProfilesWindowHelp* Unable to access screenpipe activity dataDOCKERO $1- Used Claude, LikelyDEV (-zsh)relatedtoO 882APP (-zsh)• *3-zsh• *4screenpipework (querying the screenpipe search API)-zsh• 25lahl91% C2Mon 13 Apr 15:42:04181-zsh86-zsh®O 87* Unable to access s...TL;DR: Mostly a dev day focused on building something with screenpipe data (a reporting UI), some light work task-checking on Jira/email, and evening reading on Slovak news.what did I do today so farThe screenpipe MCP server has disconnected, so I can't query your activity right now. You'd need to reconnect it to get today's summary.You can try restarting the screenpipe MCP server and then ask again.give mesummary for last 48 hoursThe screenpipe MCPserver is still disconnected - I don't have access to those tools. You'll need to reconnect it first.If screenpipe is running locally, you can try restarting the MCPserver or check its status with ! screenpipe or however you normally manage it.it is healhty and running, chekc againThe tools aren't showing up in my session even though screenpipe is running. This likely means the MCP connection needs to be re-established on the Claude Code side.Try running ! claude mep list to check the MCP serverstatus, or restart Claude Code to reconnect the screenpipe MCP server.claude mep listBash(Claude mcp list)L Checking MCP server health...claude.ai Reminders: https://todo.lakylak.xyz/mcp - ! Needs authentication. +5 lines (ctrl+o to expand)Screenpipe shows asconnected. The tools may just need to be re-registered in this session. Let me try calling it directly:The screenpipe MCP is connected, but the tools got deregistered from this session when it disconnected earlier and can't be re-loaded mid-conversation.Start a new Claude Code session - the tools will be fully available again and I can pull the 48-hour summary right away.? for shortcuts...
|
NULL
|
|
31869
|
648
|
5
|
2026-04-16T06:40:10.520945+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-16/1776 /Users/lukas/.screenpipe/data/data/2026-04-16/1776321610520_m1.jpg...
|
NULL
|
NULL
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
SlackFileEditViewGoHistoryWindowHelp(ah]• 0-zshDOC SlackFileEditViewGoHistoryWindowHelp(ah]• 0-zshDOCKER• 881DEV (-zsh)О ₴2APP (-zsh)• хзec2-user@ip-10-...0 84-zsh• 85lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~/.screenpipe/data/data/2026-04-15 $ sqlite3 ~/.screenpipe/db.sqliteSELECTMIN(f.timestamp) ASstart_time,MAX(f.timestamp) ASend_timeFROM framesfJOINvideo_chunks v ON f.video_chunk_id = v.idWHERE v.file_path LIKE*%compact_monitor_2_1776148769344.mp4%';2026-04-14T06:24:34.056771+00:0012026-04-14T06:28:52.607990+00:00lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~/.screenpipe/data/data/2026-04-15 $ sqlite3 ~/.screenpipe/db.sqlite"SELECT DISTINCT v.file_pathFROM frames fJOIN video_chunks v ON f.video_chunk_id = v.idWHEREf.timestamp >='2026-04-15T07:00:00+00:00'AND f.timestamp <=' 2026-04-15T07:05:00+00:00' ;/Users/lukas/.screenpipe/data/data/2026-04-15/compact_monitor_1_1776237284692.mp4/Users/lukas/.screenpipe/data/data/2026-04-15/compact_monitor_2_1776237291726.mp4/Users/lukas/.screenpipe/data/data/2026-04-15/compact_monitor_1_1776237595554.mp4/Users/lukas/.screenpipe/data/data/2026-04-15/compact_monitor_2_1776237598300.mp4lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-15 $Daily - Platform • in 5mA100% <478-zsh886-zshO &7Thu 16 Apr 9:40:10181* Unable to acce...O 88...
|
NULL
|
8405341044078130843
|
NULL
|
click
|
ocr
|
NULL
|
SlackFileEditViewGoHistoryWindowHelp(ah]• 0-zshDOC SlackFileEditViewGoHistoryWindowHelp(ah]• 0-zshDOCKER• 881DEV (-zsh)О ₴2APP (-zsh)• хзec2-user@ip-10-...0 84-zsh• 85lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~/.screenpipe/data/data/2026-04-15 $ sqlite3 ~/.screenpipe/db.sqliteSELECTMIN(f.timestamp) ASstart_time,MAX(f.timestamp) ASend_timeFROM framesfJOINvideo_chunks v ON f.video_chunk_id = v.idWHERE v.file_path LIKE*%compact_monitor_2_1776148769344.mp4%';2026-04-14T06:24:34.056771+00:0012026-04-14T06:28:52.607990+00:00lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~/.screenpipe/data/data/2026-04-15 $ sqlite3 ~/.screenpipe/db.sqlite"SELECT DISTINCT v.file_pathFROM frames fJOIN video_chunks v ON f.video_chunk_id = v.idWHEREf.timestamp >='2026-04-15T07:00:00+00:00'AND f.timestamp <=' 2026-04-15T07:05:00+00:00' ;/Users/lukas/.screenpipe/data/data/2026-04-15/compact_monitor_1_1776237284692.mp4/Users/lukas/.screenpipe/data/data/2026-04-15/compact_monitor_2_1776237291726.mp4/Users/lukas/.screenpipe/data/data/2026-04-15/compact_monitor_1_1776237595554.mp4/Users/lukas/.screenpipe/data/data/2026-04-15/compact_monitor_2_1776237598300.mp4lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-15 $Daily - Platform • in 5mA100% <478-zsh886-zshO &7Thu 16 Apr 9:40:10181* Unable to acce...O 88...
|
31866
|
|
46125
|
976
|
10
|
2026-04-17T10:22:09.423146+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-17/1776 /Users/lukas/.screenpipe/data/data/2026-04-17/1776421329423_m2.jpg...
|
Slack
|
Threads - Jiminny Inc - 2 new items - Slack
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Jiminny Inc
Jiminny (Staging)
Add workspaces
Home
Jiminny Inc
Jiminny (Staging)
Add workspaces
Home
Home
DMs
DMs
Activity
Activity
Files
Files
Later
Later
More…
More
Unreads
Threads
Huddles
Drafts & sent
Directories
jiminny-x-integration-app
platform-inner-team
ai-chapter
alerts
backend
confusion-clinic
curiosity_lab
engineering
frontend
general
infra-changes
jiminny-bg
platform-tickets
product_launches
random
releases
support
thank-yous
the_people_of_jiminny
Nikolay Nikolov
Aneliya Angelova
,
Nikolay Yankov
,
Steliyan Georgiev
Galya Dimitrova
Stoyan Tanev
Vasil Vasilev
Nikolay Ivanov
Aneliya Angelova
Ves
Steliyan Georgiev
Jira Cloud
Toast
Google Calendar
jiminny-x-integration-app
jiminny-x-integration-app
Pylon and you
Lukas Kovalik
Yesterday at 11:04:11 AM
Yesterday at 11:04 AM
Hi guys, we have one issue we used to have before regarding the authorisation for Zoho CRM. When the clients go through all steps and login it just returns him back to the login screen. I believe this is the reference to the previous conversation
https://jiminny.slack.com/archives/C07RAC4U86M/p1748957897141919
https://jiminny.slack.com/archives/C07RAC4U86M/p1748957897141919
. Could you please have a look if there is any change?
Remove preview
Lukas Kovalik
Lukas Kovalik
There appears to be a recent change in the SDK OAuth mechanism. When a new client connects to the platform using Zoho, we no longer receive a Promise (
https://console.integration.app/ref/sdk/classes/IntegrationAccessor.html#openNewConnection
https://console.integration.app/ref/sdk/classes/IntegrationAccessor.html#openNewConnection
) upon successful login. This functionality was working just a few weeks ago.
(edited)
Thread in jiminny-x-integration-app
Thread in
jiminny-x-integration-app
|
Jun 3rd, 2025
Jun 3rd, 2025
|
View message
View message
React with white_check_mark
React with eyes
React with raised_hands
Add reaction…
Open in channel
View thread
Forward message…
Save for later
More actions
Show 10 more replies
Lukas Kovalik
Today at 1:15:43 PM
6 minutes ago
If you look at the payload above there is no disconnected so it is not backward compatible. Is there scenario where I would receive disconnected instead of connected? Also can we revert the connection window back that was there before I upgraded the connector? We don’t want to show Connect via Membrane.
3 files
Toggle 3 files
Download all
CleanShot 2026-04-17 at 13.08.35.png
Download CleanShot 2026-04-17 at 13.08.35.png
Share file: CleanShot 2026-04-17 at 13.08.35.png
View canvas details
More actions
CleanShot 2026-04-17 at [EMAIL]
Download CleanShot 2026-04-17 at [EMAIL]
Share file: CleanShot 2026-04-17 at [EMAIL]
View canvas details
More actions
image.png
Download image.png
Share file: image.png
View canvas details
More actions
React with white_check_mark
React with eyes
React with raised_hands
Add reaction…
Forward message…
Save for later
More actions
New
Membrane AI Assistant
APP
Today at 1:17:34 PM
4 minutes ago
Thanks for the follow-up! Let me address both of your questions:
1. Missing
disconnected
field in API response
You're right to point this out. Looking at your API response, I can see it only has
connected
and not
disconnected
. Let me escalate this back to the engineering team to clarify which endpoints include both fields and which ones only have
connected
. This may differ between endpoints.
2. Hiding "Connect via Membrane" option
The "Connect via Membrane" (Auth Proxy) option appeared when you upgraded to connector v3.0.3. If you want to hide this option and only show "OAuth 2.0" to your users, you can disable the auth-proxy option in your integration settings....
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Jiminny Inc","depth":12,"bounds":{"left":0.00546875,"top":0.05486111,"width":0.0125,"height":0.022222223},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXRadioButton","text":"Jiminny (Staging)","depth":12,"bounds":{"left":0.00546875,"top":0.09097222,"width":0.0125,"height":0.022222223},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"Add workspaces","depth":12,"bounds":{"left":0.00546875,"top":0.12708333,"width":0.0125,"height":0.022222223},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Home","depth":14,"bounds":{"left":0.026953125,"top":0.048611112,"width":0.020703126,"height":0.047222223},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"Home","depth":16,"bounds":{"left":0.03125,"top":0.08125,"width":0.012109375,"height":0.009027778},"role_description":"text"},{"role":"AXRadioButton","text":"DMs","depth":14,"bounds":{"left":0.026953125,"top":0.09583333,"width":0.020703126,"height":0.047222223},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DMs","depth":16,"bounds":{"left":0.032421876,"top":0.12847222,"width":0.009765625,"height":0.009027778},"role_description":"text"},{"role":"AXRadioButton","text":"Activity","depth":14,"bounds":{"left":0.026953125,"top":0.14305556,"width":0.020703126,"height":0.047222223},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Activity","depth":16,"bounds":{"left":0.0296875,"top":0.17569445,"width":0.015234375,"height":0.009027778},"role_description":"text"},{"role":"AXRadioButton","text":"Files","depth":14,"bounds":{"left":0.026953125,"top":0.19027779,"width":0.020703126,"height":0.047222223},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Files","depth":16,"bounds":{"left":0.0328125,"top":0.22291666,"width":0.008984375,"height":0.009027778},"role_description":"text"},{"role":"AXRadioButton","text":"Later","depth":14,"bounds":{"left":0.026953125,"top":0.2375,"width":0.020703126,"height":0.047222223},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Later","depth":16,"bounds":{"left":0.03203125,"top":0.2701389,"width":0.010546875,"height":0.009027778},"role_description":"text"},{"role":"AXRadioButton","text":"More…","depth":14,"bounds":{"left":0.026953125,"top":0.2847222,"width":0.020703126,"height":0.047222223},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More","depth":16,"bounds":{"left":0.03203125,"top":0.31736112,"width":0.010546875,"height":0.009027778},"role_description":"text"},{"role":"AXStaticText","text":"Unreads","depth":20,"bounds":{"left":0.06679688,"top":0.0875,"width":0.022265624,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"Threads","depth":20,"bounds":{"left":0.06679688,"top":0.10694444,"width":0.020703126,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"Huddles","depth":20,"bounds":{"left":0.06679688,"top":0.12638889,"width":0.021484375,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"Drafts & sent","depth":20,"bounds":{"left":0.06679688,"top":0.14583333,"width":0.034375,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"Directories","depth":20,"bounds":{"left":0.06679688,"top":0.16527778,"width":0.028515626,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"jiminny-x-integration-app","depth":20,"bounds":{"left":0.07304688,"top":0.24722221,"width":0.0515625,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"platform-inner-team","depth":20,"bounds":{"left":0.07304688,"top":0.26666668,"width":0.05234375,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"ai-chapter","depth":22,"bounds":{"left":0.07304688,"top":0.3125,"width":0.026171874,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"alerts","depth":22,"bounds":{"left":0.07304688,"top":0.33194444,"width":0.014453125,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"backend","depth":22,"bounds":{"left":0.07304688,"top":0.3513889,"width":0.021484375,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"confusion-clinic","depth":22,"bounds":{"left":0.07304688,"top":0.37083334,"width":0.040625,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"curiosity_lab","depth":22,"bounds":{"left":0.07304688,"top":0.39027777,"width":0.032421876,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"engineering","depth":22,"bounds":{"left":0.07304688,"top":0.4097222,"width":0.03046875,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"frontend","depth":22,"bounds":{"left":0.07304688,"top":0.42916667,"width":0.02265625,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"general","depth":22,"bounds":{"left":0.07304688,"top":0.4486111,"width":0.019140625,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"infra-changes","depth":22,"bounds":{"left":0.07304688,"top":0.46805555,"width":0.034765624,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"jiminny-bg","depth":22,"bounds":{"left":0.07304688,"top":0.4875,"width":0.02734375,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"platform-tickets","depth":22,"bounds":{"left":0.07304688,"top":0.5069444,"width":0.041015625,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"product_launches","depth":22,"bounds":{"left":0.07304688,"top":0.5263889,"width":0.0453125,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"random","depth":22,"bounds":{"left":0.07304688,"top":0.54583335,"width":0.019921875,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"releases","depth":22,"bounds":{"left":0.07304688,"top":0.56527776,"width":0.020703126,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"support","depth":22,"bounds":{"left":0.07304688,"top":0.5847222,"width":0.0203125,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"thank-yous","depth":22,"bounds":{"left":0.07304688,"top":0.6041667,"width":0.02890625,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"the_people_of_jiminny","depth":22,"bounds":{"left":0.07304688,"top":0.6236111,"width":0.053125,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Nikolov","depth":22,"bounds":{"left":0.07304688,"top":0.66944444,"width":0.040234376,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"Aneliya Angelova","depth":22,"bounds":{"left":0.07304688,"top":0.6888889,"width":0.044140626,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":",","depth":22,"bounds":{"left":0.11679687,"top":0.6888889,"width":0.0078125,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Yankov","depth":22,"bounds":{"left":0.11992188,"top":0.6888889,"width":0.016796876,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":",","depth":22,"bounds":{"left":0.13632813,"top":0.70416665,"width":0.000390625,"height":0.00069444446},"role_description":"text"},{"role":"AXStaticText","text":"Steliyan Georgiev","depth":22,"bounds":{"left":0.13632813,"top":0.70416665,"width":0.000390625,"height":0.00069444446},"role_description":"text"},{"role":"AXStaticText","text":"Galya Dimitrova","depth":22,"bounds":{"left":0.07304688,"top":0.7083333,"width":0.04140625,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"Stoyan Tanev","depth":22,"bounds":{"left":0.07304688,"top":0.7277778,"width":0.033984374,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"Vasil Vasilev","depth":22,"bounds":{"left":0.07304688,"top":0.74722224,"width":0.03125,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Ivanov","depth":22,"bounds":{"left":0.07304688,"top":0.76666665,"width":0.037890624,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"Aneliya Angelova","depth":22,"bounds":{"left":0.07304688,"top":0.7861111,"width":0.044140626,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"Ves","depth":22,"bounds":{"left":0.07304688,"top":0.8055556,"width":0.009375,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"Steliyan Georgiev","depth":22,"bounds":{"left":0.07304688,"top":0.825,"width":0.044921875,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"Jira Cloud","depth":20,"bounds":{"left":0.07304688,"top":0.87083334,"width":0.026171874,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"Toast","depth":20,"bounds":{"left":0.07304688,"top":0.8902778,"width":0.014453125,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"Google Calendar","depth":20,"bounds":{"left":0.07304688,"top":0.9097222,"width":0.0359375,"height":0.0125},"role_description":"text"},{"role":"AXLink","text":"jiminny-x-integration-app","depth":21,"bounds":{"left":0.14765625,"top":0.08125,"width":0.0734375,"height":0.0125},"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"jiminny-x-integration-app","depth":22,"bounds":{"left":0.15429688,"top":0.08125,"width":0.06679688,"height":0.0125},"role_description":"text"},{"role":"AXStaticText","text":"Pylon and you","depth":21,"bounds":{"left":0.14804688,"top":0.09583333,"width":0.029296875,"height":0.010416667},"role_description":"text"},{"role":"AXButton","text":"Lukas Kovalik","depth":23,"bounds":{"left":0.16875,"top":0.12708333,"width":0.036328126,"height":0.015972223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"bounds":{"left":0.2046875,"top":0.12847222,"width":0.003515625,"height":0.013194445},"role_description":"text"},{"role":"AXLink","text":"Yesterday at 11:04:11 AM","depth":23,"bounds":{"left":0.2078125,"top":0.13055556,"width":0.047265626,"height":0.011111111},"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Yesterday at 11:04 AM","depth":24,"bounds":{"left":0.2078125,"top":0.13055556,"width":0.047265626,"height":0.011111111},"role_description":"text"},{"role":"AXStaticText","text":"Hi guys, we have one issue we used to have before regarding the authorisation for Zoho CRM. When the clients go through all steps and login it just returns him back to the login screen. I believe this is the reference to the previous conversation","depth":24,"bounds":{"left":0.16875,"top":0.14375,"width":0.315625,"height":0.028472222},"role_description":"text"},{"role":"AXLink","text":"https://jiminny.slack.com/archives/C07RAC4U86M/p1748957897141919","depth":24,"bounds":{"left":0.16875,"top":0.17430556,"width":0.19140625,"height":0.013194445},"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://jiminny.slack.com/archives/C07RAC4U86M/p1748957897141919","depth":25,"bounds":{"left":0.16875,"top":0.17430556,"width":0.19140625,"height":0.013194445},"role_description":"text"},{"role":"AXStaticText","text":". Could you please have a look if there is any change?","depth":24,"bounds":{"left":0.16875,"top":0.17430556,"width":0.3046875,"height":0.028472222},"role_description":"text"},{"role":"AXButton","text":"Remove preview","depth":25,"bounds":{"left":0.1609375,"top":0.20625,"width":0.0078125,"height":0.020833334},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Lukas Kovalik","depth":25,"bounds":{"left":0.184375,"top":0.20625,"width":0.037109375,"height":0.015972223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Lukas Kovalik","depth":27,"bounds":{"left":0.184375,"top":0.20763889,"width":0.035546876,"height":0.013194445},"role_description":"text"},{"role":"AXStaticText","text":"There appears to be a recent change in the SDK OAuth mechanism. When a new client connects to the platform using Zoho, we no longer receive a Promise (","depth":26,"bounds":{"left":0.1859375,"top":0.22361112,"width":0.20703125,"height":0.04375},"role_description":"text"},{"role":"AXLink","text":"https://console.integration.app/ref/sdk/classes/IntegrationAccessor.html#openNewConnection","depth":26,"bounds":{"left":0.1859375,"top":0.25416666,"width":0.2109375,"height":0.028472222},"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"https://console.integration.app/ref/sdk/classes/IntegrationAccessor.html#openNewConnection","depth":27,"bounds":{"left":0.1859375,"top":0.25416666,"width":0.2109375,"height":0.028472222},"role_description":"text"},{"role":"AXStaticText","text":") upon successful login. This functionality was working just a few weeks ago.","depth":26,"bounds":{"left":0.1859375,"top":0.26944444,"width":0.19921875,"height":0.028472222},"role_description":"text"},{"role":"AXStaticText","text":"(edited)","depth":25,"bounds":{"left":0.175,"top":0.3013889,"width":0.016796876,"height":0.011805556},"role_description":"text"},{"role":"AXLink","text":"Thread in jiminny-x-integration-app","depth":25,"bounds":{"left":0.175,"top":0.31736112,"width":0.07851563,"height":0.011111111},"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thread in","depth":26,"bounds":{"left":0.175,"top":0.31736112,"width":0.020703126,"height":0.011111111},"role_description":"text"},{"role":"AXStaticText","text":"jiminny-x-integration-app","depth":26,"bounds":{"left":0.20078126,"top":0.31736112,"width":0.052734375,"height":0.011111111},"role_description":"text"},{"role":"AXStaticText","text":"|","depth":25,"bounds":{"left":0.253125,"top":0.31736112,"width":0.00390625,"height":0.011111111},"role_description":"text"},{"role":"AXLink","text":"Jun 3rd, 2025","depth":25,"bounds":{"left":0.2566406,"top":0.31736112,"width":0.028515626,"height":0.011111111},"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Jun 3rd, 2025","depth":26,"bounds":{"left":0.2566406,"top":0.31736112,"width":0.028515626,"height":0.011111111},"role_description":"text"},{"role":"AXStaticText","text":"|","depth":25,"bounds":{"left":0.28476563,"top":0.31736112,"width":0.00390625,"height":0.011111111},"role_description":"text"},{"role":"AXLink","text":"View message","depth":25,"bounds":{"left":0.28828126,"top":0.31736112,"width":0.0296875,"height":0.011111111},"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"View message","depth":26,"bounds":{"left":0.28828126,"top":0.31736112,"width":0.0296875,"height":0.011111111},"role_description":"text"},{"role":"AXCheckBox","text":"React with white_check_mark","depth":25,"bounds":{"left":0.48476562,"top":0.10694444,"width":0.000390625,"height":0.022916667},"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"React with eyes","depth":25,"bounds":{"left":0.48476562,"top":0.10694444,"width":0.000390625,"height":0.022916667},"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"React with raised_hands","depth":25,"bounds":{"left":0.48476562,"top":0.10694444,"width":0.000390625,"height":0.022916667},"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Add reaction…","depth":25,"bounds":{"left":0.48476562,"top":0.10694444,"width":0.000390625,"height":0.022916667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in channel","depth":25,"bounds":{"left":0.48476562,"top":0.10694444,"width":0.000390625,"height":0.022916667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View thread","depth":25,"bounds":{"left":0.48476562,"top":0.10694444,"width":0.000390625,"height":0.022916667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Forward message…","depth":25,"bounds":{"left":0.48476562,"top":0.10694444,"width":0.000390625,"height":0.022916667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Save for later","depth":25,"bounds":{"left":0.48476562,"top":0.10694444,"width":0.000390625,"height":0.022916667},"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More actions","depth":25,"bounds":{"left":0.48476562,"top":0.10694444,"width":0.000390625,"height":0.022916667},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Show 10 more replies","depth":21,"bounds":{"left":0.1515625,"top":0.33958334,"width":0.055859376,"height":0.013194445},"role_description":"text"},{"role":"AXButton","text":"Lukas Kovalik","depth":23,"bounds":{"left":0.16875,"top":0.35972223,"width":0.036328126,"height":0.015972223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"bounds":{"left":0.2046875,"top":0.3611111,"width":0.003515625,"height":0.013194445},"role_description":"text"},{"role":"AXLink","text":"Today at 1:15:43 PM","depth":23,"bounds":{"left":0.2078125,"top":0.36319444,"width":0.029296875,"height":0.011111111},"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"6 minutes ago","depth":24,"bounds":{"left":0.2078125,"top":0.36319444,"width":0.029296875,"height":0.011111111},"role_description":"text"},{"role":"AXStaticText","text":"If you look at the payload above there is no disconnected so it is not backward compatible. Is there scenario where I would receive disconnected instead of connected? Also can we revert the connection window back that was there before I upgraded the connector? We don’t want to show Connect via Membrane.","depth":24,"bounds":{"left":0.16875,"top":0.37638888,"width":0.31328124,"height":0.04375},"role_description":"text"},{"role":"AXStaticText","text":"3 files","depth":24,"bounds":{"left":0.16875,"top":0.425,"width":0.01328125,"height":0.011805556},"role_description":"text"},{"role":"AXStaticText","text":"","depth":24,"bounds":{"left":0.18164062,"top":0.425,"width":0.001953125,"height":0.013194445},"role_description":"text"},{"role":"AXButton","text":"Toggle 3 files","depth":24,"bounds":{"left":0.18320313,"top":0.42430556,"width":0.008203125,"height":0.014583333},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXButton","text":"Download all","depth":25,"bounds":{"left":0.19726562,"top":0.42430556,"width":0.039453126,"height":0.013888889},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"CleanShot 2026-04-17 at 13.08.35.png","depth":24,"bounds":{"left":0.16875,"top":0.44166666,"width":0.090625,"height":0.16180556},"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Download CleanShot 2026-04-17 at 13.08.35.png","depth":25,"bounds":{"left":0.20390625,"top":0.4513889,"width":0.0125,"height":0.022916667},"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Share file: CleanShot 2026-04-17 at 13.08.35.png","depth":25,"bounds":{"left":0.21640626,"top":0.4513889,"width":0.0125,"height":0.022916667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View canvas details","depth":25,"bounds":{"left":0.22890624,"top":0.4513889,"width":0.0125,"height":0.022916667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More actions","depth":25,"bounds":{"left":0.24140625,"top":0.4513889,"width":0.0125,"height":0.022916667},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"CleanShot 2026-04-17 at 13.10.08@2x.png","depth":24,"bounds":{"left":0.2625,"top":0.44166666,"width":0.053125,"height":0.16180556},"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Download CleanShot 2026-04-17 at 13.10.08@2x.png","depth":25,"bounds":{"left":0.26015624,"top":0.4513889,"width":0.0125,"height":0.022916667},"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Share file: CleanShot 2026-04-17 at 13.10.08@2x.png","depth":25,"bounds":{"left":0.27265626,"top":0.4513889,"width":0.0125,"height":0.022916667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View canvas details","depth":25,"bounds":{"left":0.28515625,"top":0.4513889,"width":0.0125,"height":0.022916667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More actions","depth":25,"bounds":{"left":0.29765624,"top":0.4513889,"width":0.0125,"height":0.022916667},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"image.png","depth":24,"bounds":{"left":0.31875,"top":0.44166666,"width":0.090625,"height":0.16180556},"role_description":"Unlabelled image","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Download image.png","depth":25,"bounds":{"left":0.35390624,"top":0.4513889,"width":0.0125,"height":0.022916667},"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Share file: image.png","depth":25,"bounds":{"left":0.36640626,"top":0.4513889,"width":0.0125,"height":0.022916667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View canvas details","depth":25,"bounds":{"left":0.37890625,"top":0.4513889,"width":0.0125,"height":0.022916667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More actions","depth":25,"bounds":{"left":0.39140624,"top":0.4513889,"width":0.0125,"height":0.022916667},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"React with white_check_mark","depth":25,"bounds":{"left":0.48476562,"top":0.34791666,"width":0.000390625,"height":0.022916667},"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"React with eyes","depth":25,"bounds":{"left":0.48476562,"top":0.34791666,"width":0.000390625,"height":0.022916667},"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"React with raised_hands","depth":25,"bounds":{"left":0.48476562,"top":0.34791666,"width":0.000390625,"height":0.022916667},"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Add reaction…","depth":25,"bounds":{"left":0.48476562,"top":0.34791666,"width":0.000390625,"height":0.022916667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Forward message…","depth":25,"bounds":{"left":0.48476562,"top":0.34791666,"width":0.000390625,"height":0.022916667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Save for later","depth":25,"bounds":{"left":0.48476562,"top":0.34791666,"width":0.000390625,"height":0.022916667},"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More actions","depth":25,"bounds":{"left":0.48476562,"top":0.34791666,"width":0.000390625,"height":0.022916667},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"New","depth":21,"bounds":{"left":0.47304687,"top":0.6020833,"width":0.0109375,"height":0.011805556},"role_description":"text"},{"role":"AXButton","text":"Membrane AI Assistant","depth":23,"bounds":{"left":0.16875,"top":0.6111111,"width":0.06171875,"height":0.015972223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"APP","depth":23,"bounds":{"left":0.2328125,"top":0.6145833,"width":0.0078125,"height":0.009027778},"role_description":"text"},{"role":"AXStaticText","text":"","depth":23,"bounds":{"left":0.24140625,"top":0.6125,"width":0.003515625,"height":0.013194445},"role_description":"text"},{"role":"AXLink","text":"Today at 1:17:34 PM","depth":23,"bounds":{"left":0.24453124,"top":0.6145833,"width":0.029296875,"height":0.011111111},"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"4 minutes ago","depth":24,"bounds":{"left":0.24453124,"top":0.6145833,"width":0.029296875,"height":0.011111111},"role_description":"text"},{"role":"AXStaticText","text":"Thanks for the follow-up! Let me address both of your questions:","depth":23,"bounds":{"left":0.16875,"top":0.62777776,"width":0.16601562,"height":0.013194445},"role_description":"text"},{"role":"AXStaticText","text":"1. Missing","depth":23,"bounds":{"left":0.16875,"top":0.6486111,"width":0.027734375,"height":0.013194445},"role_description":"text"},{"role":"AXStaticText","text":"disconnected","depth":24,"bounds":{"left":0.19765624,"top":0.65069443,"width":0.034375,"height":0.011111111},"role_description":"text"},{"role":"AXStaticText","text":"field in API response","depth":23,"bounds":{"left":0.23320313,"top":0.6486111,"width":0.055078126,"height":0.013194445},"role_description":"text"},{"role":"AXStaticText","text":"You're right to point this out. Looking at your API response, I can see it only has","depth":23,"bounds":{"left":0.16875,"top":0.6638889,"width":0.20390625,"height":0.013194445},"role_description":"text"},{"role":"AXStaticText","text":"connected","depth":24,"bounds":{"left":0.3738281,"top":0.66597223,"width":0.02578125,"height":0.011111111},"role_description":"text"},{"role":"AXStaticText","text":"and not","depth":23,"bounds":{"left":0.40078124,"top":0.6638889,"width":0.023046875,"height":0.013194445},"role_description":"text"},{"role":"AXStaticText","text":"disconnected","depth":24,"bounds":{"left":0.425,"top":0.66597223,"width":0.033984374,"height":0.011111111},"role_description":"text"},{"role":"AXStaticText","text":". Let me escalate this back to the engineering team to clarify which endpoints include both fields and which ones only have","depth":23,"bounds":{"left":0.16875,"top":0.6638889,"width":0.31210938,"height":0.028472222},"role_description":"text"},{"role":"AXStaticText","text":"connected","depth":24,"bounds":{"left":0.1703125,"top":0.6965278,"width":0.025390625,"height":0.011111111},"role_description":"text"},{"role":"AXStaticText","text":". This may differ between endpoints.","depth":23,"bounds":{"left":0.196875,"top":0.6944444,"width":0.09335937,"height":0.013194445},"role_description":"text"},{"role":"AXStaticText","text":"2. Hiding \"Connect via Membrane\" option","depth":23,"bounds":{"left":0.16875,"top":0.7152778,"width":0.10859375,"height":0.013194445},"role_description":"text"},{"role":"AXStaticText","text":"The \"Connect via Membrane\" (Auth Proxy) option appeared when you upgraded to connector v3.0.3. If you want to hide this option and only show \"OAuth 2.0\" to your users, you can disable the auth-proxy option in your integration settings.","depth":23,"bounds":{"left":0.16875,"top":0.73055553,"width":0.31796876,"height":0.028472222},"role_description":"text"}]...
|
8405207295694460365
|
-2011501555805667734
|
visual_change
|
hybrid
|
NULL
|
Jiminny Inc
Jiminny (Staging)
Add workspaces
Home
Jiminny Inc
Jiminny (Staging)
Add workspaces
Home
Home
DMs
DMs
Activity
Activity
Files
Files
Later
Later
More…
More
Unreads
Threads
Huddles
Drafts & sent
Directories
jiminny-x-integration-app
platform-inner-team
ai-chapter
alerts
backend
confusion-clinic
curiosity_lab
engineering
frontend
general
infra-changes
jiminny-bg
platform-tickets
product_launches
random
releases
support
thank-yous
the_people_of_jiminny
Nikolay Nikolov
Aneliya Angelova
,
Nikolay Yankov
,
Steliyan Georgiev
Galya Dimitrova
Stoyan Tanev
Vasil Vasilev
Nikolay Ivanov
Aneliya Angelova
Ves
Steliyan Georgiev
Jira Cloud
Toast
Google Calendar
jiminny-x-integration-app
jiminny-x-integration-app
Pylon and you
Lukas Kovalik
Yesterday at 11:04:11 AM
Yesterday at 11:04 AM
Hi guys, we have one issue we used to have before regarding the authorisation for Zoho CRM. When the clients go through all steps and login it just returns him back to the login screen. I believe this is the reference to the previous conversation
https://jiminny.slack.com/archives/C07RAC4U86M/p1748957897141919
https://jiminny.slack.com/archives/C07RAC4U86M/p1748957897141919
. Could you please have a look if there is any change?
Remove preview
Lukas Kovalik
Lukas Kovalik
There appears to be a recent change in the SDK OAuth mechanism. When a new client connects to the platform using Zoho, we no longer receive a Promise (
https://console.integration.app/ref/sdk/classes/IntegrationAccessor.html#openNewConnection
https://console.integration.app/ref/sdk/classes/IntegrationAccessor.html#openNewConnection
) upon successful login. This functionality was working just a few weeks ago.
(edited)
Thread in jiminny-x-integration-app
Thread in
jiminny-x-integration-app
|
Jun 3rd, 2025
Jun 3rd, 2025
|
View message
View message
React with white_check_mark
React with eyes
React with raised_hands
Add reaction…
Open in channel
View thread
Forward message…
Save for later
More actions
Show 10 more replies
Lukas Kovalik
Today at 1:15:43 PM
6 minutes ago
If you look at the payload above there is no disconnected so it is not backward compatible. Is there scenario where I would receive disconnected instead of connected? Also can we revert the connection window back that was there before I upgraded the connector? We don’t want to show Connect via Membrane.
3 files
Toggle 3 files
Download all
CleanShot 2026-04-17 at 13.08.35.png
Download CleanShot 2026-04-17 at 13.08.35.png
Share file: CleanShot 2026-04-17 at 13.08.35.png
View canvas details
More actions
CleanShot 2026-04-17 at [EMAIL]
Download CleanShot 2026-04-17 at [EMAIL]
Share file: CleanShot 2026-04-17 at [EMAIL]
View canvas details
More actions
image.png
Download image.png
Share file: image.png
View canvas details
More actions
React with white_check_mark
React with eyes
React with raised_hands
Add reaction…
Forward message…
Save for later
More actions
New
Membrane AI Assistant
APP
Today at 1:17:34 PM
4 minutes ago
Thanks for the follow-up! Let me address both of your questions:
1. Missing
disconnected
field in API response
You're right to point this out. Looking at your API response, I can see it only has
connected
and not
disconnected
. Let me escalate this back to the engineering team to clarify which endpoints include both fields and which ones only have
connected
. This may differ between endpoints.
2. Hiding "Connect via Membrane" option
The "Connect via Membrane" (Auth Proxy) option appeared when you upgraded to connector v3.0.3. If you want to hide this option and only show "OAuth 2.0" to your users, you can disable the auth-proxy option in your integration settings.
SlackFileEditViewJiminny ...DMs= Unreads@ Threads6 Huddles* Drafts & sent8 DirectoriesAchivityEh External connectionsFiles* Starred8 jiminny-x-integrati...A platform-inner-teamMore= Channels# ai-chapter# alerts# backendconflicion-cinia# curiosity lab# engineering# frontendi# general# infra-changes# jiminny-bg# platform-tickets# product_launchesac random# releases# support# thank-yous# the_people_of jimi...•- Direct messages0. Nikolay Nikolov 1º!(3 Aneliya Angelova, ...®. Galya Dimitrova lio Stoyan TanevC. Vasil Vasilev. Nikolay Ivanov®. Aneliya Angelovae VesR. Steliyan Georgiev# Apps# Jira CloudToastGoogle Cale..HistoryWindowHelpQ Search Jiminny IncThreads& jiminny-x-integration-appFyion dhe youLukas Kovalik Yesterday at 11:04 AMHi guys, we have one issue we used to have before regarding the authorisation for Zoho CRM. When the clients go throughall steps and login it just returns him back to the login screen. I believe this is the reference to the previous conversationhttps://jiminny.slack.com/archives/C07RAC4U86M/p1748957897141919. Could you please have a look if there is anychange?e Lukas Kovalik1. There appears to be a recent change in the SDK OAuth mechanism. When a newclient connects to the platform using Zoho, we no longer receive a Promise(https://console.integration.app/ref/sdk/classes/IntegrationAccessor.html#openNewConnection) upon successful login. This functionality was working just a fewweeks ago.(edited)Thread in @ jiminny-x-integration-app | Jun 3rd, 2025 | View messageShow 110 more reniiedLukas Kovalik 6 minutes agoIf you look at the payload above there is no disconnected so it is not backward compatible. Is there scenario where I wouldreceive disconnected instead of connected? Also can we revert the connection window back that was there before Iupgraded the connector? We don't want to show Connect via Membrane.Xnlesy8 Download allLinking your 2oho CM accountLinking your Zoho CRM account, 50 llf Support Daily • in 1h 38m[A]100% 145Fri 17 Apr 13:22:09ou sân i ,5к₴ДQg99#Membrane Al Assistant APP 4 minutes agoThanks for the follow-up. Let me address both or your questions.1. Missing disconnected field in API responseYou're right to point this out. Looking at your APl response, I can see it only has connected and not di sconnected . Let meescalate this back to the engineering team to clarify which endpoints include both fields and which ones only haveconnected). This may differ between endpointsht2. Hiding "Connect via Membrane" optionThe "Connect via Membrane" (Auth Proxy) option appeared when you upgraded to connector v3.0.3. If you want to hide thisoption and only show "OAuth 2.0" to your users, you can disable the auth-proxy option in your integration settings.Let me get back to you shortly on the [disconnected field question.10 external people are from MembraneReply...Also send tojiminny-x-integration-appAaYolire Un to cate# engineeringlаn куuспuкov ana ves...
|
46123
|
|
54179
|
1170
|
2
|
2026-04-20T08:42:40.430532+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-20/1776 /Users/lukas/.screenpipe/data/data/2026-04-20/1776674560430_m2.jpg...
|
PhpStorm
|
faVsco.js – AppServiceProvider.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
PhostormVIewINavigarecodeKeractorFV faVsco.js°9 ma PhostormVIewINavigarecodeKeractorFV faVsco.js°9 master ~Proledey© Opportunity.phpC Paruicipant.ong© Partner.php© Permission.php© PhoneNumber.phpc) Playoacklneme.ono© Playbook.phpC) Playbookcategorv.php© Playlist.php(C) RateLimit.php© Region.php(c) Role.php© RoleChangeEvent.php(c) Sconegrouo,ono© Session.php(C) SlackBot.oho(C) SocialAccount.oho(C) Stade oho© Task.php(c) Team nhn© TeamAiContext.php© TeamDomain.php© TeamFeature.php© TeamSettings.phpC) TextRelay.ongC) Track.php© TranscriptionModel.php© TranscriptionModelLocale.php© TranscriptionProvider.php© User.php© UserSettings.php© Vocabulary.phpc) VocabularyPronunciation.php© VoiceAccess.php(c)VolceconsentPrefix.ono> M Notifications• → ObserversM Policiesv Providers@ ActivitvServiceProvider.ohn@ AniServiceProvider.nhnC AppServiceProvider.php@ AuthServiceProvider.nhn@ RroadcastServiceProvider.nho© AppServiceProvider.php© Automateakeporisservice.ongc UserPilotAcuvicyListener.onoC) AutomatedReport.pho<ohonamespace Jiminny Providers:›use...final class AppServiceProvider extends ServiceProvider* A71 the abilities that mau he assianed to APT tokens.1 usageprivate const array TOKENS_CAN = [olaL-outbound → "Ulal with the sorcphone,'start-conference' => 'Organize a Conference',"sms ='send & receive sMs with the sottphone,'ghost-conference' => 'Join a Conference as a Ghost'.public function boot: voidk...}11451144* Register anu aoplication services.146 6tpublic function registero: voidi...-* Reaisten the nelenses classiprotected function registerReleasesl...}* Reaisten encrunt cookies.protected function registerEncryptCookies: voidf...}© CalendarServiceProvider.php@ CreateParticinantServiceProvide(C) CrmServiceProvider.nhn© EncryptionServiceProvider.php(c CvontCorvicoDrovidor nhnl@ Hubsnot.Journa|ServiceProvider.p© HubspotWebhookServiceProvideAlimi© ImportActivityTypesTest.phpC) Service.onpC) ReportController.ongTHasAdiTokens.onp© RouteServiceProvider.php© Partner.php© User.php©syncuserrllotcompanyListener.pnpA1 A8 X1AY274 A276100% C.• Mon 20 Apr 11:42:40U TrackAutomatedReportGeneratedEventTest& composer.json X A SF [jiminny@localhost]4 HS_local [jiminny@localhost]« console (PROD]A console [EU]« console [STAGING]InstallUpadteShow log12 V14 A V"extra": {"Laravel":"dont-discoven". "whitelist": []-License-check". {"repositories": ["TYpe". "Ves",Hunlil. Hbttne./laithuhcom/pHD.CCMnon/Rinanvhnivon aitiom/iiminny/oauth2-salesloft.git'.com/jiminny/oauth2-aircall.qit""ur1": "https://qithub.com/jiminnv/oauth2-pipedrive.git'"un]". Ihttns:laithub.com/iminnv/oauth2-dialnad.aituW Windsurf Teams 157:8 UTF-8 P. 4 spaces...
|
NULL
|
8402644307130856715
|
NULL
|
visual_change
|
ocr
|
NULL
|
PhostormVIewINavigarecodeKeractorFV faVsco.js°9 ma PhostormVIewINavigarecodeKeractorFV faVsco.js°9 master ~Proledey© Opportunity.phpC Paruicipant.ong© Partner.php© Permission.php© PhoneNumber.phpc) Playoacklneme.ono© Playbook.phpC) Playbookcategorv.php© Playlist.php(C) RateLimit.php© Region.php(c) Role.php© RoleChangeEvent.php(c) Sconegrouo,ono© Session.php(C) SlackBot.oho(C) SocialAccount.oho(C) Stade oho© Task.php(c) Team nhn© TeamAiContext.php© TeamDomain.php© TeamFeature.php© TeamSettings.phpC) TextRelay.ongC) Track.php© TranscriptionModel.php© TranscriptionModelLocale.php© TranscriptionProvider.php© User.php© UserSettings.php© Vocabulary.phpc) VocabularyPronunciation.php© VoiceAccess.php(c)VolceconsentPrefix.ono> M Notifications• → ObserversM Policiesv Providers@ ActivitvServiceProvider.ohn@ AniServiceProvider.nhnC AppServiceProvider.php@ AuthServiceProvider.nhn@ RroadcastServiceProvider.nho© AppServiceProvider.php© Automateakeporisservice.ongc UserPilotAcuvicyListener.onoC) AutomatedReport.pho<ohonamespace Jiminny Providers:›use...final class AppServiceProvider extends ServiceProvider* A71 the abilities that mau he assianed to APT tokens.1 usageprivate const array TOKENS_CAN = [olaL-outbound → "Ulal with the sorcphone,'start-conference' => 'Organize a Conference',"sms ='send & receive sMs with the sottphone,'ghost-conference' => 'Join a Conference as a Ghost'.public function boot: voidk...}11451144* Register anu aoplication services.146 6tpublic function registero: voidi...-* Reaisten the nelenses classiprotected function registerReleasesl...}* Reaisten encrunt cookies.protected function registerEncryptCookies: voidf...}© CalendarServiceProvider.php@ CreateParticinantServiceProvide(C) CrmServiceProvider.nhn© EncryptionServiceProvider.php(c CvontCorvicoDrovidor nhnl@ Hubsnot.Journa|ServiceProvider.p© HubspotWebhookServiceProvideAlimi© ImportActivityTypesTest.phpC) Service.onpC) ReportController.ongTHasAdiTokens.onp© RouteServiceProvider.php© Partner.php© User.php©syncuserrllotcompanyListener.pnpA1 A8 X1AY274 A276100% C.• Mon 20 Apr 11:42:40U TrackAutomatedReportGeneratedEventTest& composer.json X A SF [jiminny@localhost]4 HS_local [jiminny@localhost]« console (PROD]A console [EU]« console [STAGING]InstallUpadteShow log12 V14 A V"extra": {"Laravel":"dont-discoven". "whitelist": []-License-check". {"repositories": ["TYpe". "Ves",Hunlil. Hbttne./laithuhcom/pHD.CCMnon/Rinanvhnivon aitiom/iiminny/oauth2-salesloft.git'.com/jiminny/oauth2-aircall.qit""ur1": "https://qithub.com/jiminnv/oauth2-pipedrive.git'"un]". Ihttns:laithub.com/iminnv/oauth2-dialnad.aituW Windsurf Teams 157:8 UTF-8 P. 4 spaces...
|
NULL
|
|
25005
|
537
|
42
|
2026-04-15T12:39:24.154766+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-15/1776 /Users/lukas/.screenpipe/data/data/2026-04-15/1776256764154_m1.jpg...
|
Boosteroid
|
Boosteroid
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
+SlackFileEditViewGoHistoryWindowHelpEDHomeDMsActi +SlackFileEditViewGoHistoryWindowHelpEDHomeDMsActivity..•More+→CSearch Jiminny IncJiminny ...+# general# infra-changes# jiminny-bg# platform-tickets# product _launches# random# releases# sofia-office# support# thank-yous# the_people_of jimi...Direct messagesStoyan TanevVes. Galya DimitrovaAneliya Angelova, ...Vasil VasilevSteliyan GeorgievAdelina Petrova, Ili...P. Adelina PetrovaD. Nikolay Nikolov2 Galya Dimitrova, Ni...ii: AppsJira CloudToast# releases8 22+Messages© FilesTjiminny/appBookmarksAddod hu GitHubToday ~CircleCl APP2:18 PMDeployment Successful!Project: appWhen:04/15/202611:18:51Tag:View JobNewGitHub APP 3:28 PM7 new commits pushed to master by nikolay-yankov24b989ee - Enhance SECFIXdocumentation and policiesa3a0a742 - Update SECFIX Slack channelreference in documentation and workflowfiles071c999d - Merge branch 'master' intoimprove-secfix-bot-15-04-2026981e9a1a - Update SECFIX_PROMPT.mdto enhance clarity on upgrade safety andchangelog reviews6e938e53 - Enhance SECFIX workflow withSlack notification optionsShow morejiminny/app| Added by GitHubMessage #releasesAaSprint Review - in 21 mRActivity MonitorAll ProcessesProcess NameBoosteroidWindowServerFirefoxCP Isolated Web ContentFirefoxFirefoxCursorUlViewService (Not Responding)FirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefox GPU HelperFirefox GPU HelperVTDecoderXPCServiceSlack Helper (Renderer)FirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentNotion Calendar Helper (Renderer)claudeNotion Helper (Renderer)FirefoxCP Isolated Web ContentClaude Helper (Renderer)iTerm2FirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentCode Helper (Renderer)Mem...2,04 GB1,17 GB961,2 MB953,6 MB835,0 MB792,9 MB770,8 MB547,0 MB544,3 MB538,3 MB516,0 MB455,0 MB447,2 MB432,4 MB414,2 MB399,4 MB386,8 MB385,6 MB372,3 MB343,0 MB326,1 MB322,4 MB302,9 MB301,1 MB271,2 MB235,1 MB220,3 MB214,7 MBMEMORY PRESSUREPhysical Memory:Memory Used:Cached Files:Swap Used:100% <478Wed 15 Apr 15:39:24CPUMemoryDiskThreads3823257484262526291115242623262524231513202815262719EnergyPorts60019 7801237321 20120 015127128251242166186121124121124124121121172723131252161 841123126241PID93892407429748014146648424203036713146738019938994186335480358313527643652430163689848173265485091011483583360519487856138482988534016,00 GB13,86 GB <2,09 GB3,01 GBApp Memory:Wired Memory:Compressed:NetworkUserlukas_windowserverlukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukas3,53 GB2,90 GB6,88 GB...
|
NULL
|
8402454811945868406
|
NULL
|
click
|
ocr
|
NULL
|
+SlackFileEditViewGoHistoryWindowHelpEDHomeDMsActi +SlackFileEditViewGoHistoryWindowHelpEDHomeDMsActivity..•More+→CSearch Jiminny IncJiminny ...+# general# infra-changes# jiminny-bg# platform-tickets# product _launches# random# releases# sofia-office# support# thank-yous# the_people_of jimi...Direct messagesStoyan TanevVes. Galya DimitrovaAneliya Angelova, ...Vasil VasilevSteliyan GeorgievAdelina Petrova, Ili...P. Adelina PetrovaD. Nikolay Nikolov2 Galya Dimitrova, Ni...ii: AppsJira CloudToast# releases8 22+Messages© FilesTjiminny/appBookmarksAddod hu GitHubToday ~CircleCl APP2:18 PMDeployment Successful!Project: appWhen:04/15/202611:18:51Tag:View JobNewGitHub APP 3:28 PM7 new commits pushed to master by nikolay-yankov24b989ee - Enhance SECFIXdocumentation and policiesa3a0a742 - Update SECFIX Slack channelreference in documentation and workflowfiles071c999d - Merge branch 'master' intoimprove-secfix-bot-15-04-2026981e9a1a - Update SECFIX_PROMPT.mdto enhance clarity on upgrade safety andchangelog reviews6e938e53 - Enhance SECFIX workflow withSlack notification optionsShow morejiminny/app| Added by GitHubMessage #releasesAaSprint Review - in 21 mRActivity MonitorAll ProcessesProcess NameBoosteroidWindowServerFirefoxCP Isolated Web ContentFirefoxFirefoxCursorUlViewService (Not Responding)FirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefox GPU HelperFirefox GPU HelperVTDecoderXPCServiceSlack Helper (Renderer)FirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentNotion Calendar Helper (Renderer)claudeNotion Helper (Renderer)FirefoxCP Isolated Web ContentClaude Helper (Renderer)iTerm2FirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentCode Helper (Renderer)Mem...2,04 GB1,17 GB961,2 MB953,6 MB835,0 MB792,9 MB770,8 MB547,0 MB544,3 MB538,3 MB516,0 MB455,0 MB447,2 MB432,4 MB414,2 MB399,4 MB386,8 MB385,6 MB372,3 MB343,0 MB326,1 MB322,4 MB302,9 MB301,1 MB271,2 MB235,1 MB220,3 MB214,7 MBMEMORY PRESSUREPhysical Memory:Memory Used:Cached Files:Swap Used:100% <478Wed 15 Apr 15:39:24CPUMemoryDiskThreads3823257484262526291115242623262524231513202815262719EnergyPorts60019 7801237321 20120 015127128251242166186121124121124124121121172723131252161 841123126241PID93892407429748014146648424203036713146738019938994186335480358313527643652430163689848173265485091011483583360519487856138482988534016,00 GB13,86 GB <2,09 GB3,01 GBApp Memory:Wired Memory:Compressed:NetworkUserlukas_windowserverlukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukas3,53 GB2,90 GB6,88 GB...
|
NULL
|
|
20584
|
448
|
23
|
2026-04-15T09:04:22.491061+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-15/1776 /Users/lukas/.screenpipe/data/data/2026-04-15/1776243862491_m2.jpg...
|
NULL
|
NULL
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
PhpStormFileFditViewNavigateCodelaraveRetactonTool PhpStormFileFditViewNavigateCodelaraveRetactonToolsWindowHelpFV faVsco.s v*#11894 on.lY-18009-automated-renorts-ask-liminnvk(©) ReportController.php(©) SendReportJob.phpC AutomatedReportsCommand.php X©) AutomatedReportsCommandTest.php(C AutomatedReportsSendCommand.phpC Stage.phpC AddLayoutEntities.phpC Team.phpC AutomatedReportsRepository.phpAulomaleakeporisservice.ono© CreateHeldActivityEvent.php© TrackProviderInstalledEvent.phpC CreateActivityLoggedEvent.php© UserPilotActivityListener.php© ActivityLogged.php© AutomatedReportsCallbackService.php© RequestGenerateAskJiminnyReportJob.phpe) RequestcenerateRenort.ob.ono.© AutomatedReportResuit.phpc) Automatedkeportoneclass AutomatedReportsCommand extends Command991001011L0/2110511041105*ovar suringprotected Sdescription = 'Process automated reports based on their frequency weekly. monthly. quarterly).use --report-ia to manually criccer a speclTic report Dy 1 on wunu.public function __constructlprivate readonly Loggerinterface slogger,private readonly Busbispatcher saispatcher.privace readonly Aucomacedkeportskepository фгерогскероб1согу14..3* Execute the console command* dreturn intpublic function handleo: intr..1 usageprivate function disableExpiredASKJ1m1nnyReports(): vo1dфехріrеdкeporus = sch1s->герогикероs1сorу->geсtxp1redAcu1veAsku1minnyкeporusoiforeach (SexpiredReports as Sreport) !$this->logger->info(self::LOG_PREFIX . ' Disabling expired Ask Jiminny report', [''reportluid' => $report->getluido.'teamid' => Sreport-›getleamido.'expiresAt' => Sreport->getExpiresat?->toDateStringo.1):sthis->reportrepository->update(sreport, L'status => falseJ):V2Л1117111811191120121* Process reports for a specific freauencu.* dparam string Sfrequency* dreturn void4 usdyesprivate function processReports(string $frequency): void{...}1 usageprivate function getReportById(string $reportId): Collection(...}loblSupport Daily • in 2h 56 m100% zWed 15 Apr 12:04:22AutomatedReportsCommandTest-= custom.lo9= laravel.logL SF (iminny@localhostc HS_local fiminny@localhost¿ console EUL console [STAGING XDa0.Tx: Auto vSo jiminny v522523524525526528550551536540541542543544545546547548549559551054556S00566567568569570571572574HlaygroundWHERE U.team id = 1 and sa.provider = 'salesforce':18 16 V.13select * from teams where 1d = 1:select * from groups g JOlN playbooks p 1.n<->I: on g.playbook_1d = p.1d where g.team_ 1d = 1:select * trom groups where 10 = 505;select * from playbooks where team_id = 1;select * trom playdooks wnere 10 = 175;select x TO1playbook_cacegories where playbook_ld- d/s,select x troIusers where tean_ld = 1,select x Tron users wnere 10 = 1100.select * from crm profiles where user id = 7160:select * from featuresselect# 1d, uuld, type, provider, playbook_category_1d, user_1d, lead_1d, contact_1d, account_1d, opportunity_1d, stage_1d# crm_configuration_1d, crm_provider_1d, transcription_1d, statustron aculviules where cri_contiguracion_1d = 1 and type = "conterence"# and crm_provider_id IS NOT NULLand provider l= 'uploader' and actual start time IS NOT NULUORDER by id desc:select * from activities where id = 54747783: # 00U0400000pCzoiMACselect p.id, p.activity type, pc.id, pc.nameFROM playbooks pJoln playbook_categories pc 1<->l.n: on p.1d = pc.playbook_1dwhere p.team_1d = 1 and p.activity_type = 'event'*SELECI * FROM CrM_TIeLaS wHERE crm_contiguration_1d = 1 and object_type = event,SELECI * FROM Crn_TIeLd_VaLUeS wHERE crm_TLeLd_1d = 4select * from crm lavouts cl ioin plavbook lavouts pl 1<->1.n: on cl.id = pl.lavout idwhere crm confiquration id = 1 and pl.plavbook id = 175:select * from teams;SELECT r.* FROM automated reports rjoin teams t on r.team.id = t.idWHERE r.frequency = 'dally"and r.status = 1ANdD t.status ='activeAND (r.expires at >= now() OR r.expires at IS NULL);select * from automated_report_results where report id IN (18, 33):select * from activity_searches where id = 10932;select * from activity search_filters where activity search_id = 10932:select * fromoruel Dyid descselect * from automated_report_results order by id desc;select * from automated_report_results where report 1d IN (37)*SELECT * FROM automated_reports WHERE Uu1d_to_b1n( 18a06a/5-afd2-476f-aadc-14d405/bdda2') = vu1d:1178Unable lo resolve lable automalea reporisAnalyzing project..winasun leams56/:30 Ulr-o4 spaces...
|
NULL
|
8402325364723316991
|
NULL
|
visual_change
|
ocr
|
NULL
|
PhpStormFileFditViewNavigateCodelaraveRetactonTool PhpStormFileFditViewNavigateCodelaraveRetactonToolsWindowHelpFV faVsco.s v*#11894 on.lY-18009-automated-renorts-ask-liminnvk(©) ReportController.php(©) SendReportJob.phpC AutomatedReportsCommand.php X©) AutomatedReportsCommandTest.php(C AutomatedReportsSendCommand.phpC Stage.phpC AddLayoutEntities.phpC Team.phpC AutomatedReportsRepository.phpAulomaleakeporisservice.ono© CreateHeldActivityEvent.php© TrackProviderInstalledEvent.phpC CreateActivityLoggedEvent.php© UserPilotActivityListener.php© ActivityLogged.php© AutomatedReportsCallbackService.php© RequestGenerateAskJiminnyReportJob.phpe) RequestcenerateRenort.ob.ono.© AutomatedReportResuit.phpc) Automatedkeportoneclass AutomatedReportsCommand extends Command991001011L0/2110511041105*ovar suringprotected Sdescription = 'Process automated reports based on their frequency weekly. monthly. quarterly).use --report-ia to manually criccer a speclTic report Dy 1 on wunu.public function __constructlprivate readonly Loggerinterface slogger,private readonly Busbispatcher saispatcher.privace readonly Aucomacedkeportskepository фгерогскероб1согу14..3* Execute the console command* dreturn intpublic function handleo: intr..1 usageprivate function disableExpiredASKJ1m1nnyReports(): vo1dфехріrеdкeporus = sch1s->герогикероs1сorу->geсtxp1redAcu1veAsku1minnyкeporusoiforeach (SexpiredReports as Sreport) !$this->logger->info(self::LOG_PREFIX . ' Disabling expired Ask Jiminny report', [''reportluid' => $report->getluido.'teamid' => Sreport-›getleamido.'expiresAt' => Sreport->getExpiresat?->toDateStringo.1):sthis->reportrepository->update(sreport, L'status => falseJ):V2Л1117111811191120121* Process reports for a specific freauencu.* dparam string Sfrequency* dreturn void4 usdyesprivate function processReports(string $frequency): void{...}1 usageprivate function getReportById(string $reportId): Collection(...}loblSupport Daily • in 2h 56 m100% zWed 15 Apr 12:04:22AutomatedReportsCommandTest-= custom.lo9= laravel.logL SF (iminny@localhostc HS_local fiminny@localhost¿ console EUL console [STAGING XDa0.Tx: Auto vSo jiminny v522523524525526528550551536540541542543544545546547548549559551054556S00566567568569570571572574HlaygroundWHERE U.team id = 1 and sa.provider = 'salesforce':18 16 V.13select * from teams where 1d = 1:select * from groups g JOlN playbooks p 1.n<->I: on g.playbook_1d = p.1d where g.team_ 1d = 1:select * trom groups where 10 = 505;select * from playbooks where team_id = 1;select * trom playdooks wnere 10 = 175;select x TO1playbook_cacegories where playbook_ld- d/s,select x troIusers where tean_ld = 1,select x Tron users wnere 10 = 1100.select * from crm profiles where user id = 7160:select * from featuresselect# 1d, uuld, type, provider, playbook_category_1d, user_1d, lead_1d, contact_1d, account_1d, opportunity_1d, stage_1d# crm_configuration_1d, crm_provider_1d, transcription_1d, statustron aculviules where cri_contiguracion_1d = 1 and type = "conterence"# and crm_provider_id IS NOT NULLand provider l= 'uploader' and actual start time IS NOT NULUORDER by id desc:select * from activities where id = 54747783: # 00U0400000pCzoiMACselect p.id, p.activity type, pc.id, pc.nameFROM playbooks pJoln playbook_categories pc 1<->l.n: on p.1d = pc.playbook_1dwhere p.team_1d = 1 and p.activity_type = 'event'*SELECI * FROM CrM_TIeLaS wHERE crm_contiguration_1d = 1 and object_type = event,SELECI * FROM Crn_TIeLd_VaLUeS wHERE crm_TLeLd_1d = 4select * from crm lavouts cl ioin plavbook lavouts pl 1<->1.n: on cl.id = pl.lavout idwhere crm confiquration id = 1 and pl.plavbook id = 175:select * from teams;SELECT r.* FROM automated reports rjoin teams t on r.team.id = t.idWHERE r.frequency = 'dally"and r.status = 1ANdD t.status ='activeAND (r.expires at >= now() OR r.expires at IS NULL);select * from automated_report_results where report id IN (18, 33):select * from activity_searches where id = 10932;select * from activity search_filters where activity search_id = 10932:select * fromoruel Dyid descselect * from automated_report_results order by id desc;select * from automated_report_results where report 1d IN (37)*SELECT * FROM automated_reports WHERE Uu1d_to_b1n( 18a06a/5-afd2-476f-aadc-14d405/bdda2') = vu1d:1178Unable lo resolve lable automalea reporisAnalyzing project..winasun leams56/:30 Ulr-o4 spaces...
|
NULL
|
|
63379
|
NULL
|
0
|
2026-04-21T08:54:29.431348+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776761669431_m2.jpg...
|
iTerm2
|
NULL
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
SlackProledeyC) FieldDefinitions.onv© FieldTypeCon SlackProledeyC) FieldDefinitions.onv© FieldTypeConverter.php© HubspotClientinterface.php© HubspotTokenManager.ph|© PayloadBuilder.php© RemoteCrmObjectManipula© ResponseNormalize.php© Service.php© SyncFieldAction.phpC) synckelatedacuivitymanad© WebhookSyncBatchProcesv U IntegrationApp> D Accessors•DAD> D Confid•DDTO• Filters• DJobsProsoectSearchStratedv• Service iraitsC) DataClient. ohoC) DecorateActivitv.ohoC) LocalSearch.ohv(1)LocalSearchinterface.oho© RemoteSearch.php© Service.phpv MllictenersConvertLeadActivities.php© PurgeLookupCache.php) M Metadata) M Miarationi>@ Pipedrivevm CalocfarndD rielas• C OpportunityMatcherOpportunitvsyncStrateayProspectSearchStrateav> D ServiceTraitsC) Client.phpC) [EMAIL]© FieldDefinitions.phpC) PavloadBuilder.ohvC) Profile.ohoC) @uervBuilder.ohoC) @uervHandler.ohoC) @uerviterator.ohoc) QuervResults nhnC) Service nhn@ SvncRatchRedicService nhrTM TraitsWindowHelpG ConvertLeadActivities.php=custom.log=laravel.log4 SF jiminny@localC SaveActivity.png© SyncToPlanhat.phpA console [STAGING]© salestorce/service.pnp x© createPlayedevent.pnp1561C) PlanhatActivityListener.php(C)AskAnythingPromptService.php© AskJiminnyReportsController.phpC) AutomatedReportsRepository.phpC) AutomatedReportsCommand.php® AutomatedReportsController.phpphp ap_ y2.ohoC) TrackProviderinstalledEvent.ohoC) RequestGenerateReport.Job.oho(C) AutomatedReportResult.ohvC) AutomatedReport.ohoQ. LeadConvertedX2 Cc W.*1563156415651566156715684 I Y :class Service extends BaseService 1mplementsoubuc function saveActivitvlActiviry Sactivity: Activitv1569A19 A144 X3 X22 21Av 1570—1571if (Sactivity->account_id) {ShasLinkFeature = Sactavity->user->team->hasFeatureFeatureEnum::LINK_ACTIVITY_TO MULTIPLE_PROSPECTS1572157315741575if ((ShasLinkFeature &S Sactivitv->opportunitv id &s ! Sactivitv->contact id)— 157%shas LinkFeature xe Sactivitv->hasdooortunitvoo1578Spavload += "'Whatid' => Sactivitv->oonortunitv->erm_ orovider 1di:} else 11581 /Snavload += "'Whatid' => Sactivitv->account->erm orovider 1dl:1/101584if (Sactivity->contact_id) {[1585Spayload += ['Whold' => Sactivity->contact->crm_provider_idl:—1580}elseif (Sactivity->lead_id) {Cascade & TICommand 961// Sync the lead to get fresh data instead of the cached one.$leadData = $this->syncLead(Sactivity->lead->crm_provider_id):• Extract Surround // =we log it the lead is actually converted.if (SleadData['converted at'] !== null) {SconvertedLead = Sthis->config->leadsO->find(Sactivity->lead_id):Sconvertedupportun1ty = nuulSactivity->lead_id = null:1592f1591594159.- 159if (SconvertedLead){1f (sconvertedLead->account)// overwrite account's crm_provider_id with converted account one,Spavload += ['WhatId' => $convertedLead->account->crm_provider idl:-1591-1598— 1401Sactivitv->account_id= Sconvertedlead->account->id5-1LоIif (Sconventedl ead-Sonnontunitv)$E1605Sconvented0nnontunitv = Sconventedl.pad->onnontunitv•Sconverteatop porpuntuy e Scrnyereeileadt pitn unterted opportunity onge 160gTx: Auto vwner 15256 525/85088ontact 1 16779180 665587441856 -ontact 2 19247565 742123547700 -ompany 4176155 47158650569leal 7100955 410150124747CONCAT(u.id, CASE WHEN V.id = t.ou.emailsa.*.t.owner_id FROM social_accounts sN users u on v.id = sa.sociable_icN teams t l..n<->1: on t.id = u.tearRE u.team_id = 400 and sa.providerect * from features;ect * from team_features where fea'ect * from teams where id = 556; #ect * from crm_configurations wherECT * FROM users WHERE id = 18101:CONCAT(u.id, CASE WHEN u.id = t.owU.emallsa.*t.owner id FROM social accounts saN users u on u.id = sa.sociable icN teams + 1..n<->1: on t.id = u.teanRE u,team id = 556 and sa,providenect * from opportunities where 1d =ect * from opportunity stages wherect * from business processes wherect * From husiness nrocess stadedect * From husiness nrocess stadedect * from stages where team id =ect * from teams whene id = 459.CONCAT(u.id, CASE WHEN u.id = t.ou. email.]ca +t.owner_id FROM social_accounts saNucene n on mid= ca cociablo ioN toame + 1nc-s1: on + id = n toarP5 u toam id = 150 and ca nnovidorCAT no ctono id e Anm anovidon idM opportunity stages osHomeActivityMoreJiminny ... v& nlate.innAr-teanTMore unreads#* Channels# ai-chapter# alerts# backend# c-learning-people# confusion-clinic# curiositv lab# engineering# frontend# general# infra-changes# liminnv-be• people-with-copilo..8 people-with-zoom-….# platform-team# platform-tickets#t product launches# random# releases# support# thank-vous#t the peonle of fimi.…^ Direct messages2 Vasil Vasilev. Nikolay Nikolovf Aneliva Aneelova@. Galva Dimitrova21 Stefka StovanovaAa Stovan Tomov3 Aneliva Angelova.9 Stovan TanevP Nikolay Ivanov( Vec@ Dotkn Kochinck#:: Anndf Jira CloudB Toast• suppont Dally • In 3n om100% LzTue 21 Apr 11:54:29Q Search Jiminny Inc& e. Vasil Vasilev• Messagest Add canvas( Files& Pins+Todayаз разоирам защо е дооавен новия evencно искам да ги отделя двата event-a един от другда няма врьзка между тяхLukas Kovalik 11:38 AMпеално само Convert Lead Achvines което очакра LeadConvertedlYasi Vasllev 11:41AMзначиSaveActivity като се извика проверява лали има converted Leadако има converted lead го обработва велнага това achvitvи после вика LeadConverted през ActivitvLeadConvertedа другия тьрси всички активитита свързани с тоя lead, и им подменя проспектите с converted account ,contact, opportunityкаквото намериобаче има пазлика в алгопитмите по клито се полменят converted nrosnects p SaveAchvitv u e Convert eadAchvinesLukas Kovalik 11-53 ANсори, нещо не мога да разбера, проблем до колко помня беше че ConvertLeadActivities се викаше само от LeadConverted (което не е свързано сьс saveActivity anoи svnc llead). За това има event помежлу който чисти кеш и пуска ConvertleadAchvines чтез LeadConverted.Vasil Vasilev 11-54 AMclacs Activitvl.endConventeduse InteractsWithSocketspublic Activity Sactivity:nuhlie lead Cconventedl.ead.public function __construct(Activity Sactivity, Lead SconvertedLead)Sthis->activity = Sactivity:this->convertedlead= Sconverted.ead:event(newLeadConvented(Sconvertedl.each)toBa e ActivitvLeadConvertedSleadData = Sthis-ssvncLead(Sactivitv->lead->crm_provider id):всьшност пусне и LeadConve+ AaIVasil Vasiley is tvnind...
|
NULL
|
8402046688919037655
|
NULL
|
click
|
ocr
|
NULL
|
SlackProledeyC) FieldDefinitions.onv© FieldTypeCon SlackProledeyC) FieldDefinitions.onv© FieldTypeConverter.php© HubspotClientinterface.php© HubspotTokenManager.ph|© PayloadBuilder.php© RemoteCrmObjectManipula© ResponseNormalize.php© Service.php© SyncFieldAction.phpC) synckelatedacuivitymanad© WebhookSyncBatchProcesv U IntegrationApp> D Accessors•DAD> D Confid•DDTO• Filters• DJobsProsoectSearchStratedv• Service iraitsC) DataClient. ohoC) DecorateActivitv.ohoC) LocalSearch.ohv(1)LocalSearchinterface.oho© RemoteSearch.php© Service.phpv MllictenersConvertLeadActivities.php© PurgeLookupCache.php) M Metadata) M Miarationi>@ Pipedrivevm CalocfarndD rielas• C OpportunityMatcherOpportunitvsyncStrateayProspectSearchStrateav> D ServiceTraitsC) Client.phpC) [EMAIL]© FieldDefinitions.phpC) PavloadBuilder.ohvC) Profile.ohoC) @uervBuilder.ohoC) @uervHandler.ohoC) @uerviterator.ohoc) QuervResults nhnC) Service nhn@ SvncRatchRedicService nhrTM TraitsWindowHelpG ConvertLeadActivities.php=custom.log=laravel.log4 SF jiminny@localC SaveActivity.png© SyncToPlanhat.phpA console [STAGING]© salestorce/service.pnp x© createPlayedevent.pnp1561C) PlanhatActivityListener.php(C)AskAnythingPromptService.php© AskJiminnyReportsController.phpC) AutomatedReportsRepository.phpC) AutomatedReportsCommand.php® AutomatedReportsController.phpphp ap_ y2.ohoC) TrackProviderinstalledEvent.ohoC) RequestGenerateReport.Job.oho(C) AutomatedReportResult.ohvC) AutomatedReport.ohoQ. LeadConvertedX2 Cc W.*1563156415651566156715684 I Y :class Service extends BaseService 1mplementsoubuc function saveActivitvlActiviry Sactivity: Activitv1569A19 A144 X3 X22 21Av 1570—1571if (Sactivity->account_id) {ShasLinkFeature = Sactavity->user->team->hasFeatureFeatureEnum::LINK_ACTIVITY_TO MULTIPLE_PROSPECTS1572157315741575if ((ShasLinkFeature &S Sactivitv->opportunitv id &s ! Sactivitv->contact id)— 157%shas LinkFeature xe Sactivitv->hasdooortunitvoo1578Spavload += "'Whatid' => Sactivitv->oonortunitv->erm_ orovider 1di:} else 11581 /Snavload += "'Whatid' => Sactivitv->account->erm orovider 1dl:1/101584if (Sactivity->contact_id) {[1585Spayload += ['Whold' => Sactivity->contact->crm_provider_idl:—1580}elseif (Sactivity->lead_id) {Cascade & TICommand 961// Sync the lead to get fresh data instead of the cached one.$leadData = $this->syncLead(Sactivity->lead->crm_provider_id):• Extract Surround // =we log it the lead is actually converted.if (SleadData['converted at'] !== null) {SconvertedLead = Sthis->config->leadsO->find(Sactivity->lead_id):Sconvertedupportun1ty = nuulSactivity->lead_id = null:1592f1591594159.- 159if (SconvertedLead){1f (sconvertedLead->account)// overwrite account's crm_provider_id with converted account one,Spavload += ['WhatId' => $convertedLead->account->crm_provider idl:-1591-1598— 1401Sactivitv->account_id= Sconvertedlead->account->id5-1LоIif (Sconventedl ead-Sonnontunitv)$E1605Sconvented0nnontunitv = Sconventedl.pad->onnontunitv•Sconverteatop porpuntuy e Scrnyereeileadt pitn unterted opportunity onge 160gTx: Auto vwner 15256 525/85088ontact 1 16779180 665587441856 -ontact 2 19247565 742123547700 -ompany 4176155 47158650569leal 7100955 410150124747CONCAT(u.id, CASE WHEN V.id = t.ou.emailsa.*.t.owner_id FROM social_accounts sN users u on v.id = sa.sociable_icN teams t l..n<->1: on t.id = u.tearRE u.team_id = 400 and sa.providerect * from features;ect * from team_features where fea'ect * from teams where id = 556; #ect * from crm_configurations wherECT * FROM users WHERE id = 18101:CONCAT(u.id, CASE WHEN u.id = t.owU.emallsa.*t.owner id FROM social accounts saN users u on u.id = sa.sociable icN teams + 1..n<->1: on t.id = u.teanRE u,team id = 556 and sa,providenect * from opportunities where 1d =ect * from opportunity stages wherect * from business processes wherect * From husiness nrocess stadedect * From husiness nrocess stadedect * from stages where team id =ect * from teams whene id = 459.CONCAT(u.id, CASE WHEN u.id = t.ou. email.]ca +t.owner_id FROM social_accounts saNucene n on mid= ca cociablo ioN toame + 1nc-s1: on + id = n toarP5 u toam id = 150 and ca nnovidorCAT no ctono id e Anm anovidon idM opportunity stages osHomeActivityMoreJiminny ... v& nlate.innAr-teanTMore unreads#* Channels# ai-chapter# alerts# backend# c-learning-people# confusion-clinic# curiositv lab# engineering# frontend# general# infra-changes# liminnv-be• people-with-copilo..8 people-with-zoom-….# platform-team# platform-tickets#t product launches# random# releases# support# thank-vous#t the peonle of fimi.…^ Direct messages2 Vasil Vasilev. Nikolay Nikolovf Aneliva Aneelova@. Galva Dimitrova21 Stefka StovanovaAa Stovan Tomov3 Aneliva Angelova.9 Stovan TanevP Nikolay Ivanov( Vec@ Dotkn Kochinck#:: Anndf Jira CloudB Toast• suppont Dally • In 3n om100% LzTue 21 Apr 11:54:29Q Search Jiminny Inc& e. Vasil Vasilev• Messagest Add canvas( Files& Pins+Todayаз разоирам защо е дооавен новия evencно искам да ги отделя двата event-a един от другда няма врьзка между тяхLukas Kovalik 11:38 AMпеално само Convert Lead Achvines което очакра LeadConvertedlYasi Vasllev 11:41AMзначиSaveActivity като се извика проверява лали има converted Leadако има converted lead го обработва велнага това achvitvи после вика LeadConverted през ActivitvLeadConvertedа другия тьрси всички активитита свързани с тоя lead, и им подменя проспектите с converted account ,contact, opportunityкаквото намериобаче има пазлика в алгопитмите по клито се полменят converted nrosnects p SaveAchvitv u e Convert eadAchvinesLukas Kovalik 11-53 ANсори, нещо не мога да разбера, проблем до колко помня беше че ConvertLeadActivities се викаше само от LeadConverted (което не е свързано сьс saveActivity anoи svnc llead). За това има event помежлу който чисти кеш и пуска ConvertleadAchvines чтез LeadConverted.Vasil Vasilev 11-54 AMclacs Activitvl.endConventeduse InteractsWithSocketspublic Activity Sactivity:nuhlie lead Cconventedl.ead.public function __construct(Activity Sactivity, Lead SconvertedLead)Sthis->activity = Sactivity:this->convertedlead= Sconverted.ead:event(newLeadConvented(Sconvertedl.each)toBa e ActivitvLeadConvertedSleadData = Sthis-ssvncLead(Sactivitv->lead->crm_provider id):всьшност пусне и LeadConve+ AaIVasil Vasiley is tvnind...
|
63377
|
|
55594
|
1198
|
41
|
2026-04-20T09:57:30.687540+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-20/1776 /Users/lukas/.screenpipe/data/data/2026-04-20/1776679050687_m2.jpg...
|
Firefox
|
JY-20553 | Improve crm-sync delays by yalokin-jimi JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app — Work...
|
True
|
github.com/jiminny/app/pull/11976/changes#diff-34a github.com/jiminny/app/pull/11976/changes#diff-34a26df0ce9cfc34746a639cff6123af442ab1b3aef7a9a0d8311043cbfec7de...
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Platform Sprint 2 Q2 - Platform Team - Scrum Board Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira
JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app
JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app
Close tab
[SRD-6793] Les Mills activity types not pulling in - Jira
[SRD-6793] Les Mills activity types not pulling in - Jira
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app
JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app
[JY-20543] AJ Reports > Tracking - Jira
[JY-20543] AJ Reports > Tracking - Jira
[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira
[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira
Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app
Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app
New Tab
New Tab
Product Growth Platform | Userpilot
Product Growth Platform | Userpilot
Userpilot | Logged-activity
Userpilot | Logged-activity
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
Jiminny
Jiminny
Jiminny
Jiminny
Jiminny
Jiminny
New Tab
Customize sidebar
Close Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
AI Chat settings
Close
WORK, Google Account: [EMAIL]
Main menu
New chat
Gemini
New Chat
Open menu for conversation actions.
Conversation with Gemini
Conversation with Gemini
Copy prompt
You said checkout to remote branch
You said
checkout to remote branch
Listen
Show more options
Show thinking
Gemini said
Gemini said
Here is the standard way to check out a remote branch in Git.
Step 1: Fetch the latest remote branches
Step 1: Fetch the latest remote branches
Before checking out, it is best practice to ensure your local repository knows about the latest branches on the remote. Run:
Bash
Copy code
git fetch
Step 2: Check out the branch
Step 2: Check out the branch
You have a few options depending on your version of Git and whether you want to use the exact same name as the remote branch.
Option A: The simplest way (Recommended)
Option A: The simplest way (Recommended)
If the remote branch exists and you don't have a local branch with the same name, Git will automatically create the local branch and set it up to track the remote one.
Using the newer
switch
command:
Bash
Copy code
git switch <branch-name>
Or using the traditional
checkout
command:
Bash
Copy code
git checkout <branch-name>
(Note: Do not include
origin/
in this command. Just use the branch name, e.g.,
git checkout feature-branch
)
Option B: The explicit way
Option B: The explicit way
If Option A doesn't work (for example, if you have multiple remotes), or if you want to give your local branch a
different name
than the remote branch, you can explicitly map them:
Bash
Copy code
git checkout -b <your-local-branch-name> origin/<remote-branch-name>
How to verify it worked
How to verify it worked
To confirm you are on the right branch and tracking the remote properly, run:
Bash
Copy code
git branch -vv
This will list your local branches, highlight your current branch, and show which remote branch it is tracking (e.g.,
[origin/<branch-name>]
).
Copy prompt
Edit
You said lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ git fetch lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ co -b JY-20553-debug-crm-sync-delays orign/JY-20553-debug-crm-sync-delays fatal: 'orign/JY-20553-debug-crm-sync-delays' is not a commit and a branch 'JY-20553-debug-crm-sync-delays' cannot be created from it lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ git checkout -b JY-20553-debug-crm-sync-delays orign/JY-20553-debug-crm-sync-delays fatal: 'orign/JY-20553-debug-crm-sync-delays' is not a commit and a branch 'JY-20553-debug-crm-sync-delays' cannot be created from it lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $
You said
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ git fetch
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ co -b JY-20553-debug-crm-sync-delays orign/JY-20553-debug-crm-sync-delays
fatal: 'orign/JY-20553-debug-crm-sync-delays' is not a commit and a branch 'JY-20553-debug-crm-sync-delays' cannot be created from it
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ git checkout -b JY-20553-debug-crm-sync-delays orign/JY-20553-debug-crm-sync-delays
fatal: 'orign/JY-20553-debug-crm-sync-delays' is not a commit and a branch 'JY-20553-debug-crm-sync-delays' cannot be created from it
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $
Expand
Listen
Show more options
Show thinking
Gemini said
Gemini said
Ah, it looks like just a tiny typo! You spelled
origin
as
orign
in your commands.
Git is throwing that error because it can't find a remote named "orign".
Here is the corrected command:
Bash
Copy code
git checkout -b JY-20553-debug-crm-sync-delays origin/JY-20553-debug-crm-sync-delays
An Easier Shortcut
An Easier Shortcut
Since your local branch name matches the remote branch exactly, you can actually skip the
-b
and
origin/
entirely. Git is smart enough to figure it out automatically:
Bash
Copy code
git checkout JY-20553-debug-crm-sync-delays
(Or if
co
is your alias for checkout, just
co JY-20553-debug-crm-sync-delays
will work!)
Enter a prompt for Gemini
encrypted
Enter a prompt for Gemini
encrypted
Open upload file menu
Tools
Open mode picker
Pro
Microphone
Your Jiminny chats aren’t used to improve our models. Gemini is AI and can make mistakes, including about people.
Your privacy & Gemini Opens in a new window
Your privacy & Gemini
Opens in a new window
Summarize page
Summarize page
Skip to content
Skip to content
Open menu
Homepage (g then d)
jiminny
jiminny
app
app
Search or jump to…
Type
/
to search
Chat with Copilot
Open Copilot…
Create new...
Issues(g then i)
Pull requests
Repositories
You have unread notifications(g then n)
Open user navigation menu
Repository navigation
Repository navigation
Code
Code
Pull requests (31)
Pull requests
(
31
)
Agents
Agents
Actions
Actions
Wiki
Wiki
Security and quality (22)
Security and quality
(
22
)
Insights
Insights
Settings
Settings
Important update
Important update
On April 24 we'll start using GitHub Copilot interaction data for AI model training unless you opt out.
Review this update
Review this update
and manage your preferences in your
GitHub account settings
GitHub account settings
.
Dismiss banner
JY-20553 | Improve crm-sync delays #11976 Edit title
JY-20553 | Improve crm-sync delays
#
11976
Edit title
Preview
Preview
Checks pending
Checks pending
Code
Code
Open
yalokin-jiminny
yalokin-jiminny
wants to merge 21 commits into
master
master
from
JY-20553-debug-crm-sync-delays
JY-20553-debug-crm-sync-delays
Copy head branch name to clipboard
Lines changed: 907 additions & 132 deletions
Conversation (5)
Conversation
(
5
)
Commits (21)
Commits
(
21
)
Checks (2)
Checks
(
2
)
Files changed (14)
Files changed
(
14
)
Pull Request Toolbar
Pull Request Toolbar
Collapse file tree
Open
JY-20553 | Improve crm-sync delays
JY-20553 | Improve crm-sync delays
#
11976
All commits
All commits
yalokin-jiminny
yalokin-jiminny
wants to merge 21 commits into
master
master
from
JY-20553-debug-crm-sync-delays
JY-20553-debug-crm-sync-delays
Copy head branch name to clipboard
14
/
14
viewed
Checks pending
Checks pending
Submit review
Submit
review
Open diff view settings
Open overview panel
Open comments panel
(
0
)
Filter files…
Filter options
File tree
File tree...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira","depth":4,"bounds":{"left":0.0018284575,"top":0.0518755,"width":0.07596409,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.09497207,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.10614525,"width":0.15774602,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.06732048,"top":0.10215483,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"[SRD-6793] Les Mills activity types not pulling in - Jira","depth":4,"bounds":{"left":0.0,"top":0.12769353,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[SRD-6793] Les Mills activity types not pulling in - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.13886672,"width":0.09524601,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.16041501,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.17158818,"width":0.19963431,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.19313647,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.20430966,"width":0.15525267,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20543] AJ Reports > Tracking - Jira","depth":4,"bounds":{"left":0.0,"top":0.22585794,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20543] AJ Reports > Tracking - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.23703113,"width":0.06981383,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira","depth":4,"bounds":{"left":0.0,"top":0.2585794,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.2697526,"width":0.10688165,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.29130086,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.30247405,"width":0.12915559,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"bounds":{"left":0.0,"top":0.32402235,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"bounds":{"left":0.013297873,"top":0.33519554,"width":0.014960106,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Product Growth Platform | Userpilot","depth":4,"bounds":{"left":0.0,"top":0.3567438,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Product Growth Platform | Userpilot","depth":5,"bounds":{"left":0.013297873,"top":0.367917,"width":0.06200133,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Userpilot | Logged-activity","depth":4,"bounds":{"left":0.0,"top":0.38946527,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Userpilot | Logged-activity","depth":5,"bounds":{"left":0.013297873,"top":0.40063846,"width":0.04637633,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.42218676,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.43335995,"width":0.2052859,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipelines - jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.45490822,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pipelines - jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.4660814,"width":0.039228722,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Feed — jiminny — Sentry","depth":4,"bounds":{"left":0.0,"top":0.48762968,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Feed — jiminny — Sentry","depth":5,"bounds":{"left":0.013297873,"top":0.49880287,"width":0.042719416,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny","depth":4,"bounds":{"left":0.0,"top":0.5203512,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny","depth":5,"bounds":{"left":0.013297873,"top":0.53152436,"width":0.013131649,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny","depth":4,"bounds":{"left":0.0,"top":0.55307263,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny","depth":5,"bounds":{"left":0.013297873,"top":0.5642458,"width":0.013131649,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny","depth":4,"bounds":{"left":0.0,"top":0.5857941,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny","depth":5,"bounds":{"left":0.013297873,"top":0.5969673,"width":0.013131649,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"bounds":{"left":0.0028257978,"top":0.6201117,"width":0.07413564,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"bounds":{"left":0.0028257978,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Close Google Gemini (⌃X)","depth":6,"bounds":{"left":0.013796543,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Tabs from other devices","depth":6,"bounds":{"left":0.024933511,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"bounds":{"left":0.036070477,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"bounds":{"left":0.04720745,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Chat settings","depth":7,"bounds":{"left":0.18733378,"top":0.055067837,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":7,"bounds":{"left":0.19930187,"top":0.055067837,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"WORK, Google Account: lukas.kovalik@jiminny.com","depth":12,"bounds":{"left":0.29039228,"top":0.103751,"width":0.013297873,"height":0.031923383},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Main menu","depth":12,"bounds":{"left":0.08361037,"top":0.103751,"width":0.013297873,"height":0.031923383},"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"New chat","depth":12,"bounds":{"left":0.09690824,"top":0.10454908,"width":0.028590426,"height":0.030327214},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Gemini","depth":15,"bounds":{"left":0.099567816,"top":0.10973663,"width":0.021941489,"height":0.020351157},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Chat","depth":12,"bounds":{"left":0.26246676,"top":0.103751,"width":0.013297873,"height":0.031923383},"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Open menu for conversation actions.","depth":12,"bounds":{"left":0.2757646,"top":0.103751,"width":0.013297873,"height":0.031923383},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"Conversation with Gemini","depth":15,"bounds":{"left":0.079288565,"top":0.14764565,"width":0.0003324468,"height":0.0007980846},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Conversation with Gemini","depth":16,"bounds":{"left":0.079288565,"top":0.15003991,"width":0.1200133,"height":0.025538707},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy prompt","depth":21,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"You said checkout to remote branch","depth":21,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"You said","depth":23,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"checkout to remote branch","depth":23,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Listen","depth":22,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Show more options","depth":20,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Show thinking","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Gemini said","depth":20,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Gemini said","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Here is the standard way to check out a remote branch in Git.","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Step 1: Fetch the latest remote branches","depth":23,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Step 1: Fetch the latest remote branches","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Before checking out, it is best practice to ensure your local repository knows about the latest branches on the remote. Run:","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Bash","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy code","depth":25,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"git fetch","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Step 2: Check out the branch","depth":23,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Step 2: Check out the branch","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"You have a few options depending on your version of Git and whether you want to use the exact same name as the remote branch.","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Option A: The simplest way (Recommended)","depth":23,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Option A: The simplest way (Recommended)","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"If the remote branch exists and you don't have a local branch with the same name, Git will automatically create the local branch and set it up to track the remote one.","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Using the newer","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"switch","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"command:","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Bash","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy code","depth":25,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"git switch <branch-name>","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Or using the traditional","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"checkout","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"command:","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Bash","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy code","depth":25,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"git checkout <branch-name>","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(Note: Do not include","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"origin/","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"in this command. Just use the branch name, e.g.,","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"git checkout feature-branch","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Option B: The explicit way","depth":23,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Option B: The explicit way","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"If Option A doesn't work (for example, if you have multiple remotes), or if you want to give your local branch a","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"different name","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"than the remote branch, you can explicitly map them:","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Bash","depth":25,"bounds":{"left":0.09358378,"top":0.0,"width":0.010804521,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy code","depth":25,"bounds":{"left":0.28507313,"top":0.0,"width":0.013297873,"height":0.031923383},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"git checkout -b <your-local-branch-name> origin/<remote-branch-name>","depth":25,"bounds":{"left":0.09358378,"top":0.0,"width":0.18982713,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"How to verify it worked","depth":23,"bounds":{"left":0.08826463,"top":0.002793296,"width":0.21276596,"height":0.01915403},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"How to verify it worked","depth":24,"bounds":{"left":0.08826463,"top":0.0043894653,"width":0.060339097,"height":0.016360734},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"To confirm you are on the right branch and tracking the remote properly, run:","depth":24,"bounds":{"left":0.08826463,"top":0.030726258,"width":0.18550532,"height":0.016360734},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Bash","depth":25,"bounds":{"left":0.09358378,"top":0.11612131,"width":0.010804521,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy code","depth":25,"bounds":{"left":0.28507313,"top":0.10694334,"width":0.013297873,"height":0.031923383},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"git branch -vv","depth":25,"bounds":{"left":0.09358378,"top":0.11572227,"width":0.0390625,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"This will list your local branches, highlight your current branch, and show which remote branch it is tracking (e.g.,","depth":24,"bounds":{"left":0.08826463,"top":0.15921788,"width":0.21027261,"height":0.037110932},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"[origin/<branch-name>]","depth":25,"bounds":{"left":0.15275931,"top":0.1811652,"width":0.061502658,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":").","depth":24,"bounds":{"left":0.21625665,"top":0.17996807,"width":0.0031582448,"height":0.016360734},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy prompt","depth":21,"bounds":{"left":0.11353058,"top":0.2525938,"width":0.013297873,"height":0.031923383},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit","depth":21,"bounds":{"left":0.12815824,"top":0.2525938,"width":0.013297873,"height":0.031923383},"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"You said lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ git fetch lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ co -b JY-20553-debug-crm-sync-delays orign/JY-20553-debug-crm-sync-delays fatal: 'orign/JY-20553-debug-crm-sync-delays' is not a commit and a branch 'JY-20553-debug-crm-sync-delays' cannot be created from it lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ git checkout -b JY-20553-debug-crm-sync-delays orign/JY-20553-debug-crm-sync-delays fatal: 'orign/JY-20553-debug-crm-sync-delays' is not a commit and a branch 'JY-20553-debug-crm-sync-delays' cannot be created from it lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $","depth":21,"bounds":{"left":0.14810506,"top":0.2621708,"width":0.13696809,"height":0.11173184},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"You said","depth":23,"bounds":{"left":0.079288565,"top":0.26456505,"width":0.019946808,"height":0.016360734},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ git fetch","depth":23,"bounds":{"left":0.14810506,"top":0.26536313,"width":0.13331117,"height":0.061053474},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ co -b JY-20553-debug-crm-sync-delays orign/JY-20553-debug-crm-sync-delays","depth":23,"bounds":{"left":0.14810506,"top":0.33240223,"width":0.13447474,"height":0.08339984},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"fatal: 'orign/JY-20553-debug-crm-sync-delays' is not a commit and a branch 'JY-20553-debug-crm-sync-delays' cannot be created from it","depth":23,"bounds":{"left":0.14810506,"top":0.37709498,"width":0.13314494,"height":0.061053474},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ git checkout -b JY-20553-debug-crm-sync-delays orign/JY-20553-debug-crm-sync-delays","depth":23,"bounds":{"left":0.14810506,"top":0.4441341,"width":0.13331117,"height":0.08339984},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"fatal: 'orign/JY-20553-debug-crm-sync-delays' is not a commit and a branch 'JY-20553-debug-crm-sync-delays' cannot be created from it","depth":23,"bounds":{"left":0.14810506,"top":0.53351957,"width":0.13314494,"height":0.061053474},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $","depth":23,"bounds":{"left":0.14810506,"top":0.60055864,"width":0.13331117,"height":0.038707104},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Expand","depth":21,"bounds":{"left":0.28507313,"top":0.2621708,"width":0.013297873,"height":0.031923383},"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Listen","depth":22,"bounds":{"left":0.29039228,"top":0.40582603,"width":0.013297873,"height":0.031923383},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Show more options","depth":20,"bounds":{"left":0.29039228,"top":0.40023944,"width":0.013297873,"height":0.031923383},"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Show thinking","depth":26,"bounds":{"left":0.1015625,"top":0.40822026,"width":0.030917553,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Gemini said","depth":20,"bounds":{"left":0.09923537,"top":0.44972068,"width":0.0003324468,"height":0.0007980846},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Gemini said","depth":21,"bounds":{"left":0.09923537,"top":0.4517159,"width":0.04105718,"height":0.01915403},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ah, it looks like just a tiny typo! You spelled","depth":24,"bounds":{"left":0.08826463,"top":0.4592977,"width":0.10388963,"height":0.016360734},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"origin","depth":25,"bounds":{"left":0.19414894,"top":0.46049482,"width":0.016788565,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"as","depth":24,"bounds":{"left":0.21293218,"top":0.4592977,"width":0.008144947,"height":0.016360734},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"orign","depth":25,"bounds":{"left":0.22307181,"top":0.46049482,"width":0.013962766,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"in your commands.","depth":24,"bounds":{"left":0.23902926,"top":0.4592977,"width":0.047041222,"height":0.016360734},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Git is throwing that error because it can't find a remote named \"orign\".","depth":24,"bounds":{"left":0.08826463,"top":0.49281725,"width":0.17004654,"height":0.016360734},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Here is the corrected command:","depth":24,"bounds":{"left":0.08826463,"top":0.5263368,"width":0.077792555,"height":0.016360734},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Bash","depth":25,"bounds":{"left":0.09358378,"top":0.56943333,"width":0.010804521,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy code","depth":25,"bounds":{"left":0.28507313,"top":0.5602554,"width":0.013297873,"height":0.031923383},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"git checkout -b JY-20553-debug-crm-sync-delays origin/JY-20553-debug-crm-sync-delays","depth":25,"bounds":{"left":0.09358378,"top":0.6113328,"width":0.23454122,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"An Easier Shortcut","depth":23,"bounds":{"left":0.08826463,"top":0.66201115,"width":0.21276596,"height":0.01915403},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"An Easier Shortcut","depth":24,"bounds":{"left":0.08826463,"top":0.66360736,"width":0.04837101,"height":0.016360734},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Since your local branch name matches the remote branch exactly, you can actually skip the","depth":24,"bounds":{"left":0.08826463,"top":0.68994415,"width":0.21210106,"height":0.037110932},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"-b","depth":25,"bounds":{"left":0.099567816,"top":0.7118915,"width":0.0056515955,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"and","depth":24,"bounds":{"left":0.10721409,"top":0.7106943,"width":0.011801862,"height":0.016360734},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"origin/","depth":25,"bounds":{"left":0.12101064,"top":0.7118915,"width":0.019614361,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"entirely. Git is smart enough to figure it out automatically:","depth":24,"bounds":{"left":0.14261968,"top":0.7106943,"width":0.13912898,"height":0.016360734},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Bash","depth":25,"bounds":{"left":0.09358378,"top":0.7537909,"width":0.010804521,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy code","depth":25,"bounds":{"left":0.28507313,"top":0.74461293,"width":0.013297873,"height":0.031923383},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"git checkout JY-20553-debug-crm-sync-delays","depth":25,"bounds":{"left":0.09358378,"top":0.79569036,"width":0.1200133,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(Or if","depth":24,"bounds":{"left":0.08826463,"top":0.83918595,"width":0.013962766,"height":0.016360734},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"co","depth":25,"bounds":{"left":0.104222074,"top":0.84038305,"width":0.005485372,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"is your alias for checkout, just","depth":24,"bounds":{"left":0.11170213,"top":0.83918595,"width":0.07446808,"height":0.016360734},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"co JY-20553-debug-crm-sync-delays","depth":25,"bounds":{"left":0.18816489,"top":0.84038305,"width":0.09208777,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"will work!)","depth":24,"bounds":{"left":0.08826463,"top":0.83918595,"width":0.20428856,"height":0.037110932},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextArea","text":"Enter a prompt for Gemini\nencrypted","depth":20,"bounds":{"left":0.09291888,"top":0.82322425,"width":0.20279256,"height":0.01915403},"value":"Enter a prompt for Gemini\nencrypted","help_text":"","role_description":"text entry area","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enter a prompt for Gemini","depth":21,"bounds":{"left":0.099567816,"top":0.46089387,"width":0.069980055,"height":0.018355945},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"encrypted","depth":21,"bounds":{"left":0.091921546,"top":0.46049482,"width":0.0066489363,"height":0.01915403},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Open upload file menu","depth":20,"bounds":{"left":0.08892952,"top":0.8575419,"width":0.013297873,"height":0.031923383},"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tools","depth":18,"bounds":{"left":0.10488697,"top":0.8575419,"width":0.013297873,"height":0.031923383},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open mode picker","depth":20,"bounds":{"left":0.25831118,"top":0.8567438,"width":0.026097074,"height":0.031923383},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pro","depth":23,"bounds":{"left":0.26363033,"top":0.86552274,"width":0.007480053,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Microphone","depth":19,"bounds":{"left":0.2864029,"top":0.8567438,"width":0.013297873,"height":0.031923383},"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Your Jiminny chats aren’t used to improve our models. Gemini is AI and can make mistakes, including about people.","depth":17,"bounds":{"left":0.0887633,"top":0.90901834,"width":0.21110372,"height":0.012370312},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Your privacy & Gemini Opens in a new window","depth":17,"bounds":{"left":0.17420213,"top":0.92178774,"width":0.040226065,"height":0.012370312},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Your privacy & Gemini","depth":18,"bounds":{"left":0.17420213,"top":0.92178774,"width":0.040226065,"height":0.012370312},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Opens in a new window","depth":19,"bounds":{"left":0.079288565,"top":0.92098963,"width":0.043218084,"height":0.012370312},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Summarize page","depth":7,"bounds":{"left":0.08494016,"top":0.95730245,"width":0.053523935,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Summarize page","depth":9,"bounds":{"left":0.09059176,"top":0.96249,"width":0.042220745,"height":0.015163607},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Skip to content","depth":6,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to content","depth":7,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Open menu","depth":10,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Homepage (g then d)","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"jiminny","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"jiminny","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"app","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"app","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Search or jump to…","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Type","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"to search","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Chat with Copilot","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXMenuButton","text":"Open Copilot…","depth":9,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXMenuButton","text":"Create new...","depth":9,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Issues(g then i)","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Pull requests","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Repositories","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"You have unread notifications(g then n)","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Open user navigation menu","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Repository navigation","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Repository navigation","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Code","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Code","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Pull requests (31)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pull requests","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"31","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Agents","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Agents","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Actions","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Actions","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wiki","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Wiki","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Security and quality (22)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Security and quality","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"22","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Insights","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Insights","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Settings","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Settings","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Important update","depth":10,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Important update","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"On April 24 we'll start using GitHub Copilot interaction data for AI model training unless you opt out.","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Review this update","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Review this update","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"and manage your preferences in your","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"GitHub account settings","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GitHub account settings","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Dismiss banner","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"JY-20553 | Improve crm-sync delays #11976 Edit title","depth":13,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"JY-20553 | Improve crm-sync delays","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"#","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11976","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Edit title","depth":14,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXMenuButton","text":"Preview","depth":13,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Preview","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Checks pending","depth":13,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Checks pending","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Code","depth":13,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Code","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Open","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"yalokin-jiminny","depth":15,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"yalokin-jiminny","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"wants to merge 21 commits into","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"master","depth":15,"role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"master","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"from","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20553-debug-crm-sync-delays","depth":16,"role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20553-debug-crm-sync-delays","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy head branch name to clipboard","depth":16,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Lines changed: 907 additions & 132 deletions","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Conversation (5)","depth":16,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Conversation","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Commits (21)","depth":16,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Commits","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Checks (2)","depth":16,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Checks","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Files changed (14)","depth":16,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Files changed","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"14","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Pull Request Toolbar","depth":14,"bounds":{"left":0.3224734,"top":0.07581804,"width":0.0003324468,"height":0.0007980846},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Pull Request Toolbar","depth":15,"bounds":{"left":0.3224734,"top":0.07861133,"width":0.030086435,"height":0.08060654},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse file tree","depth":14,"bounds":{"left":0.3224734,"top":0.0650439,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"Open","depth":14,"bounds":{"left":0.34507978,"top":0.06943336,"width":0.011968086,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20553 | Improve crm-sync delays","depth":14,"bounds":{"left":0.3636968,"top":0.058260176,"width":0.08294548,"height":0.016759777},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20553 | Improve crm-sync delays","depth":16,"bounds":{"left":0.3636968,"top":0.059856344,"width":0.08294548,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"#","depth":15,"bounds":{"left":0.44930187,"top":0.059856344,"width":0.0029920214,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11976","depth":15,"bounds":{"left":0.45229387,"top":0.059856344,"width":0.012466756,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"All commits","depth":14,"bounds":{"left":0.36103722,"top":0.07182761,"width":0.03374335,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"All commits","depth":16,"bounds":{"left":0.36402926,"top":0.07701516,"width":0.02244016,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"yalokin-jiminny","depth":15,"bounds":{"left":0.3991024,"top":0.07581804,"width":0.029920213,"height":0.014365523},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"yalokin-jiminny","depth":16,"bounds":{"left":0.3991024,"top":0.07701516,"width":0.029920213,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"wants to merge 21 commits into","depth":15,"bounds":{"left":0.4303524,"top":0.07701516,"width":0.059674203,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"master","depth":15,"bounds":{"left":0.49135637,"top":0.074221864,"width":0.018450798,"height":0.017557861},"role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"master","depth":16,"bounds":{"left":0.49335107,"top":0.07741421,"width":0.014461436,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"from","depth":16,"bounds":{"left":0.51113695,"top":0.07701516,"width":0.008643617,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20553-debug-crm-sync-delays","depth":16,"bounds":{"left":0.52111036,"top":0.074221864,"width":0.07596409,"height":0.017557861},"role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20553-debug-crm-sync-delays","depth":17,"bounds":{"left":0.523105,"top":0.07741421,"width":0.07197473,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy head branch name to clipboard","depth":16,"bounds":{"left":0.5984042,"top":0.07182761,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"14","depth":15,"bounds":{"left":0.8211436,"top":0.070231445,"width":0.004488032,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":15,"bounds":{"left":0.8256317,"top":0.070231445,"width":0.0023271276,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"14","depth":15,"bounds":{"left":0.82912236,"top":0.070231445,"width":0.004654255,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"viewed","depth":15,"bounds":{"left":0.83477396,"top":0.070231445,"width":0.013297873,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Checks pending","depth":14,"bounds":{"left":0.85638297,"top":0.0650439,"width":0.04338431,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Checks pending","depth":16,"bounds":{"left":0.86602396,"top":0.070231445,"width":0.030751329,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Submit review","depth":14,"bounds":{"left":0.90242684,"top":0.0650439,"width":0.03856383,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Submit","depth":16,"bounds":{"left":0.9054189,"top":0.070231445,"width":0.014793883,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"review","depth":16,"bounds":{"left":0.92021275,"top":0.070231445,"width":0.012466756,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Open diff view settings","depth":14,"bounds":{"left":0.94365025,"top":0.0650439,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open overview panel","depth":14,"bounds":{"left":0.96127,"top":0.0650439,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open comments panel","depth":14,"bounds":{"left":0.9719083,"top":0.0650439,"width":0.017287234,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"(","depth":16,"bounds":{"left":0.9802194,"top":0.070231445,"width":0.0026595744,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":16,"bounds":{"left":0.982879,"top":0.070231445,"width":0.0026595744,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":16,"bounds":{"left":0.98553854,"top":0.070231445,"width":0.0014960107,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Filter files…","depth":16,"bounds":{"left":0.3337766,"top":0.11332801,"width":0.06815159,"height":0.023942538},"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXMenuButton","text":"Filter options","depth":16,"bounds":{"left":0.40492022,"top":0.112529926,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"File tree","depth":15,"bounds":{"left":0.32280585,"top":0.15083799,"width":0.0003324468,"height":0.0007980846},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"File tree","depth":16,"bounds":{"left":0.32280585,"top":0.15363128,"width":0.014295213,"height":0.0518755},"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
8401852751570695578
|
-2603937100503045719
|
click
|
accessibility
|
NULL
|
Platform Sprint 2 Q2 - Platform Team - Scrum Board Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira
JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app
JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app
Close tab
[SRD-6793] Les Mills activity types not pulling in - Jira
[SRD-6793] Les Mills activity types not pulling in - Jira
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app
JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app
[JY-20543] AJ Reports > Tracking - Jira
[JY-20543] AJ Reports > Tracking - Jira
[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira
[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira
Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app
Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app
New Tab
New Tab
Product Growth Platform | Userpilot
Product Growth Platform | Userpilot
Userpilot | Logged-activity
Userpilot | Logged-activity
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
Jiminny
Jiminny
Jiminny
Jiminny
Jiminny
Jiminny
New Tab
Customize sidebar
Close Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
AI Chat settings
Close
WORK, Google Account: [EMAIL]
Main menu
New chat
Gemini
New Chat
Open menu for conversation actions.
Conversation with Gemini
Conversation with Gemini
Copy prompt
You said checkout to remote branch
You said
checkout to remote branch
Listen
Show more options
Show thinking
Gemini said
Gemini said
Here is the standard way to check out a remote branch in Git.
Step 1: Fetch the latest remote branches
Step 1: Fetch the latest remote branches
Before checking out, it is best practice to ensure your local repository knows about the latest branches on the remote. Run:
Bash
Copy code
git fetch
Step 2: Check out the branch
Step 2: Check out the branch
You have a few options depending on your version of Git and whether you want to use the exact same name as the remote branch.
Option A: The simplest way (Recommended)
Option A: The simplest way (Recommended)
If the remote branch exists and you don't have a local branch with the same name, Git will automatically create the local branch and set it up to track the remote one.
Using the newer
switch
command:
Bash
Copy code
git switch <branch-name>
Or using the traditional
checkout
command:
Bash
Copy code
git checkout <branch-name>
(Note: Do not include
origin/
in this command. Just use the branch name, e.g.,
git checkout feature-branch
)
Option B: The explicit way
Option B: The explicit way
If Option A doesn't work (for example, if you have multiple remotes), or if you want to give your local branch a
different name
than the remote branch, you can explicitly map them:
Bash
Copy code
git checkout -b <your-local-branch-name> origin/<remote-branch-name>
How to verify it worked
How to verify it worked
To confirm you are on the right branch and tracking the remote properly, run:
Bash
Copy code
git branch -vv
This will list your local branches, highlight your current branch, and show which remote branch it is tracking (e.g.,
[origin/<branch-name>]
).
Copy prompt
Edit
You said lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ git fetch lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ co -b JY-20553-debug-crm-sync-delays orign/JY-20553-debug-crm-sync-delays fatal: 'orign/JY-20553-debug-crm-sync-delays' is not a commit and a branch 'JY-20553-debug-crm-sync-delays' cannot be created from it lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ git checkout -b JY-20553-debug-crm-sync-delays orign/JY-20553-debug-crm-sync-delays fatal: 'orign/JY-20553-debug-crm-sync-delays' is not a commit and a branch 'JY-20553-debug-crm-sync-delays' cannot be created from it lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $
You said
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ git fetch
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ co -b JY-20553-debug-crm-sync-delays orign/JY-20553-debug-crm-sync-delays
fatal: 'orign/JY-20553-debug-crm-sync-delays' is not a commit and a branch 'JY-20553-debug-crm-sync-delays' cannot be created from it
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ git checkout -b JY-20553-debug-crm-sync-delays orign/JY-20553-debug-crm-sync-delays
fatal: 'orign/JY-20553-debug-crm-sync-delays' is not a commit and a branch 'JY-20553-debug-crm-sync-delays' cannot be created from it
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $
Expand
Listen
Show more options
Show thinking
Gemini said
Gemini said
Ah, it looks like just a tiny typo! You spelled
origin
as
orign
in your commands.
Git is throwing that error because it can't find a remote named "orign".
Here is the corrected command:
Bash
Copy code
git checkout -b JY-20553-debug-crm-sync-delays origin/JY-20553-debug-crm-sync-delays
An Easier Shortcut
An Easier Shortcut
Since your local branch name matches the remote branch exactly, you can actually skip the
-b
and
origin/
entirely. Git is smart enough to figure it out automatically:
Bash
Copy code
git checkout JY-20553-debug-crm-sync-delays
(Or if
co
is your alias for checkout, just
co JY-20553-debug-crm-sync-delays
will work!)
Enter a prompt for Gemini
encrypted
Enter a prompt for Gemini
encrypted
Open upload file menu
Tools
Open mode picker
Pro
Microphone
Your Jiminny chats aren’t used to improve our models. Gemini is AI and can make mistakes, including about people.
Your privacy & Gemini Opens in a new window
Your privacy & Gemini
Opens in a new window
Summarize page
Summarize page
Skip to content
Skip to content
Open menu
Homepage (g then d)
jiminny
jiminny
app
app
Search or jump to…
Type
/
to search
Chat with Copilot
Open Copilot…
Create new...
Issues(g then i)
Pull requests
Repositories
You have unread notifications(g then n)
Open user navigation menu
Repository navigation
Repository navigation
Code
Code
Pull requests (31)
Pull requests
(
31
)
Agents
Agents
Actions
Actions
Wiki
Wiki
Security and quality (22)
Security and quality
(
22
)
Insights
Insights
Settings
Settings
Important update
Important update
On April 24 we'll start using GitHub Copilot interaction data for AI model training unless you opt out.
Review this update
Review this update
and manage your preferences in your
GitHub account settings
GitHub account settings
.
Dismiss banner
JY-20553 | Improve crm-sync delays #11976 Edit title
JY-20553 | Improve crm-sync delays
#
11976
Edit title
Preview
Preview
Checks pending
Checks pending
Code
Code
Open
yalokin-jiminny
yalokin-jiminny
wants to merge 21 commits into
master
master
from
JY-20553-debug-crm-sync-delays
JY-20553-debug-crm-sync-delays
Copy head branch name to clipboard
Lines changed: 907 additions & 132 deletions
Conversation (5)
Conversation
(
5
)
Commits (21)
Commits
(
21
)
Checks (2)
Checks
(
2
)
Files changed (14)
Files changed
(
14
)
Pull Request Toolbar
Pull Request Toolbar
Collapse file tree
Open
JY-20553 | Improve crm-sync delays
JY-20553 | Improve crm-sync delays
#
11976
All commits
All commits
yalokin-jiminny
yalokin-jiminny
wants to merge 21 commits into
master
master
from
JY-20553-debug-crm-sync-delays
JY-20553-debug-crm-sync-delays
Copy head branch name to clipboard
14
/
14
viewed
Checks pending
Checks pending
Submit review
Submit
review
Open diff view settings
Open overview panel
Open comments panel
(
0
)
Filter files…
Filter options
File tree
File tree...
|
55591
|
|
71222
|
1692
|
21
|
2026-04-22T12:17:10.896846+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776860230896_m1.jpg...
|
Slack
|
Aneliya Angelova, Nikolay Yankov, Steliyan Georgie Aneliya Angelova, Nikolay Yankov, Steliyan Georgiev (DM) - Jiminny Inc - 2 new items - Slack...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Switch workspaces… (Jiminny Inc) Has new messages
Switch workspaces… (Jiminny Inc) Has new messages
Home
Home
DMs
DMs
Activity
Activity
Files
Files
Later
Later
More…
More
More unreads
Unreads
Threads
Huddles
Drafts & sent
Directories
jiminny-x-integration-app
platform-inner-team
ai-chapter
alerts
backend
c-learning-people
confusion-clinic
curiosity_lab
deal-insights-dev
engineering
frontend
general
infra-changes
jiminny-bg
people-with-copilot-licences
people-with-zoom-phone-licences
platform-team
platform-tickets
product_launches
random
releases
sofia-office
support
thank-yous
the_people_of_jiminny
Stoyan Tomov
Aneliya Angelova
,
Nikolay Yankov
,
Steliyan Georgiev
Aneliya Angelova
Nikolay Yankov
Nikolay Nikolov
Mario Georgiev
Todor Stamatov
Gabriela Dureva
Petko Kashinski
Vasil Vasilev
Galya Dimitrova
Stefka Stoyanova
Stoyan Tanev
Nikolay Ivanov
Jira Cloud
Toast
Google Calendar
Messages
Messages
Add canvas
Add canvas
Files
Files
Add and Edit Channel Tabs
Canvas
List
Folder
Jump to date
Aneliya Angelova
Today at 2:57:04 PM
2:57 PM
не трябва ли да е предишната седмица
Today at 2:58:23 PM
2:58
не 7 дена назад, а самата календарна седмица
Today at 2:58:52 PM
2:58
а във филтъра ми се струва че е точно предишната седмица - виждам различен брой активитита
Today at 2:59:07 PM
2:59
да се чуем
Today at 2:59:11 PM
2:59
?
Lukas Kovalik
Today at 2:59:25 PM
2:59 PM
добре...
|
[{"role":"AXPopUpButton","text [{"role":"AXPopUpButton","text":"Switch workspaces… (Jiminny Inc) Has new messages","depth":14,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Home","depth":14,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"Home","depth":16,"role_description":"text"},{"role":"AXRadioButton","text":"DMs","depth":14,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DMs","depth":16,"role_description":"text"},{"role":"AXRadioButton","text":"Activity","depth":14,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Activity","depth":16,"role_description":"text"},{"role":"AXRadioButton","text":"Files","depth":14,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Files","depth":16,"role_description":"text"},{"role":"AXRadioButton","text":"Later","depth":14,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Later","depth":16,"role_description":"text"},{"role":"AXRadioButton","text":"More…","depth":14,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More","depth":16,"role_description":"text"},{"role":"AXButton","text":"More unreads","depth":17,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Unreads","depth":21,"role_description":"text"},{"role":"AXStaticText","text":"Threads","depth":21,"role_description":"text"},{"role":"AXStaticText","text":"Huddles","depth":21,"role_description":"text"},{"role":"AXStaticText","text":"Drafts & sent","depth":21,"role_description":"text"},{"role":"AXStaticText","text":"Directories","depth":21,"role_description":"text"},{"role":"AXStaticText","text":"jiminny-x-integration-app","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"platform-inner-team","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"ai-chapter","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"alerts","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"backend","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"c-learning-people","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"confusion-clinic","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"curiosity_lab","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"deal-insights-dev","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"engineering","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"frontend","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"general","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"infra-changes","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"jiminny-bg","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"people-with-copilot-licences","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"people-with-zoom-phone-licences","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"platform-team","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"platform-tickets","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"product_launches","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"random","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"releases","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"sofia-office","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"support","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"thank-yous","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"the_people_of_jiminny","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Stoyan Tomov","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Aneliya Angelova","depth":23,"role_description":"text"},{"role":"AXStaticText","text":",","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Yankov","depth":23,"role_description":"text"},{"role":"AXStaticText","text":",","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Steliyan Georgiev","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Aneliya Angelova","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Yankov","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Nikolov","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Mario Georgiev","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Todor Stamatov","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Gabriela Dureva","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Petko Kashinski","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Vasil Vasilev","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Galya Dimitrova","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Stefka Stoyanova","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Stoyan Tanev","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Ivanov","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Jira Cloud","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Toast","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Google Calendar","depth":23,"role_description":"text"},{"role":"AXRadioButton","text":"Messages","depth":17,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"Messages","depth":19,"role_description":"text"},{"role":"AXRadioButton","text":"Add canvas","depth":18,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Add canvas","depth":20,"role_description":"text"},{"role":"AXRadioButton","text":"Files","depth":17,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Files","depth":19,"role_description":"text"},{"role":"AXPopUpButton","text":"Add and Edit Channel Tabs","depth":17,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Canvas","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"List","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":17,"role_description":"text"},{"role":"AXPopUpButton","text":"Jump to date","depth":23,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Aneliya Angelova","depth":24,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":24,"role_description":"text"},{"role":"AXLink","text":"Today at 2:57:04 PM","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2:57 PM","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"не трябва ли да е предишната седмица","depth":25,"role_description":"text"},{"role":"AXLink","text":"Today at 2:58:23 PM","depth":25,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2:58","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"не 7 дена назад, а самата календарна седмица","depth":25,"role_description":"text"},{"role":"AXLink","text":"Today at 2:58:52 PM","depth":25,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2:58","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"а във филтъра ми се струва че е точно предишната седмица - виждам различен брой активитита","depth":25,"role_description":"text"},{"role":"AXLink","text":"Today at 2:59:07 PM","depth":25,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2:59","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"да се чуем","depth":25,"role_description":"text"},{"role":"AXLink","text":"Today at 2:59:11 PM","depth":25,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2:59","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"?","depth":25,"role_description":"text"},{"role":"AXButton","text":"Lukas Kovalik","depth":24,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":24,"role_description":"text"},{"role":"AXLink","text":"Today at 2:59:25 PM","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2:59 PM","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"добре","depth":25,"role_description":"text"}]...
|
8401766950109760702
|
-1191871295325824479
|
visual_change
|
hybrid
|
NULL
|
Switch workspaces… (Jiminny Inc) Has new messages
Switch workspaces… (Jiminny Inc) Has new messages
Home
Home
DMs
DMs
Activity
Activity
Files
Files
Later
Later
More…
More
More unreads
Unreads
Threads
Huddles
Drafts & sent
Directories
jiminny-x-integration-app
platform-inner-team
ai-chapter
alerts
backend
c-learning-people
confusion-clinic
curiosity_lab
deal-insights-dev
engineering
frontend
general
infra-changes
jiminny-bg
people-with-copilot-licences
people-with-zoom-phone-licences
platform-team
platform-tickets
product_launches
random
releases
sofia-office
support
thank-yous
the_people_of_jiminny
Stoyan Tomov
Aneliya Angelova
,
Nikolay Yankov
,
Steliyan Georgiev
Aneliya Angelova
Nikolay Yankov
Nikolay Nikolov
Mario Georgiev
Todor Stamatov
Gabriela Dureva
Petko Kashinski
Vasil Vasilev
Galya Dimitrova
Stefka Stoyanova
Stoyan Tanev
Nikolay Ivanov
Jira Cloud
Toast
Google Calendar
Messages
Messages
Add canvas
Add canvas
Files
Files
Add and Edit Channel Tabs
Canvas
List
Folder
Jump to date
Aneliya Angelova
Today at 2:57:04 PM
2:57 PM
не трябва ли да е предишната седмица
Today at 2:58:23 PM
2:58
не 7 дена назад, а самата календарна седмица
Today at 2:58:52 PM
2:58
а във филтъра ми се струва че е точно предишната седмица - виждам различен брой активитита
Today at 2:59:07 PM
2:59
да се чуем
Today at 2:59:11 PM
2:59
?
Lukas Kovalik
Today at 2:59:25 PM
2:59 PM
добре
iTerm2ShellEditViewSessionScriptsProfilesWindowHelp• Al chapter • in 1h 43 m100% C7Wed 22 Apr 15:17:12• 0PROD (ssh)181DOCKERDOCKER (docker-compose)docker_lamp_1docker_lamp_1881docker882-zshDispatched 4 HubSpot sync jobs2026-04-22 12:16:43 Jiminny\Jobs\Crm\SyncHubspotObjects* Build full day ac...• 84|docker_lamp_1docker_lamp_1L '/usr/local/bin/php' 'artisan'crm: sync-hubspot-objectsfd/1' 2>&1docker_lamp_12026-04-22 12:16:43 Running ['artisan'activity:notify-not-logged]2026-04-22 12:16:44 Jiminny\Jobs\Crm\SyncHubspotObjects752.20ms DONEdocker_lamp_12026-04-22 12:16:44 Jiminny\Jobs\Crm\SyncHubspotObjectsdocker_lamp_12026-04-22 12:16:44 Jiminny\Jobs\Crm\SyncHubspot0bjectsdocker_1amp_12026-04-22 12:16:44 Jiminny\Jobs\Crm\SyncHubspot0bjectsdocker_lamp_12026-04-22 12:16:44 Jiminny Jobs\Crm\SyncHubspotObjectsdocker_lamp_12026-04-22 12:16:45 Jiminny\Jobs\Crm\SyncHubspotObjectsdocker_lamp_12026-04-22 12:16:46 Jiminny\Jobs\Crm\SyncHubspotObjectsdocker_lamp_1docker_lamp_11 '/usr/local/bin/php' 'artisan' activity:notify-not-logged › */proc/docker_1amp_12026-04-22 12:16:52 Running ['artisan' activity:status-count]"failed":2}...docker_1amp_1'/usr/local/bin/php' 'artisan' activity:status-count › '/proc/1/fd/docker_1amp_12026-04-22 12:17:00 Running ['artisan' mailbox:sync] Queueing 2 inboxdocker_lamp_1docker_lamp_1docker_lamp_1docker_1amp_1docker_lamp_1/usr/local/bin/php' 'artisan' mailbox:sync › '/proc/1/fd/1' 2>&1run_artisan_schedule: Done waitingfor schedule: run2026-04-22 12:17:10 Jiminny\Jobs\Mailbox\SyncInboxdocker_lamp_1msDONEdocker_1amp_1RUNNINGdocker_lamp_1msDONE2026-04-22 12:17:10 Jiminny\Jobs\Mailbox\SyncInbox135.822026-04-22 12:17:10 Jiminny\Jobs\Mailbox\SyncInbox2026-04-22 12:17:11 Jiminny Jobs \Mailbox \SyncInbox639.82View in Docker DesktopView ConfigEnable Watchscreenpipe"O 885-zsh86T2 PROD (ssh)Run 'do-release-upgrade' to upgrade to it.APP (-zsh)ec2-user@ip-10-...• *8PROD*** System restart required ***Last login: Wed Apr 22 08:09:38 2026 from 212.5.153.87lukas@jiminny-prod-bastion:~$ 0X L3 EU (ssh)New release '24.04.4 LTS' available.Run'do-release-upgrade' to upgrade to it.*** System restart required ***Last login: Tue Apr 21 16:24:08 2026 from 212.5.153.87lukas@jiminny-eu-bastion:~$ |T4 STAGE (-zsh)Run 'do-release-upgrade' to upgrade to it.STAGELast login: Thu Apr 16 07:34:39 2026 from [IP_ADDRESS]: $ client_loop: send disconnect: Broken pipelukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $75 QA (-zsh)Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentskasaX T6 FE (-zsh)Poetry could not find a pyproject.toml file in /Users/lukas or its parentsFRONTENDPoetry could not find a pyproject.toml file in /Users/lukas or its parentsLukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ IX 17EXT (-zsh)Last login: Mon Apr 20 19:48:04 on ttys005Poetry could not find a pyproject.toml file in /Users/lukas or its parents EXTENSIONPoetry could not find a pyproject.toml file in /Users/lukas or its parentsukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $...
|
NULL
|
|
39214
|
796
|
68
|
2026-04-16T13:33:30.074560+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-16/1776 /Users/lukas/.screenpipe/data/data/2026-04-16/1776346410074_m1.jpg...
|
Boosteroid
|
Boosteroid
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp100% <478Thu 16 Apr 16:33:29-zshDOCKER881Last login: Thu Apr 16 15:48:11 on ttys009DEV (-zsh)882APP (-zsh)*3-zsh• *4-zsh85Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~S sqlite3 ~/.screenpipe/db.sqlite "SELECT app_name, window_name FROM ocr_text WHERE app_name LIKE "%Safari%" OR window_name LIKE "%Boostroid%"ORDER BY created_at DESC LIMIT 20;"Error: in prepare, no such column:created_atari%' OR window_name LIKE "%Boosteroid%'ORDER BY created_at DESC LIMIT 20;error here---^lukas@Lukas-Kovaliks-MacBook-Pro-Jiminnyroid%'~§ sqlite3 ~/.screenpipe/db.sqlite "SELECT app_name, window_name FROM ocr_text WHERE app_name LIKE "%Safari%' OR window_name LIKE "%BoostORDER BYcreated_at DESC LIMIT 20;"Error: in prepare,no suchcolumn:created_atari%'OR window_name LIKE"%Boosteroid%'ORDER BY created_at DESC LIMIT 20;error herelukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~S salite3 ~/.screenpipe/db.sqlite "SELECT app_name, window_name FROM ocr_text WHERE app_name LIKE "%Safari%' OR window_name LIKE '%Boostroid%'ORDER BYcreated_at DESC LIMIT 20;"Error: in prepare,nosuch column:created_atari%'OR window_name LIKE "%Boosteroid%'ORDER BY created_at DESC LIMIT 20;error here---Alukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~ $ sqlite3 ~/.screenpipe/db.sqlite "SELECT app_name, window_name FROM ocr_text WHERE app_name LIKE "%Safari%' OR window_name LIKE '%Boostroid%'ORDER BY timestamp DESC LIMIT 20;"Error: in prepare, no such column: timestampari%' OR window_name LIKE "XBoosteroid%' ORDER BY timestamp DESC LIMIT 20;error here__-лlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ sqlite3 ~/.screenpipe/db.sqlite ".schema ocr_text"CREATE TABLE IF NOTEXISTS "ocr_text"frame_id INTEGER NOT NULL,text TEXT NOT NULL,text_json TEXT,app_name TEXT NOT NULL DEFAULTocr_engine TEXT NOT NULL DEFAULT'unknown'window_name TEXT, focused BOOLEAN DEFAULT FALSE, text_length INTEGER, sync_id TEXT, synced_at DATETIME);CREATE INDEX idx_ocr_text_frame_id ON ocr_text(frame_id);CREATE INDEX idx_ocr_text_frame_app_window ON ocr_text(frame_id, app_name, window_name);CREATE INDEX idx_ocr_text_length ON ocr_text (text_length);CREATE INDEX idx_ocr_text_sync_id ONocr_text(sync_id) WHERE sync_id IS NOT NULL;Lukas®Lukas-Kovaliks-MacBook-Pro-Jiminny ~ S salite3 ~/.screenpipe/db.sqlite "SELECT DISTINCT app_name, window_name FROM ocr_text WHERE app_name LIKE "%Safari%' OR window_name LIK'%Boosteroid%'LIMIT 20;"lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ D...
|
NULL
|
8401609986522182337
|
NULL
|
click
|
ocr
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp100% <478Thu 16 Apr 16:33:29-zshDOCKER881Last login: Thu Apr 16 15:48:11 on ttys009DEV (-zsh)882APP (-zsh)*3-zsh• *4-zsh85Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~S sqlite3 ~/.screenpipe/db.sqlite "SELECT app_name, window_name FROM ocr_text WHERE app_name LIKE "%Safari%" OR window_name LIKE "%Boostroid%"ORDER BY created_at DESC LIMIT 20;"Error: in prepare, no such column:created_atari%' OR window_name LIKE "%Boosteroid%'ORDER BY created_at DESC LIMIT 20;error here---^lukas@Lukas-Kovaliks-MacBook-Pro-Jiminnyroid%'~§ sqlite3 ~/.screenpipe/db.sqlite "SELECT app_name, window_name FROM ocr_text WHERE app_name LIKE "%Safari%' OR window_name LIKE "%BoostORDER BYcreated_at DESC LIMIT 20;"Error: in prepare,no suchcolumn:created_atari%'OR window_name LIKE"%Boosteroid%'ORDER BY created_at DESC LIMIT 20;error herelukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~S salite3 ~/.screenpipe/db.sqlite "SELECT app_name, window_name FROM ocr_text WHERE app_name LIKE "%Safari%' OR window_name LIKE '%Boostroid%'ORDER BYcreated_at DESC LIMIT 20;"Error: in prepare,nosuch column:created_atari%'OR window_name LIKE "%Boosteroid%'ORDER BY created_at DESC LIMIT 20;error here---Alukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~ $ sqlite3 ~/.screenpipe/db.sqlite "SELECT app_name, window_name FROM ocr_text WHERE app_name LIKE "%Safari%' OR window_name LIKE '%Boostroid%'ORDER BY timestamp DESC LIMIT 20;"Error: in prepare, no such column: timestampari%' OR window_name LIKE "XBoosteroid%' ORDER BY timestamp DESC LIMIT 20;error here__-лlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ sqlite3 ~/.screenpipe/db.sqlite ".schema ocr_text"CREATE TABLE IF NOTEXISTS "ocr_text"frame_id INTEGER NOT NULL,text TEXT NOT NULL,text_json TEXT,app_name TEXT NOT NULL DEFAULTocr_engine TEXT NOT NULL DEFAULT'unknown'window_name TEXT, focused BOOLEAN DEFAULT FALSE, text_length INTEGER, sync_id TEXT, synced_at DATETIME);CREATE INDEX idx_ocr_text_frame_id ON ocr_text(frame_id);CREATE INDEX idx_ocr_text_frame_app_window ON ocr_text(frame_id, app_name, window_name);CREATE INDEX idx_ocr_text_length ON ocr_text (text_length);CREATE INDEX idx_ocr_text_sync_id ONocr_text(sync_id) WHERE sync_id IS NOT NULL;Lukas®Lukas-Kovaliks-MacBook-Pro-Jiminny ~ S salite3 ~/.screenpipe/db.sqlite "SELECT DISTINCT app_name, window_name FROM ocr_text WHERE app_name LIKE "%Safari%' OR window_name LIK'%Boosteroid%'LIMIT 20;"lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ D...
|
39212
|
|
42208
|
894
|
38
|
2026-04-17T06:53:26.580641+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-17/1776 /Users/lukas/.screenpipe/data/data/2026-04-17/1776408806580_m1.jpg...
|
NULL
|
NULL
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
FirefoxFileEditViewHistoryBookmarksProfilesToolsWi FirefoxFileEditViewHistoryBookmarksProfilesToolsWindowHelpmeet.google.com/mie-gawc-dsi?authuser=lukas.kovalik%40jiminny.comDaily - Platform • now100% 128 • Fri 17 Apr 9:53:268Nikolay Yankov (Presenting, annotating)ChromeFileViewHistoryProfilesHelpInt9 ServiclFont A.Cost | <|F Project•Fix Dec|[JY-97F Projecthttps://jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedissue=JY-2055388MIHome | SalesforceEa DatadogPlatform Team88Q Sear$ Jy-20285 / [ JY-20553|READY FDelays in CRM SyncReworkPhase:NudgesCOST-EDackioy5 .0•$Descriptioncrm_sync queue consistently contains messages with 18+ hours age, meanwhile the number of messages is not huge,therefore more worker won't help. Please make sure that the messages in this queue are processed timely - for not morethan 1-2 minutes.A JY-2|Investicwhy exFontawMAINTIReady fe1 nApproximate Age Of Oldest Message* is an AWS SQS metric that measures:The time elapsed since the oldest messoge was added to the queue and is still waiting to be received (picked up by aMJY-2worker)|AI Reppage dipromotAJ REPSBacklogMetric ValueMeaning19 hoursA message (job) was dispatched 19 hours ago and has notyet been picked up by any workerO) JY-2SubtasksSend emailNotion9:53 AMDaily*ouw.ds@ dev.apOCTLUY8• Fri 17 Apr 9:53dev.apC All BookmarksNikolay NikolovNikolay IvanovCode Review vDetailsAssigneeNikolay NikolovAssign to meReporter8 Stefka StoyanovaDevelopment@ Open with VS Code1 branch30 commits1 pull request1 buildComponentsPlatformSub-ProductAdd options* Improve Story3 othersNikolay Yankovmeet.google.comNkolay Yankov (You, prese.-PSLukas Kovalik7:34...
|
NULL
|
8401571937505561109
|
NULL
|
visual_change
|
ocr
|
NULL
|
FirefoxFileEditViewHistoryBookmarksProfilesToolsWi FirefoxFileEditViewHistoryBookmarksProfilesToolsWindowHelpmeet.google.com/mie-gawc-dsi?authuser=lukas.kovalik%40jiminny.comDaily - Platform • now100% 128 • Fri 17 Apr 9:53:268Nikolay Yankov (Presenting, annotating)ChromeFileViewHistoryProfilesHelpInt9 ServiclFont A.Cost | <|F Project•Fix Dec|[JY-97F Projecthttps://jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedissue=JY-2055388MIHome | SalesforceEa DatadogPlatform Team88Q Sear$ Jy-20285 / [ JY-20553|READY FDelays in CRM SyncReworkPhase:NudgesCOST-EDackioy5 .0•$Descriptioncrm_sync queue consistently contains messages with 18+ hours age, meanwhile the number of messages is not huge,therefore more worker won't help. Please make sure that the messages in this queue are processed timely - for not morethan 1-2 minutes.A JY-2|Investicwhy exFontawMAINTIReady fe1 nApproximate Age Of Oldest Message* is an AWS SQS metric that measures:The time elapsed since the oldest messoge was added to the queue and is still waiting to be received (picked up by aMJY-2worker)|AI Reppage dipromotAJ REPSBacklogMetric ValueMeaning19 hoursA message (job) was dispatched 19 hours ago and has notyet been picked up by any workerO) JY-2SubtasksSend emailNotion9:53 AMDaily*ouw.ds@ dev.apOCTLUY8• Fri 17 Apr 9:53dev.apC All BookmarksNikolay NikolovNikolay IvanovCode Review vDetailsAssigneeNikolay NikolovAssign to meReporter8 Stefka StoyanovaDevelopment@ Open with VS Code1 branch30 commits1 pull request1 buildComponentsPlatformSub-ProductAdd options* Improve Story3 othersNikolay Yankovmeet.google.comNkolay Yankov (You, prese.-PSLukas Kovalik7:34...
|
42207
|
|
55233
|
1192
|
24
|
2026-04-20T09:39:46.902409+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-20/1776 /Users/lukas/.screenpipe/data/data/2026-04-20/1776677986902_m2.jpg...
|
Firefox
|
Platform Sprint 2 Q2 - Platform Team - Scrum Board Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira — Work...
|
True
|
jiminny.atlassian.net/jira/software/c/projects/JY/ jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedIssue=JY-20553...
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Platform Sprint 2 Q2 - Platform Team - Scrum Board Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira
JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app
JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app
[SRD-6793] Les Mills activity types not pulling in - Jira
[SRD-6793] Les Mills activity types not pulling in - Jira
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app
JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app
[JY-20543] AJ Reports > Tracking - Jira
[JY-20543] AJ Reports > Tracking - Jira
[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira
[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira
Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app
Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app
New Tab
New Tab
Product Growth Platform | Userpilot
Product Growth Platform | Userpilot
Userpilot | Logged-activity
Userpilot | Logged-activity
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
Jiminny
Jiminny
Jiminny
Jiminny
Jiminny
Jiminny
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
Skip to:
Top Bar
Top Bar
Sidebar
Sidebar
Main Content
Main Content
Space navigation
Space navigation
Collapse sidebar [
Collapse sidebar [
Switch sites or apps
Switch sites or apps
Go to your Jira homepage
Search, press enter to navigate to advanced search with your text query
Create
Create
Rovo Ask Rovo
Ask Rovo
6 Notifications
6 Notifications
Help
Help
Settings
Settings
[EMAIL]
For you
For you
Recent
Recent
Starred
Starred
Apps
Apps
More actions for Apps
More actions for Apps
Spaces
Spaces
Create space
Create space
More actions for spaces
More actions for spaces
Recent
Jiminny (New)
Jiminny (New)
Jiminny (New)
Create board
Create board
More actions for Jiminny (New)
More actions for Jiminny (New)
Platform Team
Platform Team
Board actions
Board actions
SE Kanban
SE Kanban
Board actions
Board actions
Capture Team
Capture Team
Board actions
Board actions
Enterprise Stability Issues 🤕
Enterprise Stability Issues 🤕
Board actions
Board actions
Processing Team
Processing Team
Board actions
Board actions
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
More spaces
More spaces
Filters
Filters
More actions for Filters
More actions for Filters
Dashboards
Dashboards
Create dashboard
Create dashboard
More actions for Dashboards
More actions for Dashboards
Operations
Operations
More actions for Operations
More actions for Operations
Confluence , (opens new window)
Confluence
, (opens new window)
Teams , (opens new window)
Teams
, (opens new window)
open menu
open menu
Customise sidebar
Customise sidebar
Resize side navigation panel
Spaces
Spaces
/
Jiminny (New)
Jiminny (New)
Platform Team
Platform Team
Link contributing teams
Board actions
Board actions
Share
Automation
Give feedback
Give feedback
Enter full screen
Enter full screen
Summary
Summary
Timeline
Timeline
Backlog
Backlog
Active sprints
Active sprints
Calendar
Calendar
Reports
Reports
Testing Board
Testing Board
List
List
Forms
Forms
Components
Components
Development
Development
Code
Code
Security
Security
Releases
Releases
Deployments
Deployments
Archived work items
Archived work items
Pages
Pages
Shortcuts
Shortcuts
Slack integration
Slack integration
Reporting Center
Reporting Center
Add to navigation
As you type to search or apply filters, the board updates with work items to match.
Search on current page
Filter by assignee
Filter assignees by Lukas Kovalik
Filter assignees by Nikolay Ivanov
Filter assignees by Nikolay Nikolov
Filter assignees by Nikolay Yankov
Filter assignees by Steliyan Georgiev
Filter assignees by Unassigned
Epic
Epic
Type
Type
Label
Label
Quick filters
Quick filters
Complete sprint
Complete sprint
Sprint details
Sprint details
Group by Queries
Group
: Queries
Sprint insights
Sprint insights
View settings...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira","depth":4,"bounds":{"left":0.0018284575,"top":0.0518755,"width":0.07596409,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXRadioButton","text":"JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.09497207,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.10614525,"width":0.15774602,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[SRD-6793] Les Mills activity types not pulling in - Jira","depth":4,"bounds":{"left":0.0,"top":0.12769353,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[SRD-6793] Les Mills activity types not pulling in - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.13886672,"width":0.09524601,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.16041501,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.17158818,"width":0.19963431,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.19313647,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.20430966,"width":0.15525267,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20543] AJ Reports > Tracking - Jira","depth":4,"bounds":{"left":0.0,"top":0.22585794,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20543] AJ Reports > Tracking - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.23703113,"width":0.06981383,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira","depth":4,"bounds":{"left":0.0,"top":0.2585794,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.2697526,"width":0.10688165,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.29130086,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.30247405,"width":0.12915559,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"bounds":{"left":0.0,"top":0.32402235,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"bounds":{"left":0.013297873,"top":0.33519554,"width":0.014960106,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Product Growth Platform | Userpilot","depth":4,"bounds":{"left":0.0,"top":0.3567438,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Product Growth Platform | Userpilot","depth":5,"bounds":{"left":0.013297873,"top":0.367917,"width":0.06200133,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Userpilot | Logged-activity","depth":4,"bounds":{"left":0.0,"top":0.38946527,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Userpilot | Logged-activity","depth":5,"bounds":{"left":0.013297873,"top":0.40063846,"width":0.04637633,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.42218676,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.43335995,"width":0.2052859,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipelines - jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.45490822,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pipelines - jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.4660814,"width":0.039228722,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Feed — jiminny — Sentry","depth":4,"bounds":{"left":0.0,"top":0.48762968,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Feed — jiminny — Sentry","depth":5,"bounds":{"left":0.013297873,"top":0.49880287,"width":0.042719416,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.5203512,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.53152436,"width":0.2052859,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny","depth":4,"bounds":{"left":0.0,"top":0.55307263,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny","depth":5,"bounds":{"left":0.013297873,"top":0.5642458,"width":0.013131649,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny","depth":4,"bounds":{"left":0.0,"top":0.5857941,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny","depth":5,"bounds":{"left":0.013297873,"top":0.5969673,"width":0.013131649,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny","depth":4,"bounds":{"left":0.0,"top":0.61851555,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny","depth":5,"bounds":{"left":0.013297873,"top":0.62968874,"width":0.013131649,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"bounds":{"left":0.0028257978,"top":0.6528332,"width":0.07413564,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"bounds":{"left":0.0028257978,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"bounds":{"left":0.013796543,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Tabs from other devices","depth":6,"bounds":{"left":0.024933511,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"bounds":{"left":0.036070477,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"bounds":{"left":0.04720745,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to:","depth":10,"bounds":{"left":0.090259306,"top":0.07861133,"width":0.016954787,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Top Bar","depth":11,"bounds":{"left":0.090259306,"top":0.097765364,"width":0.016954787,"height":0.01396648},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Top Bar","depth":12,"bounds":{"left":0.090259306,"top":0.097765364,"width":0.016954787,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Sidebar","depth":11,"bounds":{"left":0.090259306,"top":0.11691939,"width":0.016954787,"height":0.01396648},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Sidebar","depth":12,"bounds":{"left":0.090259306,"top":0.11691939,"width":0.016954787,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Main Content","depth":11,"bounds":{"left":0.090259306,"top":0.13607343,"width":0.029421542,"height":0.01396648},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Main Content","depth":12,"bounds":{"left":0.090259306,"top":0.13607343,"width":0.029421542,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Space navigation","depth":11,"bounds":{"left":0.090259306,"top":0.15522745,"width":0.037898935,"height":0.01396648},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Space navigation","depth":12,"bounds":{"left":0.090259306,"top":0.15522745,"width":0.037898935,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse sidebar [","depth":10,"bounds":{"left":0.08361037,"top":0.057861134,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Collapse sidebar [","depth":12,"bounds":{"left":0.0887633,"top":0.06344773,"width":0.039727394,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Switch sites or apps","depth":11,"bounds":{"left":0.095578454,"top":0.057861134,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Switch sites or apps","depth":13,"bounds":{"left":0.10073138,"top":0.06344773,"width":0.044215426,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Go to your Jira homepage","depth":10,"bounds":{"left":0.10887633,"top":0.057861134,"width":0.029421542,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXComboBox","text":"Search, press enter to navigate to advanced search with your text query","depth":12,"bounds":{"left":0.40458778,"top":0.06264964,"width":0.24268617,"height":0.015961692},"help_text":"","placeholder":"Search","role_description":"combo box","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Create","depth":11,"bounds":{"left":0.6555851,"top":0.057861134,"width":0.030086435,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create","depth":13,"bounds":{"left":0.6668883,"top":0.06384677,"width":0.014793883,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Rovo Ask Rovo","depth":13,"bounds":{"left":0.9105718,"top":0.057861134,"width":0.035904255,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Rovo","depth":15,"bounds":{"left":0.921875,"top":0.06384677,"width":0.020611702,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"6 Notifications","depth":13,"bounds":{"left":0.9478058,"top":0.057861134,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"6 Notifications","depth":15,"bounds":{"left":0.95295876,"top":0.06344773,"width":0.031914894,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Help","depth":13,"bounds":{"left":0.95977396,"top":0.057861134,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Help","depth":15,"bounds":{"left":0.96492684,"top":0.06344773,"width":0.010139627,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Settings","depth":13,"bounds":{"left":0.97174203,"top":0.057861134,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Settings","depth":15,"bounds":{"left":0.976895,"top":0.06344773,"width":0.017952127,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"lukas.kovalik@jiminny.com","depth":13,"bounds":{"left":0.984375,"top":0.057861134,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"For you","depth":13,"bounds":{"left":0.08361037,"top":0.09976058,"width":0.071476065,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"For you","depth":16,"bounds":{"left":0.09424867,"top":0.10574621,"width":0.01662234,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Recent","depth":13,"bounds":{"left":0.08361037,"top":0.12529927,"width":0.071476065,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Recent","depth":16,"bounds":{"left":0.09424867,"top":0.13128492,"width":0.015458777,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Starred","depth":13,"bounds":{"left":0.08361037,"top":0.15083799,"width":0.071476065,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Starred","depth":16,"bounds":{"left":0.09424867,"top":0.15682362,"width":0.016456118,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Apps","depth":13,"bounds":{"left":0.08361037,"top":0.1763767,"width":0.071476065,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Apps","depth":16,"bounds":{"left":0.09424867,"top":0.18236233,"width":0.011635638,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Apps","depth":14,"bounds":{"left":0.15309176,"top":0.17956904,"width":0.0039893617,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More actions for Apps","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Spaces","depth":13,"bounds":{"left":0.08361037,"top":0.2019154,"width":0.071476065,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"Spaces","depth":16,"bounds":{"left":0.09424867,"top":0.20790103,"width":0.016456118,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create space","depth":14,"bounds":{"left":0.13646941,"top":0.20510775,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create space","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for spaces","depth":14,"bounds":{"left":0.14577793,"top":0.20510775,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More actions for spaces","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Recent","depth":17,"bounds":{"left":0.08959442,"top":0.23423783,"width":0.013464096,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":18,"bounds":{"left":0.08759973,"top":0.2529928,"width":0.0674867,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":21,"bounds":{"left":0.09823803,"top":0.25897846,"width":0.032081116,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Jiminny (New)","depth":19,"bounds":{"left":0.08892952,"top":0.25618514,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXButton","text":"Create board","depth":19,"bounds":{"left":0.13646941,"top":0.25618514,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Create board","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Jiminny (New)","depth":19,"bounds":{"left":0.14577793,"top":0.25618514,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More actions for Jiminny (New)","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Platform Team","depth":20,"bounds":{"left":0.09158909,"top":0.27853152,"width":0.06349734,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform Team","depth":23,"bounds":{"left":0.1022274,"top":0.28451717,"width":0.032247342,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":21,"bounds":{"left":0.15309176,"top":0.28172386,"width":0.0039893617,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":23,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"SE Kanban","depth":20,"bounds":{"left":0.09158909,"top":0.30407023,"width":0.06349734,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SE Kanban","depth":23,"bounds":{"left":0.1022274,"top":0.31005585,"width":0.024102394,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":21,"bounds":{"left":0.15309176,"top":0.30726257,"width":0.0039893617,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":23,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Capture Team","depth":20,"bounds":{"left":0.09158909,"top":0.32960895,"width":0.06349734,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Capture Team","depth":23,"bounds":{"left":0.1022274,"top":0.33559456,"width":0.03125,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":21,"bounds":{"left":0.15309176,"top":0.33280128,"width":0.0039893617,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":23,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Enterprise Stability Issues 🤕","depth":20,"bounds":{"left":0.09158909,"top":0.35514766,"width":0.06349734,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enterprise Stability Issues 🤕","depth":23,"bounds":{"left":0.1022274,"top":0.36113328,"width":0.050531916,"height":0.030726258},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":21,"bounds":{"left":0.15309176,"top":0.35834,"width":0.0039893617,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":23,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Processing Team","depth":20,"bounds":{"left":0.09158909,"top":0.38068634,"width":0.06349734,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Processing Team","depth":23,"bounds":{"left":0.1022274,"top":0.386672,"width":0.038231384,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":21,"bounds":{"left":0.15309176,"top":0.38387868,"width":0.0039893617,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":23,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Service-Desk","depth":18,"bounds":{"left":0.08759973,"top":0.40622506,"width":0.0674867,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Service-Desk","depth":21,"bounds":{"left":0.09823803,"top":0.4122107,"width":0.03025266,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Service-Desk","depth":19,"bounds":{"left":0.15442154,"top":0.4094174,"width":0.0039893617,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More actions for Service-Desk","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More spaces","depth":18,"bounds":{"left":0.08759973,"top":0.43176377,"width":0.0674867,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More spaces","depth":21,"bounds":{"left":0.09823803,"top":0.43774942,"width":0.028756648,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Filters","depth":13,"bounds":{"left":0.08361037,"top":0.45730248,"width":0.071476065,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Filters","depth":16,"bounds":{"left":0.09424867,"top":0.4632881,"width":0.013796543,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Filters","depth":14,"bounds":{"left":0.15309176,"top":0.46049482,"width":0.0039893617,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More actions for Filters","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Dashboards","depth":13,"bounds":{"left":0.08361037,"top":0.4828412,"width":0.071476065,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Dashboards","depth":16,"bounds":{"left":0.09424867,"top":0.4888268,"width":0.026761968,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create dashboard","depth":14,"bounds":{"left":0.15508644,"top":0.48603353,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create dashboard","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Dashboards","depth":14,"bounds":{"left":0.16240026,"top":0.48603353,"width":0.0039893617,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More actions for Dashboards","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Operations","depth":13,"bounds":{"left":0.08361037,"top":0.5083799,"width":0.071476065,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Operations","depth":16,"bounds":{"left":0.09424867,"top":0.5143655,"width":0.02443484,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Operations","depth":14,"bounds":{"left":0.15309176,"top":0.51157224,"width":0.0039893617,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More actions for Operations","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Confluence , (opens new window)","depth":14,"bounds":{"left":0.08361037,"top":0.5434956,"width":0.071476065,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Confluence","depth":18,"bounds":{"left":0.09424867,"top":0.5494813,"width":0.025764627,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":16,"bounds":{"left":0.08361037,"top":0.55706304,"width":0.04837101,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Teams , (opens new window)","depth":14,"bounds":{"left":0.08361037,"top":0.56903434,"width":0.071476065,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Teams","depth":18,"bounds":{"left":0.09424867,"top":0.57501996,"width":0.014793883,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":16,"bounds":{"left":0.08361037,"top":0.5826017,"width":0.04837101,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"open menu","depth":15,"bounds":{"left":0.14378324,"top":0.57222664,"width":0.0039893617,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"open menu","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Customise sidebar","depth":13,"bounds":{"left":0.08361037,"top":0.60415006,"width":0.071476065,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Customise sidebar","depth":16,"bounds":{"left":0.09424867,"top":0.6101357,"width":0.04155585,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Resize side navigation panel","depth":14,"bounds":{"left":0.2109375,"top":0.0981644,"width":0.062333778,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Spaces","depth":14,"bounds":{"left":0.16738696,"top":0.09976058,"width":0.016289894,"height":0.01915403},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Spaces","depth":16,"bounds":{"left":0.16738696,"top":0.102553874,"width":0.016289894,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":14,"bounds":{"left":0.18683511,"top":0.102553874,"width":0.0016622341,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":14,"bounds":{"left":0.19165559,"top":0.09976058,"width":0.03174867,"height":0.01915403},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":16,"bounds":{"left":0.19165559,"top":0.102553874,"width":0.03174867,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Platform Team","depth":11,"bounds":{"left":0.16738696,"top":0.12210695,"width":0.045877658,"height":0.01915403},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Platform Team","depth":12,"bounds":{"left":0.16738696,"top":0.12210695,"width":0.045877658,"height":0.019553073},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Link contributing teams","depth":11,"bounds":{"left":0.21525931,"top":0.118914604,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Board actions","depth":11,"bounds":{"left":0.2278923,"top":0.118914604,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Share","depth":11,"bounds":{"left":0.9411569,"top":0.118914604,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Automation","depth":11,"bounds":{"left":0.9544548,"top":0.118914604,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Give feedback","depth":11,"bounds":{"left":0.96775264,"top":0.118914604,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Give feedback","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Enter full screen","depth":11,"bounds":{"left":0.98105055,"top":0.118914604,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enter full screen","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Summary","depth":14,"bounds":{"left":0.16472739,"top":0.14764565,"width":0.035904255,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Summary","depth":16,"bounds":{"left":0.17603059,"top":0.15363128,"width":0.021276595,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Timeline","depth":14,"bounds":{"left":0.20196144,"top":0.14764565,"width":0.03357713,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Timeline","depth":16,"bounds":{"left":0.21326463,"top":0.15363128,"width":0.018949468,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Backlog","depth":14,"bounds":{"left":0.23686835,"top":0.14764565,"width":0.032413565,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Backlog","depth":16,"bounds":{"left":0.24817154,"top":0.15363128,"width":0.017785905,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Active sprints","depth":14,"bounds":{"left":0.2706117,"top":0.14764565,"width":0.045212764,"height":0.025538707},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Active sprints","depth":16,"bounds":{"left":0.2819149,"top":0.15363128,"width":0.030585106,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Calendar","depth":14,"bounds":{"left":0.31715426,"top":0.14764565,"width":0.03474069,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Calendar","depth":16,"bounds":{"left":0.32845744,"top":0.15363128,"width":0.020113032,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Reports","depth":14,"bounds":{"left":0.35322472,"top":0.14764565,"width":0.031914894,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reports","depth":16,"bounds":{"left":0.3645279,"top":0.15363128,"width":0.017287234,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Testing Board","depth":14,"bounds":{"left":0.38646942,"top":0.14764565,"width":0.046708778,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Testing Board","depth":16,"bounds":{"left":0.3977726,"top":0.15363128,"width":0.030751329,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"List","depth":14,"bounds":{"left":0.43450797,"top":0.14764565,"width":0.02244016,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"List","depth":16,"bounds":{"left":0.44581118,"top":0.15363128,"width":0.0078125,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Forms","depth":14,"bounds":{"left":0.4582779,"top":0.14764565,"width":0.028590426,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Forms","depth":16,"bounds":{"left":0.46958113,"top":0.15363128,"width":0.013962766,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Components","depth":14,"bounds":{"left":0.48819813,"top":0.14764565,"width":0.04305186,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Components","depth":16,"bounds":{"left":0.49950132,"top":0.15363128,"width":0.028424202,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Development","depth":14,"bounds":{"left":0.5325798,"top":0.14764565,"width":0.044049203,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Development","depth":16,"bounds":{"left":0.54388297,"top":0.15363128,"width":0.029421542,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Code","depth":14,"bounds":{"left":0.57795876,"top":0.14764565,"width":0.02642952,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Code","depth":16,"bounds":{"left":0.58926195,"top":0.15363128,"width":0.011801862,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Security","depth":14,"bounds":{"left":0.6057181,"top":0.14764565,"width":0.03324468,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Security","depth":16,"bounds":{"left":0.61702126,"top":0.15363128,"width":0.01861702,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Releases","depth":14,"bounds":{"left":0.6402925,"top":0.14764565,"width":0.034574468,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Releases","depth":16,"bounds":{"left":0.6515958,"top":0.15363128,"width":0.019946808,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Deployments","depth":14,"bounds":{"left":0.6761968,"top":0.14764565,"width":0.043882977,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Deployments","depth":16,"bounds":{"left":0.6875,"top":0.15363128,"width":0.02925532,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Archived work items","depth":14,"bounds":{"left":0.72140956,"top":0.14764565,"width":0.06017287,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Archived work items","depth":16,"bounds":{"left":0.73271275,"top":0.15363128,"width":0.045545213,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Pages","depth":14,"bounds":{"left":0.78291225,"top":0.14764565,"width":0.02825798,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pages","depth":16,"bounds":{"left":0.79421544,"top":0.15363128,"width":0.013630319,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Shortcuts","depth":15,"bounds":{"left":0.8125,"top":0.14764565,"width":0.045545213,"height":0.025538707},"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Shortcuts","depth":16,"bounds":{"left":0.82513297,"top":0.15363128,"width":0.021609042,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Slack integration","depth":14,"bounds":{"left":0.859375,"top":0.14764565,"width":0.05319149,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Slack integration","depth":16,"bounds":{"left":0.8706782,"top":0.15363128,"width":0.03723404,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Reporting Center","depth":14,"bounds":{"left":0.91389626,"top":0.14764565,"width":0.054022606,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reporting Center","depth":16,"bounds":{"left":0.92519945,"top":0.15363128,"width":0.038065158,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add to navigation","depth":12,"bounds":{"left":0.96924865,"top":0.15083799,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"As you type to search or apply filters, the board updates with work items to match.","depth":12,"bounds":{"left":0.16738696,"top":0.20271349,"width":0.18134974,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Search on current page","depth":12,"bounds":{"left":0.17569813,"top":0.188747,"width":0.050531916,"height":0.026735835},"placeholder":"Search board","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Filter by assignee","depth":13,"bounds":{"left":0.23121676,"top":0.19034317,"width":0.03873005,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Filter assignees by Lukas Kovalik","depth":12,"bounds":{"left":0.23254654,"top":0.18914606,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Filter assignees by Nikolay Ivanov","depth":12,"bounds":{"left":0.24052526,"top":0.18914606,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Filter assignees by Nikolay Nikolov","depth":12,"bounds":{"left":0.24850398,"top":0.18914606,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Filter assignees by Nikolay Yankov","depth":12,"bounds":{"left":0.25648272,"top":0.18914606,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Filter assignees by Steliyan Georgiev","depth":12,"bounds":{"left":0.26446143,"top":0.18914606,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Filter assignees by Unassigned","depth":12,"bounds":{"left":0.27244017,"top":0.18914606,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Epic","depth":14,"bounds":{"left":0.28440824,"top":0.18914606,"width":0.0234375,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Epic","depth":17,"bounds":{"left":0.2883976,"top":0.19513169,"width":0.009474734,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Type","depth":14,"bounds":{"left":0.31050533,"top":0.18914606,"width":0.025099734,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Type","depth":17,"bounds":{"left":0.31449467,"top":0.19513169,"width":0.011136968,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Label","depth":14,"bounds":{"left":0.3382646,"top":0.18914606,"width":0.025930852,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Label","depth":17,"bounds":{"left":0.34225398,"top":0.19513169,"width":0.011968086,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Quick filters","depth":14,"bounds":{"left":0.36685506,"top":0.18914606,"width":0.04089096,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Quick filters","depth":17,"bounds":{"left":0.37084442,"top":0.19513169,"width":0.026928192,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Complete sprint","depth":11,"bounds":{"left":0.8507314,"top":0.18914606,"width":0.04338431,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Complete sprint","depth":13,"bounds":{"left":0.8547208,"top":0.19513169,"width":0.035405584,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Sprint details","depth":11,"bounds":{"left":0.89677525,"top":0.18914606,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Sprint details","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Group by Queries","depth":11,"bounds":{"left":0.91007316,"top":0.18914606,"width":0.041722074,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Group","depth":14,"bounds":{"left":0.9140625,"top":0.19513169,"width":0.013796543,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":": Queries","depth":14,"bounds":{"left":0.92785907,"top":0.19513169,"width":0.019946808,"height":0.01396648},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Sprint insights","depth":11,"bounds":{"left":0.9544548,"top":0.18914606,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Sprint insights","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"View settings","depth":11,"bounds":{"left":0.96775264,"top":0.18914606,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
8400947768917277987
|
5950772591048245415
|
visual_change
|
accessibility
|
NULL
|
Platform Sprint 2 Q2 - Platform Team - Scrum Board Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira
JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app
JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app
[SRD-6793] Les Mills activity types not pulling in - Jira
[SRD-6793] Les Mills activity types not pulling in - Jira
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app
JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app
[JY-20543] AJ Reports > Tracking - Jira
[JY-20543] AJ Reports > Tracking - Jira
[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira
[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira
Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app
Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app
New Tab
New Tab
Product Growth Platform | Userpilot
Product Growth Platform | Userpilot
Userpilot | Logged-activity
Userpilot | Logged-activity
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
Jiminny
Jiminny
Jiminny
Jiminny
Jiminny
Jiminny
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
Skip to:
Top Bar
Top Bar
Sidebar
Sidebar
Main Content
Main Content
Space navigation
Space navigation
Collapse sidebar [
Collapse sidebar [
Switch sites or apps
Switch sites or apps
Go to your Jira homepage
Search, press enter to navigate to advanced search with your text query
Create
Create
Rovo Ask Rovo
Ask Rovo
6 Notifications
6 Notifications
Help
Help
Settings
Settings
[EMAIL]
For you
For you
Recent
Recent
Starred
Starred
Apps
Apps
More actions for Apps
More actions for Apps
Spaces
Spaces
Create space
Create space
More actions for spaces
More actions for spaces
Recent
Jiminny (New)
Jiminny (New)
Jiminny (New)
Create board
Create board
More actions for Jiminny (New)
More actions for Jiminny (New)
Platform Team
Platform Team
Board actions
Board actions
SE Kanban
SE Kanban
Board actions
Board actions
Capture Team
Capture Team
Board actions
Board actions
Enterprise Stability Issues 🤕
Enterprise Stability Issues 🤕
Board actions
Board actions
Processing Team
Processing Team
Board actions
Board actions
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
More spaces
More spaces
Filters
Filters
More actions for Filters
More actions for Filters
Dashboards
Dashboards
Create dashboard
Create dashboard
More actions for Dashboards
More actions for Dashboards
Operations
Operations
More actions for Operations
More actions for Operations
Confluence , (opens new window)
Confluence
, (opens new window)
Teams , (opens new window)
Teams
, (opens new window)
open menu
open menu
Customise sidebar
Customise sidebar
Resize side navigation panel
Spaces
Spaces
/
Jiminny (New)
Jiminny (New)
Platform Team
Platform Team
Link contributing teams
Board actions
Board actions
Share
Automation
Give feedback
Give feedback
Enter full screen
Enter full screen
Summary
Summary
Timeline
Timeline
Backlog
Backlog
Active sprints
Active sprints
Calendar
Calendar
Reports
Reports
Testing Board
Testing Board
List
List
Forms
Forms
Components
Components
Development
Development
Code
Code
Security
Security
Releases
Releases
Deployments
Deployments
Archived work items
Archived work items
Pages
Pages
Shortcuts
Shortcuts
Slack integration
Slack integration
Reporting Center
Reporting Center
Add to navigation
As you type to search or apply filters, the board updates with work items to match.
Search on current page
Filter by assignee
Filter assignees by Lukas Kovalik
Filter assignees by Nikolay Ivanov
Filter assignees by Nikolay Nikolov
Filter assignees by Nikolay Yankov
Filter assignees by Steliyan Georgiev
Filter assignees by Unassigned
Epic
Epic
Type
Type
Label
Label
Quick filters
Quick filters
Complete sprint
Complete sprint
Sprint details
Sprint details
Group by Queries
Group
: Queries
Sprint insights
Sprint insights
View settings...
|
55232
|
|
8082
|
155
|
18
|
2026-04-14T06:28:52.607990+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-14/1776 /Users/lukas/.screenpipe/data/data/2026-04-14/1776148132607_m2.jpg...
|
Firefox
|
Platform Sprint 1 Q2 - Platform Team - Scrum Board Platform Sprint 1 Q2 - Platform Team - Scrum Board - Jira — Work...
|
True
|
jiminny.atlassian.net/jira/software/c/projects/JY/ jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedIssue=JY-20543...
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Platform Sprint 1 Q2 - Platform Team - Scrum Board Platform Sprint 1 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 1 Q2 - Platform Team - Scrum Board - Jira
Close tab
New Tab
Customize sidebar
Close Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
AI Chat settings
Close
WORK, Google Account: [EMAIL]
Main menu
New Chat
Open menu for conversation actions.
Conversation with Gemini
Conversation with Gemini
Copy prompt
Edit
You said in firefox can I add the icon for the pinend tab
You said
in firefox can I add the icon for the pinend tab
Listen
Show more options
Show thinking
Gemini said
Gemini said
By default, Firefox automatically uses the website's own logo (called a "favicon") as the icon for a pinned tab. There is no built-in setting in Firefox to just click and upload your own custom picture for a pinned tab.
However, if you want to add or change the icon for a specific pinned tab, you can do it using a couple of workarounds:
Method 1: Use a Browser Extension (Easiest)
Method 1: Use a Browser Extension (Easiest)
The simplest way to force a specific icon onto a tab is by using an extension.
Go to the Firefox Add-ons site and search for
Tab Modifier
.
Install the extension.
Open the extension's settings.
You can create a rule for the specific website you have pinned. You'll be able to paste the URL of an image you want to use, and the extension will replace the default tab icon with your chosen image.
Method 2: Use userChrome.css (Advanced)
Method 2: Use
userChrome.css
(Advanced)
If you are comfortable tweaking Firefox's code, you can change tab icons using custom CSS.
You first need to enable custom stylesheets by typing
about:config
in your address bar, searching for
toolkit.legacyUserProfileCustomizations.stylesheets
, and setting it to
true
.
Open your Firefox profile folder (Go to
about:support
> Profile Folder > Open Folder).
Create a folder named
chrome
and inside it, create a file named
userChrome.css
.
You can add CSS code targeting a specific website to change its icon. For example:
CSS
Copy code
.tabbrowser-tab
[image*=
"example.com"
]
.tab-icon-image
{
content
:
url
(
"file:///C:/path/to/your/icon.png"
)
!important
;
}
(Note: This method requires a bit of technical comfort and managing file paths).
Troubleshooting: Is the icon missing?
Troubleshooting: Is the icon missing?
If your pinned tab just shows a generic globe or document icon instead of the site's logo, it usually means the website developers forgot to add a favicon to their site.
Sometimes, it's just a browser glitch. You can try to fix a missing icon by:
Unpinning the tab, refreshing the page (
Ctrl
+
F5
for a hard refresh), and pinning it again.
Clearing your browser cache.
(Note: If you were asking if you can add a "Pin Tab"
shortcut button
to your main Firefox toolbar to make pinning easier, Firefox doesn't have a drag-and-drop button for this. Instead, you can right-click any tab and select "Pin Tab", or use the keyboard shortcut
Alt
+
P
/
Ctrl
+
M
depending on your OS and settings).
Enter a prompt for Gemini
encrypted
Enter a prompt for Gemini
encrypted
Open upload file menu
Tools
Open mode picker
Pro
Microphone
Your Jiminny chats aren’t used to improve our models. Gemini is AI and can make mistakes, including about people.
Your privacy & Gemini Opens in a new window
Your privacy & Gemini
Opens in a new window
New
Summarize page...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Platform Sprint 1 Q2 - Platform Team - Scrum Board - Jira","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.09355469,"height":-0.045138836},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Platform Sprint 1 Q2 - Platform Team - Scrum Board - Jira","depth":5,"bounds":{"left":0.24882813,"top":1.0,"width":0.11796875,"height":-0.05486107},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.31230468,"top":1.0,"width":0.009375,"height":-0.05138886},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"New Tab","depth":4,"bounds":{"left":0.23652343,"top":1.0,"width":0.08710937,"height":-0.07500005},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Close Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Tabs from other devices","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Chat settings","depth":7,"bounds":{"left":0.4501953,"top":1.0,"width":0.0125,"height":-0.04791665},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":7,"bounds":{"left":0.4642578,"top":1.0,"width":0.0125,"height":-0.04791665},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"WORK, Google Account: lukas.kovalik@jiminny.com","depth":12,"bounds":{"left":0.46113282,"top":1.0,"width":0.015625,"height":-0.09027779},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Main menu","depth":12,"bounds":{"left":0.3314453,"top":1.0,"width":0.015625,"height":-0.09027779},"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"New Chat","depth":12,"bounds":{"left":0.42832032,"top":1.0,"width":0.015625,"height":-0.09027779},"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Open menu for conversation actions.","depth":12,"bounds":{"left":0.44394532,"top":1.0,"width":0.015625,"height":-0.09027779},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"Conversation with Gemini","depth":15,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Conversation with Gemini","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy prompt","depth":21,"bounds":{"left":0.3533203,"top":0.24097222,"width":0.015625,"height":0.027777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit","depth":21,"bounds":{"left":0.3705078,"top":0.24097222,"width":0.015625,"height":0.027777778},"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"You said in firefox can I add the icon for the pinend tab","depth":21,"bounds":{"left":0.3939453,"top":0.24930556,"width":0.072265625,"height":0.03888889},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"You said","depth":23,"bounds":{"left":0.3263672,"top":0.25138888,"width":0.0234375,"height":0.014236111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"in firefox can I add the icon for the pinend tab","depth":23,"bounds":{"left":0.3939453,"top":0.25208333,"width":0.064648435,"height":0.033680554},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Listen","depth":22,"bounds":{"left":0.45683593,"top":0.3159722,"width":0.015625,"height":0.027777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Show more options","depth":20,"bounds":{"left":0.45683593,"top":0.31111112,"width":0.015625,"height":0.027777778},"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Show thinking","depth":26,"bounds":{"left":0.35253906,"top":0.31805557,"width":0.036328126,"height":0.012847222},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Gemini said","depth":20,"bounds":{"left":0.3498047,"top":0.35416666,"width":0.000390625,"height":0.00069444446},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Gemini said","depth":21,"bounds":{"left":0.3498047,"top":0.3559028,"width":0.04824219,"height":0.016666668},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"By default, Firefox automatically uses the website's own logo (called a \"favicon\") as the icon for a pinned tab. There is no built-in setting in Firefox to just click and upload your own custom picture for a pinned tab.","depth":24,"bounds":{"left":0.33691406,"top":0.3625,"width":0.13007812,"height":0.08645833},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"However, if you want to add or change the icon for a specific pinned tab, you can do it using a couple of workarounds:","depth":24,"bounds":{"left":0.33691406,"top":0.46388888,"width":0.12382813,"height":0.050347224},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Method 1: Use a Browser Extension (Easiest)","depth":23,"bounds":{"left":0.33691406,"top":0.53541666,"width":0.13242188,"height":0.033333335},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Method 1: Use a Browser Extension (Easiest)","depth":24,"bounds":{"left":0.33691406,"top":0.53680557,"width":0.107617185,"height":0.030902777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"The simplest way to force a specific icon onto a tab is by using an extension.","depth":24,"bounds":{"left":0.33691406,"top":0.5763889,"width":0.13085938,"height":0.032291666},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Go to the Firefox Add-ons site and search for","depth":26,"bounds":{"left":0.35097656,"top":0.6180556,"width":0.11835937,"height":0.032291666},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Tab Modifier","depth":26,"bounds":{"left":0.36074218,"top":0.63611114,"width":0.03828125,"height":0.014236111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":26,"bounds":{"left":0.39902344,"top":0.63611114,"width":0.0015625,"height":0.014236111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Install the extension.","depth":26,"bounds":{"left":0.35097656,"top":0.6597222,"width":0.058203124,"height":0.014236111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Open the extension's settings.","depth":26,"bounds":{"left":0.35097656,"top":0.68333334,"width":0.0859375,"height":0.014236111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"You can create a rule for the specific website you have pinned. You'll be able to paste the URL of an image you want to use, and the extension will replace the default tab icon with your chosen image.","depth":26,"bounds":{"left":0.35097656,"top":0.70694447,"width":0.11835937,"height":0.08645833},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Method 2: Use userChrome.css (Advanced)","depth":23,"bounds":{"left":0.33691406,"top":0.81458336,"width":0.13242188,"height":0.033333335},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Method 2: Use","depth":24,"bounds":{"left":0.33691406,"top":0.8159722,"width":0.04511719,"height":0.014236111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"userChrome.css","depth":25,"bounds":{"left":0.384375,"top":0.81701386,"width":0.045898438,"height":0.012847222},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(Advanced)","depth":24,"bounds":{"left":0.33691406,"top":0.8159722,"width":0.09726562,"height":0.030902777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"If you are comfortable tweaking Firefox's code, you can change tab icons using custom CSS.","depth":24,"bounds":{"left":0.33691406,"top":0.85555553,"width":0.13085938,"height":0.050347224},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"You first need to enable custom stylesheets by typing","depth":26,"bounds":{"left":0.35097656,"top":0.9152778,"width":0.09101562,"height":0.032291666},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"about:config","depth":27,"bounds":{"left":0.4152344,"top":0.934375,"width":0.039257813,"height":0.012847222},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"in your address bar, searching for","depth":26,"bounds":{"left":0.35097656,"top":0.93333334,"width":0.1140625,"height":0.032291666},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"toolkit.legacyUserProfileCustomizations.stylesheets","depth":27,"bounds":{"left":0.35097656,"top":0.9704861,"width":0.113867186,"height":0.029513896},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", and setting it to","depth":26,"bounds":{"left":0.4091797,"top":0.9875,"width":0.04941406,"height":0.012499988},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"true","depth":26,"bounds":{"left":0.35097656,"top":1.0,"width":0.0126953125,"height":-0.0055555105},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":26,"bounds":{"left":0.36367187,"top":1.0,"width":0.0015625,"height":-0.0055555105},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Open your Firefox profile folder (Go to","depth":26,"bounds":{"left":0.35097656,"top":1.0,"width":0.10976563,"height":-0.029166698},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"about:support","depth":27,"bounds":{"left":0.3533203,"top":1.0,"width":0.042578124,"height":-0.048263907},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"> Profile Folder > Open Folder).","depth":26,"bounds":{"left":0.35097656,"top":1.0,"width":0.11484375,"height":-0.047222257},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Create a folder named","depth":26,"bounds":{"left":0.35097656,"top":1.0,"width":0.06503906,"height":-0.08888888},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"chrome","depth":27,"bounds":{"left":0.41835937,"top":1.0,"width":0.019726563,"height":-0.089930534},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"and inside it, create a file named","depth":26,"bounds":{"left":0.35097656,"top":1.0,"width":0.103515625,"height":-0.08888888},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"userChrome.css","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"You can add CSS code targeting a specific website to change its icon. For example:","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CSS","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy code","depth":27,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":".tabbrowser-tab","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"[image*=","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\"example.com\"","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"]","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".tab-icon-image","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"{","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"content","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"url","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\"file:///C:/path/to/your/icon.png\"","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"!important","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":";\n}","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(Note: This method requires a bit of technical comfort and managing file paths).","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Troubleshooting: Is the icon missing?","depth":23,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Troubleshooting: Is the icon missing?","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"If your pinned tab just shows a generic globe or document icon instead of the site's logo, it usually means the website developers forgot to add a favicon to their site.","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Sometimes, it's just a browser glitch. You can try to fix a missing icon by:","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Unpinning the tab, refreshing the page (","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ctrl","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"F5","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"for a hard refresh), and pinning it again.","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Clearing your browser cache.","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(Note: If you were asking if you can add a \"Pin Tab\"","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"shortcut button","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"to your main Firefox toolbar to make pinning easier, Firefox doesn't have a drag-and-drop button for this. Instead, you can right-click any tab and select \"Pin Tab\", or use the keyboard shortcut","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Alt","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"P","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ctrl","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"M","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"depending on your OS and settings).","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextArea","text":"Enter a prompt for Gemini\nencrypted","depth":20,"value":"Enter a prompt for Gemini\nencrypted","help_text":"","role_description":"text entry area","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enter a prompt for Gemini","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"encrypted","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Open upload file menu","depth":20,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tools","depth":18,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open mode picker","depth":20,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pro","depth":23,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Microphone","depth":19,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Your Jiminny chats aren’t used to improve our models. Gemini is AI and can make mistakes, including about people.","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Your privacy & Gemini Opens in a new window","depth":17,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Your privacy & Gemini","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Opens in a new window","depth":19,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"New","depth":7,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Summarize page","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false}]...
|
8398669382411726495
|
6438684728014814855
|
idle
|
accessibility
|
NULL
|
Platform Sprint 1 Q2 - Platform Team - Scrum Board Platform Sprint 1 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 1 Q2 - Platform Team - Scrum Board - Jira
Close tab
New Tab
Customize sidebar
Close Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
AI Chat settings
Close
WORK, Google Account: [EMAIL]
Main menu
New Chat
Open menu for conversation actions.
Conversation with Gemini
Conversation with Gemini
Copy prompt
Edit
You said in firefox can I add the icon for the pinend tab
You said
in firefox can I add the icon for the pinend tab
Listen
Show more options
Show thinking
Gemini said
Gemini said
By default, Firefox automatically uses the website's own logo (called a "favicon") as the icon for a pinned tab. There is no built-in setting in Firefox to just click and upload your own custom picture for a pinned tab.
However, if you want to add or change the icon for a specific pinned tab, you can do it using a couple of workarounds:
Method 1: Use a Browser Extension (Easiest)
Method 1: Use a Browser Extension (Easiest)
The simplest way to force a specific icon onto a tab is by using an extension.
Go to the Firefox Add-ons site and search for
Tab Modifier
.
Install the extension.
Open the extension's settings.
You can create a rule for the specific website you have pinned. You'll be able to paste the URL of an image you want to use, and the extension will replace the default tab icon with your chosen image.
Method 2: Use userChrome.css (Advanced)
Method 2: Use
userChrome.css
(Advanced)
If you are comfortable tweaking Firefox's code, you can change tab icons using custom CSS.
You first need to enable custom stylesheets by typing
about:config
in your address bar, searching for
toolkit.legacyUserProfileCustomizations.stylesheets
, and setting it to
true
.
Open your Firefox profile folder (Go to
about:support
> Profile Folder > Open Folder).
Create a folder named
chrome
and inside it, create a file named
userChrome.css
.
You can add CSS code targeting a specific website to change its icon. For example:
CSS
Copy code
.tabbrowser-tab
[image*=
"example.com"
]
.tab-icon-image
{
content
:
url
(
"file:///C:/path/to/your/icon.png"
)
!important
;
}
(Note: This method requires a bit of technical comfort and managing file paths).
Troubleshooting: Is the icon missing?
Troubleshooting: Is the icon missing?
If your pinned tab just shows a generic globe or document icon instead of the site's logo, it usually means the website developers forgot to add a favicon to their site.
Sometimes, it's just a browser glitch. You can try to fix a missing icon by:
Unpinning the tab, refreshing the page (
Ctrl
+
F5
for a hard refresh), and pinning it again.
Clearing your browser cache.
(Note: If you were asking if you can add a "Pin Tab"
shortcut button
to your main Firefox toolbar to make pinning easier, Firefox doesn't have a drag-and-drop button for this. Instead, you can right-click any tab and select "Pin Tab", or use the keyboard shortcut
Alt
+
P
/
Ctrl
+
M
depending on your OS and settings).
Enter a prompt for Gemini
encrypted
Enter a prompt for Gemini
encrypted
Open upload file menu
Tools
Open mode picker
Pro
Microphone
Your Jiminny chats aren’t used to improve our models. Gemini is AI and can make mistakes, including about people.
Your privacy & Gemini Opens in a new window
Your privacy & Gemini
Opens in a new window
New
Summarize page...
|
8080
|
|
80598
|
2129
|
4
|
2026-04-25T14:30:01.271932+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127401271_m1.jpg...
|
Firefox
|
Screenpipe — Archive — Personal
|
True
|
http://192.168.0.242:8766
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
5 Signs You Have Successfully Hur DXP4800PLUS-B5F8
5 Signs You Have Successfully Hurt a Narcissist; - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
Close tab
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe [archive.db · 6175.9MB]
Screenpipe
[archive.db · 6175.9MB]
Activity
Search
Audio
Work Report
Timetable
AI Summary
Date
23
/
04
/
2026
Calendar
Monitor
Jump to
--
:
--
Go
APP TIMELINE · CLICK TO PLAY · DRAG SCROLLBAR TO PAN
−
1×
+
Follow
Follow
09:30
10:00
10:30
11:00
11:30
12:00
12:30
13:00
13:30
14:00
23 Apr 09:49 · Firefox / Work — Mozilla Firefox
⏮ 30s
◀ 10s
⏸ Pause
10s ▶
30s ⏭
09:49
iTerm2
Firefox
Slack
PhpStorm
CleanShot X
Finder
QuickTime Player
Activity Monitor
Alfred
Preview
Sequel Ace
Raycast
Music...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"5 Signs You Have Successfully Hurt a Narcissist; - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"(56) Inbox | kovaliklukas@proton.me | Proton Mail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Welcome back","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Welcome back","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Today's Deals","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Today's Deals","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"architecture - screenpipe docs","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"architecture - screenpipe docs","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Claude Code works better when you stop treating it like a machine - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Claude Code works better when you stop treating it like a machine - kovaliklukas@gmail.com - Gmail","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe — Archive","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Screenpipe — Archive","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"SQLite Web: archive.db","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SQLite Web: archive.db","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"SQLite Web: db.sqlite","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SQLite Web: db.sqlite","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Claude Platform","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Claude Platform","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Hey @louis030195 Ill check during my - screenpipe.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Hey @louis030195 Ill check during my - screenpipe.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Gong Pricing in 2026: Costs, Plans & Is It Worth It?","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Gong Pricing in 2026: Costs, Plans & Is It Worth It?","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - kovaliklukas@gmail.com - Gmail","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Gitea Official Website","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Gitea Official Website","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Le Chat Mistral (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Screenpipe [archive.db · 6175.9MB]","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Screenpipe","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"[archive.db · 6175.9MB]","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Activity","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Audio","depth":7,"help_text":"No audio data in this database","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Work Report","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Timetable","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Summary","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"23","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Monitor","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Jump to","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Go","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"APP TIMELINE · CLICK TO PLAY · DRAG SCROLLBAR TO PAN","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"−","depth":9,"help_text":"Zoom out","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"1×","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"+","depth":9,"help_text":"Zoom in","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Follow","depth":10,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Follow","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"09:30","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"10:00","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"10:30","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:00","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:30","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12:00","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12:30","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13:00","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13:30","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"14:00","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"23 Apr 09:49 · Firefox / Work — Mozilla Firefox","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"⏮ 30s","depth":9,"help_text":"Ctrl+←","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"◀ 10s","depth":9,"help_text":"←","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"⏸ Pause","depth":9,"help_text":"Space","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"10s ▶","depth":9,"help_text":"→","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"30s ⏭","depth":9,"help_text":"Ctrl+→","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"09:49","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":9,"bounds":{"left":0.17152777,"top":0.0,"width":0.024652777,"height":0.015},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":9,"bounds":{"left":0.21354167,"top":0.0,"width":0.024652777,"height":0.015},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Slack","depth":9,"bounds":{"left":0.25555557,"top":0.0,"width":0.019791666,"height":0.015},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"PhpStorm","depth":9,"bounds":{"left":0.29270834,"top":0.0,"width":0.036111113,"height":0.015},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CleanShot X","depth":9,"bounds":{"left":0.34618056,"top":0.0,"width":0.044791665,"height":0.015},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Finder","depth":9,"bounds":{"left":0.40833333,"top":0.0,"width":0.022916667,"height":0.015},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"QuickTime Player","depth":9,"bounds":{"left":0.4486111,"top":0.0,"width":0.063194446,"height":0.015},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Activity Monitor","depth":9,"bounds":{"left":0.52916664,"top":0.0,"width":0.057291668,"height":0.015},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Alfred","depth":9,"bounds":{"left":0.60381943,"top":0.0,"width":0.021875,"height":0.015},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Preview","depth":9,"bounds":{"left":0.64305556,"top":0.0,"width":0.028472222,"height":0.015},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Sequel Ace","depth":9,"bounds":{"left":0.6888889,"top":0.0,"width":0.04097222,"height":0.015},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Raycast","depth":9,"bounds":{"left":0.74722224,"top":0.0,"width":0.028472222,"height":0.015},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Music","depth":9,"bounds":{"left":0.79305553,"top":0.0,"width":0.021527778,"height":0.015},"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
8398259989292800858
|
5257738441787492879
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
5 Signs You Have Successfully Hur DXP4800PLUS-B5F8
5 Signs You Have Successfully Hurt a Narcissist; - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
Close tab
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe [archive.db · 6175.9MB]
Screenpipe
[archive.db · 6175.9MB]
Activity
Search
Audio
Work Report
Timetable
AI Summary
Date
23
/
04
/
2026
Calendar
Monitor
Jump to
--
:
--
Go
APP TIMELINE · CLICK TO PLAY · DRAG SCROLLBAR TO PAN
−
1×
+
Follow
Follow
09:30
10:00
10:30
11:00
11:30
12:00
12:30
13:00
13:30
14:00
23 Apr 09:49 · Firefox / Work — Mozilla Firefox
⏮ 30s
◀ 10s
⏸ Pause
10s ▶
30s ⏭
09:49
iTerm2
Firefox
Slack
PhpStorm
CleanShot X
Finder
QuickTime Player
Activity Monitor
Alfred
Preview
Sequel Ace
Raycast
Music...
|
80596
|
|
5963
|
109
|
19
|
2026-04-13T13:33:55.730837+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776087235730_m1.jpg...
|
Boosteroid
|
Boosteroid
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelplab|* Unable to access screenpipe activity dataDOCKERO $1DEV (-zsh)O 882APP (-zsh)• *3-zsh84-zsh• 25-zsh86-zsh®Bash(curl -s "http://localhost:3030/search?content_type=ocr&start_time=2026-04-11T00:00:00Z&end_time=2026-04-13T23:59:59Z&limit=5000&offset=0"im..)L Running..100% [RMon 13 Apr 16:33:551812>&1O 87python3* Unable to access s...-с "sash commandcurl -s "http://localhost:3030/search?content_type=ocr&start_time=2026-04-11T00:00:00Z&end_time=2026-04-13T23:59:59Z&limit=5000&offset=0"import json, sysfrom collections import defaultdictdata = json.load(sys.stdin)items = data.get('data', [])apps = defaultdict(int)windows = defaultdict(int)for item in items:c = item.get('content', (})app = c.get('app_name'"Unknown") orwindow = C.get('window_name', ""S or Unknown'apps[app] += 1if window:windows [f'[{app}] {window}'] += 1print(f'Total frames: {len(items)}')printOprint('=== Apps (frames) ===')for app, count in sorted(apps.items(), key=lambda x: -x[1]):print(f'{app}: {count}')printOprint('=== Top Windows ===')for w, count in sorted(windows.items(), key=lambda x: -x[1])[:25]:print(f' {count:4d}x {w[:110]}')" 2>81Run shell commando you want to proceed?• 1.Yes2.Yes, and don't ask again for similar commands in /Users/lukas3. Noisc to cancel • Tab to amend• ctrl+e to explainpython3 -c "...
|
NULL
|
8398236062034509543
|
NULL
|
click
|
ocr
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelplab|* Unable to access screenpipe activity dataDOCKERO $1DEV (-zsh)O 882APP (-zsh)• *3-zsh84-zsh• 25-zsh86-zsh®Bash(curl -s "http://localhost:3030/search?content_type=ocr&start_time=2026-04-11T00:00:00Z&end_time=2026-04-13T23:59:59Z&limit=5000&offset=0"im..)L Running..100% [RMon 13 Apr 16:33:551812>&1O 87python3* Unable to access s...-с "sash commandcurl -s "http://localhost:3030/search?content_type=ocr&start_time=2026-04-11T00:00:00Z&end_time=2026-04-13T23:59:59Z&limit=5000&offset=0"import json, sysfrom collections import defaultdictdata = json.load(sys.stdin)items = data.get('data', [])apps = defaultdict(int)windows = defaultdict(int)for item in items:c = item.get('content', (})app = c.get('app_name'"Unknown") orwindow = C.get('window_name', ""S or Unknown'apps[app] += 1if window:windows [f'[{app}] {window}'] += 1print(f'Total frames: {len(items)}')printOprint('=== Apps (frames) ===')for app, count in sorted(apps.items(), key=lambda x: -x[1]):print(f'{app}: {count}')printOprint('=== Top Windows ===')for w, count in sorted(windows.items(), key=lambda x: -x[1])[:25]:print(f' {count:4d}x {w[:110]}')" 2>81Run shell commando you want to proceed?• 1.Yes2.Yes, and don't ask again for similar commands in /Users/lukas3. Noisc to cancel • Tab to amend• ctrl+e to explainpython3 -c "...
|
NULL
|
|
51459
|
1112
|
88
|
2026-04-18T11:43:55.785432+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-18/1776 /Users/lukas/.screenpipe/data/data/2026-04-18/1776512635785_m2.jpg...
|
Firefox
|
SQLite Web: db.sqlite — Personal
|
True
|
http://100.73.206.126:8767/audio_transcriptions_ft
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Статус на поръчка в stantek.com - DXP4800PLUS-B5F8
Статус на поръчка в stantek.com - [EMAIL] - Gmail
Stantek
Stantek
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
| Senetic
| Senetic
Stantek
Stantek
| Senetic
| Senetic
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Close tab
Screenpipe Dashboard
Screenpipe Dashboard
Welcome to Steam
Welcome to Steam
(118) Orbán 2.0? Bulgaria's Big Election Explained - YouTube
Mute tab
(118) Orbán 2.0? Bulgaria's Big Election Explained - YouTube
New Tab
New Tab
Today's Deals
Today's Deals
New Tab
New Tab
Shameless • HBO Max
Shameless • HBO Max
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
install screenpipe - screenpipe docs
install screenpipe - screenpipe docs
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
sqlite-web 0.7.2
sqlite-web 0.7.2
db.sqlite
db.sqlite
audio_transcriptions_fts_data
5 rows, showing page 1
Query
Query
table name...
_sqlx_migrations
_sqlx_migrations
audio_chunks
audio_chunks
audio_tags
audio_tags
audio_transcriptions
audio_transcriptions
audio_transcriptions_fts (v)
audio_transcriptions_fts
(v)
audio_transcriptions_...
audio_transcriptions_...
audio_transcriptions_...
audio_transcriptions_...
audio_transcriptions_...
audio_transcriptions_...
elements
elements
elements_fts (v)
elements_fts
(v)
elements_fts_config
elements_fts_config
elements_fts_data
elements_fts_data
elements_fts_idx
elements_fts_idx
frames
frames
frames_fts (v)
frames_fts
(v)
frames_fts_config
frames_fts_config
frames_fts_data
frames_fts_data
frames_fts_idx
frames_fts_idx
meetings
meetings
memories
memories
memories_fts (v)
memories_fts
(v)
memories_fts_config
memories_fts_config
memories_fts_data
memories_fts_data
memories_fts_idx
memories_fts_idx
ocr_text
ocr_text
pipe_executions
pipe_executions
pipe_scheduler_state
pipe_scheduler_state
secrets
secrets
speaker_embeddings
speaker_embeddings
speakers
speakers
sqlite_sequence
sqlite_sequence
tags
tags
ui_events
ui_events
ui_events_fts (v)
ui_events_fts
(v)
ui_events_fts_config
ui_events_fts_config
ui_events_fts_data
ui_events_fts_data
ui_events_fts_idx
ui_events_fts_idx
video_chunks
video_chunks
vision_tags
vision_tags
Toggle helper tables
Toggle helper tables
Structure
Structure
Content
Content
Query
Query
Export
Export
id
id
block
block
1
10
137438953473
000000840230310106010202010961706172746d656e740102
...
...
274877906945
F02audioclassissystem
...
...
412316860417
%03audiosystem
id
id
1
10
137438953473
274877906945
412316860417
block
block
000000840230310106010202010961706172746d656e740102
...
...
F02audioclassissystem
...
...
%03audiosystem
«
«
‹
‹
Page 1 / 1
›
›
»
»
SQLite database browser
v0.7.2
, powered by
Flask
Flask
and
Peewee
Peewee
. © 2026
Charles Leifer
Charles Leifer
http://[IP_ADDRESS]:8767/audio_transcriptions_fts_data/content/...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"bounds":{"left":0.00234375,"top":0.045138888,"width":0.064453125,"height":0.028472222},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Статус на поръчка в stantek.com - kovaliklukas@gmail.com - Gmail","depth":4,"bounds":{"left":0.06679688,"top":0.045138888,"width":0.06484375,"height":0.028472222},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Stantek","depth":4,"bounds":{"left":0.0,"top":0.08263889,"width":0.13359375,"height":0.028472222},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Stantek","depth":5,"bounds":{"left":0.015625,"top":0.09236111,"width":0.015625,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"bounds":{"left":0.0,"top":0.11111111,"width":0.13359375,"height":0.028472222},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"bounds":{"left":0.015625,"top":0.12083333,"width":0.30859375,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"| Senetic","depth":4,"bounds":{"left":0.0,"top":0.13958333,"width":0.13359375,"height":0.028472222},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"| Senetic","depth":5,"bounds":{"left":0.015625,"top":0.14930555,"width":0.017578125,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Stantek","depth":4,"bounds":{"left":0.0,"top":0.16805555,"width":0.13359375,"height":0.028472222},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Stantek","depth":5,"bounds":{"left":0.015625,"top":0.17777778,"width":0.015625,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"| Senetic","depth":4,"bounds":{"left":0.0,"top":0.19652778,"width":0.13359375,"height":0.028472222},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"| Senetic","depth":5,"bounds":{"left":0.015625,"top":0.20625,"width":0.017578125,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400","depth":4,"bounds":{"left":0.0,"top":0.225,"width":0.13359375,"height":0.028472222},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400","depth":5,"bounds":{"left":0.015625,"top":0.23472223,"width":0.12929687,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"SQLite Web: db.sqlite","depth":4,"bounds":{"left":0.0,"top":0.2534722,"width":0.13359375,"height":0.028472222},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"SQLite Web: db.sqlite","depth":5,"bounds":{"left":0.015625,"top":0.26319444,"width":0.044140626,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.119140625,"top":0.25972223,"width":0.009375,"height":0.016666668},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"bounds":{"left":0.0,"top":0.28194445,"width":0.13359375,"height":0.028472222},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"bounds":{"left":0.015625,"top":0.29166666,"width":0.046484374,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Welcome to Steam","depth":4,"bounds":{"left":0.0,"top":0.31041667,"width":0.13359375,"height":0.028472222},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Welcome to Steam","depth":5,"bounds":{"left":0.015625,"top":0.3201389,"width":0.03828125,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"(118) Orbán 2.0? Bulgaria's Big Election Explained - YouTube","depth":4,"bounds":{"left":0.0,"top":0.33888888,"width":0.13359375,"height":0.028472222},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"bounds":{"left":0.01328125,"top":0.34513888,"width":0.009375,"height":0.016666668},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"(118) Orbán 2.0? Bulgaria's Big Election Explained - YouTube","depth":5,"bounds":{"left":0.0234375,"top":0.34861112,"width":0.12382813,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"bounds":{"left":0.0,"top":0.3673611,"width":0.13359375,"height":0.028472222},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"bounds":{"left":0.015625,"top":0.37708333,"width":0.017578125,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Today's Deals","depth":4,"bounds":{"left":0.0,"top":0.39583334,"width":0.13359375,"height":0.028472222},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Today's Deals","depth":5,"bounds":{"left":0.015625,"top":0.40555555,"width":0.028515626,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"bounds":{"left":0.0,"top":0.42430556,"width":0.13359375,"height":0.028472222},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"bounds":{"left":0.015625,"top":0.4340278,"width":0.017578125,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"bounds":{"left":0.0,"top":0.45277777,"width":0.13359375,"height":0.028472222},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"bounds":{"left":0.015625,"top":0.4625,"width":0.045703124,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub","depth":4,"bounds":{"left":0.0,"top":0.48125,"width":0.13359375,"height":0.028472222},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub","depth":5,"bounds":{"left":0.015625,"top":0.49097222,"width":0.26523438,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"install screenpipe - screenpipe docs","depth":4,"bounds":{"left":0.0,"top":0.50972223,"width":0.13359375,"height":0.028472222},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"install screenpipe - screenpipe docs","depth":5,"bounds":{"left":0.015625,"top":0.51944447,"width":0.07421875,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"bounds":{"left":0.003125,"top":0.5395833,"width":0.12734374,"height":0.022222223},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"bounds":{"left":0.003125,"top":0.97430557,"width":0.0125,"height":0.022222223},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"bounds":{"left":0.01640625,"top":0.97430557,"width":0.0125,"height":0.022222223},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"bounds":{"left":0.029296875,"top":0.97430557,"width":0.0125,"height":0.022222223},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"bounds":{"left":0.0421875,"top":0.97430557,"width":0.0125,"height":0.022222223},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"bounds":{"left":0.05546875,"top":0.97430557,"width":0.0125,"height":0.022222223},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"sqlite-web 0.7.2","depth":7,"bounds":{"left":0.13984375,"top":0.050694443,"width":0.05078125,"height":0.027083334},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"sqlite-web 0.7.2","depth":8,"bounds":{"left":0.13984375,"top":0.05625,"width":0.05078125,"height":0.015972223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"db.sqlite","depth":10,"bounds":{"left":0.196875,"top":0.050694443,"width":0.028125,"height":0.02638889},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"db.sqlite","depth":11,"bounds":{"left":0.2,"top":0.057638887,"width":0.021875,"height":0.0125},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"audio_transcriptions_fts_data","depth":10,"bounds":{"left":0.225,"top":0.057638887,"width":0.0765625,"height":0.0125},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5 rows, showing page 1","depth":9,"bounds":{"left":0.303125,"top":0.058333334,"width":0.053515624,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Query","depth":8,"bounds":{"left":0.9722656,"top":0.05347222,"width":0.021484375,"height":0.020833334},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Query","depth":9,"bounds":{"left":0.97578126,"top":0.058333334,"width":0.014453125,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"table name...","depth":7,"bounds":{"left":0.13945313,"top":0.097222224,"width":0.1328125,"height":0.02013889},"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"_sqlx_migrations","depth":9,"bounds":{"left":0.13945313,"top":0.11736111,"width":0.1328125,"height":0.02013889},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"_sqlx_migrations","depth":10,"bounds":{"left":0.14335938,"top":0.12083333,"width":0.045703124,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"audio_chunks","depth":9,"bounds":{"left":0.13945313,"top":0.1375,"width":0.1328125,"height":0.019444445},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"audio_chunks","depth":10,"bounds":{"left":0.14335938,"top":0.14097223,"width":0.03671875,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"audio_tags","depth":9,"bounds":{"left":0.13945313,"top":0.15694444,"width":0.1328125,"height":0.02013889},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"audio_tags","depth":10,"bounds":{"left":0.14335938,"top":0.16041666,"width":0.0296875,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"audio_transcriptions","depth":9,"bounds":{"left":0.13945313,"top":0.17708333,"width":0.1328125,"height":0.019444445},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"audio_transcriptions","depth":10,"bounds":{"left":0.14335938,"top":0.18055555,"width":0.0546875,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"audio_transcriptions_fts (v)","depth":9,"bounds":{"left":0.13945313,"top":0.19652778,"width":0.1328125,"height":0.02013889},"help_text":"audio_transcriptions_fts","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"audio_transcriptions_fts","depth":10,"bounds":{"left":0.14335938,"top":0.2,"width":0.06679688,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(v)","depth":11,"bounds":{"left":0.21015625,"top":0.19861111,"width":0.00546875,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"audio_transcriptions_...","depth":9,"bounds":{"left":0.13945313,"top":0.21666667,"width":0.1328125,"height":0.019444445},"help_text":"audio_transcriptions_fts_config","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"audio_transcriptions_...","depth":10,"bounds":{"left":0.14335938,"top":0.22013889,"width":0.06289063,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"audio_transcriptions_...","depth":9,"bounds":{"left":0.13945313,"top":0.2361111,"width":0.1328125,"height":0.021527778},"help_text":"audio_transcriptions_fts_data","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"audio_transcriptions_...","depth":10,"bounds":{"left":0.14375,"top":0.24027778,"width":0.06289063,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"audio_transcriptions_...","depth":9,"bounds":{"left":0.13945313,"top":0.2576389,"width":0.1328125,"height":0.019444445},"help_text":"audio_transcriptions_fts_idx","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"audio_transcriptions_...","depth":10,"bounds":{"left":0.14335938,"top":0.2611111,"width":0.06289063,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"elements","depth":9,"bounds":{"left":0.13945313,"top":0.27708334,"width":0.1328125,"height":0.02013889},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"elements","depth":10,"bounds":{"left":0.14335938,"top":0.28055555,"width":0.024609376,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"elements_fts (v)","depth":9,"bounds":{"left":0.13945313,"top":0.29722223,"width":0.1328125,"height":0.019444445},"help_text":"elements_fts","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"elements_fts","depth":10,"bounds":{"left":0.14335938,"top":0.30069444,"width":0.036328126,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(v)","depth":11,"bounds":{"left":0.1796875,"top":0.29930556,"width":0.005859375,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"elements_fts_config","depth":9,"bounds":{"left":0.13945313,"top":0.31666666,"width":0.1328125,"height":0.02013889},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"elements_fts_config","depth":10,"bounds":{"left":0.14335938,"top":0.3201389,"width":0.0546875,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"elements_fts_data","depth":9,"bounds":{"left":0.13945313,"top":0.33680555,"width":0.1328125,"height":0.019444445},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"elements_fts_data","depth":10,"bounds":{"left":0.14335938,"top":0.3402778,"width":0.049609374,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"elements_fts_idx","depth":9,"bounds":{"left":0.13945313,"top":0.35625,"width":0.1328125,"height":0.02013889},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"elements_fts_idx","depth":10,"bounds":{"left":0.14335938,"top":0.35972223,"width":0.045703124,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"frames","depth":9,"bounds":{"left":0.13945313,"top":0.37638888,"width":0.1328125,"height":0.019444445},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"frames","depth":10,"bounds":{"left":0.14335938,"top":0.37986112,"width":0.01875,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"frames_fts (v)","depth":9,"bounds":{"left":0.13945313,"top":0.39583334,"width":0.1328125,"height":0.02013889},"help_text":"frames_fts","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"frames_fts","depth":10,"bounds":{"left":0.14335938,"top":0.39930555,"width":0.03046875,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(v)","depth":11,"bounds":{"left":0.17382812,"top":0.39791667,"width":0.005859375,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"frames_fts_config","depth":9,"bounds":{"left":0.13945313,"top":0.41597223,"width":0.1328125,"height":0.019444445},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"frames_fts_config","depth":10,"bounds":{"left":0.14335938,"top":0.41944444,"width":0.048828125,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"frames_fts_data","depth":9,"bounds":{"left":0.13945313,"top":0.43541667,"width":0.1328125,"height":0.02013889},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"frames_fts_data","depth":10,"bounds":{"left":0.14335938,"top":0.43888888,"width":0.04375,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"frames_fts_idx","depth":9,"bounds":{"left":0.13945313,"top":0.45555556,"width":0.1328125,"height":0.019444445},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"frames_fts_idx","depth":10,"bounds":{"left":0.14335938,"top":0.45902777,"width":0.03984375,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"meetings","depth":9,"bounds":{"left":0.13945313,"top":0.475,"width":0.1328125,"height":0.02013889},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"meetings","depth":10,"bounds":{"left":0.14335938,"top":0.47847223,"width":0.024609376,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"memories","depth":9,"bounds":{"left":0.13945313,"top":0.49513888,"width":0.1328125,"height":0.019444445},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"memories","depth":10,"bounds":{"left":0.14335938,"top":0.49861112,"width":0.0265625,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"memories_fts (v)","depth":9,"bounds":{"left":0.13945313,"top":0.51458335,"width":0.1328125,"height":0.02013889},"help_text":"memories_fts","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"memories_fts","depth":10,"bounds":{"left":0.14335938,"top":0.51805556,"width":0.03828125,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(v)","depth":11,"bounds":{"left":0.18164062,"top":0.51666665,"width":0.005859375,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"memories_fts_config","depth":9,"bounds":{"left":0.13945313,"top":0.5347222,"width":0.1328125,"height":0.019444445},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"memories_fts_config","depth":10,"bounds":{"left":0.14335938,"top":0.5381944,"width":0.056640625,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"memories_fts_data","depth":9,"bounds":{"left":0.13945313,"top":0.5541667,"width":0.1328125,"height":0.02013889},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"memories_fts_data","depth":10,"bounds":{"left":0.14335938,"top":0.5576389,"width":0.0515625,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"memories_fts_idx","depth":9,"bounds":{"left":0.13945313,"top":0.57430553,"width":0.1328125,"height":0.019444445},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"memories_fts_idx","depth":10,"bounds":{"left":0.14335938,"top":0.5777778,"width":0.04765625,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"ocr_text","depth":9,"bounds":{"left":0.13945313,"top":0.59375,"width":0.1328125,"height":0.02013889},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ocr_text","depth":10,"bounds":{"left":0.14335938,"top":0.5972222,"width":0.021875,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"pipe_executions","depth":9,"bounds":{"left":0.13945313,"top":0.61388886,"width":0.1328125,"height":0.019444445},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"pipe_executions","depth":10,"bounds":{"left":0.14335938,"top":0.6173611,"width":0.043359376,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"pipe_scheduler_state","depth":9,"bounds":{"left":0.13945313,"top":0.6333333,"width":0.1328125,"height":0.02013889},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"pipe_scheduler_state","depth":10,"bounds":{"left":0.14335938,"top":0.63680553,"width":0.057421874,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"secrets","depth":9,"bounds":{"left":0.13945313,"top":0.65347224,"width":0.1328125,"height":0.019444445},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"secrets","depth":10,"bounds":{"left":0.14335938,"top":0.65694445,"width":0.01953125,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"speaker_embeddings","depth":9,"bounds":{"left":0.13945313,"top":0.67291665,"width":0.1328125,"height":0.02013889},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"speaker_embeddings","depth":10,"bounds":{"left":0.14335938,"top":0.67638886,"width":0.057421874,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"speakers","depth":9,"bounds":{"left":0.13945313,"top":0.69305557,"width":0.1328125,"height":0.019444445},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"speakers","depth":10,"bounds":{"left":0.14335938,"top":0.6965278,"width":0.02421875,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"sqlite_sequence","depth":9,"bounds":{"left":0.13945313,"top":0.7125,"width":0.1328125,"height":0.02013889},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"sqlite_sequence","depth":10,"bounds":{"left":0.14335938,"top":0.71597224,"width":0.04375,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"tags","depth":9,"bounds":{"left":0.13945313,"top":0.7326389,"width":0.1328125,"height":0.019444445},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"tags","depth":10,"bounds":{"left":0.14335938,"top":0.7361111,"width":0.01171875,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"ui_events","depth":9,"bounds":{"left":0.13945313,"top":0.75208336,"width":0.1328125,"height":0.02013889},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ui_events","depth":10,"bounds":{"left":0.14335938,"top":0.75555557,"width":0.025390625,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"ui_events_fts (v)","depth":9,"bounds":{"left":0.13945313,"top":0.7722222,"width":0.1328125,"height":0.019444445},"help_text":"ui_events_fts","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ui_events_fts","depth":10,"bounds":{"left":0.14335938,"top":0.77569443,"width":0.0375,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(v)","depth":11,"bounds":{"left":0.18085937,"top":0.7743056,"width":0.005859375,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"ui_events_fts_config","depth":9,"bounds":{"left":0.13945313,"top":0.7916667,"width":0.1328125,"height":0.02013889},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ui_events_fts_config","depth":10,"bounds":{"left":0.14335938,"top":0.7951389,"width":0.05546875,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"ui_events_fts_data","depth":9,"bounds":{"left":0.13945313,"top":0.81180555,"width":0.1328125,"height":0.019444445},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ui_events_fts_data","depth":10,"bounds":{"left":0.14335938,"top":0.81527776,"width":0.05078125,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"ui_events_fts_idx","depth":9,"bounds":{"left":0.13945313,"top":0.83125,"width":0.1328125,"height":0.02013889},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ui_events_fts_idx","depth":10,"bounds":{"left":0.14335938,"top":0.8347222,"width":0.046875,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"video_chunks","depth":9,"bounds":{"left":0.13945313,"top":0.8513889,"width":0.1328125,"height":0.019444445},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"video_chunks","depth":10,"bounds":{"left":0.14335938,"top":0.85486114,"width":0.03671875,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"vision_tags","depth":9,"bounds":{"left":0.13945313,"top":0.87083334,"width":0.1328125,"height":0.02013889},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"vision_tags","depth":10,"bounds":{"left":0.14335938,"top":0.87430555,"width":0.03046875,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Toggle helper tables","depth":8,"bounds":{"left":0.13945313,"top":0.9152778,"width":0.0546875,"height":0.013194445},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Toggle helper tables","depth":9,"bounds":{"left":0.13945313,"top":0.9152778,"width":0.0546875,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Structure","depth":9,"bounds":{"left":0.28398436,"top":0.097222224,"width":0.03828125,"height":0.027777778},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Structure","depth":10,"bounds":{"left":0.290625,"top":0.104166664,"width":0.025,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Content","depth":9,"bounds":{"left":0.32226562,"top":0.097222224,"width":0.034765624,"height":0.027777778},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Content","depth":10,"bounds":{"left":0.32890624,"top":0.104166664,"width":0.021484375,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Query","depth":9,"bounds":{"left":0.35703126,"top":0.097222224,"width":0.029296875,"height":0.027777778},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Query","depth":10,"bounds":{"left":0.36367187,"top":0.104166664,"width":0.016015625,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Export","depth":9,"bounds":{"left":0.38632813,"top":0.097222224,"width":0.030859375,"height":0.027777778},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Export","depth":10,"bounds":{"left":0.39296874,"top":0.104166664,"width":0.017578125,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"id","depth":10,"bounds":{"left":0.2859375,"top":0.14166667,"width":0.0046875,"height":0.011111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"id","depth":11,"bounds":{"left":0.2859375,"top":0.14166667,"width":0.0046875,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"block","depth":10,"bounds":{"left":0.4296875,"top":0.14166667,"width":0.013671875,"height":0.011111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"block","depth":11,"bounds":{"left":0.4296875,"top":0.14166667,"width":0.013671875,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":10,"bounds":{"left":0.2859375,"top":0.15763889,"width":0.00234375,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\u0003\u000e\u0006\u0003","depth":10,"bounds":{"left":0.42929688,"top":0.15763889,"width":0.001953125,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"10","depth":10,"bounds":{"left":0.2859375,"top":0.17291667,"width":0.00546875,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\u0001\u0003\u0003\u0003\u0001\u0001\u0001\u0002\u0001\u0001\u0003\u0001\u0001","depth":10,"bounds":{"left":0.42929688,"top":0.17291667,"width":0.001953125,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"137438953473","depth":10,"bounds":{"left":0.2859375,"top":0.18888889,"width":0.036328126,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"000000840230310106010202010961706172746d656e740102","depth":10,"bounds":{"left":0.4296875,"top":0.18888889,"width":0.15117188,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"...","depth":10,"bounds":{"left":0.5824219,"top":0.18888889,"width":0.004296875,"height":0.011111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"...","depth":11,"bounds":{"left":0.5824219,"top":0.18888889,"width":0.004296875,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"274877906945","depth":10,"bounds":{"left":0.2859375,"top":0.2048611,"width":0.037109375,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"F\u000202\u0002\u0006\u0001\u0002\u0002\u0001\u0005audio\u0002\u0006\u0001\u0001\u0003\u0001\u0005class\u0002\u0002\u0002\u0001\u0002is\u0002\u0002\u0003\u0001\u0006system\u0002","depth":10,"bounds":{"left":0.4296875,"top":0.2048611,"width":0.055078126,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"...","depth":10,"bounds":{"left":0.48632812,"top":0.2048611,"width":0.004296875,"height":0.011111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"...","depth":11,"bounds":{"left":0.48632812,"top":0.2048611,"width":0.004296875,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"412316860417","depth":10,"bounds":{"left":0.2859375,"top":0.22013889,"width":0.035546876,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"%\u000203\u0003\u0006\u0001\u0002\u0002\u0001\u0005audio\u0003\u0006\u0001\u0001\u0003\u0001\u0006system\u0003\u0006\u0001\u0001\u0002\u0004\b","depth":10,"bounds":{"left":0.4296875,"top":0.22013889,"width":0.041015625,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"id","depth":10,"bounds":{"left":0.2859375,"top":0.14166667,"width":0.0046875,"height":0.011111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"id","depth":11,"bounds":{"left":0.2859375,"top":0.14166667,"width":0.0046875,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":10,"bounds":{"left":0.2859375,"top":0.15763889,"width":0.00234375,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"10","depth":10,"bounds":{"left":0.2859375,"top":0.17291667,"width":0.00546875,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"137438953473","depth":10,"bounds":{"left":0.2859375,"top":0.18888889,"width":0.036328126,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"274877906945","depth":10,"bounds":{"left":0.2859375,"top":0.2048611,"width":0.037109375,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"412316860417","depth":10,"bounds":{"left":0.2859375,"top":0.22013889,"width":0.035546876,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"block","depth":10,"bounds":{"left":0.4296875,"top":0.14166667,"width":0.013671875,"height":0.011111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"block","depth":11,"bounds":{"left":0.4296875,"top":0.14166667,"width":0.013671875,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\u0003\u000e\u0006\u0003","depth":10,"bounds":{"left":0.42929688,"top":0.15763889,"width":0.001953125,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\u0001\u0003\u0003\u0003\u0001\u0001\u0001\u0002\u0001\u0001\u0003\u0001\u0001","depth":10,"bounds":{"left":0.42929688,"top":0.17291667,"width":0.001953125,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"000000840230310106010202010961706172746d656e740102","depth":10,"bounds":{"left":0.4296875,"top":0.18888889,"width":0.15117188,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"...","depth":10,"bounds":{"left":0.5824219,"top":0.18888889,"width":0.004296875,"height":0.011111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"...","depth":11,"bounds":{"left":0.5824219,"top":0.18888889,"width":0.004296875,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"F\u000202\u0002\u0006\u0001\u0002\u0002\u0001\u0005audio\u0002\u0006\u0001\u0001\u0003\u0001\u0005class\u0002\u0002\u0002\u0001\u0002is\u0002\u0002\u0003\u0001\u0006system\u0002","depth":10,"bounds":{"left":0.4296875,"top":0.2048611,"width":0.055078126,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"...","depth":10,"bounds":{"left":0.48632812,"top":0.2048611,"width":0.004296875,"height":0.011111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"...","depth":11,"bounds":{"left":0.48632812,"top":0.2048611,"width":0.004296875,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"%\u000203\u0003\u0006\u0001\u0002\u0002\u0001\u0005audio\u0003\u0006\u0001\u0001\u0003\u0001\u0006system\u0003\u0006\u0001\u0001\u0002\u0004\b","depth":10,"bounds":{"left":0.4296875,"top":0.22013889,"width":0.041015625,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"«","depth":10,"bounds":{"left":0.28398436,"top":0.24513888,"width":0.013671875,"height":0.025694445},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"«","depth":11,"bounds":{"left":0.2890625,"top":0.25138888,"width":0.003515625,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"‹","depth":10,"bounds":{"left":0.29882812,"top":0.24513888,"width":0.012890625,"height":0.025694445},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"‹","depth":11,"bounds":{"left":0.30390626,"top":0.25138888,"width":0.002734375,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Page 1 / 1","depth":11,"bounds":{"left":0.31796876,"top":0.25138888,"width":0.024609376,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"›","depth":10,"bounds":{"left":0.34882814,"top":0.24513888,"width":0.0125,"height":0.025694445},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"›","depth":11,"bounds":{"left":0.35390624,"top":0.25138888,"width":0.00234375,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"»","depth":10,"bounds":{"left":0.3625,"top":0.24513888,"width":0.0140625,"height":0.025694445},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"»","depth":11,"bounds":{"left":0.36757812,"top":0.25138888,"width":0.00390625,"height":0.013194445},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"SQLite database browser","depth":9,"bounds":{"left":0.28398436,"top":0.29652777,"width":0.061328124,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"v0.7.2","depth":9,"bounds":{"left":0.3453125,"top":0.29652777,"width":0.013671875,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", powered by","depth":9,"bounds":{"left":0.35898438,"top":0.29652777,"width":0.032421876,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Flask","depth":9,"bounds":{"left":0.39140624,"top":0.29652777,"width":0.012109375,"height":0.011111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Flask","depth":10,"bounds":{"left":0.39140624,"top":0.29652777,"width":0.012109375,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"and","depth":9,"bounds":{"left":0.40351564,"top":0.29652777,"width":0.012109375,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Peewee","depth":9,"bounds":{"left":0.415625,"top":0.29652777,"width":0.018359374,"height":0.011111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Peewee","depth":10,"bounds":{"left":0.415625,"top":0.29652777,"width":0.018359374,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":". © 2026","depth":9,"bounds":{"left":0.43398437,"top":0.29652777,"width":0.023046875,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Charles Leifer","depth":9,"bounds":{"left":0.45703125,"top":0.29652777,"width":0.0328125,"height":0.011111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Charles Leifer","depth":10,"bounds":{"left":0.45703125,"top":0.29652777,"width":0.0328125,"height":0.011111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8767/audio_transcriptions_fts_data/content/","depth":5,"bounds":{"left":0.13515624,"top":0.98888886,"width":0.1359375,"height":0.009722223},"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
8398109891038409104
|
-8591711059059979549
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Статус на поръчка в stantek.com - DXP4800PLUS-B5F8
Статус на поръчка в stantek.com - [EMAIL] - Gmail
Stantek
Stantek
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
| Senetic
| Senetic
Stantek
Stantek
| Senetic
| Senetic
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Close tab
Screenpipe Dashboard
Screenpipe Dashboard
Welcome to Steam
Welcome to Steam
(118) Orbán 2.0? Bulgaria's Big Election Explained - YouTube
Mute tab
(118) Orbán 2.0? Bulgaria's Big Election Explained - YouTube
New Tab
New Tab
Today's Deals
Today's Deals
New Tab
New Tab
Shameless • HBO Max
Shameless • HBO Max
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
install screenpipe - screenpipe docs
install screenpipe - screenpipe docs
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
sqlite-web 0.7.2
sqlite-web 0.7.2
db.sqlite
db.sqlite
audio_transcriptions_fts_data
5 rows, showing page 1
Query
Query
table name...
_sqlx_migrations
_sqlx_migrations
audio_chunks
audio_chunks
audio_tags
audio_tags
audio_transcriptions
audio_transcriptions
audio_transcriptions_fts (v)
audio_transcriptions_fts
(v)
audio_transcriptions_...
audio_transcriptions_...
audio_transcriptions_...
audio_transcriptions_...
audio_transcriptions_...
audio_transcriptions_...
elements
elements
elements_fts (v)
elements_fts
(v)
elements_fts_config
elements_fts_config
elements_fts_data
elements_fts_data
elements_fts_idx
elements_fts_idx
frames
frames
frames_fts (v)
frames_fts
(v)
frames_fts_config
frames_fts_config
frames_fts_data
frames_fts_data
frames_fts_idx
frames_fts_idx
meetings
meetings
memories
memories
memories_fts (v)
memories_fts
(v)
memories_fts_config
memories_fts_config
memories_fts_data
memories_fts_data
memories_fts_idx
memories_fts_idx
ocr_text
ocr_text
pipe_executions
pipe_executions
pipe_scheduler_state
pipe_scheduler_state
secrets
secrets
speaker_embeddings
speaker_embeddings
speakers
speakers
sqlite_sequence
sqlite_sequence
tags
tags
ui_events
ui_events
ui_events_fts (v)
ui_events_fts
(v)
ui_events_fts_config
ui_events_fts_config
ui_events_fts_data
ui_events_fts_data
ui_events_fts_idx
ui_events_fts_idx
video_chunks
video_chunks
vision_tags
vision_tags
Toggle helper tables
Toggle helper tables
Structure
Structure
Content
Content
Query
Query
Export
Export
id
id
block
block
1
10
137438953473
000000840230310106010202010961706172746d656e740102
...
...
274877906945
F02audioclassissystem
...
...
412316860417
%03audiosystem
id
id
1
10
137438953473
274877906945
412316860417
block
block
000000840230310106010202010961706172746d656e740102
...
...
F02audioclassissystem
...
...
%03audiosystem
«
«
‹
‹
Page 1 / 1
›
›
»
»
SQLite database browser
v0.7.2
, powered by
Flask
Flask
and
Peewee
Peewee
. © 2026
Charles Leifer
Charles Leifer
http://[IP_ADDRESS]:8767/audio_transcriptions_fts_data/content/...
|
51456
|
|
25548
|
547
|
65
|
2026-04-15T12:55:39.791472+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-15/1776 /Users/lukas/.screenpipe/data/data/2026-04-15/1776257739791_m2.jpg...
|
Boosteroid
|
Boosteroid
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
426913631358447/55toCastle Age--Villager Created-G 426913631358447/55toCastle Age--Villager Created-Game Paused (P)Click where you want to build the building.Villagerkovalfklukas (Britons)25/252 Rajyapala: 2241/22415 Magnus Olafsson: 2213/22134 Louis VI: 2161/21617 Maximilian of Habsburg: 2084/20848 Almish Yiltawar: 2083/20831 kovaliklukas: 2020/20203 Huascár: 2014/20146 László I: 1897/1897II...
|
NULL
|
8397635972598445015
|
NULL
|
visual_change
|
ocr
|
NULL
|
426913631358447/55toCastle Age--Villager Created-G 426913631358447/55toCastle Age--Villager Created-Game Paused (P)Click where you want to build the building.Villagerkovalfklukas (Britons)25/252 Rajyapala: 2241/22415 Magnus Olafsson: 2213/22134 Louis VI: 2161/21617 Maximilian of Habsburg: 2084/20848 Almish Yiltawar: 2083/20831 kovaliklukas: 2020/20203 Huascár: 2014/20146 László I: 1897/1897II...
|
NULL
|
|
58262
|
1252
|
12
|
2026-04-20T12:35:36.271092+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-20/1776 /Users/lukas/.screenpipe/data/data/2026-04-20/1776688536271_m1.jpg...
|
PhpStorm
|
PhpStorm
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
FirefoxFileEditViewHistoryBookmarksToolsWindowHelp FirefoxFileEditViewHistoryBookmarksToolsWindowHelpmeet.google.com/cxs-eips-npt?authuser=0100% K478• Mon 20 Apr 15:35:35Nikolay Nikolov (Presenting, annotating)PhpStormD• а 8.Mon 20 Apr 16:36GU SyncHubspotObjectsTest.testHandLSyncedAtProject ~Service phpimportContactBatch.php©ImportAccountBatch.phpCascade© JobOispatcher.php 23.03.26, 10:59, 640 g@ JobOispatcherhterface.php 23.03.26, 10.59© Purge SoftDeletedOpportunityJob.php 23.0( SqsVisibilltyControl,php 23.03.26, 10.59,2.37~ Uisteners› EO Activities› ED Authentication> Calendars©mportOpportunityBatch.php© SyncContact.php© SyncAccount.phpclass SyneProffleOpportunities inplesents ShouldQueuepublic function _construct(private readonty TinePeriodIteratorprivate readonly Jobbispatcherprivate readonty LoggerInterfaceSyncProfleOpportunities.phpHubSpot Webhook DiFix RandomExceptic3. craisync-lead (Synclead.php)4. cra:sync-epportunity (SyncOpportunity-php)Logic Change+0 .mBootstrapintegrationApp.php 23.03.26, %©ImportActvtyTypes. php 23.03.26, 90.59.© ImportMetadata,php 23.03.26, 10:59, 1.281© hitProfies. php 23.03.26, 10.59, 2.88 kB@ LayoutModfiedListener.php 23.03.26, [EMAIL] 23.03.26,10RematchActivityOnCrmObjectDetach.phg© RemoteCrmRecordDeletedListener.php© ResolveOwner.php 23.03.26, 10.59, 3.4 k8© SyncOpportunity.php 23.03.26, 10.59, 845@ SyncProfleLeads.php 23.03.26, 10.59, 28© SyncProfieOpportunities.php 20.04.26› E DeaiRisks› Eb ElasticSearchU SyncHubspotObjectsTest.testHandleWthN...,y y Test Resuitv 1 test passed 1 test total, 24 ms/opt/honebrew/Cellar/php/8.3.4/bin/phpTesting started at 11:54 …..PHPUnit 11.5.55 by Sebastian Bergnann aPHP 8.3.4Configuration: Wsecs/kest/5fminny/lapp/Tine: 00:00.298, Menory: 109.50 MBThere was 1 PHPUnit test nunner warningStimePeriodIterator,SjobDispatcher,Stogger,For each command, when bulk syne is requested (using -fron date, not single 10):18Sthis->onQueue( queve: Constants::QUEUE_CRH_SYNC):IF single ID provided (-contactid, -accountid, etc.)- Use existing one-by-one syne (anchanged)ELSE LF provider is Salesforce• ossatch retchsales Torccittiesdoo mat the spccaraco oaleThrows: ExceptionELSE- Use existing one-by-one sync (unchanped)public function handle(ProfileCreated Sevent): voidWhat Gets DispatchedSproffle • Sevent-sproffle;• Sprofite->getcraprStean• Sprofite-agetuserCSteanId• Stean->getIdO:Entity Type(EA) Third parameter should be provided to clarity l type safety is important in this context.Windsurf: Explaln & FixENTITY_TYPELACCOUNJob DispatchedFetchSalesforceEntitle5700FetchSalesforcetntitleScraConfiguration = Sprofile-nowuriepublie statie function gettreletegrationstus(Configuration ScraConfigurationDE stringENTITY_ TYPE_LEADwwllorthif Cin_arcay(Providers: :getckaintegretNITYsJobGet the REAL integration stug/fabel from the Configuration. In the case of IntegrationApp, thiswill be the actual CRM Integration - Zoho, Dynamics, etc. while the provider name integration-Configuration::PROVIGConfiguration:: PROVIDConfiguration::PROVIGConfiguration:: PROVIDConfiguration::PROVIGIntegrationAppProvideParameters: \Configuration ScreConfigurationSouCewaod confacs Chun monocis oheUrichisndedvtc.) remain unchanged (stll one-by-one)Sthis-›logger->info("Syncing opportunities for the neaty created profile". L"protate" ao scrato,cab.ot steaste,AXanoEDROL1):+ •CodeClaude Opus 4.50.0merto0coomb Sonyout orcenAneliya AngelovaNikolay Ivanov2 othersNikolay NikolovSymfonyLF UTF-83:35 PM | [Platform] RefinementLukas Kovalik33:47...
|
NULL
|
8397138965603073113
|
NULL
|
visual_change
|
ocr
|
NULL
|
FirefoxFileEditViewHistoryBookmarksToolsWindowHelp FirefoxFileEditViewHistoryBookmarksToolsWindowHelpmeet.google.com/cxs-eips-npt?authuser=0100% K478• Mon 20 Apr 15:35:35Nikolay Nikolov (Presenting, annotating)PhpStormD• а 8.Mon 20 Apr 16:36GU SyncHubspotObjectsTest.testHandLSyncedAtProject ~Service phpimportContactBatch.php©ImportAccountBatch.phpCascade© JobOispatcher.php 23.03.26, 10:59, 640 g@ JobOispatcherhterface.php 23.03.26, 10.59© Purge SoftDeletedOpportunityJob.php 23.0( SqsVisibilltyControl,php 23.03.26, 10.59,2.37~ Uisteners› EO Activities› ED Authentication> Calendars©mportOpportunityBatch.php© SyncContact.php© SyncAccount.phpclass SyneProffleOpportunities inplesents ShouldQueuepublic function _construct(private readonty TinePeriodIteratorprivate readonly Jobbispatcherprivate readonty LoggerInterfaceSyncProfleOpportunities.phpHubSpot Webhook DiFix RandomExceptic3. craisync-lead (Synclead.php)4. cra:sync-epportunity (SyncOpportunity-php)Logic Change+0 .mBootstrapintegrationApp.php 23.03.26, %©ImportActvtyTypes. php 23.03.26, 90.59.© ImportMetadata,php 23.03.26, 10:59, 1.281© hitProfies. php 23.03.26, 10.59, 2.88 kB@ LayoutModfiedListener.php 23.03.26, [EMAIL] 23.03.26,10RematchActivityOnCrmObjectDetach.phg© RemoteCrmRecordDeletedListener.php© ResolveOwner.php 23.03.26, 10.59, 3.4 k8© SyncOpportunity.php 23.03.26, 10.59, 845@ SyncProfleLeads.php 23.03.26, 10.59, 28© SyncProfieOpportunities.php 20.04.26› E DeaiRisks› Eb ElasticSearchU SyncHubspotObjectsTest.testHandleWthN...,y y Test Resuitv 1 test passed 1 test total, 24 ms/opt/honebrew/Cellar/php/8.3.4/bin/phpTesting started at 11:54 …..PHPUnit 11.5.55 by Sebastian Bergnann aPHP 8.3.4Configuration: Wsecs/kest/5fminny/lapp/Tine: 00:00.298, Menory: 109.50 MBThere was 1 PHPUnit test nunner warningStimePeriodIterator,SjobDispatcher,Stogger,For each command, when bulk syne is requested (using -fron date, not single 10):18Sthis->onQueue( queve: Constants::QUEUE_CRH_SYNC):IF single ID provided (-contactid, -accountid, etc.)- Use existing one-by-one syne (anchanged)ELSE LF provider is Salesforce• ossatch retchsales Torccittiesdoo mat the spccaraco oaleThrows: ExceptionELSE- Use existing one-by-one sync (unchanped)public function handle(ProfileCreated Sevent): voidWhat Gets DispatchedSproffle • Sevent-sproffle;• Sprofite->getcraprStean• Sprofite-agetuserCSteanId• Stean->getIdO:Entity Type(EA) Third parameter should be provided to clarity l type safety is important in this context.Windsurf: Explaln & FixENTITY_TYPELACCOUNJob DispatchedFetchSalesforceEntitle5700FetchSalesforcetntitleScraConfiguration = Sprofile-nowuriepublie statie function gettreletegrationstus(Configuration ScraConfigurationDE stringENTITY_ TYPE_LEADwwllorthif Cin_arcay(Providers: :getckaintegretNITYsJobGet the REAL integration stug/fabel from the Configuration. In the case of IntegrationApp, thiswill be the actual CRM Integration - Zoho, Dynamics, etc. while the provider name integration-Configuration::PROVIGConfiguration:: PROVIDConfiguration::PROVIGConfiguration:: PROVIDConfiguration::PROVIGIntegrationAppProvideParameters: \Configuration ScreConfigurationSouCewaod confacs Chun monocis oheUrichisndedvtc.) remain unchanged (stll one-by-one)Sthis-›logger->info("Syncing opportunities for the neaty created profile". L"protate" ao scrato,cab.ot steaste,AXanoEDROL1):+ •CodeClaude Opus 4.50.0merto0coomb Sonyout orcenAneliya AngelovaNikolay Ivanov2 othersNikolay NikolovSymfonyLF UTF-83:35 PM | [Platform] RefinementLukas Kovalik33:47...
|
NULL
|
|
24234
|
524
|
12
|
2026-04-15T12:07:19.791845+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-15/1776 /Users/lukas/.screenpipe/data/data/2026-04-15/1776254839791_m1.jpg...
|
NULL
|
NULL
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
+SlackFileEditViewGoHistoryWindowHelpEDHomeDMsActi +SlackFileEditViewGoHistoryWindowHelpEDHomeDMsActivityFilesLater..•More+→Search Jiminny IncJiminny ...+# general# infra-changes# jiminny-bg# platform-tickets# product launches# random# releases# sofia-office# support# thank-yous# the_people_of jimi...Direct messagesStoyan TanevVesGalya DimitrovaAneliya Angelova, ...Vasil VasilevSteliyan GeorgievAdelina Petrova, Ili...P. Adelina PetrovaD. Nikolay Nikolov2 Galya Dimitrova, Ni...ii: AppsJira CloudToastGoogle Cale...# platform-tickets8 146 0MessagesAdd canvasO FilesHubSpot -ised withMonday, April 6thPlatform ttaur anu asaigricu tu Stoyan Tomov.The Priority is P2 MediumWednesday, April 8th~Automation for Jira APP12:02 PMSRD-6775 Jiminny creates duplicate event inHubspot has been raised with Platform teamand assigned to Stoyan Tomov. The Priority isP2 MediumThursday, April 9th~Automation for Jira APP11:22 AMSRD-6779 Unable to log in to Sidekick hasbeen raised with Platform team and assigned to**. The Priority is P2 MediumAutomation for Jira APP2:32 PMSRD-6780 Jiminny Voice issue has been raisedwith Platform team and assigned to **. ThePriority is **Today ~NewAutomation for Jira APP 2:56 PMSRD-6789 [Team insights] Filter gets resetautomatically has been raised with Platformteam and assigned to **. The Priority is **Message #platform-tickets+AaActivity MonitorAll ProcessesProcess NameWindowServerFirefoxCP Isolated Web ContentFirefoxFirefoxCursorUlViewService (Not Responding)FirefoxCP Isolated Web ContentFirefox GPU HelperFirefox GPU HelperFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentSlack Helper (Renderer)FirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentNotion Calendar Helper (Renderer)Notion Helper (Renderer)claudeClaude Helper (Renderer)FirefoxCP Isolated Web ContentiTerm2FirefoxCP Isolated Web ContentCode Helper (Renderer)FirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentClaudeMEMORY PRESSURESupport Daily • nowSupport Dailynow - 15:00-15:15= Notes - Support Daily.961,0 MB938,0 MB840,2 MB772,7 MB740,9 MB549,3 MB544,3 MB542,6 MB494,5 MB464,0 MB423,4 MB422,5 MB389,8 MB384,9 MB380,6 MB372,0 MB344,3 MB331,7 MB326,1 MB324,5 MB303,0 MB261,9 MB236,0 MB214,4 MB209,3 MB194,5 MB192,9 MBPhysical Memory:Memory Used:Cached Files:Swap Used:25748532529272524162624262624221520131728271827246016,00 GB13,50 GB <2,44 GB2,79 GB100% L28Wed 15 Apr 15:07:19C Join Google Meet1247361 20519 765125244254128122200125123124127122119172313722171261 790125253127122730429748014146648424203080191467336713354804186335831352764365243016368984817326548114850910605193583348785613885340482987429560491App Memory:Wired Memory:Compressed:lukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukas4,47 GB2,36 GB6,12 GB...
|
NULL
|
8397051443319075608
|
NULL
|
visual_change
|
ocr
|
NULL
|
+SlackFileEditViewGoHistoryWindowHelpEDHomeDMsActi +SlackFileEditViewGoHistoryWindowHelpEDHomeDMsActivityFilesLater..•More+→Search Jiminny IncJiminny ...+# general# infra-changes# jiminny-bg# platform-tickets# product launches# random# releases# sofia-office# support# thank-yous# the_people_of jimi...Direct messagesStoyan TanevVesGalya DimitrovaAneliya Angelova, ...Vasil VasilevSteliyan GeorgievAdelina Petrova, Ili...P. Adelina PetrovaD. Nikolay Nikolov2 Galya Dimitrova, Ni...ii: AppsJira CloudToastGoogle Cale...# platform-tickets8 146 0MessagesAdd canvasO FilesHubSpot -ised withMonday, April 6thPlatform ttaur anu asaigricu tu Stoyan Tomov.The Priority is P2 MediumWednesday, April 8th~Automation for Jira APP12:02 PMSRD-6775 Jiminny creates duplicate event inHubspot has been raised with Platform teamand assigned to Stoyan Tomov. The Priority isP2 MediumThursday, April 9th~Automation for Jira APP11:22 AMSRD-6779 Unable to log in to Sidekick hasbeen raised with Platform team and assigned to**. The Priority is P2 MediumAutomation for Jira APP2:32 PMSRD-6780 Jiminny Voice issue has been raisedwith Platform team and assigned to **. ThePriority is **Today ~NewAutomation for Jira APP 2:56 PMSRD-6789 [Team insights] Filter gets resetautomatically has been raised with Platformteam and assigned to **. The Priority is **Message #platform-tickets+AaActivity MonitorAll ProcessesProcess NameWindowServerFirefoxCP Isolated Web ContentFirefoxFirefoxCursorUlViewService (Not Responding)FirefoxCP Isolated Web ContentFirefox GPU HelperFirefox GPU HelperFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentSlack Helper (Renderer)FirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentNotion Calendar Helper (Renderer)Notion Helper (Renderer)claudeClaude Helper (Renderer)FirefoxCP Isolated Web ContentiTerm2FirefoxCP Isolated Web ContentCode Helper (Renderer)FirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentClaudeMEMORY PRESSURESupport Daily • nowSupport Dailynow - 15:00-15:15= Notes - Support Daily.961,0 MB938,0 MB840,2 MB772,7 MB740,9 MB549,3 MB544,3 MB542,6 MB494,5 MB464,0 MB423,4 MB422,5 MB389,8 MB384,9 MB380,6 MB372,0 MB344,3 MB331,7 MB326,1 MB324,5 MB303,0 MB261,9 MB236,0 MB214,4 MB209,3 MB194,5 MB192,9 MBPhysical Memory:Memory Used:Cached Files:Swap Used:25748532529272524162624262624221520131728271827246016,00 GB13,50 GB <2,44 GB2,79 GB100% L28Wed 15 Apr 15:07:19C Join Google Meet1247361 20519 765125244254128122200125123124127122119172313722171261 790125253127122730429748014146648424203080191467336713354804186335831352764365243016368984817326548114850910605193583348785613885340482987429560491App Memory:Wired Memory:Compressed:lukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukas4,47 GB2,36 GB6,12 GB...
|
NULL
|
|
26411
|
560
|
29
|
2026-04-15T13:21:25.039409+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-15/1776 /Users/lukas/.screenpipe/data/data/2026-04-15/1776259285039_m1.jpg...
|
Boosteroid
|
Boosteroid
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
+SlackFileEditViewGoEDHomeActivity..•More+HistoryW +SlackFileEditViewGoEDHomeActivity..•More+HistoryWindowHelp→Search Jiminny IncJiminny ...sos+# general# infra-changes# jiminny-bg# platform-tickets# product _launches# random# releases# sofia-office# support# thank-yous# the_people_of jimi…..Direct messagesStoyan TanevVesGalya DimitrovaAneliya Angelova, ...Vasil VasilevSteliyan GeorgievAdelina Petrova, Ili...P. Adelina Petrova0. Nikolay Nikolov2 Galya Dimitrova, Ni...ii: AppsToastJira CloudGoogle Cale...# releases8 22Messagesnewdou+@ Files• Bookmarksv 2 new messagesGitHub APP3:28 PM7 new commits pushed tomaster by nikolay-yankovNew24b989ee - Enhance SECFIXdocumentation and policiesa3a0a742 - Update SECFIX Slack channelreference in documentation and workflowfiles071c999d - Merge branch 'master' intoimprove-secfix-bot-15-04-2026981e9a1a - Update SECFIX_PROMPT.mdto enhance clarity on upgrade safety andchangelog reviews6e938e53 - Enhance SECFIX workflow withSlack notification optionsShow more( jiminny/app Added by GitHubCircleCl APP3:53 PMDeployment Successful!Project: appWhen:04/15/202612:53:30Tag:View JobMessage #releases+AaSprint Review • 9 m leftRActivity MonitorAll ProcessesProcess NameBoosteroidWindowServerFirefoxFirefoxCP Isolated Web ContentFirefoxCursorUlViewService (Not Responding)FirefoxCP Isolated Web ContentFirefox GPU HelperFirefoxCP Isolated Web ContentFirefox GPU HelperVTDecoderXPCServiceSlack Helper (Renderer)FirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentClaude Helper (Renderer)Notion Calendar Helper (Renderer)Notion Helper (Renderer)claudeFirefoxCP Isolated Web ContentiTerm2FirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentMem...2,03 GB1,18 GB972,6 MB962,6 MB845,7 MB793,6 MB754,5 MB554,1 MB547,2 MB543,8 MB516,0 MB473,9 MB452,6 MB437,7 MB417,9 MB389,4 MB388,1 MB387,5 MB372,5 MB349,6 MB343,3 MB329,8 MB326,2 MB304,6 MB253,0 MB238,9 MB234,9 MB215,7 MBMEMORY PRESSUREPhysical Memory:Memory Used:Cached Files:Swap Used:100% <478Wed 15 Apr 16:21:24CPUMemoryDiskThreads39227426852829252611162427242524272315152013277262724EnergyPorts60719 7517271261 20420 023129242128250166199122126124125121126121221172313721241 832122126122PID93892407801442974146648424203080193671314673938994186335480358313527643016368984365248173605192654811485091035833487856138482987429516,00 GB14,15 GB <1,81 GB2,93 GBApp Memory:Wired Memory:Compressed:NetworkUserlukas_windowserverlukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukas3,76 GB2,87 GB6,97 GB...
|
NULL
|
8396904794688429329
|
NULL
|
click
|
ocr
|
NULL
|
+SlackFileEditViewGoEDHomeActivity..•More+HistoryW +SlackFileEditViewGoEDHomeActivity..•More+HistoryWindowHelp→Search Jiminny IncJiminny ...sos+# general# infra-changes# jiminny-bg# platform-tickets# product _launches# random# releases# sofia-office# support# thank-yous# the_people_of jimi…..Direct messagesStoyan TanevVesGalya DimitrovaAneliya Angelova, ...Vasil VasilevSteliyan GeorgievAdelina Petrova, Ili...P. Adelina Petrova0. Nikolay Nikolov2 Galya Dimitrova, Ni...ii: AppsToastJira CloudGoogle Cale...# releases8 22Messagesnewdou+@ Files• Bookmarksv 2 new messagesGitHub APP3:28 PM7 new commits pushed tomaster by nikolay-yankovNew24b989ee - Enhance SECFIXdocumentation and policiesa3a0a742 - Update SECFIX Slack channelreference in documentation and workflowfiles071c999d - Merge branch 'master' intoimprove-secfix-bot-15-04-2026981e9a1a - Update SECFIX_PROMPT.mdto enhance clarity on upgrade safety andchangelog reviews6e938e53 - Enhance SECFIX workflow withSlack notification optionsShow more( jiminny/app Added by GitHubCircleCl APP3:53 PMDeployment Successful!Project: appWhen:04/15/202612:53:30Tag:View JobMessage #releases+AaSprint Review • 9 m leftRActivity MonitorAll ProcessesProcess NameBoosteroidWindowServerFirefoxFirefoxCP Isolated Web ContentFirefoxCursorUlViewService (Not Responding)FirefoxCP Isolated Web ContentFirefox GPU HelperFirefoxCP Isolated Web ContentFirefox GPU HelperVTDecoderXPCServiceSlack Helper (Renderer)FirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentClaude Helper (Renderer)Notion Calendar Helper (Renderer)Notion Helper (Renderer)claudeFirefoxCP Isolated Web ContentiTerm2FirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentMem...2,03 GB1,18 GB972,6 MB962,6 MB845,7 MB793,6 MB754,5 MB554,1 MB547,2 MB543,8 MB516,0 MB473,9 MB452,6 MB437,7 MB417,9 MB389,4 MB388,1 MB387,5 MB372,5 MB349,6 MB343,3 MB329,8 MB326,2 MB304,6 MB253,0 MB238,9 MB234,9 MB215,7 MBMEMORY PRESSUREPhysical Memory:Memory Used:Cached Files:Swap Used:100% <478Wed 15 Apr 16:21:24CPUMemoryDiskThreads39227426852829252611162427242524272315152013277262724EnergyPorts60719 7517271261 20420 023129242128250166199122126124125121126121221172313721241 832122126122PID93892407801442974146648424203080193671314673938994186335480358313527643016368984365248173605192654811485091035833487856138482987429516,00 GB14,15 GB <1,81 GB2,93 GBApp Memory:Wired Memory:Compressed:NetworkUserlukas_windowserverlukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukas3,76 GB2,87 GB6,97 GB...
|
NULL
|
|
56609
|
1222
|
21
|
2026-04-20T11:16:58.490840+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-20/1776 /Users/lukas/.screenpipe/data/data/2026-04-20/1776683818490_m2.jpg...
|
Firefox
|
Firefox
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Firefox0000calVIewHistorybookmarksProtllesToolsWin Firefox0000calVIewHistorybookmarksProtllesToolsWindowHelpJy 19798 evaluation for ai activityJY-20553 | Improve crm-sync dela|SRD-6793) Les Mills activity typeJY-20698 handle failed field syne•JY-20692 change confirmation paBookmarksQ Search bookmarksv a bookmarks loolbalSprint Board# SRD QueueGithubJiminny DEVAsk Jiminny Reports by nikolay-yankov• ...© Circle CI& PROD US> = Bookmarks MenuOther Bookmarkso circleci •HomePioelines(JY-20543) AJ Reports > Trackina(UY-18909) (Part2) Automated rep/Ask Jiminny Reports by nikolay-ya- New TabProjectsO LoadingDeploysu Product Growth Plattorm Userpilgmnsients(fix(security): composer dependerPipelines - jiminny/appRunners) Feed - jiminny - Sentry8 Jiminny8Jiminny8 Jiminny(JY-20692] Issue with reconnect• Jy-20692 change confirmation pa# (UY-20692) Issue with reconnectin19 ISRD-67871 Issue with reconnect*) Jiminny MCP Connector - Product* (UY-20676] Notify the user if a Pan) Pinelines - liminnvlaorjiminny - CircleclJ New TabOrgPlanChunkSO lo100% C2Mon 20 Apr 14:16:58I Insights...
|
NULL
|
8396269476751847008
|
NULL
|
visual_change
|
ocr
|
NULL
|
Firefox0000calVIewHistorybookmarksProtllesToolsWin Firefox0000calVIewHistorybookmarksProtllesToolsWindowHelpJy 19798 evaluation for ai activityJY-20553 | Improve crm-sync dela|SRD-6793) Les Mills activity typeJY-20698 handle failed field syne•JY-20692 change confirmation paBookmarksQ Search bookmarksv a bookmarks loolbalSprint Board# SRD QueueGithubJiminny DEVAsk Jiminny Reports by nikolay-yankov• ...© Circle CI& PROD US> = Bookmarks MenuOther Bookmarkso circleci •HomePioelines(JY-20543) AJ Reports > Trackina(UY-18909) (Part2) Automated rep/Ask Jiminny Reports by nikolay-ya- New TabProjectsO LoadingDeploysu Product Growth Plattorm Userpilgmnsients(fix(security): composer dependerPipelines - jiminny/appRunners) Feed - jiminny - Sentry8 Jiminny8Jiminny8 Jiminny(JY-20692] Issue with reconnect• Jy-20692 change confirmation pa# (UY-20692) Issue with reconnectin19 ISRD-67871 Issue with reconnect*) Jiminny MCP Connector - Product* (UY-20676] Notify the user if a Pan) Pinelines - liminnvlaorjiminny - CircleclJ New TabOrgPlanChunkSO lo100% C2Mon 20 Apr 14:16:58I Insights...
|
56608
|
|
38736
|
790
|
34
|
2026-04-16T13:19:26.009790+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-16/1776 /Users/lukas/.screenpipe/data/data/2026-04-16/1776345566009_m1.jpg...
|
Boosteroid
|
Boosteroid
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
+SlackFileEditViewEDHomeDMsActivityFilesLater..•Mo +SlackFileEditViewEDHomeDMsActivityFilesLater..•More+Jiminny ...w Starred& jiminny-x-integrati...8platform-inner-teamChannels# ai-chapter# alerts# backend# confusion-clinic# curiosity_lab# engineering# frontend# general# infra-changes# jiminny-bg# platform-tickets# product_launches# random# releases# sofia-office# support# thank-yous# the_people_of jimi...• Direct messages0. Nikolay Nikolov. Stoyan TanevG. Vasil Vasilev. Galya DimitrovaNibolav lanovGoHistoryWindowHelp→CSearch Jiminny Inc*& platform-inner-...& 10MessagesP Channel OverviewMore v+create PDF verToday ~ uest_id: 822fa41b-afd3-43a9-a248-ooDue36f3131: (2013, 'Lostconnection to MySQL server during query([Errno 104] Connection reset by peer)"):correlation_id:ae2e38ff-ed04-401e-b77c-1e02e9d788c6 trace_id:f0194348-cece-4ca8-8413-21e32eef1d4f[2026-04-13 01:09:56] app.ERROR: Failed tocreate PDF version for request_id: 822fa41b-afd3-43a9-a248-86b0e36f3131: (2013, 'Lostconnection to MySQL server during query([Errno 104] Connection reset by peer)"):correlation_id:ae2e38ff-ed04-401e-b77c-1e02e9d788c6 trace_id:f0194348-cece-4ca8-8413-21e32eef1d4fecs/jiminny-prophet/fbd19ab3fe8d4775bb936af467904a55някакво connectivity ишу с MySql изглеждаSteliyan Georgiev 12:53 PMно това е само 1 случай2 replies Last reply today at 1:02 PMNewSteliyan Georgiev 4:09 PMМоже ли едно малко ревю на един ПР,който вече го прецизирах с @claude ревюhttps://github.com/jiminny/prophet/pull/479Message & platform-inner-team+Aa@ .••*3>0 lbl-zsh100% <478Thu 16 Apr 16:19:25• $84-zsh85window_name FROM ocr_text WHERE app_name LIKE "%Safari%' OR window_name LIKE "%Boostwindow_name FROM ocr_text WHERE app_name LIKE "%Safari%' OR window_name LIKE '%Boostwindow_name FROM ocr_text WHERE app_name LIKE "%Safari%' OR window_name LIKE "%Boostwindow_name FROM ocr_text WHERE app_name LIKE "%Safari%" OR window_name LIKE '%Boostit DATETIME);...
|
NULL
|
8395958626184536665
|
NULL
|
click
|
ocr
|
NULL
|
+SlackFileEditViewEDHomeDMsActivityFilesLater..•Mo +SlackFileEditViewEDHomeDMsActivityFilesLater..•More+Jiminny ...w Starred& jiminny-x-integrati...8platform-inner-teamChannels# ai-chapter# alerts# backend# confusion-clinic# curiosity_lab# engineering# frontend# general# infra-changes# jiminny-bg# platform-tickets# product_launches# random# releases# sofia-office# support# thank-yous# the_people_of jimi...• Direct messages0. Nikolay Nikolov. Stoyan TanevG. Vasil Vasilev. Galya DimitrovaNibolav lanovGoHistoryWindowHelp→CSearch Jiminny Inc*& platform-inner-...& 10MessagesP Channel OverviewMore v+create PDF verToday ~ uest_id: 822fa41b-afd3-43a9-a248-ooDue36f3131: (2013, 'Lostconnection to MySQL server during query([Errno 104] Connection reset by peer)"):correlation_id:ae2e38ff-ed04-401e-b77c-1e02e9d788c6 trace_id:f0194348-cece-4ca8-8413-21e32eef1d4f[2026-04-13 01:09:56] app.ERROR: Failed tocreate PDF version for request_id: 822fa41b-afd3-43a9-a248-86b0e36f3131: (2013, 'Lostconnection to MySQL server during query([Errno 104] Connection reset by peer)"):correlation_id:ae2e38ff-ed04-401e-b77c-1e02e9d788c6 trace_id:f0194348-cece-4ca8-8413-21e32eef1d4fecs/jiminny-prophet/fbd19ab3fe8d4775bb936af467904a55някакво connectivity ишу с MySql изглеждаSteliyan Georgiev 12:53 PMно това е само 1 случай2 replies Last reply today at 1:02 PMNewSteliyan Georgiev 4:09 PMМоже ли едно малко ревю на един ПР,който вече го прецизирах с @claude ревюhttps://github.com/jiminny/prophet/pull/479Message & platform-inner-team+Aa@ .••*3>0 lbl-zsh100% <478Thu 16 Apr 16:19:25• $84-zsh85window_name FROM ocr_text WHERE app_name LIKE "%Safari%' OR window_name LIKE "%Boostwindow_name FROM ocr_text WHERE app_name LIKE "%Safari%' OR window_name LIKE '%Boostwindow_name FROM ocr_text WHERE app_name LIKE "%Safari%' OR window_name LIKE "%Boostwindow_name FROM ocr_text WHERE app_name LIKE "%Safari%" OR window_name LIKE '%Boostit DATETIME);...
|
38734
|
|
61591
|
1328
|
28
|
2026-04-21T07:03:07.788864+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776754987788_m1.jpg...
|
QuickTime Player
|
Daily 2026-04-21.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
05:56
toggle elapsed time, timecode and framecount
14:32
toggle duration and remaining time
document actions
Daily 2026-04-21.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":true},{"role":"AXButton","text":"fast forward","depth":1,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"05:56","depth":1,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"14:32","depth":1,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"Daily 2026-04-21.mp4","depth":1,"role_description":"text"}]...
|
8395741475049040144
|
8232067534647208566
|
visual_change
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
05:56
toggle elapsed time, timecode and framecount
14:32
toggle duration and remaining time
document actions
Daily 2026-04-21.mp4
QuickTime PlayerFileEditViewWindowHelpApril 2026 Week 17EESTMon 20Tue 21Chloe Cross (Parental Leave - 256 days)Ivelina Hristova (Parental Leave - 184 days)Andrea Zlatanova (Parental Leave - 189 days)Wed 22Thu 2308:0009:0010:0311:0012:0013:0014:0015:0016:00Daily - Platform 09:45Daily - Platform 09:45Daily - Platform 09:45Daily - Platform 09:45UserpilotIntroduction11:30-12:30Preparation! SupportRefinement15:00-16:00Support Daily 15:00Screen SaCOLLECTIONSBatteryPersonal collection0. Lock ScrelTouch ID &My vaultSendSupport Daily 15:00.Support Daily 15:00- E1-46976891-4697689Week vSat 25g Daily - Platform • 2 m leftTodaySun 26Fri 24( Lauren Hudson (PTO...( Steliyan Georgiev (P…..1 Daily - Platform 09:451 Support Daily 15:00.FirefoxCP Isolated Web ContentMEMORY PRESSURE182,2 MBPhysical Memory:Memory Used:Cached Files:Swap Used:100% C8Tue 21 Apr 10:03:07CPUMemoryEnergyDiskNetworkThreadsPorts PID ,00 GB13,69 GB2,21 GB2,28 GBApp Memory:Wired Memory:Compressed:Userlukaslukaslukas_windowserverlukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukas4,01 GB2,80 GB6,33 GB...
|
NULL
|
|
75150
|
1871
|
13
|
2026-04-23T10:38:25.065298+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-23/1776 /Users/lukas/.screenpipe/data/data/2026-04-23/1776940705065_m1.jpg...
|
iTerm2
|
NULL
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelpDOCKER181DEV (-zsh)O $82XIDOCKER (docker-compose)docker_lamp_12026-04-23 10:20:09 Running ['artisan' conference:monitor: count]DONEdocker_1amp_11 '/usr/local/bin/php' 'artisan"conference:monitor:count> '/proc/1/fd/1'docker_lamp_12026-04-23 10:20:10 Running ['artisan' activity:purge-stale]3s DONEdocker_lamp_1t '/usr/local/bin/php' 'artisan'activity:purge-stale › */proc/1/fd/12>&1docker_lamp_1docker_lamp_1docker_lamp_1field:@"2026-04-23 10:20:14 Running ['artisan'"error":mailbox:text-relay:sync]"invalid_request""error_description": "Invalid impersonation \u0026quot; sub\u0026quot;docker_1amp_11}docker_1amp_1docker_lamp_1d/1'1s DONE1 '/usr/local/bin/php' 'artisan'mailbox: text-relay: sync > */proc/1/f2>81docker_1amp_12026-04-23 10:20:15 Running ['artisan' conference:pre-meeting-notification]1s DONEdocker_1amp_11 '/usr/local/bin/php' 'artisan' conference:pre-meeting-notification> */proc/1/fd/1' 2>&1docker_lamp_1 |2026-04-23 10:20:17 Running ['artisan' conference:monitor: start]1S DONEdocker_1amp_11 '/usr/local/bin/php' 'artisan'conference:monitor: start › */proc/1/fd/1' 2>&1docker_lamp_12026-04-23 10:20:18 Running ['artisan' conference:monitor:end]docker_lamp_11 l '/usr/local/bin/php' 'artisan' conference:monitor:end › '/proc/1/fddocker_lamp_12026-04-23 10:20:19 Running ['artisan' jiminny:fix-hubspot-tokens]docker_lamp_11 l '/usr/local/bin/php' 'artisan' jiminny:fix-hubspot-tokens › */proc/docker_lamp_1|2026-04-23 10:20:22 Running ['artisan' conference:pre-meeting-reminder] in background 1.57ms DONEdocker_lamp_1 | ('/usr/local/bin/php' 'artisan' conference:pre-meeting-reminder ›/proc/1/fd/1' 2>&1 ;'/usr/local/bin/php''artisan'schedule:finish"framework/schedule-805efb160ee8d9da02e60364ace7970eb2b35f31" "S?") > '/dev/null*docker_lamp_12026-04-23 10:20:22 Running ['artisan' hubspot: journal-poll --start]in backgrounddocker_lamp_1 |1 ('/usr/local/bin/php' 'artisan' hubspot: journal-poll --start › '/proc/1/fd/1' 2>&1 ; '/usr/local/bin/php' 'artisan'schedule:finish "framework/schedule-e26d77f915d2c55fe91ca4148a230e32eaa1865e" "$?") > '/dev/null' 2>&1 &docker_1amp_12026-04-23 10:20:22 Running ['artisan' jiminny:transcription:retry-failed] No failed transcriptions found.• Support Daily - in 1h 22 mAPROD (ssh)APP (-zsh)83screenpipe"PROD (ssh)Run 'do-release-upgrade' to upgrade to it.O ₴4100% <78Thu 23 Apr 13:38:24-zshT81*5PROD*** System restart required ***Last login: Wed Apr 22 12:09:092026 from 212.5.153.87lukas@jiminny-prod-bastion:~$X L3 EU (-zsh)Last login: Thu Apr 23 12:12:54 on consolePoetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parents@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ I|X T4STAGE (-zsh)Last login: Thu Apr 23 12:12:54 on consolePoetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny$T5QA (-zsh)Last login: Thu Apr 23 12:13:49on ttys001Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.tomlfile in /Users/lukas or its parentsX 16 FE (-zsh)Last login: Thu Apr 23 12:13:49on ttys003Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.tomlfile in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ I17 EXT (-zsh)Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.tomlfile in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~STAGEFRONTENDEXTENSION...
|
NULL
|
8395557507148770427
|
NULL
|
visual_change
|
ocr
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelpDOCKER181DEV (-zsh)O $82XIDOCKER (docker-compose)docker_lamp_12026-04-23 10:20:09 Running ['artisan' conference:monitor: count]DONEdocker_1amp_11 '/usr/local/bin/php' 'artisan"conference:monitor:count> '/proc/1/fd/1'docker_lamp_12026-04-23 10:20:10 Running ['artisan' activity:purge-stale]3s DONEdocker_lamp_1t '/usr/local/bin/php' 'artisan'activity:purge-stale › */proc/1/fd/12>&1docker_lamp_1docker_lamp_1docker_lamp_1field:@"2026-04-23 10:20:14 Running ['artisan'"error":mailbox:text-relay:sync]"invalid_request""error_description": "Invalid impersonation \u0026quot; sub\u0026quot;docker_1amp_11}docker_1amp_1docker_lamp_1d/1'1s DONE1 '/usr/local/bin/php' 'artisan'mailbox: text-relay: sync > */proc/1/f2>81docker_1amp_12026-04-23 10:20:15 Running ['artisan' conference:pre-meeting-notification]1s DONEdocker_1amp_11 '/usr/local/bin/php' 'artisan' conference:pre-meeting-notification> */proc/1/fd/1' 2>&1docker_lamp_1 |2026-04-23 10:20:17 Running ['artisan' conference:monitor: start]1S DONEdocker_1amp_11 '/usr/local/bin/php' 'artisan'conference:monitor: start › */proc/1/fd/1' 2>&1docker_lamp_12026-04-23 10:20:18 Running ['artisan' conference:monitor:end]docker_lamp_11 l '/usr/local/bin/php' 'artisan' conference:monitor:end › '/proc/1/fddocker_lamp_12026-04-23 10:20:19 Running ['artisan' jiminny:fix-hubspot-tokens]docker_lamp_11 l '/usr/local/bin/php' 'artisan' jiminny:fix-hubspot-tokens › */proc/docker_lamp_1|2026-04-23 10:20:22 Running ['artisan' conference:pre-meeting-reminder] in background 1.57ms DONEdocker_lamp_1 | ('/usr/local/bin/php' 'artisan' conference:pre-meeting-reminder ›/proc/1/fd/1' 2>&1 ;'/usr/local/bin/php''artisan'schedule:finish"framework/schedule-805efb160ee8d9da02e60364ace7970eb2b35f31" "S?") > '/dev/null*docker_lamp_12026-04-23 10:20:22 Running ['artisan' hubspot: journal-poll --start]in backgrounddocker_lamp_1 |1 ('/usr/local/bin/php' 'artisan' hubspot: journal-poll --start › '/proc/1/fd/1' 2>&1 ; '/usr/local/bin/php' 'artisan'schedule:finish "framework/schedule-e26d77f915d2c55fe91ca4148a230e32eaa1865e" "$?") > '/dev/null' 2>&1 &docker_1amp_12026-04-23 10:20:22 Running ['artisan' jiminny:transcription:retry-failed] No failed transcriptions found.• Support Daily - in 1h 22 mAPROD (ssh)APP (-zsh)83screenpipe"PROD (ssh)Run 'do-release-upgrade' to upgrade to it.O ₴4100% <78Thu 23 Apr 13:38:24-zshT81*5PROD*** System restart required ***Last login: Wed Apr 22 12:09:092026 from 212.5.153.87lukas@jiminny-prod-bastion:~$X L3 EU (-zsh)Last login: Thu Apr 23 12:12:54 on consolePoetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parents@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ I|X T4STAGE (-zsh)Last login: Thu Apr 23 12:12:54 on consolePoetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny$T5QA (-zsh)Last login: Thu Apr 23 12:13:49on ttys001Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.tomlfile in /Users/lukas or its parentsX 16 FE (-zsh)Last login: Thu Apr 23 12:13:49on ttys003Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.tomlfile in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ I17 EXT (-zsh)Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.tomlfile in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~STAGEFRONTENDEXTENSION...
|
75148
|
|
73254
|
1796
|
6
|
2026-04-23T07:08:20.142846+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-23/1776 /Users/lukas/.screenpipe/data/data/2026-04-23/1776928100142_m1.jpg...
|
Slack
|
Aneliya Angelova, Nikolay Yankov, Steliyan Georgie Aneliya Angelova, Nikolay Yankov, Steliyan Georgiev (DM) - Jiminny Inc - 4 new items - Slack...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Switch workspaces… (Jiminny Inc) Has new messages
Switch workspaces… (Jiminny Inc) Has new messages
Home
Home
DMs
DMs
Activity
Activity
Files
Files
Later
Later
More…
More
Unreads
Threads
Huddles
Drafts & sent
Directories
jiminny-x-integration-app
platform-inner-team
ai-chapter
alerts
backend
c-learning-people
confusion-clinic
curiosity_lab
deal-insights-dev
engineering
frontend
general
infra-changes
jiminny-bg
people-with-copilot-licences
people-with-zoom-phone-licences
platform-team
platform-tickets
product_launches
random
releases
sofia-office
support
thank-yous
the_people_of_jiminny
Stoyan Tomov
Aneliya Angelova
,
Nikolay Yankov
,
Steliyan Georgiev
Nikolay Yankov
Petko Kashinski
Aneliya Angelova
Nikolay Nikolov
Mario Georgiev
Todor Stamatov
Gabriela Dureva
Vasil Vasilev
Galya Dimitrova
Stefka Stoyanova
Stoyan Tanev
Nikolay Ivanov
Jira Cloud
Toast
Google Calendar
Unread mentions
Messages
Messages
Add canvas
Add canvas
Files
Files
Add and Edit Channel Tabs
Canvas
List
Folder
Jump to date
Aneliya Angelova
Yesterday at 3:10:12 PM
3:10 PM
а за дейли репортите - те и уикендите се изпращат нали?
Lukas Kovalik
Yesterday at 3:10:39 PM
3:10 PM
да всеки ден
Aneliya Angelova
Yesterday at 3:10:55 PM
3:10 PM
и това означава, че при сторито - да изпращаме емейл когато няма колове - хората ще получават емейли и уикендите, тъй като уикенда никога няма колове
Lukas Kovalik
Yesterday at 3:12:15 PM
3:12 PM
да, тогава ако е празно ще пратим email че няма нищо, и в понеделник за неделя
Aneliya Angelova
Yesterday at 3:12:40 PM
3:12 PM
да
Yesterday at 3:12:42 PM
3:12
оки
React with white_check_mark
React with eyes
React with raised_hands
Add reaction…
Reply in thread
Forward message…
Save for later
More actions
Lukas Kovalik
Yesterday at 3:13:19 PM
3:13 PM...
|
[{"role":"AXPopUpButton","text [{"role":"AXPopUpButton","text":"Switch workspaces… (Jiminny Inc) Has new messages","depth":14,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Home","depth":14,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"Home","depth":16,"role_description":"text"},{"role":"AXRadioButton","text":"DMs","depth":14,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DMs","depth":16,"role_description":"text"},{"role":"AXRadioButton","text":"Activity","depth":14,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Activity","depth":16,"role_description":"text"},{"role":"AXRadioButton","text":"Files","depth":14,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Files","depth":16,"role_description":"text"},{"role":"AXRadioButton","text":"Later","depth":14,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Later","depth":16,"role_description":"text"},{"role":"AXRadioButton","text":"More…","depth":14,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More","depth":16,"role_description":"text"},{"role":"AXStaticText","text":"Unreads","depth":21,"role_description":"text"},{"role":"AXStaticText","text":"Threads","depth":21,"role_description":"text"},{"role":"AXStaticText","text":"Huddles","depth":21,"role_description":"text"},{"role":"AXStaticText","text":"Drafts & sent","depth":21,"role_description":"text"},{"role":"AXStaticText","text":"Directories","depth":21,"role_description":"text"},{"role":"AXStaticText","text":"jiminny-x-integration-app","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"platform-inner-team","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"ai-chapter","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"alerts","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"backend","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"c-learning-people","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"confusion-clinic","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"curiosity_lab","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"deal-insights-dev","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"engineering","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"frontend","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"general","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"infra-changes","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"jiminny-bg","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"people-with-copilot-licences","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"people-with-zoom-phone-licences","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"platform-team","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"platform-tickets","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"product_launches","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"random","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"releases","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"sofia-office","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"support","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"thank-yous","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"the_people_of_jiminny","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Stoyan Tomov","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Aneliya Angelova","depth":23,"role_description":"text"},{"role":"AXStaticText","text":",","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Yankov","depth":23,"role_description":"text"},{"role":"AXStaticText","text":",","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Steliyan Georgiev","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Yankov","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Petko Kashinski","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Aneliya Angelova","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Nikolov","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Mario Georgiev","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Todor Stamatov","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Gabriela Dureva","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Vasil Vasilev","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Galya Dimitrova","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Stefka Stoyanova","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Stoyan Tanev","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Nikolay Ivanov","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Jira Cloud","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Toast","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Google Calendar","depth":23,"role_description":"text"},{"role":"AXButton","text":"Unread mentions","depth":17,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Messages","depth":17,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"Messages","depth":19,"role_description":"text"},{"role":"AXRadioButton","text":"Add canvas","depth":18,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Add canvas","depth":20,"role_description":"text"},{"role":"AXRadioButton","text":"Files","depth":17,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Files","depth":19,"role_description":"text"},{"role":"AXPopUpButton","text":"Add and Edit Channel Tabs","depth":17,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Canvas","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"List","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":17,"role_description":"text"},{"role":"AXPopUpButton","text":"Jump to date","depth":23,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Aneliya Angelova","depth":24,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":24,"role_description":"text"},{"role":"AXLink","text":"Yesterday at 3:10:12 PM","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"3:10 PM","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"а за дейли репортите - те и уикендите се изпращат нали?","depth":25,"role_description":"text"},{"role":"AXButton","text":"Lukas Kovalik","depth":24,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":24,"role_description":"text"},{"role":"AXLink","text":"Yesterday at 3:10:39 PM","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"3:10 PM","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"да всеки ден","depth":25,"role_description":"text"},{"role":"AXButton","text":"Aneliya Angelova","depth":24,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":24,"role_description":"text"},{"role":"AXLink","text":"Yesterday at 3:10:55 PM","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"3:10 PM","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"и това означава, че при сторито - да изпращаме емейл когато няма колове - хората ще получават емейли и уикендите, тъй като уикенда никога няма колове","depth":25,"role_description":"text"},{"role":"AXButton","text":"Lukas Kovalik","depth":24,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":24,"role_description":"text"},{"role":"AXLink","text":"Yesterday at 3:12:15 PM","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"3:12 PM","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"да, тогава ако е празно ще пратим email че няма нищо, и в понеделник за неделя","depth":25,"role_description":"text"},{"role":"AXButton","text":"Aneliya Angelova","depth":24,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":24,"role_description":"text"},{"role":"AXLink","text":"Yesterday at 3:12:40 PM","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"3:12 PM","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"да","depth":25,"role_description":"text"},{"role":"AXLink","text":"Yesterday at 3:12:42 PM","depth":25,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"3:12","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"оки","depth":25,"role_description":"text"},{"role":"AXCheckBox","text":"React with white_check_mark","depth":26,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"React with eyes","depth":26,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"React with raised_hands","depth":26,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Add reaction…","depth":26,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Reply in thread","depth":26,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Forward message…","depth":26,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Save for later","depth":26,"role_description":"toggle button","subrole":"AXToggleButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More actions","depth":26,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Lukas Kovalik","depth":24,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":24,"role_description":"text"},{"role":"AXLink","text":"Yesterday at 3:13:19 PM","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"3:13 PM","depth":25,"role_description":"text"}]...
|
8395338848066248285
|
-4784617917173163148
|
visual_change
|
hybrid
|
NULL
|
Switch workspaces… (Jiminny Inc) Has new messages
Switch workspaces… (Jiminny Inc) Has new messages
Home
Home
DMs
DMs
Activity
Activity
Files
Files
Later
Later
More…
More
Unreads
Threads
Huddles
Drafts & sent
Directories
jiminny-x-integration-app
platform-inner-team
ai-chapter
alerts
backend
c-learning-people
confusion-clinic
curiosity_lab
deal-insights-dev
engineering
frontend
general
infra-changes
jiminny-bg
people-with-copilot-licences
people-with-zoom-phone-licences
platform-team
platform-tickets
product_launches
random
releases
sofia-office
support
thank-yous
the_people_of_jiminny
Stoyan Tomov
Aneliya Angelova
,
Nikolay Yankov
,
Steliyan Georgiev
Nikolay Yankov
Petko Kashinski
Aneliya Angelova
Nikolay Nikolov
Mario Georgiev
Todor Stamatov
Gabriela Dureva
Vasil Vasilev
Galya Dimitrova
Stefka Stoyanova
Stoyan Tanev
Nikolay Ivanov
Jira Cloud
Toast
Google Calendar
Unread mentions
Messages
Messages
Add canvas
Add canvas
Files
Files
Add and Edit Channel Tabs
Canvas
List
Folder
Jump to date
Aneliya Angelova
Yesterday at 3:10:12 PM
3:10 PM
а за дейли репортите - те и уикендите се изпращат нали?
Lukas Kovalik
Yesterday at 3:10:39 PM
3:10 PM
да всеки ден
Aneliya Angelova
Yesterday at 3:10:55 PM
3:10 PM
и това означава, че при сторито - да изпращаме емейл когато няма колове - хората ще получават емейли и уикендите, тъй като уикенда никога няма колове
Lukas Kovalik
Yesterday at 3:12:15 PM
3:12 PM
да, тогава ако е празно ще пратим email че няма нищо, и в понеделник за неделя
Aneliya Angelova
Yesterday at 3:12:40 PM
3:12 PM
да
Yesterday at 3:12:42 PM
3:12
оки
React with white_check_mark
React with eyes
React with raised_hands
Add reaction…
Reply in thread
Forward message…
Save for later
More actions
Lukas Kovalik
Yesterday at 3:13:19 PM
3:13 PM
+FirefoxFileEditViewHistoryBookmarksProfilesToolsWindowHelpUserpilot Introducti... in 1h 22 ml100%meet.google.com/agt-teir-cwt?authuser=lukas.kovalik%40jiminny.comNikolay Yankov (Presenting)FieС J-9212yServiceO NrporP Pojralhttps:/fjminny.atlassian.net/jira/software/c/projects/JY/boards/37?seiectedissue=JY-20726D ProjectsE5 OutadogPlatform Team 8.Q Staran board800A00 Dare WSтcотоGrok via AzureDescriptionEdit descriptionSubtasksAdd subtaskSLinked work itemsAdd linked work itemActivityWork logCan I get more into...?Status update….Thanks.Pro tioc presa M to comcaer- 23a00.deD DerIn Dev# Improve StoryDetails|Assignee31 Stellyan GeorgierAssign to meKe DORCOTfl Stellyan GeorgievDevelopment• Open with VS Code!J Create branch4 commits1 pull request2 buidsThu 23 Acr 10:08L Al DockmarxslCLONE-[Team inaignts)Finer gets resetdomaticaly10 JT-2000 05 20 *0**Assue w in teconncctingPop out this videoComponentsPlatformLes Mals activity typos notpullog in"erytorAdd optionsLabeisStory point estimate8• Thu 23 Apr 10:08:22Stefka StoyanovaNifolay YankovA09Steliyan Georgiev4 others10:08 AM | Daily - PlatformLukas Kovalik22:41111Sộ3...
|
NULL
|
|
18321
|
391
|
16
|
2026-04-14T16:13:44.460492+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-14/1776 /Users/lukas/.screenpipe/data/data/2026-04-14/1776183224460_m2.jpg...
|
Boosteroid
|
Boosteroid
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
74242913312528/30Castle AgeBuild House (Cost: 25 m 74242913312528/30Castle AgeBuild House (Cost: 25 m87)Provides 5 population. Yourcurrent/supportable population is shown atthe top of the screen.Upgrades: line of sight (Town Center); HP,armor (University); more resistant to Monks(Monastery).750 \ 09 -18 8 60M 0(Hotkey: Q)6 Mindaugas: 1407/14075 Honorius: 1360/13603 Bird Jaguar: 1296/1296Anccu Hualloc: 1292/12924 Siddhraj Jaisingh: 1176/11768 Ashikaga Takauji: 1134/11341 kovaliklukas: 1120/11207 Basil the Macedonian: 1075/1075...
|
NULL
|
8395097449983893572
|
NULL
|
visual_change
|
ocr
|
NULL
|
74242913312528/30Castle AgeBuild House (Cost: 25 m 74242913312528/30Castle AgeBuild House (Cost: 25 m87)Provides 5 population. Yourcurrent/supportable population is shown atthe top of the screen.Upgrades: line of sight (Town Center); HP,armor (University); more resistant to Monks(Monastery).750 \ 09 -18 8 60M 0(Hotkey: Q)6 Mindaugas: 1407/14075 Honorius: 1360/13603 Bird Jaguar: 1296/1296Anccu Hualloc: 1292/12924 Siddhraj Jaisingh: 1176/11768 Ashikaga Takauji: 1134/11341 kovaliklukas: 1120/11207 Basil the Macedonian: 1075/1075...
|
18320
|
|
80008
|
2087
|
1
|
2026-04-24T17:30:26.313842+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-24/1777 /Users/lukas/.screenpipe/data/data/2026-04-24/1777051826313_m1.jpg...
|
Firefox
|
Screenpipe — Archive — Personal
|
True
|
http://192.168.0.242:8766
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
5 Signs You Have Successfully Hur DXP4800PLUS-B5F8
5 Signs You Have Successfully Hurt a Narcissist; - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
Close tab
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe [archive.db · 6175.9MB]
Screenpipe
[archive.db · 6175.9MB]
Activity
Search
Audio
Work Report
Timetable
AI Summary
Date
23
/
04
/
2026
Calendar
Monitor
Jump to
--
:
--
Go
APP TIMELINE · CLICK TO PLAY · DRAG SCROLLBAR TO PAN
−
1×
+
Follow
Follow
09:30
10:00
10:30
11:00
11:30
12:00
12:30
13:00
13:30
14:00
23 Apr 10:07 · Slack / Aneliya Angelova, Nikolay Yankov, Steliyan Georgiev (DM) - Jiminny Inc - 4 new items - Slack
⏮ 30s
◀ 10s
⏸ Pause
10s ▶
30s ⏭
0:30 / 2:20
iTerm2...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"5 Signs You Have Successfully Hurt a Narcissist; - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"(56) Inbox | kovaliklukas@proton.me | Proton Mail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Welcome back","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Welcome back","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Today's Deals","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Today's Deals","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"architecture - screenpipe docs","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"architecture - screenpipe docs","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Claude Code works better when you stop treating it like a machine - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Claude Code works better when you stop treating it like a machine - kovaliklukas@gmail.com - Gmail","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe — Archive","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Screenpipe — Archive","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"SQLite Web: archive.db","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SQLite Web: archive.db","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"SQLite Web: db.sqlite","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SQLite Web: db.sqlite","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Claude Platform","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Claude Platform","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Hey @louis030195 Ill check during my - screenpipe.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Hey @louis030195 Ill check during my - screenpipe.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Gong Pricing in 2026: Costs, Plans & Is It Worth It?","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Gong Pricing in 2026: Costs, Plans & Is It Worth It?","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - kovaliklukas@gmail.com - Gmail","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Gitea Official Website","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Gitea Official Website","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Le Chat Mistral (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Screenpipe [archive.db · 6175.9MB]","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Screenpipe","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"[archive.db · 6175.9MB]","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Activity","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Audio","depth":7,"help_text":"No audio data in this database","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Work Report","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Timetable","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Summary","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"23","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Monitor","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Jump to","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Go","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"APP TIMELINE · CLICK TO PLAY · DRAG SCROLLBAR TO PAN","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"−","depth":9,"help_text":"Zoom out","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"1×","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"+","depth":9,"help_text":"Zoom in","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Follow","depth":10,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Follow","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"09:30","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"10:00","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"10:30","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:00","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:30","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12:00","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12:30","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13:00","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13:30","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"14:00","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"23 Apr 10:07 · Slack / Aneliya Angelova, Nikolay Yankov, Steliyan Georgiev (DM) - Jiminny Inc - 4 new items - Slack","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"⏮ 30s","depth":9,"help_text":"Ctrl+←","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"◀ 10s","depth":9,"help_text":"←","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"⏸ Pause","depth":9,"help_text":"Space","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"10s ▶","depth":9,"help_text":"→","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"30s ⏭","depth":9,"help_text":"Ctrl+→","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"0:30 / 2:20","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":9,"bounds":{"left":0.17152777,"top":0.0,"width":0.024652777,"height":0.015},"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
8394360792675193035
|
5257166695774554767
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
5 Signs You Have Successfully Hur DXP4800PLUS-B5F8
5 Signs You Have Successfully Hurt a Narcissist; - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
Close tab
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe [archive.db · 6175.9MB]
Screenpipe
[archive.db · 6175.9MB]
Activity
Search
Audio
Work Report
Timetable
AI Summary
Date
23
/
04
/
2026
Calendar
Monitor
Jump to
--
:
--
Go
APP TIMELINE · CLICK TO PLAY · DRAG SCROLLBAR TO PAN
−
1×
+
Follow
Follow
09:30
10:00
10:30
11:00
11:30
12:00
12:30
13:00
13:30
14:00
23 Apr 10:07 · Slack / Aneliya Angelova, Nikolay Yankov, Steliyan Georgiev (DM) - Jiminny Inc - 4 new items - Slack
⏮ 30s
◀ 10s
⏸ Pause
10s ▶
30s ⏭
0:30 / 2:20
iTerm2...
|
NULL
|
|
80130
|
2096
|
17
|
2026-04-24T17:59:33.157425+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-24/1777 /Users/lukas/.screenpipe/data/data/2026-04-24/1777053573157_m2.jpg...
|
Firefox
|
Screenpipe — Archive — Personal
|
True
|
http://192.168.0.242:8766
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
5 Signs You Have Successfully Hur DXP4800PLUS-B5F8
5 Signs You Have Successfully Hurt a Narcissist; - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
Close tab
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe [archive.db · 6175.9MB]
Screenpipe
[archive.db · 6175.9MB]
Activity
Search
Audio
Work Report
Timetable
AI Summary
Date
23
/
04
/
2026
Calendar
Monitor
Jump to
--
:
--
Go
APP TIMELINE · CLICK TO PLAY · DRAG SCROLLBAR TO PAN
−
1×
+
Follow
Follow
09:30
10:00
10:30
11:00
11:30
12:00
12:30
13:00
13:30
14:00
23 Apr 10:07 · Slack / Aneliya Angelova, Nikolay Yankov, Steliyan Georgiev (DM) - Jiminny Inc - 4 new items - Slack
⏮ 30s
◀ 10s
⏸ Pause
10s ▶
30s ⏭
0:30 / 2:20
iTerm2...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"bounds":{"left":0.0018284575,"top":0.0518755,"width":0.03673537,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"5 Signs You Have Successfully Hurt a Narcissist; - kovaliklukas@gmail.com - Gmail","depth":4,"bounds":{"left":0.03856383,"top":0.0518755,"width":0.03656915,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"(56) Inbox | kovaliklukas@proton.me | Proton Mail","depth":4,"bounds":{"left":0.07513298,"top":0.0518755,"width":0.03673537,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Welcome back","depth":4,"bounds":{"left":0.0,"top":0.09497207,"width":0.113696806,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Welcome back","depth":5,"bounds":{"left":0.013297873,"top":0.10614525,"width":0.025265958,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"bounds":{"left":0.0,"top":0.12769353,"width":0.113696806,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"bounds":{"left":0.013297873,"top":0.13886672,"width":0.26263297,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Today's Deals","depth":4,"bounds":{"left":0.0,"top":0.16041501,"width":0.113696806,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Today's Deals","depth":5,"bounds":{"left":0.013297873,"top":0.17158818,"width":0.024102394,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"architecture - screenpipe docs","depth":4,"bounds":{"left":0.0,"top":0.19313647,"width":0.113696806,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"architecture - screenpipe docs","depth":5,"bounds":{"left":0.013297873,"top":0.20430966,"width":0.053523935,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Claude Code works better when you stop treating it like a machine - kovaliklukas@gmail.com - Gmail","depth":4,"bounds":{"left":0.0,"top":0.22585794,"width":0.113696806,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Claude Code works better when you stop treating it like a machine - kovaliklukas@gmail.com - Gmail","depth":5,"bounds":{"left":0.013297873,"top":0.23703113,"width":0.1747008,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe — Archive","depth":4,"bounds":{"left":0.0,"top":0.2585794,"width":0.113696806,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Screenpipe — Archive","depth":5,"bounds":{"left":0.013297873,"top":0.2697526,"width":0.037898935,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.10139628,"top":0.26576218,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"SQLite Web: archive.db","depth":4,"bounds":{"left":0.0,"top":0.29130086,"width":0.113696806,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SQLite Web: archive.db","depth":5,"bounds":{"left":0.013297873,"top":0.30247405,"width":0.040724736,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"SQLite Web: db.sqlite","depth":4,"bounds":{"left":0.0,"top":0.32402235,"width":0.113696806,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SQLite Web: db.sqlite","depth":5,"bounds":{"left":0.013297873,"top":0.33519554,"width":0.03756649,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Claude Platform","depth":4,"bounds":{"left":0.0,"top":0.3567438,"width":0.113696806,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Claude Platform","depth":5,"bounds":{"left":0.013297873,"top":0.367917,"width":0.027925532,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Hey @louis030195 Ill check during my - screenpipe.com","depth":4,"bounds":{"left":0.0,"top":0.38946527,"width":0.113696806,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Hey @louis030195 Ill check during my - screenpipe.com","depth":5,"bounds":{"left":0.013297873,"top":0.40063846,"width":0.09790558,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub","depth":4,"bounds":{"left":0.0,"top":0.42218676,"width":0.113696806,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub","depth":5,"bounds":{"left":0.013297873,"top":0.43335995,"width":0.22556517,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Gong Pricing in 2026: Costs, Plans & Is It Worth It?","depth":4,"bounds":{"left":0.0,"top":0.45490822,"width":0.113696806,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Gong Pricing in 2026: Costs, Plans & Is It Worth It?","depth":5,"bounds":{"left":0.013297873,"top":0.4660814,"width":0.08826463,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - kovaliklukas@gmail.com - Gmail","depth":4,"bounds":{"left":0.0,"top":0.48762968,"width":0.113696806,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - kovaliklukas@gmail.com - Gmail","depth":5,"bounds":{"left":0.013297873,"top":0.49880287,"width":0.28075132,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Gitea Official Website","depth":4,"bounds":{"left":0.0,"top":0.5203512,"width":0.113696806,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Gitea Official Website","depth":5,"bounds":{"left":0.013297873,"top":0.53152436,"width":0.03756649,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea","depth":4,"bounds":{"left":0.0,"top":0.55307263,"width":0.113696806,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea","depth":5,"bounds":{"left":0.013297873,"top":0.5642458,"width":0.10555186,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"bounds":{"left":0.0028257978,"top":0.58739024,"width":0.108211435,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"bounds":{"left":0.0028257978,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Le Chat Mistral (⌃X)","depth":6,"bounds":{"left":0.013796543,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"bounds":{"left":0.024933511,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"bounds":{"left":0.036070477,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"bounds":{"left":0.04720745,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Screenpipe [archive.db · 6175.9MB]","depth":7,"bounds":{"left":0.12034574,"top":0.061452515,"width":0.06499335,"height":0.017956903},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Screenpipe","depth":8,"bounds":{"left":0.12034574,"top":0.06304868,"width":0.027759308,"height":0.014764565},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"[archive.db · 6175.9MB]","depth":9,"bounds":{"left":0.14943483,"top":0.06703911,"width":0.035904255,"height":0.009976057},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Activity","depth":7,"bounds":{"left":0.18999335,"top":0.059856344,"width":0.024767287,"height":0.0207502},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":7,"bounds":{"left":0.21542554,"top":0.059856344,"width":0.023603724,"height":0.0207502},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Audio","depth":7,"bounds":{"left":0.23969415,"top":0.059856344,"width":0.021110373,"height":0.0207502},"help_text":"No audio data in this database","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Work Report","depth":7,"bounds":{"left":0.26146942,"top":0.059856344,"width":0.034906916,"height":0.0207502},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Timetable","depth":7,"bounds":{"left":0.29704124,"top":0.059856344,"width":0.029753989,"height":0.0207502},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Summary","depth":7,"bounds":{"left":0.3274601,"top":0.059856344,"width":0.034242023,"height":0.0207502},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":8,"bounds":{"left":0.93849736,"top":0.0650439,"width":0.008144947,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"23","depth":9,"bounds":{"left":0.9552859,"top":0.06464485,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"bounds":{"left":0.96110374,"top":0.06464485,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04","depth":9,"bounds":{"left":0.9644282,"top":0.06464485,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"bounds":{"left":0.970246,"top":0.06464485,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":9,"bounds":{"left":0.9737367,"top":0.06464485,"width":0.009474734,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":8,"bounds":{"left":0.98454124,"top":0.0650439,"width":0.0051529254,"height":0.010774142},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Monitor","depth":9,"bounds":{"left":0.34740692,"top":0.10853951,"width":0.013464096,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Jump to","depth":9,"bounds":{"left":0.7059508,"top":0.10853951,"width":0.01412899,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"bounds":{"left":0.72606385,"top":0.10814046,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"bounds":{"left":0.7318817,"top":0.10814046,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"bounds":{"left":0.7352061,"top":0.10814046,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Go","depth":8,"bounds":{"left":0.75398934,"top":0.10454908,"width":0.012300532,"height":0.018754989},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"APP TIMELINE · CLICK TO PLAY · DRAG SCROLLBAR TO PAN","depth":10,"bounds":{"left":0.35239363,"top":0.14964086,"width":0.10571808,"height":0.009976057},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"−","depth":9,"bounds":{"left":0.7087766,"top":0.1452514,"width":0.009807181,"height":0.018754989},"help_text":"Zoom out","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"1×","depth":10,"bounds":{"left":0.72273934,"top":0.14924182,"width":0.004155585,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"+","depth":9,"bounds":{"left":0.7312167,"top":0.1452514,"width":0.009640957,"height":0.018754989},"help_text":"Zoom in","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Follow","depth":10,"bounds":{"left":0.74418217,"top":0.14924182,"width":0.004654255,"height":0.011173184},"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Follow","depth":10,"bounds":{"left":0.75016624,"top":0.14924182,"width":0.011136968,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"09:30","depth":13,"bounds":{"left":0.37300533,"top":0.21947326,"width":0.00880984,"height":0.008778931},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"10:00","depth":13,"bounds":{"left":0.41572472,"top":0.21947326,"width":0.00831117,"height":0.008778931},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"10:30","depth":13,"bounds":{"left":0.4582779,"top":0.21947326,"width":0.008144947,"height":0.008778931},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:00","depth":13,"bounds":{"left":0.50099736,"top":0.21947326,"width":0.0078125,"height":0.008778931},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:30","depth":13,"bounds":{"left":0.54355055,"top":0.21947326,"width":0.0076462766,"height":0.008778931},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12:00","depth":13,"bounds":{"left":0.58577126,"top":0.21947326,"width":0.008144947,"height":0.008778931},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12:30","depth":13,"bounds":{"left":0.62832445,"top":0.21947326,"width":0.008144947,"height":0.008778931},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13:00","depth":13,"bounds":{"left":0.67071146,"top":0.21947326,"width":0.00831117,"height":0.008778931},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13:30","depth":13,"bounds":{"left":0.71326464,"top":0.21947326,"width":0.008144947,"height":0.008778931},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"14:00","depth":13,"bounds":{"left":0.75581783,"top":0.21947326,"width":0.008144947,"height":0.008778931},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"23 Apr 10:07 · Slack / Aneliya Angelova, Nikolay Yankov, Steliyan Georgiev (DM) - Jiminny Inc - 4 new items - Slack","depth":10,"bounds":{"left":0.35106382,"top":0.2661612,"width":0.21542554,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"⏮ 30s","depth":9,"bounds":{"left":0.35172874,"top":0.8882682,"width":0.023936171,"height":0.02434158},"help_text":"Ctrl+←","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"◀ 10s","depth":9,"bounds":{"left":0.37832448,"top":0.8886672,"width":0.02244016,"height":0.023942538},"help_text":"←","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"⏸ Pause","depth":9,"bounds":{"left":0.4034242,"top":0.8882682,"width":0.027925532,"height":0.02434158},"help_text":"Space","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"10s ▶","depth":9,"bounds":{"left":0.4340093,"top":0.8886672,"width":0.022273935,"height":0.023942538},"help_text":"→","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"30s ⏭","depth":9,"bounds":{"left":0.45894283,"top":0.8882682,"width":0.024102394,"height":0.02434158},"help_text":"Ctrl+→","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"0:30 / 2:20","depth":10,"bounds":{"left":0.7428524,"top":0.8950519,"width":0.019115692,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":9,"bounds":{"left":0.35239363,"top":0.93056667,"width":0.011801862,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
8394360792675193035
|
5257166695774554767
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
5 Signs You Have Successfully Hur DXP4800PLUS-B5F8
5 Signs You Have Successfully Hurt a Narcissist; - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
Close tab
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe [archive.db · 6175.9MB]
Screenpipe
[archive.db · 6175.9MB]
Activity
Search
Audio
Work Report
Timetable
AI Summary
Date
23
/
04
/
2026
Calendar
Monitor
Jump to
--
:
--
Go
APP TIMELINE · CLICK TO PLAY · DRAG SCROLLBAR TO PAN
−
1×
+
Follow
Follow
09:30
10:00
10:30
11:00
11:30
12:00
12:30
13:00
13:30
14:00
23 Apr 10:07 · Slack / Aneliya Angelova, Nikolay Yankov, Steliyan Georgiev (DM) - Jiminny Inc - 4 new items - Slack
⏮ 30s
◀ 10s
⏸ Pause
10s ▶
30s ⏭
0:30 / 2:20
iTerm2...
|
80128
|
|
9141
|
NULL
|
0
|
2026-04-14T07:20:23.003250+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-14/1776 /Users/lukas/.screenpipe/data/data/2026-04-14/1776151223003_m1.jpg...
|
Firefox
|
JY-20574: panorama pdf add header section by steli JY-20574: panorama pdf add header section by steliyan-g · Pull Request #467 · jiminny/prophet — Work...
|
True
|
github.com/jiminny/prophet/pull/467/changes#diff-2 github.com/jiminny/prophet/pull/467/changes#diff-2e5ad92c43aa96cc3a9cef6c6aec998b216f1379c43b1f651013d25e55989312...
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
JY-20543 add AJ reports User pilot tracking by Lak JY-20543 add AJ reports User pilot tracking by LakyLak · Pull Request #11932 · jiminny/app
Platform Sprint 1 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 1 Q2 - Platform Team - Scrum Board - Jira
SRD-6779 | JY-20632 | Unable to log in to Sidekick with SSO by yalokin-jiminny · Pull Request #11935 · jiminny/app
SRD-6779 | JY-20632 | Unable to log in to Sidekick with SSO by yalokin-jiminny · Pull Request #11935 · jiminny/app
Jy 19798 evaluation for ai activity types by nikolaybiaivanov · Pull Request #468 · jiminny/prophet
Jy 19798 evaluation for ai activity types by nikolaybiaivanov · Pull Request #468 · jiminny/prophet
Jiminny
Jiminny
Ask Jiminny test report - 8 Apr 2026 - Ask Jiminny test report - 13 Apr 2026.pdf
Ask Jiminny test report - 8 Apr 2026 - Ask Jiminny test report - 13 Apr 2026.pdf
Service-Desk - Queues - Platform team - Service space - Jira
Service-Desk - Queues - Platform team - Service space - Jira
JY-20543 add AJ reports User pilot tracking by LakyLak · Pull Request #11932 · jiminny/app
JY-20543 add AJ reports User pilot tracking by LakyLak · Pull Request #11932 · jiminny/app
JY-20574: panorama pdf add header section by steliyan-g · Pull Request #467 · jiminny/prophet
JY-20574: panorama pdf add header section by steliyan-g · Pull Request #467 · jiminny/prophet
Close tab
New Tab
Customize sidebar
Close Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
AI Chat settings
Close
WORK, Google Account: [EMAIL]
Main menu
New chat
Gemini
PRO
PRO
Conversation with Gemini
Conversation with Gemini
Hi Lukas
Where should we start?
Where should we start?
🖼️ Create image, button, tap to use tool
🖼️ Create image
🎸 Create music, button, tap to use tool
🎸 Create music
Help me learn, button, tap to use tool
Help me learn
Write anything, button, tap to use tool
Write anything
Boost my day, button, tap to use tool
Boost my day
review src/component/ask_anything/streamers/filtered_calls_ask_anything_streamer.py
review src/component/ask_anything/streamers/filtered_calls_ask_anything_streamer.py
Open upload file menu
Tools
Open mode picker
Pro
Send message
Summarize page
Summarize page
Skip to content
Skip to content
Open menu
Homepage (g then d)
jiminny
jiminny
prophet
prophet
Search or jump to…
Type
/
to search
Chat with Copilot
Open Copilot…
Create new...
Issues
Pull requests
Repositories
You have unread notifications(g then n)
Open user navigation menu
Repository navigation
Repository navigation
Code
Code
Issues
Issues
Pull requests (6)
Pull requests
(
6
)
Agents
Agents
Actions
Actions
Projects
Projects
Wiki
Wiki
Security and quality (20)
Security and quality
(
20
)
Insights
Insights
Settings
Settings
Important update
Important update
On April 24 we'll start using GitHub Copilot interaction data for AI model training unless you opt out.
Review this update
Review this update
and manage your preferences in your
GitHub account settings
GitHub account settings
.
Dismiss banner
JY-20574: panorama pdf add header section #467 Edit title
JY-20574: panorama pdf add header section
#
467
Edit title
Preview
Preview
Awaiting approval
Awaiting approval
Code
Code
Open
steliyan-g
steliyan-g
wants to merge 14 commits into
master
master
from
JY-20674-panorama-pdf-add-header-section
JY-20674-panorama-pdf-add-header-section
Copy head branch name to clipboard
Lines changed: 128 additions & 6 deletions
Conversation (1)
Conversation
(
1
)
Commits (14)
Commits
(
14
)
Checks (3)
Checks
(
3
)
Files changed (5)
Files changed
(
5
)
Pull Request Toolbar
Pull Request Toolbar
Collapse file tree
Open
JY-20574: panorama pdf add header section
JY-20574: panorama pdf add header section
#
467
All commits
All commits
steliyan-g
steliyan-g
wants to merge 14 commits into
master
master
from
JY-20674-panorama-pdf-add-header-section
JY-20674-panorama-pdf-add-header-section
Copy head branch name to clipboard
4
/
5
viewed
Awaiting approval
Awaiting approval
Submit review
Submit
review
Open diff view settings
Open overview panel
Open comments panel
(
0
)
Filter files…
Filter options
File tree
File tree
src
component/ask_anything
streamers
filtered_calls_ask_anything_streamer.py
filtered_calls_ask_anything_streamer.py
async_aa_report_processor.py
async_aa_report_processor.py
main.py
main.py
tests/component/ask_anything
streamers
test_filtered_calls_get_report_content.py
test_filtered_calls_get_report_content.py
test_async_aa_report_processor.py
test_async_aa_report_processor.py
Collapse file
src/component/ask_anything/streamers/filtered_calls_ask_anything_streamer.py
src/component/ask_anything/streamers/filtered_calls_ask_anything_streamer.py
src/component/ask_anything/streamers/filtered_calls_ask_anything_streamer.py
Copy file name to clipboard
Expand all lines: src/component/ask_anything/streamers/filtered_calls_ask_anything_streamer.py
Lines changed: 41 additions & 3 deletions
Not Viewed
Viewed
Comment on this file
More options
Original file line number
Original file line
Diff line number
Diff line change
@@ -103,6 +103,10 @@ def __init__(
103
# consumed in _process_single_batch (after the raw response is logged).
103
# consumed in _process_single_batch (after the raw response is logged).
104
self
....
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"JY-20543 add AJ reports User pilot tracking by LakyLak · Pull Request #11932 · jiminny/app","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Platform Sprint 1 Q2 - Platform Team - Scrum Board - Jira","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform Sprint 1 Q2 - Platform Team - Scrum Board - Jira","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"SRD-6779 | JY-20632 | Unable to log in to Sidekick with SSO by yalokin-jiminny · Pull Request #11935 · jiminny/app","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SRD-6779 | JY-20632 | Unable to log in to Sidekick with SSO by yalokin-jiminny · Pull Request #11935 · jiminny/app","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jy 19798 evaluation for ai activity types by nikolaybiaivanov · Pull Request #468 · jiminny/prophet","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jy 19798 evaluation for ai activity types by nikolaybiaivanov · Pull Request #468 · jiminny/prophet","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Ask Jiminny test report - 8 Apr 2026 - Ask Jiminny test report - 13 Apr 2026.pdf","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Jiminny test report - 8 Apr 2026 - Ask Jiminny test report - 13 Apr 2026.pdf","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Service-Desk - Queues - Platform team - Service space - Jira","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Service-Desk - Queues - Platform team - Service space - Jira","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20543 add AJ reports User pilot tracking by LakyLak · Pull Request #11932 · jiminny/app","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20543 add AJ reports User pilot tracking by LakyLak · Pull Request #11932 · jiminny/app","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20574: panorama pdf add header section by steliyan-g · Pull Request #467 · jiminny/prophet","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"JY-20574: panorama pdf add header section by steliyan-g · Pull Request #467 · jiminny/prophet","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Close Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Tabs from other devices","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Chat settings","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"WORK, Google Account: lukas.kovalik@jiminny.com","depth":12,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Main menu","depth":12,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"New chat","depth":12,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":false,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Gemini","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"PRO","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":false,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"PRO","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Conversation with Gemini","depth":15,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Conversation with Gemini","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Hi Lukas","depth":23,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Where should we start?","depth":22,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Where should we start?","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"🖼️ Create image, button, tap to use tool","depth":22,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"🖼️ Create image","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"🎸 Create music, button, tap to use tool","depth":22,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"🎸 Create music","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Help me learn, button, tap to use tool","depth":22,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Help me learn","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Write anything, button, tap to use tool","depth":22,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Write anything","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Boost my day, button, tap to use tool","depth":22,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Boost my day","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextArea","text":"review src/component/ask_anything/streamers/filtered_calls_ask_anything_streamer.py","depth":20,"value":"review src/component/ask_anything/streamers/filtered_calls_ask_anything_streamer.py","help_text":"","role_description":"text entry area","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"review src/component/ask_anything/streamers/filtered_calls_ask_anything_streamer.py","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Open upload file menu","depth":20,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tools","depth":18,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open mode picker","depth":20,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pro","depth":23,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send message","depth":19,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Summarize page","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Summarize page","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Skip to content","depth":6,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to content","depth":7,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Open menu","depth":10,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Homepage (g then d)","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"jiminny","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"jiminny","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"prophet","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"prophet","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Search or jump to…","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Type","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"to search","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Chat with Copilot","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXMenuButton","text":"Open Copilot…","depth":9,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXMenuButton","text":"Create new...","depth":9,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Issues","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Pull requests","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Repositories","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"You have unread notifications(g then n)","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Open user navigation menu","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Repository navigation","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Repository navigation","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Code","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Code","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Issues","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Issues","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Pull requests (6)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pull requests","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Agents","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Agents","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Actions","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Actions","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Projects","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Projects","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wiki","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Wiki","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Security and quality (20)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Security and quality","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"20","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Insights","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Insights","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Settings","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Settings","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Important update","depth":10,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Important update","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"On April 24 we'll start using GitHub Copilot interaction data for AI model training unless you opt out.","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Review this update","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Review this update","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"and manage your preferences in your","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"GitHub account settings","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GitHub account settings","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Dismiss banner","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"JY-20574: panorama pdf add header section #467 Edit title","depth":13,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"JY-20574: panorama pdf add header section","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"#","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"467","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Edit title","depth":14,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXMenuButton","text":"Preview","depth":13,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Preview","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Awaiting approval","depth":13,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Awaiting approval","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Code","depth":13,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Code","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Open","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"steliyan-g","depth":15,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"steliyan-g","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"wants to merge 14 commits into","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"master","depth":15,"role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"master","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"from","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20674-panorama-pdf-add-header-section","depth":16,"role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20674-panorama-pdf-add-header-section","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy head branch name to clipboard","depth":16,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Lines changed: 128 additions & 6 deletions","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Conversation (1)","depth":16,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Conversation","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Commits (14)","depth":16,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Commits","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"14","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Checks (3)","depth":16,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Checks","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Files changed (5)","depth":16,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Files changed","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Pull Request Toolbar","depth":14,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Pull Request Toolbar","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse file tree","depth":14,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"Open","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20574: panorama pdf add header section","depth":14,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20574: panorama pdf add header section","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"#","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"467","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"All commits","depth":14,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"All commits","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"steliyan-g","depth":15,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"steliyan-g","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"wants to merge 14 commits into","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"master","depth":15,"role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"master","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"from","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20674-panorama-pdf-add-header-section","depth":16,"role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20674-panorama-pdf-add-header-section","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy head branch name to clipboard","depth":16,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"4","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"viewed","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Awaiting approval","depth":14,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Awaiting approval","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Submit review","depth":14,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Submit","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"review","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Open diff view settings","depth":14,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open overview panel","depth":14,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open comments panel","depth":14,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"(","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Filter files…","depth":16,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXMenuButton","text":"Filter options","depth":16,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"File tree","depth":15,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"File tree","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"src","depth":19,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"component/ask_anything","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"streamers","depth":23,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"filtered_calls_ask_anything_streamer.py","depth":25,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"filtered_calls_ask_anything_streamer.py","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"async_aa_report_processor.py","depth":23,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"async_aa_report_processor.py","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"main.py","depth":21,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"main.py","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"tests/component/ask_anything","depth":19,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"streamers","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"test_filtered_calls_get_report_content.py","depth":23,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"test_filtered_calls_get_report_content.py","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"test_async_aa_report_processor.py","depth":21,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"test_async_aa_report_processor.py","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse file","depth":14,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"src/component/ask_anything/streamers/filtered_calls_ask_anything_streamer.py","depth":15,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"src/component/ask_anything/streamers/filtered_calls_ask_anything_streamer.py","depth":16,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"src/component/ask_anything/streamers/filtered_calls_ask_anything_streamer.py","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy file name to clipboard","depth":15,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Expand all lines: src/component/ask_anything/streamers/filtered_calls_ask_anything_streamer.py","depth":15,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":true,"is_selected":false},{"role":"AXStaticText","text":"Lines changed: 41 additions & 3 deletions","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Not Viewed","depth":14,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Viewed","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Comment on this file","depth":14,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXMenuButton","text":"More options","depth":14,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Original file line number","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Original file line","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Diff line number","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Diff line change","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"@@ -103,6 +103,10 @@ def __init__(","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"103","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"# consumed in _process_single_batch (after the raw response is logged).","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"103","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"# consumed in _process_single_batch (after the raw response is logged).","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"104","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"self","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
8394088572417657557
|
-7838672310624523066
|
idle
|
accessibility
|
NULL
|
JY-20543 add AJ reports User pilot tracking by Lak JY-20543 add AJ reports User pilot tracking by LakyLak · Pull Request #11932 · jiminny/app
Platform Sprint 1 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 1 Q2 - Platform Team - Scrum Board - Jira
SRD-6779 | JY-20632 | Unable to log in to Sidekick with SSO by yalokin-jiminny · Pull Request #11935 · jiminny/app
SRD-6779 | JY-20632 | Unable to log in to Sidekick with SSO by yalokin-jiminny · Pull Request #11935 · jiminny/app
Jy 19798 evaluation for ai activity types by nikolaybiaivanov · Pull Request #468 · jiminny/prophet
Jy 19798 evaluation for ai activity types by nikolaybiaivanov · Pull Request #468 · jiminny/prophet
Jiminny
Jiminny
Ask Jiminny test report - 8 Apr 2026 - Ask Jiminny test report - 13 Apr 2026.pdf
Ask Jiminny test report - 8 Apr 2026 - Ask Jiminny test report - 13 Apr 2026.pdf
Service-Desk - Queues - Platform team - Service space - Jira
Service-Desk - Queues - Platform team - Service space - Jira
JY-20543 add AJ reports User pilot tracking by LakyLak · Pull Request #11932 · jiminny/app
JY-20543 add AJ reports User pilot tracking by LakyLak · Pull Request #11932 · jiminny/app
JY-20574: panorama pdf add header section by steliyan-g · Pull Request #467 · jiminny/prophet
JY-20574: panorama pdf add header section by steliyan-g · Pull Request #467 · jiminny/prophet
Close tab
New Tab
Customize sidebar
Close Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
AI Chat settings
Close
WORK, Google Account: [EMAIL]
Main menu
New chat
Gemini
PRO
PRO
Conversation with Gemini
Conversation with Gemini
Hi Lukas
Where should we start?
Where should we start?
🖼️ Create image, button, tap to use tool
🖼️ Create image
🎸 Create music, button, tap to use tool
🎸 Create music
Help me learn, button, tap to use tool
Help me learn
Write anything, button, tap to use tool
Write anything
Boost my day, button, tap to use tool
Boost my day
review src/component/ask_anything/streamers/filtered_calls_ask_anything_streamer.py
review src/component/ask_anything/streamers/filtered_calls_ask_anything_streamer.py
Open upload file menu
Tools
Open mode picker
Pro
Send message
Summarize page
Summarize page
Skip to content
Skip to content
Open menu
Homepage (g then d)
jiminny
jiminny
prophet
prophet
Search or jump to…
Type
/
to search
Chat with Copilot
Open Copilot…
Create new...
Issues
Pull requests
Repositories
You have unread notifications(g then n)
Open user navigation menu
Repository navigation
Repository navigation
Code
Code
Issues
Issues
Pull requests (6)
Pull requests
(
6
)
Agents
Agents
Actions
Actions
Projects
Projects
Wiki
Wiki
Security and quality (20)
Security and quality
(
20
)
Insights
Insights
Settings
Settings
Important update
Important update
On April 24 we'll start using GitHub Copilot interaction data for AI model training unless you opt out.
Review this update
Review this update
and manage your preferences in your
GitHub account settings
GitHub account settings
.
Dismiss banner
JY-20574: panorama pdf add header section #467 Edit title
JY-20574: panorama pdf add header section
#
467
Edit title
Preview
Preview
Awaiting approval
Awaiting approval
Code
Code
Open
steliyan-g
steliyan-g
wants to merge 14 commits into
master
master
from
JY-20674-panorama-pdf-add-header-section
JY-20674-panorama-pdf-add-header-section
Copy head branch name to clipboard
Lines changed: 128 additions & 6 deletions
Conversation (1)
Conversation
(
1
)
Commits (14)
Commits
(
14
)
Checks (3)
Checks
(
3
)
Files changed (5)
Files changed
(
5
)
Pull Request Toolbar
Pull Request Toolbar
Collapse file tree
Open
JY-20574: panorama pdf add header section
JY-20574: panorama pdf add header section
#
467
All commits
All commits
steliyan-g
steliyan-g
wants to merge 14 commits into
master
master
from
JY-20674-panorama-pdf-add-header-section
JY-20674-panorama-pdf-add-header-section
Copy head branch name to clipboard
4
/
5
viewed
Awaiting approval
Awaiting approval
Submit review
Submit
review
Open diff view settings
Open overview panel
Open comments panel
(
0
)
Filter files…
Filter options
File tree
File tree
src
component/ask_anything
streamers
filtered_calls_ask_anything_streamer.py
filtered_calls_ask_anything_streamer.py
async_aa_report_processor.py
async_aa_report_processor.py
main.py
main.py
tests/component/ask_anything
streamers
test_filtered_calls_get_report_content.py
test_filtered_calls_get_report_content.py
test_async_aa_report_processor.py
test_async_aa_report_processor.py
Collapse file
src/component/ask_anything/streamers/filtered_calls_ask_anything_streamer.py
src/component/ask_anything/streamers/filtered_calls_ask_anything_streamer.py
src/component/ask_anything/streamers/filtered_calls_ask_anything_streamer.py
Copy file name to clipboard
Expand all lines: src/component/ask_anything/streamers/filtered_calls_ask_anything_streamer.py
Lines changed: 41 additions & 3 deletions
Not Viewed
Viewed
Comment on this file
More options
Original file line number
Original file line
Diff line number
Diff line change
@@ -103,6 +103,10 @@ def __init__(
103
# consumed in _process_single_batch (after the raw response is logged).
103
# consumed in _process_single_batch (after the raw response is logged).
104
self
....
|
NULL
|
|
16766
|
367
|
60
|
2026-04-14T15:27:52.192411+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-14/1776 /Users/lukas/.screenpipe/data/data/2026-04-14/1776180472192_m2.jpg...
|
Boosteroid
|
Boosteroid
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
20910419710030/45Castle AgeCreate Villager (Cost: 20910419710030/45Castle AgeCreate Villager (Cost: 50 g)Gathers resources. Builds and repairsbuildings. Also repairs Ships and SiegeWeapons.Upgrades: HP, armor, efficiency (TownCenter); wood resource-gathering (LumberCamp); stone, gold resource-gathering(Mining Camp); build speed (University);attack (Castle); more resistant to Monks(Monastery).- 25 X 3g0: 0 G°0(Hotkey: Q)Game Paused (P)Town Center0/15Đ 5/7kovalfklukas (Britons)Creating 6%Villager2400/24002 Yekuno Amlak: 1553/15536 Prithviraj Chauhan: 1524/15243 Mari Djata I: 1450/14508 Ellac the Hun: 1434/14345 Danylo Kobiakovych: 1433/14337 Vikramaditya I: 1425/14254 Wen Tianxiang: 1418/1418 (1 kovaliklukas: 1414/1414HHA...
|
NULL
|
8393386214508312194
|
NULL
|
visual_change
|
ocr
|
NULL
|
20910419710030/45Castle AgeCreate Villager (Cost: 20910419710030/45Castle AgeCreate Villager (Cost: 50 g)Gathers resources. Builds and repairsbuildings. Also repairs Ships and SiegeWeapons.Upgrades: HP, armor, efficiency (TownCenter); wood resource-gathering (LumberCamp); stone, gold resource-gathering(Mining Camp); build speed (University);attack (Castle); more resistant to Monks(Monastery).- 25 X 3g0: 0 G°0(Hotkey: Q)Game Paused (P)Town Center0/15Đ 5/7kovalfklukas (Britons)Creating 6%Villager2400/24002 Yekuno Amlak: 1553/15536 Prithviraj Chauhan: 1524/15243 Mari Djata I: 1450/14508 Ellac the Hun: 1434/14345 Danylo Kobiakovych: 1433/14337 Vikramaditya I: 1425/14254 Wen Tianxiang: 1418/1418 (1 kovaliklukas: 1414/1414HHA...
|
16765
|
|
27858
|
579
|
49
|
2026-04-15T14:00:27.184834+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-15/1776 /Users/lukas/.screenpipe/data/data/2026-04-15/1776261627184_m1.jpg...
|
Boosteroid
|
Boosteroid
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
+SlackFileEditViewGoEDHomeActivityFiles..•More+His +SlackFileEditViewGoEDHomeActivityFiles..•More+HistoryWindowHelp→Search Jiminny IncJiminny ...sos+# general# infra-changes# jiminny-bg# platform-tickets# product _launches# random# releases# sofia-office# support# thank-yous# the_people_of jimi...Direct messagesStoyan TanevVesGalya DimitrovaAneliya Angelova, ...Vasil VasilevSteliyan GeorgievAdelina Petrova, Ili...P. Adelina PetrovaD. Nikolay Nikolov2 Galya Dimitrova, Ni...ii: AppsToastJira Cloud# releases8 22Messagesnewdou+O Files• Bookmarksv 2 new messagesGitHub APP3:28 PM7 new commits pushed tomaster by nikolay-yankovNew24b989ee - Enhance SECFIXdocumentation and policiesa3a0a742 - Update SECFIX Slack channelreference in documentation and workflowfiles071c999d - Merge branch 'master' intoimprove-secfix-bot-15-04-2026981e9a1a - Update SECFIX_PROMPT.mdto enhance clarity on upgrade safety andchangelog reviews6e938e53 - Enhance SECFIX workflow withSlack notification optionsShow more( jiminny/app Added by GitHubCircleCl APP3:53 PMDeployment Successful!Project: appWhen:04/15/202612:53:30Tag:View JobMessage #releases+AaActivity MonitorAll ProcessesProcess NameBoosteroidWindowServerFirefoxFirefoxCP Isolated Web ContentFirefoxCursorUlViewService (Not Responding)FirefoxCP Isolated Web ContentFirefox GPU HelperFirefoxCP Isolated Web ContentFirefox GPU HelperVTDecoderXPCServiceFirefoxCP Isolated Web ContentSlack Helper (Renderer)FirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentNotion Calendar Helper (Renderer)Notion Helper (Renderer)Claude Helper (Renderer)claudeFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentiTerm2FirefoxCP Isolated Web ContentCode Helper (Renderer)MEMORY PRESSUREMem...2,03 GB1,20 GB995,1 MB962,8 MB840,7 MB793,6 MB785,7 MB550,2 MB547,3 MB543,9 MB515,9 MB465,5 MB457,8 MB430,1 MB425,5 MB397,8 MB392,3 MB390,6 MB372,5 MB347,4 MB331,1 MB326,4 MB326,2 MB305,8 MB249,0 MB243,2 MB237,6 MB197,7 MBPhysical Memory:Memory Used:Cached Files:Swap Used:100% <478Wed 15 Apr 17:00:26CPUMemoryDiskThreads3923722686282924271223152723272624221520151327282618EnergyPorts60319 7677251251 20320 027129242125253168119185125121125126121118173313219721231281833122229PID93892407801442974146648424203080193671314673938993548041863358313527643652430163689848173265481148605195091035833482984878561388534016,00 GB14,22 GB <1,74 GB3,04 GBApp Memory:Wired Memory:Compressed:NetworkUserlukas_windowserverlukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukas3,99 GB2,89 GB6,79 GB...
|
NULL
|
8393221856130230473
|
NULL
|
click
|
ocr
|
NULL
|
+SlackFileEditViewGoEDHomeActivityFiles..•More+His +SlackFileEditViewGoEDHomeActivityFiles..•More+HistoryWindowHelp→Search Jiminny IncJiminny ...sos+# general# infra-changes# jiminny-bg# platform-tickets# product _launches# random# releases# sofia-office# support# thank-yous# the_people_of jimi...Direct messagesStoyan TanevVesGalya DimitrovaAneliya Angelova, ...Vasil VasilevSteliyan GeorgievAdelina Petrova, Ili...P. Adelina PetrovaD. Nikolay Nikolov2 Galya Dimitrova, Ni...ii: AppsToastJira Cloud# releases8 22Messagesnewdou+O Files• Bookmarksv 2 new messagesGitHub APP3:28 PM7 new commits pushed tomaster by nikolay-yankovNew24b989ee - Enhance SECFIXdocumentation and policiesa3a0a742 - Update SECFIX Slack channelreference in documentation and workflowfiles071c999d - Merge branch 'master' intoimprove-secfix-bot-15-04-2026981e9a1a - Update SECFIX_PROMPT.mdto enhance clarity on upgrade safety andchangelog reviews6e938e53 - Enhance SECFIX workflow withSlack notification optionsShow more( jiminny/app Added by GitHubCircleCl APP3:53 PMDeployment Successful!Project: appWhen:04/15/202612:53:30Tag:View JobMessage #releases+AaActivity MonitorAll ProcessesProcess NameBoosteroidWindowServerFirefoxFirefoxCP Isolated Web ContentFirefoxCursorUlViewService (Not Responding)FirefoxCP Isolated Web ContentFirefox GPU HelperFirefoxCP Isolated Web ContentFirefox GPU HelperVTDecoderXPCServiceFirefoxCP Isolated Web ContentSlack Helper (Renderer)FirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentNotion Calendar Helper (Renderer)Notion Helper (Renderer)Claude Helper (Renderer)claudeFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentiTerm2FirefoxCP Isolated Web ContentCode Helper (Renderer)MEMORY PRESSUREMem...2,03 GB1,20 GB995,1 MB962,8 MB840,7 MB793,6 MB785,7 MB550,2 MB547,3 MB543,9 MB515,9 MB465,5 MB457,8 MB430,1 MB425,5 MB397,8 MB392,3 MB390,6 MB372,5 MB347,4 MB331,1 MB326,4 MB326,2 MB305,8 MB249,0 MB243,2 MB237,6 MB197,7 MBPhysical Memory:Memory Used:Cached Files:Swap Used:100% <478Wed 15 Apr 17:00:26CPUMemoryDiskThreads3923722686282924271223152723272624221520151327282618EnergyPorts60319 7677251251 20320 027129242125253168119185125121125126121118173313219721231281833122229PID93892407801442974146648424203080193671314673938993548041863358313527643652430163689848173265481148605195091035833482984878561388534016,00 GB14,22 GB <1,74 GB3,04 GBApp Memory:Wired Memory:Compressed:NetworkUserlukas_windowserverlukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukas3,99 GB2,89 GB6,79 GB...
|
NULL
|
|
55031
|
1187
|
16
|
2026-04-20T09:30:46.221894+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-20/1776 /Users/lukas/.screenpipe/data/data/2026-04-20/1776677446221_m1.jpg...
|
Firefox
|
Jiminny — Work
|
True
|
app.dev.jiminny.com/ai-reports/manage
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Platform Sprint 2 Q2 - Platform Team - Scrum Board Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira
JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app
JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app
[SRD-6793] Les Mills activity types not pulling in - Jira
[SRD-6793] Les Mills activity types not pulling in - Jira
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app
JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app
[JY-20543] AJ Reports > Tracking - Jira
[JY-20543] AJ Reports > Tracking - Jira
[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira
[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira
Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app
Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app
New Tab
New Tab
Product Growth Platform | Userpilot
Product Growth Platform | Userpilot
Userpilot | Logged-activity
Userpilot | Logged-activity
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
Jiminny
Jiminny
Close tab
Jiminny
Jiminny
Jiminny
Jiminny
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
Ask Jiminny Reports
Ask Jiminny Reports
Create
Report name
Prompt Prompt
Prompt
Prompt
Saved search Saved search
Saved search
Saved search
All statuses All statuses
All statuses
All statuses
Clear all
NAME
FREQUENCY
SHARED
EXPIRING
ACTIONS
Exp
Daily
20/04/2027
Monthly Ask J Report
Monthly
Jiminny Mobile SA
30/06/2026
Search One
Daily
Jiminny Mobile SA
30/04/2026
Edit report
Save
Clear
Filter URLs
Pause/Resume recording network log
New Request
Search
Request Blocking
All
HTML
CSS
JS
XHR
Fonts
Images
Media
WS
Other
Disable Cache
Disable Cache
No Throttling
Network Settings
Status
Status
Method
Method
Domain
Domain
File
File
Initiator
Initiator
Type
Type
Transferred
Transferred
Size
Size
200
GET
app.dev.jiminny.com
form-data
xhr
json
7.56 kB
10.67 kB
200
POST
app.dev.jiminny.com
aj-reports
xhr
json
3.03 kB
493 B
200
GET
app.dev.jiminny.com
7361706f-ffbe-4d3d-a22b-9fab33d05094
xhr
json
7.57 kB
10.83 kB
422
PUT
app.dev.jiminny.com
7361706f-ffbe-4d3d-a22b-9fab33d05094
xhr
json
2.73 kB
63 B
200
GET
app.dev.jiminny.com
7361706f-ffbe-4d3d-a22b-9fab33d05094
xhr
json
7.57 kB
10.83 kB
422
PUT
app.dev.jiminny.com
7361706f-ffbe-4d3d-a22b-9fab33d05094
xhr
json
2.73 kB
63 B...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[SRD-6793] Les Mills activity types not pulling in - Jira","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[SRD-6793] Les Mills activity types not pulling in - Jira","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20543] AJ Reports > Tracking - Jira","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20543] AJ Reports > Tracking - Jira","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Product Growth Platform | Userpilot","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Product Growth Platform | Userpilot","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Userpilot | Logged-activity","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Userpilot | Logged-activity","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipelines - jiminny/app","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pipelines - jiminny/app","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Feed — jiminny — Sentry","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Feed — jiminny — Sentry","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Jiminny","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Jiminny","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Tabs from other devices","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Ask Jiminny Reports","depth":10,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ask Jiminny Reports","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create","depth":10,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXTextField","text":"Report name","depth":11,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXComboBox","text":"Prompt Prompt","depth":10,"value":"Prompt Prompt","help_text":"","role_description":"combo box","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Prompt","depth":11,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Prompt","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXComboBox","text":"Saved search Saved search","depth":10,"value":"Saved search Saved search","help_text":"","role_description":"combo box","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Saved search","depth":11,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Saved search","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXComboBox","text":"All statuses All statuses","depth":10,"value":"All statuses All statuses","help_text":"","role_description":"combo box","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"All statuses","depth":11,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"All statuses","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Clear all","depth":10,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"NAME","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"FREQUENCY","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"SHARED","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"EXPIRING","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ACTIONS","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Exp","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Daily","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"20/04/2027","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Monthly Ask J Report","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Monthly","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Jiminny Mobile SA","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"30/06/2026","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Search One","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Daily","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Jiminny Mobile SA","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"30/04/2026","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Edit report","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Save","depth":12,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":false,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Clear","depth":16,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXTextField","text":"Filter URLs","depth":16,"help_text":"","role_description":"search text field","subrole":"AXSearchField","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Pause/Resume recording network log","depth":16,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"New Request","depth":16,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Search","depth":16,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Request Blocking","depth":16,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"All","depth":17,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"HTML","depth":17,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"CSS","depth":17,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"JS","depth":17,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"XHR","depth":17,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Fonts","depth":17,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Images","depth":17,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Media","depth":17,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"WS","depth":17,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Other","depth":17,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Disable Cache","depth":17,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Disable Cache","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"No Throttling","depth":16,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Network Settings","depth":16,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Status","depth":24,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Status","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Method","depth":24,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Method","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Domain","depth":24,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Domain","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"File","depth":24,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"File","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Initiator","depth":24,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Initiator","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Type","depth":24,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Type","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Transferred","depth":24,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Transferred","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Size","depth":24,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Size","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"200","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"GET","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"app.dev.jiminny.com","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"form-data","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"xhr","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"json","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"7.56 kB","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"10.67 kB","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"200","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"POST","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"app.dev.jiminny.com","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"aj-reports","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"xhr","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"json","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.03 kB","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"493 B","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"200","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"GET","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"app.dev.jiminny.com","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"7361706f-ffbe-4d3d-a22b-9fab33d05094","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"xhr","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"json","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"7.57 kB","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"10.83 kB","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"422","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"PUT","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"app.dev.jiminny.com","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"7361706f-ffbe-4d3d-a22b-9fab33d05094","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"xhr","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"json","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2.73 kB","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"63 B","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"200","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"GET","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"app.dev.jiminny.com","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"7361706f-ffbe-4d3d-a22b-9fab33d05094","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"xhr","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"json","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"7.57 kB","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"10.83 kB","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"422","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"PUT","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"app.dev.jiminny.com","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"7361706f-ffbe-4d3d-a22b-9fab33d05094","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"xhr","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"json","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2.73 kB","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"63 B","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
8393113492580361114
|
2183506992713065202
|
click
|
accessibility
|
NULL
|
Platform Sprint 2 Q2 - Platform Team - Scrum Board Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira
JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app
JY-20553 | Improve crm-sync delays by yalokin-jiminny · Pull Request #11976 · jiminny/app
[SRD-6793] Les Mills activity types not pulling in - Jira
[SRD-6793] Les Mills activity types not pulling in - Jira
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app
JY-20692 change confirmation parameter by LakyLak · Pull Request #11986 · jiminny/app
[JY-20543] AJ Reports > Tracking - Jira
[JY-20543] AJ Reports > Tracking - Jira
[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira
[JY-18909] [Part2] Automated reports with Ask Jiminny - Jira
Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app
Ask Jiminny Reports by nikolay-yankov · Pull Request #11894 · jiminny/app
New Tab
New Tab
Product Growth Platform | Userpilot
Product Growth Platform | Userpilot
Userpilot | Logged-activity
Userpilot | Logged-activity
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
fix(security): composer dependency updates – 2026-04-15 by github-actions[bot] · Pull Request #11970 · jiminny/app
Jiminny
Jiminny
Close tab
Jiminny
Jiminny
Jiminny
Jiminny
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
Ask Jiminny Reports
Ask Jiminny Reports
Create
Report name
Prompt Prompt
Prompt
Prompt
Saved search Saved search
Saved search
Saved search
All statuses All statuses
All statuses
All statuses
Clear all
NAME
FREQUENCY
SHARED
EXPIRING
ACTIONS
Exp
Daily
20/04/2027
Monthly Ask J Report
Monthly
Jiminny Mobile SA
30/06/2026
Search One
Daily
Jiminny Mobile SA
30/04/2026
Edit report
Save
Clear
Filter URLs
Pause/Resume recording network log
New Request
Search
Request Blocking
All
HTML
CSS
JS
XHR
Fonts
Images
Media
WS
Other
Disable Cache
Disable Cache
No Throttling
Network Settings
Status
Status
Method
Method
Domain
Domain
File
File
Initiator
Initiator
Type
Type
Transferred
Transferred
Size
Size
200
GET
app.dev.jiminny.com
form-data
xhr
json
7.56 kB
10.67 kB
200
POST
app.dev.jiminny.com
aj-reports
xhr
json
3.03 kB
493 B
200
GET
app.dev.jiminny.com
7361706f-ffbe-4d3d-a22b-9fab33d05094
xhr
json
7.57 kB
10.83 kB
422
PUT
app.dev.jiminny.com
7361706f-ffbe-4d3d-a22b-9fab33d05094
xhr
json
2.73 kB
63 B
200
GET
app.dev.jiminny.com
7361706f-ffbe-4d3d-a22b-9fab33d05094
xhr
json
7.57 kB
10.83 kB
422
PUT
app.dev.jiminny.com
7361706f-ffbe-4d3d-a22b-9fab33d05094
xhr
json
2.73 kB
63 B...
|
55029
|
|
81000
|
NULL
|
0
|
2026-04-25T15:50:02.105716+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777132202105_m1.jpg...
|
iTerm2
|
nano
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:28:17] ========================================
[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:28:17] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
NAS mount: OK /Volumes/Test/screenpipe
Archive DB: exists (6.0G)
Data dir: OK (250 files, 143M)
UW PICO 5.09 New Buffer
[ Read 352 lines ]
^G Get Help ^O WriteOut ^R Read File ^Y Prev Pg ^K Cut Text ^C Cur Pos
^X Exit ^J Justify ^W Where is ^V Next Pg ^U UnCut Text ^T To Spell
UW PICO 5.09 File: screenpipe_sync.sh Modified
#!/bin/bash
# screenpipe_sync.sh
# Syncs Screenpipe SQLite data to a NAS archive database (append-only, no deletions).
# Also copies the day's video/frame data folder to the NAS.
#
# Usage:
# ./screenpipe_sync.sh # syncs yesterday (default)
# ./screenpipe_sync.sh 2026-04-15 # syncs a specific date
# ./screenpipe_sync.sh today # syncs today so far
#
# Cron example (runs at 3am daily):
# 0 3 * * * /Users/lukas/.screenpipe/screenpipe_sync.sh >> /Users/lukas/.screenpipe/sync.log 2>&1
set -euo pipefail
# ─── CONFIG ───────────────────────────────────────────────────────────────────
DB_SRC="${SCREENPIPE_DB:-$HOME/.screenpipe/db.sqlite}"
NAS_MOUNT="${NAS_MOUNT:-/Volumes/screenpipe}"
NAS_DB="$NAS_MOUNT/archive.db"
NAS_DATA="$NAS_MOUNT/data"
LOG_FILE="$HOME/.screenpipe/sync.log"
# ──────────────────────────────────────────────────────────────────────────────
# ─── HELPERS ──────────────────────────────────────────────────────────────────
SCRIPT_START=$(date +%s)
log() {
local msg="[$(date '+%Y-%m-%d %H:%M:%S')] $*"
echo "$msg" | tee -a "$LOG_FILE"
}
step() {
local now=$(date +%s)
local elapsed=$(( now - SCRIPT_START ))
local min=$(( elapsed / 60 ))
local sec=$(( elapsed % 60 ))
printf "\n[+%02dm%02ds] ▶ %s\n" "$min" "$sec" "$*" | tee -a "$LOG_FILE"
}
run_sqlite_heredoc() {
File Name to write : screenpipe_sync.sh
^G Get Help ^T To Files
^C Cancel TAB Complete
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
nano
Close Tab
⌥⌘1
nano...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:28:17] ========================================\n[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:28:17] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n NAS mount: OK /Volumes/Test/screenpipe\n Archive DB: exists (6.0G)\n Data dir: OK (250 files, 143M)\n UW PICO 5.09 New Buffer \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n [ Read 352 lines ] \n^G Get Help ^O WriteOut ^R Read File ^Y Prev Pg ^K Cut Text ^C Cur Pos \n^X Exit ^J Justify ^W Where is ^V Next Pg ^U UnCut Text ^T To Spell \n UW PICO 5.09 File: screenpipe_sync.sh Modified \n\n#!/bin/bash\n# screenpipe_sync.sh\n# Syncs Screenpipe SQLite data to a NAS archive database (append-only, no deletions).\n# Also copies the day's video/frame data folder to the NAS.\n#\n# Usage:\n# ./screenpipe_sync.sh # syncs yesterday (default)\n# ./screenpipe_sync.sh 2026-04-15 # syncs a specific date\n# ./screenpipe_sync.sh today # syncs today so far\n#\n# Cron example (runs at 3am daily):\n# 0 3 * * * /Users/lukas/.screenpipe/screenpipe_sync.sh >> /Users/lukas/.screenpipe/sync.log 2>&1\n\nset -euo pipefail\n\n# ─── CONFIG ───────────────────────────────────────────────────────────────────\nDB_SRC=\"${SCREENPIPE_DB:-$HOME/.screenpipe/db.sqlite}\"\nNAS_MOUNT=\"${NAS_MOUNT:-/Volumes/screenpipe}\"\nNAS_DB=\"$NAS_MOUNT/archive.db\"\nNAS_DATA=\"$NAS_MOUNT/data\"\nLOG_FILE=\"$HOME/.screenpipe/sync.log\"\n# ──────────────────────────────────────────────────────────────────────────────\n\n# ─── HELPERS ──────────────────────────────────────────────────────────────────\nSCRIPT_START=$(date +%s)\n\nlog() {\n\u0000\u0000local msg=\"[$(date '+%Y-%m-%d %H:%M:%S')] $*\"\n\u0000\u0000echo \"$msg\" | tee -a \"$LOG_FILE\"\n}\n\nstep() {\n\u0000\u0000local now=$(date +%s)\n\u0000\u0000local elapsed=$(( now - SCRIPT_START ))\n\u0000\u0000local min=$(( elapsed / 60 ))\n\u0000\u0000local sec=$(( elapsed % 60 ))\n\u0000\u0000printf \"\\n[+%02dm%02ds] ▶ %s\\n\" \"$min\" \"$sec\" \"$*\" | tee -a \"$LOG_FILE\"\n}\n\nrun_sqlite_heredoc() {\nFile Name to write : screenpipe_sync.sh \n^G Get Help ^T To Files \n^C Cancel TAB Complete","depth":4,"value":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:28:17] ========================================\n[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:28:17] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n NAS mount: OK /Volumes/Test/screenpipe\n Archive DB: exists (6.0G)\n Data dir: OK (250 files, 143M)\n UW PICO 5.09 New Buffer \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n [ Read 352 lines ] \n^G Get Help ^O WriteOut ^R Read File ^Y Prev Pg ^K Cut Text ^C Cur Pos \n^X Exit ^J Justify ^W Where is ^V Next Pg ^U UnCut Text ^T To Spell \n UW PICO 5.09 File: screenpipe_sync.sh Modified \n\n#!/bin/bash\n# screenpipe_sync.sh\n# Syncs Screenpipe SQLite data to a NAS archive database (append-only, no deletions).\n# Also copies the day's video/frame data folder to the NAS.\n#\n# Usage:\n# ./screenpipe_sync.sh # syncs yesterday (default)\n# ./screenpipe_sync.sh 2026-04-15 # syncs a specific date\n# ./screenpipe_sync.sh today # syncs today so far\n#\n# Cron example (runs at 3am daily):\n# 0 3 * * * /Users/lukas/.screenpipe/screenpipe_sync.sh >> /Users/lukas/.screenpipe/sync.log 2>&1\n\nset -euo pipefail\n\n# ─── CONFIG ───────────────────────────────────────────────────────────────────\nDB_SRC=\"${SCREENPIPE_DB:-$HOME/.screenpipe/db.sqlite}\"\nNAS_MOUNT=\"${NAS_MOUNT:-/Volumes/screenpipe}\"\nNAS_DB=\"$NAS_MOUNT/archive.db\"\nNAS_DATA=\"$NAS_MOUNT/data\"\nLOG_FILE=\"$HOME/.screenpipe/sync.log\"\n# ──────────────────────────────────────────────────────────────────────────────\n\n# ─── HELPERS ──────────────────────────────────────────────────────────────────\nSCRIPT_START=$(date +%s)\n\nlog() {\n\u0000\u0000local msg=\"[$(date '+%Y-%m-%d %H:%M:%S')] $*\"\n\u0000\u0000echo \"$msg\" | tee -a \"$LOG_FILE\"\n}\n\nstep() {\n\u0000\u0000local now=$(date +%s)\n\u0000\u0000local elapsed=$(( now - SCRIPT_START ))\n\u0000\u0000local min=$(( elapsed / 60 ))\n\u0000\u0000local sec=$(( elapsed % 60 ))\n\u0000\u0000printf \"\\n[+%02dm%02ds] ▶ %s\\n\" \"$min\" \"$sec\" \"$*\" | tee -a \"$LOG_FILE\"\n}\n\nrun_sqlite_heredoc() {\nFile Name to write : screenpipe_sync.sh \n^G Get Help ^T To Files \n^C Cancel TAB Complete","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"DEV (-zsh)","depth":2,"bounds":{"left":0.19722222,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.2013889,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.39444444,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3986111,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.59166664,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.59583336,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"nano","depth":2,"bounds":{"left":0.7888889,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.79305553,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.95763886,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"nano","depth":1,"bounds":{"left":0.4888889,"top":0.033333335,"width":0.025,"height":0.017777778},"role_description":"text"}]...
|
8393097479543647034
|
5424031521271938641
|
visual_change
|
accessibility
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:28:17] ========================================
[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:28:17] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
NAS mount: OK /Volumes/Test/screenpipe
Archive DB: exists (6.0G)
Data dir: OK (250 files, 143M)
UW PICO 5.09 New Buffer
[ Read 352 lines ]
^G Get Help ^O WriteOut ^R Read File ^Y Prev Pg ^K Cut Text ^C Cur Pos
^X Exit ^J Justify ^W Where is ^V Next Pg ^U UnCut Text ^T To Spell
UW PICO 5.09 File: screenpipe_sync.sh Modified
#!/bin/bash
# screenpipe_sync.sh
# Syncs Screenpipe SQLite data to a NAS archive database (append-only, no deletions).
# Also copies the day's video/frame data folder to the NAS.
#
# Usage:
# ./screenpipe_sync.sh # syncs yesterday (default)
# ./screenpipe_sync.sh 2026-04-15 # syncs a specific date
# ./screenpipe_sync.sh today # syncs today so far
#
# Cron example (runs at 3am daily):
# 0 3 * * * /Users/lukas/.screenpipe/screenpipe_sync.sh >> /Users/lukas/.screenpipe/sync.log 2>&1
set -euo pipefail
# ─── CONFIG ───────────────────────────────────────────────────────────────────
DB_SRC="${SCREENPIPE_DB:-$HOME/.screenpipe/db.sqlite}"
NAS_MOUNT="${NAS_MOUNT:-/Volumes/screenpipe}"
NAS_DB="$NAS_MOUNT/archive.db"
NAS_DATA="$NAS_MOUNT/data"
LOG_FILE="$HOME/.screenpipe/sync.log"
# ──────────────────────────────────────────────────────────────────────────────
# ─── HELPERS ──────────────────────────────────────────────────────────────────
SCRIPT_START=$(date +%s)
log() {
local msg="[$(date '+%Y-%m-%d %H:%M:%S')] $*"
echo "$msg" | tee -a "$LOG_FILE"
}
step() {
local now=$(date +%s)
local elapsed=$(( now - SCRIPT_START ))
local min=$(( elapsed / 60 ))
local sec=$(( elapsed % 60 ))
printf "\n[+%02dm%02ds] ▶ %s\n" "$min" "$sec" "$*" | tee -a "$LOG_FILE"
}
run_sqlite_heredoc() {
File Name to write : screenpipe_sync.sh
^G Get Help ^T To Files
^C Cancel TAB Complete
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
nano
Close Tab
⌥⌘1
nano...
|
80998
|
|
64351
|
1422
|
17
|
2026-04-21T11:03:01.597965+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776769381597_m2.jpg...
|
Firefox
|
Figma — Work
|
True
|
www.figma.com/design/jXcUe1y9mx5Fiz8KosLAUn/Projec www.figma.com/design/jXcUe1y9mx5Fiz8KosLAUn/Project-Phoenix?node-id=8090-42046&t=nJK629FloDyaWRYR-1...
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Platform Sprint 2 Q2 - Platform Team - Scrum Board Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira
Figma
Figma
Close tab
[JY-20372] AI Reports > Empty page design and promotion - Jira
[JY-20372] AI Reports > Empty page design and promotion - Jira
Project Phoenix – Figma
Project Phoenix – Figma
Project Phoenix – Figma
Project Phoenix – Figma
Project Phoenix – Figma
Project Phoenix – Figma
Jiminny MCP Connector - Product - Confluence
Jiminny MCP Connector - Product - Confluence
Jiminny Mail
Jiminny Mail
[JY-20500] Batch initial sync for Salesforce - Jira
[JY-20500] Batch initial sync for Salesforce - Jira
Feed — jiminny — Sentry
Feed — jiminny — Sentry
Jiminny
Jiminny
Pipelines - jiminny/app
Pipelines - jiminny/app
Formalize
Formalize
[SRD-6793] Les Mills activity types not pulling in - Jira
[SRD-6793] Les Mills activity types not pulling in - Jira
Salesforce Pre-Authorization | Jiminny Help Center
Salesforce Pre-Authorization | Jiminny Help Center
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
Read www.figma.com...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira","depth":4,"bounds":{"left":0.50182843,"top":0.0518755,"width":0.07596409,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Figma","depth":4,"bounds":{"left":0.5,"top":0.09497207,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Figma","depth":5,"bounds":{"left":0.51329786,"top":0.10614525,"width":0.010472074,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.56732047,"top":0.10215483,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"[JY-20372] AI Reports > Empty page design and promotion - Jira","depth":4,"bounds":{"left":0.5,"top":0.12769353,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20372] AI Reports > Empty page design and promotion - Jira","depth":5,"bounds":{"left":0.51329786,"top":0.13886672,"width":0.11319814,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Project Phoenix – Figma","depth":4,"bounds":{"left":0.5,"top":0.16041501,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Project Phoenix – Figma","depth":5,"bounds":{"left":0.51329786,"top":0.17158818,"width":0.041888297,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Project Phoenix – Figma","depth":4,"bounds":{"left":0.5,"top":0.19313647,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Project Phoenix – Figma","depth":5,"bounds":{"left":0.51329786,"top":0.20430966,"width":0.041888297,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Project Phoenix – Figma","depth":4,"bounds":{"left":0.5,"top":0.22585794,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Project Phoenix – Figma","depth":5,"bounds":{"left":0.51329786,"top":0.23703113,"width":0.041888297,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny MCP Connector - Product - Confluence","depth":4,"bounds":{"left":0.5,"top":0.2585794,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny MCP Connector - Product - Confluence","depth":5,"bounds":{"left":0.51329786,"top":0.2697526,"width":0.08294548,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny Mail","depth":4,"bounds":{"left":0.5,"top":0.29130086,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny Mail","depth":5,"bounds":{"left":0.51329786,"top":0.30247405,"width":0.02144282,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20500] Batch initial sync for Salesforce - Jira","depth":4,"bounds":{"left":0.5,"top":0.32402235,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20500] Batch initial sync for Salesforce - Jira","depth":5,"bounds":{"left":0.51329786,"top":0.33519554,"width":0.08610372,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Feed — jiminny — Sentry","depth":4,"bounds":{"left":0.5,"top":0.3567438,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Feed — jiminny — Sentry","depth":5,"bounds":{"left":0.51329786,"top":0.367917,"width":0.042719416,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny","depth":4,"bounds":{"left":0.5,"top":0.38946527,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny","depth":5,"bounds":{"left":0.51329786,"top":0.40063846,"width":0.013131649,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipelines - jiminny/app","depth":4,"bounds":{"left":0.5,"top":0.42218676,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pipelines - jiminny/app","depth":5,"bounds":{"left":0.51329786,"top":0.43335995,"width":0.039228722,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Formalize","depth":4,"bounds":{"left":0.5,"top":0.45490822,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Formalize","depth":5,"bounds":{"left":0.51329786,"top":0.4660814,"width":0.016788565,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[SRD-6793] Les Mills activity types not pulling in - Jira","depth":4,"bounds":{"left":0.5,"top":0.48762968,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[SRD-6793] Les Mills activity types not pulling in - Jira","depth":5,"bounds":{"left":0.51329786,"top":0.49880287,"width":0.09524601,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Salesforce Pre-Authorization | Jiminny Help Center","depth":4,"bounds":{"left":0.5,"top":0.5203512,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Salesforce Pre-Authorization | Jiminny Help Center","depth":5,"bounds":{"left":0.51329786,"top":0.53152436,"width":0.08826463,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"bounds":{"left":0.5028258,"top":0.5546688,"width":0.07413564,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"bounds":{"left":0.5028258,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"bounds":{"left":0.51379657,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Tabs from other devices","depth":6,"bounds":{"left":0.5249335,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"bounds":{"left":0.53607047,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"bounds":{"left":0.5472075,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Read www.figma.com","depth":5,"bounds":{"left":0.5809508,"top":0.9876297,"width":0.037400264,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
8393012166722625862
|
-5316522174886287999
|
visual_change
|
hybrid
|
NULL
|
Platform Sprint 2 Q2 - Platform Team - Scrum Board Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira
Figma
Figma
Close tab
[JY-20372] AI Reports > Empty page design and promotion - Jira
[JY-20372] AI Reports > Empty page design and promotion - Jira
Project Phoenix – Figma
Project Phoenix – Figma
Project Phoenix – Figma
Project Phoenix – Figma
Project Phoenix – Figma
Project Phoenix – Figma
Jiminny MCP Connector - Product - Confluence
Jiminny MCP Connector - Product - Confluence
Jiminny Mail
Jiminny Mail
[JY-20500] Batch initial sync for Salesforce - Jira
[JY-20500] Batch initial sync for Salesforce - Jira
Feed — jiminny — Sentry
Feed — jiminny — Sentry
Jiminny
Jiminny
Pipelines - jiminny/app
Pipelines - jiminny/app
Formalize
Formalize
[SRD-6793] Les Mills activity types not pulling in - Jira
[SRD-6793] Les Mills activity types not pulling in - Jira
Salesforce Pre-Authorization | Jiminny Help Center
Salesforce Pre-Authorization | Jiminny Help Center
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
Read www.figma.com
rireroxcalMISTOMrTavsco.sProledey=.env.circleci-nightlyE.env.local= .env.migrateE.env.nikilocalE.env.other.env.oroduction= .env.production-eu=.env.qaE .env.qai= .env.root=.env.staging= aitattributesO gitignore= oho-cs-ixer cachephp.php-cs-fixer.dist.phpphp.phpstorm.meta.phpE.phpunit.result.cacheE.prettierignoreE.windsurfrulesphe_ide_helper.phpphp_ide_helper_models.phppho artisan# composer.json0 composer.lockO dependency-checker.json0 dev.json- ide tyt= infontion icon dictM4 INTERNAL_WEBHOOK_SETUP.mdE¡iminny storageM+licenses.mdM Makerilepackage-lock.lson= ohostan.neon.dist= ohostan-baseline.neon<> ohounit.xmllTraw_sqL_query.sqlM. README.mdsonar-project.properties=tast.ou<> Untitied Diagram.ymillus vetur confia.is102 V120 V1159 %1187 Y208 V227 %lMIWERHOOK FIL TEPING IMPIEMENTATIC 308P> íh Sytemnal I ibrariesv =*Scratches and Consolesv M Datahase ConsolesV AEU4 console (EU]A DEAL RISKS [EUTA DI [EU]ProtllesWindowmelp© ImportActivityTypes.phpo riela.pnp© FieldRepository.php© AutomatedReportsRepository.phpC) CreatereldAcuivitvevent.ohocTrackProviderinstalledzvent.onoC) CreateActivityLoggedEvent.php(C) UserPilotActivityListener.phoC) ActivityLoqged.phpC) AutomatedReportsCallbackService.php© RequestGenerateAskJiminnyReportJob.phpC) AutomatedReportResult.oho© AutomatedReport.phpclass AskJiminnyReportActivityServiceTest extends TestCase1590159115921593(C) RequestGenerateReportJob.php159415951596A3 X3 ^ ~ 15971598private function makeSavedSearch(array $filters): Search&Mock0bjectSsavedSearch = $this-›createMock( originalClassName: Search::class);$savedSearch->method ( constraint: 'getId') ->willReturn( value: 42) ;=custom.log=laravel.log4 SF jiminny@locallselect * from opportunities where iselect * from opportunity_stages whselect * from business_processes whselect * from business processstaselect * from business processstaselect * from stages where team_idselect * from teams where id = 459SELECTWHERS Mteam 1d = 450 and caunrovidFROM opportunity_stages ospublic function testGetActivityIdsForSavedSearchReturnsIds(): voidf...}public function testGetActivityIdsFiltersOutDateFilters(): void{...}public function testGetActivitvIdsFilters0utClosingPeriodDateFilters@: void{...?nublic function testbetActivitvidshandlesArravrilterso: voidi....public function testGetActivityldsHandlesScalarFilters: voidk...nublic function testGetActivitvIdsPassesNonZeroSequenceNumberToDisablefirstRequestDefaults(public function testGetActivityIdsLogsWithCorrectContext: void{...}1 usagepublic static function frequencyDateRangeProvider(): arrayf.,/*** @dataProvider frequencyDateRangeProviderpublic function testGetActivityIdsInjectsDateRangeForFrequency(scring strequencystring SexpectedStartDate,string sexpeccedcnavate): void (...+public function testGetActivityIdsWithNullFrequencyDoesNotInjectDates(): voidf...}public function testGetActivityIdsWithUnknownFrequencyDoesNotInjectDates(): voidf...}16AA160716A8141G1612-1614161516161617161816211623WHERE bps.business process id = 602AND s.crm_provider_id = 'contractseSELECT * FROM teams WHERE name LIKEselect * from playbooks where team_SELECT * FROM playbook_categories WSELECT * FROM crm_fields WHERE id =SELECT1472InTA ucone n on nid = ca cociablo.JOIN teams t 1.n<->1: on t.id = u.t|# Support Daily - in 57 m• == www.figma.com/design//XcUe1y9mx5Fiz8KosLAUn/Project-Phoenix?node-id=8090-42046&t=nJK629FloDyaWRYR-1100% LzTue 21 Apr 14:03:01• Fiama4 [JY-20372] Al Reports > Empty paProiect Phoenix - FiamaProiect Phoenix - Fiamaf Project Phoenix - Figma|X Jiminny MCP Connector - ProductM Jiminny Mail# (UY-20500] Batch initial sync for SiFeed — iiminny — Sentri8 JiminnyPipelines - jiminnvlapr.ACormaliz?(SRD-6793) Les Mills activity typel(8 Salesforce Pre-Authorization Ilim...
|
NULL
|
|
29436
|
600
|
88
|
2026-04-15T14:39:51.794980+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-15/1776 /Users/lukas/.screenpipe/data/data/2026-04-15/1776263991794_m1.jpg...
|
Boosteroid
|
Boosteroid
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
+SlackFileEditViewGoEDHomeDMSActivityFilesLater..• +SlackFileEditViewGoEDHomeDMSActivityFilesLater..•More+→Jiminny ...+CHISHICCIITIS# frontend# general# infra-changes# jiminny-bg# platform-tickets# product_launches# random# releases# sofia-office# support# thank-yous# the_people_of jimi...Direct messagesAneliya Angelova, ...Stoyan TanevVes. Galya Dimitrova€. Vasil VasilevR. Steliyan GeorgievAdelina Petrova, Ili...P. Adelina PetrovaR. Nikolay Nikolovii: AppsJira CloudToastHistoryWindowHelpSearch Jiminny Inc# releases8 226 0MessagesVIeWSOU@ Files• Bookmarks+Today ~GitHub APP3:28 PM7 new commits pushed to master by nikolay-yankov24b989ee - Enhance SECFIXdocumentation and policiesa3a0a742 - Update SECFIX Slack channelreference in documentation and workflowfiles071c999d - Merge branch 'master' intoimprove-secfix-bot-15-04-2026981e9a1a - Update SECFIX_PROMPT.mdto enhance clarity on upgrade safety andchangelog reviews6e938e53 - Enhance SECFIX workflow withSlack notification optionsShow more( jiminny/app Added by GitHubNewCircleCl APP3:53 PMDeployment Successful!Project: appWhen:04/15/202612:53:30Tag:View JobMessage #releases+Aa...Activity MonitorAll ProcessesProcess NameBoosteroidWindowServerFirefoxFirefoxCP Isolated Web ContentFirefoxFirefoxCP Isolated Web ContentCursorUlViewService (Not Responding)FirefoxCP Isolated Web ContentFirefox GPU HelperFirefox GPU HelperVTDecoderXPCServiceFirefoxCP Isolated Web ContentSlack Helper (Renderer)FirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentNotion Calendar Helper (Renderer)Notion Helper (Renderer)claudeClaude Helper (Renderer)FirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentiTerm2FirefoxCP Isolated Web ContentscreenpipeMEMORY PRESSUREMem...2,05 GB1,21 GB1 021,9 MB963,0 MB838,0 MB801,9 MB794,5 MB547,5 MB544,2 MB543,9 MB515,9 MB497,4 MB470,7 MB416,6 MB408,6 MB395,7 MB393,1 MB386,5 MB372,6 MB347,1 MB328,4 MB326,2 MB325,9 MB291,6 MB264,7 MB259,4 MB241,6 MB221,6 MBPhysical Memory:Memory Used:Cached Files:Swap Used:100% <478Wed 15 Apr 17:39:51CPUMemoryDiskThreads39237426862824292712241526232624272315211315272772660EnergyPorts60619 8067291251 20212920 047125242254167121185124121126121125120172328722191231261 833122515PID93892407801442974146644203084236713801914673938993548041863358313527643016368984365248173265481148509106051935833482984878561384287616,00 GB14,13 GB <1,83 GB3,15 GBApp Memory:Wired Memory:Compressed:NetworkUserlukas_windowserverlukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukas3,64 GB2,88 GB7,06 GB...
|
NULL
|
8392633615033492754
|
NULL
|
click
|
ocr
|
NULL
|
+SlackFileEditViewGoEDHomeDMSActivityFilesLater..• +SlackFileEditViewGoEDHomeDMSActivityFilesLater..•More+→Jiminny ...+CHISHICCIITIS# frontend# general# infra-changes# jiminny-bg# platform-tickets# product_launches# random# releases# sofia-office# support# thank-yous# the_people_of jimi...Direct messagesAneliya Angelova, ...Stoyan TanevVes. Galya Dimitrova€. Vasil VasilevR. Steliyan GeorgievAdelina Petrova, Ili...P. Adelina PetrovaR. Nikolay Nikolovii: AppsJira CloudToastHistoryWindowHelpSearch Jiminny Inc# releases8 226 0MessagesVIeWSOU@ Files• Bookmarks+Today ~GitHub APP3:28 PM7 new commits pushed to master by nikolay-yankov24b989ee - Enhance SECFIXdocumentation and policiesa3a0a742 - Update SECFIX Slack channelreference in documentation and workflowfiles071c999d - Merge branch 'master' intoimprove-secfix-bot-15-04-2026981e9a1a - Update SECFIX_PROMPT.mdto enhance clarity on upgrade safety andchangelog reviews6e938e53 - Enhance SECFIX workflow withSlack notification optionsShow more( jiminny/app Added by GitHubNewCircleCl APP3:53 PMDeployment Successful!Project: appWhen:04/15/202612:53:30Tag:View JobMessage #releases+Aa...Activity MonitorAll ProcessesProcess NameBoosteroidWindowServerFirefoxFirefoxCP Isolated Web ContentFirefoxFirefoxCP Isolated Web ContentCursorUlViewService (Not Responding)FirefoxCP Isolated Web ContentFirefox GPU HelperFirefox GPU HelperVTDecoderXPCServiceFirefoxCP Isolated Web ContentSlack Helper (Renderer)FirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentNotion Calendar Helper (Renderer)Notion Helper (Renderer)claudeClaude Helper (Renderer)FirefoxCP Isolated Web ContentFirefoxCP Isolated Web ContentiTerm2FirefoxCP Isolated Web ContentscreenpipeMEMORY PRESSUREMem...2,05 GB1,21 GB1 021,9 MB963,0 MB838,0 MB801,9 MB794,5 MB547,5 MB544,2 MB543,9 MB515,9 MB497,4 MB470,7 MB416,6 MB408,6 MB395,7 MB393,1 MB386,5 MB372,6 MB347,1 MB328,4 MB326,2 MB325,9 MB291,6 MB264,7 MB259,4 MB241,6 MB221,6 MBPhysical Memory:Memory Used:Cached Files:Swap Used:100% <478Wed 15 Apr 17:39:51CPUMemoryDiskThreads39237426862824292712241526232624272315211315272772660EnergyPorts60619 8067291251 20212920 047125242254167121185124121126121125120172328722191231261 833122515PID93892407801442974146644203084236713801914673938993548041863358313527643016368984365248173265481148509106051935833482984878561384287616,00 GB14,13 GB <1,83 GB3,15 GBApp Memory:Wired Memory:Compressed:NetworkUserlukas_windowserverlukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukas3,64 GB2,88 GB7,06 GB...
|
29434
|
|
4573
|
86
|
67
|
2026-04-13T12:27:12.149407+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776083232149_m1.jpg...
|
Boosteroid
|
Boosteroid
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowDOC iTerm2ShellEditViewSessionScriptsProfilesWindowDOCKERO ₴1DEV (-zsh)Claude (~5 min)- Used Claude,likelyrelatedO 882APP (-zsh)• *3Help* Unable to access screenpipe activity data-zsh• 84-zsh• 25>0 l4l-zsh87% K428Mon 13 Apr 15:27:11181₴86-zsh®0 87* Unable to access s...screenpipe work (querying the screenpipe search API)TL;DR: Mostly a devdayfocusedon building something with screenpipe data (a reporting UI), some light work task-checking on Jira/email, and evening readingon Slovak news.what did I dotodayso farThe screenpipe MCPserver has disconnected, so I can't query your activity right now.You'd need to reconnect it to get today's summary.You can try restartingthe screenpipe MCP server and then ask again.give me summary forlast 48 hoursThe screenpipe MCPserver is still disconnected - I don't have access to those tools. You'llneed to reconnect it first.If screenpipe is running locally, you can try restarting the MCP server or check its status with ! screenpipe or however you normally manage it.it is healhty and running, chekc againThe tools aren't showing up in my session even though screenpipe is running. This likely means the MCP connection needs to be re-established on the Claude Code side.Try running ! claude mep list to check the MCP server status, or restart Claude Code to reconnect the screenpipe MCP server.claude mep listBash(claude mcp list)Running...sash commandclaude mcp listRun shell commandhis command requires approvalo you want to proceed?• 1.Yes2.Yes, and don't ask again for: claude mcp:*3. Noisc to cancel • Tab to amend • ctrl+e to explain...
|
NULL
|
8392397778218985139
|
NULL
|
click
|
ocr
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowDOC iTerm2ShellEditViewSessionScriptsProfilesWindowDOCKERO ₴1DEV (-zsh)Claude (~5 min)- Used Claude,likelyrelatedO 882APP (-zsh)• *3Help* Unable to access screenpipe activity data-zsh• 84-zsh• 25>0 l4l-zsh87% K428Mon 13 Apr 15:27:11181₴86-zsh®0 87* Unable to access s...screenpipe work (querying the screenpipe search API)TL;DR: Mostly a devdayfocusedon building something with screenpipe data (a reporting UI), some light work task-checking on Jira/email, and evening readingon Slovak news.what did I dotodayso farThe screenpipe MCPserver has disconnected, so I can't query your activity right now.You'd need to reconnect it to get today's summary.You can try restartingthe screenpipe MCP server and then ask again.give me summary forlast 48 hoursThe screenpipe MCPserver is still disconnected - I don't have access to those tools. You'llneed to reconnect it first.If screenpipe is running locally, you can try restarting the MCP server or check its status with ! screenpipe or however you normally manage it.it is healhty and running, chekc againThe tools aren't showing up in my session even though screenpipe is running. This likely means the MCP connection needs to be re-established on the Claude Code side.Try running ! claude mep list to check the MCP server status, or restart Claude Code to reconnect the screenpipe MCP server.claude mep listBash(claude mcp list)Running...sash commandclaude mcp listRun shell commandhis command requires approvalo you want to proceed?• 1.Yes2.Yes, and don't ask again for: claude mcp:*3. Noisc to cancel • Tab to amend • ctrl+e to explain...
|
4572
|