|
49091
|
1753
|
44
|
2026-05-15T11:21:19.248263+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-15/1778 /Users/lukas/.screenpipe/data/data/2026-05-15/1778844079248_m2.jpg...
|
PhpStorm
|
faVsco.js – UserAutomatedReportsController.php
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
pipedrive-sdk-poc, menu
S Project: faVsco.js, menu
pipedrive-sdk-poc, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
14
2
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Http\Controllers\API\UserAutomatedReports;
use Illuminate\Support\Carbon;
use Illuminate\Http\JsonResponse;
use Jiminny\Exceptions\ApplicationException;
use Jiminny\Http\Controllers\Controller;
use Jiminny\Http\Responses\Api\Response;
use Jiminny\Models\User;
use Jiminny\Repositories\AutomatedReportsRepository;
use Jiminny\Services\ApiResponseService;
use Jiminny\Services\Kiosk\AutomatedReports\AutomatedReportsService;
use Jiminny\Services\Kiosk\AutomatedReports\ReportSort;
use Jiminny\Services\Kiosk\AutomatedReports\ReportSortDirection;
use Jiminny\Services\PlanhatService;
use Illuminate\Http\Request;
use Throwable;
class UserAutomatedReportsController extends Controller
{
public const int RESULTS_PER_PAGE = 25;
public const string SORT_COLUMN = 'sort_column';
public const string SORT_DIRECTION = 'sort_direction';
public function __construct(
private readonly AutomatedReportsRepository $automatedReportsRepository,
private readonly AutomatedReportsService $automatedReportsService,
private readonly ApiResponseService $apiResponseService,
private readonly Response $response,
private readonly PlanhatService $planhatService,
) {
parent::__construct();
}
public function trackInterest(Request $request): JsonResponse
{
/** @var User $user */
$user = $request->user();
defer(
fn () => $this->planhatService->track(
user: $user,
event: 'automated-reports-track-interest',
)
)->always();
return $this->response->withOk();
}
/**
* @throws ApplicationException
*/
public function list(Request $request): JsonResponse
{
/** @var User $user */
$user = $request->user();
$teamIds = $request->has('team')
? (array) $request->get('team')
: [];
$reportTypes = $request->has('report_type')
? (array) $request->get('report_type')
: [];
$name = $request->has('name') ? trim($request->get('name', '')) : null;
try {
$fromDate = $request->has('from_date') ? Carbon::parse($request->get('from_date')) : null;
$toDate = $request->has('to_date') ? Carbon::parse($request->get('to_date')) : null;
} catch (\Exception) {
return $this->response->errorWrongArgs('Invalid date.');
}
$page = $request->has('page') ? (int) $request->get('page') : 1;
$sort = ReportSort::tryFrom(
$request->get(self::SORT_COLUMN, '')
) ?? ReportSort::GENERATED_AT;
$sortDirection = ReportSortDirection::tryFrom(
strtolower($request->get(self::SORT_DIRECTION, ''))
) ?? ReportSortDirection::DESC;
$paginatedUserReports = $this->automatedReportsRepository->getPaginatedUserReports(
user: $user,
sort: $sort,
sortDirection: $sortDirection,
resultsPerPage: self::RESULTS_PER_PAGE,
page: $page,
fromDate: $fromDate,
toDate: $toDate,
teamIds: array_map('intval', $teamIds),
reportTypes: $reportTypes,
name: $name,
);
$reportResults = $this->automatedReportsService->transformReportResults(
$paginatedUserReports->getCollection()
);
$team = $user->getTeam();
$reportTypeFilter = $this->automatedReportsService->getReportTypeFieldData(
shortVersion: true,
team: $team
);
$data = $this->apiResponseService->fromPaginatorToArray(
paginator: $paginatedUserReports,
data: $reportResults,
moreMeta: [
self::SORT_COLUMN => $sort->value,
self::SORT_DIRECTION => $sortDirection->value,
],
filters: [
$reportTypeFilter['id'] => $reportTypeFilter,
],
);
return $this->response->withArray($data);
}
public function delete(Request $request, string $uuid): JsonResponse
{
/** @var User $user */
$user = $request->user();
try {
$result = $this->automatedReportsRepository->findResultByUuidForUser($uuid, $user);
if ($result === null) {
return new JsonResponse(
data: ['error' => 'Report not found'],
status: JsonResponse::HTTP_NOT_FOUND
);
}
$result->delete();
return new JsonResponse(null, JsonResponse::HTTP_NO_CONTENT);
} catch (Throwable $e) {
return new JsonResponse(
data: ['error' => 'Failed to delete report result'],
status: JsonResponse::HTTP_INTERNAL_SERVER_ERROR
);
}
}
}
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
40
1
40
65
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE name LIKE '%litify%'; # 1069, 994, 24993
SELECT * FROM users WHERE id = 25061;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 994;
SELECT * FROM crm_profiles WHERE user_id = 25061;
select * from crm_configurations where id = 834;
SELECT * FROM teams WHERE id = 882;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 882 and sa.provider = 'hubspot';
SELECT * FROM crm_configurations where id = 882; # 933 - GoGlobal
SELECT * FROM opportunities WHERE team_id = 933 order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 933 and sa.provider = 'hubspot';
SELECT * FROM crm_configurations WHERE provider = 'hubspot' and crm_provider_id = 7270388;
SELECT * FROM contacts where crm_configuration_id = 834;
SELECT * FROM opportunities WHERE team_id = 933
# AND crm_provider_id IN ('20131586060','46017317898','52543911090','53451356564','54101251892','54323768459');
AND id IN (8482561,18352941,19042734,19232139,19445140,19472541);
SELECT * FROM opportunity_contacts
WHERE opportunity_id IN (8482561,18352941,19042734,19232139,19445140,19472541);
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 485; #
SELECT * FROM opportunities WHERE team_id = 933 order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 933 and sa.provider = 'hubspot';
select crm.provider, l.* from leads l join crm_configurations crm on l.crm_configuration_id = crm.id
where crm.provider NOT IN ('salesforce', 'integration-app', 'bullhorn', 'copper')
# and l.converted_at IS NOT NULL
;
# [PASSWORD_DOTS]
SELECT * FROM activities a WHERE type IN ('email-inbound', 'email-outbound')
and opportunity_id IS NULL
order by id desc;
SELECT * FROM teams WHERE id = 604; # 598
SELECT * FROM activities WHERE id = 74410828; # [EMAIL]
SELECT * FROM accounts WHERE id = 20068382;
SELECT * FROM accounts WHERE id = 35186038;
SELECT * FROM contacts WHERE team_id = 852 and updated_at > '2026-01-23 12:30:00' order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 559 and sa.provider = 'hubspot';
SELECT * FROM activities WHERE uuid_to_bin('cb6342b6-a183-401c-b0af-ede92b2ae763') = uuid;
select * from sidekick_settings where team_id = 781;
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 26651871; # Teya
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 7562435;
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 8420347; # opflit 2100
SELECT * FROM crm_layouts WHERE crm_configuration_id = 711;
SELECT * FROM activities where crm_configuration_id = 711 and crm_provider_id IS NULL
and is_internal = 0 and status = 'completed'
order by id desc;
SELECT * FROM crm_layout_entities
WHERE crm_layout_id IN (2352, 2353);
;
SELECT * FROM crm_configurations where provider = 'hubspot' and id = 530;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 556 and sa.provider = 'hubspot';
SELECT * FROM activities WHERE uuid_to_bin('c6ca4b22-7738-4563-a95d-b8a9598924ae') = uuid;
SELECT * FROM activities WHERE uuid_to_bin('442abb2b-28bd-4be8-9c25-19e9bf02766d') = uuid;
select * from contacts
where crm_configuration_id = 530
and crm_provider_id = 872252;
select * from activities where crm_configuration_id = 530
and user_id = 14343 and type like '%softphone%'
and created_at between '2026-01-28 15:00:00' and '2026-01-28 15:10:00';
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 25666868; # Teya
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 8646335; # Teya
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id IN (5933397);
SELECT t.name, t.id, t.owner_id, c.id, c.provider, c.crm_base_url FROM teams t
JOIN crm_configurations c ON t.id = c.team_id
WHERE t.status = 'active';
SELECT * FROM teams where id = 1091;
SELECT * FROM crm_configurations where team_id = 1091;
SELECT * FROM activity_providers where team_id = 1091;
SELECT * FROM activities where crm_configuration_id = 1024 and type IN ('softphone', 'softphone-outbound')
and provider NOT IN ('hubspot', 'aircall')
# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'
order by id desc;
SELECT * FROM teams WHERE name LIKE '%Leadventure%';
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1091 and sa.provider = 'salesforce';
SELECT * FROM teams WHERE name LIKE '%Wilson%'; # 862, 812
SELECT * FROM teams where id = 862;
SELECT * FROM crm_configurations where team_id = 862;
SELECT * FROM activity_providers where team_id = 862;
SELECT * FROM activities where crm_configuration_id = 812 and type IN ('softphone', 'softphone-outbound')
and provider NOT IN ('hubspot', 'aircall')
# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'
order by id desc;
SELECT t.id, crm.id, crm.provider, ap.* FROM teams t
join crm_configurations crm on t.id = crm.team_id
join activity_providers ap on t.id = ap.team_id
where t.status = 'active' and ap.is_enabled = 1
and crm.provider = 'hubspot'
and ap.provider NOT IN ('hubspot', 'aircall', 'uploader', 'gong', 'twilio', 'zoom-bot', 'google-meet', 'ms-teams',
'outreach', 'close', 'ringcentral', 'dialpad', 'zoom-phone');
SELECT * FROM teams where id = 1068;
SELECT * FROM crm_configurations where team_id = 1068;
SELECT * FROM activity_providers where team_id = 1068;
SELECT * FROM activities a
where crm_configuration_id = 993 and type IN ('softphone', 'softphone-outbound')
and a.provider NOT IN ('hubspot', 'uploader', 'gong', 'twilio', 'google-meet', 'ms-teams','close'
)
# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'
order by a.id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1068 and sa.provider = 'hubspot';
# [PASSWORD_DOTS]
# [PASSWORD_DOTS]
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 882; # 933 - GoGlobal , portalId: 6017093
SELECT * FROM opportunities WHERE team_id = 933 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 933 and updated_at > '2026-02-06 00:00:00' order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 933 and sa.provider = 'hubspot';
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 834; # 882 - AnyVan , portalId: 5468262
SELECT * FROM contacts WHERE crm_configuration_id = 834 and updated_at > '2026-03-30 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE crm_configuration_id = 834 and updated_at > '2026-03-04 08:00:00' order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 882 and sa.provider = 'hubspot';
select * from crm_layouts where crm_configuration_id = 834;
select * from crm_layout_entities where crm_layout_id = 2780;
select * from crm_fields where id IN (321153,321192,321193,321194);
SELECT * FROM opportunities WHERE crm_configuration_id = 834 and id = 10993426;
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 988; # 1057 - Teya (543ce4f4-168c-4571-91ea-5b35c253f06f) , portalId: 26651871
SELECT * FROM opportunities WHERE team_id = 1057 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1057 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1057 and sa.provider = 'hubspot';
SELECT * FROM crm_configurations where id = 533; # 559 - Connectd , portalId: 6710988
SELECT * FROM opportunities WHERE team_id = 559 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 559 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;
SELECT * FROM crm_configurations where id = 801; # 852 - Rise Vision , portalId: 2700250
SELECT * FROM opportunities WHERE team_id = 852 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 852 and updated_at > '2026-02-04 00:00:00' order by updated_at desc; # 6th last
SELECT * FROM crm_configurations where id = 962; # 1034 - evergrowth.io , portalId: 143180990
SELECT * FROM opportunities WHERE team_id = 1034 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1034 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 1037; # 1102 - Jibble , portalId: 6649755
SELECT * FROM opportunities WHERE team_id = 1102 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1102 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 8
SELECT * FROM crm_configurations where id = 1015; # 1049 - Travefy , portalId: 48904401
SELECT * FROM opportunities WHERE team_id = 1049 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1049 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 20
SELECT * FROM crm_configurations where id = 64; # 70 - SalaryFinance , portalId: 3404115
SELECT * FROM opportunities WHERE team_id = 70 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 70 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 6th last
SELECT * FROM crm_configurations where id = 802; # 853 - Street Group , portalId: 7658438
SELECT * FROM opportunities WHERE team_id = 853 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 853 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 10
SELECT * FROM crm_configurations where id = 872; # 921 - In Professional Development , portalId: 9238273
SELECT * FROM opportunities WHERE team_id = 921 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 921 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 2
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 550; # 576 - SeedLegals , portalId: 3028661
SELECT * FROM opportunities WHERE team_id = 576 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 576 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;
SELECT * FROM crm_configurations where id = 989; # 1058 - rtaoutdoor.com , portalId: 22371204
SELECT * FROM opportunities WHERE team_id = 1058 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1058 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;
SELECT * FROM crm_configurations where id = 896; # 946 - Mintago , portalId: 6621281
SELECT * FROM opportunities WHERE team_id = 946 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 946 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;
SELECT * FROM crm_configurations where id = 617; # 641 - PCS , portalId: 5244937
SELECT * FROM opportunities WHERE team_id = 641 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 641 and updated_at > '2026-02-05 14:00:00' order by updated_at desc; # 7th
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 649; # 670 - Eventeny , portalId: 4492849
SELECT * FROM opportunities WHERE team_id = 670 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 670 and updated_at > '2026-02-09 08:00:00' order by updated_at desc; #
SELECT * FROM crm_configurations where id = 48; # 51 - CleanCloud , portalId: 4373137
SELECT * FROM opportunities WHERE team_id = 51 and updated_at > '2026-03-04 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 51 and updated_at > '2026-02-09 08:00:00' order by updated_at desc;
select * from users where team_id = 51; # 7783
SELECT * FROM groups WHERE uuid_to_bin('8a8d2cb6-8b55-4fa3-8b5c-5f0e3d8de59a') = uuid; # 1130
select * from activity_searches where user_id = 7783;
select * from activity_search_filters where activity_search_id IN (32291, 32292);
SELECT asf.activity_search_id, asf.id, asf.value
FROM activity_search_filters asf
WHERE asf.filter = 'group_id'
AND asf.value IN (
SELECT CONCAT(
HEX(SUBSTR(uuid, 5, 4)), '-',
HEX(SUBSTR(uuid, 3, 2)), '-',
HEX(SUBSTR(uuid, 1, 2)), '-',
HEX(SUBSTR(uuid, 9, 2)), '-',
HEX(SUBSTR(uuid, 11))
)
FROM groups
WHERE deleted_at IS NOT NULL
);
SELECT * FROM crm_configurations where id = 272; # 290 - Bonham & Brook , portalId: 5705856
SELECT * FROM opportunities WHERE team_id = 290 and updated_at > '2026-02-05 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 290 and updated_at > '2026-02-09 08:00:00' order by updated_at desc; # 6th
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where provider = 'hubspot';
SELECT * FROM crm_configurations where id = 1056; # 1119 - Chromatic , portalId: 45602133
SELECT * FROM opportunities WHERE team_id = 1119 and remotely_created_at > '2026-02-01 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1119 and updated_at > '2026-02-09 09:00:00' order by updated_at desc; # null
# [PASSWORD_DOTS]
select * from contacts where crm_provider_id = '003Uu00000ojD4NIAU';
select
cp.*
# DISTINCT t.id
# cp.id, cp.user_id, t.id, cp.crm_configuration_id, cp.contact_fields
FROM crm_profiles cp
JOIN crm_configurations crm on crm.id = cp.crm_configuration_id
JOIN users u on u.id = cp.user_id
JOIN teams t ON t.id = crm.team_id
WHERE crm.provider = 'salesforce' and t.status = 'active'
and cp.archived_at IS NULL and u.deleted_at IS NULL
and t.id NOT IN (1093)
and t.id = 2
and cp.contact_fields IS NULL;
# and c.crm_provider_id = '003Uu00000ojD4NIAU';
SELECT * FROM users WHERE id = 26484;
SELECT * FROM crm_profiles WHERE user_id = 26484;
SELECT * FROM social_accounts WHERE sociable_id = 26484;
SELECT * FROM crm_configurations where provider = 'salesforce';
select * from users where id IN (10022, 10403);
select * from users where team_id IN (526);
select * from teams where id IN (526, 532);
select * from crm_configurations where id IN (500, 516);
select * from crm_profiles where crm_configuration_id IN (500, 516) and user_id IN (10022, 10403);
select * from contacts where crm_configuration_id IN (500, 516) and crm_provider_id = '003Uu00000ojD4NIAU';
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 526 and sa.provider = 'salesforce';
select * from team_settings where team_id IN (526, 532);
select * from users where id IN (22824);
select * from crm_profiles where crm_configuration_id IN (1026);
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1093 and sa.provider = 'salesforce';
select * from teams where id = 1099;
select * from users where id = 29643
select * from activity_processing_states;
SELECT * FROM teams where name LIKE '%Fare%'; # 233
SELECT * FROM opportunities where crm_configuration_id = 215
# and crm_provider_id = 'oppo_ogESZf2P50nDrd1nGPvKDXeA6sSaTN5v51Lp4ayVzKR'
;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1088 and sa.provider = 'hubspot';
SELECT * FROM teams order by updated_at DESC
SELECT * FROM crm_configurations WHERE id = 1019; # SimpleConsign 1088 - no social account
select * from crm_configurations where provider = 'pipedrive';
select * from teams where id = 957;
select * from crm_configurations where id = 957;
SELECT * FROM teams WHERE name LIKE '%Prolific%'; # 544, 518, 10743
SELECT * FROM opportunities where crm_configuration_id = 518 order by id desc;
select * from users where team_id = 1; # 26726 - Gabriela Dureva
SELECT * FROM opportunities where user_id = 26726; # 16834447 - Prolific
select * from activities where user_id = 26726 order by id desc;
select * from contacts where crm_configuration_id = 1
and email IN ('[EMAIL]', '[EMAIL]'); # 2094416, 2093620
SELECT * FROM contacts WHERE id = 6284931;
SELECT p.* FROM activities a JOIN participants p ON a.id = p.activity_id
WHERE a.user_id = 26726 and p.lead_id IN (2094416, 2093620) and a.created_at > '2026-01-01 00:00:00' order by p.email;
select * from activities where id IN (75509259,75509261,75509261,75511034,75026464,75517602,75517605);
select * from crm_configurations where id = 1;
43801692-1aeb-32ce-acba-5b80a479701a
44c3c9cf-6f5e-75f3-8179-bc9f75dd2b1b
405975c0-b3d0-7aaa-821f-09d59cae6dd1
4caf848d-4bed-2299-b248-7788d41f9fca
49bedc3f-f196-eef3-89c3-dea6a3b4aa63
43420989-a09d-b8f8-9806-c8bbf7a02aac
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
SELECT * FROM activities WHERE id = 75461988;
SELECT * FROM activities WHERE uuid_to_bin('d6c5052e-e972-49e9-8912-26f2f7d6c5f6') = uuid;
select * from contacts where id = 17900517;
select * from contact_roles cr join crm_configurations crm on cr.crm_configuration_id = crm.id
where crm.provider != 'salesforce';
select * from users where id = 21047;
SELECT * FROM crm_configurations WHERE id = 892;
SELECT * FROM teams WHERE id = 942;
select * from opportunities where team_id = 942 order by updated_at desc;
select * from contacts where team_id = 942 order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 942 and sa.provider = 'hubspot';
SELECT * FROM opportunities where team_id = 1 and crm_provider_id IN ('006Pq00000NeH6XIAV', '006Pq000007z8kdIAA'); # 10697889, 6621430
SELECT * FROM crm_configurations WHERE id = 1;
SELECT * FROM teams WHERE crm_id = 1;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select id, user_id, opportunity_fields from crm_profiles where crm_configuration_id = 1
SELECT * FROM opportunities where team_id = 1 order by updated_at desc; # 10697889, 6621430
select * from teams where id = 852;
select * from groups where id = 2286;
select * from sidekick_settings where team_id = 852;
select * from default_activity_types where team_id = 852;
SELECT cc.provider, cc.id, p.id, u.*
FROM users u
LEFT JOIN crm_profiles p ON u.id = p.user_id AND p.id IS NULL -- no profile
INNER JOIN teams t ON u.team_id = t.id AND t.status = 'active' -- team is active
INNER JOIN crm_configurations cc ON t.crm_id = cc.id
WHERE u.status = 1 AND u.deleted_at IS NULL
AND u.crm_required = 1
AND u.team_id = 1
ORDER BY u.team_id;
SELECT * FROM crm_profiles cp where cp.crm_configuration_id = 1 and cp.user_id IN (
18481
);
SELECT cc.provider, cc.id, p.id, u.*
FROM users u
LEFT JOIN crm_profiles p ON u.id = p.user_id
INNER JOIN teams t ON u.team_id = t.id AND t.status = 'active'
INNER JOIN crm_configurations cc ON t.crm_id = cc.id
WHERE u.status = 1
AND u.deleted_at IS NULL
AND u.crm_required = 1
# AND u.team_id = 1
AND p.id IS NULL -- Move this condition to WHERE clause
ORDER BY u.team_id;
SELECT * FROM opportunities WHERE id = 20002609;
select * from teams where id = 1122; # Velatir, 29953 - [EMAIL]
select * from crm_configurations where id = 1060;
select * from crm_layouts where crm_configuration_id = 1060;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 3596;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1122 and sa.provider = 'hubspot';
select * from opportunities where team_id = 1122 order by updated_at desc;
select * from crm_field_data where object_type = 'contact';
SELECT * FROM activities WHERE uuid_to_bin('374fc8ed-3315-4c9f-9b25-318b7fd2928f') = uuid; # 76584262
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 248 and sa.provider = 'salesforce';
SELECT * FROM crm_profiles where user_id = 24115; # 005QF000002CswMYAS
SELECT * FROM users where id = 24115;
SELECT * FROM accounts where id = 4002896;
SELECT * FROM teams WHERE name LIKE '%adswerve%';
SELECT * FROM opportunities where crm_configuration_id = 230 AND crm_provider_id IN ("0069N000003GIQ9QAO","0061r000019yGP9AAM","0066900001S2KWlAAN","0066900001TDpj2AAD","0066900001b8uEwAAI","0069N000001rQi0QAE","006QF00000KD40mYAD","006QF00000LzpRJYAZ","0069N000002uomtQAA","0069N000002xlMLQAY","0066900001NV6ubAAD","0061r00001HJp45AAD","006QF00000uTlUoYAK","006QF00000v0bZqYAI");
SELECT * FROM opportunities WHERE crm_configuration_id = 230 AND crm_provider_id = '0069N000003GIQ9QAO'; # 6272203
SELECT u.id, u.email, ac.name, a.* FROM activities a
JOIN users u ON a.user_id = u.id
JOIN accounts ac ON a.account_id = ac.id
WHERE
uuid_to_bin('e3269598-b562-44fb-b5e9-9d2694dc63e0') = a.uuid or
uuid_to_bin('66ddc3ab-4e15-45aa-af0c-248c1eece593') = a.uuid or
uuid_to_bin('826bd328-e1cc-4213-b8d8-572454cacc07') = a.uuid;
select * from users where id = 5825;
SELECT * FROM activities WHERE uuid_to_bin('e56aa2e8-231a-421b-ab1f-cb38ed2bf573') = uuid;
select * from activities where uuid_to_bin('91e13b2f-2d1b-45f8-b1fd-1141b6563782') = uuid;
19594, 862
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 862 and sa.provider = 'salesforce';
select * from automated_reports where id = 36;
select ar.frequency, r.*, ar.* from automated_report_results r
join automated_reports ar on r.report_id = ar.id
where ar.frequency != 'one_off';
select s.* from activity_searches s join users u ON s.user_id = u.id where u.team_id = 882;
select * from nudges n where n.activity_search_id
select * from teams where created_at > '2026-03-09';
SELECT * FROM crm_layouts WHERE crm_configuration_id = 1065; # 1065
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 3617;
select * from users where team_id = 1 and name like '%Lukas%'; # 7160
SELECT * FROM teams WHERE id = 575;
select * from opportunities where team_id = 575;
SELECT * FROM teams WHERE name LIKE '%Integrum ESG%'; # 1126, 1065,
select * from opportunities where team_id = 1126;
SELECT * FROM teams WHERE name LIKE '%Base%'; # 1125, 1063,
select * from opportunities where team_id = 1125;
select * from contacts c
where c.team_id = 882;
SELECT * FROM activities WHERE id = 76822967;
SELECT * FROM crm_profiles WHERE user_id = 15440;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 555;
SELECT * FROM crm_configurations WHERE id = 555;
SELECT * FROM users WHERE id = 15440; # team. 581, gr. 15440, pl. 3911, act. field 162182
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 581 and sa.provider = 'salesforce';
SELECT * FROM automated_report_results order by id desc;
select * from features;
select * from team_features where feature_id = 40;
select * from teams where id = 556;
select * from automated_reports;
where id = 54; # 4fdd41f6-dcf0-30d0-b339-7345381b6044 , ["pdf","podcast"]
SELECT * FROM automated_report_results WHERE uuid_to_bin('822fa41b-afd3-43a9-a248-86b0e36f3131') = uuid;
select * from automated_report_results order by id desc;
SELECT * FROM automated_report_results WHERE id = 1919;
select * from automated_report_results WHERE report_id = 54;
select * from opportunities where id = 7594349;
SELECT * FROM teams WHERE name LIKE '%Les%'; # 711, 692, 16067 - [EMAIL]
select * from playbooks where team_id = 711; # event 226147
SELECT * FROM playbook_categories WHERE playbook_id = 5515;
SELECT * FROM crm_fields WHERE crm_configuration_id = 692 and object_type = 'event';
SELECT * FROM crm_fields WHERE id = 226147;
SELECT * FROM crm_field_values WHERE crm_field_id = 226147;
SELECT * FROM crm_configurations WHERE id = 692;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 711 and sa.provider = 'salesforce';
SELECT * FROM crm_profiles cp JOIN users u on u.id = cp.user_id WHERE u.team_id = 711;
select * from leads;
select * from calendars;
SELECT
t.id AS team_id,
t.name,
LOWER(SUBSTRING_INDEX(c.calendar_provider_id, '@', -1)) AS calendar_domain
FROM teams t
JOIN users u ON u.team_id = t.id
JOIN calendars c ON c.user_id = u.id AND c.status = 'active' AND c.calendar_provider_id LIKE '%@%'
LEFT JOIN team_domains td
ON td.team_id = t.id
AND td.deleted_at IS NULL
AND td.domain = LOWER(SUBSTRING_INDEX(c.calendar_provider_id, '@', -1))
GROUP BY t.id, t.name, calendar_domain
ORDER BY t.name, calendar_domain;
select * from users u join calendars c on c.user_id = u.id
where u.team_id = 882;
select * from activities where id = 74049485; # team 563 crm 537
select * from activities where id = 73272382; # team 563 crm 537
select * from activities where id = 64400389; # team 563 crm 537
select * from activities where id = 58081273; # team 563 crm 537
select * from activities where id = 54520297; # team 563 crm 537
select * from participants where activity_id = 58081273;
select * from activities where crm_configuration_id = 537 and provider = 'aircall'
and account_id = 19003658 order by updated_at desc;
select * from contacts where crm_configuration_id = 537 and id = 35957759;
select * from accounts where crm_configuration_id = 537 and id = 19003658;
select * from automated_report_results where id = 1976;
select * from automated_reports where id = 583;
select * from activity_searches where id = 87714;
select * from activity_search_filters where activity_search_id = 87714;
SELECT * FROM activities WHERE uuid_to_bin('8827f672-202d-4162-9d04-73ff5f0566a9') = uuid
or uuid_to_bin('47842446-af51-4bcb-854f-cc6560290101') = uuid;
SELECT * FROM crm_configurations WHERE provider = 'hubspot';
select * from rate_limits;
select * from automated_report_results where media_type = 'pdf' and status = 2
and id IN (18, 1872);
select * from automated_reports where id = 54;
SELECT * FROM users WHERE id IN (24623,29443,29613);
SELECT * FROM automated_report_results WHERE uuid_to_bin('822fa41b-afd3-43a9-a248-86b0e36f3131') = uuid;
select * from text_relays where created_at > '2026-05-01'
and id IN (32415, 32416);
# and id = 32412;
select * from users where team_id = 2 and email like '%scott%' and id = 29510;
SELECT * FROM activities WHERE uuid_to_bin('67cebfc2-ed56-44a2-8c68-7a0286ed8618') = uuid; # 79763436
SELECT email_provider_id, COUNT(*) as count, GROUP_CONCAT(id) as ids, GROUP_CONCAT(status) as statuses
FROM text_relays
WHERE email_provider_id IN ('19e2027868a64b42', '19e2033ed8ea6b10')
GROUP BY email_provider_id;
SELECT id, status, telephony_provider_id, created_at
FROM activities
WHERE id IN (80028719, 80028846);
SELECT id, status, code, email_sent_at, created_at, updated_at
FROM text_relays
WHERE id IN (32415, 32416);
SELECT id, status, code, sender, recipient, created_at
FROM text_relays
WHERE sender LIKE '%mario.georgiev%' OR sender LIKE '%stoyan.tomov%'
ORDER BY created_at DESC
LIMIT 10;
SELECT id, uuid, status, code, sender, recipient, created_at, updated_at
FROM text_relays
WHERE uuid = uuid_to_bin('0626141c-27a6-4d8c-aff8-7c8020a2c656');
# [PASSWORD_DOTS]
SELECT DISTINCT u.id, u.email, u.name, u.softphone_number, COUNT(a.id) as sms_count
FROM users u
INNER JOIN activities a ON u.id = a.user_id
WHERE a.type LIKE 'sms%'
# AND a.created_at > DATE_SUB(NOW(), INTERVAL 30 DAY)
GROUP BY u.id, u.email, u.name, u.softphone_number
ORDER BY sms_count DESC;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
[{"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},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"pipedrive-sdk-poc, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.05618351,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: pipedrive-sdk-poc","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.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"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.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"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.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"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.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"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.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"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},"on_screen":false,"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},"on_screen":false,"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},"on_screen":false,"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},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"14","depth":4,"bounds":{"left":0.32845744,"top":0.273743,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"2","depth":4,"bounds":{"left":0.34009308,"top":0.273743,"width":0.007978723,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.34973404,"top":0.27214685,"width":0.00731383,"height":0.018355945},"on_screen":true,"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.3570479,"top":0.27214685,"width":0.006981383,"height":0.018355945},"on_screen":true,"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\\Http\\Controllers\\API\\UserAutomatedReports;\n\nuse Illuminate\\Support\\Carbon;\nuse Illuminate\\Http\\JsonResponse;\nuse Jiminny\\Exceptions\\ApplicationException;\nuse Jiminny\\Http\\Controllers\\Controller;\nuse Jiminny\\Http\\Responses\\Api\\Response;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Repositories\\AutomatedReportsRepository;\nuse Jiminny\\Services\\ApiResponseService;\nuse Jiminny\\Services\\Kiosk\\AutomatedReports\\AutomatedReportsService;\nuse Jiminny\\Services\\Kiosk\\AutomatedReports\\ReportSort;\nuse Jiminny\\Services\\Kiosk\\AutomatedReports\\ReportSortDirection;\nuse Jiminny\\Services\\PlanhatService;\nuse Illuminate\\Http\\Request;\nuse Throwable;\n\nclass UserAutomatedReportsController extends Controller\n{\n public const int RESULTS_PER_PAGE = 25;\n\n public const string SORT_COLUMN = 'sort_column';\n\n public const string SORT_DIRECTION = 'sort_direction';\n\n public function __construct(\n private readonly AutomatedReportsRepository $automatedReportsRepository,\n private readonly AutomatedReportsService $automatedReportsService,\n private readonly ApiResponseService $apiResponseService,\n private readonly Response $response,\n private readonly PlanhatService $planhatService,\n ) {\n parent::__construct();\n }\n\n public function trackInterest(Request $request): JsonResponse\n {\n /** @var User $user */\n $user = $request->user();\n\n defer(\n fn () => $this->planhatService->track(\n user: $user,\n event: 'automated-reports-track-interest',\n )\n )->always();\n\n return $this->response->withOk();\n }\n\n /**\n * @throws ApplicationException\n */\n public function list(Request $request): JsonResponse\n {\n /** @var User $user */\n $user = $request->user();\n\n $teamIds = $request->has('team')\n ? (array) $request->get('team')\n : [];\n $reportTypes = $request->has('report_type')\n ? (array) $request->get('report_type')\n : [];\n $name = $request->has('name') ? trim($request->get('name', '')) : null;\n\n try {\n $fromDate = $request->has('from_date') ? Carbon::parse($request->get('from_date')) : null;\n $toDate = $request->has('to_date') ? Carbon::parse($request->get('to_date')) : null;\n } catch (\\Exception) {\n return $this->response->errorWrongArgs('Invalid date.');\n }\n\n $page = $request->has('page') ? (int) $request->get('page') : 1;\n $sort = ReportSort::tryFrom(\n $request->get(self::SORT_COLUMN, '')\n ) ?? ReportSort::GENERATED_AT;\n $sortDirection = ReportSortDirection::tryFrom(\n strtolower($request->get(self::SORT_DIRECTION, ''))\n ) ?? ReportSortDirection::DESC;\n\n $paginatedUserReports = $this->automatedReportsRepository->getPaginatedUserReports(\n user: $user,\n sort: $sort,\n sortDirection: $sortDirection,\n resultsPerPage: self::RESULTS_PER_PAGE,\n page: $page,\n fromDate: $fromDate,\n toDate: $toDate,\n teamIds: array_map('intval', $teamIds),\n reportTypes: $reportTypes,\n name: $name,\n );\n\n $reportResults = $this->automatedReportsService->transformReportResults(\n $paginatedUserReports->getCollection()\n );\n $team = $user->getTeam();\n $reportTypeFilter = $this->automatedReportsService->getReportTypeFieldData(\n shortVersion: true,\n team: $team\n );\n\n $data = $this->apiResponseService->fromPaginatorToArray(\n paginator: $paginatedUserReports,\n data: $reportResults,\n moreMeta: [\n self::SORT_COLUMN => $sort->value,\n self::SORT_DIRECTION => $sortDirection->value,\n ],\n filters: [\n $reportTypeFilter['id'] => $reportTypeFilter,\n ],\n );\n\n return $this->response->withArray($data);\n }\n\n public function delete(Request $request, string $uuid): JsonResponse\n {\n /** @var User $user */\n $user = $request->user();\n\n try {\n $result = $this->automatedReportsRepository->findResultByUuidForUser($uuid, $user);\n\n if ($result === null) {\n return new JsonResponse(\n data: ['error' => 'Report not found'],\n status: JsonResponse::HTTP_NOT_FOUND\n );\n }\n\n $result->delete();\n\n return new JsonResponse(null, JsonResponse::HTTP_NO_CONTENT);\n } catch (Throwable $e) {\n return new JsonResponse(\n data: ['error' => 'Failed to delete report result'],\n status: JsonResponse::HTTP_INTERNAL_SERVER_ERROR\n );\n }\n }\n}","depth":4,"bounds":{"left":0.13696809,"top":0.0,"width":0.22706117,"height":1.0},"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Http\\Controllers\\API\\UserAutomatedReports;\n\nuse Illuminate\\Support\\Carbon;\nuse Illuminate\\Http\\JsonResponse;\nuse Jiminny\\Exceptions\\ApplicationException;\nuse Jiminny\\Http\\Controllers\\Controller;\nuse Jiminny\\Http\\Responses\\Api\\Response;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Repositories\\AutomatedReportsRepository;\nuse Jiminny\\Services\\ApiResponseService;\nuse Jiminny\\Services\\Kiosk\\AutomatedReports\\AutomatedReportsService;\nuse Jiminny\\Services\\Kiosk\\AutomatedReports\\ReportSort;\nuse Jiminny\\Services\\Kiosk\\AutomatedReports\\ReportSortDirection;\nuse Jiminny\\Services\\PlanhatService;\nuse Illuminate\\Http\\Request;\nuse Throwable;\n\nclass UserAutomatedReportsController extends Controller\n{\n public const int RESULTS_PER_PAGE = 25;\n\n public const string SORT_COLUMN = 'sort_column';\n\n public const string SORT_DIRECTION = 'sort_direction';\n\n public function __construct(\n private readonly AutomatedReportsRepository $automatedReportsRepository,\n private readonly AutomatedReportsService $automatedReportsService,\n private readonly ApiResponseService $apiResponseService,\n private readonly Response $response,\n private readonly PlanhatService $planhatService,\n ) {\n parent::__construct();\n }\n\n public function trackInterest(Request $request): JsonResponse\n {\n /** @var User $user */\n $user = $request->user();\n\n defer(\n fn () => $this->planhatService->track(\n user: $user,\n event: 'automated-reports-track-interest',\n )\n )->always();\n\n return $this->response->withOk();\n }\n\n /**\n * @throws ApplicationException\n */\n public function list(Request $request): JsonResponse\n {\n /** @var User $user */\n $user = $request->user();\n\n $teamIds = $request->has('team')\n ? (array) $request->get('team')\n : [];\n $reportTypes = $request->has('report_type')\n ? (array) $request->get('report_type')\n : [];\n $name = $request->has('name') ? trim($request->get('name', '')) : null;\n\n try {\n $fromDate = $request->has('from_date') ? Carbon::parse($request->get('from_date')) : null;\n $toDate = $request->has('to_date') ? Carbon::parse($request->get('to_date')) : null;\n } catch (\\Exception) {\n return $this->response->errorWrongArgs('Invalid date.');\n }\n\n $page = $request->has('page') ? (int) $request->get('page') : 1;\n $sort = ReportSort::tryFrom(\n $request->get(self::SORT_COLUMN, '')\n ) ?? ReportSort::GENERATED_AT;\n $sortDirection = ReportSortDirection::tryFrom(\n strtolower($request->get(self::SORT_DIRECTION, ''))\n ) ?? ReportSortDirection::DESC;\n\n $paginatedUserReports = $this->automatedReportsRepository->getPaginatedUserReports(\n user: $user,\n sort: $sort,\n sortDirection: $sortDirection,\n resultsPerPage: self::RESULTS_PER_PAGE,\n page: $page,\n fromDate: $fromDate,\n toDate: $toDate,\n teamIds: array_map('intval', $teamIds),\n reportTypes: $reportTypes,\n name: $name,\n );\n\n $reportResults = $this->automatedReportsService->transformReportResults(\n $paginatedUserReports->getCollection()\n );\n $team = $user->getTeam();\n $reportTypeFilter = $this->automatedReportsService->getReportTypeFieldData(\n shortVersion: true,\n team: $team\n );\n\n $data = $this->apiResponseService->fromPaginatorToArray(\n paginator: $paginatedUserReports,\n data: $reportResults,\n moreMeta: [\n self::SORT_COLUMN => $sort->value,\n self::SORT_DIRECTION => $sortDirection->value,\n ],\n filters: [\n $reportTypeFilter['id'] => $reportTypeFilter,\n ],\n );\n\n return $this->response->withArray($data);\n }\n\n public function delete(Request $request, string $uuid): JsonResponse\n {\n /** @var User $user */\n $user = $request->user();\n\n try {\n $result = $this->automatedReportsRepository->findResultByUuidForUser($uuid, $user);\n\n if ($result === null) {\n return new JsonResponse(\n data: ['error' => 'Report not found'],\n status: JsonResponse::HTTP_NOT_FOUND\n );\n }\n\n $result->delete();\n\n return new JsonResponse(null, JsonResponse::HTTP_NO_CONTENT);\n } catch (Throwable $e) {\n return new JsonResponse(\n data: ['error' => 'Failed to delete report result'],\n status: JsonResponse::HTTP_INTERNAL_SERVER_ERROR\n );\n }\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.36569148,"top":0.09896249,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.3743351,"top":0.09896249,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.38530585,"top":0.09896249,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.39394948,"top":0.09896249,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.40259308,"top":0.09896249,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.41356382,"top":0.09896249,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.4245346,"top":0.09896249,"width":0.024268618,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.45113033,"top":0.09896249,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.46210107,"top":0.09896249,"width":0.029587766,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.60206115,"top":0.09896249,"width":0.02825798,"height":0.01915403},"on_screen":true,"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},"on_screen":false,"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},"on_screen":false,"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},"on_screen":false,"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},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"40","depth":4,"bounds":{"left":0.57147604,"top":0.123703115,"width":0.010305851,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.5837766,"top":0.123703115,"width":0.00731383,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"40","depth":4,"bounds":{"left":0.5930851,"top":0.123703115,"width":0.010305851,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"65","depth":4,"bounds":{"left":0.60538566,"top":0.123703115,"width":0.010305851,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.61735374,"top":0.12210695,"width":0.00731383,"height":0.018355945},"on_screen":true,"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.6246675,"top":0.12210695,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE name LIKE '%litify%'; # 1069, 994, 24993\nSELECT * FROM users WHERE id = 25061;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 994;\nSELECT * FROM crm_profiles WHERE user_id = 25061;\n\nselect * from crm_configurations where id = 834;\nSELECT * FROM teams WHERE id = 882;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 882 and sa.provider = 'hubspot';\n\nSELECT * FROM crm_configurations where id = 882; # 933 - GoGlobal\nSELECT * FROM opportunities WHERE team_id = 933 order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 933 and sa.provider = 'hubspot';\n\nSELECT * FROM crm_configurations WHERE provider = 'hubspot' and crm_provider_id = 7270388;\n\nSELECT * FROM contacts where crm_configuration_id = 834;\nSELECT * FROM opportunities WHERE team_id = 933\n# AND crm_provider_id IN ('20131586060','46017317898','52543911090','53451356564','54101251892','54323768459');\nAND id IN (8482561,18352941,19042734,19232139,19445140,19472541);\nSELECT * FROM opportunity_contacts\nWHERE opportunity_id IN (8482561,18352941,19042734,19232139,19445140,19472541);\n\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 485; #\nSELECT * FROM opportunities WHERE team_id = 933 order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 933 and sa.provider = 'hubspot';\n\nselect crm.provider, l.* from leads l join crm_configurations crm on l.crm_configuration_id = crm.id\nwhere crm.provider NOT IN ('salesforce', 'integration-app', 'bullhorn', 'copper')\n# and l.converted_at IS NOT NULL\n;\n\n# ********************************************************************\nSELECT * FROM activities a WHERE type IN ('email-inbound', 'email-outbound')\nand opportunity_id IS NULL\norder by id desc;\n\nSELECT * FROM teams WHERE id = 604; # 598\nSELECT * FROM activities WHERE id = 74410828; # chelseaw@allvoices.co\nSELECT * FROM accounts WHERE id = 20068382;\nSELECT * FROM accounts WHERE id = 35186038;\n\nSELECT * FROM contacts WHERE team_id = 852 and updated_at > '2026-01-23 12:30:00' order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 559 and sa.provider = 'hubspot';\n\nSELECT * FROM activities WHERE uuid_to_bin('cb6342b6-a183-401c-b0af-ede92b2ae763') = uuid;\nselect * from sidekick_settings where team_id = 781;\n\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 26651871; # Teya\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 7562435;\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 8420347; # opflit 2100\n\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 711;\nSELECT * FROM activities where crm_configuration_id = 711 and crm_provider_id IS NULL\nand is_internal = 0 and status = 'completed'\norder by id desc;\n\nSELECT * FROM crm_layout_entities\nWHERE crm_layout_id IN (2352, 2353);\n;\n\nSELECT * FROM crm_configurations where provider = 'hubspot' and id = 530;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 556 and sa.provider = 'hubspot';\n\nSELECT * FROM activities WHERE uuid_to_bin('c6ca4b22-7738-4563-a95d-b8a9598924ae') = uuid;\nSELECT * FROM activities WHERE uuid_to_bin('442abb2b-28bd-4be8-9c25-19e9bf02766d') = uuid;\nselect * from contacts\nwhere crm_configuration_id = 530\nand crm_provider_id = 872252;\n\nselect * from activities where crm_configuration_id = 530\nand user_id = 14343 and type like '%softphone%'\nand created_at between '2026-01-28 15:00:00' and '2026-01-28 15:10:00';\n\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 25666868; # Teya\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 8646335; # Teya\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id IN (5933397);\n\n\nSELECT t.name, t.id, t.owner_id, c.id, c.provider, c.crm_base_url FROM teams t\nJOIN crm_configurations c ON t.id = c.team_id\nWHERE t.status = 'active';\n\nSELECT * FROM teams where id = 1091;\nSELECT * FROM crm_configurations where team_id = 1091;\nSELECT * FROM activity_providers where team_id = 1091;\nSELECT * FROM activities where crm_configuration_id = 1024 and type IN ('softphone', 'softphone-outbound')\nand provider NOT IN ('hubspot', 'aircall')\n# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'\norder by id desc;\n\n\nSELECT * FROM teams WHERE name LIKE '%Leadventure%';\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1091 and sa.provider = 'salesforce';\n\nSELECT * FROM teams WHERE name LIKE '%Wilson%'; # 862, 812\nSELECT * FROM teams where id = 862;\nSELECT * FROM crm_configurations where team_id = 862;\nSELECT * FROM activity_providers where team_id = 862;\nSELECT * FROM activities where crm_configuration_id = 812 and type IN ('softphone', 'softphone-outbound')\nand provider NOT IN ('hubspot', 'aircall')\n# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'\norder by id desc;\n\n\nSELECT t.id, crm.id, crm.provider, ap.* FROM teams t\njoin crm_configurations crm on t.id = crm.team_id\njoin activity_providers ap on t.id = ap.team_id\nwhere t.status = 'active' and ap.is_enabled = 1\nand crm.provider = 'hubspot'\nand ap.provider NOT IN ('hubspot', 'aircall', 'uploader', 'gong', 'twilio', 'zoom-bot', 'google-meet', 'ms-teams',\n 'outreach', 'close', 'ringcentral', 'dialpad', 'zoom-phone');\n\nSELECT * FROM teams where id = 1068;\nSELECT * FROM crm_configurations where team_id = 1068;\nSELECT * FROM activity_providers where team_id = 1068;\n\nSELECT * FROM activities a\nwhere crm_configuration_id = 993 and type IN ('softphone', 'softphone-outbound')\nand a.provider NOT IN ('hubspot', 'uploader', 'gong', 'twilio', 'google-meet', 'ms-teams','close'\n )\n# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'\norder by a.id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1068 and sa.provider = 'hubspot';\n\n# ********************************************************************\n# ********************************************************************\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 882; # 933 - GoGlobal , portalId: 6017093\nSELECT * FROM opportunities WHERE team_id = 933 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 933 and updated_at > '2026-02-06 00:00:00' order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 933 and sa.provider = 'hubspot';\n\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 834; # 882 - AnyVan , portalId: 5468262\nSELECT * FROM contacts WHERE crm_configuration_id = 834 and updated_at > '2026-03-30 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE crm_configuration_id = 834 and updated_at > '2026-03-04 08:00:00' order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 882 and sa.provider = 'hubspot';\nselect * from crm_layouts where crm_configuration_id = 834;\nselect * from crm_layout_entities where crm_layout_id = 2780;\nselect * from crm_fields where id IN (321153,321192,321193,321194);\n\nSELECT * FROM opportunities WHERE crm_configuration_id = 834 and id = 10993426;\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 988; # 1057 - Teya (543ce4f4-168c-4571-91ea-5b35c253f06f) , portalId: 26651871\nSELECT * FROM opportunities WHERE team_id = 1057 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1057 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1057 and sa.provider = 'hubspot';\n\nSELECT * FROM crm_configurations where id = 533; # 559 - Connectd , portalId: 6710988\nSELECT * FROM opportunities WHERE team_id = 559 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 559 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;\n\nSELECT * FROM crm_configurations where id = 801; # 852 - Rise Vision , portalId: 2700250\nSELECT * FROM opportunities WHERE team_id = 852 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 852 and updated_at > '2026-02-04 00:00:00' order by updated_at desc; # 6th last\n\nSELECT * FROM crm_configurations where id = 962; # 1034 - evergrowth.io , portalId: 143180990\nSELECT * FROM opportunities WHERE team_id = 1034 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1034 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;\n\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 1037; # 1102 - Jibble , portalId: 6649755\nSELECT * FROM opportunities WHERE team_id = 1102 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1102 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 8\n\nSELECT * FROM crm_configurations where id = 1015; # 1049 - Travefy , portalId: 48904401\nSELECT * FROM opportunities WHERE team_id = 1049 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1049 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 20\n\nSELECT * FROM crm_configurations where id = 64; # 70 - SalaryFinance , portalId: 3404115\nSELECT * FROM opportunities WHERE team_id = 70 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 70 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 6th last\n\nSELECT * FROM crm_configurations where id = 802; # 853 - Street Group , portalId: 7658438\nSELECT * FROM opportunities WHERE team_id = 853 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 853 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 10\n\nSELECT * FROM crm_configurations where id = 872; # 921 - In Professional Development , portalId: 9238273\nSELECT * FROM opportunities WHERE team_id = 921 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 921 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 2\n\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 550; # 576 - SeedLegals , portalId: 3028661\nSELECT * FROM opportunities WHERE team_id = 576 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 576 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;\n\nSELECT * FROM crm_configurations where id = 989; # 1058 - rtaoutdoor.com , portalId: 22371204\nSELECT * FROM opportunities WHERE team_id = 1058 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1058 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;\n\nSELECT * FROM crm_configurations where id = 896; # 946 - Mintago , portalId: 6621281\nSELECT * FROM opportunities WHERE team_id = 946 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 946 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;\n\nSELECT * FROM crm_configurations where id = 617; # 641 - PCS , portalId: 5244937\nSELECT * FROM opportunities WHERE team_id = 641 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 641 and updated_at > '2026-02-05 14:00:00' order by updated_at desc; # 7th\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 649; # 670 - Eventeny , portalId: 4492849\nSELECT * FROM opportunities WHERE team_id = 670 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 670 and updated_at > '2026-02-09 08:00:00' order by updated_at desc; #\n\nSELECT * FROM crm_configurations where id = 48; # 51 - CleanCloud , portalId: 4373137\nSELECT * FROM opportunities WHERE team_id = 51 and updated_at > '2026-03-04 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 51 and updated_at > '2026-02-09 08:00:00' order by updated_at desc;\nselect * from users where team_id = 51; # 7783\nSELECT * FROM groups WHERE uuid_to_bin('8a8d2cb6-8b55-4fa3-8b5c-5f0e3d8de59a') = uuid; # 1130\nselect * from activity_searches where user_id = 7783;\nselect * from activity_search_filters where activity_search_id IN (32291, 32292);\n\nSELECT asf.activity_search_id, asf.id, asf.value\nFROM activity_search_filters asf\nWHERE asf.filter = 'group_id'\nAND asf.value IN (\n SELECT CONCAT(\n HEX(SUBSTR(uuid, 5, 4)), '-',\n HEX(SUBSTR(uuid, 3, 2)), '-',\n HEX(SUBSTR(uuid, 1, 2)), '-',\n HEX(SUBSTR(uuid, 9, 2)), '-',\n HEX(SUBSTR(uuid, 11))\n )\n FROM groups\n WHERE deleted_at IS NOT NULL\n);\n\nSELECT * FROM crm_configurations where id = 272; # 290 - Bonham & Brook , portalId: 5705856\nSELECT * FROM opportunities WHERE team_id = 290 and updated_at > '2026-02-05 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 290 and updated_at > '2026-02-09 08:00:00' order by updated_at desc; # 6th\n# ********************************************************************\nSELECT * FROM crm_configurations where provider = 'hubspot';\nSELECT * FROM crm_configurations where id = 1056; # 1119 - Chromatic , portalId: 45602133\nSELECT * FROM opportunities WHERE team_id = 1119 and remotely_created_at > '2026-02-01 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1119 and updated_at > '2026-02-09 09:00:00' order by updated_at desc; # null\n# ********************************************************************\n\nselect * from contacts where crm_provider_id = '003Uu00000ojD4NIAU';\nselect\n cp.*\n# DISTINCT t.id\n# cp.id, cp.user_id, t.id, cp.crm_configuration_id, cp.contact_fields\nFROM crm_profiles cp\nJOIN crm_configurations crm on crm.id = cp.crm_configuration_id\nJOIN users u on u.id = cp.user_id\nJOIN teams t ON t.id = crm.team_id\nWHERE crm.provider = 'salesforce' and t.status = 'active'\n and cp.archived_at IS NULL and u.deleted_at IS NULL\n and t.id NOT IN (1093)\n and t.id = 2\n and cp.contact_fields IS NULL;\n# and c.crm_provider_id = '003Uu00000ojD4NIAU';\n\nSELECT * FROM users WHERE id = 26484;\nSELECT * FROM crm_profiles WHERE user_id = 26484;\nSELECT * FROM social_accounts WHERE sociable_id = 26484;\nSELECT * FROM crm_configurations where provider = 'salesforce';\nselect * from users where id IN (10022, 10403);\nselect * from users where team_id IN (526);\nselect * from teams where id IN (526, 532);\nselect * from crm_configurations where id IN (500, 516);\nselect * from crm_profiles where crm_configuration_id IN (500, 516) and user_id IN (10022, 10403);\nselect * from contacts where crm_configuration_id IN (500, 516) and crm_provider_id = '003Uu00000ojD4NIAU';\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 526 and sa.provider = 'salesforce';\nselect * from team_settings where team_id IN (526, 532);\n\nselect * from users where id IN (22824);\nselect * from crm_profiles where crm_configuration_id IN (1026);\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1093 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1099;\nselect * from users where id = 29643\n\nselect * from activity_processing_states;\n\nSELECT * FROM teams where name LIKE '%Fare%'; # 233\nSELECT * FROM opportunities where crm_configuration_id = 215\n# and crm_provider_id = 'oppo_ogESZf2P50nDrd1nGPvKDXeA6sSaTN5v51Lp4ayVzKR'\n;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1088 and sa.provider = 'hubspot';\n\nSELECT * FROM teams order by updated_at DESC\nSELECT * FROM crm_configurations WHERE id = 1019; # SimpleConsign 1088 - no social account\n\nselect * from crm_configurations where provider = 'pipedrive';\n\nselect * from teams where id = 957;\nselect * from crm_configurations where id = 957;\n\nSELECT * FROM teams WHERE name LIKE '%Prolific%'; # 544, 518, 10743\nSELECT * FROM opportunities where crm_configuration_id = 518 order by id desc;\n\nselect * from users where team_id = 1; # 26726 - Gabriela Dureva\nSELECT * FROM opportunities where user_id = 26726; # 16834447 - Prolific\nselect * from activities where user_id = 26726 order by id desc;\nselect * from contacts where crm_configuration_id = 1\nand email IN ('charlotte.ward@prolific.com', 'frankie.bryant@prolific.com'); # 2094416, 2093620\nSELECT * FROM contacts WHERE id = 6284931;\n\nSELECT p.* FROM activities a JOIN participants p ON a.id = p.activity_id\nWHERE a.user_id = 26726 and p.lead_id IN (2094416, 2093620) and a.created_at > '2026-01-01 00:00:00' order by p.email;\n\nselect * from activities where id IN (75509259,75509261,75509261,75511034,75026464,75517602,75517605);\nselect * from crm_configurations where id = 1;\n\n43801692-1aeb-32ce-acba-5b80a479701a\n44c3c9cf-6f5e-75f3-8179-bc9f75dd2b1b\n405975c0-b3d0-7aaa-821f-09d59cae6dd1\n4caf848d-4bed-2299-b248-7788d41f9fca\n49bedc3f-f196-eef3-89c3-dea6a3b4aa63\n43420989-a09d-b8f8-9806-c8bbf7a02aac\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nSELECT * FROM activities WHERE id = 75461988;\n\nSELECT * FROM activities WHERE uuid_to_bin('d6c5052e-e972-49e9-8912-26f2f7d6c5f6') = uuid;\n\nselect * from contacts where id = 17900517;\n\nselect * from contact_roles cr join crm_configurations crm on cr.crm_configuration_id = crm.id\nwhere crm.provider != 'salesforce';\n\nselect * from users where id = 21047;\nSELECT * FROM crm_configurations WHERE id = 892;\nSELECT * FROM teams WHERE id = 942;\nselect * from opportunities where team_id = 942 order by updated_at desc;\nselect * from contacts where team_id = 942 order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 942 and sa.provider = 'hubspot';\n\nSELECT * FROM opportunities where team_id = 1 and crm_provider_id IN ('006Pq00000NeH6XIAV', '006Pq000007z8kdIAA'); # 10697889, 6621430\nSELECT * FROM crm_configurations WHERE id = 1;\nSELECT * FROM teams WHERE crm_id = 1;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect id, user_id, opportunity_fields from crm_profiles where crm_configuration_id = 1\nSELECT * FROM opportunities where team_id = 1 order by updated_at desc; # 10697889, 6621430\n\nselect * from teams where id = 852;\nselect * from groups where id = 2286;\nselect * from sidekick_settings where team_id = 852;\nselect * from default_activity_types where team_id = 852;\n\n\nSELECT cc.provider, cc.id, p.id, u.*\nFROM users u\nLEFT JOIN crm_profiles p ON u.id = p.user_id AND p.id IS NULL -- no profile\nINNER JOIN teams t ON u.team_id = t.id AND t.status = 'active' -- team is active\nINNER JOIN crm_configurations cc ON t.crm_id = cc.id\nWHERE u.status = 1 AND u.deleted_at IS NULL\nAND u.crm_required = 1\nAND u.team_id = 1\nORDER BY u.team_id;\n\nSELECT * FROM crm_profiles cp where cp.crm_configuration_id = 1 and cp.user_id IN (\n18481\n );\n\nSELECT cc.provider, cc.id, p.id, u.*\nFROM users u\nLEFT JOIN crm_profiles p ON u.id = p.user_id\nINNER JOIN teams t ON u.team_id = t.id AND t.status = 'active'\nINNER JOIN crm_configurations cc ON t.crm_id = cc.id\nWHERE u.status = 1\n AND u.deleted_at IS NULL\n AND u.crm_required = 1\n# AND u.team_id = 1\n AND p.id IS NULL -- Move this condition to WHERE clause\nORDER BY u.team_id;\n\nSELECT * FROM opportunities WHERE id = 20002609;\nselect * from teams where id = 1122; # Velatir, 29953 - christian@velatir.com\nselect * from crm_configurations where id = 1060;\nselect * from crm_layouts where crm_configuration_id = 1060;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 3596;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1122 and sa.provider = 'hubspot';\nselect * from opportunities where team_id = 1122 order by updated_at desc;\n\nselect * from crm_field_data where object_type = 'contact';\n\nSELECT * FROM activities WHERE uuid_to_bin('374fc8ed-3315-4c9f-9b25-318b7fd2928f') = uuid; # 76584262\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 248 and sa.provider = 'salesforce';\n\nSELECT * FROM crm_profiles where user_id = 24115; # 005QF000002CswMYAS\nSELECT * FROM users where id = 24115;\nSELECT * FROM accounts where id = 4002896;\nSELECT * FROM teams WHERE name LIKE '%adswerve%';\nSELECT * FROM opportunities where crm_configuration_id = 230 AND crm_provider_id IN (\"0069N000003GIQ9QAO\",\"0061r000019yGP9AAM\",\"0066900001S2KWlAAN\",\"0066900001TDpj2AAD\",\"0066900001b8uEwAAI\",\"0069N000001rQi0QAE\",\"006QF00000KD40mYAD\",\"006QF00000LzpRJYAZ\",\"0069N000002uomtQAA\",\"0069N000002xlMLQAY\",\"0066900001NV6ubAAD\",\"0061r00001HJp45AAD\",\"006QF00000uTlUoYAK\",\"006QF00000v0bZqYAI\");\nSELECT * FROM opportunities WHERE crm_configuration_id = 230 AND crm_provider_id = '0069N000003GIQ9QAO'; # 6272203\n\nSELECT u.id, u.email, ac.name, a.* FROM activities a\nJOIN users u ON a.user_id = u.id\nJOIN accounts ac ON a.account_id = ac.id\nWHERE\nuuid_to_bin('e3269598-b562-44fb-b5e9-9d2694dc63e0') = a.uuid or\nuuid_to_bin('66ddc3ab-4e15-45aa-af0c-248c1eece593') = a.uuid or\nuuid_to_bin('826bd328-e1cc-4213-b8d8-572454cacc07') = a.uuid;\n\nselect * from users where id = 5825;\nSELECT * FROM activities WHERE uuid_to_bin('e56aa2e8-231a-421b-ab1f-cb38ed2bf573') = uuid;\n\nselect * from activities where uuid_to_bin('91e13b2f-2d1b-45f8-b1fd-1141b6563782') = uuid;\n19594, 862\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 862 and sa.provider = 'salesforce';\n\nselect * from automated_reports where id = 36;\nselect ar.frequency, r.*, ar.* from automated_report_results r\njoin automated_reports ar on r.report_id = ar.id\nwhere ar.frequency != 'one_off';\n\nselect s.* from activity_searches s join users u ON s.user_id = u.id where u.team_id = 882;\nselect * from nudges n where n.activity_search_id\n\nselect * from teams where created_at > '2026-03-09';\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 1065; # 1065\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 3617;\n\nselect * from users where team_id = 1 and name like '%Lukas%'; # 7160\n\nSELECT * FROM teams WHERE id = 575;\nselect * from opportunities where team_id = 575;\nSELECT * FROM teams WHERE name LIKE '%Integrum ESG%'; # 1126, 1065,\nselect * from opportunities where team_id = 1126;\nSELECT * FROM teams WHERE name LIKE '%Base%'; # 1125, 1063,\nselect * from opportunities where team_id = 1125;\nselect * from contacts c\nwhere c.team_id = 882;\n\nSELECT * FROM activities WHERE id = 76822967;\nSELECT * FROM crm_profiles WHERE user_id = 15440;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 555;\nSELECT * FROM crm_configurations WHERE id = 555;\nSELECT * FROM users WHERE id = 15440; # team. 581, gr. 15440, pl. 3911, act. field 162182\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 581 and sa.provider = 'salesforce';\n\nSELECT * FROM automated_report_results order by id desc;\n\nselect * from features;\nselect * from team_features where feature_id = 40;\n\nselect * from teams where id = 556;\n\nselect * from automated_reports;\nwhere id = 54; # 4fdd41f6-dcf0-30d0-b339-7345381b6044 , [\"pdf\",\"podcast\"]\nSELECT * FROM automated_report_results WHERE uuid_to_bin('822fa41b-afd3-43a9-a248-86b0e36f3131') = uuid;\nselect * from automated_report_results order by id desc;\nSELECT * FROM automated_report_results WHERE id = 1919;\n\nselect * from automated_report_results WHERE report_id = 54;\n\nselect * from opportunities where id = 7594349;\n\nSELECT * FROM teams WHERE name LIKE '%Les%'; # 711, 692, 16067 - jiminnyintegration@lesmills.com\nselect * from playbooks where team_id = 711; # event 226147\nSELECT * FROM playbook_categories WHERE playbook_id = 5515;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 692 and object_type = 'event';\nSELECT * FROM crm_fields WHERE id = 226147;\nSELECT * FROM crm_field_values WHERE crm_field_id = 226147;\n\nSELECT * FROM crm_configurations WHERE id = 692;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 711 and sa.provider = 'salesforce';\n\nSELECT * FROM crm_profiles cp JOIN users u on u.id = cp.user_id WHERE u.team_id = 711;\n\nselect * from leads;\n\nselect * from calendars;\n\nSELECT\n t.id AS team_id,\n t.name,\n LOWER(SUBSTRING_INDEX(c.calendar_provider_id, '@', -1)) AS calendar_domain\nFROM teams t\nJOIN users u ON u.team_id = t.id\nJOIN calendars c ON c.user_id = u.id AND c.status = 'active' AND c.calendar_provider_id LIKE '%@%'\nLEFT JOIN team_domains td\n ON td.team_id = t.id\n AND td.deleted_at IS NULL\n AND td.domain = LOWER(SUBSTRING_INDEX(c.calendar_provider_id, '@', -1))\nGROUP BY t.id, t.name, calendar_domain\nORDER BY t.name, calendar_domain;\n\nselect * from users u join calendars c on c.user_id = u.id\nwhere u.team_id = 882;\n\n\nselect * from activities where id = 74049485; # team 563 crm 537\nselect * from activities where id = 73272382; # team 563 crm 537\nselect * from activities where id = 64400389; # team 563 crm 537\nselect * from activities where id = 58081273; # team 563 crm 537\nselect * from activities where id = 54520297; # team 563 crm 537\nselect * from participants where activity_id = 58081273;\n\nselect * from activities where crm_configuration_id = 537 and provider = 'aircall'\nand account_id = 19003658 order by updated_at desc;\n\nselect * from contacts where crm_configuration_id = 537 and id = 35957759;\nselect * from accounts where crm_configuration_id = 537 and id = 19003658;\n\nselect * from automated_report_results where id = 1976;\nselect * from automated_reports where id = 583;\nselect * from activity_searches where id = 87714;\nselect * from activity_search_filters where activity_search_id = 87714;\n\nSELECT * FROM activities WHERE uuid_to_bin('8827f672-202d-4162-9d04-73ff5f0566a9') = uuid\nor uuid_to_bin('47842446-af51-4bcb-854f-cc6560290101') = uuid;\n\nSELECT * FROM crm_configurations WHERE provider = 'hubspot';\nselect * from rate_limits;\n\nselect * from automated_report_results where media_type = 'pdf' and status = 2\nand id IN (18, 1872);\nselect * from automated_reports where id = 54;\nSELECT * FROM users WHERE id IN (24623,29443,29613);\n\nSELECT * FROM automated_report_results WHERE uuid_to_bin('822fa41b-afd3-43a9-a248-86b0e36f3131') = uuid;\n\nselect * from text_relays where created_at > '2026-05-01'\nand id IN (32415, 32416);\n# and id = 32412;\n\nselect * from users where team_id = 2 and email like '%scott%' and id = 29510;\n\nSELECT * FROM activities WHERE uuid_to_bin('67cebfc2-ed56-44a2-8c68-7a0286ed8618') = uuid; # 79763436\n\nSELECT email_provider_id, COUNT(*) as count, GROUP_CONCAT(id) as ids, GROUP_CONCAT(status) as statuses\nFROM text_relays\nWHERE email_provider_id IN ('19e2027868a64b42', '19e2033ed8ea6b10')\nGROUP BY email_provider_id;\nSELECT id, status, telephony_provider_id, created_at\nFROM activities\nWHERE id IN (80028719, 80028846);\nSELECT id, status, code, email_sent_at, created_at, updated_at\nFROM text_relays\nWHERE id IN (32415, 32416);\nSELECT id, status, code, sender, recipient, created_at\nFROM text_relays\nWHERE sender LIKE '%mario.georgiev%' OR sender LIKE '%stoyan.tomov%'\nORDER BY created_at DESC\nLIMIT 10;\n\nSELECT id, uuid, status, code, sender, recipient, created_at, updated_at\nFROM text_relays\nWHERE uuid = uuid_to_bin('0626141c-27a6-4d8c-aff8-7c8020a2c656');\n\n# ***************\nSELECT DISTINCT u.id, u.email, u.name, u.softphone_number, COUNT(a.id) as sms_count\nFROM users u\nINNER JOIN activities a ON u.id = a.user_id\nWHERE a.type LIKE 'sms%'\n# AND a.created_at > DATE_SUB(NOW(), INTERVAL 30 DAY)\nGROUP BY u.id, u.email, u.name, u.softphone_number\nORDER BY sms_count DESC;","depth":4,"on_screen":true,"value":"SELECT * FROM teams WHERE name LIKE '%litify%'; # 1069, 994, 24993\nSELECT * FROM users WHERE id = 25061;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 994;\nSELECT * FROM crm_profiles WHERE user_id = 25061;\n\nselect * from crm_configurations where id = 834;\nSELECT * FROM teams WHERE id = 882;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 882 and sa.provider = 'hubspot';\n\nSELECT * FROM crm_configurations where id = 882; # 933 - GoGlobal\nSELECT * FROM opportunities WHERE team_id = 933 order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 933 and sa.provider = 'hubspot';\n\nSELECT * FROM crm_configurations WHERE provider = 'hubspot' and crm_provider_id = 7270388;\n\nSELECT * FROM contacts where crm_configuration_id = 834;\nSELECT * FROM opportunities WHERE team_id = 933\n# AND crm_provider_id IN ('20131586060','46017317898','52543911090','53451356564','54101251892','54323768459');\nAND id IN (8482561,18352941,19042734,19232139,19445140,19472541);\nSELECT * FROM opportunity_contacts\nWHERE opportunity_id IN (8482561,18352941,19042734,19232139,19445140,19472541);\n\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 485; #\nSELECT * FROM opportunities WHERE team_id = 933 order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 933 and sa.provider = 'hubspot';\n\nselect crm.provider, l.* from leads l join crm_configurations crm on l.crm_configuration_id = crm.id\nwhere crm.provider NOT IN ('salesforce', 'integration-app', 'bullhorn', 'copper')\n# and l.converted_at IS NOT NULL\n;\n\n# ********************************************************************\nSELECT * FROM activities a WHERE type IN ('email-inbound', 'email-outbound')\nand opportunity_id IS NULL\norder by id desc;\n\nSELECT * FROM teams WHERE id = 604; # 598\nSELECT * FROM activities WHERE id = 74410828; # chelseaw@allvoices.co\nSELECT * FROM accounts WHERE id = 20068382;\nSELECT * FROM accounts WHERE id = 35186038;\n\nSELECT * FROM contacts WHERE team_id = 852 and updated_at > '2026-01-23 12:30:00' order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 559 and sa.provider = 'hubspot';\n\nSELECT * FROM activities WHERE uuid_to_bin('cb6342b6-a183-401c-b0af-ede92b2ae763') = uuid;\nselect * from sidekick_settings where team_id = 781;\n\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 26651871; # Teya\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 7562435;\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 8420347; # opflit 2100\n\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 711;\nSELECT * FROM activities where crm_configuration_id = 711 and crm_provider_id IS NULL\nand is_internal = 0 and status = 'completed'\norder by id desc;\n\nSELECT * FROM crm_layout_entities\nWHERE crm_layout_id IN (2352, 2353);\n;\n\nSELECT * FROM crm_configurations where provider = 'hubspot' and id = 530;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 556 and sa.provider = 'hubspot';\n\nSELECT * FROM activities WHERE uuid_to_bin('c6ca4b22-7738-4563-a95d-b8a9598924ae') = uuid;\nSELECT * FROM activities WHERE uuid_to_bin('442abb2b-28bd-4be8-9c25-19e9bf02766d') = uuid;\nselect * from contacts\nwhere crm_configuration_id = 530\nand crm_provider_id = 872252;\n\nselect * from activities where crm_configuration_id = 530\nand user_id = 14343 and type like '%softphone%'\nand created_at between '2026-01-28 15:00:00' and '2026-01-28 15:10:00';\n\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 25666868; # Teya\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 8646335; # Teya\nSELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id IN (5933397);\n\n\nSELECT t.name, t.id, t.owner_id, c.id, c.provider, c.crm_base_url FROM teams t\nJOIN crm_configurations c ON t.id = c.team_id\nWHERE t.status = 'active';\n\nSELECT * FROM teams where id = 1091;\nSELECT * FROM crm_configurations where team_id = 1091;\nSELECT * FROM activity_providers where team_id = 1091;\nSELECT * FROM activities where crm_configuration_id = 1024 and type IN ('softphone', 'softphone-outbound')\nand provider NOT IN ('hubspot', 'aircall')\n# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'\norder by id desc;\n\n\nSELECT * FROM teams WHERE name LIKE '%Leadventure%';\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1091 and sa.provider = 'salesforce';\n\nSELECT * FROM teams WHERE name LIKE '%Wilson%'; # 862, 812\nSELECT * FROM teams where id = 862;\nSELECT * FROM crm_configurations where team_id = 862;\nSELECT * FROM activity_providers where team_id = 862;\nSELECT * FROM activities where crm_configuration_id = 812 and type IN ('softphone', 'softphone-outbound')\nand provider NOT IN ('hubspot', 'aircall')\n# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'\norder by id desc;\n\n\nSELECT t.id, crm.id, crm.provider, ap.* FROM teams t\njoin crm_configurations crm on t.id = crm.team_id\njoin activity_providers ap on t.id = ap.team_id\nwhere t.status = 'active' and ap.is_enabled = 1\nand crm.provider = 'hubspot'\nand ap.provider NOT IN ('hubspot', 'aircall', 'uploader', 'gong', 'twilio', 'zoom-bot', 'google-meet', 'ms-teams',\n 'outreach', 'close', 'ringcentral', 'dialpad', 'zoom-phone');\n\nSELECT * FROM teams where id = 1068;\nSELECT * FROM crm_configurations where team_id = 1068;\nSELECT * FROM activity_providers where team_id = 1068;\n\nSELECT * FROM activities a\nwhere crm_configuration_id = 993 and type IN ('softphone', 'softphone-outbound')\nand a.provider NOT IN ('hubspot', 'uploader', 'gong', 'twilio', 'google-meet', 'ms-teams','close'\n )\n# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'\norder by a.id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1068 and sa.provider = 'hubspot';\n\n# ********************************************************************\n# ********************************************************************\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 882; # 933 - GoGlobal , portalId: 6017093\nSELECT * FROM opportunities WHERE team_id = 933 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 933 and updated_at > '2026-02-06 00:00:00' order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 933 and sa.provider = 'hubspot';\n\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 834; # 882 - AnyVan , portalId: 5468262\nSELECT * FROM contacts WHERE crm_configuration_id = 834 and updated_at > '2026-03-30 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE crm_configuration_id = 834 and updated_at > '2026-03-04 08:00:00' order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 882 and sa.provider = 'hubspot';\nselect * from crm_layouts where crm_configuration_id = 834;\nselect * from crm_layout_entities where crm_layout_id = 2780;\nselect * from crm_fields where id IN (321153,321192,321193,321194);\n\nSELECT * FROM opportunities WHERE crm_configuration_id = 834 and id = 10993426;\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 988; # 1057 - Teya (543ce4f4-168c-4571-91ea-5b35c253f06f) , portalId: 26651871\nSELECT * FROM opportunities WHERE team_id = 1057 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1057 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1057 and sa.provider = 'hubspot';\n\nSELECT * FROM crm_configurations where id = 533; # 559 - Connectd , portalId: 6710988\nSELECT * FROM opportunities WHERE team_id = 559 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 559 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;\n\nSELECT * FROM crm_configurations where id = 801; # 852 - Rise Vision , portalId: 2700250\nSELECT * FROM opportunities WHERE team_id = 852 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 852 and updated_at > '2026-02-04 00:00:00' order by updated_at desc; # 6th last\n\nSELECT * FROM crm_configurations where id = 962; # 1034 - evergrowth.io , portalId: 143180990\nSELECT * FROM opportunities WHERE team_id = 1034 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1034 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;\n\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 1037; # 1102 - Jibble , portalId: 6649755\nSELECT * FROM opportunities WHERE team_id = 1102 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1102 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 8\n\nSELECT * FROM crm_configurations where id = 1015; # 1049 - Travefy , portalId: 48904401\nSELECT * FROM opportunities WHERE team_id = 1049 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1049 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 20\n\nSELECT * FROM crm_configurations where id = 64; # 70 - SalaryFinance , portalId: 3404115\nSELECT * FROM opportunities WHERE team_id = 70 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 70 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 6th last\n\nSELECT * FROM crm_configurations where id = 802; # 853 - Street Group , portalId: 7658438\nSELECT * FROM opportunities WHERE team_id = 853 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 853 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 10\n\nSELECT * FROM crm_configurations where id = 872; # 921 - In Professional Development , portalId: 9238273\nSELECT * FROM opportunities WHERE team_id = 921 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 921 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 2\n\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 550; # 576 - SeedLegals , portalId: 3028661\nSELECT * FROM opportunities WHERE team_id = 576 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 576 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;\n\nSELECT * FROM crm_configurations where id = 989; # 1058 - rtaoutdoor.com , portalId: 22371204\nSELECT * FROM opportunities WHERE team_id = 1058 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1058 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;\n\nSELECT * FROM crm_configurations where id = 896; # 946 - Mintago , portalId: 6621281\nSELECT * FROM opportunities WHERE team_id = 946 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 946 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;\n\nSELECT * FROM crm_configurations where id = 617; # 641 - PCS , portalId: 5244937\nSELECT * FROM opportunities WHERE team_id = 641 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 641 and updated_at > '2026-02-05 14:00:00' order by updated_at desc; # 7th\n# ********************************************************************\nSELECT * FROM crm_configurations where id = 649; # 670 - Eventeny , portalId: 4492849\nSELECT * FROM opportunities WHERE team_id = 670 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 670 and updated_at > '2026-02-09 08:00:00' order by updated_at desc; #\n\nSELECT * FROM crm_configurations where id = 48; # 51 - CleanCloud , portalId: 4373137\nSELECT * FROM opportunities WHERE team_id = 51 and updated_at > '2026-03-04 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 51 and updated_at > '2026-02-09 08:00:00' order by updated_at desc;\nselect * from users where team_id = 51; # 7783\nSELECT * FROM groups WHERE uuid_to_bin('8a8d2cb6-8b55-4fa3-8b5c-5f0e3d8de59a') = uuid; # 1130\nselect * from activity_searches where user_id = 7783;\nselect * from activity_search_filters where activity_search_id IN (32291, 32292);\n\nSELECT asf.activity_search_id, asf.id, asf.value\nFROM activity_search_filters asf\nWHERE asf.filter = 'group_id'\nAND asf.value IN (\n SELECT CONCAT(\n HEX(SUBSTR(uuid, 5, 4)), '-',\n HEX(SUBSTR(uuid, 3, 2)), '-',\n HEX(SUBSTR(uuid, 1, 2)), '-',\n HEX(SUBSTR(uuid, 9, 2)), '-',\n HEX(SUBSTR(uuid, 11))\n )\n FROM groups\n WHERE deleted_at IS NOT NULL\n);\n\nSELECT * FROM crm_configurations where id = 272; # 290 - Bonham & Brook , portalId: 5705856\nSELECT * FROM opportunities WHERE team_id = 290 and updated_at > '2026-02-05 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 290 and updated_at > '2026-02-09 08:00:00' order by updated_at desc; # 6th\n# ********************************************************************\nSELECT * FROM crm_configurations where provider = 'hubspot';\nSELECT * FROM crm_configurations where id = 1056; # 1119 - Chromatic , portalId: 45602133\nSELECT * FROM opportunities WHERE team_id = 1119 and remotely_created_at > '2026-02-01 00:00:00' order by updated_at desc;\nSELECT * FROM opportunities WHERE team_id = 1119 and updated_at > '2026-02-09 09:00:00' order by updated_at desc; # null\n# ********************************************************************\n\nselect * from contacts where crm_provider_id = '003Uu00000ojD4NIAU';\nselect\n cp.*\n# DISTINCT t.id\n# cp.id, cp.user_id, t.id, cp.crm_configuration_id, cp.contact_fields\nFROM crm_profiles cp\nJOIN crm_configurations crm on crm.id = cp.crm_configuration_id\nJOIN users u on u.id = cp.user_id\nJOIN teams t ON t.id = crm.team_id\nWHERE crm.provider = 'salesforce' and t.status = 'active'\n and cp.archived_at IS NULL and u.deleted_at IS NULL\n and t.id NOT IN (1093)\n and t.id = 2\n and cp.contact_fields IS NULL;\n# and c.crm_provider_id = '003Uu00000ojD4NIAU';\n\nSELECT * FROM users WHERE id = 26484;\nSELECT * FROM crm_profiles WHERE user_id = 26484;\nSELECT * FROM social_accounts WHERE sociable_id = 26484;\nSELECT * FROM crm_configurations where provider = 'salesforce';\nselect * from users where id IN (10022, 10403);\nselect * from users where team_id IN (526);\nselect * from teams where id IN (526, 532);\nselect * from crm_configurations where id IN (500, 516);\nselect * from crm_profiles where crm_configuration_id IN (500, 516) and user_id IN (10022, 10403);\nselect * from contacts where crm_configuration_id IN (500, 516) and crm_provider_id = '003Uu00000ojD4NIAU';\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 526 and sa.provider = 'salesforce';\nselect * from team_settings where team_id IN (526, 532);\n\nselect * from users where id IN (22824);\nselect * from crm_profiles where crm_configuration_id IN (1026);\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1093 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1099;\nselect * from users where id = 29643\n\nselect * from activity_processing_states;\n\nSELECT * FROM teams where name LIKE '%Fare%'; # 233\nSELECT * FROM opportunities where crm_configuration_id = 215\n# and crm_provider_id = 'oppo_ogESZf2P50nDrd1nGPvKDXeA6sSaTN5v51Lp4ayVzKR'\n;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1088 and sa.provider = 'hubspot';\n\nSELECT * FROM teams order by updated_at DESC\nSELECT * FROM crm_configurations WHERE id = 1019; # SimpleConsign 1088 - no social account\n\nselect * from crm_configurations where provider = 'pipedrive';\n\nselect * from teams where id = 957;\nselect * from crm_configurations where id = 957;\n\nSELECT * FROM teams WHERE name LIKE '%Prolific%'; # 544, 518, 10743\nSELECT * FROM opportunities where crm_configuration_id = 518 order by id desc;\n\nselect * from users where team_id = 1; # 26726 - Gabriela Dureva\nSELECT * FROM opportunities where user_id = 26726; # 16834447 - Prolific\nselect * from activities where user_id = 26726 order by id desc;\nselect * from contacts where crm_configuration_id = 1\nand email IN ('charlotte.ward@prolific.com', 'frankie.bryant@prolific.com'); # 2094416, 2093620\nSELECT * FROM contacts WHERE id = 6284931;\n\nSELECT p.* FROM activities a JOIN participants p ON a.id = p.activity_id\nWHERE a.user_id = 26726 and p.lead_id IN (2094416, 2093620) and a.created_at > '2026-01-01 00:00:00' order by p.email;\n\nselect * from activities where id IN (75509259,75509261,75509261,75511034,75026464,75517602,75517605);\nselect * from crm_configurations where id = 1;\n\n43801692-1aeb-32ce-acba-5b80a479701a\n44c3c9cf-6f5e-75f3-8179-bc9f75dd2b1b\n405975c0-b3d0-7aaa-821f-09d59cae6dd1\n4caf848d-4bed-2299-b248-7788d41f9fca\n49bedc3f-f196-eef3-89c3-dea6a3b4aa63\n43420989-a09d-b8f8-9806-c8bbf7a02aac\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nSELECT * FROM activities WHERE id = 75461988;\n\nSELECT * FROM activities WHERE uuid_to_bin('d6c5052e-e972-49e9-8912-26f2f7d6c5f6') = uuid;\n\nselect * from contacts where id = 17900517;\n\nselect * from contact_roles cr join crm_configurations crm on cr.crm_configuration_id = crm.id\nwhere crm.provider != 'salesforce';\n\nselect * from users where id = 21047;\nSELECT * FROM crm_configurations WHERE id = 892;\nSELECT * FROM teams WHERE id = 942;\nselect * from opportunities where team_id = 942 order by updated_at desc;\nselect * from contacts where team_id = 942 order by updated_at desc;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 942 and sa.provider = 'hubspot';\n\nSELECT * FROM opportunities where team_id = 1 and crm_provider_id IN ('006Pq00000NeH6XIAV', '006Pq000007z8kdIAA'); # 10697889, 6621430\nSELECT * FROM crm_configurations WHERE id = 1;\nSELECT * FROM teams WHERE crm_id = 1;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect id, user_id, opportunity_fields from crm_profiles where crm_configuration_id = 1\nSELECT * FROM opportunities where team_id = 1 order by updated_at desc; # 10697889, 6621430\n\nselect * from teams where id = 852;\nselect * from groups where id = 2286;\nselect * from sidekick_settings where team_id = 852;\nselect * from default_activity_types where team_id = 852;\n\n\nSELECT cc.provider, cc.id, p.id, u.*\nFROM users u\nLEFT JOIN crm_profiles p ON u.id = p.user_id AND p.id IS NULL -- no profile\nINNER JOIN teams t ON u.team_id = t.id AND t.status = 'active' -- team is active\nINNER JOIN crm_configurations cc ON t.crm_id = cc.id\nWHERE u.status = 1 AND u.deleted_at IS NULL\nAND u.crm_required = 1\nAND u.team_id = 1\nORDER BY u.team_id;\n\nSELECT * FROM crm_profiles cp where cp.crm_configuration_id = 1 and cp.user_id IN (\n18481\n );\n\nSELECT cc.provider, cc.id, p.id, u.*\nFROM users u\nLEFT JOIN crm_profiles p ON u.id = p.user_id\nINNER JOIN teams t ON u.team_id = t.id AND t.status = 'active'\nINNER JOIN crm_configurations cc ON t.crm_id = cc.id\nWHERE u.status = 1\n AND u.deleted_at IS NULL\n AND u.crm_required = 1\n# AND u.team_id = 1\n AND p.id IS NULL -- Move this condition to WHERE clause\nORDER BY u.team_id;\n\nSELECT * FROM opportunities WHERE id = 20002609;\nselect * from teams where id = 1122; # Velatir, 29953 - christian@velatir.com\nselect * from crm_configurations where id = 1060;\nselect * from crm_layouts where crm_configuration_id = 1060;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 3596;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1122 and sa.provider = 'hubspot';\nselect * from opportunities where team_id = 1122 order by updated_at desc;\n\nselect * from crm_field_data where object_type = 'contact';\n\nSELECT * FROM activities WHERE uuid_to_bin('374fc8ed-3315-4c9f-9b25-318b7fd2928f') = uuid; # 76584262\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 248 and sa.provider = 'salesforce';\n\nSELECT * FROM crm_profiles where user_id = 24115; # 005QF000002CswMYAS\nSELECT * FROM users where id = 24115;\nSELECT * FROM accounts where id = 4002896;\nSELECT * FROM teams WHERE name LIKE '%adswerve%';\nSELECT * FROM opportunities where crm_configuration_id = 230 AND crm_provider_id IN (\"0069N000003GIQ9QAO\",\"0061r000019yGP9AAM\",\"0066900001S2KWlAAN\",\"0066900001TDpj2AAD\",\"0066900001b8uEwAAI\",\"0069N000001rQi0QAE\",\"006QF00000KD40mYAD\",\"006QF00000LzpRJYAZ\",\"0069N000002uomtQAA\",\"0069N000002xlMLQAY\",\"0066900001NV6ubAAD\",\"0061r00001HJp45AAD\",\"006QF00000uTlUoYAK\",\"006QF00000v0bZqYAI\");\nSELECT * FROM opportunities WHERE crm_configuration_id = 230 AND crm_provider_id = '0069N000003GIQ9QAO'; # 6272203\n\nSELECT u.id, u.email, ac.name, a.* FROM activities a\nJOIN users u ON a.user_id = u.id\nJOIN accounts ac ON a.account_id = ac.id\nWHERE\nuuid_to_bin('e3269598-b562-44fb-b5e9-9d2694dc63e0') = a.uuid or\nuuid_to_bin('66ddc3ab-4e15-45aa-af0c-248c1eece593') = a.uuid or\nuuid_to_bin('826bd328-e1cc-4213-b8d8-572454cacc07') = a.uuid;\n\nselect * from users where id = 5825;\nSELECT * FROM activities WHERE uuid_to_bin('e56aa2e8-231a-421b-ab1f-cb38ed2bf573') = uuid;\n\nselect * from activities where uuid_to_bin('91e13b2f-2d1b-45f8-b1fd-1141b6563782') = uuid;\n19594, 862\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 862 and sa.provider = 'salesforce';\n\nselect * from automated_reports where id = 36;\nselect ar.frequency, r.*, ar.* from automated_report_results r\njoin automated_reports ar on r.report_id = ar.id\nwhere ar.frequency != 'one_off';\n\nselect s.* from activity_searches s join users u ON s.user_id = u.id where u.team_id = 882;\nselect * from nudges n where n.activity_search_id\n\nselect * from teams where created_at > '2026-03-09';\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 1065; # 1065\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 3617;\n\nselect * from users where team_id = 1 and name like '%Lukas%'; # 7160\n\nSELECT * FROM teams WHERE id = 575;\nselect * from opportunities where team_id = 575;\nSELECT * FROM teams WHERE name LIKE '%Integrum ESG%'; # 1126, 1065,\nselect * from opportunities where team_id = 1126;\nSELECT * FROM teams WHERE name LIKE '%Base%'; # 1125, 1063,\nselect * from opportunities where team_id = 1125;\nselect * from contacts c\nwhere c.team_id = 882;\n\nSELECT * FROM activities WHERE id = 76822967;\nSELECT * FROM crm_profiles WHERE user_id = 15440;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 555;\nSELECT * FROM crm_configurations WHERE id = 555;\nSELECT * FROM users WHERE id = 15440; # team. 581, gr. 15440, pl. 3911, act. field 162182\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 581 and sa.provider = 'salesforce';\n\nSELECT * FROM automated_report_results order by id desc;\n\nselect * from features;\nselect * from team_features where feature_id = 40;\n\nselect * from teams where id = 556;\n\nselect * from automated_reports;\nwhere id = 54; # 4fdd41f6-dcf0-30d0-b339-7345381b6044 , [\"pdf\",\"podcast\"]\nSELECT * FROM automated_report_results WHERE uuid_to_bin('822fa41b-afd3-43a9-a248-86b0e36f3131') = uuid;\nselect * from automated_report_results order by id desc;\nSELECT * FROM automated_report_results WHERE id = 1919;\n\nselect * from automated_report_results WHERE report_id = 54;\n\nselect * from opportunities where id = 7594349;\n\nSELECT * FROM teams WHERE name LIKE '%Les%'; # 711, 692, 16067 - jiminnyintegration@lesmills.com\nselect * from playbooks where team_id = 711; # event 226147\nSELECT * FROM playbook_categories WHERE playbook_id = 5515;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 692 and object_type = 'event';\nSELECT * FROM crm_fields WHERE id = 226147;\nSELECT * FROM crm_field_values WHERE crm_field_id = 226147;\n\nSELECT * FROM crm_configurations WHERE id = 692;\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 711 and sa.provider = 'salesforce';\n\nSELECT * FROM crm_profiles cp JOIN users u on u.id = cp.user_id WHERE u.team_id = 711;\n\nselect * from leads;\n\nselect * from calendars;\n\nSELECT\n t.id AS team_id,\n t.name,\n LOWER(SUBSTRING_INDEX(c.calendar_provider_id, '@', -1)) AS calendar_domain\nFROM teams t\nJOIN users u ON u.team_id = t.id\nJOIN calendars c ON c.user_id = u.id AND c.status = 'active' AND c.calendar_provider_id LIKE '%@%'\nLEFT JOIN team_domains td\n ON td.team_id = t.id\n AND td.deleted_at IS NULL\n AND td.domain = LOWER(SUBSTRING_INDEX(c.calendar_provider_id, '@', -1))\nGROUP BY t.id, t.name, calendar_domain\nORDER BY t.name, calendar_domain;\n\nselect * from users u join calendars c on c.user_id = u.id\nwhere u.team_id = 882;\n\n\nselect * from activities where id = 74049485; # team 563 crm 537\nselect * from activities where id = 73272382; # team 563 crm 537\nselect * from activities where id = 64400389; # team 563 crm 537\nselect * from activities where id = 58081273; # team 563 crm 537\nselect * from activities where id = 54520297; # team 563 crm 537\nselect * from participants where activity_id = 58081273;\n\nselect * from activities where crm_configuration_id = 537 and provider = 'aircall'\nand account_id = 19003658 order by updated_at desc;\n\nselect * from contacts where crm_configuration_id = 537 and id = 35957759;\nselect * from accounts where crm_configuration_id = 537 and id = 19003658;\n\nselect * from automated_report_results where id = 1976;\nselect * from automated_reports where id = 583;\nselect * from activity_searches where id = 87714;\nselect * from activity_search_filters where activity_search_id = 87714;\n\nSELECT * FROM activities WHERE uuid_to_bin('8827f672-202d-4162-9d04-73ff5f0566a9') = uuid\nor uuid_to_bin('47842446-af51-4bcb-854f-cc6560290101') = uuid;\n\nSELECT * FROM crm_configurations WHERE provider = 'hubspot';\nselect * from rate_limits;\n\nselect * from automated_report_results where media_type = 'pdf' and status = 2\nand id IN (18, 1872);\nselect * from automated_reports where id = 54;\nSELECT * FROM users WHERE id IN (24623,29443,29613);\n\nSELECT * FROM automated_report_results WHERE uuid_to_bin('822fa41b-afd3-43a9-a248-86b0e36f3131') = uuid;\n\nselect * from text_relays where created_at > '2026-05-01'\nand id IN (32415, 32416);\n# and id = 32412;\n\nselect * from users where team_id = 2 and email like '%scott%' and id = 29510;\n\nSELECT * FROM activities WHERE uuid_to_bin('67cebfc2-ed56-44a2-8c68-7a0286ed8618') = uuid; # 79763436\n\nSELECT email_provider_id, COUNT(*) as count, GROUP_CONCAT(id) as ids, GROUP_CONCAT(status) as statuses\nFROM text_relays\nWHERE email_provider_id IN ('19e2027868a64b42', '19e2033ed8ea6b10')\nGROUP BY email_provider_id;\nSELECT id, status, telephony_provider_id, created_at\nFROM activities\nWHERE id IN (80028719, 80028846);\nSELECT id, status, code, email_sent_at, created_at, updated_at\nFROM text_relays\nWHERE id IN (32415, 32416);\nSELECT id, status, code, sender, recipient, created_at\nFROM text_relays\nWHERE sender LIKE '%mario.georgiev%' OR sender LIKE '%stoyan.tomov%'\nORDER BY created_at DESC\nLIMIT 10;\n\nSELECT id, uuid, status, code, sender, recipient, created_at, updated_at\nFROM text_relays\nWHERE uuid = uuid_to_bin('0626141c-27a6-4d8c-aff8-7c8020a2c656');\n\n# ***************\nSELECT DISTINCT u.id, u.email, u.name, u.softphone_number, COUNT(a.id) as sms_count\nFROM users u\nINNER JOIN activities a ON u.id = a.user_id\nWHERE a.type LIKE 'sms%'\n# AND a.created_at > DATE_SUB(NOW(), INTERVAL 30 DAY)\nGROUP BY u.id, u.email, u.name, u.softphone_number\nORDER BY sms_count DESC;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"on_screen":true,"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},"on_screen":false,"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},"on_screen":false,"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},"on_screen":false,"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},"on_screen":false,"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},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
9080188367640938582
|
2218652917440067141
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
pipedrive-sdk-poc, menu
S Project: faVsco.js, menu
pipedrive-sdk-poc, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
14
2
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Http\Controllers\API\UserAutomatedReports;
use Illuminate\Support\Carbon;
use Illuminate\Http\JsonResponse;
use Jiminny\Exceptions\ApplicationException;
use Jiminny\Http\Controllers\Controller;
use Jiminny\Http\Responses\Api\Response;
use Jiminny\Models\User;
use Jiminny\Repositories\AutomatedReportsRepository;
use Jiminny\Services\ApiResponseService;
use Jiminny\Services\Kiosk\AutomatedReports\AutomatedReportsService;
use Jiminny\Services\Kiosk\AutomatedReports\ReportSort;
use Jiminny\Services\Kiosk\AutomatedReports\ReportSortDirection;
use Jiminny\Services\PlanhatService;
use Illuminate\Http\Request;
use Throwable;
class UserAutomatedReportsController extends Controller
{
public const int RESULTS_PER_PAGE = 25;
public const string SORT_COLUMN = 'sort_column';
public const string SORT_DIRECTION = 'sort_direction';
public function __construct(
private readonly AutomatedReportsRepository $automatedReportsRepository,
private readonly AutomatedReportsService $automatedReportsService,
private readonly ApiResponseService $apiResponseService,
private readonly Response $response,
private readonly PlanhatService $planhatService,
) {
parent::__construct();
}
public function trackInterest(Request $request): JsonResponse
{
/** @var User $user */
$user = $request->user();
defer(
fn () => $this->planhatService->track(
user: $user,
event: 'automated-reports-track-interest',
)
)->always();
return $this->response->withOk();
}
/**
* @throws ApplicationException
*/
public function list(Request $request): JsonResponse
{
/** @var User $user */
$user = $request->user();
$teamIds = $request->has('team')
? (array) $request->get('team')
: [];
$reportTypes = $request->has('report_type')
? (array) $request->get('report_type')
: [];
$name = $request->has('name') ? trim($request->get('name', '')) : null;
try {
$fromDate = $request->has('from_date') ? Carbon::parse($request->get('from_date')) : null;
$toDate = $request->has('to_date') ? Carbon::parse($request->get('to_date')) : null;
} catch (\Exception) {
return $this->response->errorWrongArgs('Invalid date.');
}
$page = $request->has('page') ? (int) $request->get('page') : 1;
$sort = ReportSort::tryFrom(
$request->get(self::SORT_COLUMN, '')
) ?? ReportSort::GENERATED_AT;
$sortDirection = ReportSortDirection::tryFrom(
strtolower($request->get(self::SORT_DIRECTION, ''))
) ?? ReportSortDirection::DESC;
$paginatedUserReports = $this->automatedReportsRepository->getPaginatedUserReports(
user: $user,
sort: $sort,
sortDirection: $sortDirection,
resultsPerPage: self::RESULTS_PER_PAGE,
page: $page,
fromDate: $fromDate,
toDate: $toDate,
teamIds: array_map('intval', $teamIds),
reportTypes: $reportTypes,
name: $name,
);
$reportResults = $this->automatedReportsService->transformReportResults(
$paginatedUserReports->getCollection()
);
$team = $user->getTeam();
$reportTypeFilter = $this->automatedReportsService->getReportTypeFieldData(
shortVersion: true,
team: $team
);
$data = $this->apiResponseService->fromPaginatorToArray(
paginator: $paginatedUserReports,
data: $reportResults,
moreMeta: [
self::SORT_COLUMN => $sort->value,
self::SORT_DIRECTION => $sortDirection->value,
],
filters: [
$reportTypeFilter['id'] => $reportTypeFilter,
],
);
return $this->response->withArray($data);
}
public function delete(Request $request, string $uuid): JsonResponse
{
/** @var User $user */
$user = $request->user();
try {
$result = $this->automatedReportsRepository->findResultByUuidForUser($uuid, $user);
if ($result === null) {
return new JsonResponse(
data: ['error' => 'Report not found'],
status: JsonResponse::HTTP_NOT_FOUND
);
}
$result->delete();
return new JsonResponse(null, JsonResponse::HTTP_NO_CONTENT);
} catch (Throwable $e) {
return new JsonResponse(
data: ['error' => 'Failed to delete report result'],
status: JsonResponse::HTTP_INTERNAL_SERVER_ERROR
);
}
}
}
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
40
1
40
65
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE name LIKE '%litify%'; # 1069, 994, 24993
SELECT * FROM users WHERE id = 25061;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 994;
SELECT * FROM crm_profiles WHERE user_id = 25061;
select * from crm_configurations where id = 834;
SELECT * FROM teams WHERE id = 882;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 882 and sa.provider = 'hubspot';
SELECT * FROM crm_configurations where id = 882; # 933 - GoGlobal
SELECT * FROM opportunities WHERE team_id = 933 order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 933 and sa.provider = 'hubspot';
SELECT * FROM crm_configurations WHERE provider = 'hubspot' and crm_provider_id = 7270388;
SELECT * FROM contacts where crm_configuration_id = 834;
SELECT * FROM opportunities WHERE team_id = 933
# AND crm_provider_id IN ('20131586060','46017317898','52543911090','53451356564','54101251892','54323768459');
AND id IN (8482561,18352941,19042734,19232139,19445140,19472541);
SELECT * FROM opportunity_contacts
WHERE opportunity_id IN (8482561,18352941,19042734,19232139,19445140,19472541);
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 485; #
SELECT * FROM opportunities WHERE team_id = 933 order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 933 and sa.provider = 'hubspot';
select crm.provider, l.* from leads l join crm_configurations crm on l.crm_configuration_id = crm.id
where crm.provider NOT IN ('salesforce', 'integration-app', 'bullhorn', 'copper')
# and l.converted_at IS NOT NULL
;
# [PASSWORD_DOTS]
SELECT * FROM activities a WHERE type IN ('email-inbound', 'email-outbound')
and opportunity_id IS NULL
order by id desc;
SELECT * FROM teams WHERE id = 604; # 598
SELECT * FROM activities WHERE id = 74410828; # [EMAIL]
SELECT * FROM accounts WHERE id = 20068382;
SELECT * FROM accounts WHERE id = 35186038;
SELECT * FROM contacts WHERE team_id = 852 and updated_at > '2026-01-23 12:30:00' order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 559 and sa.provider = 'hubspot';
SELECT * FROM activities WHERE uuid_to_bin('cb6342b6-a183-401c-b0af-ede92b2ae763') = uuid;
select * from sidekick_settings where team_id = 781;
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 26651871; # Teya
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 7562435;
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 8420347; # opflit 2100
SELECT * FROM crm_layouts WHERE crm_configuration_id = 711;
SELECT * FROM activities where crm_configuration_id = 711 and crm_provider_id IS NULL
and is_internal = 0 and status = 'completed'
order by id desc;
SELECT * FROM crm_layout_entities
WHERE crm_layout_id IN (2352, 2353);
;
SELECT * FROM crm_configurations where provider = 'hubspot' and id = 530;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 556 and sa.provider = 'hubspot';
SELECT * FROM activities WHERE uuid_to_bin('c6ca4b22-7738-4563-a95d-b8a9598924ae') = uuid;
SELECT * FROM activities WHERE uuid_to_bin('442abb2b-28bd-4be8-9c25-19e9bf02766d') = uuid;
select * from contacts
where crm_configuration_id = 530
and crm_provider_id = 872252;
select * from activities where crm_configuration_id = 530
and user_id = 14343 and type like '%softphone%'
and created_at between '2026-01-28 15:00:00' and '2026-01-28 15:10:00';
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 25666868; # Teya
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id = 8646335; # Teya
SELECT * FROM crm_configurations where provider = 'hubspot' and crm_provider_id IN (5933397);
SELECT t.name, t.id, t.owner_id, c.id, c.provider, c.crm_base_url FROM teams t
JOIN crm_configurations c ON t.id = c.team_id
WHERE t.status = 'active';
SELECT * FROM teams where id = 1091;
SELECT * FROM crm_configurations where team_id = 1091;
SELECT * FROM activity_providers where team_id = 1091;
SELECT * FROM activities where crm_configuration_id = 1024 and type IN ('softphone', 'softphone-outbound')
and provider NOT IN ('hubspot', 'aircall')
# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'
order by id desc;
SELECT * FROM teams WHERE name LIKE '%Leadventure%';
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1091 and sa.provider = 'salesforce';
SELECT * FROM teams WHERE name LIKE '%Wilson%'; # 862, 812
SELECT * FROM teams where id = 862;
SELECT * FROM crm_configurations where team_id = 862;
SELECT * FROM activity_providers where team_id = 862;
SELECT * FROM activities where crm_configuration_id = 812 and type IN ('softphone', 'softphone-outbound')
and provider NOT IN ('hubspot', 'aircall')
# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'
order by id desc;
SELECT t.id, crm.id, crm.provider, ap.* FROM teams t
join crm_configurations crm on t.id = crm.team_id
join activity_providers ap on t.id = ap.team_id
where t.status = 'active' and ap.is_enabled = 1
and crm.provider = 'hubspot'
and ap.provider NOT IN ('hubspot', 'aircall', 'uploader', 'gong', 'twilio', 'zoom-bot', 'google-meet', 'ms-teams',
'outreach', 'close', 'ringcentral', 'dialpad', 'zoom-phone');
SELECT * FROM teams where id = 1068;
SELECT * FROM crm_configurations where team_id = 1068;
SELECT * FROM activity_providers where team_id = 1068;
SELECT * FROM activities a
where crm_configuration_id = 993 and type IN ('softphone', 'softphone-outbound')
and a.provider NOT IN ('hubspot', 'uploader', 'gong', 'twilio', 'google-meet', 'ms-teams','close'
)
# and telephony_provider_id = '019c1131-a22f-4792-b9ea-20adf6a02ed0'
order by a.id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1068 and sa.provider = 'hubspot';
# [PASSWORD_DOTS]
# [PASSWORD_DOTS]
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 882; # 933 - GoGlobal , portalId: 6017093
SELECT * FROM opportunities WHERE team_id = 933 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 933 and updated_at > '2026-02-06 00:00:00' order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 933 and sa.provider = 'hubspot';
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 834; # 882 - AnyVan , portalId: 5468262
SELECT * FROM contacts WHERE crm_configuration_id = 834 and updated_at > '2026-03-30 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE crm_configuration_id = 834 and updated_at > '2026-03-04 08:00:00' order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 882 and sa.provider = 'hubspot';
select * from crm_layouts where crm_configuration_id = 834;
select * from crm_layout_entities where crm_layout_id = 2780;
select * from crm_fields where id IN (321153,321192,321193,321194);
SELECT * FROM opportunities WHERE crm_configuration_id = 834 and id = 10993426;
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 988; # 1057 - Teya (543ce4f4-168c-4571-91ea-5b35c253f06f) , portalId: 26651871
SELECT * FROM opportunities WHERE team_id = 1057 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1057 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1057 and sa.provider = 'hubspot';
SELECT * FROM crm_configurations where id = 533; # 559 - Connectd , portalId: 6710988
SELECT * FROM opportunities WHERE team_id = 559 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 559 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;
SELECT * FROM crm_configurations where id = 801; # 852 - Rise Vision , portalId: 2700250
SELECT * FROM opportunities WHERE team_id = 852 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 852 and updated_at > '2026-02-04 00:00:00' order by updated_at desc; # 6th last
SELECT * FROM crm_configurations where id = 962; # 1034 - evergrowth.io , portalId: 143180990
SELECT * FROM opportunities WHERE team_id = 1034 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1034 and updated_at > '2026-02-04 00:00:00' order by updated_at desc;
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 1037; # 1102 - Jibble , portalId: 6649755
SELECT * FROM opportunities WHERE team_id = 1102 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1102 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 8
SELECT * FROM crm_configurations where id = 1015; # 1049 - Travefy , portalId: 48904401
SELECT * FROM opportunities WHERE team_id = 1049 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1049 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 20
SELECT * FROM crm_configurations where id = 64; # 70 - SalaryFinance , portalId: 3404115
SELECT * FROM opportunities WHERE team_id = 70 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 70 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 6th last
SELECT * FROM crm_configurations where id = 802; # 853 - Street Group , portalId: 7658438
SELECT * FROM opportunities WHERE team_id = 853 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 853 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 10
SELECT * FROM crm_configurations where id = 872; # 921 - In Professional Development , portalId: 9238273
SELECT * FROM opportunities WHERE team_id = 921 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 921 and updated_at > '2026-02-04 12:30:00' order by updated_at desc; # 2
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 550; # 576 - SeedLegals , portalId: 3028661
SELECT * FROM opportunities WHERE team_id = 576 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 576 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;
SELECT * FROM crm_configurations where id = 989; # 1058 - rtaoutdoor.com , portalId: 22371204
SELECT * FROM opportunities WHERE team_id = 1058 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1058 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;
SELECT * FROM crm_configurations where id = 896; # 946 - Mintago , portalId: 6621281
SELECT * FROM opportunities WHERE team_id = 946 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 946 and updated_at > '2026-02-05 14:00:00' order by updated_at desc;
SELECT * FROM crm_configurations where id = 617; # 641 - PCS , portalId: 5244937
SELECT * FROM opportunities WHERE team_id = 641 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 641 and updated_at > '2026-02-05 14:00:00' order by updated_at desc; # 7th
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where id = 649; # 670 - Eventeny , portalId: 4492849
SELECT * FROM opportunities WHERE team_id = 670 and updated_at > '2026-02-18 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 670 and updated_at > '2026-02-09 08:00:00' order by updated_at desc; #
SELECT * FROM crm_configurations where id = 48; # 51 - CleanCloud , portalId: 4373137
SELECT * FROM opportunities WHERE team_id = 51 and updated_at > '2026-03-04 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 51 and updated_at > '2026-02-09 08:00:00' order by updated_at desc;
select * from users where team_id = 51; # 7783
SELECT * FROM groups WHERE uuid_to_bin('8a8d2cb6-8b55-4fa3-8b5c-5f0e3d8de59a') = uuid; # 1130
select * from activity_searches where user_id = 7783;
select * from activity_search_filters where activity_search_id IN (32291, 32292);
SELECT asf.activity_search_id, asf.id, asf.value
FROM activity_search_filters asf
WHERE asf.filter = 'group_id'
AND asf.value IN (
SELECT CONCAT(
HEX(SUBSTR(uuid, 5, 4)), '-',
HEX(SUBSTR(uuid, 3, 2)), '-',
HEX(SUBSTR(uuid, 1, 2)), '-',
HEX(SUBSTR(uuid, 9, 2)), '-',
HEX(SUBSTR(uuid, 11))
)
FROM groups
WHERE deleted_at IS NOT NULL
);
SELECT * FROM crm_configurations where id = 272; # 290 - Bonham & Brook , portalId: 5705856
SELECT * FROM opportunities WHERE team_id = 290 and updated_at > '2026-02-05 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 290 and updated_at > '2026-02-09 08:00:00' order by updated_at desc; # 6th
# [PASSWORD_DOTS]
SELECT * FROM crm_configurations where provider = 'hubspot';
SELECT * FROM crm_configurations where id = 1056; # 1119 - Chromatic , portalId: 45602133
SELECT * FROM opportunities WHERE team_id = 1119 and remotely_created_at > '2026-02-01 00:00:00' order by updated_at desc;
SELECT * FROM opportunities WHERE team_id = 1119 and updated_at > '2026-02-09 09:00:00' order by updated_at desc; # null
# [PASSWORD_DOTS]
select * from contacts where crm_provider_id = '003Uu00000ojD4NIAU';
select
cp.*
# DISTINCT t.id
# cp.id, cp.user_id, t.id, cp.crm_configuration_id, cp.contact_fields
FROM crm_profiles cp
JOIN crm_configurations crm on crm.id = cp.crm_configuration_id
JOIN users u on u.id = cp.user_id
JOIN teams t ON t.id = crm.team_id
WHERE crm.provider = 'salesforce' and t.status = 'active'
and cp.archived_at IS NULL and u.deleted_at IS NULL
and t.id NOT IN (1093)
and t.id = 2
and cp.contact_fields IS NULL;
# and c.crm_provider_id = '003Uu00000ojD4NIAU';
SELECT * FROM users WHERE id = 26484;
SELECT * FROM crm_profiles WHERE user_id = 26484;
SELECT * FROM social_accounts WHERE sociable_id = 26484;
SELECT * FROM crm_configurations where provider = 'salesforce';
select * from users where id IN (10022, 10403);
select * from users where team_id IN (526);
select * from teams where id IN (526, 532);
select * from crm_configurations where id IN (500, 516);
select * from crm_profiles where crm_configuration_id IN (500, 516) and user_id IN (10022, 10403);
select * from contacts where crm_configuration_id IN (500, 516) and crm_provider_id = '003Uu00000ojD4NIAU';
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 526 and sa.provider = 'salesforce';
select * from team_settings where team_id IN (526, 532);
select * from users where id IN (22824);
select * from crm_profiles where crm_configuration_id IN (1026);
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1093 and sa.provider = 'salesforce';
select * from teams where id = 1099;
select * from users where id = 29643
select * from activity_processing_states;
SELECT * FROM teams where name LIKE '%Fare%'; # 233
SELECT * FROM opportunities where crm_configuration_id = 215
# and crm_provider_id = 'oppo_ogESZf2P50nDrd1nGPvKDXeA6sSaTN5v51Lp4ayVzKR'
;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1088 and sa.provider = 'hubspot';
SELECT * FROM teams order by updated_at DESC
SELECT * FROM crm_configurations WHERE id = 1019; # SimpleConsign 1088 - no social account
select * from crm_configurations where provider = 'pipedrive';
select * from teams where id = 957;
select * from crm_configurations where id = 957;
SELECT * FROM teams WHERE name LIKE '%Prolific%'; # 544, 518, 10743
SELECT * FROM opportunities where crm_configuration_id = 518 order by id desc;
select * from users where team_id = 1; # 26726 - Gabriela Dureva
SELECT * FROM opportunities where user_id = 26726; # 16834447 - Prolific
select * from activities where user_id = 26726 order by id desc;
select * from contacts where crm_configuration_id = 1
and email IN ('[EMAIL]', '[EMAIL]'); # 2094416, 2093620
SELECT * FROM contacts WHERE id = 6284931;
SELECT p.* FROM activities a JOIN participants p ON a.id = p.activity_id
WHERE a.user_id = 26726 and p.lead_id IN (2094416, 2093620) and a.created_at > '2026-01-01 00:00:00' order by p.email;
select * from activities where id IN (75509259,75509261,75509261,75511034,75026464,75517602,75517605);
select * from crm_configurations where id = 1;
43801692-1aeb-32ce-acba-5b80a479701a
44c3c9cf-6f5e-75f3-8179-bc9f75dd2b1b
405975c0-b3d0-7aaa-821f-09d59cae6dd1
4caf848d-4bed-2299-b248-7788d41f9fca
49bedc3f-f196-eef3-89c3-dea6a3b4aa63
43420989-a09d-b8f8-9806-c8bbf7a02aac
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
SELECT * FROM activities WHERE id = 75461988;
SELECT * FROM activities WHERE uuid_to_bin('d6c5052e-e972-49e9-8912-26f2f7d6c5f6') = uuid;
select * from contacts where id = 17900517;
select * from contact_roles cr join crm_configurations crm on cr.crm_configuration_id = crm.id
where crm.provider != 'salesforce';
select * from users where id = 21047;
SELECT * FROM crm_configurations WHERE id = 892;
SELECT * FROM teams WHERE id = 942;
select * from opportunities where team_id = 942 order by updated_at desc;
select * from contacts where team_id = 942 order by updated_at desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 942 and sa.provider = 'hubspot';
SELECT * FROM opportunities where team_id = 1 and crm_provider_id IN ('006Pq00000NeH6XIAV', '006Pq000007z8kdIAA'); # 10697889, 6621430
SELECT * FROM crm_configurations WHERE id = 1;
SELECT * FROM teams WHERE crm_id = 1;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select id, user_id, opportunity_fields from crm_profiles where crm_configuration_id = 1
SELECT * FROM opportunities where team_id = 1 order by updated_at desc; # 10697889, 6621430
select * from teams where id = 852;
select * from groups where id = 2286;
select * from sidekick_settings where team_id = 852;
select * from default_activity_types where team_id = 852;
SELECT cc.provider, cc.id, p.id, u.*
FROM users u
LEFT JOIN crm_profiles p ON u.id = p.user_id AND p.id IS NULL -- no profile
INNER JOIN teams t ON u.team_id = t.id AND t.status = 'active' -- team is active
INNER JOIN crm_configurations cc ON t.crm_id = cc.id
WHERE u.status = 1 AND u.deleted_at IS NULL
AND u.crm_required = 1
AND u.team_id = 1
ORDER BY u.team_id;
SELECT * FROM crm_profiles cp where cp.crm_configuration_id = 1 and cp.user_id IN (
18481
);
SELECT cc.provider, cc.id, p.id, u.*
FROM users u
LEFT JOIN crm_profiles p ON u.id = p.user_id
INNER JOIN teams t ON u.team_id = t.id AND t.status = 'active'
INNER JOIN crm_configurations cc ON t.crm_id = cc.id
WHERE u.status = 1
AND u.deleted_at IS NULL
AND u.crm_required = 1
# AND u.team_id = 1
AND p.id IS NULL -- Move this condition to WHERE clause
ORDER BY u.team_id;
SELECT * FROM opportunities WHERE id = 20002609;
select * from teams where id = 1122; # Velatir, 29953 - [EMAIL]
select * from crm_configurations where id = 1060;
select * from crm_layouts where crm_configuration_id = 1060;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 3596;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1122 and sa.provider = 'hubspot';
select * from opportunities where team_id = 1122 order by updated_at desc;
select * from crm_field_data where object_type = 'contact';
SELECT * FROM activities WHERE uuid_to_bin('374fc8ed-3315-4c9f-9b25-318b7fd2928f') = uuid; # 76584262
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 248 and sa.provider = 'salesforce';
SELECT * FROM crm_profiles where user_id = 24115; # 005QF000002CswMYAS
SELECT * FROM users where id = 24115;
SELECT * FROM accounts where id = 4002896;
SELECT * FROM teams WHERE name LIKE '%adswerve%';
SELECT * FROM opportunities where crm_configuration_id = 230 AND crm_provider_id IN ("0069N000003GIQ9QAO","0061r000019yGP9AAM","0066900001S2KWlAAN","0066900001TDpj2AAD","0066900001b8uEwAAI","0069N000001rQi0QAE","006QF00000KD40mYAD","006QF00000LzpRJYAZ","0069N000002uomtQAA","0069N000002xlMLQAY","0066900001NV6ubAAD","0061r00001HJp45AAD","006QF00000uTlUoYAK","006QF00000v0bZqYAI");
SELECT * FROM opportunities WHERE crm_configuration_id = 230 AND crm_provider_id = '0069N000003GIQ9QAO'; # 6272203
SELECT u.id, u.email, ac.name, a.* FROM activities a
JOIN users u ON a.user_id = u.id
JOIN accounts ac ON a.account_id = ac.id
WHERE
uuid_to_bin('e3269598-b562-44fb-b5e9-9d2694dc63e0') = a.uuid or
uuid_to_bin('66ddc3ab-4e15-45aa-af0c-248c1eece593') = a.uuid or
uuid_to_bin('826bd328-e1cc-4213-b8d8-572454cacc07') = a.uuid;
select * from users where id = 5825;
SELECT * FROM activities WHERE uuid_to_bin('e56aa2e8-231a-421b-ab1f-cb38ed2bf573') = uuid;
select * from activities where uuid_to_bin('91e13b2f-2d1b-45f8-b1fd-1141b6563782') = uuid;
19594, 862
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 862 and sa.provider = 'salesforce';
select * from automated_reports where id = 36;
select ar.frequency, r.*, ar.* from automated_report_results r
join automated_reports ar on r.report_id = ar.id
where ar.frequency != 'one_off';
select s.* from activity_searches s join users u ON s.user_id = u.id where u.team_id = 882;
select * from nudges n where n.activity_search_id
select * from teams where created_at > '2026-03-09';
SELECT * FROM crm_layouts WHERE crm_configuration_id = 1065; # 1065
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 3617;
select * from users where team_id = 1 and name like '%Lukas%'; # 7160
SELECT * FROM teams WHERE id = 575;
select * from opportunities where team_id = 575;
SELECT * FROM teams WHERE name LIKE '%Integrum ESG%'; # 1126, 1065,
select * from opportunities where team_id = 1126;
SELECT * FROM teams WHERE name LIKE '%Base%'; # 1125, 1063,
select * from opportunities where team_id = 1125;
select * from contacts c
where c.team_id = 882;
SELECT * FROM activities WHERE id = 76822967;
SELECT * FROM crm_profiles WHERE user_id = 15440;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 555;
SELECT * FROM crm_configurations WHERE id = 555;
SELECT * FROM users WHERE id = 15440; # team. 581, gr. 15440, pl. 3911, act. field 162182
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 581 and sa.provider = 'salesforce';
SELECT * FROM automated_report_results order by id desc;
select * from features;
select * from team_features where feature_id = 40;
select * from teams where id = 556;
select * from automated_reports;
where id = 54; # 4fdd41f6-dcf0-30d0-b339-7345381b6044 , ["pdf","podcast"]
SELECT * FROM automated_report_results WHERE uuid_to_bin('822fa41b-afd3-43a9-a248-86b0e36f3131') = uuid;
select * from automated_report_results order by id desc;
SELECT * FROM automated_report_results WHERE id = 1919;
select * from automated_report_results WHERE report_id = 54;
select * from opportunities where id = 7594349;
SELECT * FROM teams WHERE name LIKE '%Les%'; # 711, 692, 16067 - [EMAIL]
select * from playbooks where team_id = 711; # event 226147
SELECT * FROM playbook_categories WHERE playbook_id = 5515;
SELECT * FROM crm_fields WHERE crm_configuration_id = 692 and object_type = 'event';
SELECT * FROM crm_fields WHERE id = 226147;
SELECT * FROM crm_field_values WHERE crm_field_id = 226147;
SELECT * FROM crm_configurations WHERE id = 692;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 711 and sa.provider = 'salesforce';
SELECT * FROM crm_profiles cp JOIN users u on u.id = cp.user_id WHERE u.team_id = 711;
select * from leads;
select * from calendars;
SELECT
t.id AS team_id,
t.name,
LOWER(SUBSTRING_INDEX(c.calendar_provider_id, '@', -1)) AS calendar_domain
FROM teams t
JOIN users u ON u.team_id = t.id
JOIN calendars c ON c.user_id = u.id AND c.status = 'active' AND c.calendar_provider_id LIKE '%@%'
LEFT JOIN team_domains td
ON td.team_id = t.id
AND td.deleted_at IS NULL
AND td.domain = LOWER(SUBSTRING_INDEX(c.calendar_provider_id, '@', -1))
GROUP BY t.id, t.name, calendar_domain
ORDER BY t.name, calendar_domain;
select * from users u join calendars c on c.user_id = u.id
where u.team_id = 882;
select * from activities where id = 74049485; # team 563 crm 537
select * from activities where id = 73272382; # team 563 crm 537
select * from activities where id = 64400389; # team 563 crm 537
select * from activities where id = 58081273; # team 563 crm 537
select * from activities where id = 54520297; # team 563 crm 537
select * from participants where activity_id = 58081273;
select * from activities where crm_configuration_id = 537 and provider = 'aircall'
and account_id = 19003658 order by updated_at desc;
select * from contacts where crm_configuration_id = 537 and id = 35957759;
select * from accounts where crm_configuration_id = 537 and id = 19003658;
select * from automated_report_results where id = 1976;
select * from automated_reports where id = 583;
select * from activity_searches where id = 87714;
select * from activity_search_filters where activity_search_id = 87714;
SELECT * FROM activities WHERE uuid_to_bin('8827f672-202d-4162-9d04-73ff5f0566a9') = uuid
or uuid_to_bin('47842446-af51-4bcb-854f-cc6560290101') = uuid;
SELECT * FROM crm_configurations WHERE provider = 'hubspot';
select * from rate_limits;
select * from automated_report_results where media_type = 'pdf' and status = 2
and id IN (18, 1872);
select * from automated_reports where id = 54;
SELECT * FROM users WHERE id IN (24623,29443,29613);
SELECT * FROM automated_report_results WHERE uuid_to_bin('822fa41b-afd3-43a9-a248-86b0e36f3131') = uuid;
select * from text_relays where created_at > '2026-05-01'
and id IN (32415, 32416);
# and id = 32412;
select * from users where team_id = 2 and email like '%scott%' and id = 29510;
SELECT * FROM activities WHERE uuid_to_bin('67cebfc2-ed56-44a2-8c68-7a0286ed8618') = uuid; # 79763436
SELECT email_provider_id, COUNT(*) as count, GROUP_CONCAT(id) as ids, GROUP_CONCAT(status) as statuses
FROM text_relays
WHERE email_provider_id IN ('19e2027868a64b42', '19e2033ed8ea6b10')
GROUP BY email_provider_id;
SELECT id, status, telephony_provider_id, created_at
FROM activities
WHERE id IN (80028719, 80028846);
SELECT id, status, code, email_sent_at, created_at, updated_at
FROM text_relays
WHERE id IN (32415, 32416);
SELECT id, status, code, sender, recipient, created_at
FROM text_relays
WHERE sender LIKE '%mario.georgiev%' OR sender LIKE '%stoyan.tomov%'
ORDER BY created_at DESC
LIMIT 10;
SELECT id, uuid, status, code, sender, recipient, created_at, updated_at
FROM text_relays
WHERE uuid = uuid_to_bin('0626141c-27a6-4d8c-aff8-7c8020a2c656');
# [PASSWORD_DOTS]
SELECT DISTINCT u.id, u.email, u.name, u.softphone_number, COUNT(a.id) as sms_count
FROM users u
INNER JOIN activities a ON u.id = a.user_id
WHERE a.type LIKE 'sms%'
# AND a.created_at > DATE_SUB(NOW(), INTERVAL 30 DAY)
GROUP BY u.id, u.email, u.name, u.softphone_number
ORDER BY sms_count DESC;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
49090
|
NULL
|
NULL
|
NULL
|
|
49092
|
NULL
|
0
|
2026-05-15T11:21:24.213023+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-15/1778 /Users/lukas/.screenpipe/data/data/2026-05-15/1778844084213_m1.jpg...
|
Activity Monitor
|
Activity Monitor – All Processes
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
25,68%
Processes:
Idle:
48,99%
25,33%
User:
System 25,68%
Processes:
Idle:
48,99%
25,33%
User:
System:
4 386
497
CPU LOAD
Threads:
kernel_task
122,8
28:38:44,25
582
8354
Apple
0,0
0,00
0
root
PhpStorm
119,6
1:43:09,09
259
356
Apple
3,5
6:01,98
89880
lukas
WindowServer
89,6
11:53:41,87
22
290
Apple
84,4
5:31:28,55
402
_windowserver
replayd
65,3
8:44:44,38
37
2
Apple
0,0
0,00
798
lukas
fseventsd
52,9
14:17,09
16
20
Apple
0,0
0,00
337
root
mobileassetd
25,6
33,75...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"25,68%","depth":3,"bounds":{"left":0.90069443,"top":0.0,"width":0.031944446,"height":0.015555556},"on_screen":true,"automation_id":"_NS:297","role_description":"text"},{"role":"AXStaticText","text":"Processes:","depth":3,"bounds":{"left":1.0,"top":0.0,"width":-0.07152772,"height":0.015555556},"on_screen":true,"automation_id":"_NS:290","help_text":"Total number of processes on the system","role_description":"text"},{"role":"AXStaticText","text":"Idle:","depth":3,"bounds":{"left":0.8076389,"top":0.0,"width":0.018402778,"height":0.015555556},"on_screen":true,"automation_id":"_NS:283","help_text":"Percentage of total CPU that is not being utilised","role_description":"text"},{"role":"AXStaticText","text":"48,99%","depth":3,"bounds":{"left":0.90069443,"top":0.0,"width":0.031944446,"height":0.015555556},"on_screen":true,"automation_id":"_NS:274","role_description":"text"},{"role":"AXStaticText","text":"25,33%","depth":3,"on_screen":true,"automation_id":"_NS:262","role_description":"text"},{"role":"AXStaticText","text":"User:","depth":3,"bounds":{"left":0.8076389,"top":0.0,"width":0.022222223,"height":0.015555556},"on_screen":true,"automation_id":"_NS:255","help_text":"Percentage of total CPU utilised in performing tasks for the user","role_description":"text"},{"role":"AXStaticText","text":"System:","depth":3,"on_screen":true,"automation_id":"_NS:248","help_text":"Percentage of total CPU utilised in performing tasks for the system","role_description":"text"},{"role":"AXStaticText","text":"4 386","depth":3,"on_screen":true,"automation_id":"_NS:242","role_description":"text"},{"role":"AXStaticText","text":"497","depth":3,"on_screen":true,"automation_id":"_NS:235","role_description":"text"},{"role":"AXStaticText","text":"CPU LOAD","depth":3,"on_screen":true,"automation_id":"_NS:213","role_description":"text"},{"role":"AXStaticText","text":"Threads:","depth":3,"on_screen":true,"automation_id":"_NS:199","help_text":"Total number of threads on the system","role_description":"text"},{"role":"AXStaticText","text":"kernel_task","depth":5,"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"122,8","depth":5,"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"28:38:44,25","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"582","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"8354","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"0,0","depth":5,"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"0,00","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"0","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"root","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"PhpStorm","depth":5,"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"119,6","depth":5,"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"1:43:09,09","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"259","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"356","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"3,5","depth":5,"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"6:01,98","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"89880","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"lukas","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"WindowServer","depth":5,"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"89,6","depth":5,"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"11:53:41,87","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"22","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"290","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"84,4","depth":5,"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"5:31:28,55","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"402","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"_windowserver","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"replayd","depth":5,"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"65,3","depth":5,"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"8:44:44,38","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"37","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"2","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"0,0","depth":5,"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"0,00","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"798","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"lukas","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"fseventsd","depth":5,"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"52,9","depth":5,"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"14:17,09","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"16","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"20","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"0,0","depth":5,"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"0,00","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"337","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"root","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"mobileassetd","depth":5,"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"25,6","depth":5,"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"33,75","depth":5,"on_screen":true,"automation_id":"_NS:9","role_description":"text"}]...
|
-6573902562876293330
|
-6090703943559401908
|
app_switch
|
accessibility
|
NULL
|
25,68%
Processes:
Idle:
48,99%
25,33%
User:
System 25,68%
Processes:
Idle:
48,99%
25,33%
User:
System:
4 386
497
CPU LOAD
Threads:
kernel_task
122,8
28:38:44,25
582
8354
Apple
0,0
0,00
0
root
PhpStorm
119,6
1:43:09,09
259
356
Apple
3,5
6:01,98
89880
lukas
WindowServer
89,6
11:53:41,87
22
290
Apple
84,4
5:31:28,55
402
_windowserver
replayd
65,3
8:44:44,38
37
2
Apple
0,0
0,00
798
lukas
fseventsd
52,9
14:17,09
16
20
Apple
0,0
0,00
337
root
mobileassetd
25,6
33,75...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49093
|
1753
|
45
|
2026-05-15T11:21:24.213049+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-15/1778 /Users/lukas/.screenpipe/data/data/2026-05-15/1778844084213_m2.jpg...
|
Activity Monitor
|
Activity Monitor – All Processes
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
25,68%
Processes:
Idle:
48,99%
25,33%
User:
System 25,68%
Processes:
Idle:
48,99%
25,33%
User:
System:
4 386
497
CPU LOAD
Threads:
kernel_task
122,8
28:38:44,25
582
8354
Apple
0,0
0,00
0
root
PhpStorm
119,6
1:43:09,09
259
356
Apple
3,5
6:01,98
89880
lukas
WindowServer
89,6
11:53:41,87
22
290
Apple
84,4
5:31:28,55
402
_windowserver
replayd
65,3
8:44:44,38
37
2
Apple
0,0
0,00
798
lukas
fseventsd
52,9
14:17,09
16
20
Apple
0,0
0,00
337
root
mobileassetd
25,6
33,75
8...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"25,68%","depth":3,"bounds":{"left":0.70146275,"top":0.95530725,"width":0.015292553,"height":0.011173184},"on_screen":true,"automation_id":"_NS:297","role_description":"text"},{"role":"AXStaticText","text":"Processes:","depth":3,"bounds":{"left":0.78324467,"top":0.9393456,"width":0.02044548,"height":0.011173184},"on_screen":true,"automation_id":"_NS:290","help_text":"Total number of processes on the system","role_description":"text"},{"role":"AXStaticText","text":"Idle:","depth":3,"bounds":{"left":0.6569149,"top":0.95530725,"width":0.00880984,"height":0.011173184},"on_screen":true,"automation_id":"_NS:283","help_text":"Percentage of total CPU that is not being utilised","role_description":"text"},{"role":"AXStaticText","text":"48,99%","depth":3,"bounds":{"left":0.70146275,"top":0.9393456,"width":0.015292553,"height":0.011173184},"on_screen":true,"automation_id":"_NS:274","role_description":"text"},{"role":"AXStaticText","text":"25,33%","depth":3,"bounds":{"left":0.70146275,"top":0.9233839,"width":0.015292553,"height":0.011173184},"on_screen":true,"automation_id":"_NS:262","role_description":"text"},{"role":"AXStaticText","text":"User:","depth":3,"bounds":{"left":0.6569149,"top":0.9393456,"width":0.010638298,"height":0.011173184},"on_screen":true,"automation_id":"_NS:255","help_text":"Percentage of total CPU utilised in performing tasks for the user","role_description":"text"},{"role":"AXStaticText","text":"System:","depth":3,"bounds":{"left":0.6569149,"top":0.9233839,"width":0.015458777,"height":0.011173184},"on_screen":true,"automation_id":"_NS:248","help_text":"Percentage of total CPU utilised in performing tasks for the system","role_description":"text"},{"role":"AXStaticText","text":"4 386","depth":3,"bounds":{"left":0.8312833,"top":0.9233839,"width":0.011801862,"height":0.011173184},"on_screen":true,"automation_id":"_NS:242","role_description":"text"},{"role":"AXStaticText","text":"497","depth":3,"bounds":{"left":0.83477396,"top":0.9393456,"width":0.00831117,"height":0.011173184},"on_screen":true,"automation_id":"_NS:235","role_description":"text"},{"role":"AXStaticText","text":"CPU LOAD","depth":3,"bounds":{"left":0.7194149,"top":0.92178774,"width":0.061170213,"height":0.014365523},"on_screen":true,"automation_id":"_NS:213","role_description":"text"},{"role":"AXStaticText","text":"Threads:","depth":3,"bounds":{"left":0.78324467,"top":0.9233839,"width":0.016788565,"height":0.011173184},"on_screen":true,"automation_id":"_NS:199","help_text":"Total number of threads on the system","role_description":"text"},{"role":"AXStaticText","text":"kernel_task","depth":5,"bounds":{"left":0.5162899,"top":0.09098165,"width":0.080784574,"height":0.011173184},"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"122,8","depth":5,"bounds":{"left":0.60272604,"top":0.09098165,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"28:38:44,25","depth":5,"bounds":{"left":0.63331115,"top":0.09098165,"width":0.023271276,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"582","depth":5,"bounds":{"left":0.66223407,"top":0.09098165,"width":0.019946808,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"8354","depth":5,"bounds":{"left":0.6878325,"top":0.09098165,"width":0.032579787,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"bounds":{"left":0.72606385,"top":0.09098165,"width":0.02925532,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"0,0","depth":5,"bounds":{"left":0.7609708,"top":0.09098165,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"0,00","depth":5,"bounds":{"left":0.7915558,"top":0.09098165,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"0","depth":5,"bounds":{"left":0.82214093,"top":0.09098165,"width":0.013297873,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"root","depth":5,"bounds":{"left":0.84109044,"top":0.09098165,"width":0.026595745,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"PhpStorm","depth":5,"bounds":{"left":0.5162899,"top":0.110135674,"width":0.080784574,"height":0.011173184},"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"119,6","depth":5,"bounds":{"left":0.60272604,"top":0.110135674,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"1:43:09,09","depth":5,"bounds":{"left":0.63331115,"top":0.110135674,"width":0.023271276,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"259","depth":5,"bounds":{"left":0.66223407,"top":0.110135674,"width":0.019946808,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"356","depth":5,"bounds":{"left":0.6878325,"top":0.110135674,"width":0.032579787,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"bounds":{"left":0.72606385,"top":0.110135674,"width":0.02925532,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"3,5","depth":5,"bounds":{"left":0.7609708,"top":0.110135674,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"6:01,98","depth":5,"bounds":{"left":0.7915558,"top":0.110135674,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"89880","depth":5,"bounds":{"left":0.82214093,"top":0.110135674,"width":0.013297873,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"lukas","depth":5,"bounds":{"left":0.84109044,"top":0.110135674,"width":0.026595745,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"WindowServer","depth":5,"bounds":{"left":0.5162899,"top":0.1292897,"width":0.080784574,"height":0.011173184},"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"89,6","depth":5,"bounds":{"left":0.60272604,"top":0.1292897,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"11:53:41,87","depth":5,"bounds":{"left":0.63331115,"top":0.1292897,"width":0.023271276,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"22","depth":5,"bounds":{"left":0.66223407,"top":0.1292897,"width":0.019946808,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"290","depth":5,"bounds":{"left":0.6878325,"top":0.1292897,"width":0.032579787,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"bounds":{"left":0.72606385,"top":0.1292897,"width":0.02925532,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"84,4","depth":5,"bounds":{"left":0.7609708,"top":0.1292897,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"5:31:28,55","depth":5,"bounds":{"left":0.7915558,"top":0.1292897,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"402","depth":5,"bounds":{"left":0.82214093,"top":0.1292897,"width":0.013297873,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"_windowserver","depth":5,"bounds":{"left":0.84109044,"top":0.1292897,"width":0.026595745,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"replayd","depth":5,"bounds":{"left":0.5162899,"top":0.14844373,"width":0.080784574,"height":0.011173184},"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"65,3","depth":5,"bounds":{"left":0.60272604,"top":0.14844373,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"8:44:44,38","depth":5,"bounds":{"left":0.63331115,"top":0.14844373,"width":0.023271276,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"37","depth":5,"bounds":{"left":0.66223407,"top":0.14844373,"width":0.019946808,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"2","depth":5,"bounds":{"left":0.6878325,"top":0.14844373,"width":0.032579787,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"bounds":{"left":0.72606385,"top":0.14844373,"width":0.02925532,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"0,0","depth":5,"bounds":{"left":0.7609708,"top":0.14844373,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"0,00","depth":5,"bounds":{"left":0.7915558,"top":0.14844373,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"798","depth":5,"bounds":{"left":0.82214093,"top":0.14844373,"width":0.013297873,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"lukas","depth":5,"bounds":{"left":0.84109044,"top":0.14844373,"width":0.026595745,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"fseventsd","depth":5,"bounds":{"left":0.5162899,"top":0.16759777,"width":0.080784574,"height":0.011173184},"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"52,9","depth":5,"bounds":{"left":0.60272604,"top":0.16759777,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"14:17,09","depth":5,"bounds":{"left":0.63331115,"top":0.16759777,"width":0.023271276,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"16","depth":5,"bounds":{"left":0.66223407,"top":0.16759777,"width":0.019946808,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"20","depth":5,"bounds":{"left":0.6878325,"top":0.16759777,"width":0.032579787,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"bounds":{"left":0.72606385,"top":0.16759777,"width":0.02925532,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"0,0","depth":5,"bounds":{"left":0.7609708,"top":0.16759777,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"0,00","depth":5,"bounds":{"left":0.7915558,"top":0.16759777,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"337","depth":5,"bounds":{"left":0.82214093,"top":0.16759777,"width":0.013297873,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"root","depth":5,"bounds":{"left":0.84109044,"top":0.16759777,"width":0.026595745,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"mobileassetd","depth":5,"bounds":{"left":0.5162899,"top":0.1867518,"width":0.080784574,"height":0.011173184},"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"25,6","depth":5,"bounds":{"left":0.60272604,"top":0.1867518,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"33,75","depth":5,"bounds":{"left":0.63331115,"top":0.1867518,"width":0.023271276,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"8","depth":5,"bounds":{"left":0.66223407,"top":0.1867518,"width":0.019946808,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"}]...
|
-4468003479762836212
|
-6090703925305774516
|
app_switch
|
accessibility
|
NULL
|
25,68%
Processes:
Idle:
48,99%
25,33%
User:
System 25,68%
Processes:
Idle:
48,99%
25,33%
User:
System:
4 386
497
CPU LOAD
Threads:
kernel_task
122,8
28:38:44,25
582
8354
Apple
0,0
0,00
0
root
PhpStorm
119,6
1:43:09,09
259
356
Apple
3,5
6:01,98
89880
lukas
WindowServer
89,6
11:53:41,87
22
290
Apple
84,4
5:31:28,55
402
_windowserver
replayd
65,3
8:44:44,38
37
2
Apple
0,0
0,00
798
lukas
fseventsd
52,9
14:17,09
16
20
Apple
0,0
0,00
337
root
mobileassetd
25,6
33,75
8...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49094
|
1753
|
46
|
2026-05-15T11:21:28.498735+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-15/1778 /Users/lukas/.screenpipe/data/data/2026-05-15/1778844088498_m2.jpg...
|
Activity Monitor
|
Activity Monitor – All Processes
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
45,24%
Processes:
Idle:
32,23%
22,52%
User:
System 45,24%
Processes:
Idle:
32,23%
22,52%
User:
System:
4 211
499
CPU LOAD
Threads:
PhpStorm
221,7
1:43:20,77
247
575
Apple
4,5
6:02,41
89880
lukas
kernel_task
93,5
28:38:49,18
582
7247
Apple
0,0
0,00
0
root
WindowServer
57,8
11:53:44,92
22
260
Apple
76,1
5:31:30,21
402
_windowserver
replayd
55,2
8:44:47,29
33
3
Apple
0,0
0,00
798
lukas
fseventsd
46,6
14:19,55
13
24
Apple
0,0
0,00
337
root
screenpipe
19,8
46:39,57
60
91
Apple
0,0
2,43
48273
lukas
mobileassetd
17,8
34,69
9
1
Apple
0,0
0,00
42540
root
triald
13,2
5,62
5
1
Apple
0,0
0,00
42260
lukas
siriknowledged
10,9
2,24
7
1
Apple
0,0
0,00
58281
lukas
coreaudiod
9,1
2:24:42,10
27
1110
Apple
0,0
0,00
443
_coreaudiod
opendirectoryd
5,5
17:51,88
10
0
Apple
0,0
0,00
373
root
mds_stores
5,3
49:47,84
8
4
Apple
0,0
0,00
505
root
Firefox
4,8
58:38,98
91
70
Apple
0,0
0,03
33526
lukas
Activity Monitor
4,7
37:42,02...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"45,24%","depth":3,"bounds":{"left":0.70146275,"top":0.95530725,"width":0.015292553,"height":0.011173184},"on_screen":true,"automation_id":"_NS:297","role_description":"text"},{"role":"AXStaticText","text":"Processes:","depth":3,"bounds":{"left":0.78324467,"top":0.9393456,"width":0.02044548,"height":0.011173184},"on_screen":true,"automation_id":"_NS:290","help_text":"Total number of processes on the system","role_description":"text"},{"role":"AXStaticText","text":"Idle:","depth":3,"bounds":{"left":0.6569149,"top":0.95530725,"width":0.00880984,"height":0.011173184},"on_screen":true,"automation_id":"_NS:283","help_text":"Percentage of total CPU that is not being utilised","role_description":"text"},{"role":"AXStaticText","text":"32,23%","depth":3,"bounds":{"left":0.70146275,"top":0.9393456,"width":0.015292553,"height":0.011173184},"on_screen":true,"automation_id":"_NS:274","role_description":"text"},{"role":"AXStaticText","text":"22,52%","depth":3,"bounds":{"left":0.70146275,"top":0.9233839,"width":0.015292553,"height":0.011173184},"on_screen":true,"automation_id":"_NS:262","role_description":"text"},{"role":"AXStaticText","text":"User:","depth":3,"bounds":{"left":0.6569149,"top":0.9393456,"width":0.010638298,"height":0.011173184},"on_screen":true,"automation_id":"_NS:255","help_text":"Percentage of total CPU utilised in performing tasks for the user","role_description":"text"},{"role":"AXStaticText","text":"System:","depth":3,"bounds":{"left":0.6569149,"top":0.9233839,"width":0.015458777,"height":0.011173184},"on_screen":true,"automation_id":"_NS:248","help_text":"Percentage of total CPU utilised in performing tasks for the system","role_description":"text"},{"role":"AXStaticText","text":"4 211","depth":3,"bounds":{"left":0.8312833,"top":0.9233839,"width":0.011801862,"height":0.011173184},"on_screen":true,"automation_id":"_NS:242","role_description":"text"},{"role":"AXStaticText","text":"499","depth":3,"bounds":{"left":0.83477396,"top":0.9393456,"width":0.00831117,"height":0.011173184},"on_screen":true,"automation_id":"_NS:235","role_description":"text"},{"role":"AXStaticText","text":"CPU LOAD","depth":3,"bounds":{"left":0.7194149,"top":0.92178774,"width":0.061170213,"height":0.014365523},"on_screen":true,"automation_id":"_NS:213","role_description":"text"},{"role":"AXStaticText","text":"Threads:","depth":3,"bounds":{"left":0.78324467,"top":0.9233839,"width":0.016788565,"height":0.011173184},"on_screen":true,"automation_id":"_NS:199","help_text":"Total number of threads on the system","role_description":"text"},{"role":"AXStaticText","text":"PhpStorm","depth":5,"bounds":{"left":0.5162899,"top":0.09098165,"width":0.080784574,"height":0.011173184},"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"221,7","depth":5,"bounds":{"left":0.60272604,"top":0.09098165,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"1:43:20,77","depth":5,"bounds":{"left":0.63331115,"top":0.09098165,"width":0.023271276,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"247","depth":5,"bounds":{"left":0.66223407,"top":0.09098165,"width":0.019946808,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"575","depth":5,"bounds":{"left":0.6878325,"top":0.09098165,"width":0.032579787,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"bounds":{"left":0.72606385,"top":0.09098165,"width":0.02925532,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"4,5","depth":5,"bounds":{"left":0.7609708,"top":0.09098165,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"6:02,41","depth":5,"bounds":{"left":0.7915558,"top":0.09098165,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"89880","depth":5,"bounds":{"left":0.82214093,"top":0.09098165,"width":0.013297873,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"lukas","depth":5,"bounds":{"left":0.84109044,"top":0.09098165,"width":0.026595745,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"kernel_task","depth":5,"bounds":{"left":0.5162899,"top":0.110135674,"width":0.080784574,"height":0.011173184},"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"93,5","depth":5,"bounds":{"left":0.60272604,"top":0.110135674,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"28:38:49,18","depth":5,"bounds":{"left":0.63331115,"top":0.110135674,"width":0.023271276,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"582","depth":5,"bounds":{"left":0.66223407,"top":0.110135674,"width":0.019946808,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"7247","depth":5,"bounds":{"left":0.6878325,"top":0.110135674,"width":0.032579787,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"bounds":{"left":0.72606385,"top":0.110135674,"width":0.02925532,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"0,0","depth":5,"bounds":{"left":0.7609708,"top":0.110135674,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"0,00","depth":5,"bounds":{"left":0.7915558,"top":0.110135674,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"0","depth":5,"bounds":{"left":0.82214093,"top":0.110135674,"width":0.013297873,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"root","depth":5,"bounds":{"left":0.84109044,"top":0.110135674,"width":0.026595745,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"WindowServer","depth":5,"bounds":{"left":0.5162899,"top":0.1292897,"width":0.080784574,"height":0.011173184},"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"57,8","depth":5,"bounds":{"left":0.60272604,"top":0.1292897,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"11:53:44,92","depth":5,"bounds":{"left":0.63331115,"top":0.1292897,"width":0.023271276,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"22","depth":5,"bounds":{"left":0.66223407,"top":0.1292897,"width":0.019946808,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"260","depth":5,"bounds":{"left":0.6878325,"top":0.1292897,"width":0.032579787,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"bounds":{"left":0.72606385,"top":0.1292897,"width":0.02925532,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"76,1","depth":5,"bounds":{"left":0.7609708,"top":0.1292897,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"5:31:30,21","depth":5,"bounds":{"left":0.7915558,"top":0.1292897,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"402","depth":5,"bounds":{"left":0.82214093,"top":0.1292897,"width":0.013297873,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"_windowserver","depth":5,"bounds":{"left":0.84109044,"top":0.1292897,"width":0.026595745,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"replayd","depth":5,"bounds":{"left":0.5162899,"top":0.14844373,"width":0.080784574,"height":0.011173184},"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"55,2","depth":5,"bounds":{"left":0.60272604,"top":0.14844373,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"8:44:47,29","depth":5,"bounds":{"left":0.63331115,"top":0.14844373,"width":0.023271276,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"33","depth":5,"bounds":{"left":0.66223407,"top":0.14844373,"width":0.019946808,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"3","depth":5,"bounds":{"left":0.6878325,"top":0.14844373,"width":0.032579787,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"bounds":{"left":0.72606385,"top":0.14844373,"width":0.02925532,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"0,0","depth":5,"bounds":{"left":0.7609708,"top":0.14844373,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"0,00","depth":5,"bounds":{"left":0.7915558,"top":0.14844373,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"798","depth":5,"bounds":{"left":0.82214093,"top":0.14844373,"width":0.013297873,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"lukas","depth":5,"bounds":{"left":0.84109044,"top":0.14844373,"width":0.026595745,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"fseventsd","depth":5,"bounds":{"left":0.5162899,"top":0.16759777,"width":0.080784574,"height":0.011173184},"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"46,6","depth":5,"bounds":{"left":0.60272604,"top":0.16759777,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"14:19,55","depth":5,"bounds":{"left":0.63331115,"top":0.16759777,"width":0.023271276,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"13","depth":5,"bounds":{"left":0.66223407,"top":0.16759777,"width":0.019946808,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"24","depth":5,"bounds":{"left":0.6878325,"top":0.16759777,"width":0.032579787,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"bounds":{"left":0.72606385,"top":0.16759777,"width":0.02925532,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"0,0","depth":5,"bounds":{"left":0.7609708,"top":0.16759777,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"0,00","depth":5,"bounds":{"left":0.7915558,"top":0.16759777,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"337","depth":5,"bounds":{"left":0.82214093,"top":0.16759777,"width":0.013297873,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"root","depth":5,"bounds":{"left":0.84109044,"top":0.16759777,"width":0.026595745,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"screenpipe","depth":5,"bounds":{"left":0.5162899,"top":0.1867518,"width":0.080784574,"height":0.011173184},"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"19,8","depth":5,"bounds":{"left":0.60272604,"top":0.1867518,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"46:39,57","depth":5,"bounds":{"left":0.63331115,"top":0.1867518,"width":0.023271276,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"60","depth":5,"bounds":{"left":0.66223407,"top":0.1867518,"width":0.019946808,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"91","depth":5,"bounds":{"left":0.6878325,"top":0.1867518,"width":0.032579787,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"bounds":{"left":0.72606385,"top":0.1867518,"width":0.02925532,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"0,0","depth":5,"bounds":{"left":0.7609708,"top":0.1867518,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"2,43","depth":5,"bounds":{"left":0.7915558,"top":0.1867518,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"48273","depth":5,"bounds":{"left":0.82214093,"top":0.1867518,"width":0.013297873,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"lukas","depth":5,"bounds":{"left":0.84109044,"top":0.1867518,"width":0.026595745,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"mobileassetd","depth":5,"bounds":{"left":0.5162899,"top":0.20590582,"width":0.080784574,"height":0.011173184},"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"17,8","depth":5,"bounds":{"left":0.60272604,"top":0.20590582,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"34,69","depth":5,"bounds":{"left":0.63331115,"top":0.20590582,"width":0.023271276,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"9","depth":5,"bounds":{"left":0.66223407,"top":0.20590582,"width":0.019946808,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"1","depth":5,"bounds":{"left":0.6878325,"top":0.20590582,"width":0.032579787,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"bounds":{"left":0.72606385,"top":0.20590582,"width":0.02925532,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"0,0","depth":5,"bounds":{"left":0.7609708,"top":0.20590582,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"0,00","depth":5,"bounds":{"left":0.7915558,"top":0.20590582,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"42540","depth":5,"bounds":{"left":0.82214093,"top":0.20590582,"width":0.013297873,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"root","depth":5,"bounds":{"left":0.84109044,"top":0.20590582,"width":0.026595745,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"triald","depth":5,"bounds":{"left":0.5162899,"top":0.22505985,"width":0.080784574,"height":0.011173184},"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"13,2","depth":5,"bounds":{"left":0.60272604,"top":0.22505985,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"5,62","depth":5,"bounds":{"left":0.63331115,"top":0.22505985,"width":0.023271276,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"5","depth":5,"bounds":{"left":0.66223407,"top":0.22505985,"width":0.019946808,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"1","depth":5,"bounds":{"left":0.6878325,"top":0.22505985,"width":0.032579787,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"bounds":{"left":0.72606385,"top":0.22505985,"width":0.02925532,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"0,0","depth":5,"bounds":{"left":0.7609708,"top":0.22505985,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"0,00","depth":5,"bounds":{"left":0.7915558,"top":0.22505985,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"42260","depth":5,"bounds":{"left":0.82214093,"top":0.22505985,"width":0.013297873,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"lukas","depth":5,"bounds":{"left":0.84109044,"top":0.22505985,"width":0.026595745,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"siriknowledged","depth":5,"bounds":{"left":0.5162899,"top":0.2442139,"width":0.080784574,"height":0.011173184},"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"10,9","depth":5,"bounds":{"left":0.60272604,"top":0.2442139,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"2,24","depth":5,"bounds":{"left":0.63331115,"top":0.2442139,"width":0.023271276,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"7","depth":5,"bounds":{"left":0.66223407,"top":0.2442139,"width":0.019946808,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"1","depth":5,"bounds":{"left":0.6878325,"top":0.2442139,"width":0.032579787,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"bounds":{"left":0.72606385,"top":0.2442139,"width":0.02925532,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"0,0","depth":5,"bounds":{"left":0.7609708,"top":0.2442139,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"0,00","depth":5,"bounds":{"left":0.7915558,"top":0.2442139,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"58281","depth":5,"bounds":{"left":0.82214093,"top":0.2442139,"width":0.013297873,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"lukas","depth":5,"bounds":{"left":0.84109044,"top":0.2442139,"width":0.026595745,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"coreaudiod","depth":5,"bounds":{"left":0.5162899,"top":0.26336792,"width":0.080784574,"height":0.011173184},"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"9,1","depth":5,"bounds":{"left":0.60272604,"top":0.26336792,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"2:24:42,10","depth":5,"bounds":{"left":0.63331115,"top":0.26336792,"width":0.023271276,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"27","depth":5,"bounds":{"left":0.66223407,"top":0.26336792,"width":0.019946808,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"1110","depth":5,"bounds":{"left":0.6878325,"top":0.26336792,"width":0.032579787,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"bounds":{"left":0.72606385,"top":0.26336792,"width":0.02925532,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"0,0","depth":5,"bounds":{"left":0.7609708,"top":0.26336792,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"0,00","depth":5,"bounds":{"left":0.7915558,"top":0.26336792,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"443","depth":5,"bounds":{"left":0.82214093,"top":0.26336792,"width":0.013297873,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"_coreaudiod","depth":5,"bounds":{"left":0.84109044,"top":0.26336792,"width":0.026595745,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"opendirectoryd","depth":5,"bounds":{"left":0.5162899,"top":0.28252193,"width":0.080784574,"height":0.011173184},"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"5,5","depth":5,"bounds":{"left":0.60272604,"top":0.28252193,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"17:51,88","depth":5,"bounds":{"left":0.63331115,"top":0.28252193,"width":0.023271276,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"10","depth":5,"bounds":{"left":0.66223407,"top":0.28252193,"width":0.019946808,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"0","depth":5,"bounds":{"left":0.6878325,"top":0.28252193,"width":0.032579787,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"bounds":{"left":0.72606385,"top":0.28252193,"width":0.02925532,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"0,0","depth":5,"bounds":{"left":0.7609708,"top":0.28252193,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"0,00","depth":5,"bounds":{"left":0.7915558,"top":0.28252193,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"373","depth":5,"bounds":{"left":0.82214093,"top":0.28252193,"width":0.013297873,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"root","depth":5,"bounds":{"left":0.84109044,"top":0.28252193,"width":0.026595745,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"mds_stores","depth":5,"bounds":{"left":0.5162899,"top":0.30167598,"width":0.080784574,"height":0.011173184},"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"5,3","depth":5,"bounds":{"left":0.60272604,"top":0.30167598,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"49:47,84","depth":5,"bounds":{"left":0.63331115,"top":0.30167598,"width":0.023271276,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"8","depth":5,"bounds":{"left":0.66223407,"top":0.30167598,"width":0.019946808,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"4","depth":5,"bounds":{"left":0.6878325,"top":0.30167598,"width":0.032579787,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"bounds":{"left":0.72606385,"top":0.30167598,"width":0.02925532,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"0,0","depth":5,"bounds":{"left":0.7609708,"top":0.30167598,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"0,00","depth":5,"bounds":{"left":0.7915558,"top":0.30167598,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"505","depth":5,"bounds":{"left":0.82214093,"top":0.30167598,"width":0.013297873,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"root","depth":5,"bounds":{"left":0.84109044,"top":0.30167598,"width":0.026595745,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Firefox","depth":5,"bounds":{"left":0.5162899,"top":0.32083002,"width":0.080784574,"height":0.011173184},"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"4,8","depth":5,"bounds":{"left":0.60272604,"top":0.32083002,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"58:38,98","depth":5,"bounds":{"left":0.63331115,"top":0.32083002,"width":0.023271276,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"91","depth":5,"bounds":{"left":0.66223407,"top":0.32083002,"width":0.019946808,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"70","depth":5,"bounds":{"left":0.6878325,"top":0.32083002,"width":0.032579787,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Apple","depth":5,"bounds":{"left":0.72606385,"top":0.32083002,"width":0.02925532,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"0,0","depth":5,"bounds":{"left":0.7609708,"top":0.32083002,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"0,03","depth":5,"bounds":{"left":0.7915558,"top":0.32083002,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"33526","depth":5,"bounds":{"left":0.82214093,"top":0.32083002,"width":0.013297873,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"lukas","depth":5,"bounds":{"left":0.84109044,"top":0.32083002,"width":0.026595745,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"},{"role":"AXStaticText","text":"Activity Monitor","depth":5,"bounds":{"left":0.5162899,"top":0.33998403,"width":0.080784574,"height":0.011173184},"on_screen":true,"automation_id":"_NS:31","role_description":"text"},{"role":"AXStaticText","text":"4,7","depth":5,"bounds":{"left":0.60272604,"top":0.33998403,"width":0.024933511,"height":0.011173184},"on_screen":true,"automation_id":"Cell","role_description":"text"},{"role":"AXStaticText","text":"37:42,02","depth":5,"bounds":{"left":0.63331115,"top":0.33998403,"width":0.023271276,"height":0.011173184},"on_screen":true,"automation_id":"_NS:9","role_description":"text"}]...
|
-2379312857633230694
|
-9081246510137326992
|
click
|
accessibility
|
NULL
|
45,24%
Processes:
Idle:
32,23%
22,52%
User:
System 45,24%
Processes:
Idle:
32,23%
22,52%
User:
System:
4 211
499
CPU LOAD
Threads:
PhpStorm
221,7
1:43:20,77
247
575
Apple
4,5
6:02,41
89880
lukas
kernel_task
93,5
28:38:49,18
582
7247
Apple
0,0
0,00
0
root
WindowServer
57,8
11:53:44,92
22
260
Apple
76,1
5:31:30,21
402
_windowserver
replayd
55,2
8:44:47,29
33
3
Apple
0,0
0,00
798
lukas
fseventsd
46,6
14:19,55
13
24
Apple
0,0
0,00
337
root
screenpipe
19,8
46:39,57
60
91
Apple
0,0
2,43
48273
lukas
mobileassetd
17,8
34,69
9
1
Apple
0,0
0,00
42540
root
triald
13,2
5,62
5
1
Apple
0,0
0,00
42260
lukas
siriknowledged
10,9
2,24
7
1
Apple
0,0
0,00
58281
lukas
coreaudiod
9,1
2:24:42,10
27
1110
Apple
0,0
0,00
443
_coreaudiod
opendirectoryd
5,5
17:51,88
10
0
Apple
0,0
0,00
373
root
mds_stores
5,3
49:47,84
8
4
Apple
0,0
0,00
505
root
Firefox
4,8
58:38,98
91
70
Apple
0,0
0,03
33526
lukas
Activity Monitor
4,7
37:42,02...
|
49093
|
NULL
|
NULL
|
NULL
|
|
49095
|
NULL
|
0
|
2026-05-15T11:21:29.116741+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-15/1778 /Users/lukas/.screenpipe/data/data/2026-05-15/1778844089116_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-20-31-146:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Wed May 13 15:24:32 on ttys011
Poetry Last login: Wed May 13 15:24:32 on ttys011
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 ~ $ app
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20891-improve-sms-text-relays) $ alias tenv
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20891-improve-sms-text-relays) $ alias
addssh='ssh-add ~/.ssh/*'
app='cd ~/jiminny/app'
cnt='docker exec -ti $(docker ps | grep worker | awk '\''{print $1}'\'') /bin/bash -c "cd /home/jiminny && bash"'
co='git checkout'
cov='./vendor/bin/phpunit tests/Unit --coverage-html=build/coverage'
csfix='make cs-fix'
dev='docker exec -ti $(docker ps -q --filter "name=docker_lamp_1") /bin/bash'
eu='ssh lukas@jiminny-eu-bastion -D [IP_ADDRESS]:7073 -L 7532:db:3306'
eues='ssh ubuntu@jiminny-eu-ecs1 -L 7960:vpc-activities7-e7pfbl7wojjjnvp7olfpudrgke.eu-west-1.es.amazonaws.com:80'
ext='nvm use 20 && cd ~/jiminny/extension-app && yarn build:dev && yarn preview'
fe='yarn && nvm use 24 && cd ~/jiminny/app/front-end && yarn build:watch'
fe3='cd ~/jiminny/app/front-end-vue3 && yarn build:watch:production'
gbr='git branch --sort=-committerdate'
gcb='git branch --show-current | pbcopy'
gs='git status'
hhh=history
hhs='history 0 | grep '
install_nano='apt-get update & apt-get install nano'
kar='cp -f ~/DEV/settings/goku-karabiner-settings/karabiner.edn ~/.config/karabiner.edn && goku'
ll='ls -la --color=tty'
lock='kill %1 2>/dev/null; sleep 1 && pmset displaysleepnow'
nas='ssh Adm1n@[IP_ADDRESS] -p22'
poetryshell='eval ""'
prod='ssh lukas@jiminny-prod-bastion -D [IP_ADDRESS]:7072 -L 7632:db:3306'
prodes='ssh ubuntu@jiminny-prod-ecs1 -L 7970:vpc-activities7-3o2zlrelmga5qicf2yxxwtx6bi.us-east-2.es.amazonaws.com:80'
prophet='cd ~/jiminny/app'
prophetdown='aws-vault exec staging -- bash -c "env | grep AWS_ > aws-creds.env && docker compose -f docker-compose.yml -f docker-compose.dev.yml down"'
prophetup='aws-vault exec staging -- bash -c "env | grep AWS_ > aws-creds.env && docker compose -f docker-compose.yml -f docker-compose.dev.yml up --build"'
qa='ssh lukas@jiminny-qa-bastion -D [IP_ADDRESS]:7074 -L 7432:db:3306'
qaes='ssh ubuntu@jiminny-qa-ecs1 -L 7950:vpc-activities7-s5zchrs4xqcnav3rjzmxgxvfvq.us-east-2.es.amazonaws.com:80'
qai='ssh lukas@jiminny-qai-bastion -D [IP_ADDRESS]:7075 -L 7777:jiminny-db-qai.c3uemcm84st0.us-east-2.rds.amazonaws.com:3306'
rmbc='rm -rf bootstrap/cache/*.php'
run-help=man
sp-db='sqlite3 ~/.screenpipe/db.sqlite '
sp-start='npx screenpipe@latest record --disable-audio --ignored-windows "Boosteroid"'
sp-status='curl -s [URL_WITH_CREDENTIALS] -D [IP_ADDRESS]:7071 -L 7732:db:3306'
stges='ssh ubuntu@jiminny-stage-ecs1 -L 7980:vpc-activities7-tgeodjeaugnaiigqgdcjjkrrj4.us-east-2.es.amazonaws.com:80'
veu='ssh jiminny-eu-ecs1'
veu10='ssh jiminny-eu-ecs10'
veu11='ssh jiminny-eu-ecs11'
veu12='ssh jiminny-eu-ecs12'
veu2='ssh jiminny-eu-ecs2'
veu3='ssh jiminny-eu-ecs3'
veu4='ssh jiminny-eu-ecs4'
veu5='ssh jiminny-eu-ecs5'
veu6='ssh jiminny-eu-ecs6'
veu7='ssh jiminny-eu-ecs7'
veu8='ssh jiminny-eu-ecs8'
veu9='ssh jiminny-eu-ecs9'
vprod='ssh jiminny-prod-ecs1'
vprod10='ssh jiminny-prod-ecs10'
vprod11='ssh jiminny-prod-ecs11'
vprod12='ssh jiminny-prod-ecs12'
vprod2='ssh jiminny-prod-ecs2'
vprod3='ssh jiminny-prod-ecs3'
vprod4='ssh jiminny-prod-ecs4'
vprod5='ssh jiminny-prod-ecs5'
vprod6='ssh jiminny-prod-ecs6'
vprod7='ssh jiminny-prod-ecs7'
vprod8='ssh jiminny-prod-ecs8'
vprod9='ssh jiminny-prod-ecs9'
vqa='ssh jiminny-qa-ecs1'
vqa2='ssh jiminny-qa-ecs2'
vqai='ssh jiminny-qai-ecs1'
vqai2='ssh jiminny-qai-ecs2'
vstage='ssh ec2-user@jiminny-subenv-worker-app0'
vstg='ssh jiminny-stage-ecs1'
vstg2='ssh ubuntu@jiminny-stage-ecs2'
which-command=whence
work='cd ~/jiminny/infrastructure/dev/docker && docker compose up'
workoff='kill %1'
workon='caffeinate -d & echo "Display sleep disabled (PID $!)"'
xd='make docker-xdebug-disable'
xe='make docker-xdebug-enable'
zp='nano ~/.zprofile'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20891-improve-sms-text-relays) $ scripts/toggle_environment start staging
Starting environment staging
Started environment(s) staging
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20891-improve-sms-text-relays) $ veu
Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:
nc: read failed (0/10): Broken pipe
Connection closed by UNKNOWN port 65535
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (master) $ veu2
Warning: Permanently added 'jiminny-eu-ecs2' (ED25519) to the list of known hosts.
A newer release of "Amazon Linux" is available.
Version 2023.10.20260330:
Version 2023.11.20260406:
Version 2023.11.20260413:
Version 2023.11.20260427:
Version 2023.11.20260505:
Version 2023.11.20260509:
Run "/usr/bin/dnf check-release-update" for full release and version update info
, #_
~\_ ####_
~~ \_#####\
~~ \###|
~~ \#/ ___ Amazon Linux 2023 (ECS Optimized)
~~ V~' '->
~~~ /
~~._. _/
_/ _/
_/m/'
For documentation, visit [URL_WITH_CREDENTIALS] ~]$ docker exec -it $(docker ps --format "{{.ID}}" --filter "name=ecs-worker" | head -1) /bin/bash -c "cd /home/jiminny && bash"
root@453da0675541:/home/jiminny# php artisan jiminny:token-info -A 30110
[2026-05-13 15:28:23] production.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"jiminny:token-info","memoryBeforeCommandInMb":116.0,"memoryPeakBeforeCommandInMb":116.0} {"correlation_id":"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec","trace_id":"1a72fef6-427a-4e63-a9ba-b340103c976b"}
[2026-05-13 15:28:23] production.INFO: [SocialAccountService] Fetching token {"socialAccountId":30110,"provider":"hubspot"} {"correlation_id":"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec","trace_id":"1a72fef6-427a-4e63-a9ba-b340103c976b"}
[2026-05-13 15:28:23] production.INFO: [SocialAccountService] Token needs refreshing {"socialAccountId":30110,"provider":"hubspot"} {"correlation_id":"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec","trace_id":"1a72fef6-427a-4e63-a9ba-b340103c976b"}
[2026-05-13 15:28:23] production.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec","trace_id":"1a72fef6-427a-4e63-a9ba-b340103c976b"}
[2026-05-13 15:28:23] production.INFO: [SocialAccountService] Refreshing token from provider {"socialAccountId":30110,"provider":"hubspot","refreshToken":"9417a6a067cd68efa0bd023e970cc27482ef7db27b876a4383f5a246c4e8d81c","state":"full-refresh"} {"correlation_id":"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec","trace_id":"1a72fef6-427a-4e63-a9ba-b340103c976b"}
[2026-05-13 15:28:23] production.ERROR: [SocialAccountService] Failed to refresh token {"socialAccountId":30110,"provider":"hubspot","responseBody":"{\"status\":\"BAD_HUB\",\"message\":\"missing or unknown hub id\",\"correlationId\":\"019e21f4-1184-72ca-8c79-d9e09814baa4\",\"error\":\"access_denied\",\"error_description\":\"missing or unknown hub id\"}"} {"correlation_id":"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec","trace_id":"1a72fef6-427a-4e63-a9ba-b340103c976b"}
[2026-05-13 15:28:23] production.INFO: [SocialAccountObserver] Saving model {"correlation_id":"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec","trace_id":"1a72fef6-427a-4e63-a9ba-b340103c976b"}
Flow refresh required.
root@453da0675541:/home/jiminny# php artisan jiminny:token-info -A 30110 -R
[2026-05-13 15:28:31] production.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"jiminny:token-info","memoryBeforeCommandInMb":116.0,"memoryPeakBeforeCommandInMb":116.0} {"correlation_id":"b1e2505a-8c60-4607-a96a-a33209efd4c4","trace_id":"001e9c48-df0f-4111-9988-d3bb8bf7bfa8"}
[2026-05-13 15:28:31] production.INFO: [SocialAccountService] Fetching token {"socialAccountId":30110,"provider":"hubspot"} {"correlation_id":"b1e2505a-8c60-4607-a96a-a33209efd4c4","trace_id":"001e9c48-df0f-4111-9988-d3bb8bf7bfa8"}
[2026-05-13 15:28:31] production.INFO: [SocialAccountService] Token needs refreshing {"socialAccountId":30110,"provider":"hubspot"} {"correlation_id":"b1e2505a-8c60-4607-a96a-a33209efd4c4","trace_id":"001e9c48-df0f-4111-9988-d3bb8bf7bfa8"}
[2026-05-13 15:28:31] production.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b1e2505a-8c60-4607-a96a-a33209efd4c4","trace_id":"001e9c48-df0f-4111-9988-d3bb8bf7bfa8"}
[2026-05-13 15:28:31] production.INFO: [SocialAccountService] Refreshing token from provider {"socialAccountId":30110,"provider":"hubspot","refreshToken":"9417a6a067cd68efa0bd023e970cc27482ef7db27b876a4383f5a246c4e8d81c","state":"full-refresh"} {"correlation_id":"b1e2505a-8c60-4607-a96a-a33209efd4c4","trace_id":"001e9c48-df0f-4111-9988-d3bb8bf7bfa8"}
[2026-05-13 15:28:32] production.ERROR: [SocialAccountService] Failed to refresh token {"socialAccountId":30110,"provider":"hubspot","responseBody":"{\"status\":\"BAD_HUB\",\"message\":\"missing or unknown hub id\",\"correlationId\":\"019e21f4-319c-7501-8b0e-d3118c6534f8\",\"error\":\"access_denied\",\"error_description\":\"missing or unknown hub id\"}"} {"correlation_id":"b1e2505a-8c60-4607-a96a-a33209efd4c4","trace_id":"001e9c48-df0f-4111-9988-d3bb8bf7bfa8"}
[2026-05-13 15:28:32] production.INFO: [SocialAccountObserver] Saving model {"correlation_id":"b1e2505a-8c60-4607-a96a-a33209efd4c4","trace_id":"001e9c48-df0f-4111-9988-d3bb8bf7bfa8"}
Flow refresh required.
root@453da0675541:/home/jiminny# [ec2-user@ip-10-20-31-146 ~]$ exirt
-bash: exirt: command not found
[ec2-user@ip-10-20-31-146 ~]$ exit
logout
Connection to jiminny-eu-ecs2 closed.
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (master) $ sp-stop
screenpipe stopped
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (master) $ sqlite3 ~/.screenpipe/db.sqlite <<'SQL'
SELECT f.id, f.timestamp, f.name, o.text_json
FROM frames f
JOIN ocr_text o ON o.frame_id = f.id
JOIN ocr_text_fts fts ON fts.rowid = o.rowid
WHERE ocr_text_fts MATCH 'JY-20458'
ORDER BY f.timestamp DESC
LIMIT 1;
SQL
Parse error near line 1: no such table: ocr_text_fts
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (master) $ du ~/.screenpipe
8 /Users/lukas/.screenpipe/pipes/day-recap
8 /Users/lukas/.screenpipe/pipes/standup-update
8 /Users/lukas/.screenpipe/pipes/ai-habits
8 /Users/lukas/.screenpipe/pipes/time-breakdown
8 /Users/lukas/.screenpipe/pipes/video-export
8 /Users/lukas/.screenpipe/pipes/meeting-summary
72 /Users/lukas/.screenpipe/pipes
48 /Users/lukas/.screenpipe/scripts/lib
112 /Users/lukas/.screenpipe/scripts
0 /Users/lukas/.screenpipe/data/pending-transcriptions
650352 /Users/lukas/.screenpipe/data/data/2026-05-11
37544 /Users/lukas/.screenpipe/data/data/2026-05-10
604880 /Users/lukas/.screenpipe/data/data/2026-05-12
670872 /Users/lukas/.screenpipe/data/data/2026-05-14
1072648 /Users/lukas/.screenpipe/data/data/2026-05-13
245408 /Users/lukas/.screenpipe/data/data/2026-05-09
597928 /Users/lukas/.screenpipe/data/data/2026-05-07
13960 /Users/lukas/.screenpipe/data/data/2026-05-06
506720 /Users/lukas/.screenpipe/data/data/2026-05-08
4400336 /Users/lukas/.screenpipe/data/data
5718160 /Users/lukas/.screenpipe/data
19641288 /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20725-handle-HS-search-rate-limit) $ du -sh ~/.screenpipe
9.4G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20725-handle-HS-search-rate-limit) $ du -sh ~/.screenpipe/*
0B /Users/lukas/.screenpipe/clipboard-disabled-after-crash
2.7G /Users/lukas/.screenpipe/data
6.6G /Users/lukas/.screenpipe/db.sqlite
32K /Users/lukas/.screenpipe/db.sqlite-shm
0B /Users/lukas/.screenpipe/db.sqlite-wal
36K /Users/lukas/.screenpipe/pipes
28K /Users/lukas/.screenpipe/screenpipe.2026-05-06.0.log
556K /Users/lukas/.screenpipe/screenpipe.2026-05-07.0.log
376K /Users/lukas/.screenpipe/screenpipe.2026-05-08.0.log
164K /Users/lukas/.screenpipe/screenpipe.2026-05-09.0.log
88K /Users/lukas/.screenpipe/screenpipe.2026-05-10.0.log
520K /Users/lukas/.screenpipe/screenpipe.2026-05-11.0.log
288K /Users/lukas/.screenpipe/screenpipe.2026-05-12.0.log
440K /Users/lukas/.screenpipe/screenpipe.2026-05-13.0.log
332K /Users/lukas/.screenpipe/screenpipe.2026-05-14.0.log
20K /Users/lukas/.screenpipe/screenpipe_sync.sh
32K /Users/lukas/.screenpipe/screenpipe_sync.sh-bakk
16K /Users/lukas/.screenpipe/screenpipe_sync.sh.bak
24K /Users/lukas/.screenpipe/screenpipe_sync.sh.bak2
56K /Users/lukas/.screenpipe/scripts
132K /Users/lukas/.screenpipe/sync.log
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20725-handle-HS-search-rate-limit) $ sqlite3 ~/.screenpipe/db.sqlite <<'SQL'
SELECT f.id, f.timestamp, f.name, o.text_json
FROM frames f
JOIN ocr_text o ON o.frame_id = f.id
JOIN ocr_text_fts fts ON fts.rowid = o.rowid
WHERE ocr_text_fts MATCH 'JY-20458'
ORDER BY f.timestamp DESC
LIMIT 1;
SQL
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
-zsh
Close Tab
screenpipe"
Close Tab
ec2-user@ip-10-20-31-146:~ (-zsh)
Close Tab
ec2-user@ip-10-30-129-190:~ (-zsh)
Close Tab
ec2-user@ip-10-30-145-148:~ (-zsh)
Close Tab
⌥⌘1
ec2-user@ip-10-20-31-146:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Wed May 13 15:24:32 on ttys011\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 ~ $ app\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20891-improve-sms-text-relays) $ alias tenv\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20891-improve-sms-text-relays) $ alias\naddssh='ssh-add ~/.ssh/*'\napp='cd ~/jiminny/app'\ncnt='docker exec -ti $(docker ps | grep worker | awk '\\''{print $1}'\\'') /bin/bash -c \"cd /home/jiminny && bash\"'\nco='git checkout'\ncov='./vendor/bin/phpunit tests/Unit --coverage-html=build/coverage'\ncsfix='make cs-fix'\ndev='docker exec -ti $(docker ps -q --filter \"name=docker_lamp_1\") /bin/bash'\neu='ssh lukas@jiminny-eu-bastion -D 127.0.0.1:7073 -L 7532:db:3306'\neues='ssh ubuntu@jiminny-eu-ecs1 -L 7960:vpc-activities7-e7pfbl7wojjjnvp7olfpudrgke.eu-west-1.es.amazonaws.com:80'\next='nvm use 20 && cd ~/jiminny/extension-app && yarn build:dev && yarn preview'\nfe='yarn && nvm use 24 && cd ~/jiminny/app/front-end && yarn build:watch'\nfe3='cd ~/jiminny/app/front-end-vue3 && yarn build:watch:production'\ngbr='git branch --sort=-committerdate'\ngcb='git branch --show-current | pbcopy'\ngs='git status'\nhhh=history\nhhs='history 0 | grep '\ninstall_nano='apt-get update & apt-get install nano'\nkar='cp -f ~/DEV/settings/goku-karabiner-settings/karabiner.edn ~/.config/karabiner.edn && goku'\nll='ls -la --color=tty'\nlock='kill %1 2>/dev/null; sleep 1 && pmset displaysleepnow'\nnas='ssh Adm1n@192.168.0.242 -p22'\npoetryshell='eval \"\"'\nprod='ssh lukas@jiminny-prod-bastion -D 127.0.0.1:7072 -L 7632:db:3306'\nprodes='ssh ubuntu@jiminny-prod-ecs1 -L 7970:vpc-activities7-3o2zlrelmga5qicf2yxxwtx6bi.us-east-2.es.amazonaws.com:80'\nprophet='cd ~/jiminny/app'\nprophetdown='aws-vault exec staging -- bash -c \"env | grep AWS_ > aws-creds.env && docker compose -f docker-compose.yml -f docker-compose.dev.yml down\"'\nprophetup='aws-vault exec staging -- bash -c \"env | grep AWS_ > aws-creds.env && docker compose -f docker-compose.yml -f docker-compose.dev.yml up --build\"'\nqa='ssh lukas@jiminny-qa-bastion -D 127.0.0.1:7074 -L 7432:db:3306'\nqaes='ssh ubuntu@jiminny-qa-ecs1 -L 7950:vpc-activities7-s5zchrs4xqcnav3rjzmxgxvfvq.us-east-2.es.amazonaws.com:80'\nqai='ssh lukas@jiminny-qai-bastion -D 127.0.0.1:7075 -L 7777:jiminny-db-qai.c3uemcm84st0.us-east-2.rds.amazonaws.com:3306'\nrmbc='rm -rf bootstrap/cache/*.php'\nrun-help=man\nsp-db='sqlite3 ~/.screenpipe/db.sqlite '\nsp-start='npx screenpipe@latest record --disable-audio --ignored-windows \"Boosteroid\"'\nsp-status='curl -s http://localhost:3030/health | jq \"{status, frame_status, audio_status, last_frame: .last_frame_timestamp, uptime: .pipeline.uptime_secs, fps: .pipeline.capture_fps_actual, frames: .pipeline.frames_captured}\"'\nsp-stop='pkill -f screenpipe && echo '\\''screenpipe stopped'\\'\nstg='ssh lukas@jiminny-stage-bastion -D 127.0.0.1:7071 -L 7732:db:3306'\nstges='ssh ubuntu@jiminny-stage-ecs1 -L 7980:vpc-activities7-tgeodjeaugnaiigqgdcjjkrrj4.us-east-2.es.amazonaws.com:80'\nveu='ssh jiminny-eu-ecs1'\nveu10='ssh jiminny-eu-ecs10'\nveu11='ssh jiminny-eu-ecs11'\nveu12='ssh jiminny-eu-ecs12'\nveu2='ssh jiminny-eu-ecs2'\nveu3='ssh jiminny-eu-ecs3'\nveu4='ssh jiminny-eu-ecs4'\nveu5='ssh jiminny-eu-ecs5'\nveu6='ssh jiminny-eu-ecs6'\nveu7='ssh jiminny-eu-ecs7'\nveu8='ssh jiminny-eu-ecs8'\nveu9='ssh jiminny-eu-ecs9'\nvprod='ssh jiminny-prod-ecs1'\nvprod10='ssh jiminny-prod-ecs10'\nvprod11='ssh jiminny-prod-ecs11'\nvprod12='ssh jiminny-prod-ecs12'\nvprod2='ssh jiminny-prod-ecs2'\nvprod3='ssh jiminny-prod-ecs3'\nvprod4='ssh jiminny-prod-ecs4'\nvprod5='ssh jiminny-prod-ecs5'\nvprod6='ssh jiminny-prod-ecs6'\nvprod7='ssh jiminny-prod-ecs7'\nvprod8='ssh jiminny-prod-ecs8'\nvprod9='ssh jiminny-prod-ecs9'\nvqa='ssh jiminny-qa-ecs1'\nvqa2='ssh jiminny-qa-ecs2'\nvqai='ssh jiminny-qai-ecs1'\nvqai2='ssh jiminny-qai-ecs2'\nvstage='ssh ec2-user@jiminny-subenv-worker-app0'\nvstg='ssh jiminny-stage-ecs1'\nvstg2='ssh ubuntu@jiminny-stage-ecs2'\nwhich-command=whence\nwork='cd ~/jiminny/infrastructure/dev/docker && docker compose up'\nworkoff='kill %1'\nworkon='caffeinate -d & echo \"Display sleep disabled (PID $!)\"'\nxd='make docker-xdebug-disable'\nxe='make docker-xdebug-enable'\nzp='nano ~/.zprofile'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20891-improve-sms-text-relays) $ scripts/toggle_environment start staging\nStarting environment staging\nStarted environment(s) staging\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20891-improve-sms-text-relays) $ veu \nEnter MFA code for arn:aws:iam::438740370364:mfa/lukas.kovalik@jiminny.com: \nnc: read failed (0/10): Broken pipe\nConnection closed by UNKNOWN port 65535\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (master) $ veu2\nWarning: Permanently added 'jiminny-eu-ecs2' (ED25519) to the list of known hosts.\n\nA newer release of \"Amazon Linux\" is available.\n Version 2023.10.20260330:\n Version 2023.11.20260406:\n Version 2023.11.20260413:\n Version 2023.11.20260427:\n Version 2023.11.20260505:\n Version 2023.11.20260509:\nRun \"/usr/bin/dnf check-release-update\" for full release and version update info\n , #_\n ~\\_ ####_\n ~~ \\_#####\\\n ~~ \\###|\n ~~ \\#/ ___ Amazon Linux 2023 (ECS Optimized)\n ~~ V~' '->\n ~~~ /\n ~~._. _/\n _/ _/\n _/m/'\n\nFor documentation, visit http://aws.amazon.com/documentation/ecs\nLast login: Tue May 12 13:56:11 2026 from 10.20.163.228\n[ec2-user@ip-10-20-31-146 ~]$ docker exec -it $(docker ps --format \"{{.ID}}\" --filter \"name=ecs-worker\" | head -1) /bin/bash -c \"cd /home/jiminny && bash\"\nroot@453da0675541:/home/jiminny# php artisan jiminny:token-info -A 30110 \n[2026-05-13 15:28:23] production.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:token-info\",\"memoryBeforeCommandInMb\":116.0,\"memoryPeakBeforeCommandInMb\":116.0} {\"correlation_id\":\"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec\",\"trace_id\":\"1a72fef6-427a-4e63-a9ba-b340103c976b\"}\n\n[2026-05-13 15:28:23] production.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":30110,\"provider\":\"hubspot\"} {\"correlation_id\":\"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec\",\"trace_id\":\"1a72fef6-427a-4e63-a9ba-b340103c976b\"}\n\n[2026-05-13 15:28:23] production.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":30110,\"provider\":\"hubspot\"} {\"correlation_id\":\"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec\",\"trace_id\":\"1a72fef6-427a-4e63-a9ba-b340103c976b\"}\n\n[2026-05-13 15:28:23] production.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec\",\"trace_id\":\"1a72fef6-427a-4e63-a9ba-b340103c976b\"}\n\n[2026-05-13 15:28:23] production.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":30110,\"provider\":\"hubspot\",\"refreshToken\":\"9417a6a067cd68efa0bd023e970cc27482ef7db27b876a4383f5a246c4e8d81c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec\",\"trace_id\":\"1a72fef6-427a-4e63-a9ba-b340103c976b\"}\n\n[2026-05-13 15:28:23] production.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":30110,\"provider\":\"hubspot\",\"responseBody\":\"{\\\"status\\\":\\\"BAD_HUB\\\",\\\"message\\\":\\\"missing or unknown hub id\\\",\\\"correlationId\\\":\\\"019e21f4-1184-72ca-8c79-d9e09814baa4\\\",\\\"error\\\":\\\"access_denied\\\",\\\"error_description\\\":\\\"missing or unknown hub id\\\"}\"} {\"correlation_id\":\"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec\",\"trace_id\":\"1a72fef6-427a-4e63-a9ba-b340103c976b\"}\n\n[2026-05-13 15:28:23] production.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec\",\"trace_id\":\"1a72fef6-427a-4e63-a9ba-b340103c976b\"}\n\nFlow refresh required.\nroot@453da0675541:/home/jiminny# php artisan jiminny:token-info -A 30110 -R\n[2026-05-13 15:28:31] production.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:token-info\",\"memoryBeforeCommandInMb\":116.0,\"memoryPeakBeforeCommandInMb\":116.0} {\"correlation_id\":\"b1e2505a-8c60-4607-a96a-a33209efd4c4\",\"trace_id\":\"001e9c48-df0f-4111-9988-d3bb8bf7bfa8\"}\n\n[2026-05-13 15:28:31] production.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":30110,\"provider\":\"hubspot\"} {\"correlation_id\":\"b1e2505a-8c60-4607-a96a-a33209efd4c4\",\"trace_id\":\"001e9c48-df0f-4111-9988-d3bb8bf7bfa8\"}\n\n[2026-05-13 15:28:31] production.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":30110,\"provider\":\"hubspot\"} {\"correlation_id\":\"b1e2505a-8c60-4607-a96a-a33209efd4c4\",\"trace_id\":\"001e9c48-df0f-4111-9988-d3bb8bf7bfa8\"}\n\n[2026-05-13 15:28:31] production.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b1e2505a-8c60-4607-a96a-a33209efd4c4\",\"trace_id\":\"001e9c48-df0f-4111-9988-d3bb8bf7bfa8\"}\n\n[2026-05-13 15:28:31] production.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":30110,\"provider\":\"hubspot\",\"refreshToken\":\"9417a6a067cd68efa0bd023e970cc27482ef7db27b876a4383f5a246c4e8d81c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b1e2505a-8c60-4607-a96a-a33209efd4c4\",\"trace_id\":\"001e9c48-df0f-4111-9988-d3bb8bf7bfa8\"}\n\n[2026-05-13 15:28:32] production.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":30110,\"provider\":\"hubspot\",\"responseBody\":\"{\\\"status\\\":\\\"BAD_HUB\\\",\\\"message\\\":\\\"missing or unknown hub id\\\",\\\"correlationId\\\":\\\"019e21f4-319c-7501-8b0e-d3118c6534f8\\\",\\\"error\\\":\\\"access_denied\\\",\\\"error_description\\\":\\\"missing or unknown hub id\\\"}\"} {\"correlation_id\":\"b1e2505a-8c60-4607-a96a-a33209efd4c4\",\"trace_id\":\"001e9c48-df0f-4111-9988-d3bb8bf7bfa8\"}\n\n[2026-05-13 15:28:32] production.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b1e2505a-8c60-4607-a96a-a33209efd4c4\",\"trace_id\":\"001e9c48-df0f-4111-9988-d3bb8bf7bfa8\"}\n\nFlow refresh required.\nroot@453da0675541:/home/jiminny# [ec2-user@ip-10-20-31-146 ~]$ exirt\n-bash: exirt: command not found\n[ec2-user@ip-10-20-31-146 ~]$ exit\nlogout\nConnection to jiminny-eu-ecs2 closed.\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (master) $ sp-stop\nscreenpipe stopped\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (master) $ sqlite3 ~/.screenpipe/db.sqlite <<'SQL'\nSELECT f.id, f.timestamp, f.name, o.text_json\nFROM frames f\nJOIN ocr_text o ON o.frame_id = f.id\nJOIN ocr_text_fts fts ON fts.rowid = o.rowid\nWHERE ocr_text_fts MATCH 'JY-20458'\nORDER BY f.timestamp DESC\nLIMIT 1;\nSQL\nParse error near line 1: no such table: ocr_text_fts\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (master) $ du ~/.screenpipe \n8\u0000\u0000\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe/pipes/day-recap\n8\u0000\u0000\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe/pipes/standup-update\n8\u0000\u0000\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe/pipes/ai-habits\n8\u0000\u0000\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe/pipes/time-breakdown\n8\u0000\u0000\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe/pipes/video-export\n8\u0000\u0000\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe/pipes/meeting-summary\n72\u0000\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe/pipes\n48\u0000\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe/scripts/lib\n112\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe/scripts\n0\u0000\u0000\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe/data/pending-transcriptions\n650352\u0000\t/Users/lukas/.screenpipe/data/data/2026-05-11\n37544\u0000\u0000\t/Users/lukas/.screenpipe/data/data/2026-05-10\n604880\u0000\t/Users/lukas/.screenpipe/data/data/2026-05-12\n670872\u0000\t/Users/lukas/.screenpipe/data/data/2026-05-14\n1072648\t/Users/lukas/.screenpipe/data/data/2026-05-13\n245408\u0000\t/Users/lukas/.screenpipe/data/data/2026-05-09\n597928\u0000\t/Users/lukas/.screenpipe/data/data/2026-05-07\n13960\u0000\u0000\t/Users/lukas/.screenpipe/data/data/2026-05-06\n506720\u0000\t/Users/lukas/.screenpipe/data/data/2026-05-08\n4400336\t/Users/lukas/.screenpipe/data/data\n5718160\t/Users/lukas/.screenpipe/data\n19641288\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20725-handle-HS-search-rate-limit) $ du -sh ~/.screenpipe \n9.4G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20725-handle-HS-search-rate-limit) $ du -sh ~/.screenpipe/*\n 0B\u0000\u0000\u0000\t/Users/lukas/.screenpipe/clipboard-disabled-after-crash\n2.7G\u0000\u0000\u0000\t/Users/lukas/.screenpipe/data\n6.6G\u0000\u0000\u0000\t/Users/lukas/.screenpipe/db.sqlite\n 32K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/db.sqlite-shm\n 0B\u0000\u0000\u0000\t/Users/lukas/.screenpipe/db.sqlite-wal\n 36K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/pipes\n 28K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe.2026-05-06.0.log\n556K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe.2026-05-07.0.log\n376K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe.2026-05-08.0.log\n164K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe.2026-05-09.0.log\n 88K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe.2026-05-10.0.log\n520K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe.2026-05-11.0.log\n288K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe.2026-05-12.0.log\n440K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe.2026-05-13.0.log\n332K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe.2026-05-14.0.log\n 20K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe_sync.sh\n 32K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe_sync.sh-bakk\n 16K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe_sync.sh.bak\n 24K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe_sync.sh.bak2\n 56K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/scripts\n132K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/sync.log\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20725-handle-HS-search-rate-limit) $ sqlite3 ~/.screenpipe/db.sqlite <<'SQL'\nSELECT f.id, f.timestamp, f.name, o.text_json\nFROM frames f\nJOIN ocr_text o ON o.frame_id = f.id\nJOIN ocr_text_fts fts ON fts.rowid = o.rowid\nWHERE ocr_text_fts MATCH 'JY-20458'\nORDER BY f.timestamp DESC\nLIMIT 1;\nSQL","depth":4,"on_screen":true,"value":"Last login: Wed May 13 15:24:32 on ttys011\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 ~ $ app\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20891-improve-sms-text-relays) $ alias tenv\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20891-improve-sms-text-relays) $ alias\naddssh='ssh-add ~/.ssh/*'\napp='cd ~/jiminny/app'\ncnt='docker exec -ti $(docker ps | grep worker | awk '\\''{print $1}'\\'') /bin/bash -c \"cd /home/jiminny && bash\"'\nco='git checkout'\ncov='./vendor/bin/phpunit tests/Unit --coverage-html=build/coverage'\ncsfix='make cs-fix'\ndev='docker exec -ti $(docker ps -q --filter \"name=docker_lamp_1\") /bin/bash'\neu='ssh lukas@jiminny-eu-bastion -D 127.0.0.1:7073 -L 7532:db:3306'\neues='ssh ubuntu@jiminny-eu-ecs1 -L 7960:vpc-activities7-e7pfbl7wojjjnvp7olfpudrgke.eu-west-1.es.amazonaws.com:80'\next='nvm use 20 && cd ~/jiminny/extension-app && yarn build:dev && yarn preview'\nfe='yarn && nvm use 24 && cd ~/jiminny/app/front-end && yarn build:watch'\nfe3='cd ~/jiminny/app/front-end-vue3 && yarn build:watch:production'\ngbr='git branch --sort=-committerdate'\ngcb='git branch --show-current | pbcopy'\ngs='git status'\nhhh=history\nhhs='history 0 | grep '\ninstall_nano='apt-get update & apt-get install nano'\nkar='cp -f ~/DEV/settings/goku-karabiner-settings/karabiner.edn ~/.config/karabiner.edn && goku'\nll='ls -la --color=tty'\nlock='kill %1 2>/dev/null; sleep 1 && pmset displaysleepnow'\nnas='ssh Adm1n@192.168.0.242 -p22'\npoetryshell='eval \"\"'\nprod='ssh lukas@jiminny-prod-bastion -D 127.0.0.1:7072 -L 7632:db:3306'\nprodes='ssh ubuntu@jiminny-prod-ecs1 -L 7970:vpc-activities7-3o2zlrelmga5qicf2yxxwtx6bi.us-east-2.es.amazonaws.com:80'\nprophet='cd ~/jiminny/app'\nprophetdown='aws-vault exec staging -- bash -c \"env | grep AWS_ > aws-creds.env && docker compose -f docker-compose.yml -f docker-compose.dev.yml down\"'\nprophetup='aws-vault exec staging -- bash -c \"env | grep AWS_ > aws-creds.env && docker compose -f docker-compose.yml -f docker-compose.dev.yml up --build\"'\nqa='ssh lukas@jiminny-qa-bastion -D 127.0.0.1:7074 -L 7432:db:3306'\nqaes='ssh ubuntu@jiminny-qa-ecs1 -L 7950:vpc-activities7-s5zchrs4xqcnav3rjzmxgxvfvq.us-east-2.es.amazonaws.com:80'\nqai='ssh lukas@jiminny-qai-bastion -D 127.0.0.1:7075 -L 7777:jiminny-db-qai.c3uemcm84st0.us-east-2.rds.amazonaws.com:3306'\nrmbc='rm -rf bootstrap/cache/*.php'\nrun-help=man\nsp-db='sqlite3 ~/.screenpipe/db.sqlite '\nsp-start='npx screenpipe@latest record --disable-audio --ignored-windows \"Boosteroid\"'\nsp-status='curl -s http://localhost:3030/health | jq \"{status, frame_status, audio_status, last_frame: .last_frame_timestamp, uptime: .pipeline.uptime_secs, fps: .pipeline.capture_fps_actual, frames: .pipeline.frames_captured}\"'\nsp-stop='pkill -f screenpipe && echo '\\''screenpipe stopped'\\'\nstg='ssh lukas@jiminny-stage-bastion -D 127.0.0.1:7071 -L 7732:db:3306'\nstges='ssh ubuntu@jiminny-stage-ecs1 -L 7980:vpc-activities7-tgeodjeaugnaiigqgdcjjkrrj4.us-east-2.es.amazonaws.com:80'\nveu='ssh jiminny-eu-ecs1'\nveu10='ssh jiminny-eu-ecs10'\nveu11='ssh jiminny-eu-ecs11'\nveu12='ssh jiminny-eu-ecs12'\nveu2='ssh jiminny-eu-ecs2'\nveu3='ssh jiminny-eu-ecs3'\nveu4='ssh jiminny-eu-ecs4'\nveu5='ssh jiminny-eu-ecs5'\nveu6='ssh jiminny-eu-ecs6'\nveu7='ssh jiminny-eu-ecs7'\nveu8='ssh jiminny-eu-ecs8'\nveu9='ssh jiminny-eu-ecs9'\nvprod='ssh jiminny-prod-ecs1'\nvprod10='ssh jiminny-prod-ecs10'\nvprod11='ssh jiminny-prod-ecs11'\nvprod12='ssh jiminny-prod-ecs12'\nvprod2='ssh jiminny-prod-ecs2'\nvprod3='ssh jiminny-prod-ecs3'\nvprod4='ssh jiminny-prod-ecs4'\nvprod5='ssh jiminny-prod-ecs5'\nvprod6='ssh jiminny-prod-ecs6'\nvprod7='ssh jiminny-prod-ecs7'\nvprod8='ssh jiminny-prod-ecs8'\nvprod9='ssh jiminny-prod-ecs9'\nvqa='ssh jiminny-qa-ecs1'\nvqa2='ssh jiminny-qa-ecs2'\nvqai='ssh jiminny-qai-ecs1'\nvqai2='ssh jiminny-qai-ecs2'\nvstage='ssh ec2-user@jiminny-subenv-worker-app0'\nvstg='ssh jiminny-stage-ecs1'\nvstg2='ssh ubuntu@jiminny-stage-ecs2'\nwhich-command=whence\nwork='cd ~/jiminny/infrastructure/dev/docker && docker compose up'\nworkoff='kill %1'\nworkon='caffeinate -d & echo \"Display sleep disabled (PID $!)\"'\nxd='make docker-xdebug-disable'\nxe='make docker-xdebug-enable'\nzp='nano ~/.zprofile'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20891-improve-sms-text-relays) $ scripts/toggle_environment start staging\nStarting environment staging\nStarted environment(s) staging\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20891-improve-sms-text-relays) $ veu \nEnter MFA code for arn:aws:iam::438740370364:mfa/lukas.kovalik@jiminny.com: \nnc: read failed (0/10): Broken pipe\nConnection closed by UNKNOWN port 65535\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (master) $ veu2\nWarning: Permanently added 'jiminny-eu-ecs2' (ED25519) to the list of known hosts.\n\nA newer release of \"Amazon Linux\" is available.\n Version 2023.10.20260330:\n Version 2023.11.20260406:\n Version 2023.11.20260413:\n Version 2023.11.20260427:\n Version 2023.11.20260505:\n Version 2023.11.20260509:\nRun \"/usr/bin/dnf check-release-update\" for full release and version update info\n , #_\n ~\\_ ####_\n ~~ \\_#####\\\n ~~ \\###|\n ~~ \\#/ ___ Amazon Linux 2023 (ECS Optimized)\n ~~ V~' '->\n ~~~ /\n ~~._. _/\n _/ _/\n _/m/'\n\nFor documentation, visit http://aws.amazon.com/documentation/ecs\nLast login: Tue May 12 13:56:11 2026 from 10.20.163.228\n[ec2-user@ip-10-20-31-146 ~]$ docker exec -it $(docker ps --format \"{{.ID}}\" --filter \"name=ecs-worker\" | head -1) /bin/bash -c \"cd /home/jiminny && bash\"\nroot@453da0675541:/home/jiminny# php artisan jiminny:token-info -A 30110 \n[2026-05-13 15:28:23] production.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:token-info\",\"memoryBeforeCommandInMb\":116.0,\"memoryPeakBeforeCommandInMb\":116.0} {\"correlation_id\":\"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec\",\"trace_id\":\"1a72fef6-427a-4e63-a9ba-b340103c976b\"}\n\n[2026-05-13 15:28:23] production.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":30110,\"provider\":\"hubspot\"} {\"correlation_id\":\"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec\",\"trace_id\":\"1a72fef6-427a-4e63-a9ba-b340103c976b\"}\n\n[2026-05-13 15:28:23] production.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":30110,\"provider\":\"hubspot\"} {\"correlation_id\":\"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec\",\"trace_id\":\"1a72fef6-427a-4e63-a9ba-b340103c976b\"}\n\n[2026-05-13 15:28:23] production.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec\",\"trace_id\":\"1a72fef6-427a-4e63-a9ba-b340103c976b\"}\n\n[2026-05-13 15:28:23] production.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":30110,\"provider\":\"hubspot\",\"refreshToken\":\"9417a6a067cd68efa0bd023e970cc27482ef7db27b876a4383f5a246c4e8d81c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec\",\"trace_id\":\"1a72fef6-427a-4e63-a9ba-b340103c976b\"}\n\n[2026-05-13 15:28:23] production.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":30110,\"provider\":\"hubspot\",\"responseBody\":\"{\\\"status\\\":\\\"BAD_HUB\\\",\\\"message\\\":\\\"missing or unknown hub id\\\",\\\"correlationId\\\":\\\"019e21f4-1184-72ca-8c79-d9e09814baa4\\\",\\\"error\\\":\\\"access_denied\\\",\\\"error_description\\\":\\\"missing or unknown hub id\\\"}\"} {\"correlation_id\":\"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec\",\"trace_id\":\"1a72fef6-427a-4e63-a9ba-b340103c976b\"}\n\n[2026-05-13 15:28:23] production.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec\",\"trace_id\":\"1a72fef6-427a-4e63-a9ba-b340103c976b\"}\n\nFlow refresh required.\nroot@453da0675541:/home/jiminny# php artisan jiminny:token-info -A 30110 -R\n[2026-05-13 15:28:31] production.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:token-info\",\"memoryBeforeCommandInMb\":116.0,\"memoryPeakBeforeCommandInMb\":116.0} {\"correlation_id\":\"b1e2505a-8c60-4607-a96a-a33209efd4c4\",\"trace_id\":\"001e9c48-df0f-4111-9988-d3bb8bf7bfa8\"}\n\n[2026-05-13 15:28:31] production.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":30110,\"provider\":\"hubspot\"} {\"correlation_id\":\"b1e2505a-8c60-4607-a96a-a33209efd4c4\",\"trace_id\":\"001e9c48-df0f-4111-9988-d3bb8bf7bfa8\"}\n\n[2026-05-13 15:28:31] production.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":30110,\"provider\":\"hubspot\"} {\"correlation_id\":\"b1e2505a-8c60-4607-a96a-a33209efd4c4\",\"trace_id\":\"001e9c48-df0f-4111-9988-d3bb8bf7bfa8\"}\n\n[2026-05-13 15:28:31] production.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b1e2505a-8c60-4607-a96a-a33209efd4c4\",\"trace_id\":\"001e9c48-df0f-4111-9988-d3bb8bf7bfa8\"}\n\n[2026-05-13 15:28:31] production.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":30110,\"provider\":\"hubspot\",\"refreshToken\":\"9417a6a067cd68efa0bd023e970cc27482ef7db27b876a4383f5a246c4e8d81c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"b1e2505a-8c60-4607-a96a-a33209efd4c4\",\"trace_id\":\"001e9c48-df0f-4111-9988-d3bb8bf7bfa8\"}\n\n[2026-05-13 15:28:32] production.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":30110,\"provider\":\"hubspot\",\"responseBody\":\"{\\\"status\\\":\\\"BAD_HUB\\\",\\\"message\\\":\\\"missing or unknown hub id\\\",\\\"correlationId\\\":\\\"019e21f4-319c-7501-8b0e-d3118c6534f8\\\",\\\"error\\\":\\\"access_denied\\\",\\\"error_description\\\":\\\"missing or unknown hub id\\\"}\"} {\"correlation_id\":\"b1e2505a-8c60-4607-a96a-a33209efd4c4\",\"trace_id\":\"001e9c48-df0f-4111-9988-d3bb8bf7bfa8\"}\n\n[2026-05-13 15:28:32] production.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"b1e2505a-8c60-4607-a96a-a33209efd4c4\",\"trace_id\":\"001e9c48-df0f-4111-9988-d3bb8bf7bfa8\"}\n\nFlow refresh required.\nroot@453da0675541:/home/jiminny# [ec2-user@ip-10-20-31-146 ~]$ exirt\n-bash: exirt: command not found\n[ec2-user@ip-10-20-31-146 ~]$ exit\nlogout\nConnection to jiminny-eu-ecs2 closed.\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (master) $ sp-stop\nscreenpipe stopped\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (master) $ sqlite3 ~/.screenpipe/db.sqlite <<'SQL'\nSELECT f.id, f.timestamp, f.name, o.text_json\nFROM frames f\nJOIN ocr_text o ON o.frame_id = f.id\nJOIN ocr_text_fts fts ON fts.rowid = o.rowid\nWHERE ocr_text_fts MATCH 'JY-20458'\nORDER BY f.timestamp DESC\nLIMIT 1;\nSQL\nParse error near line 1: no such table: ocr_text_fts\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (master) $ du ~/.screenpipe \n8\u0000\u0000\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe/pipes/day-recap\n8\u0000\u0000\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe/pipes/standup-update\n8\u0000\u0000\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe/pipes/ai-habits\n8\u0000\u0000\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe/pipes/time-breakdown\n8\u0000\u0000\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe/pipes/video-export\n8\u0000\u0000\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe/pipes/meeting-summary\n72\u0000\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe/pipes\n48\u0000\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe/scripts/lib\n112\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe/scripts\n0\u0000\u0000\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe/data/pending-transcriptions\n650352\u0000\t/Users/lukas/.screenpipe/data/data/2026-05-11\n37544\u0000\u0000\t/Users/lukas/.screenpipe/data/data/2026-05-10\n604880\u0000\t/Users/lukas/.screenpipe/data/data/2026-05-12\n670872\u0000\t/Users/lukas/.screenpipe/data/data/2026-05-14\n1072648\t/Users/lukas/.screenpipe/data/data/2026-05-13\n245408\u0000\t/Users/lukas/.screenpipe/data/data/2026-05-09\n597928\u0000\t/Users/lukas/.screenpipe/data/data/2026-05-07\n13960\u0000\u0000\t/Users/lukas/.screenpipe/data/data/2026-05-06\n506720\u0000\t/Users/lukas/.screenpipe/data/data/2026-05-08\n4400336\t/Users/lukas/.screenpipe/data/data\n5718160\t/Users/lukas/.screenpipe/data\n19641288\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20725-handle-HS-search-rate-limit) $ du -sh ~/.screenpipe \n9.4G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20725-handle-HS-search-rate-limit) $ du -sh ~/.screenpipe/*\n 0B\u0000\u0000\u0000\t/Users/lukas/.screenpipe/clipboard-disabled-after-crash\n2.7G\u0000\u0000\u0000\t/Users/lukas/.screenpipe/data\n6.6G\u0000\u0000\u0000\t/Users/lukas/.screenpipe/db.sqlite\n 32K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/db.sqlite-shm\n 0B\u0000\u0000\u0000\t/Users/lukas/.screenpipe/db.sqlite-wal\n 36K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/pipes\n 28K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe.2026-05-06.0.log\n556K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe.2026-05-07.0.log\n376K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe.2026-05-08.0.log\n164K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe.2026-05-09.0.log\n 88K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe.2026-05-10.0.log\n520K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe.2026-05-11.0.log\n288K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe.2026-05-12.0.log\n440K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe.2026-05-13.0.log\n332K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe.2026-05-14.0.log\n 20K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe_sync.sh\n 32K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe_sync.sh-bakk\n 16K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe_sync.sh.bak\n 24K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/screenpipe_sync.sh.bak2\n 56K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/scripts\n132K\u0000\u0000\u0000\t/Users/lukas/.screenpipe/sync.log\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20725-handle-HS-search-rate-limit) $ sqlite3 ~/.screenpipe/db.sqlite <<'SQL'\nSELECT f.id, f.timestamp, f.name, o.text_json\nFROM frames f\nJOIN ocr_text o ON o.frame_id = f.id\nJOIN ocr_text_fts fts ON fts.rowid = o.rowid\nWHERE ocr_text_fts MATCH 'JY-20458'\nORDER BY f.timestamp DESC\nLIMIT 1;\nSQL","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.05900931,"height":-0.042298436},"on_screen":true,"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.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"on_screen":true,"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.32928857,"top":1.0,"width":0.05900931,"height":-0.042298436},"on_screen":true,"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.33128324,"top":1.0,"width":0.005319149,"height":-0.04549086},"on_screen":true,"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.3882979,"top":1.0,"width":0.05900931,"height":-0.042298436},"on_screen":true,"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.39029256,"top":1.0,"width":0.005319149,"height":-0.04549086},"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.44730717,"top":1.0,"width":0.05900931,"height":-0.042298436},"on_screen":true,"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.44930187,"top":1.0,"width":0.005319149,"height":-0.04549086},"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5063165,"top":1.0,"width":0.058843084,"height":-0.042298436},"on_screen":true,"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.50831115,"top":1.0,"width":0.005319149,"height":-0.04549086},"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-20-31-146:~ (-zsh)","depth":2,"bounds":{"left":0.56515956,"top":1.0,"width":0.058843084,"height":-0.042298436},"on_screen":true,"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.5671542,"top":1.0,"width":0.005319149,"height":-0.04549086},"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-129-190:~ (-zsh)","depth":2,"bounds":{"left":0.62400264,"top":1.0,"width":0.058843084,"height":-0.042298436},"on_screen":true,"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.62599736,"top":1.0,"width":0.005319149,"height":-0.04549086},"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-145-148:~ (-zsh)","depth":2,"bounds":{"left":0.6828458,"top":1.0,"width":0.058843084,"height":-0.042298436},"on_screen":true,"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.68484044,"top":1.0,"width":0.005319149,"height":-0.04549086},"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7280585,"top":1.0,"width":0.01861702,"height":-0.023144484},"on_screen":true,"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-20-31-146:~","depth":1,"bounds":{"left":0.47706118,"top":1.0,"width":0.06549202,"height":-0.02394259},"on_screen":true,"role_description":"text"}]...
|
-3943026646419837336
|
-98529311674749419
|
click
|
accessibility
|
NULL
|
Last login: Wed May 13 15:24:32 on ttys011
Poetry Last login: Wed May 13 15:24:32 on ttys011
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 ~ $ app
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20891-improve-sms-text-relays) $ alias tenv
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20891-improve-sms-text-relays) $ alias
addssh='ssh-add ~/.ssh/*'
app='cd ~/jiminny/app'
cnt='docker exec -ti $(docker ps | grep worker | awk '\''{print $1}'\'') /bin/bash -c "cd /home/jiminny && bash"'
co='git checkout'
cov='./vendor/bin/phpunit tests/Unit --coverage-html=build/coverage'
csfix='make cs-fix'
dev='docker exec -ti $(docker ps -q --filter "name=docker_lamp_1") /bin/bash'
eu='ssh lukas@jiminny-eu-bastion -D [IP_ADDRESS]:7073 -L 7532:db:3306'
eues='ssh ubuntu@jiminny-eu-ecs1 -L 7960:vpc-activities7-e7pfbl7wojjjnvp7olfpudrgke.eu-west-1.es.amazonaws.com:80'
ext='nvm use 20 && cd ~/jiminny/extension-app && yarn build:dev && yarn preview'
fe='yarn && nvm use 24 && cd ~/jiminny/app/front-end && yarn build:watch'
fe3='cd ~/jiminny/app/front-end-vue3 && yarn build:watch:production'
gbr='git branch --sort=-committerdate'
gcb='git branch --show-current | pbcopy'
gs='git status'
hhh=history
hhs='history 0 | grep '
install_nano='apt-get update & apt-get install nano'
kar='cp -f ~/DEV/settings/goku-karabiner-settings/karabiner.edn ~/.config/karabiner.edn && goku'
ll='ls -la --color=tty'
lock='kill %1 2>/dev/null; sleep 1 && pmset displaysleepnow'
nas='ssh Adm1n@[IP_ADDRESS] -p22'
poetryshell='eval ""'
prod='ssh lukas@jiminny-prod-bastion -D [IP_ADDRESS]:7072 -L 7632:db:3306'
prodes='ssh ubuntu@jiminny-prod-ecs1 -L 7970:vpc-activities7-3o2zlrelmga5qicf2yxxwtx6bi.us-east-2.es.amazonaws.com:80'
prophet='cd ~/jiminny/app'
prophetdown='aws-vault exec staging -- bash -c "env | grep AWS_ > aws-creds.env && docker compose -f docker-compose.yml -f docker-compose.dev.yml down"'
prophetup='aws-vault exec staging -- bash -c "env | grep AWS_ > aws-creds.env && docker compose -f docker-compose.yml -f docker-compose.dev.yml up --build"'
qa='ssh lukas@jiminny-qa-bastion -D [IP_ADDRESS]:7074 -L 7432:db:3306'
qaes='ssh ubuntu@jiminny-qa-ecs1 -L 7950:vpc-activities7-s5zchrs4xqcnav3rjzmxgxvfvq.us-east-2.es.amazonaws.com:80'
qai='ssh lukas@jiminny-qai-bastion -D [IP_ADDRESS]:7075 -L 7777:jiminny-db-qai.c3uemcm84st0.us-east-2.rds.amazonaws.com:3306'
rmbc='rm -rf bootstrap/cache/*.php'
run-help=man
sp-db='sqlite3 ~/.screenpipe/db.sqlite '
sp-start='npx screenpipe@latest record --disable-audio --ignored-windows "Boosteroid"'
sp-status='curl -s [URL_WITH_CREDENTIALS] -D [IP_ADDRESS]:7071 -L 7732:db:3306'
stges='ssh ubuntu@jiminny-stage-ecs1 -L 7980:vpc-activities7-tgeodjeaugnaiigqgdcjjkrrj4.us-east-2.es.amazonaws.com:80'
veu='ssh jiminny-eu-ecs1'
veu10='ssh jiminny-eu-ecs10'
veu11='ssh jiminny-eu-ecs11'
veu12='ssh jiminny-eu-ecs12'
veu2='ssh jiminny-eu-ecs2'
veu3='ssh jiminny-eu-ecs3'
veu4='ssh jiminny-eu-ecs4'
veu5='ssh jiminny-eu-ecs5'
veu6='ssh jiminny-eu-ecs6'
veu7='ssh jiminny-eu-ecs7'
veu8='ssh jiminny-eu-ecs8'
veu9='ssh jiminny-eu-ecs9'
vprod='ssh jiminny-prod-ecs1'
vprod10='ssh jiminny-prod-ecs10'
vprod11='ssh jiminny-prod-ecs11'
vprod12='ssh jiminny-prod-ecs12'
vprod2='ssh jiminny-prod-ecs2'
vprod3='ssh jiminny-prod-ecs3'
vprod4='ssh jiminny-prod-ecs4'
vprod5='ssh jiminny-prod-ecs5'
vprod6='ssh jiminny-prod-ecs6'
vprod7='ssh jiminny-prod-ecs7'
vprod8='ssh jiminny-prod-ecs8'
vprod9='ssh jiminny-prod-ecs9'
vqa='ssh jiminny-qa-ecs1'
vqa2='ssh jiminny-qa-ecs2'
vqai='ssh jiminny-qai-ecs1'
vqai2='ssh jiminny-qai-ecs2'
vstage='ssh ec2-user@jiminny-subenv-worker-app0'
vstg='ssh jiminny-stage-ecs1'
vstg2='ssh ubuntu@jiminny-stage-ecs2'
which-command=whence
work='cd ~/jiminny/infrastructure/dev/docker && docker compose up'
workoff='kill %1'
workon='caffeinate -d & echo "Display sleep disabled (PID $!)"'
xd='make docker-xdebug-disable'
xe='make docker-xdebug-enable'
zp='nano ~/.zprofile'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20891-improve-sms-text-relays) $ scripts/toggle_environment start staging
Starting environment staging
Started environment(s) staging
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20891-improve-sms-text-relays) $ veu
Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:
nc: read failed (0/10): Broken pipe
Connection closed by UNKNOWN port 65535
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (master) $ veu2
Warning: Permanently added 'jiminny-eu-ecs2' (ED25519) to the list of known hosts.
A newer release of "Amazon Linux" is available.
Version 2023.10.20260330:
Version 2023.11.20260406:
Version 2023.11.20260413:
Version 2023.11.20260427:
Version 2023.11.20260505:
Version 2023.11.20260509:
Run "/usr/bin/dnf check-release-update" for full release and version update info
, #_
~\_ ####_
~~ \_#####\
~~ \###|
~~ \#/ ___ Amazon Linux 2023 (ECS Optimized)
~~ V~' '->
~~~ /
~~._. _/
_/ _/
_/m/'
For documentation, visit [URL_WITH_CREDENTIALS] ~]$ docker exec -it $(docker ps --format "{{.ID}}" --filter "name=ecs-worker" | head -1) /bin/bash -c "cd /home/jiminny && bash"
root@453da0675541:/home/jiminny# php artisan jiminny:token-info -A 30110
[2026-05-13 15:28:23] production.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"jiminny:token-info","memoryBeforeCommandInMb":116.0,"memoryPeakBeforeCommandInMb":116.0} {"correlation_id":"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec","trace_id":"1a72fef6-427a-4e63-a9ba-b340103c976b"}
[2026-05-13 15:28:23] production.INFO: [SocialAccountService] Fetching token {"socialAccountId":30110,"provider":"hubspot"} {"correlation_id":"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec","trace_id":"1a72fef6-427a-4e63-a9ba-b340103c976b"}
[2026-05-13 15:28:23] production.INFO: [SocialAccountService] Token needs refreshing {"socialAccountId":30110,"provider":"hubspot"} {"correlation_id":"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec","trace_id":"1a72fef6-427a-4e63-a9ba-b340103c976b"}
[2026-05-13 15:28:23] production.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec","trace_id":"1a72fef6-427a-4e63-a9ba-b340103c976b"}
[2026-05-13 15:28:23] production.INFO: [SocialAccountService] Refreshing token from provider {"socialAccountId":30110,"provider":"hubspot","refreshToken":"9417a6a067cd68efa0bd023e970cc27482ef7db27b876a4383f5a246c4e8d81c","state":"full-refresh"} {"correlation_id":"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec","trace_id":"1a72fef6-427a-4e63-a9ba-b340103c976b"}
[2026-05-13 15:28:23] production.ERROR: [SocialAccountService] Failed to refresh token {"socialAccountId":30110,"provider":"hubspot","responseBody":"{\"status\":\"BAD_HUB\",\"message\":\"missing or unknown hub id\",\"correlationId\":\"019e21f4-1184-72ca-8c79-d9e09814baa4\",\"error\":\"access_denied\",\"error_description\":\"missing or unknown hub id\"}"} {"correlation_id":"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec","trace_id":"1a72fef6-427a-4e63-a9ba-b340103c976b"}
[2026-05-13 15:28:23] production.INFO: [SocialAccountObserver] Saving model {"correlation_id":"ed1a364d-0b07-4c47-95a7-d22fd8ef6bec","trace_id":"1a72fef6-427a-4e63-a9ba-b340103c976b"}
Flow refresh required.
root@453da0675541:/home/jiminny# php artisan jiminny:token-info -A 30110 -R
[2026-05-13 15:28:31] production.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"jiminny:token-info","memoryBeforeCommandInMb":116.0,"memoryPeakBeforeCommandInMb":116.0} {"correlation_id":"b1e2505a-8c60-4607-a96a-a33209efd4c4","trace_id":"001e9c48-df0f-4111-9988-d3bb8bf7bfa8"}
[2026-05-13 15:28:31] production.INFO: [SocialAccountService] Fetching token {"socialAccountId":30110,"provider":"hubspot"} {"correlation_id":"b1e2505a-8c60-4607-a96a-a33209efd4c4","trace_id":"001e9c48-df0f-4111-9988-d3bb8bf7bfa8"}
[2026-05-13 15:28:31] production.INFO: [SocialAccountService] Token needs refreshing {"socialAccountId":30110,"provider":"hubspot"} {"correlation_id":"b1e2505a-8c60-4607-a96a-a33209efd4c4","trace_id":"001e9c48-df0f-4111-9988-d3bb8bf7bfa8"}
[2026-05-13 15:28:31] production.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b1e2505a-8c60-4607-a96a-a33209efd4c4","trace_id":"001e9c48-df0f-4111-9988-d3bb8bf7bfa8"}
[2026-05-13 15:28:31] production.INFO: [SocialAccountService] Refreshing token from provider {"socialAccountId":30110,"provider":"hubspot","refreshToken":"9417a6a067cd68efa0bd023e970cc27482ef7db27b876a4383f5a246c4e8d81c","state":"full-refresh"} {"correlation_id":"b1e2505a-8c60-4607-a96a-a33209efd4c4","trace_id":"001e9c48-df0f-4111-9988-d3bb8bf7bfa8"}
[2026-05-13 15:28:32] production.ERROR: [SocialAccountService] Failed to refresh token {"socialAccountId":30110,"provider":"hubspot","responseBody":"{\"status\":\"BAD_HUB\",\"message\":\"missing or unknown hub id\",\"correlationId\":\"019e21f4-319c-7501-8b0e-d3118c6534f8\",\"error\":\"access_denied\",\"error_description\":\"missing or unknown hub id\"}"} {"correlation_id":"b1e2505a-8c60-4607-a96a-a33209efd4c4","trace_id":"001e9c48-df0f-4111-9988-d3bb8bf7bfa8"}
[2026-05-13 15:28:32] production.INFO: [SocialAccountObserver] Saving model {"correlation_id":"b1e2505a-8c60-4607-a96a-a33209efd4c4","trace_id":"001e9c48-df0f-4111-9988-d3bb8bf7bfa8"}
Flow refresh required.
root@453da0675541:/home/jiminny# [ec2-user@ip-10-20-31-146 ~]$ exirt
-bash: exirt: command not found
[ec2-user@ip-10-20-31-146 ~]$ exit
logout
Connection to jiminny-eu-ecs2 closed.
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (master) $ sp-stop
screenpipe stopped
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (master) $ sqlite3 ~/.screenpipe/db.sqlite <<'SQL'
SELECT f.id, f.timestamp, f.name, o.text_json
FROM frames f
JOIN ocr_text o ON o.frame_id = f.id
JOIN ocr_text_fts fts ON fts.rowid = o.rowid
WHERE ocr_text_fts MATCH 'JY-20458'
ORDER BY f.timestamp DESC
LIMIT 1;
SQL
Parse error near line 1: no such table: ocr_text_fts
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (master) $ du ~/.screenpipe
8 /Users/lukas/.screenpipe/pipes/day-recap
8 /Users/lukas/.screenpipe/pipes/standup-update
8 /Users/lukas/.screenpipe/pipes/ai-habits
8 /Users/lukas/.screenpipe/pipes/time-breakdown
8 /Users/lukas/.screenpipe/pipes/video-export
8 /Users/lukas/.screenpipe/pipes/meeting-summary
72 /Users/lukas/.screenpipe/pipes
48 /Users/lukas/.screenpipe/scripts/lib
112 /Users/lukas/.screenpipe/scripts
0 /Users/lukas/.screenpipe/data/pending-transcriptions
650352 /Users/lukas/.screenpipe/data/data/2026-05-11
37544 /Users/lukas/.screenpipe/data/data/2026-05-10
604880 /Users/lukas/.screenpipe/data/data/2026-05-12
670872 /Users/lukas/.screenpipe/data/data/2026-05-14
1072648 /Users/lukas/.screenpipe/data/data/2026-05-13
245408 /Users/lukas/.screenpipe/data/data/2026-05-09
597928 /Users/lukas/.screenpipe/data/data/2026-05-07
13960 /Users/lukas/.screenpipe/data/data/2026-05-06
506720 /Users/lukas/.screenpipe/data/data/2026-05-08
4400336 /Users/lukas/.screenpipe/data/data
5718160 /Users/lukas/.screenpipe/data
19641288 /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20725-handle-HS-search-rate-limit) $ du -sh ~/.screenpipe
9.4G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20725-handle-HS-search-rate-limit) $ du -sh ~/.screenpipe/*
0B /Users/lukas/.screenpipe/clipboard-disabled-after-crash
2.7G /Users/lukas/.screenpipe/data
6.6G /Users/lukas/.screenpipe/db.sqlite
32K /Users/lukas/.screenpipe/db.sqlite-shm
0B /Users/lukas/.screenpipe/db.sqlite-wal
36K /Users/lukas/.screenpipe/pipes
28K /Users/lukas/.screenpipe/screenpipe.2026-05-06.0.log
556K /Users/lukas/.screenpipe/screenpipe.2026-05-07.0.log
376K /Users/lukas/.screenpipe/screenpipe.2026-05-08.0.log
164K /Users/lukas/.screenpipe/screenpipe.2026-05-09.0.log
88K /Users/lukas/.screenpipe/screenpipe.2026-05-10.0.log
520K /Users/lukas/.screenpipe/screenpipe.2026-05-11.0.log
288K /Users/lukas/.screenpipe/screenpipe.2026-05-12.0.log
440K /Users/lukas/.screenpipe/screenpipe.2026-05-13.0.log
332K /Users/lukas/.screenpipe/screenpipe.2026-05-14.0.log
20K /Users/lukas/.screenpipe/screenpipe_sync.sh
32K /Users/lukas/.screenpipe/screenpipe_sync.sh-bakk
16K /Users/lukas/.screenpipe/screenpipe_sync.sh.bak
24K /Users/lukas/.screenpipe/screenpipe_sync.sh.bak2
56K /Users/lukas/.screenpipe/scripts
132K /Users/lukas/.screenpipe/sync.log
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (JY-20725-handle-HS-search-rate-limit) $ sqlite3 ~/.screenpipe/db.sqlite <<'SQL'
SELECT f.id, f.timestamp, f.name, o.text_json
FROM frames f
JOIN ocr_text o ON o.frame_id = f.id
JOIN ocr_text_fts fts ON fts.rowid = o.rowid
WHERE ocr_text_fts MATCH 'JY-20458'
ORDER BY f.timestamp DESC
LIMIT 1;
SQL
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
-zsh
Close Tab
screenpipe"
Close Tab
ec2-user@ip-10-20-31-146:~ (-zsh)
Close Tab
ec2-user@ip-10-30-129-190:~ (-zsh)
Close Tab
ec2-user@ip-10-30-145-148:~ (-zsh)
Close Tab
⌥⌘1
ec2-user@ip-10-20-31-146:~...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49321
|
1760
|
0
|
2026-05-18T06:35:35.722859+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086135722_m1.jpg...
|
iTerm2
|
screenpipe"
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Mon May 18 09:17:28 on ttys007
Poetry Last login: Mon May 18 09:17:28 on ttys007
Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents
Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
10G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ ~/.screenpipe/scripts/screenpipe_sync.sh 2026-05-15
[2026-05-18 09:19:59] ========================================
[2026-05-18 09:19:59] Screenpipe sync starting for: 2026-05-15
[2026-05-18 09:19:59] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.1G)
[2026-05-18 09:19:59] ERROR: NAS not mounted at /Volumes/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ ~/.screenpipe/scripts/screenpipe_sync.sh 2026-05-15
[2026-05-18 09:20:16] ========================================
[2026-05-18 09:20:16] Screenpipe sync starting for: 2026-05-15
[2026-05-18 09:20:16] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.1G)
NAS mount: OK /Volumes/screenpipe
Archive DB: exists (6.1G)
Data dir: OK (114 files, 146M)
[+00m05s] ▶ Counting source rows for 2026-05-15
frames: 3231
elements: 417620
ui_events: 3376
ocr_text: 1366
meetings: 2
audio_chunks: 593
audio_transcriptions: 15
[+00m06s] ▶ Initialising tables, indexes, FTS
creating tables ✓ 0m00s
creating indexes ✓ 0m00s
creating FTS tables ✓ 0m00s
[+00m06s] ▶ Syncing vision data for 2026-05-15
video_chunks ✓ 0m04s
frames (3231 rows) ✓ 0m52s
ocr_text (1366 rows) ✓ 0m30s
ui_events (3376 rows) ✓ 0m01s
elements (417620 rows) ✓ 0m37s
meetings (2 rows) ✓ 0m00s
[+02m10s] ▶ Syncing audio data for 2026-05-15
audio_chunks (593 rows) ✓ 0m01s
audio_transcriptions (15 rows) ✓ 0m00s
[+02m11s] ▶ Updating FTS indexes
elements_fts ✓ 1m13s
frames_fts ✓ 1m51s
ui_events_fts ✓ 0m02s
audio_transcriptions_fts ✓ 0m01s
[+05m18s] ▶ Verifying DB
frames: 3231 / 3231 ✓
elements: 417620 / 417620 ✓
ui_events: 3376 / 3376 ✓
ocr_text: 1366 / 1366 ✓
meetings: 2 / 2 ✓
audio_chunks: 593 / 593 ✓
audio_transcriptions: 15 / 15 ✓
[+06m17s] ▶ Copying data folder for 2026-05-15
rsync 2026-05-15/ → NAS ✓ 0m10s (114 files, 146M)
[+06m27s] ▶ Copying audio files for 2026-05-15
rsync System Audio (output)_2026-05-15_06-26-46.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-26-46.mp4 → NAS ✓ 8.0K
rsync System Audio (output)_2026-05-15_06-27-10.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-27-18.mp4 → NAS ✓ 70K
rsync System Audio (output)_2026-05-15_06-27-32.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-27-55.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-27-48.mp4 → NAS ✓ 96K
rsync System Audio (output)_2026-05-15_06-28-17.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-28-18.mp4 → NAS ✓ 79K
rsync System Audio (output)_2026-05-15_06-28-39.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-28-48.mp4 → NAS ✓ 80K
rsync System Audio (output)_2026-05-15_06-29-02.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-29-24.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-29-18.mp4 → NAS ✓ 133K
rsync System Audio (output)_2026-05-15_06-29-47.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-29-48.mp4 → NAS ✓ 90K
rsync System Audio (output)_2026-05-15_06-30-09.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-30-18.mp4 → NAS ✓ 80K
rsync System Audio (output)_2026-05-15_06-30-32.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-30-54.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-30-48.mp4 → NAS ✓ 8.0K
rsync System Audio (output)_2026-05-15_06-31-17.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-31-18.mp4 → NAS ✓ 10K
rsync System Audio (output)_2026-05-15_06-31-39.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-31-48.mp4 → NAS ✓ 31K
rsync System Audio (output)_2026-05-15_06-32-01.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-32-24.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-32-18.mp4 → NAS ✓ 74K
rsync System Audio (output)_2026-05-15_06-32-46.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-32-48.mp4 → NAS ✓ 108K
rsync System Audio (output)_2026-05-15_06-33-09.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-33-18.mp4 → NAS ✓ 87K
rsync System Audio (output)_2026-05-15_06-33-31.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-33-54.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-33-48.mp4 → NAS ✓ 13K
rsync System Audio (output)_2026-05-15_06-34-16.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-34-39.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-34-32.mp4 → NAS ✓ 18K
rsync System Audio (output)_2026-05-15_06-35-01.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-35-04.mp4 → NAS ✓ 7.0K
rsync System Audio (output)_2026-05-15_06-35-23.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-35-34.mp4 → NAS ✓ 54K
rsync System Audio (output)_2026-05-15_06-35-46.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-36-08.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-36-04.mp4 → NAS ✓ 49K
rsync soundcore AeroClip (input)_2026-05-15_06-36-34.mp4 → NAS ✓ 62K
rsync soundcore AeroClip (input)_2026-05-15_06-40-43.mp4 → NAS ✓ 74K
rsync soundcore AeroClip (input)_2026-05-15_06-41-15.mp4 → NAS ✓ 49K
rsync soundcore AeroClip (input)_2026-05-15_06-41-45.mp4 → NAS ✓ 48K
rsync soundcore AeroClip (input)_2026-05-15_06-42-04.mp4 → NAS ✓ 6.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-42-04.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-42-36.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-43-06.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-43-36.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-44-06.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-44-36.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-45-06.mp4 → NAS ✓ 5.0K
rsync MacBook Pro Microphone (input)_2026-05-15_06-45-45.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_06-46-17.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_06-46-47.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_06-47-16.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_06-47-46.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_06-48-16.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_06-48-46.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_06-49-15.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_06-49-45.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_06-50-15.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_06-50-45.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_06-51-15.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_06-51-44.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_06-52-14.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_06-52-44.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_06-53-14.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_06-53-44.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_06-54-14.mp4 → NAS ✓ 100K
rsync MacBook Pro Microphone (input)_2026-05-15_06-54-28.mp4 → NAS ✓ 16K
rsync MacBook Pro Microphone (input)_2026-05-15_06-54-51.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_06-55-24.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_06-55-53.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_06-56-23.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_06-56-53.mp4 → NAS ✓ 217K
rsync MacBook Pro Microphone (input)_2026-05-15_06-57-23.mp4 → NAS ✓ 213K
rsync MacBook Pro Microphone (input)_2026-05-15_06-57-52.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_06-58-22.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_06-58-52.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_06-59-22.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_06-59-52.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_07-00-21.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_07-00-51.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_07-01-20.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_07-01-50.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_07-02-20.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_07-02-50.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_07-03-20.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_07-03-50.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_07-04-20.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_07-04-50.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_07-05-19.mp4 → NAS ✓ 92K
rsync MacBook Pro Microphone (input)_2026-05-15_07-05-33.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_07-05-33.mp4 → NAS ✓ 28K
rsync soundcore AeroClip (input)_2026-05-15_07-06-05.mp4 → NAS ✓ 65K
rsync soundcore AeroClip (input)_2026-05-15_07-06-35.mp4 → NAS ✓ 44K
rsync soundcore AeroClip (input)_2026-05-15_07-07-05.mp4 → NAS ✓ 66K
rsync soundcore AeroClip (input)_2026-05-15_07-07-35.mp4 → NAS ✓ 114K
rsync soundcore AeroClip (input)_2026-05-15_07-08-05.mp4 → NAS ✓ 61K
rsync soundcore AeroClip (input)_2026-05-15_07-08-35.mp4 → NAS ✓ 96K
rsync soundcore AeroClip (input)_2026-05-15_07-09-05.mp4 → NAS ✓ 44K
rsync soundcore AeroClip (input)_2026-05-15_07-09-35.mp4 → NAS ✓ 38K
rsync soundcore AeroClip (input)_2026-05-15_07-10-05.mp4 → NAS ✓ 11K
rsync soundcore AeroClip (input)_2026-05-15_07-10-35.mp4 → NAS ✓ 31K
rsync soundcore AeroClip (input)_2026-05-15_07-11-05.mp4 → NAS ✓ 55K
rsync soundcore AeroClip (input)_2026-05-15_07-11-35.mp4 → NAS ✓ 51K
rsync soundcore AeroClip (input)_2026-05-15_07-12-04.mp4 → NAS ✓ 36K
rsync soundcore AeroClip (input)_2026-05-15_07-12-34.mp4 → NAS ✓ 24K
rsync soundcore AeroClip (input)_2026-05-15_07-13-04.mp4 → NAS ✓ 25K
rsync soundcore AeroClip (input)_2026-05-15_07-13-34.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_07-14-04.mp4 → NAS ✓ 39K
rsync soundcore AeroClip (input)_2026-05-15_07-14-34.mp4 → NAS ✓ 31K
rsync soundcore AeroClip (input)_2026-05-15_07-15-04.mp4 → NAS ✓ 28K
rsync soundcore AeroClip (input)_2026-05-15_07-15-34.mp4 → NAS ✓ 35K
rsync soundcore AeroClip (input)_2026-05-15_07-16-04.mp4 → NAS ✓ 44K
rsync soundcore AeroClip (input)_2026-05-15_07-16-34.mp4 → NAS ✓ 31K
rsync soundcore AeroClip (input)_2026-05-15_07-17-04.mp4 → NAS ✓ 27K
rsync soundcore AeroClip (input)_2026-05-15_07-17-34.mp4 → NAS ✓ 22K
rsync soundcore AeroClip (input)_2026-05-15_07-18-04.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_07-18-34.mp4 → NAS ✓ 25K
rsync soundcore AeroClip (input)_2026-05-15_07-19-04.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_07-19-34.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_07-20-04.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_07-20-34.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_07-21-04.mp4 → NAS ✓ 15K
rsync soundcore AeroClip (input)_2026-05-15_07-21-34.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_07-22-04.mp4 → NAS ✓ 8.0K
rsync soundcore AeroClip (input)_2026-05-15_07-22-34.mp4 → NAS ✓ 8.0K
rsync soundcore AeroClip (input)_2026-05-15_07-23-04.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_07-23-34.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_07-24-04.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_07-24-34.mp4 → NAS ✓ 15K
rsync soundcore AeroClip (input)_2026-05-15_07-25-04.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_07-25-38.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_07-26-10.mp4 → NAS ✓ 12K
rsync soundcore AeroClip (input)_2026-05-15_07-26-40.mp4 → NAS ✓ 11K
rsync soundcore AeroClip (input)_2026-05-15_07-27-10.mp4 → NAS ✓ 12K
rsync soundcore AeroClip (input)_2026-05-15_07-27-40.mp4 → NAS ✓ 8.0K
rsync soundcore AeroClip (input)_2026-05-15_07-28-20.mp4 → NAS ✓ 25K
rsync soundcore AeroClip (input)_2026-05-15_07-28-52.mp4 → NAS ✓ 12K
rsync soundcore AeroClip (input)_2026-05-15_07-29-21.mp4 → NAS ✓ 12K
rsync soundcore AeroClip (input)_2026-05-15_07-29-51.mp4 → NAS ✓ 8.0K
rsync soundcore AeroClip (input)_2026-05-15_07-30-25.mp4 → NAS ✓ 13K
rsync soundcore AeroClip (input)_2026-05-15_07-30-57.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_07-31-27.mp4 → NAS ✓ 11K
rsync soundcore AeroClip (input)_2026-05-15_07-31-57.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_07-32-27.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_07-32-57.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_07-33-38.mp4 → NAS ✓ 22K
rsync soundcore AeroClip (input)_2026-05-15_07-34-10.mp4 → NAS ✓ 72K
rsync soundcore AeroClip (input)_2026-05-15_07-34-40.mp4 → NAS ✓ 74K
rsync soundcore AeroClip (input)_2026-05-15_07-35-10.mp4 → NAS ✓ 63K
rsync soundcore AeroClip (input)_2026-05-15_07-35-40.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_07-36-10.mp4 → NAS ✓ 21K
rsync soundcore AeroClip (input)_2026-05-15_07-36-39.mp4 → NAS ✓ 35K
rsync soundcore AeroClip (input)_2026-05-15_07-37-09.mp4 → NAS ✓ 46K
rsync soundcore AeroClip (input)_2026-05-15_07-37-39.mp4 → NAS ✓ 40K
rsync soundcore AeroClip (input)_2026-05-15_07-38-09.mp4 → NAS ✓ 26K
rsync soundcore AeroClip (input)_2026-05-15_07-38-39.mp4 → NAS ✓ 29K
rsync soundcore AeroClip (input)_2026-05-15_07-39-09.mp4 → NAS ✓ 49K
rsync soundcore AeroClip (input)_2026-05-15_07-39-39.mp4 → NAS ✓ 37K
rsync soundcore AeroClip (input)_2026-05-15_07-40-09.mp4 → NAS ✓ 56K
rsync soundcore AeroClip (input)_2026-05-15_07-40-39.mp4 → NAS ✓ 39K
rsync soundcore AeroClip (input)_2026-05-15_07-41-09.mp4 → NAS ✓ 37K
rsync soundcore AeroClip (input)_2026-05-15_07-41-38.mp4 → NAS ✓ 159K
rsync soundcore AeroClip (input)_2026-05-15_07-42-08.mp4 → NAS ✓ 69K
rsync soundcore AeroClip (input)_2026-05-15_07-42-38.mp4 → NAS ✓ 51K
rsync soundcore AeroClip (input)_2026-05-15_07-43-08.mp4 → NAS ✓ 30K
rsync soundcore AeroClip (input)_2026-05-15_07-43-38.mp4 → NAS ✓ 33K
rsync soundcore AeroClip (input)_2026-05-15_07-44-08.mp4 → NAS ✓ 71K
rsync soundcore AeroClip (input)_2026-05-15_07-44-38.mp4 → NAS ✓ 38K
rsync soundcore AeroClip (input)_2026-05-15_07-45-08.mp4 → NAS ✓ 21K
rsync soundcore AeroClip (input)_2026-05-15_07-45-38.mp4 → NAS ✓ 37K
rsync soundcore AeroClip (input)_2026-05-15_07-46-08.mp4 → NAS ✓ 50K
rsync soundcore AeroClip (input)_2026-05-15_07-46-38.mp4 → NAS ✓ 26K
rsync soundcore AeroClip (input)_2026-05-15_07-47-08.mp4 → NAS ✓ 32K
rsync soundcore AeroClip (input)_2026-05-15_07-47-38.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_07-48-08.mp4 → NAS ✓ 32K
rsync soundcore AeroClip (input)_2026-05-15_07-48-38.mp4 → NAS ✓ 62K
rsync soundcore AeroClip (input)_2026-05-15_07-49-08.mp4 → NAS ✓ 110K
rsync soundcore AeroClip (input)_2026-05-15_07-49-38.mp4 → NAS ✓ 51K
rsync soundcore AeroClip (input)_2026-05-15_07-50-08.mp4 → NAS ✓ 35K
rsync soundcore AeroClip (input)_2026-05-15_07-50-38.mp4 → NAS ✓ 81K
rsync soundcore AeroClip (input)_2026-05-15_07-51-08.mp4 → NAS ✓ 72K
rsync soundcore AeroClip (input)_2026-05-15_07-51-38.mp4 → NAS ✓ 26K
rsync soundcore AeroClip (input)_2026-05-15_07-52-08.mp4 → NAS ✓ 22K
rsync soundcore AeroClip (input)_2026-05-15_07-52-38.mp4 → NAS ✓ 17K
rsync soundcore AeroClip (input)_2026-05-15_07-53-08.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_07-53-37.mp4 → NAS ✓ 21K
rsync soundcore AeroClip (input)_2026-05-15_07-54-07.mp4 → NAS ✓ 28K
rsync soundcore AeroClip (input)_2026-05-15_07-54-37.mp4 → NAS ✓ 19K
rsync soundcore AeroClip (input)_2026-05-15_07-55-07.mp4 → NAS ✓ 17K
rsync soundcore AeroClip (input)_2026-05-15_07-55-37.mp4 → NAS ✓ 15K
rsync soundcore AeroClip (input)_2026-05-15_07-56-07.mp4 → NAS ✓ 16K
rsync soundcore AeroClip (input)_2026-05-15_07-56-37.mp4 → NAS ✓ 16K
rsync soundcore AeroClip (input)_2026-05-15_07-57-07.mp4 → NAS ✓ 11K
rsync soundcore AeroClip (input)_2026-05-15_07-57-37.mp4 → NAS ✓ 8.0K
rsync soundcore AeroClip (input)_2026-05-15_07-58-07.mp4 → NAS ✓ 15K
rsync soundcore AeroClip (input)_2026-05-15_07-58-37.mp4 → NAS ✓ 15K
rsync soundcore AeroClip (input)_2026-05-15_07-59-07.mp4 → NAS ✓ 17K
rsync soundcore AeroClip (input)_2026-05-15_07-59-37.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_08-00-26.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_08-00-58.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_08-01-47.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_08-02-43.mp4 → NAS ✓ 18K
rsync soundcore AeroClip (input)_2026-05-15_08-03-20.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_08-03-52.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_08-04-22.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_08-04-52.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_08-05-37.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_08-06-09.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_08-08-20.mp4 → NAS ✓ 13K
rsync soundcore AeroClip (input)_2026-05-15_08-08-52.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_08-09-36.mp4 → NAS ✓ 12K
rsync soundcore AeroClip (input)_2026-05-15_08-10-08.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_08-10-38.mp4 → NAS ✓ 45K
rsync soundcore AeroClip (input)_2026-05-15_08-11-08.mp4 → NAS ✓ 62K
rsync soundcore AeroClip (input)_2026-05-15_08-11-38.mp4 → NAS ✓ 23K
rsync soundcore AeroClip (input)_2026-05-15_08-12-08.mp4 → NAS ✓ 26K
rsync soundcore AeroClip (input)_2026-05-15_08-12-38.mp4 → NAS ✓ 13K
rsync soundcore AeroClip (input)_2026-05-15_08-13-08.mp4 → NAS ✓ 16K
rsync soundcore AeroClip (input)_2026-05-15_08-13-38.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_08-14-08.mp4 → NAS ✓ 16K
rsync soundcore AeroClip (input)_2026-05-15_08-14-38.mp4 → NAS ✓ 20K
rsync soundcore AeroClip (input)_2026-05-15_08-15-31.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_08-16-03.mp4 → NAS ✓ 21K
rsync MacBook Pro Microphone (input)_2026-05-15_08-17-04.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-17-35.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-18-05.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_08-18-35.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-19-05.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_08-19-35.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-20-05.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_08-20-35.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_08-21-05.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-21-34.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_08-22-04.mp4 → NAS ✓ 213K
rsync MacBook Pro Microphone (input)_2026-05-15_08-22-34.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_08-23-04.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-23-34.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_08-24-04.mp4 → NAS ✓ 234K
rsync MacBook Pro Microphone (input)_2026-05-15_08-24-33.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_08-25-03.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_08-25-33.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-26-03.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-26-33.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-27-03.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-27-32.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_08-28-02.mp4 → NAS ✓ 225K
rsync MacBook Pro Microphone (input)_2026-05-15_08-28-32.mp4 → NAS ✓ 224K
rsync MacBook Pro Microphone (input)_2026-05-15_08-29-02.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_08-29-32.mp4 → NAS ✓ 188K
rsync MacBook Pro Microphone (input)_2026-05-15_08-30-02.mp4 → NAS ✓ 185K
rsync MacBook Pro Microphone (input)_2026-05-15_08-30-32.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_08-31-02.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-31-32.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-32-01.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_08-32-31.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-33-01.mp4 → NAS ✓ 235K
rsync MacBook Pro Microphone (input)_2026-05-15_08-33-31.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_08-34-01.mp4 → NAS ✓ 224K
rsync MacBook Pro Microphone (input)_2026-05-15_08-34-30.mp4 → NAS ✓ 218K
rsync MacBook Pro Microphone (input)_2026-05-15_08-35-00.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_08-35-30.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_08-35-59.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-36-29.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-36-59.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-37-29.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-37-59.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_08-38-28.mp4 → NAS ✓ 214K
rsync MacBook Pro Microphone (input)_2026-05-15_08-38-58.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_08-39-28.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_08-39-58.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-40-27.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_08-40-57.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_08-41-27.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_08-41-56.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-42-26.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-42-56.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-43-26.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_08-43-56.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_08-44-25.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-44-55.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_08-45-24.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_08-45-54.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_08-46-24.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_08-46-54.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_08-47-24.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_08-47-54.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_08-48-24.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_08-48-54.mp4 → NAS ✓ 220K
rsync MacBook Pro Microphone (input)_2026-05-15_08-49-24.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_08-49-54.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_08-50-23.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-50-53.mp4 → NAS ✓ 232K
rsync MacBook Pro Microphone (input)_2026-05-15_08-51-22.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_08-51-52.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-52-22.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_08-52-51.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_08-53-21.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-53-51.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-54-21.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_08-54-50.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_08-55-20.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_08-55-50.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-56-20.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_08-56-49.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_08-57-19.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-57-49.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_08-58-18.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_08-58-48.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-59-18.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_08-59-48.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_09-00-18.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_09-00-47.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_09-01-17.mp4 → NAS ✓ 214K
rsync MacBook Pro Microphone (input)_2026-05-15_09-01-47.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_09-02-16.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_09-02-46.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_09-03-16.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_09-03-46.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_09-04-16.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_09-04-46.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_09-05-15.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-05-45.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-06-15.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_09-06-45.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_09-07-15.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_09-07-45.mp4 → NAS ✓ 236K
rsync MacBook Pro Microphone (input)_2026-05-15_09-08-15.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_09-08-44.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_09-09-14.mp4 → NAS ✓ 217K
rsync MacBook Pro Microphone (input)_2026-05-15_09-09-44.mp4 → NAS ✓ 219K
rsync MacBook Pro Microphone (input)_2026-05-15_09-10-14.mp4 → NAS ✓ 219K
rsync MacBook Pro Microphone (input)_2026-05-15_09-10-43.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_09-11-13.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-11-43.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_09-12-13.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_09-12-43.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-13-13.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_09-13-42.mp4 → NAS ✓ 223K
rsync MacBook Pro Microphone (input)_2026-05-15_09-14-12.mp4 → NAS ✓ 223K
rsync MacBook Pro Microphone (input)_2026-05-15_09-14-42.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_09-15-12.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_09-15-41.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_09-16-11.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-16-41.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_09-17-11.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_09-17-41.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_09-18-11.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_09-18-41.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_09-19-11.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_09-19-41.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_09-20-11.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_09-20-41.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_09-21-10.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_09-21-40.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_09-22-10.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_09-22-40.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-23-10.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_09-23-40.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_09-24-10.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_09-24-39.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_09-25-09.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_09-25-39.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_09-26-09.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_09-26-39.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_09-27-08.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_09-27-38.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_09-28-08.mp4 → NAS ✓ 225K
rsync MacBook Pro Microphone (input)_2026-05-15_09-28-38.mp4 → NAS ✓ 240K
rsync MacBook Pro Microphone (input)_2026-05-15_09-29-08.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_09-29-38.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-30-07.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_09-30-37.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_09-31-07.mp4 → NAS ✓ 235K
rsync MacBook Pro Microphone (input)_2026-05-15_09-31-37.mp4 → NAS ✓ 220K
rsync MacBook Pro Microphone (input)_2026-05-15_09-32-06.mp4 → NAS ✓ 214K
rsync MacBook Pro Microphone (input)_2026-05-15_09-32-36.mp4 → NAS ✓ 220K
rsync MacBook Pro Microphone (input)_2026-05-15_09-33-06.mp4 → NAS ✓ 228K
rsync MacBook Pro Microphone (input)_2026-05-15_09-33-36.mp4 → NAS ✓ 232K
rsync MacBook Pro Microphone (input)_2026-05-15_09-34-05.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_09-34-35.mp4 → NAS ✓ 235K
rsync MacBook Pro Microphone (input)_2026-05-15_09-35-05.mp4 → NAS ✓ 219K
rsync MacBook Pro Microphone (input)_2026-05-15_09-35-35.mp4 → NAS ✓ 227K
rsync MacBook Pro Microphone (input)_2026-05-15_09-36-04.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_09-36-34.mp4 → NAS ✓ 231K
rsync MacBook Pro Microphone (input)_2026-05-15_09-37-04.mp4 → NAS ✓ 230K
rsync MacBook Pro Microphone (input)_2026-05-15_09-37-34.mp4 → NAS ✓ 241K
rsync MacBook Pro Microphone (input)_2026-05-15_09-38-03.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_09-38-33.mp4 → NAS ✓ 226K
rsync MacBook Pro Microphone (input)_2026-05-15_09-39-03.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_09-39-33.mp4 → NAS ✓ 227K
rsync MacBook Pro Microphone (input)_2026-05-15_09-40-02.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_09-40-32.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_09-41-02.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_09-41-32.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_09-42-02.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_09-42-32.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_09-43-02.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_09-43-32.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_09-44-01.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_09-44-31.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_09-45-01.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-45-31.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_09-46-01.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_09-46-31.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_09-47-01.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-47-31.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_09-48-01.mp4 → NAS ✓ 188K
rsync MacBook Pro Microphone (input)_2026-05-15_09-48-31.mp4 → NAS ✓ 185K
rsync MacBook Pro Microphone (input)_2026-05-15_09-49-01.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_09-49-31.mp4 → NAS ✓ 186K
rsync MacBook Pro Microphone (input)_2026-05-15_09-50-01.mp4 → NAS ✓ 186K
rsync MacBook Pro Microphone (input)_2026-05-15_09-50-31.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_09-51-00.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_09-51-30.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-52-00.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_09-58-06.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-58-37.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-59-07.mp4 → NAS ✓ 190K
rsync MacBook Pro Microphone (input)_2026-05-15_09-59-37.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-00-07.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-00-37.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-01-07.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_10-01-37.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_10-02-07.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-02-37.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-03-07.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-03-36.mp4 → NAS ✓ 231K
rsync MacBook Pro Microphone (input)_2026-05-15_10-04-06.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_10-04-36.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-05-06.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-05-36.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_10-06-06.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_10-06-36.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-07-06.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_10-07-36.mp4 → NAS ✓ 218K
rsync MacBook Pro Microphone (input)_2026-05-15_10-08-05.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_10-08-35.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-09-05.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-09-35.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_10-10-05.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-10-34.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_10-11-04.mp4 → NAS ✓ 188K
rsync MacBook Pro Microphone (input)_2026-05-15_10-11-34.mp4 → NAS ✓ 185K
rsync MacBook Pro Microphone (input)_2026-05-15_10-12-04.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_10-12-34.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-13-04.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_10-13-34.mp4 → NAS ✓ 230K
rsync MacBook Pro Microphone (input)_2026-05-15_10-14-03.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-14-33.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_10-15-03.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_10-15-33.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-16-03.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_10-16-33.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-17-03.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-17-33.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_10-18-03.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_10-18-32.mp4 → NAS ✓ 188K
rsync MacBook Pro Microphone (input)_2026-05-15_10-19-02.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_10-19-32.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-20-02.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_10-20-32.mp4 → NAS ✓ 232K
rsync MacBook Pro Microphone (input)_2026-05-15_10-21-02.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-21-31.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_10-22-01.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-22-31.mp4 → NAS ✓ 223K
rsync MacBook Pro Microphone (input)_2026-05-15_10-23-01.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-23-31.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-24-01.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-24-30.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-25-00.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-25-30.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_10-26-00.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_10-26-30.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_10-27-00.mp4 → NAS ✓ 229K
rsync MacBook Pro Microphone (input)_2026-05-15_10-27-30.mp4 → NAS ✓ 235K
rsync MacBook Pro Microphone (input)_2026-05-15_10-28-00.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_10-28-30.mp4 → NAS ✓ 224K
rsync MacBook Pro Microphone (input)_2026-05-15_10-29-00.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_10-29-30.mp4 → NAS ✓ 236K
rsync MacBook Pro Microphone (input)_2026-05-15_10-29-59.mp4 → NAS ✓ 232K
rsync MacBook Pro Microphone (input)_2026-05-15_10-30-29.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_10-30-59.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_10-31-29.mp4 → NAS ✓ 226K
rsync MacBook Pro Microphone (input)_2026-05-15_10-31-59.mp4 → NAS ✓ 240K
rsync MacBook Pro Microphone (input)_2026-05-15_10-32-28.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_10-32-58.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_10-33-28.mp4 → NAS ✓ 243K
rsync MacBook Pro Microphone (input)_2026-05-15_10-33-58.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_10-34-27.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-34-57.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-35-27.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_10-35-57.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_10-36-27.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_10-36-57.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_10-37-27.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-37-57.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_10-38-27.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_10-38-57.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_10-39-26.mp4 → NAS ✓ 228K
rsync MacBook Pro Microphone (input)_2026-05-15_10-39-56.mp4 → NAS ✓ 217K
rsync MacBook Pro Microphone (input)_2026-05-15_10-40-26.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-40-56.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_10-41-26.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-41-56.mp4 → NAS ✓ 229K
rsync MacBook Pro Microphone (input)_2026-05-15_10-42-26.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-42-55.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_10-43-25.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-43-55.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_10-44-25.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_10-44-55.mp4 → NAS ✓ 225K
rsync MacBook Pro Microphone (input)_2026-05-15_10-45-25.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-45-55.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_10-46-24.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_10-46-54.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_10-47-24.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-47-54.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-48-23.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-48-53.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_10-49-23.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_10-49-53.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-50-23.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-50-52.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-51-22.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-51-52.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_10-52-22.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_10-52-51.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_10-53-21.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-53-51.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-54-21.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_10-54-51.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-55-21.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_10-55-50.mp4 → NAS ✓ 235K
...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Mon May 18 09:17:28 on ttys007\n\nPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 10G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ ~/.screenpipe/scripts/screenpipe_sync.sh 2026-05-15\n[2026-05-18 09:19:59] ========================================\n[2026-05-18 09:19:59] Screenpipe sync starting for: 2026-05-15\n[2026-05-18 09:19:59] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.1G)\n[2026-05-18 09:19:59] ERROR: NAS not mounted at /Volumes/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ ~/.screenpipe/scripts/screenpipe_sync.sh 2026-05-15\n[2026-05-18 09:20:16] ========================================\n[2026-05-18 09:20:16] Screenpipe sync starting for: 2026-05-15\n[2026-05-18 09:20:16] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.1G)\n NAS mount: OK /Volumes/screenpipe\n Archive DB: exists (6.1G)\n Data dir: OK (114 files, 146M)\n\n[+00m05s] ▶ Counting source rows for 2026-05-15\n frames: 3231\n elements: 417620\n ui_events: 3376\n ocr_text: 1366\n meetings: 2\n audio_chunks: 593\n audio_transcriptions: 15\n\n[+00m06s] ▶ Initialising tables, indexes, FTS\n creating tables ✓ 0m00s\n creating indexes ✓ 0m00s\n creating FTS tables ✓ 0m00s\n\n[+00m06s] ▶ Syncing vision data for 2026-05-15\n video_chunks ✓ 0m04s\n frames (3231 rows) ✓ 0m52s\n ocr_text (1366 rows) ✓ 0m30s\n ui_events (3376 rows) ✓ 0m01s\n elements (417620 rows) ✓ 0m37s\n meetings (2 rows) ✓ 0m00s\n\n[+02m10s] ▶ Syncing audio data for 2026-05-15\n audio_chunks (593 rows) ✓ 0m01s\n audio_transcriptions (15 rows) ✓ 0m00s\n\n[+02m11s] ▶ Updating FTS indexes\n elements_fts ✓ 1m13s\n frames_fts ✓ 1m51s\n ui_events_fts ✓ 0m02s\n audio_transcriptions_fts ✓ 0m01s\n\n[+05m18s] ▶ Verifying DB\n frames: 3231 / 3231 ✓\n elements: 417620 / 417620 ✓\n ui_events: 3376 / 3376 ✓\n ocr_text: 1366 / 1366 ✓\n meetings: 2 / 2 ✓\n audio_chunks: 593 / 593 ✓\n audio_transcriptions: 15 / 15 ✓\n\n[+06m17s] ▶ Copying data folder for 2026-05-15\n rsync 2026-05-15/ → NAS ✓ 0m10s (114 files, 146M)\n\n[+06m27s] ▶ Copying audio files for 2026-05-15\n rsync System Audio (output)_2026-05-15_06-26-46.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-26-46.mp4 → NAS ✓ 8.0K\n rsync System Audio (output)_2026-05-15_06-27-10.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-27-18.mp4 → NAS ✓ 70K\n rsync System Audio (output)_2026-05-15_06-27-32.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-27-55.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-27-48.mp4 → NAS ✓ 96K\n rsync System Audio (output)_2026-05-15_06-28-17.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-28-18.mp4 → NAS ✓ 79K\n rsync System Audio (output)_2026-05-15_06-28-39.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-28-48.mp4 → NAS ✓ 80K\n rsync System Audio (output)_2026-05-15_06-29-02.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-29-24.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-29-18.mp4 → NAS ✓ 133K\n rsync System Audio (output)_2026-05-15_06-29-47.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-29-48.mp4 → NAS ✓ 90K\n rsync System Audio (output)_2026-05-15_06-30-09.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-30-18.mp4 → NAS ✓ 80K\n rsync System Audio (output)_2026-05-15_06-30-32.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-30-54.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-30-48.mp4 → NAS ✓ 8.0K\n rsync System Audio (output)_2026-05-15_06-31-17.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-31-18.mp4 → NAS ✓ 10K\n rsync System Audio (output)_2026-05-15_06-31-39.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-31-48.mp4 → NAS ✓ 31K\n rsync System Audio (output)_2026-05-15_06-32-01.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-32-24.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-32-18.mp4 → NAS ✓ 74K\n rsync System Audio (output)_2026-05-15_06-32-46.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-32-48.mp4 → NAS ✓ 108K\n rsync System Audio (output)_2026-05-15_06-33-09.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-33-18.mp4 → NAS ✓ 87K\n rsync System Audio (output)_2026-05-15_06-33-31.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-33-54.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-33-48.mp4 → NAS ✓ 13K\n rsync System Audio (output)_2026-05-15_06-34-16.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-34-39.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-34-32.mp4 → NAS ✓ 18K\n rsync System Audio (output)_2026-05-15_06-35-01.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-35-04.mp4 → NAS ✓ 7.0K\n rsync System Audio (output)_2026-05-15_06-35-23.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-35-34.mp4 → NAS ✓ 54K\n rsync System Audio (output)_2026-05-15_06-35-46.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-36-08.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-36-04.mp4 → NAS ✓ 49K\n rsync soundcore AeroClip (input)_2026-05-15_06-36-34.mp4 → NAS ✓ 62K\n rsync soundcore AeroClip (input)_2026-05-15_06-40-43.mp4 → NAS ✓ 74K\n rsync soundcore AeroClip (input)_2026-05-15_06-41-15.mp4 → NAS ✓ 49K\n rsync soundcore AeroClip (input)_2026-05-15_06-41-45.mp4 → NAS ✓ 48K\n rsync soundcore AeroClip (input)_2026-05-15_06-42-04.mp4 → NAS ✓ 6.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-42-04.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-42-36.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-43-06.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-43-36.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-44-06.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-44-36.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-45-06.mp4 → NAS ✓ 5.0K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-45-45.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-46-17.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-46-47.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-47-16.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-47-46.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-48-16.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-48-46.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-49-15.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-49-45.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-50-15.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-50-45.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-51-15.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-51-44.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-52-14.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-52-44.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-53-14.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-53-44.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-54-14.mp4 → NAS ✓ 100K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-54-28.mp4 → NAS ✓ 16K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-54-51.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-55-24.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-55-53.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-56-23.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-56-53.mp4 → NAS ✓ 217K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-57-23.mp4 → NAS ✓ 213K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-57-52.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-58-22.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-58-52.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-59-22.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-59-52.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-00-21.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-00-51.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-01-20.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-01-50.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-02-20.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-02-50.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-03-20.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-03-50.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-04-20.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-04-50.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-05-19.mp4 → NAS ✓ 92K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-05-33.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_07-05-33.mp4 → NAS ✓ 28K\n rsync soundcore AeroClip (input)_2026-05-15_07-06-05.mp4 → NAS ✓ 65K\n rsync soundcore AeroClip (input)_2026-05-15_07-06-35.mp4 → NAS ✓ 44K\n rsync soundcore AeroClip (input)_2026-05-15_07-07-05.mp4 → NAS ✓ 66K\n rsync soundcore AeroClip (input)_2026-05-15_07-07-35.mp4 → NAS ✓ 114K\n rsync soundcore AeroClip (input)_2026-05-15_07-08-05.mp4 → NAS ✓ 61K\n rsync soundcore AeroClip (input)_2026-05-15_07-08-35.mp4 → NAS ✓ 96K\n rsync soundcore AeroClip (input)_2026-05-15_07-09-05.mp4 → NAS ✓ 44K\n rsync soundcore AeroClip (input)_2026-05-15_07-09-35.mp4 → NAS ✓ 38K\n rsync soundcore AeroClip (input)_2026-05-15_07-10-05.mp4 → NAS ✓ 11K\n rsync soundcore AeroClip (input)_2026-05-15_07-10-35.mp4 → NAS ✓ 31K\n rsync soundcore AeroClip (input)_2026-05-15_07-11-05.mp4 → NAS ✓ 55K\n rsync soundcore AeroClip (input)_2026-05-15_07-11-35.mp4 → NAS ✓ 51K\n rsync soundcore AeroClip (input)_2026-05-15_07-12-04.mp4 → NAS ✓ 36K\n rsync soundcore AeroClip (input)_2026-05-15_07-12-34.mp4 → NAS ✓ 24K\n rsync soundcore AeroClip (input)_2026-05-15_07-13-04.mp4 → NAS ✓ 25K\n rsync soundcore AeroClip (input)_2026-05-15_07-13-34.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-14-04.mp4 → NAS ✓ 39K\n rsync soundcore AeroClip (input)_2026-05-15_07-14-34.mp4 → NAS ✓ 31K\n rsync soundcore AeroClip (input)_2026-05-15_07-15-04.mp4 → NAS ✓ 28K\n rsync soundcore AeroClip (input)_2026-05-15_07-15-34.mp4 → NAS ✓ 35K\n rsync soundcore AeroClip (input)_2026-05-15_07-16-04.mp4 → NAS ✓ 44K\n rsync soundcore AeroClip (input)_2026-05-15_07-16-34.mp4 → NAS ✓ 31K\n rsync soundcore AeroClip (input)_2026-05-15_07-17-04.mp4 → NAS ✓ 27K\n rsync soundcore AeroClip (input)_2026-05-15_07-17-34.mp4 → NAS ✓ 22K\n rsync soundcore AeroClip (input)_2026-05-15_07-18-04.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-18-34.mp4 → NAS ✓ 25K\n rsync soundcore AeroClip (input)_2026-05-15_07-19-04.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-19-34.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_07-20-04.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-20-34.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_07-21-04.mp4 → NAS ✓ 15K\n rsync soundcore AeroClip (input)_2026-05-15_07-21-34.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_07-22-04.mp4 → NAS ✓ 8.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-22-34.mp4 → NAS ✓ 8.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-23-04.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-23-34.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_07-24-04.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_07-24-34.mp4 → NAS ✓ 15K\n rsync soundcore AeroClip (input)_2026-05-15_07-25-04.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-25-38.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-26-10.mp4 → NAS ✓ 12K\n rsync soundcore AeroClip (input)_2026-05-15_07-26-40.mp4 → NAS ✓ 11K\n rsync soundcore AeroClip (input)_2026-05-15_07-27-10.mp4 → NAS ✓ 12K\n rsync soundcore AeroClip (input)_2026-05-15_07-27-40.mp4 → NAS ✓ 8.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-28-20.mp4 → NAS ✓ 25K\n rsync soundcore AeroClip (input)_2026-05-15_07-28-52.mp4 → NAS ✓ 12K\n rsync soundcore AeroClip (input)_2026-05-15_07-29-21.mp4 → NAS ✓ 12K\n rsync soundcore AeroClip (input)_2026-05-15_07-29-51.mp4 → NAS ✓ 8.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-30-25.mp4 → NAS ✓ 13K\n rsync soundcore AeroClip (input)_2026-05-15_07-30-57.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_07-31-27.mp4 → NAS ✓ 11K\n rsync soundcore AeroClip (input)_2026-05-15_07-31-57.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-32-27.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-32-57.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-33-38.mp4 → NAS ✓ 22K\n rsync soundcore AeroClip (input)_2026-05-15_07-34-10.mp4 → NAS ✓ 72K\n rsync soundcore AeroClip (input)_2026-05-15_07-34-40.mp4 → NAS ✓ 74K\n rsync soundcore AeroClip (input)_2026-05-15_07-35-10.mp4 → NAS ✓ 63K\n rsync soundcore AeroClip (input)_2026-05-15_07-35-40.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_07-36-10.mp4 → NAS ✓ 21K\n rsync soundcore AeroClip (input)_2026-05-15_07-36-39.mp4 → NAS ✓ 35K\n rsync soundcore AeroClip (input)_2026-05-15_07-37-09.mp4 → NAS ✓ 46K\n rsync soundcore AeroClip (input)_2026-05-15_07-37-39.mp4 → NAS ✓ 40K\n rsync soundcore AeroClip (input)_2026-05-15_07-38-09.mp4 → NAS ✓ 26K\n rsync soundcore AeroClip (input)_2026-05-15_07-38-39.mp4 → NAS ✓ 29K\n rsync soundcore AeroClip (input)_2026-05-15_07-39-09.mp4 → NAS ✓ 49K\n rsync soundcore AeroClip (input)_2026-05-15_07-39-39.mp4 → NAS ✓ 37K\n rsync soundcore AeroClip (input)_2026-05-15_07-40-09.mp4 → NAS ✓ 56K\n rsync soundcore AeroClip (input)_2026-05-15_07-40-39.mp4 → NAS ✓ 39K\n rsync soundcore AeroClip (input)_2026-05-15_07-41-09.mp4 → NAS ✓ 37K\n rsync soundcore AeroClip (input)_2026-05-15_07-41-38.mp4 → NAS ✓ 159K\n rsync soundcore AeroClip (input)_2026-05-15_07-42-08.mp4 → NAS ✓ 69K\n rsync soundcore AeroClip (input)_2026-05-15_07-42-38.mp4 → NAS ✓ 51K\n rsync soundcore AeroClip (input)_2026-05-15_07-43-08.mp4 → NAS ✓ 30K\n rsync soundcore AeroClip (input)_2026-05-15_07-43-38.mp4 → NAS ✓ 33K\n rsync soundcore AeroClip (input)_2026-05-15_07-44-08.mp4 → NAS ✓ 71K\n rsync soundcore AeroClip (input)_2026-05-15_07-44-38.mp4 → NAS ✓ 38K\n rsync soundcore AeroClip (input)_2026-05-15_07-45-08.mp4 → NAS ✓ 21K\n rsync soundcore AeroClip (input)_2026-05-15_07-45-38.mp4 → NAS ✓ 37K\n rsync soundcore AeroClip (input)_2026-05-15_07-46-08.mp4 → NAS ✓ 50K\n rsync soundcore AeroClip (input)_2026-05-15_07-46-38.mp4 → NAS ✓ 26K\n rsync soundcore AeroClip (input)_2026-05-15_07-47-08.mp4 → NAS ✓ 32K\n rsync soundcore AeroClip (input)_2026-05-15_07-47-38.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_07-48-08.mp4 → NAS ✓ 32K\n rsync soundcore AeroClip (input)_2026-05-15_07-48-38.mp4 → NAS ✓ 62K\n rsync soundcore AeroClip (input)_2026-05-15_07-49-08.mp4 → NAS ✓ 110K\n rsync soundcore AeroClip (input)_2026-05-15_07-49-38.mp4 → NAS ✓ 51K\n rsync soundcore AeroClip (input)_2026-05-15_07-50-08.mp4 → NAS ✓ 35K\n rsync soundcore AeroClip (input)_2026-05-15_07-50-38.mp4 → NAS ✓ 81K\n rsync soundcore AeroClip (input)_2026-05-15_07-51-08.mp4 → NAS ✓ 72K\n rsync soundcore AeroClip (input)_2026-05-15_07-51-38.mp4 → NAS ✓ 26K\n rsync soundcore AeroClip (input)_2026-05-15_07-52-08.mp4 → NAS ✓ 22K\n rsync soundcore AeroClip (input)_2026-05-15_07-52-38.mp4 → NAS ✓ 17K\n rsync soundcore AeroClip (input)_2026-05-15_07-53-08.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_07-53-37.mp4 → NAS ✓ 21K\n rsync soundcore AeroClip (input)_2026-05-15_07-54-07.mp4 → NAS ✓ 28K\n rsync soundcore AeroClip (input)_2026-05-15_07-54-37.mp4 → NAS ✓ 19K\n rsync soundcore AeroClip (input)_2026-05-15_07-55-07.mp4 → NAS ✓ 17K\n rsync soundcore AeroClip (input)_2026-05-15_07-55-37.mp4 → NAS ✓ 15K\n rsync soundcore AeroClip (input)_2026-05-15_07-56-07.mp4 → NAS ✓ 16K\n rsync soundcore AeroClip (input)_2026-05-15_07-56-37.mp4 → NAS ✓ 16K\n rsync soundcore AeroClip (input)_2026-05-15_07-57-07.mp4 → NAS ✓ 11K\n rsync soundcore AeroClip (input)_2026-05-15_07-57-37.mp4 → NAS ✓ 8.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-58-07.mp4 → NAS ✓ 15K\n rsync soundcore AeroClip (input)_2026-05-15_07-58-37.mp4 → NAS ✓ 15K\n rsync soundcore AeroClip (input)_2026-05-15_07-59-07.mp4 → NAS ✓ 17K\n rsync soundcore AeroClip (input)_2026-05-15_07-59-37.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-00-26.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-00-58.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-01-47.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-02-43.mp4 → NAS ✓ 18K\n rsync soundcore AeroClip (input)_2026-05-15_08-03-20.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-03-52.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_08-04-22.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-04-52.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-05-37.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-06-09.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-08-20.mp4 → NAS ✓ 13K\n rsync soundcore AeroClip (input)_2026-05-15_08-08-52.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-09-36.mp4 → NAS ✓ 12K\n rsync soundcore AeroClip (input)_2026-05-15_08-10-08.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_08-10-38.mp4 → NAS ✓ 45K\n rsync soundcore AeroClip (input)_2026-05-15_08-11-08.mp4 → NAS ✓ 62K\n rsync soundcore AeroClip (input)_2026-05-15_08-11-38.mp4 → NAS ✓ 23K\n rsync soundcore AeroClip (input)_2026-05-15_08-12-08.mp4 → NAS ✓ 26K\n rsync soundcore AeroClip (input)_2026-05-15_08-12-38.mp4 → NAS ✓ 13K\n rsync soundcore AeroClip (input)_2026-05-15_08-13-08.mp4 → NAS ✓ 16K\n rsync soundcore AeroClip (input)_2026-05-15_08-13-38.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_08-14-08.mp4 → NAS ✓ 16K\n rsync soundcore AeroClip (input)_2026-05-15_08-14-38.mp4 → NAS ✓ 20K\n rsync soundcore AeroClip (input)_2026-05-15_08-15-31.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-16-03.mp4 → NAS ✓ 21K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-17-04.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-17-35.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-18-05.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-18-35.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-19-05.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-19-35.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-20-05.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-20-35.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-21-05.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-21-34.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-22-04.mp4 → NAS ✓ 213K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-22-34.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-23-04.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-23-34.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-24-04.mp4 → NAS ✓ 234K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-24-33.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-25-03.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-25-33.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-26-03.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-26-33.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-27-03.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-27-32.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-28-02.mp4 → NAS ✓ 225K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-28-32.mp4 → NAS ✓ 224K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-29-02.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-29-32.mp4 → NAS ✓ 188K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-30-02.mp4 → NAS ✓ 185K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-30-32.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-31-02.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-31-32.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-32-01.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-32-31.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-33-01.mp4 → NAS ✓ 235K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-33-31.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-34-01.mp4 → NAS ✓ 224K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-34-30.mp4 → NAS ✓ 218K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-35-00.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-35-30.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-35-59.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-36-29.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-36-59.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-37-29.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-37-59.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-38-28.mp4 → NAS ✓ 214K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-38-58.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-39-28.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-39-58.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-40-27.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-40-57.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-41-27.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-41-56.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-42-26.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-42-56.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-43-26.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-43-56.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-44-25.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-44-55.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-45-24.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-45-54.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-46-24.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-46-54.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-47-24.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-47-54.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-48-24.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-48-54.mp4 → NAS ✓ 220K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-49-24.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-49-54.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-50-23.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-50-53.mp4 → NAS ✓ 232K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-51-22.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-51-52.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-52-22.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-52-51.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-53-21.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-53-51.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-54-21.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-54-50.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-55-20.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-55-50.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-56-20.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-56-49.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-57-19.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-57-49.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-58-18.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-58-48.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-59-18.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-59-48.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-00-18.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-00-47.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-01-17.mp4 → NAS ✓ 214K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-01-47.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-02-16.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-02-46.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-03-16.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-03-46.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-04-16.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-04-46.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-05-15.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-05-45.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-06-15.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-06-45.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-07-15.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-07-45.mp4 → NAS ✓ 236K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-08-15.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-08-44.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-09-14.mp4 → NAS ✓ 217K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-09-44.mp4 → NAS ✓ 219K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-10-14.mp4 → NAS ✓ 219K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-10-43.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-11-13.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-11-43.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-12-13.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-12-43.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-13-13.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-13-42.mp4 → NAS ✓ 223K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-14-12.mp4 → NAS ✓ 223K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-14-42.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-15-12.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-15-41.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-16-11.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-16-41.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-17-11.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-17-41.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-18-11.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-18-41.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-19-11.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-19-41.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-20-11.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-20-41.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-21-10.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-21-40.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-22-10.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-22-40.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-23-10.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-23-40.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-24-10.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-24-39.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-25-09.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-25-39.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-26-09.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-26-39.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-27-08.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-27-38.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-28-08.mp4 → NAS ✓ 225K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-28-38.mp4 → NAS ✓ 240K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-29-08.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-29-38.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-30-07.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-30-37.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-31-07.mp4 → NAS ✓ 235K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-31-37.mp4 → NAS ✓ 220K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-32-06.mp4 → NAS ✓ 214K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-32-36.mp4 → NAS ✓ 220K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-33-06.mp4 → NAS ✓ 228K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-33-36.mp4 → NAS ✓ 232K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-34-05.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-34-35.mp4 → NAS ✓ 235K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-35-05.mp4 → NAS ✓ 219K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-35-35.mp4 → NAS ✓ 227K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-36-04.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-36-34.mp4 → NAS ✓ 231K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-37-04.mp4 → NAS ✓ 230K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-37-34.mp4 → NAS ✓ 241K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-38-03.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-38-33.mp4 → NAS ✓ 226K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-39-03.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-39-33.mp4 → NAS ✓ 227K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-40-02.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-40-32.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-41-02.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-41-32.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-42-02.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-42-32.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-43-02.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-43-32.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-44-01.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-44-31.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-45-01.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-45-31.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-46-01.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-46-31.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-47-01.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-47-31.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-48-01.mp4 → NAS ✓ 188K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-48-31.mp4 → NAS ✓ 185K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-49-01.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-49-31.mp4 → NAS ✓ 186K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-50-01.mp4 → NAS ✓ 186K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-50-31.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-51-00.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-51-30.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-52-00.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-58-06.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-58-37.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-59-07.mp4 → NAS ✓ 190K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-59-37.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-00-07.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-00-37.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-01-07.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-01-37.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-02-07.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-02-37.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-03-07.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-03-36.mp4 → NAS ✓ 231K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-04-06.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-04-36.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-05-06.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-05-36.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-06-06.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-06-36.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-07-06.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-07-36.mp4 → NAS ✓ 218K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-08-05.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-08-35.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-09-05.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-09-35.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-10-05.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-10-34.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-11-04.mp4 → NAS ✓ 188K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-11-34.mp4 → NAS ✓ 185K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-12-04.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-12-34.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-13-04.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-13-34.mp4 → NAS ✓ 230K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-14-03.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-14-33.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-15-03.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-15-33.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-16-03.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-16-33.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-17-03.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-17-33.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-18-03.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-18-32.mp4 → NAS ✓ 188K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-19-02.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-19-32.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-20-02.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-20-32.mp4 → NAS ✓ 232K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-21-02.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-21-31.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-22-01.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-22-31.mp4 → NAS ✓ 223K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-23-01.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-23-31.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-24-01.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-24-30.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-25-00.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-25-30.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-26-00.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-26-30.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-27-00.mp4 → NAS ✓ 229K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-27-30.mp4 → NAS ✓ 235K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-28-00.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-28-30.mp4 → NAS ✓ 224K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-29-00.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-29-30.mp4 → NAS ✓ 236K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-29-59.mp4 → NAS ✓ 232K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-30-29.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-30-59.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-31-29.mp4 → NAS ✓ 226K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-31-59.mp4 → NAS ✓ 240K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-32-28.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-32-58.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-33-28.mp4 → NAS ✓ 243K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-33-58.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-34-27.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-34-57.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-35-27.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-35-57.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-36-27.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-36-57.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-37-27.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-37-57.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-38-27.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-38-57.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-39-26.mp4 → NAS ✓ 228K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-39-56.mp4 → NAS ✓ 217K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-40-26.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-40-56.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-41-26.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-41-56.mp4 → NAS ✓ 229K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-42-26.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-42-55.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-43-25.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-43-55.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-44-25.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-44-55.mp4 → NAS ✓ 225K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-45-25.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-45-55.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-46-24.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-46-54.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-47-24.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-47-54.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-48-23.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-48-53.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-49-23.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-49-53.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-50-23.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-50-52.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-51-22.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-51-52.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-52-22.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-52-51.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-53-21.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-53-51.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-54-21.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-54-51.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-55-21.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-55-50.mp4 → NAS ✓ 235K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-56-20.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-56-50.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-57-19.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-57-49.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-58-19.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-58-49.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-59-19.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-59-49.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-00-19.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-00-48.mp4 → NAS ✓ 222K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-01-18.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-01-48.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-02-18.mp4 → NAS ✓ 225K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-02-48.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-03-18.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-03-47.mp4 → NAS ✓ 219K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-04-17.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-04-47.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-05-17.mp4 → NAS ✓ 223K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-05-46.mp4 → NAS ✓ 214K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-06-16.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-06-46.mp4 → NAS ✓ 213K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-07-16.mp4 → NAS ✓ 217K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-07-46.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-08-16.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-08-45.mp4 → NAS ✓ 229K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-09-15.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-09-45.mp4 → NAS ✓ 226K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-10-14.mp4 → NAS ✓ 227K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-10-44.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-11-14.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-11-44.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-12-14.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-12-43.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-13-13.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-13-43.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-14-13.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-14-43.mp4 → NAS ✓ 227K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-15-13.mp4 → NAS ✓ 239K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-15-42.mp4 → NAS ✓ 220K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-16-12.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-16-42.mp4 → NAS ✓ 234K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-17-12.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-17-42.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-18-12.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-18-41.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-19-11.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-19-41.mp4 → NAS ✓ 225K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-20-11.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-20-40.mp4 → NAS ✓ 68K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-20-50.mp4 → NAS ✓ 17K\n rsync soundcore AeroClip (input)_2026-05-15_11-20-51.mp4 → NAS ✓ 21K\n audio files total: 593 file(s), 86M\n\n[+07m22s] ▶ Copying screenpipe logs for 2026-05-15\n rsync logs → NAS ✓ 1 file(s), 200K\n\n[2026-05-18 09:27:38] Archive DB size: 6.6G\n[2026-05-18 09:27:38] Total time: 7m22s\n[2026-05-18 09:27:38] Sync complete for 2026-05-15\n[2026-05-18 09:27:38] ========================================\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ alias sp-start\nsp-start='npx screenpipe@latest record --disable-audio --ignored-windows \"Boosteroid\"'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ npx screenpipe@latest record\ndetected hardware tier: Mid\nwarning: parakeet is not supported on this platform, using whisper-tiny instead\n2026-05-18T09:35:34.045653Z INFO screenpipe_engine::auth_key: api auth: key resolved via secret store\nchecking permissions...\n screen recording: ok\n microphone: ok\n accessibility: ok\n2026-05-18T09:35:34.129353Z INFO screenpipe_screen::monitor::macos_version: Detected macOS version: 14.6\n2026-05-18T09:35:34.705740Z INFO screenpipe_engine::sleep_monitor: Starting macOS sleep/wake monitor\n2026-05-18T09:35:34.707418Z INFO screenpipe_engine::sleep_monitor: Screen lock/unlock observers registered (CFNotificationCenter)\n2026-05-18T09:35:34.707766Z INFO screenpipe_engine::sleep_monitor: Display reconfiguration watcher registered (CGDisplayRegisterReconfigurationCallback)\n2026-05-18T09:35:34.728020Z INFO screenpipe_engine::permission_monitor: permission monitor started screen=true mic=true accessibility=true keychain=true\n2026-05-18T09:35:34.728095Z INFO screenpipe: meeting detector enabled — independent of transcription mode\n2026-05-18T09:35:35.112296Z INFO screenpipe_engine::power::manager: power manager started (poll interval: 10s)\n2026-05-18T09:35:35.112352Z INFO screenpipe: API server listening on 127.0.0.1:3030 (localhost only)\n2026-05-18T09:35:35.112447Z INFO screenpipe: API auth enabled — run `screenpipe auth token` to view your key\n2026-05-18T09:35:35.112323Z INFO screenpipe_engine::snapshot_compaction: snapshot compaction worker started (min_age=600s, poll=300s)\n2026-05-18T09:35:35.112560Z INFO screenpipe_engine::vision_manager::manager: Starting VisionManager\n2026-05-18T09:35:35.115714Z INFO screenpipe_core::pipes: loaded pipe: day-recap\n2026-05-18T09:35:35.115964Z INFO screenpipe_core::pipes: loaded pipe: standup-update\n2026-05-18T09:35:35.116065Z INFO screenpipe_core::pipes: loaded pipe: ai-habits\n2026-05-18T09:35:35.116222Z INFO screenpipe_core::pipes: loaded pipe: time-breakdown\n2026-05-18T09:35:35.116729Z INFO screenpipe_core::pipes: loaded pipe: video-export\n2026-05-18T09:35:35.117010Z INFO screenpipe_core::pipes: loaded pipe: meeting-summary\n2026-05-18T09:35:35.117059Z INFO screenpipe_core::pipes: loaded 6 pipes from \"/Users/lukas/.screenpipe/pipes\"\n\n\n\n _ \n __________________ ___ ____ ____ (_____ ___ \n / ___/ ___/ ___/ _ \\/ _ \\/ __ \\ / __ \\/ / __ \\/ _ \\\n (__ / /__/ / / __/ __/ / / / / /_/ / / /_/ / __/\n/____/\\___/_/ \\___/\\___/_/ /_/ / .___/_/ .___/\\___/ \n /_/ /_/ \n\n\n\npower AI by everything you've seen, said or heard\nopen source | runs locally | developer friendly\n\n\n┌────────────────────────┬────────────────────────────────────┐\n│ setting │ value │\n├────────────────────────┼────────────────────────────────────┤\n│ audio chunk duration │ 30 seconds │\n│ port │ 3030 │\n│ audio disabled │ false │\n│ vision disabled │ false │\n│ pause on DRM content │ false │\n│ audio engine │ Parakeet │\n│ vad engine │ Silero │\n│ data directory │ /Users/lukas/.screenpipe │\n│ debug mode │ false │\n│ telemetry │ true │\n│ use pii removal │ true │\n│ use all monitors │ true │\n│ ignored windows │ [] │\n│ included windows │ [] │\n│ cloud sync │ disabled │\n│ auto-destruct pid │ 0 │\n│ deepgram key │ not set │\n│ api auth │ enabled │\n│ encrypt secrets │ disabled │\n│ retention days │ 14 │\n│ retention mode │ media-only (keep transcripts) │\n├────────────────────────┼────────────────────────────────────┤\n│ languages │ │\n│ │ all languages │\n├────────────────────────┼────────────────────────────────────┤\n│ monitors │ │\n│ │ id: 1 │\n│ │ id: 2 │\n├────────────────────────┼────────────────────────────────────┤\n│ audio devices │ │\n│ │ MacBook Pro Microphone (input) │\n│ │ System Audio (output) │\n└────────────────────────┴────────────────────────────────────┘\nyou are using local processing. all your data stays on your computer.\n\nwarning: telemetry is enabled. only error-level data will be sent.\nto disable, use the --disable-telemetry flag.\n\ncheck latest changes here: https://github.com/screenpipe/screenpipe/releases\n2026-05-18T09:35:35.119648Z INFO screenpipe: starting UI event capture\n2026-05-18T09:35:35.118778Z INFO screenpipe_core::pipes: pipe scheduler started (generation 2)\n2026-05-18T09:35:35.123641Z WARN screenpipe: pi agent install failed: bun not found — install from https://bun.sh\n2026-05-18T09:35:35.129085Z INFO screenpipe_engine::power::manager: initial power profile: Performance (on_ac=true, battery=Some(100))\n2026-05-18T09:35:35.134938Z INFO screenpipe_engine::ui_recorder: Starting UI event capture\n2026-05-18T09:35:35.149688Z INFO screenpipe: text-PII worker skipped at startup — async_pii_redaction=false. OPF model (~2.8 GB) will NOT be downloaded or loaded. Toggle via Settings → Privacy → AI PII removal.\n2026-05-18T09:35:35.149726Z INFO screenpipe: image-PII worker skipped at startup — async_image_pii_redaction=false. rfdetr_v9 model (~108 MB) will NOT be downloaded or loaded. Toggle via Settings → Privacy → AI PII removal.\n2026-05-18T09:35:35.149748Z INFO screenpipe_engine::ui_recorder: UI recording session started: 0404bede-2900-4a09-b527-d7a310880a81\n2026-05-18T09:35:35.149892Z INFO screenpipe_engine::calendar_speaker_id: speaker identification: started (user_name=<not set>)\n2026-05-18T09:35:35.150006Z INFO screenpipe_engine::hot_frame_cache: hot_frame_cache: warming from DB (2026-05-17 06:35:35.150003 UTC to 2026-05-18 06:35:35.150003 UTC)\n2026-05-18T09:35:35.150506Z INFO screenpipe_engine::meeting_detector: meeting v2: detection loop started (base_interval=5s, profiles=12)\n2026-05-18T09:35:35.153345Z INFO screenpipe_engine::hot_frame_cache: hot_frame_cache: warmed with 0 frame entries, coverage from 2026-05-17 06:35:35.150003 UTC\n2026-05-18T09:35:35.158094Z INFO screenpipe_engine::server: Server listening on 127.0.0.1:3030\n2026-05-18T09:35:35.169325Z INFO screenpipe_connect::mdns: mdns: advertising screenpipe on port 3030\n2026-05-18T09:35:35.221171Z INFO screenpipe_engine::vision_manager::manager: Starting vision recording for monitor 1 (1440x900)\n2026-05-18T09:35:35.221224Z INFO screenpipe_engine::vision_manager::manager: Starting event-driven capture for monitor 1 (device: monitor_1)\n2026-05-18T09:35:35.221261Z INFO screenpipe_engine::event_driven_capture: event-driven capture started for monitor 1 (device: monitor_1)\n2026-05-18T09:35:35.257517Z INFO screenpipe_engine::vision_manager::manager: Starting vision recording for monitor 2 (3008x1253)\n2026-05-18T09:35:35.257543Z INFO screenpipe_engine::vision_manager::manager: Starting event-driven capture for monitor 2 (device: monitor_2)\n2026-05-18T09:35:35.257553Z INFO screenpipe_engine::vision_manager::manager: VisionManager started with 2/2 monitor(s)\n2026-05-18T09:35:35.257560Z INFO screenpipe_engine::vision_manager::monitor_watcher: Starting monitor watcher (event-driven via CGDisplayRegisterReconfigurationCallback, 60s backstop poll)\n2026-05-18T09:35:35.257584Z INFO screenpipe_engine::event_driven_capture: event-driven capture started for monitor 2 (device: monitor_2)\n2026-05-18T09:35:35.862836Z INFO sck_rs::stream_manager: persistent SCK stream started for display 1 (1440x900, 2fps, 0 excluded)\n2026-05-18T09:35:35.925168Z INFO sck_rs::stream_manager: persistent SCK stream started for display 2 (3008x1253, 2fps, 0 excluded)","depth":4,"on_screen":true,"value":"Last login: Mon May 18 09:17:28 on ttys007\n\nPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 10G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ ~/.screenpipe/scripts/screenpipe_sync.sh 2026-05-15\n[2026-05-18 09:19:59] ========================================\n[2026-05-18 09:19:59] Screenpipe sync starting for: 2026-05-15\n[2026-05-18 09:19:59] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.1G)\n[2026-05-18 09:19:59] ERROR: NAS not mounted at /Volumes/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ ~/.screenpipe/scripts/screenpipe_sync.sh 2026-05-15\n[2026-05-18 09:20:16] ========================================\n[2026-05-18 09:20:16] Screenpipe sync starting for: 2026-05-15\n[2026-05-18 09:20:16] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.1G)\n NAS mount: OK /Volumes/screenpipe\n Archive DB: exists (6.1G)\n Data dir: OK (114 files, 146M)\n\n[+00m05s] ▶ Counting source rows for 2026-05-15\n frames: 3231\n elements: 417620\n ui_events: 3376\n ocr_text: 1366\n meetings: 2\n audio_chunks: 593\n audio_transcriptions: 15\n\n[+00m06s] ▶ Initialising tables, indexes, FTS\n creating tables ✓ 0m00s\n creating indexes ✓ 0m00s\n creating FTS tables ✓ 0m00s\n\n[+00m06s] ▶ Syncing vision data for 2026-05-15\n video_chunks ✓ 0m04s\n frames (3231 rows) ✓ 0m52s\n ocr_text (1366 rows) ✓ 0m30s\n ui_events (3376 rows) ✓ 0m01s\n elements (417620 rows) ✓ 0m37s\n meetings (2 rows) ✓ 0m00s\n\n[+02m10s] ▶ Syncing audio data for 2026-05-15\n audio_chunks (593 rows) ✓ 0m01s\n audio_transcriptions (15 rows) ✓ 0m00s\n\n[+02m11s] ▶ Updating FTS indexes\n elements_fts ✓ 1m13s\n frames_fts ✓ 1m51s\n ui_events_fts ✓ 0m02s\n audio_transcriptions_fts ✓ 0m01s\n\n[+05m18s] ▶ Verifying DB\n frames: 3231 / 3231 ✓\n elements: 417620 / 417620 ✓\n ui_events: 3376 / 3376 ✓\n ocr_text: 1366 / 1366 ✓\n meetings: 2 / 2 ✓\n audio_chunks: 593 / 593 ✓\n audio_transcriptions: 15 / 15 ✓\n\n[+06m17s] ▶ Copying data folder for 2026-05-15\n rsync 2026-05-15/ → NAS ✓ 0m10s (114 files, 146M)\n\n[+06m27s] ▶ Copying audio files for 2026-05-15\n rsync System Audio (output)_2026-05-15_06-26-46.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-26-46.mp4 → NAS ✓ 8.0K\n rsync System Audio (output)_2026-05-15_06-27-10.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-27-18.mp4 → NAS ✓ 70K\n rsync System Audio (output)_2026-05-15_06-27-32.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-27-55.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-27-48.mp4 → NAS ✓ 96K\n rsync System Audio (output)_2026-05-15_06-28-17.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-28-18.mp4 → NAS ✓ 79K\n rsync System Audio (output)_2026-05-15_06-28-39.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-28-48.mp4 → NAS ✓ 80K\n rsync System Audio (output)_2026-05-15_06-29-02.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-29-24.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-29-18.mp4 → NAS ✓ 133K\n rsync System Audio (output)_2026-05-15_06-29-47.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-29-48.mp4 → NAS ✓ 90K\n rsync System Audio (output)_2026-05-15_06-30-09.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-30-18.mp4 → NAS ✓ 80K\n rsync System Audio (output)_2026-05-15_06-30-32.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-30-54.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-30-48.mp4 → NAS ✓ 8.0K\n rsync System Audio (output)_2026-05-15_06-31-17.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-31-18.mp4 → NAS ✓ 10K\n rsync System Audio (output)_2026-05-15_06-31-39.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-31-48.mp4 → NAS ✓ 31K\n rsync System Audio (output)_2026-05-15_06-32-01.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-32-24.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-32-18.mp4 → NAS ✓ 74K\n rsync System Audio (output)_2026-05-15_06-32-46.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-32-48.mp4 → NAS ✓ 108K\n rsync System Audio (output)_2026-05-15_06-33-09.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-33-18.mp4 → NAS ✓ 87K\n rsync System Audio (output)_2026-05-15_06-33-31.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-33-54.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-33-48.mp4 → NAS ✓ 13K\n rsync System Audio (output)_2026-05-15_06-34-16.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-34-39.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-34-32.mp4 → NAS ✓ 18K\n rsync System Audio (output)_2026-05-15_06-35-01.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-35-04.mp4 → NAS ✓ 7.0K\n rsync System Audio (output)_2026-05-15_06-35-23.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-35-34.mp4 → NAS ✓ 54K\n rsync System Audio (output)_2026-05-15_06-35-46.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-36-08.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-36-04.mp4 → NAS ✓ 49K\n rsync soundcore AeroClip (input)_2026-05-15_06-36-34.mp4 → NAS ✓ 62K\n rsync soundcore AeroClip (input)_2026-05-15_06-40-43.mp4 → NAS ✓ 74K\n rsync soundcore AeroClip (input)_2026-05-15_06-41-15.mp4 → NAS ✓ 49K\n rsync soundcore AeroClip (input)_2026-05-15_06-41-45.mp4 → NAS ✓ 48K\n rsync soundcore AeroClip (input)_2026-05-15_06-42-04.mp4 → NAS ✓ 6.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-42-04.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-42-36.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-43-06.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-43-36.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-44-06.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-44-36.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-45-06.mp4 → NAS ✓ 5.0K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-45-45.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-46-17.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-46-47.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-47-16.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-47-46.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-48-16.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-48-46.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-49-15.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-49-45.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-50-15.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-50-45.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-51-15.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-51-44.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-52-14.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-52-44.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-53-14.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-53-44.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-54-14.mp4 → NAS ✓ 100K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-54-28.mp4 → NAS ✓ 16K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-54-51.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-55-24.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-55-53.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-56-23.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-56-53.mp4 → NAS ✓ 217K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-57-23.mp4 → NAS ✓ 213K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-57-52.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-58-22.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-58-52.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-59-22.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-59-52.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-00-21.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-00-51.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-01-20.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-01-50.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-02-20.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-02-50.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-03-20.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-03-50.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-04-20.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-04-50.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-05-19.mp4 → NAS ✓ 92K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-05-33.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_07-05-33.mp4 → NAS ✓ 28K\n rsync soundcore AeroClip (input)_2026-05-15_07-06-05.mp4 → NAS ✓ 65K\n rsync soundcore AeroClip (input)_2026-05-15_07-06-35.mp4 → NAS ✓ 44K\n rsync soundcore AeroClip (input)_2026-05-15_07-07-05.mp4 → NAS ✓ 66K\n rsync soundcore AeroClip (input)_2026-05-15_07-07-35.mp4 → NAS ✓ 114K\n rsync soundcore AeroClip (input)_2026-05-15_07-08-05.mp4 → NAS ✓ 61K\n rsync soundcore AeroClip (input)_2026-05-15_07-08-35.mp4 → NAS ✓ 96K\n rsync soundcore AeroClip (input)_2026-05-15_07-09-05.mp4 → NAS ✓ 44K\n rsync soundcore AeroClip (input)_2026-05-15_07-09-35.mp4 → NAS ✓ 38K\n rsync soundcore AeroClip (input)_2026-05-15_07-10-05.mp4 → NAS ✓ 11K\n rsync soundcore AeroClip (input)_2026-05-15_07-10-35.mp4 → NAS ✓ 31K\n rsync soundcore AeroClip (input)_2026-05-15_07-11-05.mp4 → NAS ✓ 55K\n rsync soundcore AeroClip (input)_2026-05-15_07-11-35.mp4 → NAS ✓ 51K\n rsync soundcore AeroClip (input)_2026-05-15_07-12-04.mp4 → NAS ✓ 36K\n rsync soundcore AeroClip (input)_2026-05-15_07-12-34.mp4 → NAS ✓ 24K\n rsync soundcore AeroClip (input)_2026-05-15_07-13-04.mp4 → NAS ✓ 25K\n rsync soundcore AeroClip (input)_2026-05-15_07-13-34.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-14-04.mp4 → NAS ✓ 39K\n rsync soundcore AeroClip (input)_2026-05-15_07-14-34.mp4 → NAS ✓ 31K\n rsync soundcore AeroClip (input)_2026-05-15_07-15-04.mp4 → NAS ✓ 28K\n rsync soundcore AeroClip (input)_2026-05-15_07-15-34.mp4 → NAS ✓ 35K\n rsync soundcore AeroClip (input)_2026-05-15_07-16-04.mp4 → NAS ✓ 44K\n rsync soundcore AeroClip (input)_2026-05-15_07-16-34.mp4 → NAS ✓ 31K\n rsync soundcore AeroClip (input)_2026-05-15_07-17-04.mp4 → NAS ✓ 27K\n rsync soundcore AeroClip (input)_2026-05-15_07-17-34.mp4 → NAS ✓ 22K\n rsync soundcore AeroClip (input)_2026-05-15_07-18-04.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-18-34.mp4 → NAS ✓ 25K\n rsync soundcore AeroClip (input)_2026-05-15_07-19-04.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-19-34.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_07-20-04.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-20-34.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_07-21-04.mp4 → NAS ✓ 15K\n rsync soundcore AeroClip (input)_2026-05-15_07-21-34.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_07-22-04.mp4 → NAS ✓ 8.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-22-34.mp4 → NAS ✓ 8.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-23-04.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-23-34.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_07-24-04.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_07-24-34.mp4 → NAS ✓ 15K\n rsync soundcore AeroClip (input)_2026-05-15_07-25-04.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-25-38.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-26-10.mp4 → NAS ✓ 12K\n rsync soundcore AeroClip (input)_2026-05-15_07-26-40.mp4 → NAS ✓ 11K\n rsync soundcore AeroClip (input)_2026-05-15_07-27-10.mp4 → NAS ✓ 12K\n rsync soundcore AeroClip (input)_2026-05-15_07-27-40.mp4 → NAS ✓ 8.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-28-20.mp4 → NAS ✓ 25K\n rsync soundcore AeroClip (input)_2026-05-15_07-28-52.mp4 → NAS ✓ 12K\n rsync soundcore AeroClip (input)_2026-05-15_07-29-21.mp4 → NAS ✓ 12K\n rsync soundcore AeroClip (input)_2026-05-15_07-29-51.mp4 → NAS ✓ 8.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-30-25.mp4 → NAS ✓ 13K\n rsync soundcore AeroClip (input)_2026-05-15_07-30-57.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_07-31-27.mp4 → NAS ✓ 11K\n rsync soundcore AeroClip (input)_2026-05-15_07-31-57.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-32-27.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-32-57.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-33-38.mp4 → NAS ✓ 22K\n rsync soundcore AeroClip (input)_2026-05-15_07-34-10.mp4 → NAS ✓ 72K\n rsync soundcore AeroClip (input)_2026-05-15_07-34-40.mp4 → NAS ✓ 74K\n rsync soundcore AeroClip (input)_2026-05-15_07-35-10.mp4 → NAS ✓ 63K\n rsync soundcore AeroClip (input)_2026-05-15_07-35-40.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_07-36-10.mp4 → NAS ✓ 21K\n rsync soundcore AeroClip (input)_2026-05-15_07-36-39.mp4 → NAS ✓ 35K\n rsync soundcore AeroClip (input)_2026-05-15_07-37-09.mp4 → NAS ✓ 46K\n rsync soundcore AeroClip (input)_2026-05-15_07-37-39.mp4 → NAS ✓ 40K\n rsync soundcore AeroClip (input)_2026-05-15_07-38-09.mp4 → NAS ✓ 26K\n rsync soundcore AeroClip (input)_2026-05-15_07-38-39.mp4 → NAS ✓ 29K\n rsync soundcore AeroClip (input)_2026-05-15_07-39-09.mp4 → NAS ✓ 49K\n rsync soundcore AeroClip (input)_2026-05-15_07-39-39.mp4 → NAS ✓ 37K\n rsync soundcore AeroClip (input)_2026-05-15_07-40-09.mp4 → NAS ✓ 56K\n rsync soundcore AeroClip (input)_2026-05-15_07-40-39.mp4 → NAS ✓ 39K\n rsync soundcore AeroClip (input)_2026-05-15_07-41-09.mp4 → NAS ✓ 37K\n rsync soundcore AeroClip (input)_2026-05-15_07-41-38.mp4 → NAS ✓ 159K\n rsync soundcore AeroClip (input)_2026-05-15_07-42-08.mp4 → NAS ✓ 69K\n rsync soundcore AeroClip (input)_2026-05-15_07-42-38.mp4 → NAS ✓ 51K\n rsync soundcore AeroClip (input)_2026-05-15_07-43-08.mp4 → NAS ✓ 30K\n rsync soundcore AeroClip (input)_2026-05-15_07-43-38.mp4 → NAS ✓ 33K\n rsync soundcore AeroClip (input)_2026-05-15_07-44-08.mp4 → NAS ✓ 71K\n rsync soundcore AeroClip (input)_2026-05-15_07-44-38.mp4 → NAS ✓ 38K\n rsync soundcore AeroClip (input)_2026-05-15_07-45-08.mp4 → NAS ✓ 21K\n rsync soundcore AeroClip (input)_2026-05-15_07-45-38.mp4 → NAS ✓ 37K\n rsync soundcore AeroClip (input)_2026-05-15_07-46-08.mp4 → NAS ✓ 50K\n rsync soundcore AeroClip (input)_2026-05-15_07-46-38.mp4 → NAS ✓ 26K\n rsync soundcore AeroClip (input)_2026-05-15_07-47-08.mp4 → NAS ✓ 32K\n rsync soundcore AeroClip (input)_2026-05-15_07-47-38.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_07-48-08.mp4 → NAS ✓ 32K\n rsync soundcore AeroClip (input)_2026-05-15_07-48-38.mp4 → NAS ✓ 62K\n rsync soundcore AeroClip (input)_2026-05-15_07-49-08.mp4 → NAS ✓ 110K\n rsync soundcore AeroClip (input)_2026-05-15_07-49-38.mp4 → NAS ✓ 51K\n rsync soundcore AeroClip (input)_2026-05-15_07-50-08.mp4 → NAS ✓ 35K\n rsync soundcore AeroClip (input)_2026-05-15_07-50-38.mp4 → NAS ✓ 81K\n rsync soundcore AeroClip (input)_2026-05-15_07-51-08.mp4 → NAS ✓ 72K\n rsync soundcore AeroClip (input)_2026-05-15_07-51-38.mp4 → NAS ✓ 26K\n rsync soundcore AeroClip (input)_2026-05-15_07-52-08.mp4 → NAS ✓ 22K\n rsync soundcore AeroClip (input)_2026-05-15_07-52-38.mp4 → NAS ✓ 17K\n rsync soundcore AeroClip (input)_2026-05-15_07-53-08.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_07-53-37.mp4 → NAS ✓ 21K\n rsync soundcore AeroClip (input)_2026-05-15_07-54-07.mp4 → NAS ✓ 28K\n rsync soundcore AeroClip (input)_2026-05-15_07-54-37.mp4 → NAS ✓ 19K\n rsync soundcore AeroClip (input)_2026-05-15_07-55-07.mp4 → NAS ✓ 17K\n rsync soundcore AeroClip (input)_2026-05-15_07-55-37.mp4 → NAS ✓ 15K\n rsync soundcore AeroClip (input)_2026-05-15_07-56-07.mp4 → NAS ✓ 16K\n rsync soundcore AeroClip (input)_2026-05-15_07-56-37.mp4 → NAS ✓ 16K\n rsync soundcore AeroClip (input)_2026-05-15_07-57-07.mp4 → NAS ✓ 11K\n rsync soundcore AeroClip (input)_2026-05-15_07-57-37.mp4 → NAS ✓ 8.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-58-07.mp4 → NAS ✓ 15K\n rsync soundcore AeroClip (input)_2026-05-15_07-58-37.mp4 → NAS ✓ 15K\n rsync soundcore AeroClip (input)_2026-05-15_07-59-07.mp4 → NAS ✓ 17K\n rsync soundcore AeroClip (input)_2026-05-15_07-59-37.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-00-26.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-00-58.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-01-47.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-02-43.mp4 → NAS ✓ 18K\n rsync soundcore AeroClip (input)_2026-05-15_08-03-20.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-03-52.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_08-04-22.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-04-52.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-05-37.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-06-09.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-08-20.mp4 → NAS ✓ 13K\n rsync soundcore AeroClip (input)_2026-05-15_08-08-52.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-09-36.mp4 → NAS ✓ 12K\n rsync soundcore AeroClip (input)_2026-05-15_08-10-08.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_08-10-38.mp4 → NAS ✓ 45K\n rsync soundcore AeroClip (input)_2026-05-15_08-11-08.mp4 → NAS ✓ 62K\n rsync soundcore AeroClip (input)_2026-05-15_08-11-38.mp4 → NAS ✓ 23K\n rsync soundcore AeroClip (input)_2026-05-15_08-12-08.mp4 → NAS ✓ 26K\n rsync soundcore AeroClip (input)_2026-05-15_08-12-38.mp4 → NAS ✓ 13K\n rsync soundcore AeroClip (input)_2026-05-15_08-13-08.mp4 → NAS ✓ 16K\n rsync soundcore AeroClip (input)_2026-05-15_08-13-38.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_08-14-08.mp4 → NAS ✓ 16K\n rsync soundcore AeroClip (input)_2026-05-15_08-14-38.mp4 → NAS ✓ 20K\n rsync soundcore AeroClip (input)_2026-05-15_08-15-31.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-16-03.mp4 → NAS ✓ 21K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-17-04.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-17-35.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-18-05.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-18-35.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-19-05.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-19-35.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-20-05.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-20-35.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-21-05.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-21-34.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-22-04.mp4 → NAS ✓ 213K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-22-34.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-23-04.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-23-34.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-24-04.mp4 → NAS ✓ 234K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-24-33.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-25-03.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-25-33.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-26-03.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-26-33.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-27-03.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-27-32.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-28-02.mp4 → NAS ✓ 225K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-28-32.mp4 → NAS ✓ 224K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-29-02.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-29-32.mp4 → NAS ✓ 188K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-30-02.mp4 → NAS ✓ 185K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-30-32.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-31-02.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-31-32.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-32-01.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-32-31.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-33-01.mp4 → NAS ✓ 235K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-33-31.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-34-01.mp4 → NAS ✓ 224K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-34-30.mp4 → NAS ✓ 218K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-35-00.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-35-30.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-35-59.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-36-29.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-36-59.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-37-29.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-37-59.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-38-28.mp4 → NAS ✓ 214K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-38-58.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-39-28.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-39-58.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-40-27.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-40-57.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-41-27.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-41-56.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-42-26.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-42-56.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-43-26.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-43-56.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-44-25.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-44-55.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-45-24.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-45-54.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-46-24.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-46-54.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-47-24.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-47-54.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-48-24.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-48-54.mp4 → NAS ✓ 220K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-49-24.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-49-54.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-50-23.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-50-53.mp4 → NAS ✓ 232K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-51-22.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-51-52.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-52-22.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-52-51.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-53-21.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-53-51.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-54-21.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-54-50.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-55-20.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-55-50.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-56-20.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-56-49.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-57-19.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-57-49.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-58-18.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-58-48.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-59-18.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-59-48.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-00-18.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-00-47.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-01-17.mp4 → NAS ✓ 214K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-01-47.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-02-16.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-02-46.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-03-16.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-03-46.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-04-16.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-04-46.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-05-15.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-05-45.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-06-15.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-06-45.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-07-15.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-07-45.mp4 → NAS ✓ 236K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-08-15.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-08-44.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-09-14.mp4 → NAS ✓ 217K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-09-44.mp4 → NAS ✓ 219K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-10-14.mp4 → NAS ✓ 219K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-10-43.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-11-13.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-11-43.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-12-13.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-12-43.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-13-13.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-13-42.mp4 → NAS ✓ 223K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-14-12.mp4 → NAS ✓ 223K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-14-42.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-15-12.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-15-41.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-16-11.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-16-41.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-17-11.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-17-41.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-18-11.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-18-41.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-19-11.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-19-41.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-20-11.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-20-41.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-21-10.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-21-40.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-22-10.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-22-40.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-23-10.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-23-40.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-24-10.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-24-39.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-25-09.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-25-39.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-26-09.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-26-39.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-27-08.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-27-38.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-28-08.mp4 → NAS ✓ 225K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-28-38.mp4 → NAS ✓ 240K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-29-08.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-29-38.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-30-07.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-30-37.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-31-07.mp4 → NAS ✓ 235K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-31-37.mp4 → NAS ✓ 220K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-32-06.mp4 → NAS ✓ 214K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-32-36.mp4 → NAS ✓ 220K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-33-06.mp4 → NAS ✓ 228K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-33-36.mp4 → NAS ✓ 232K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-34-05.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-34-35.mp4 → NAS ✓ 235K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-35-05.mp4 → NAS ✓ 219K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-35-35.mp4 → NAS ✓ 227K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-36-04.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-36-34.mp4 → NAS ✓ 231K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-37-04.mp4 → NAS ✓ 230K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-37-34.mp4 → NAS ✓ 241K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-38-03.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-38-33.mp4 → NAS ✓ 226K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-39-03.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-39-33.mp4 → NAS ✓ 227K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-40-02.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-40-32.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-41-02.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-41-32.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-42-02.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-42-32.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-43-02.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-43-32.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-44-01.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-44-31.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-45-01.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-45-31.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-46-01.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-46-31.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-47-01.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-47-31.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-48-01.mp4 → NAS ✓ 188K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-48-31.mp4 → NAS ✓ 185K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-49-01.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-49-31.mp4 → NAS ✓ 186K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-50-01.mp4 → NAS ✓ 186K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-50-31.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-51-00.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-51-30.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-52-00.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-58-06.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-58-37.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-59-07.mp4 → NAS ✓ 190K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-59-37.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-00-07.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-00-37.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-01-07.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-01-37.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-02-07.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-02-37.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-03-07.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-03-36.mp4 → NAS ✓ 231K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-04-06.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-04-36.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-05-06.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-05-36.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-06-06.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-06-36.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-07-06.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-07-36.mp4 → NAS ✓ 218K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-08-05.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-08-35.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-09-05.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-09-35.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-10-05.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-10-34.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-11-04.mp4 → NAS ✓ 188K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-11-34.mp4 → NAS ✓ 185K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-12-04.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-12-34.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-13-04.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-13-34.mp4 → NAS ✓ 230K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-14-03.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-14-33.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-15-03.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-15-33.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-16-03.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-16-33.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-17-03.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-17-33.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-18-03.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-18-32.mp4 → NAS ✓ 188K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-19-02.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-19-32.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-20-02.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-20-32.mp4 → NAS ✓ 232K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-21-02.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-21-31.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-22-01.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-22-31.mp4 → NAS ✓ 223K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-23-01.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-23-31.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-24-01.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-24-30.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-25-00.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-25-30.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-26-00.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-26-30.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-27-00.mp4 → NAS ✓ 229K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-27-30.mp4 → NAS ✓ 235K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-28-00.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-28-30.mp4 → NAS ✓ 224K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-29-00.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-29-30.mp4 → NAS ✓ 236K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-29-59.mp4 → NAS ✓ 232K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-30-29.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-30-59.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-31-29.mp4 → NAS ✓ 226K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-31-59.mp4 → NAS ✓ 240K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-32-28.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-32-58.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-33-28.mp4 → NAS ✓ 243K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-33-58.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-34-27.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-34-57.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-35-27.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-35-57.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-36-27.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-36-57.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-37-27.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-37-57.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-38-27.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-38-57.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-39-26.mp4 → NAS ✓ 228K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-39-56.mp4 → NAS ✓ 217K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-40-26.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-40-56.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-41-26.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-41-56.mp4 → NAS ✓ 229K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-42-26.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-42-55.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-43-25.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-43-55.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-44-25.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-44-55.mp4 → NAS ✓ 225K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-45-25.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-45-55.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-46-24.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-46-54.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-47-24.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-47-54.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-48-23.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-48-53.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-49-23.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-49-53.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-50-23.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-50-52.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-51-22.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-51-52.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-52-22.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-52-51.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-53-21.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-53-51.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-54-21.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-54-51.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-55-21.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-55-50.mp4 → NAS ✓ 235K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-56-20.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-56-50.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-57-19.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-57-49.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-58-19.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-58-49.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-59-19.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-59-49.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-00-19.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-00-48.mp4 → NAS ✓ 222K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-01-18.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-01-48.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-02-18.mp4 → NAS ✓ 225K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-02-48.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-03-18.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-03-47.mp4 → NAS ✓ 219K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-04-17.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-04-47.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-05-17.mp4 → NAS ✓ 223K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-05-46.mp4 → NAS ✓ 214K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-06-16.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-06-46.mp4 → NAS ✓ 213K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-07-16.mp4 → NAS ✓ 217K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-07-46.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-08-16.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-08-45.mp4 → NAS ✓ 229K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-09-15.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-09-45.mp4 → NAS ✓ 226K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-10-14.mp4 → NAS ✓ 227K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-10-44.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-11-14.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-11-44.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-12-14.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-12-43.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-13-13.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-13-43.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-14-13.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-14-43.mp4 → NAS ✓ 227K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-15-13.mp4 → NAS ✓ 239K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-15-42.mp4 → NAS ✓ 220K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-16-12.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-16-42.mp4 → NAS ✓ 234K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-17-12.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-17-42.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-18-12.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-18-41.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-19-11.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-19-41.mp4 → NAS ✓ 225K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-20-11.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-20-40.mp4 → NAS ✓ 68K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-20-50.mp4 → NAS ✓ 17K\n rsync soundcore AeroClip (input)_2026-05-15_11-20-51.mp4 → NAS ✓ 21K\n audio files total: 593 file(s), 86M\n\n[+07m22s] ▶ Copying screenpipe logs for 2026-05-15\n rsync logs → NAS ✓ 1 file(s), 200K\n\n[2026-05-18 09:27:38] Archive DB size: 6.6G\n[2026-05-18 09:27:38] Total time: 7m22s\n[2026-05-18 09:27:38] Sync complete for 2026-05-15\n[2026-05-18 09:27:38] ========================================\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ alias sp-start\nsp-start='npx screenpipe@latest record --disable-audio --ignored-windows \"Boosteroid\"'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ npx screenpipe@latest record\ndetected hardware tier: Mid\nwarning: parakeet is not supported on this platform, using whisper-tiny instead\n2026-05-18T09:35:34.045653Z INFO screenpipe_engine::auth_key: api auth: key resolved via secret store\nchecking permissions...\n screen recording: ok\n microphone: ok\n accessibility: ok\n2026-05-18T09:35:34.129353Z INFO screenpipe_screen::monitor::macos_version: Detected macOS version: 14.6\n2026-05-18T09:35:34.705740Z INFO screenpipe_engine::sleep_monitor: Starting macOS sleep/wake monitor\n2026-05-18T09:35:34.707418Z INFO screenpipe_engine::sleep_monitor: Screen lock/unlock observers registered (CFNotificationCenter)\n2026-05-18T09:35:34.707766Z INFO screenpipe_engine::sleep_monitor: Display reconfiguration watcher registered (CGDisplayRegisterReconfigurationCallback)\n2026-05-18T09:35:34.728020Z INFO screenpipe_engine::permission_monitor: permission monitor started screen=true mic=true accessibility=true keychain=true\n2026-05-18T09:35:34.728095Z INFO screenpipe: meeting detector enabled — independent of transcription mode\n2026-05-18T09:35:35.112296Z INFO screenpipe_engine::power::manager: power manager started (poll interval: 10s)\n2026-05-18T09:35:35.112352Z INFO screenpipe: API server listening on 127.0.0.1:3030 (localhost only)\n2026-05-18T09:35:35.112447Z INFO screenpipe: API auth enabled — run `screenpipe auth token` to view your key\n2026-05-18T09:35:35.112323Z INFO screenpipe_engine::snapshot_compaction: snapshot compaction worker started (min_age=600s, poll=300s)\n2026-05-18T09:35:35.112560Z INFO screenpipe_engine::vision_manager::manager: Starting VisionManager\n2026-05-18T09:35:35.115714Z INFO screenpipe_core::pipes: loaded pipe: day-recap\n2026-05-18T09:35:35.115964Z INFO screenpipe_core::pipes: loaded pipe: standup-update\n2026-05-18T09:35:35.116065Z INFO screenpipe_core::pipes: loaded pipe: ai-habits\n2026-05-18T09:35:35.116222Z INFO screenpipe_core::pipes: loaded pipe: time-breakdown\n2026-05-18T09:35:35.116729Z INFO screenpipe_core::pipes: loaded pipe: video-export\n2026-05-18T09:35:35.117010Z INFO screenpipe_core::pipes: loaded pipe: meeting-summary\n2026-05-18T09:35:35.117059Z INFO screenpipe_core::pipes: loaded 6 pipes from \"/Users/lukas/.screenpipe/pipes\"\n\n\n\n _ \n __________________ ___ ____ ____ (_____ ___ \n / ___/ ___/ ___/ _ \\/ _ \\/ __ \\ / __ \\/ / __ \\/ _ \\\n (__ / /__/ / / __/ __/ / / / / /_/ / / /_/ / __/\n/____/\\___/_/ \\___/\\___/_/ /_/ / .___/_/ .___/\\___/ \n /_/ /_/ \n\n\n\npower AI by everything you've seen, said or heard\nopen source | runs locally | developer friendly\n\n\n┌────────────────────────┬────────────────────────────────────┐\n│ setting │ value │\n├────────────────────────┼────────────────────────────────────┤\n│ audio chunk duration │ 30 seconds │\n│ port │ 3030 │\n│ audio disabled │ false │\n│ vision disabled │ false │\n│ pause on DRM content │ false │\n│ audio engine │ Parakeet │\n│ vad engine │ Silero │\n│ data directory │ /Users/lukas/.screenpipe │\n│ debug mode │ false │\n│ telemetry │ true │\n│ use pii removal │ true │\n│ use all monitors │ true │\n│ ignored windows │ [] │\n│ included windows │ [] │\n│ cloud sync │ disabled │\n│ auto-destruct pid │ 0 │\n│ deepgram key │ not set │\n│ api auth │ enabled │\n│ encrypt secrets │ disabled │\n│ retention days │ 14 │\n│ retention mode │ media-only (keep transcripts) │\n├────────────────────────┼────────────────────────────────────┤\n│ languages │ │\n│ │ all languages │\n├────────────────────────┼────────────────────────────────────┤\n│ monitors │ │\n│ │ id: 1 │\n│ │ id: 2 │\n├────────────────────────┼────────────────────────────────────┤\n│ audio devices │ │\n│ │ MacBook Pro Microphone (input) │\n│ │ System Audio (output) │\n└────────────────────────┴────────────────────────────────────┘\nyou are using local processing. all your data stays on your computer.\n\nwarning: telemetry is enabled. only error-level data will be sent.\nto disable, use the --disable-telemetry flag.\n\ncheck latest changes here: https://github.com/screenpipe/screenpipe/releases\n2026-05-18T09:35:35.119648Z INFO screenpipe: starting UI event capture\n2026-05-18T09:35:35.118778Z INFO screenpipe_core::pipes: pipe scheduler started (generation 2)\n2026-05-18T09:35:35.123641Z WARN screenpipe: pi agent install failed: bun not found — install from https://bun.sh\n2026-05-18T09:35:35.129085Z INFO screenpipe_engine::power::manager: initial power profile: Performance (on_ac=true, battery=Some(100))\n2026-05-18T09:35:35.134938Z INFO screenpipe_engine::ui_recorder: Starting UI event capture\n2026-05-18T09:35:35.149688Z INFO screenpipe: text-PII worker skipped at startup — async_pii_redaction=false. OPF model (~2.8 GB) will NOT be downloaded or loaded. Toggle via Settings → Privacy → AI PII removal.\n2026-05-18T09:35:35.149726Z INFO screenpipe: image-PII worker skipped at startup — async_image_pii_redaction=false. rfdetr_v9 model (~108 MB) will NOT be downloaded or loaded. Toggle via Settings → Privacy → AI PII removal.\n2026-05-18T09:35:35.149748Z INFO screenpipe_engine::ui_recorder: UI recording session started: 0404bede-2900-4a09-b527-d7a310880a81\n2026-05-18T09:35:35.149892Z INFO screenpipe_engine::calendar_speaker_id: speaker identification: started (user_name=<not set>)\n2026-05-18T09:35:35.150006Z INFO screenpipe_engine::hot_frame_cache: hot_frame_cache: warming from DB (2026-05-17 06:35:35.150003 UTC to 2026-05-18 06:35:35.150003 UTC)\n2026-05-18T09:35:35.150506Z INFO screenpipe_engine::meeting_detector: meeting v2: detection loop started (base_interval=5s, profiles=12)\n2026-05-18T09:35:35.153345Z INFO screenpipe_engine::hot_frame_cache: hot_frame_cache: warmed with 0 frame entries, coverage from 2026-05-17 06:35:35.150003 UTC\n2026-05-18T09:35:35.158094Z INFO screenpipe_engine::server: Server listening on 127.0.0.1:3030\n2026-05-18T09:35:35.169325Z INFO screenpipe_connect::mdns: mdns: advertising screenpipe on port 3030\n2026-05-18T09:35:35.221171Z INFO screenpipe_engine::vision_manager::manager: Starting vision recording for monitor 1 (1440x900)\n2026-05-18T09:35:35.221224Z INFO screenpipe_engine::vision_manager::manager: Starting event-driven capture for monitor 1 (device: monitor_1)\n2026-05-18T09:35:35.221261Z INFO screenpipe_engine::event_driven_capture: event-driven capture started for monitor 1 (device: monitor_1)\n2026-05-18T09:35:35.257517Z INFO screenpipe_engine::vision_manager::manager: Starting vision recording for monitor 2 (3008x1253)\n2026-05-18T09:35:35.257543Z INFO screenpipe_engine::vision_manager::manager: Starting event-driven capture for monitor 2 (device: monitor_2)\n2026-05-18T09:35:35.257553Z INFO screenpipe_engine::vision_manager::manager: VisionManager started with 2/2 monitor(s)\n2026-05-18T09:35:35.257560Z INFO screenpipe_engine::vision_manager::monitor_watcher: Starting monitor watcher (event-driven via CGDisplayRegisterReconfigurationCallback, 60s backstop poll)\n2026-05-18T09:35:35.257584Z INFO screenpipe_engine::event_driven_capture: event-driven capture started for monitor 2 (device: monitor_2)\n2026-05-18T09:35:35.862836Z INFO sck_rs::stream_manager: persistent SCK stream started for display 1 (1440x900, 2fps, 0 excluded)\n2026-05-18T09:35:35.925168Z INFO sck_rs::stream_manager: persistent SCK stream started for display 2 (3008x1253, 2fps, 0 excluded)","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.24652778,"height":0.026666667},"on_screen":true,"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},"on_screen":true,"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.24652778,"top":0.05888889,"width":0.24652778,"height":0.026666667},"on_screen":true,"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.25069445,"top":0.06333333,"width":0.011111111,"height":0.017777778},"on_screen":true,"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.49305555,"top":0.05888889,"width":0.24652778,"height":0.026666667},"on_screen":true,"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.49722221,"top":0.06333333,"width":0.011111111,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.7395833,"top":0.05888889,"width":0.24652778,"height":0.026666667},"on_screen":true,"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.74375,"top":0.06333333,"width":0.011111111,"height":0.017777778},"on_screen":true,"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},"on_screen":true,"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"screenpipe\"","depth":1,"bounds":{"left":0.4722222,"top":0.033333335,"width":0.058333334,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
4208632581409720272
|
8995597482196020563
|
manual
|
accessibility
|
NULL
|
Last login: Mon May 18 09:17:28 on ttys007
Poetry Last login: Mon May 18 09:17:28 on ttys007
Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents
Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
10G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ ~/.screenpipe/scripts/screenpipe_sync.sh 2026-05-15
[2026-05-18 09:19:59] ========================================
[2026-05-18 09:19:59] Screenpipe sync starting for: 2026-05-15
[2026-05-18 09:19:59] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.1G)
[2026-05-18 09:19:59] ERROR: NAS not mounted at /Volumes/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ ~/.screenpipe/scripts/screenpipe_sync.sh 2026-05-15
[2026-05-18 09:20:16] ========================================
[2026-05-18 09:20:16] Screenpipe sync starting for: 2026-05-15
[2026-05-18 09:20:16] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.1G)
NAS mount: OK /Volumes/screenpipe
Archive DB: exists (6.1G)
Data dir: OK (114 files, 146M)
[+00m05s] ▶ Counting source rows for 2026-05-15
frames: 3231
elements: 417620
ui_events: 3376
ocr_text: 1366
meetings: 2
audio_chunks: 593
audio_transcriptions: 15
[+00m06s] ▶ Initialising tables, indexes, FTS
creating tables ✓ 0m00s
creating indexes ✓ 0m00s
creating FTS tables ✓ 0m00s
[+00m06s] ▶ Syncing vision data for 2026-05-15
video_chunks ✓ 0m04s
frames (3231 rows) ✓ 0m52s
ocr_text (1366 rows) ✓ 0m30s
ui_events (3376 rows) ✓ 0m01s
elements (417620 rows) ✓ 0m37s
meetings (2 rows) ✓ 0m00s
[+02m10s] ▶ Syncing audio data for 2026-05-15
audio_chunks (593 rows) ✓ 0m01s
audio_transcriptions (15 rows) ✓ 0m00s
[+02m11s] ▶ Updating FTS indexes
elements_fts ✓ 1m13s
frames_fts ✓ 1m51s
ui_events_fts ✓ 0m02s
audio_transcriptions_fts ✓ 0m01s
[+05m18s] ▶ Verifying DB
frames: 3231 / 3231 ✓
elements: 417620 / 417620 ✓
ui_events: 3376 / 3376 ✓
ocr_text: 1366 / 1366 ✓
meetings: 2 / 2 ✓
audio_chunks: 593 / 593 ✓
audio_transcriptions: 15 / 15 ✓
[+06m17s] ▶ Copying data folder for 2026-05-15
rsync 2026-05-15/ → NAS ✓ 0m10s (114 files, 146M)
[+06m27s] ▶ Copying audio files for 2026-05-15
rsync System Audio (output)_2026-05-15_06-26-46.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-26-46.mp4 → NAS ✓ 8.0K
rsync System Audio (output)_2026-05-15_06-27-10.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-27-18.mp4 → NAS ✓ 70K
rsync System Audio (output)_2026-05-15_06-27-32.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-27-55.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-27-48.mp4 → NAS ✓ 96K
rsync System Audio (output)_2026-05-15_06-28-17.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-28-18.mp4 → NAS ✓ 79K
rsync System Audio (output)_2026-05-15_06-28-39.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-28-48.mp4 → NAS ✓ 80K
rsync System Audio (output)_2026-05-15_06-29-02.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-29-24.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-29-18.mp4 → NAS ✓ 133K
rsync System Audio (output)_2026-05-15_06-29-47.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-29-48.mp4 → NAS ✓ 90K
rsync System Audio (output)_2026-05-15_06-30-09.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-30-18.mp4 → NAS ✓ 80K
rsync System Audio (output)_2026-05-15_06-30-32.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-30-54.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-30-48.mp4 → NAS ✓ 8.0K
rsync System Audio (output)_2026-05-15_06-31-17.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-31-18.mp4 → NAS ✓ 10K
rsync System Audio (output)_2026-05-15_06-31-39.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-31-48.mp4 → NAS ✓ 31K
rsync System Audio (output)_2026-05-15_06-32-01.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-32-24.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-32-18.mp4 → NAS ✓ 74K
rsync System Audio (output)_2026-05-15_06-32-46.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-32-48.mp4 → NAS ✓ 108K
rsync System Audio (output)_2026-05-15_06-33-09.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-33-18.mp4 → NAS ✓ 87K
rsync System Audio (output)_2026-05-15_06-33-31.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-33-54.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-33-48.mp4 → NAS ✓ 13K
rsync System Audio (output)_2026-05-15_06-34-16.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-34-39.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-34-32.mp4 → NAS ✓ 18K
rsync System Audio (output)_2026-05-15_06-35-01.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-35-04.mp4 → NAS ✓ 7.0K
rsync System Audio (output)_2026-05-15_06-35-23.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-35-34.mp4 → NAS ✓ 54K
rsync System Audio (output)_2026-05-15_06-35-46.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-36-08.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-36-04.mp4 → NAS ✓ 49K
rsync soundcore AeroClip (input)_2026-05-15_06-36-34.mp4 → NAS ✓ 62K
rsync soundcore AeroClip (input)_2026-05-15_06-40-43.mp4 → NAS ✓ 74K
rsync soundcore AeroClip (input)_2026-05-15_06-41-15.mp4 → NAS ✓ 49K
rsync soundcore AeroClip (input)_2026-05-15_06-41-45.mp4 → NAS ✓ 48K
rsync soundcore AeroClip (input)_2026-05-15_06-42-04.mp4 → NAS ✓ 6.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-42-04.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-42-36.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-43-06.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-43-36.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-44-06.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-44-36.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-45-06.mp4 → NAS ✓ 5.0K
rsync MacBook Pro Microphone (input)_2026-05-15_06-45-45.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_06-46-17.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_06-46-47.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_06-47-16.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_06-47-46.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_06-48-16.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_06-48-46.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_06-49-15.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_06-49-45.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_06-50-15.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_06-50-45.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_06-51-15.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_06-51-44.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_06-52-14.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_06-52-44.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_06-53-14.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_06-53-44.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_06-54-14.mp4 → NAS ✓ 100K
rsync MacBook Pro Microphone (input)_2026-05-15_06-54-28.mp4 → NAS ✓ 16K
rsync MacBook Pro Microphone (input)_2026-05-15_06-54-51.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_06-55-24.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_06-55-53.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_06-56-23.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_06-56-53.mp4 → NAS ✓ 217K
rsync MacBook Pro Microphone (input)_2026-05-15_06-57-23.mp4 → NAS ✓ 213K
rsync MacBook Pro Microphone (input)_2026-05-15_06-57-52.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_06-58-22.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_06-58-52.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_06-59-22.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_06-59-52.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_07-00-21.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_07-00-51.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_07-01-20.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_07-01-50.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_07-02-20.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_07-02-50.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_07-03-20.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_07-03-50.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_07-04-20.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_07-04-50.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_07-05-19.mp4 → NAS ✓ 92K
rsync MacBook Pro Microphone (input)_2026-05-15_07-05-33.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_07-05-33.mp4 → NAS ✓ 28K
rsync soundcore AeroClip (input)_2026-05-15_07-06-05.mp4 → NAS ✓ 65K
rsync soundcore AeroClip (input)_2026-05-15_07-06-35.mp4 → NAS ✓ 44K
rsync soundcore AeroClip (input)_2026-05-15_07-07-05.mp4 → NAS ✓ 66K
rsync soundcore AeroClip (input)_2026-05-15_07-07-35.mp4 → NAS ✓ 114K
rsync soundcore AeroClip (input)_2026-05-15_07-08-05.mp4 → NAS ✓ 61K
rsync soundcore AeroClip (input)_2026-05-15_07-08-35.mp4 → NAS ✓ 96K
rsync soundcore AeroClip (input)_2026-05-15_07-09-05.mp4 → NAS ✓ 44K
rsync soundcore AeroClip (input)_2026-05-15_07-09-35.mp4 → NAS ✓ 38K
rsync soundcore AeroClip (input)_2026-05-15_07-10-05.mp4 → NAS ✓ 11K
rsync soundcore AeroClip (input)_2026-05-15_07-10-35.mp4 → NAS ✓ 31K
rsync soundcore AeroClip (input)_2026-05-15_07-11-05.mp4 → NAS ✓ 55K
rsync soundcore AeroClip (input)_2026-05-15_07-11-35.mp4 → NAS ✓ 51K
rsync soundcore AeroClip (input)_2026-05-15_07-12-04.mp4 → NAS ✓ 36K
rsync soundcore AeroClip (input)_2026-05-15_07-12-34.mp4 → NAS ✓ 24K
rsync soundcore AeroClip (input)_2026-05-15_07-13-04.mp4 → NAS ✓ 25K
rsync soundcore AeroClip (input)_2026-05-15_07-13-34.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_07-14-04.mp4 → NAS ✓ 39K
rsync soundcore AeroClip (input)_2026-05-15_07-14-34.mp4 → NAS ✓ 31K
rsync soundcore AeroClip (input)_2026-05-15_07-15-04.mp4 → NAS ✓ 28K
rsync soundcore AeroClip (input)_2026-05-15_07-15-34.mp4 → NAS ✓ 35K
rsync soundcore AeroClip (input)_2026-05-15_07-16-04.mp4 → NAS ✓ 44K
rsync soundcore AeroClip (input)_2026-05-15_07-16-34.mp4 → NAS ✓ 31K
rsync soundcore AeroClip (input)_2026-05-15_07-17-04.mp4 → NAS ✓ 27K
rsync soundcore AeroClip (input)_2026-05-15_07-17-34.mp4 → NAS ✓ 22K
rsync soundcore AeroClip (input)_2026-05-15_07-18-04.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_07-18-34.mp4 → NAS ✓ 25K
rsync soundcore AeroClip (input)_2026-05-15_07-19-04.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_07-19-34.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_07-20-04.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_07-20-34.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_07-21-04.mp4 → NAS ✓ 15K
rsync soundcore AeroClip (input)_2026-05-15_07-21-34.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_07-22-04.mp4 → NAS ✓ 8.0K
rsync soundcore AeroClip (input)_2026-05-15_07-22-34.mp4 → NAS ✓ 8.0K
rsync soundcore AeroClip (input)_2026-05-15_07-23-04.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_07-23-34.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_07-24-04.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_07-24-34.mp4 → NAS ✓ 15K
rsync soundcore AeroClip (input)_2026-05-15_07-25-04.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_07-25-38.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_07-26-10.mp4 → NAS ✓ 12K
rsync soundcore AeroClip (input)_2026-05-15_07-26-40.mp4 → NAS ✓ 11K
rsync soundcore AeroClip (input)_2026-05-15_07-27-10.mp4 → NAS ✓ 12K
rsync soundcore AeroClip (input)_2026-05-15_07-27-40.mp4 → NAS ✓ 8.0K
rsync soundcore AeroClip (input)_2026-05-15_07-28-20.mp4 → NAS ✓ 25K
rsync soundcore AeroClip (input)_2026-05-15_07-28-52.mp4 → NAS ✓ 12K
rsync soundcore AeroClip (input)_2026-05-15_07-29-21.mp4 → NAS ✓ 12K
rsync soundcore AeroClip (input)_2026-05-15_07-29-51.mp4 → NAS ✓ 8.0K
rsync soundcore AeroClip (input)_2026-05-15_07-30-25.mp4 → NAS ✓ 13K
rsync soundcore AeroClip (input)_2026-05-15_07-30-57.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_07-31-27.mp4 → NAS ✓ 11K
rsync soundcore AeroClip (input)_2026-05-15_07-31-57.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_07-32-27.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_07-32-57.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_07-33-38.mp4 → NAS ✓ 22K
rsync soundcore AeroClip (input)_2026-05-15_07-34-10.mp4 → NAS ✓ 72K
rsync soundcore AeroClip (input)_2026-05-15_07-34-40.mp4 → NAS ✓ 74K
rsync soundcore AeroClip (input)_2026-05-15_07-35-10.mp4 → NAS ✓ 63K
rsync soundcore AeroClip (input)_2026-05-15_07-35-40.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_07-36-10.mp4 → NAS ✓ 21K
rsync soundcore AeroClip (input)_2026-05-15_07-36-39.mp4 → NAS ✓ 35K
rsync soundcore AeroClip (input)_2026-05-15_07-37-09.mp4 → NAS ✓ 46K
rsync soundcore AeroClip (input)_2026-05-15_07-37-39.mp4 → NAS ✓ 40K
rsync soundcore AeroClip (input)_2026-05-15_07-38-09.mp4 → NAS ✓ 26K
rsync soundcore AeroClip (input)_2026-05-15_07-38-39.mp4 → NAS ✓ 29K
rsync soundcore AeroClip (input)_2026-05-15_07-39-09.mp4 → NAS ✓ 49K
rsync soundcore AeroClip (input)_2026-05-15_07-39-39.mp4 → NAS ✓ 37K
rsync soundcore AeroClip (input)_2026-05-15_07-40-09.mp4 → NAS ✓ 56K
rsync soundcore AeroClip (input)_2026-05-15_07-40-39.mp4 → NAS ✓ 39K
rsync soundcore AeroClip (input)_2026-05-15_07-41-09.mp4 → NAS ✓ 37K
rsync soundcore AeroClip (input)_2026-05-15_07-41-38.mp4 → NAS ✓ 159K
rsync soundcore AeroClip (input)_2026-05-15_07-42-08.mp4 → NAS ✓ 69K
rsync soundcore AeroClip (input)_2026-05-15_07-42-38.mp4 → NAS ✓ 51K
rsync soundcore AeroClip (input)_2026-05-15_07-43-08.mp4 → NAS ✓ 30K
rsync soundcore AeroClip (input)_2026-05-15_07-43-38.mp4 → NAS ✓ 33K
rsync soundcore AeroClip (input)_2026-05-15_07-44-08.mp4 → NAS ✓ 71K
rsync soundcore AeroClip (input)_2026-05-15_07-44-38.mp4 → NAS ✓ 38K
rsync soundcore AeroClip (input)_2026-05-15_07-45-08.mp4 → NAS ✓ 21K
rsync soundcore AeroClip (input)_2026-05-15_07-45-38.mp4 → NAS ✓ 37K
rsync soundcore AeroClip (input)_2026-05-15_07-46-08.mp4 → NAS ✓ 50K
rsync soundcore AeroClip (input)_2026-05-15_07-46-38.mp4 → NAS ✓ 26K
rsync soundcore AeroClip (input)_2026-05-15_07-47-08.mp4 → NAS ✓ 32K
rsync soundcore AeroClip (input)_2026-05-15_07-47-38.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_07-48-08.mp4 → NAS ✓ 32K
rsync soundcore AeroClip (input)_2026-05-15_07-48-38.mp4 → NAS ✓ 62K
rsync soundcore AeroClip (input)_2026-05-15_07-49-08.mp4 → NAS ✓ 110K
rsync soundcore AeroClip (input)_2026-05-15_07-49-38.mp4 → NAS ✓ 51K
rsync soundcore AeroClip (input)_2026-05-15_07-50-08.mp4 → NAS ✓ 35K
rsync soundcore AeroClip (input)_2026-05-15_07-50-38.mp4 → NAS ✓ 81K
rsync soundcore AeroClip (input)_2026-05-15_07-51-08.mp4 → NAS ✓ 72K
rsync soundcore AeroClip (input)_2026-05-15_07-51-38.mp4 → NAS ✓ 26K
rsync soundcore AeroClip (input)_2026-05-15_07-52-08.mp4 → NAS ✓ 22K
rsync soundcore AeroClip (input)_2026-05-15_07-52-38.mp4 → NAS ✓ 17K
rsync soundcore AeroClip (input)_2026-05-15_07-53-08.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_07-53-37.mp4 → NAS ✓ 21K
rsync soundcore AeroClip (input)_2026-05-15_07-54-07.mp4 → NAS ✓ 28K
rsync soundcore AeroClip (input)_2026-05-15_07-54-37.mp4 → NAS ✓ 19K
rsync soundcore AeroClip (input)_2026-05-15_07-55-07.mp4 → NAS ✓ 17K
rsync soundcore AeroClip (input)_2026-05-15_07-55-37.mp4 → NAS ✓ 15K
rsync soundcore AeroClip (input)_2026-05-15_07-56-07.mp4 → NAS ✓ 16K
rsync soundcore AeroClip (input)_2026-05-15_07-56-37.mp4 → NAS ✓ 16K
rsync soundcore AeroClip (input)_2026-05-15_07-57-07.mp4 → NAS ✓ 11K
rsync soundcore AeroClip (input)_2026-05-15_07-57-37.mp4 → NAS ✓ 8.0K
rsync soundcore AeroClip (input)_2026-05-15_07-58-07.mp4 → NAS ✓ 15K
rsync soundcore AeroClip (input)_2026-05-15_07-58-37.mp4 → NAS ✓ 15K
rsync soundcore AeroClip (input)_2026-05-15_07-59-07.mp4 → NAS ✓ 17K
rsync soundcore AeroClip (input)_2026-05-15_07-59-37.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_08-00-26.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_08-00-58.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_08-01-47.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_08-02-43.mp4 → NAS ✓ 18K
rsync soundcore AeroClip (input)_2026-05-15_08-03-20.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_08-03-52.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_08-04-22.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_08-04-52.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_08-05-37.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_08-06-09.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_08-08-20.mp4 → NAS ✓ 13K
rsync soundcore AeroClip (input)_2026-05-15_08-08-52.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_08-09-36.mp4 → NAS ✓ 12K
rsync soundcore AeroClip (input)_2026-05-15_08-10-08.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_08-10-38.mp4 → NAS ✓ 45K
rsync soundcore AeroClip (input)_2026-05-15_08-11-08.mp4 → NAS ✓ 62K
rsync soundcore AeroClip (input)_2026-05-15_08-11-38.mp4 → NAS ✓ 23K
rsync soundcore AeroClip (input)_2026-05-15_08-12-08.mp4 → NAS ✓ 26K
rsync soundcore AeroClip (input)_2026-05-15_08-12-38.mp4 → NAS ✓ 13K
rsync soundcore AeroClip (input)_2026-05-15_08-13-08.mp4 → NAS ✓ 16K
rsync soundcore AeroClip (input)_2026-05-15_08-13-38.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_08-14-08.mp4 → NAS ✓ 16K
rsync soundcore AeroClip (input)_2026-05-15_08-14-38.mp4 → NAS ✓ 20K
rsync soundcore AeroClip (input)_2026-05-15_08-15-31.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_08-16-03.mp4 → NAS ✓ 21K
rsync MacBook Pro Microphone (input)_2026-05-15_08-17-04.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-17-35.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-18-05.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_08-18-35.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-19-05.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_08-19-35.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-20-05.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_08-20-35.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_08-21-05.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-21-34.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_08-22-04.mp4 → NAS ✓ 213K
rsync MacBook Pro Microphone (input)_2026-05-15_08-22-34.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_08-23-04.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-23-34.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_08-24-04.mp4 → NAS ✓ 234K
rsync MacBook Pro Microphone (input)_2026-05-15_08-24-33.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_08-25-03.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_08-25-33.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-26-03.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-26-33.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-27-03.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-27-32.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_08-28-02.mp4 → NAS ✓ 225K
rsync MacBook Pro Microphone (input)_2026-05-15_08-28-32.mp4 → NAS ✓ 224K
rsync MacBook Pro Microphone (input)_2026-05-15_08-29-02.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_08-29-32.mp4 → NAS ✓ 188K
rsync MacBook Pro Microphone (input)_2026-05-15_08-30-02.mp4 → NAS ✓ 185K
rsync MacBook Pro Microphone (input)_2026-05-15_08-30-32.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_08-31-02.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-31-32.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-32-01.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_08-32-31.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-33-01.mp4 → NAS ✓ 235K
rsync MacBook Pro Microphone (input)_2026-05-15_08-33-31.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_08-34-01.mp4 → NAS ✓ 224K
rsync MacBook Pro Microphone (input)_2026-05-15_08-34-30.mp4 → NAS ✓ 218K
rsync MacBook Pro Microphone (input)_2026-05-15_08-35-00.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_08-35-30.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_08-35-59.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-36-29.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-36-59.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-37-29.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-37-59.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_08-38-28.mp4 → NAS ✓ 214K
rsync MacBook Pro Microphone (input)_2026-05-15_08-38-58.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_08-39-28.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_08-39-58.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-40-27.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_08-40-57.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_08-41-27.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_08-41-56.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-42-26.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-42-56.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-43-26.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_08-43-56.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_08-44-25.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-44-55.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_08-45-24.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_08-45-54.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_08-46-24.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_08-46-54.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_08-47-24.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_08-47-54.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_08-48-24.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_08-48-54.mp4 → NAS ✓ 220K
rsync MacBook Pro Microphone (input)_2026-05-15_08-49-24.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_08-49-54.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_08-50-23.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-50-53.mp4 → NAS ✓ 232K
rsync MacBook Pro Microphone (input)_2026-05-15_08-51-22.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_08-51-52.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-52-22.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_08-52-51.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_08-53-21.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-53-51.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-54-21.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_08-54-50.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_08-55-20.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_08-55-50.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-56-20.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_08-56-49.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_08-57-19.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-57-49.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_08-58-18.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_08-58-48.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-59-18.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_08-59-48.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_09-00-18.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_09-00-47.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_09-01-17.mp4 → NAS ✓ 214K
rsync MacBook Pro Microphone (input)_2026-05-15_09-01-47.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_09-02-16.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_09-02-46.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_09-03-16.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_09-03-46.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_09-04-16.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_09-04-46.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_09-05-15.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-05-45.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-06-15.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_09-06-45.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_09-07-15.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_09-07-45.mp4 → NAS ✓ 236K
rsync MacBook Pro Microphone (input)_2026-05-15_09-08-15.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_09-08-44.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_09-09-14.mp4 → NAS ✓ 217K
rsync MacBook Pro Microphone (input)_2026-05-15_09-09-44.mp4 → NAS ✓ 219K
rsync MacBook Pro Microphone (input)_2026-05-15_09-10-14.mp4 → NAS ✓ 219K
rsync MacBook Pro Microphone (input)_2026-05-15_09-10-43.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_09-11-13.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-11-43.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_09-12-13.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_09-12-43.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-13-13.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_09-13-42.mp4 → NAS ✓ 223K
rsync MacBook Pro Microphone (input)_2026-05-15_09-14-12.mp4 → NAS ✓ 223K
rsync MacBook Pro Microphone (input)_2026-05-15_09-14-42.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_09-15-12.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_09-15-41.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_09-16-11.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-16-41.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_09-17-11.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_09-17-41.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_09-18-11.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_09-18-41.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_09-19-11.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_09-19-41.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_09-20-11.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_09-20-41.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_09-21-10.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_09-21-40.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_09-22-10.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_09-22-40.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-23-10.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_09-23-40.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_09-24-10.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_09-24-39.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_09-25-09.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_09-25-39.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_09-26-09.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_09-26-39.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_09-27-08.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_09-27-38.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_09-28-08.mp4 → NAS ✓ 225K
rsync MacBook Pro Microphone (input)_2026-05-15_09-28-38.mp4 → NAS ✓ 240K
rsync MacBook Pro Microphone (input)_2026-05-15_09-29-08.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_09-29-38.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-30-07.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_09-30-37.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_09-31-07.mp4 → NAS ✓ 235K
rsync MacBook Pro Microphone (input)_2026-05-15_09-31-37.mp4 → NAS ✓ 220K
rsync MacBook Pro Microphone (input)_2026-05-15_09-32-06.mp4 → NAS ✓ 214K
rsync MacBook Pro Microphone (input)_2026-05-15_09-32-36.mp4 → NAS ✓ 220K
rsync MacBook Pro Microphone (input)_2026-05-15_09-33-06.mp4 → NAS ✓ 228K
rsync MacBook Pro Microphone (input)_2026-05-15_09-33-36.mp4 → NAS ✓ 232K
rsync MacBook Pro Microphone (input)_2026-05-15_09-34-05.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_09-34-35.mp4 → NAS ✓ 235K
rsync MacBook Pro Microphone (input)_2026-05-15_09-35-05.mp4 → NAS ✓ 219K
rsync MacBook Pro Microphone (input)_2026-05-15_09-35-35.mp4 → NAS ✓ 227K
rsync MacBook Pro Microphone (input)_2026-05-15_09-36-04.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_09-36-34.mp4 → NAS ✓ 231K
rsync MacBook Pro Microphone (input)_2026-05-15_09-37-04.mp4 → NAS ✓ 230K
rsync MacBook Pro Microphone (input)_2026-05-15_09-37-34.mp4 → NAS ✓ 241K
rsync MacBook Pro Microphone (input)_2026-05-15_09-38-03.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_09-38-33.mp4 → NAS ✓ 226K
rsync MacBook Pro Microphone (input)_2026-05-15_09-39-03.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_09-39-33.mp4 → NAS ✓ 227K
rsync MacBook Pro Microphone (input)_2026-05-15_09-40-02.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_09-40-32.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_09-41-02.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_09-41-32.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_09-42-02.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_09-42-32.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_09-43-02.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_09-43-32.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_09-44-01.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_09-44-31.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_09-45-01.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-45-31.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_09-46-01.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_09-46-31.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_09-47-01.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-47-31.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_09-48-01.mp4 → NAS ✓ 188K
rsync MacBook Pro Microphone (input)_2026-05-15_09-48-31.mp4 → NAS ✓ 185K
rsync MacBook Pro Microphone (input)_2026-05-15_09-49-01.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_09-49-31.mp4 → NAS ✓ 186K
rsync MacBook Pro Microphone (input)_2026-05-15_09-50-01.mp4 → NAS ✓ 186K
rsync MacBook Pro Microphone (input)_2026-05-15_09-50-31.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_09-51-00.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_09-51-30.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-52-00.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_09-58-06.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-58-37.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-59-07.mp4 → NAS ✓ 190K
rsync MacBook Pro Microphone (input)_2026-05-15_09-59-37.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-00-07.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-00-37.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-01-07.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_10-01-37.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_10-02-07.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-02-37.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-03-07.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-03-36.mp4 → NAS ✓ 231K
rsync MacBook Pro Microphone (input)_2026-05-15_10-04-06.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_10-04-36.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-05-06.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-05-36.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_10-06-06.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_10-06-36.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-07-06.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_10-07-36.mp4 → NAS ✓ 218K
rsync MacBook Pro Microphone (input)_2026-05-15_10-08-05.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_10-08-35.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-09-05.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-09-35.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_10-10-05.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-10-34.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_10-11-04.mp4 → NAS ✓ 188K
rsync MacBook Pro Microphone (input)_2026-05-15_10-11-34.mp4 → NAS ✓ 185K
rsync MacBook Pro Microphone (input)_2026-05-15_10-12-04.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_10-12-34.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-13-04.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_10-13-34.mp4 → NAS ✓ 230K
rsync MacBook Pro Microphone (input)_2026-05-15_10-14-03.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-14-33.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_10-15-03.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_10-15-33.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-16-03.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_10-16-33.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-17-03.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-17-33.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_10-18-03.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_10-18-32.mp4 → NAS ✓ 188K
rsync MacBook Pro Microphone (input)_2026-05-15_10-19-02.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_10-19-32.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-20-02.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_10-20-32.mp4 → NAS ✓ 232K
rsync MacBook Pro Microphone (input)_2026-05-15_10-21-02.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-21-31.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_10-22-01.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-22-31.mp4 → NAS ✓ 223K
rsync MacBook Pro Microphone (input)_2026-05-15_10-23-01.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-23-31.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-24-01.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-24-30.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-25-00.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-25-30.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_10-26-00.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_10-26-30.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_10-27-00.mp4 → NAS ✓ 229K
rsync MacBook Pro Microphone (input)_2026-05-15_10-27-30.mp4 → NAS ✓ 235K
rsync MacBook Pro Microphone (input)_2026-05-15_10-28-00.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_10-28-30.mp4 → NAS ✓ 224K
rsync MacBook Pro Microphone (input)_2026-05-15_10-29-00.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_10-29-30.mp4 → NAS ✓ 236K
rsync MacBook Pro Microphone (input)_2026-05-15_10-29-59.mp4 → NAS ✓ 232K
rsync MacBook Pro Microphone (input)_2026-05-15_10-30-29.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_10-30-59.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_10-31-29.mp4 → NAS ✓ 226K
rsync MacBook Pro Microphone (input)_2026-05-15_10-31-59.mp4 → NAS ✓ 240K
rsync MacBook Pro Microphone (input)_2026-05-15_10-32-28.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_10-32-58.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_10-33-28.mp4 → NAS ✓ 243K
rsync MacBook Pro Microphone (input)_2026-05-15_10-33-58.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_10-34-27.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-34-57.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-35-27.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_10-35-57.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_10-36-27.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_10-36-57.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_10-37-27.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-37-57.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_10-38-27.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_10-38-57.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_10-39-26.mp4 → NAS ✓ 228K
rsync MacBook Pro Microphone (input)_2026-05-15_10-39-56.mp4 → NAS ✓ 217K
rsync MacBook Pro Microphone (input)_2026-05-15_10-40-26.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-40-56.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_10-41-26.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-41-56.mp4 → NAS ✓ 229K
rsync MacBook Pro Microphone (input)_2026-05-15_10-42-26.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-42-55.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_10-43-25.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-43-55.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_10-44-25.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_10-44-55.mp4 → NAS ✓ 225K
rsync MacBook Pro Microphone (input)_2026-05-15_10-45-25.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-45-55.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_10-46-24.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_10-46-54.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_10-47-24.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-47-54.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-48-23.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-48-53.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_10-49-23.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_10-49-53.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-50-23.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-50-52.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-51-22.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-51-52.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_10-52-22.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_10-52-51.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_10-53-21.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-53-51.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-54-21.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_10-54-51.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-55-21.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_10-55-50.mp4 → NAS ✓ 235K
...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49322
|
1761
|
0
|
2026-05-18T06:35:35.759342+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086135759_m2.jpg...
|
iTerm2
|
screenpipe"
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Mon May 18 09:17:28 on ttys007
Poetry Last login: Mon May 18 09:17:28 on ttys007
Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents
Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
10G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ ~/.screenpipe/scripts/screenpipe_sync.sh 2026-05-15
[2026-05-18 09:19:59] ========================================
[2026-05-18 09:19:59] Screenpipe sync starting for: 2026-05-15
[2026-05-18 09:19:59] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.1G)
[2026-05-18 09:19:59] ERROR: NAS not mounted at /Volumes/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ ~/.screenpipe/scripts/screenpipe_sync.sh 2026-05-15
[2026-05-18 09:20:16] ========================================
[2026-05-18 09:20:16] Screenpipe sync starting for: 2026-05-15
[2026-05-18 09:20:16] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.1G)
NAS mount: OK /Volumes/screenpipe
Archive DB: exists (6.1G)
Data dir: OK (114 files, 146M)
[+00m05s] ▶ Counting source rows for 2026-05-15
frames: 3231
elements: 417620
ui_events: 3376
ocr_text: 1366
meetings: 2
audio_chunks: 593
audio_transcriptions: 15
[+00m06s] ▶ Initialising tables, indexes, FTS
creating tables ✓ 0m00s
creating indexes ✓ 0m00s
creating FTS tables ✓ 0m00s
[+00m06s] ▶ Syncing vision data for 2026-05-15
video_chunks ✓ 0m04s
frames (3231 rows) ✓ 0m52s
ocr_text (1366 rows) ✓ 0m30s
ui_events (3376 rows) ✓ 0m01s
elements (417620 rows) ✓ 0m37s
meetings (2 rows) ✓ 0m00s
[+02m10s] ▶ Syncing audio data for 2026-05-15
audio_chunks (593 rows) ✓ 0m01s
audio_transcriptions (15 rows) ✓ 0m00s
[+02m11s] ▶ Updating FTS indexes
elements_fts ✓ 1m13s
frames_fts ✓ 1m51s
ui_events_fts ✓ 0m02s
audio_transcriptions_fts ✓ 0m01s
[+05m18s] ▶ Verifying DB
frames: 3231 / 3231 ✓
elements: 417620 / 417620 ✓
ui_events: 3376 / 3376 ✓
ocr_text: 1366 / 1366 ✓
meetings: 2 / 2 ✓
audio_chunks: 593 / 593 ✓
audio_transcriptions: 15 / 15 ✓
[+06m17s] ▶ Copying data folder for 2026-05-15
rsync 2026-05-15/ → NAS ✓ 0m10s (114 files, 146M)
[+06m27s] ▶ Copying audio files for 2026-05-15
rsync System Audio (output)_2026-05-15_06-26-46.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-26-46.mp4 → NAS ✓ 8.0K
rsync System Audio (output)_2026-05-15_06-27-10.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-27-18.mp4 → NAS ✓ 70K
rsync System Audio (output)_2026-05-15_06-27-32.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-27-55.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-27-48.mp4 → NAS ✓ 96K
rsync System Audio (output)_2026-05-15_06-28-17.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-28-18.mp4 → NAS ✓ 79K
rsync System Audio (output)_2026-05-15_06-28-39.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-28-48.mp4 → NAS ✓ 80K
rsync System Audio (output)_2026-05-15_06-29-02.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-29-24.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-29-18.mp4 → NAS ✓ 133K
rsync System Audio (output)_2026-05-15_06-29-47.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-29-48.mp4 → NAS ✓ 90K
rsync System Audio (output)_2026-05-15_06-30-09.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-30-18.mp4 → NAS ✓ 80K
rsync System Audio (output)_2026-05-15_06-30-32.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-30-54.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-30-48.mp4 → NAS ✓ 8.0K
rsync System Audio (output)_2026-05-15_06-31-17.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-31-18.mp4 → NAS ✓ 10K
rsync System Audio (output)_2026-05-15_06-31-39.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-31-48.mp4 → NAS ✓ 31K
rsync System Audio (output)_2026-05-15_06-32-01.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-32-24.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-32-18.mp4 → NAS ✓ 74K
rsync System Audio (output)_2026-05-15_06-32-46.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-32-48.mp4 → NAS ✓ 108K
rsync System Audio (output)_2026-05-15_06-33-09.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-33-18.mp4 → NAS ✓ 87K
rsync System Audio (output)_2026-05-15_06-33-31.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-33-54.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-33-48.mp4 → NAS ✓ 13K
rsync System Audio (output)_2026-05-15_06-34-16.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-34-39.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-34-32.mp4 → NAS ✓ 18K
rsync System Audio (output)_2026-05-15_06-35-01.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-35-04.mp4 → NAS ✓ 7.0K
rsync System Audio (output)_2026-05-15_06-35-23.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-35-34.mp4 → NAS ✓ 54K
rsync System Audio (output)_2026-05-15_06-35-46.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-36-08.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-36-04.mp4 → NAS ✓ 49K
rsync soundcore AeroClip (input)_2026-05-15_06-36-34.mp4 → NAS ✓ 62K
rsync soundcore AeroClip (input)_2026-05-15_06-40-43.mp4 → NAS ✓ 74K
rsync soundcore AeroClip (input)_2026-05-15_06-41-15.mp4 → NAS ✓ 49K
rsync soundcore AeroClip (input)_2026-05-15_06-41-45.mp4 → NAS ✓ 48K
rsync soundcore AeroClip (input)_2026-05-15_06-42-04.mp4 → NAS ✓ 6.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-42-04.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-42-36.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-43-06.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-43-36.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-44-06.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-44-36.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-45-06.mp4 → NAS ✓ 5.0K
rsync MacBook Pro Microphone (input)_2026-05-15_06-45-45.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_06-46-17.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_06-46-47.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_06-47-16.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_06-47-46.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_06-48-16.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_06-48-46.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_06-49-15.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_06-49-45.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_06-50-15.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_06-50-45.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_06-51-15.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_06-51-44.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_06-52-14.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_06-52-44.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_06-53-14.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_06-53-44.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_06-54-14.mp4 → NAS ✓ 100K
rsync MacBook Pro Microphone (input)_2026-05-15_06-54-28.mp4 → NAS ✓ 16K
rsync MacBook Pro Microphone (input)_2026-05-15_06-54-51.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_06-55-24.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_06-55-53.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_06-56-23.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_06-56-53.mp4 → NAS ✓ 217K
rsync MacBook Pro Microphone (input)_2026-05-15_06-57-23.mp4 → NAS ✓ 213K
rsync MacBook Pro Microphone (input)_2026-05-15_06-57-52.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_06-58-22.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_06-58-52.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_06-59-22.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_06-59-52.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_07-00-21.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_07-00-51.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_07-01-20.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_07-01-50.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_07-02-20.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_07-02-50.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_07-03-20.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_07-03-50.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_07-04-20.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_07-04-50.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_07-05-19.mp4 → NAS ✓ 92K
rsync MacBook Pro Microphone (input)_2026-05-15_07-05-33.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_07-05-33.mp4 → NAS ✓ 28K
rsync soundcore AeroClip (input)_2026-05-15_07-06-05.mp4 → NAS ✓ 65K
rsync soundcore AeroClip (input)_2026-05-15_07-06-35.mp4 → NAS ✓ 44K
rsync soundcore AeroClip (input)_2026-05-15_07-07-05.mp4 → NAS ✓ 66K
rsync soundcore AeroClip (input)_2026-05-15_07-07-35.mp4 → NAS ✓ 114K
rsync soundcore AeroClip (input)_2026-05-15_07-08-05.mp4 → NAS ✓ 61K
rsync soundcore AeroClip (input)_2026-05-15_07-08-35.mp4 → NAS ✓ 96K
rsync soundcore AeroClip (input)_2026-05-15_07-09-05.mp4 → NAS ✓ 44K
rsync soundcore AeroClip (input)_2026-05-15_07-09-35.mp4 → NAS ✓ 38K
rsync soundcore AeroClip (input)_2026-05-15_07-10-05.mp4 → NAS ✓ 11K
rsync soundcore AeroClip (input)_2026-05-15_07-10-35.mp4 → NAS ✓ 31K
rsync soundcore AeroClip (input)_2026-05-15_07-11-05.mp4 → NAS ✓ 55K
rsync soundcore AeroClip (input)_2026-05-15_07-11-35.mp4 → NAS ✓ 51K
rsync soundcore AeroClip (input)_2026-05-15_07-12-04.mp4 → NAS ✓ 36K
rsync soundcore AeroClip (input)_2026-05-15_07-12-34.mp4 → NAS ✓ 24K
rsync soundcore AeroClip (input)_2026-05-15_07-13-04.mp4 → NAS ✓ 25K
rsync soundcore AeroClip (input)_2026-05-15_07-13-34.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_07-14-04.mp4 → NAS ✓ 39K
rsync soundcore AeroClip (input)_2026-05-15_07-14-34.mp4 → NAS ✓ 31K
rsync soundcore AeroClip (input)_2026-05-15_07-15-04.mp4 → NAS ✓ 28K
rsync soundcore AeroClip (input)_2026-05-15_07-15-34.mp4 → NAS ✓ 35K
rsync soundcore AeroClip (input)_2026-05-15_07-16-04.mp4 → NAS ✓ 44K
rsync soundcore AeroClip (input)_2026-05-15_07-16-34.mp4 → NAS ✓ 31K
rsync soundcore AeroClip (input)_2026-05-15_07-17-04.mp4 → NAS ✓ 27K
rsync soundcore AeroClip (input)_2026-05-15_07-17-34.mp4 → NAS ✓ 22K
rsync soundcore AeroClip (input)_2026-05-15_07-18-04.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_07-18-34.mp4 → NAS ✓ 25K
rsync soundcore AeroClip (input)_2026-05-15_07-19-04.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_07-19-34.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_07-20-04.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_07-20-34.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_07-21-04.mp4 → NAS ✓ 15K
rsync soundcore AeroClip (input)_2026-05-15_07-21-34.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_07-22-04.mp4 → NAS ✓ 8.0K
rsync soundcore AeroClip (input)_2026-05-15_07-22-34.mp4 → NAS ✓ 8.0K
rsync soundcore AeroClip (input)_2026-05-15_07-23-04.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_07-23-34.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_07-24-04.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_07-24-34.mp4 → NAS ✓ 15K
rsync soundcore AeroClip (input)_2026-05-15_07-25-04.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_07-25-38.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_07-26-10.mp4 → NAS ✓ 12K
rsync soundcore AeroClip (input)_2026-05-15_07-26-40.mp4 → NAS ✓ 11K
rsync soundcore AeroClip (input)_2026-05-15_07-27-10.mp4 → NAS ✓ 12K
rsync soundcore AeroClip (input)_2026-05-15_07-27-40.mp4 → NAS ✓ 8.0K
rsync soundcore AeroClip (input)_2026-05-15_07-28-20.mp4 → NAS ✓ 25K
rsync soundcore AeroClip (input)_2026-05-15_07-28-52.mp4 → NAS ✓ 12K
rsync soundcore AeroClip (input)_2026-05-15_07-29-21.mp4 → NAS ✓ 12K
rsync soundcore AeroClip (input)_2026-05-15_07-29-51.mp4 → NAS ✓ 8.0K
rsync soundcore AeroClip (input)_2026-05-15_07-30-25.mp4 → NAS ✓ 13K
rsync soundcore AeroClip (input)_2026-05-15_07-30-57.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_07-31-27.mp4 → NAS ✓ 11K
rsync soundcore AeroClip (input)_2026-05-15_07-31-57.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_07-32-27.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_07-32-57.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_07-33-38.mp4 → NAS ✓ 22K
rsync soundcore AeroClip (input)_2026-05-15_07-34-10.mp4 → NAS ✓ 72K
rsync soundcore AeroClip (input)_2026-05-15_07-34-40.mp4 → NAS ✓ 74K
rsync soundcore AeroClip (input)_2026-05-15_07-35-10.mp4 → NAS ✓ 63K
rsync soundcore AeroClip (input)_2026-05-15_07-35-40.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_07-36-10.mp4 → NAS ✓ 21K
rsync soundcore AeroClip (input)_2026-05-15_07-36-39.mp4 → NAS ✓ 35K
rsync soundcore AeroClip (input)_2026-05-15_07-37-09.mp4 → NAS ✓ 46K
rsync soundcore AeroClip (input)_2026-05-15_07-37-39.mp4 → NAS ✓ 40K
rsync soundcore AeroClip (input)_2026-05-15_07-38-09.mp4 → NAS ✓ 26K
rsync soundcore AeroClip (input)_2026-05-15_07-38-39.mp4 → NAS ✓ 29K
rsync soundcore AeroClip (input)_2026-05-15_07-39-09.mp4 → NAS ✓ 49K
rsync soundcore AeroClip (input)_2026-05-15_07-39-39.mp4 → NAS ✓ 37K
rsync soundcore AeroClip (input)_2026-05-15_07-40-09.mp4 → NAS ✓ 56K
rsync soundcore AeroClip (input)_2026-05-15_07-40-39.mp4 → NAS ✓ 39K
rsync soundcore AeroClip (input)_2026-05-15_07-41-09.mp4 → NAS ✓ 37K
rsync soundcore AeroClip (input)_2026-05-15_07-41-38.mp4 → NAS ✓ 159K
rsync soundcore AeroClip (input)_2026-05-15_07-42-08.mp4 → NAS ✓ 69K
rsync soundcore AeroClip (input)_2026-05-15_07-42-38.mp4 → NAS ✓ 51K
rsync soundcore AeroClip (input)_2026-05-15_07-43-08.mp4 → NAS ✓ 30K
rsync soundcore AeroClip (input)_2026-05-15_07-43-38.mp4 → NAS ✓ 33K
rsync soundcore AeroClip (input)_2026-05-15_07-44-08.mp4 → NAS ✓ 71K
rsync soundcore AeroClip (input)_2026-05-15_07-44-38.mp4 → NAS ✓ 38K
rsync soundcore AeroClip (input)_2026-05-15_07-45-08.mp4 → NAS ✓ 21K
rsync soundcore AeroClip (input)_2026-05-15_07-45-38.mp4 → NAS ✓ 37K
rsync soundcore AeroClip (input)_2026-05-15_07-46-08.mp4 → NAS ✓ 50K
rsync soundcore AeroClip (input)_2026-05-15_07-46-38.mp4 → NAS ✓ 26K
rsync soundcore AeroClip (input)_2026-05-15_07-47-08.mp4 → NAS ✓ 32K
rsync soundcore AeroClip (input)_2026-05-15_07-47-38.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_07-48-08.mp4 → NAS ✓ 32K
rsync soundcore AeroClip (input)_2026-05-15_07-48-38.mp4 → NAS ✓ 62K
rsync soundcore AeroClip (input)_2026-05-15_07-49-08.mp4 → NAS ✓ 110K
rsync soundcore AeroClip (input)_2026-05-15_07-49-38.mp4 → NAS ✓ 51K
rsync soundcore AeroClip (input)_2026-05-15_07-50-08.mp4 → NAS ✓ 35K
rsync soundcore AeroClip (input)_2026-05-15_07-50-38.mp4 → NAS ✓ 81K
rsync soundcore AeroClip (input)_2026-05-15_07-51-08.mp4 → NAS ✓ 72K
rsync soundcore AeroClip (input)_2026-05-15_07-51-38.mp4 → NAS ✓ 26K
rsync soundcore AeroClip (input)_2026-05-15_07-52-08.mp4 → NAS ✓ 22K
rsync soundcore AeroClip (input)_2026-05-15_07-52-38.mp4 → NAS ✓ 17K
rsync soundcore AeroClip (input)_2026-05-15_07-53-08.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_07-53-37.mp4 → NAS ✓ 21K
rsync soundcore AeroClip (input)_2026-05-15_07-54-07.mp4 → NAS ✓ 28K
rsync soundcore AeroClip (input)_2026-05-15_07-54-37.mp4 → NAS ✓ 19K
rsync soundcore AeroClip (input)_2026-05-15_07-55-07.mp4 → NAS ✓ 17K
rsync soundcore AeroClip (input)_2026-05-15_07-55-37.mp4 → NAS ✓ 15K
rsync soundcore AeroClip (input)_2026-05-15_07-56-07.mp4 → NAS ✓ 16K
rsync soundcore AeroClip (input)_2026-05-15_07-56-37.mp4 → NAS ✓ 16K
rsync soundcore AeroClip (input)_2026-05-15_07-57-07.mp4 → NAS ✓ 11K
rsync soundcore AeroClip (input)_2026-05-15_07-57-37.mp4 → NAS ✓ 8.0K
rsync soundcore AeroClip (input)_2026-05-15_07-58-07.mp4 → NAS ✓ 15K
rsync soundcore AeroClip (input)_2026-05-15_07-58-37.mp4 → NAS ✓ 15K
rsync soundcore AeroClip (input)_2026-05-15_07-59-07.mp4 → NAS ✓ 17K
rsync soundcore AeroClip (input)_2026-05-15_07-59-37.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_08-00-26.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_08-00-58.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_08-01-47.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_08-02-43.mp4 → NAS ✓ 18K
rsync soundcore AeroClip (input)_2026-05-15_08-03-20.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_08-03-52.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_08-04-22.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_08-04-52.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_08-05-37.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_08-06-09.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_08-08-20.mp4 → NAS ✓ 13K
rsync soundcore AeroClip (input)_2026-05-15_08-08-52.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_08-09-36.mp4 → NAS ✓ 12K
rsync soundcore AeroClip (input)_2026-05-15_08-10-08.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_08-10-38.mp4 → NAS ✓ 45K
rsync soundcore AeroClip (input)_2026-05-15_08-11-08.mp4 → NAS ✓ 62K
rsync soundcore AeroClip (input)_2026-05-15_08-11-38.mp4 → NAS ✓ 23K
rsync soundcore AeroClip (input)_2026-05-15_08-12-08.mp4 → NAS ✓ 26K
rsync soundcore AeroClip (input)_2026-05-15_08-12-38.mp4 → NAS ✓ 13K
rsync soundcore AeroClip (input)_2026-05-15_08-13-08.mp4 → NAS ✓ 16K
rsync soundcore AeroClip (input)_2026-05-15_08-13-38.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_08-14-08.mp4 → NAS ✓ 16K
rsync soundcore AeroClip (input)_2026-05-15_08-14-38.mp4 → NAS ✓ 20K
rsync soundcore AeroClip (input)_2026-05-15_08-15-31.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_08-16-03.mp4 → NAS ✓ 21K
rsync MacBook Pro Microphone (input)_2026-05-15_08-17-04.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-17-35.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-18-05.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_08-18-35.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-19-05.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_08-19-35.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-20-05.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_08-20-35.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_08-21-05.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-21-34.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_08-22-04.mp4 → NAS ✓ 213K
rsync MacBook Pro Microphone (input)_2026-05-15_08-22-34.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_08-23-04.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-23-34.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_08-24-04.mp4 → NAS ✓ 234K
rsync MacBook Pro Microphone (input)_2026-05-15_08-24-33.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_08-25-03.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_08-25-33.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-26-03.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-26-33.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-27-03.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-27-32.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_08-28-02.mp4 → NAS ✓ 225K
rsync MacBook Pro Microphone (input)_2026-05-15_08-28-32.mp4 → NAS ✓ 224K
rsync MacBook Pro Microphone (input)_2026-05-15_08-29-02.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_08-29-32.mp4 → NAS ✓ 188K
rsync MacBook Pro Microphone (input)_2026-05-15_08-30-02.mp4 → NAS ✓ 185K
rsync MacBook Pro Microphone (input)_2026-05-15_08-30-32.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_08-31-02.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-31-32.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-32-01.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_08-32-31.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-33-01.mp4 → NAS ✓ 235K
rsync MacBook Pro Microphone (input)_2026-05-15_08-33-31.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_08-34-01.mp4 → NAS ✓ 224K
rsync MacBook Pro Microphone (input)_2026-05-15_08-34-30.mp4 → NAS ✓ 218K
rsync MacBook Pro Microphone (input)_2026-05-15_08-35-00.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_08-35-30.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_08-35-59.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-36-29.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-36-59.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-37-29.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-37-59.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_08-38-28.mp4 → NAS ✓ 214K
rsync MacBook Pro Microphone (input)_2026-05-15_08-38-58.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_08-39-28.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_08-39-58.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-40-27.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_08-40-57.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_08-41-27.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_08-41-56.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-42-26.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-42-56.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-43-26.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_08-43-56.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_08-44-25.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-44-55.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_08-45-24.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_08-45-54.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_08-46-24.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_08-46-54.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_08-47-24.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_08-47-54.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_08-48-24.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_08-48-54.mp4 → NAS ✓ 220K
rsync MacBook Pro Microphone (input)_2026-05-15_08-49-24.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_08-49-54.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_08-50-23.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-50-53.mp4 → NAS ✓ 232K
rsync MacBook Pro Microphone (input)_2026-05-15_08-51-22.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_08-51-52.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-52-22.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_08-52-51.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_08-53-21.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-53-51.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-54-21.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_08-54-50.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_08-55-20.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_08-55-50.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-56-20.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_08-56-49.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_08-57-19.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-57-49.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_08-58-18.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_08-58-48.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-59-18.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_08-59-48.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_09-00-18.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_09-00-47.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_09-01-17.mp4 → NAS ✓ 214K
rsync MacBook Pro Microphone (input)_2026-05-15_09-01-47.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_09-02-16.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_09-02-46.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_09-03-16.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_09-03-46.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_09-04-16.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_09-04-46.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_09-05-15.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-05-45.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-06-15.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_09-06-45.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_09-07-15.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_09-07-45.mp4 → NAS ✓ 236K
rsync MacBook Pro Microphone (input)_2026-05-15_09-08-15.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_09-08-44.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_09-09-14.mp4 → NAS ✓ 217K
rsync MacBook Pro Microphone (input)_2026-05-15_09-09-44.mp4 → NAS ✓ 219K
rsync MacBook Pro Microphone (input)_2026-05-15_09-10-14.mp4 → NAS ✓ 219K
rsync MacBook Pro Microphone (input)_2026-05-15_09-10-43.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_09-11-13.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-11-43.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_09-12-13.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_09-12-43.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-13-13.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_09-13-42.mp4 → NAS ✓ 223K
rsync MacBook Pro Microphone (input)_2026-05-15_09-14-12.mp4 → NAS ✓ 223K
rsync MacBook Pro Microphone (input)_2026-05-15_09-14-42.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_09-15-12.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_09-15-41.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_09-16-11.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-16-41.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_09-17-11.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_09-17-41.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_09-18-11.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_09-18-41.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_09-19-11.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_09-19-41.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_09-20-11.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_09-20-41.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_09-21-10.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_09-21-40.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_09-22-10.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_09-22-40.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-23-10.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_09-23-40.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_09-24-10.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_09-24-39.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_09-25-09.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_09-25-39.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_09-26-09.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_09-26-39.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_09-27-08.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_09-27-38.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_09-28-08.mp4 → NAS ✓ 225K
rsync MacBook Pro Microphone (input)_2026-05-15_09-28-38.mp4 → NAS ✓ 240K
rsync MacBook Pro Microphone (input)_2026-05-15_09-29-08.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_09-29-38.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-30-07.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_09-30-37.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_09-31-07.mp4 → NAS ✓ 235K
rsync MacBook Pro Microphone (input)_2026-05-15_09-31-37.mp4 → NAS ✓ 220K
rsync MacBook Pro Microphone (input)_2026-05-15_09-32-06.mp4 → NAS ✓ 214K
rsync MacBook Pro Microphone (input)_2026-05-15_09-32-36.mp4 → NAS ✓ 220K
rsync MacBook Pro Microphone (input)_2026-05-15_09-33-06.mp4 → NAS ✓ 228K
rsync MacBook Pro Microphone (input)_2026-05-15_09-33-36.mp4 → NAS ✓ 232K
rsync MacBook Pro Microphone (input)_2026-05-15_09-34-05.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_09-34-35.mp4 → NAS ✓ 235K
rsync MacBook Pro Microphone (input)_2026-05-15_09-35-05.mp4 → NAS ✓ 219K
rsync MacBook Pro Microphone (input)_2026-05-15_09-35-35.mp4 → NAS ✓ 227K
rsync MacBook Pro Microphone (input)_2026-05-15_09-36-04.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_09-36-34.mp4 → NAS ✓ 231K
rsync MacBook Pro Microphone (input)_2026-05-15_09-37-04.mp4 → NAS ✓ 230K
rsync MacBook Pro Microphone (input)_2026-05-15_09-37-34.mp4 → NAS ✓ 241K
rsync MacBook Pro Microphone (input)_2026-05-15_09-38-03.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_09-38-33.mp4 → NAS ✓ 226K
rsync MacBook Pro Microphone (input)_2026-05-15_09-39-03.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_09-39-33.mp4 → NAS ✓ 227K
rsync MacBook Pro Microphone (input)_2026-05-15_09-40-02.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_09-40-32.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_09-41-02.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_09-41-32.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_09-42-02.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_09-42-32.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_09-43-02.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_09-43-32.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_09-44-01.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_09-44-31.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_09-45-01.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-45-31.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_09-46-01.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_09-46-31.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_09-47-01.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-47-31.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_09-48-01.mp4 → NAS ✓ 188K
rsync MacBook Pro Microphone (input)_2026-05-15_09-48-31.mp4 → NAS ✓ 185K
rsync MacBook Pro Microphone (input)_2026-05-15_09-49-01.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_09-49-31.mp4 → NAS ✓ 186K
rsync MacBook Pro Microphone (input)_2026-05-15_09-50-01.mp4 → NAS ✓ 186K
rsync MacBook Pro Microphone (input)_2026-05-15_09-50-31.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_09-51-00.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_09-51-30.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-52-00.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_09-58-06.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-58-37.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-59-07.mp4 → NAS ✓ 190K
rsync MacBook Pro Microphone (input)_2026-05-15_09-59-37.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-00-07.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-00-37.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-01-07.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_10-01-37.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_10-02-07.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-02-37.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-03-07.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-03-36.mp4 → NAS ✓ 231K
rsync MacBook Pro Microphone (input)_2026-05-15_10-04-06.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_10-04-36.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-05-06.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-05-36.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_10-06-06.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_10-06-36.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-07-06.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_10-07-36.mp4 → NAS ✓ 218K
rsync MacBook Pro Microphone (input)_2026-05-15_10-08-05.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_10-08-35.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-09-05.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-09-35.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_10-10-05.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-10-34.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_10-11-04.mp4 → NAS ✓ 188K
rsync MacBook Pro Microphone (input)_2026-05-15_10-11-34.mp4 → NAS ✓ 185K
rsync MacBook Pro Microphone (input)_2026-05-15_10-12-04.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_10-12-34.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-13-04.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_10-13-34.mp4 → NAS ✓ 230K
rsync MacBook Pro Microphone (input)_2026-05-15_10-14-03.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-14-33.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_10-15-03.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_10-15-33.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-16-03.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_10-16-33.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-17-03.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-17-33.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_10-18-03.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_10-18-32.mp4 → NAS ✓ 188K
rsync MacBook Pro Microphone (input)_2026-05-15_10-19-02.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_10-19-32.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-20-02.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_10-20-32.mp4 → NAS ✓ 232K
rsync MacBook Pro Microphone (input)_2026-05-15_10-21-02.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-21-31.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_10-22-01.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-22-31.mp4 → NAS ✓ 223K
rsync MacBook Pro Microphone (input)_2026-05-15_10-23-01.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-23-31.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-24-01.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-24-30.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-25-00.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-25-30.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_10-26-00.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_10-26-30.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_10-27-00.mp4 → NAS ✓ 229K
rsync MacBook Pro Microphone (input)_2026-05-15_10-27-30.mp4 → NAS ✓ 235K
rsync MacBook Pro Microphone (input)_2026-05-15_10-28-00.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_10-28-30.mp4 → NAS ✓ 224K
rsync MacBook Pro Microphone (input)_2026-05-15_10-29-00.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_10-29-30.mp4 → NAS ✓ 236K
rsync MacBook Pro Microphone (input)_2026-05-15_10-29-59.mp4 → NAS ✓ 232K
rsync MacBook Pro Microphone (input)_2026-05-15_10-30-29.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_10-30-59.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_10-31-29.mp4 → NAS ✓ 226K
rsync MacBook Pro Microphone (input)_2026-05-15_10-31-59.mp4 → NAS ✓ 240K
rsync MacBook Pro Microphone (input)_2026-05-15_10-32-28.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_10-32-58.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_10-33-28.mp4 → NAS ✓ 243K
rsync MacBook Pro Microphone (input)_2026-05-15_10-33-58.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_10-34-27.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-34-57.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-35-27.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_10-35-57.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_10-36-27.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_10-36-57.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_10-37-27.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-37-57.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_10-38-27.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_10-38-57.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_10-39-26.mp4 → NAS ✓ 228K
rsync MacBook Pro Microphone (input)_2026-05-15_10-39-56.mp4 → NAS ✓ 217K
rsync MacBook Pro Microphone (input)_2026-05-15_10-40-26.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-40-56.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_10-41-26.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-41-56.mp4 → NAS ✓ 229K
rsync MacBook Pro Microphone (input)_2026-05-15_10-42-26.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-42-55.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_10-43-25.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-43-55.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_10-44-25.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_10-44-55.mp4 → NAS ✓ 225K
rsync MacBook Pro Microphone (input)_2026-05-15_10-45-25.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-45-55.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_10-46-24.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_10-46-54.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_10-47-24.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-47-54.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-48-23.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-48-53.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_10-49-23.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_10-49-53.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-50-23.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-50-52.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-51-22.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-51-52.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_10-52-22.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_10-52-51.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_10-53-21.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-53-51.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-54-21.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_10-54-51.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-55-21.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_10-55-50.mp4 → NAS ✓ 235K
...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Mon May 18 09:17:28 on ttys007\n\nPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 10G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ ~/.screenpipe/scripts/screenpipe_sync.sh 2026-05-15\n[2026-05-18 09:19:59] ========================================\n[2026-05-18 09:19:59] Screenpipe sync starting for: 2026-05-15\n[2026-05-18 09:19:59] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.1G)\n[2026-05-18 09:19:59] ERROR: NAS not mounted at /Volumes/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ ~/.screenpipe/scripts/screenpipe_sync.sh 2026-05-15\n[2026-05-18 09:20:16] ========================================\n[2026-05-18 09:20:16] Screenpipe sync starting for: 2026-05-15\n[2026-05-18 09:20:16] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.1G)\n NAS mount: OK /Volumes/screenpipe\n Archive DB: exists (6.1G)\n Data dir: OK (114 files, 146M)\n\n[+00m05s] ▶ Counting source rows for 2026-05-15\n frames: 3231\n elements: 417620\n ui_events: 3376\n ocr_text: 1366\n meetings: 2\n audio_chunks: 593\n audio_transcriptions: 15\n\n[+00m06s] ▶ Initialising tables, indexes, FTS\n creating tables ✓ 0m00s\n creating indexes ✓ 0m00s\n creating FTS tables ✓ 0m00s\n\n[+00m06s] ▶ Syncing vision data for 2026-05-15\n video_chunks ✓ 0m04s\n frames (3231 rows) ✓ 0m52s\n ocr_text (1366 rows) ✓ 0m30s\n ui_events (3376 rows) ✓ 0m01s\n elements (417620 rows) ✓ 0m37s\n meetings (2 rows) ✓ 0m00s\n\n[+02m10s] ▶ Syncing audio data for 2026-05-15\n audio_chunks (593 rows) ✓ 0m01s\n audio_transcriptions (15 rows) ✓ 0m00s\n\n[+02m11s] ▶ Updating FTS indexes\n elements_fts ✓ 1m13s\n frames_fts ✓ 1m51s\n ui_events_fts ✓ 0m02s\n audio_transcriptions_fts ✓ 0m01s\n\n[+05m18s] ▶ Verifying DB\n frames: 3231 / 3231 ✓\n elements: 417620 / 417620 ✓\n ui_events: 3376 / 3376 ✓\n ocr_text: 1366 / 1366 ✓\n meetings: 2 / 2 ✓\n audio_chunks: 593 / 593 ✓\n audio_transcriptions: 15 / 15 ✓\n\n[+06m17s] ▶ Copying data folder for 2026-05-15\n rsync 2026-05-15/ → NAS ✓ 0m10s (114 files, 146M)\n\n[+06m27s] ▶ Copying audio files for 2026-05-15\n rsync System Audio (output)_2026-05-15_06-26-46.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-26-46.mp4 → NAS ✓ 8.0K\n rsync System Audio (output)_2026-05-15_06-27-10.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-27-18.mp4 → NAS ✓ 70K\n rsync System Audio (output)_2026-05-15_06-27-32.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-27-55.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-27-48.mp4 → NAS ✓ 96K\n rsync System Audio (output)_2026-05-15_06-28-17.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-28-18.mp4 → NAS ✓ 79K\n rsync System Audio (output)_2026-05-15_06-28-39.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-28-48.mp4 → NAS ✓ 80K\n rsync System Audio (output)_2026-05-15_06-29-02.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-29-24.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-29-18.mp4 → NAS ✓ 133K\n rsync System Audio (output)_2026-05-15_06-29-47.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-29-48.mp4 → NAS ✓ 90K\n rsync System Audio (output)_2026-05-15_06-30-09.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-30-18.mp4 → NAS ✓ 80K\n rsync System Audio (output)_2026-05-15_06-30-32.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-30-54.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-30-48.mp4 → NAS ✓ 8.0K\n rsync System Audio (output)_2026-05-15_06-31-17.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-31-18.mp4 → NAS ✓ 10K\n rsync System Audio (output)_2026-05-15_06-31-39.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-31-48.mp4 → NAS ✓ 31K\n rsync System Audio (output)_2026-05-15_06-32-01.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-32-24.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-32-18.mp4 → NAS ✓ 74K\n rsync System Audio (output)_2026-05-15_06-32-46.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-32-48.mp4 → NAS ✓ 108K\n rsync System Audio (output)_2026-05-15_06-33-09.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-33-18.mp4 → NAS ✓ 87K\n rsync System Audio (output)_2026-05-15_06-33-31.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-33-54.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-33-48.mp4 → NAS ✓ 13K\n rsync System Audio (output)_2026-05-15_06-34-16.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-34-39.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-34-32.mp4 → NAS ✓ 18K\n rsync System Audio (output)_2026-05-15_06-35-01.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-35-04.mp4 → NAS ✓ 7.0K\n rsync System Audio (output)_2026-05-15_06-35-23.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-35-34.mp4 → NAS ✓ 54K\n rsync System Audio (output)_2026-05-15_06-35-46.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-36-08.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-36-04.mp4 → NAS ✓ 49K\n rsync soundcore AeroClip (input)_2026-05-15_06-36-34.mp4 → NAS ✓ 62K\n rsync soundcore AeroClip (input)_2026-05-15_06-40-43.mp4 → NAS ✓ 74K\n rsync soundcore AeroClip (input)_2026-05-15_06-41-15.mp4 → NAS ✓ 49K\n rsync soundcore AeroClip (input)_2026-05-15_06-41-45.mp4 → NAS ✓ 48K\n rsync soundcore AeroClip (input)_2026-05-15_06-42-04.mp4 → NAS ✓ 6.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-42-04.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-42-36.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-43-06.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-43-36.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-44-06.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-44-36.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-45-06.mp4 → NAS ✓ 5.0K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-45-45.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-46-17.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-46-47.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-47-16.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-47-46.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-48-16.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-48-46.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-49-15.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-49-45.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-50-15.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-50-45.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-51-15.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-51-44.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-52-14.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-52-44.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-53-14.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-53-44.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-54-14.mp4 → NAS ✓ 100K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-54-28.mp4 → NAS ✓ 16K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-54-51.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-55-24.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-55-53.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-56-23.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-56-53.mp4 → NAS ✓ 217K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-57-23.mp4 → NAS ✓ 213K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-57-52.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-58-22.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-58-52.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-59-22.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-59-52.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-00-21.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-00-51.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-01-20.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-01-50.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-02-20.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-02-50.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-03-20.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-03-50.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-04-20.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-04-50.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-05-19.mp4 → NAS ✓ 92K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-05-33.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_07-05-33.mp4 → NAS ✓ 28K\n rsync soundcore AeroClip (input)_2026-05-15_07-06-05.mp4 → NAS ✓ 65K\n rsync soundcore AeroClip (input)_2026-05-15_07-06-35.mp4 → NAS ✓ 44K\n rsync soundcore AeroClip (input)_2026-05-15_07-07-05.mp4 → NAS ✓ 66K\n rsync soundcore AeroClip (input)_2026-05-15_07-07-35.mp4 → NAS ✓ 114K\n rsync soundcore AeroClip (input)_2026-05-15_07-08-05.mp4 → NAS ✓ 61K\n rsync soundcore AeroClip (input)_2026-05-15_07-08-35.mp4 → NAS ✓ 96K\n rsync soundcore AeroClip (input)_2026-05-15_07-09-05.mp4 → NAS ✓ 44K\n rsync soundcore AeroClip (input)_2026-05-15_07-09-35.mp4 → NAS ✓ 38K\n rsync soundcore AeroClip (input)_2026-05-15_07-10-05.mp4 → NAS ✓ 11K\n rsync soundcore AeroClip (input)_2026-05-15_07-10-35.mp4 → NAS ✓ 31K\n rsync soundcore AeroClip (input)_2026-05-15_07-11-05.mp4 → NAS ✓ 55K\n rsync soundcore AeroClip (input)_2026-05-15_07-11-35.mp4 → NAS ✓ 51K\n rsync soundcore AeroClip (input)_2026-05-15_07-12-04.mp4 → NAS ✓ 36K\n rsync soundcore AeroClip (input)_2026-05-15_07-12-34.mp4 → NAS ✓ 24K\n rsync soundcore AeroClip (input)_2026-05-15_07-13-04.mp4 → NAS ✓ 25K\n rsync soundcore AeroClip (input)_2026-05-15_07-13-34.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-14-04.mp4 → NAS ✓ 39K\n rsync soundcore AeroClip (input)_2026-05-15_07-14-34.mp4 → NAS ✓ 31K\n rsync soundcore AeroClip (input)_2026-05-15_07-15-04.mp4 → NAS ✓ 28K\n rsync soundcore AeroClip (input)_2026-05-15_07-15-34.mp4 → NAS ✓ 35K\n rsync soundcore AeroClip (input)_2026-05-15_07-16-04.mp4 → NAS ✓ 44K\n rsync soundcore AeroClip (input)_2026-05-15_07-16-34.mp4 → NAS ✓ 31K\n rsync soundcore AeroClip (input)_2026-05-15_07-17-04.mp4 → NAS ✓ 27K\n rsync soundcore AeroClip (input)_2026-05-15_07-17-34.mp4 → NAS ✓ 22K\n rsync soundcore AeroClip (input)_2026-05-15_07-18-04.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-18-34.mp4 → NAS ✓ 25K\n rsync soundcore AeroClip (input)_2026-05-15_07-19-04.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-19-34.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_07-20-04.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-20-34.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_07-21-04.mp4 → NAS ✓ 15K\n rsync soundcore AeroClip (input)_2026-05-15_07-21-34.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_07-22-04.mp4 → NAS ✓ 8.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-22-34.mp4 → NAS ✓ 8.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-23-04.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-23-34.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_07-24-04.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_07-24-34.mp4 → NAS ✓ 15K\n rsync soundcore AeroClip (input)_2026-05-15_07-25-04.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-25-38.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-26-10.mp4 → NAS ✓ 12K\n rsync soundcore AeroClip (input)_2026-05-15_07-26-40.mp4 → NAS ✓ 11K\n rsync soundcore AeroClip (input)_2026-05-15_07-27-10.mp4 → NAS ✓ 12K\n rsync soundcore AeroClip (input)_2026-05-15_07-27-40.mp4 → NAS ✓ 8.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-28-20.mp4 → NAS ✓ 25K\n rsync soundcore AeroClip (input)_2026-05-15_07-28-52.mp4 → NAS ✓ 12K\n rsync soundcore AeroClip (input)_2026-05-15_07-29-21.mp4 → NAS ✓ 12K\n rsync soundcore AeroClip (input)_2026-05-15_07-29-51.mp4 → NAS ✓ 8.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-30-25.mp4 → NAS ✓ 13K\n rsync soundcore AeroClip (input)_2026-05-15_07-30-57.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_07-31-27.mp4 → NAS ✓ 11K\n rsync soundcore AeroClip (input)_2026-05-15_07-31-57.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-32-27.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-32-57.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-33-38.mp4 → NAS ✓ 22K\n rsync soundcore AeroClip (input)_2026-05-15_07-34-10.mp4 → NAS ✓ 72K\n rsync soundcore AeroClip (input)_2026-05-15_07-34-40.mp4 → NAS ✓ 74K\n rsync soundcore AeroClip (input)_2026-05-15_07-35-10.mp4 → NAS ✓ 63K\n rsync soundcore AeroClip (input)_2026-05-15_07-35-40.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_07-36-10.mp4 → NAS ✓ 21K\n rsync soundcore AeroClip (input)_2026-05-15_07-36-39.mp4 → NAS ✓ 35K\n rsync soundcore AeroClip (input)_2026-05-15_07-37-09.mp4 → NAS ✓ 46K\n rsync soundcore AeroClip (input)_2026-05-15_07-37-39.mp4 → NAS ✓ 40K\n rsync soundcore AeroClip (input)_2026-05-15_07-38-09.mp4 → NAS ✓ 26K\n rsync soundcore AeroClip (input)_2026-05-15_07-38-39.mp4 → NAS ✓ 29K\n rsync soundcore AeroClip (input)_2026-05-15_07-39-09.mp4 → NAS ✓ 49K\n rsync soundcore AeroClip (input)_2026-05-15_07-39-39.mp4 → NAS ✓ 37K\n rsync soundcore AeroClip (input)_2026-05-15_07-40-09.mp4 → NAS ✓ 56K\n rsync soundcore AeroClip (input)_2026-05-15_07-40-39.mp4 → NAS ✓ 39K\n rsync soundcore AeroClip (input)_2026-05-15_07-41-09.mp4 → NAS ✓ 37K\n rsync soundcore AeroClip (input)_2026-05-15_07-41-38.mp4 → NAS ✓ 159K\n rsync soundcore AeroClip (input)_2026-05-15_07-42-08.mp4 → NAS ✓ 69K\n rsync soundcore AeroClip (input)_2026-05-15_07-42-38.mp4 → NAS ✓ 51K\n rsync soundcore AeroClip (input)_2026-05-15_07-43-08.mp4 → NAS ✓ 30K\n rsync soundcore AeroClip (input)_2026-05-15_07-43-38.mp4 → NAS ✓ 33K\n rsync soundcore AeroClip (input)_2026-05-15_07-44-08.mp4 → NAS ✓ 71K\n rsync soundcore AeroClip (input)_2026-05-15_07-44-38.mp4 → NAS ✓ 38K\n rsync soundcore AeroClip (input)_2026-05-15_07-45-08.mp4 → NAS ✓ 21K\n rsync soundcore AeroClip (input)_2026-05-15_07-45-38.mp4 → NAS ✓ 37K\n rsync soundcore AeroClip (input)_2026-05-15_07-46-08.mp4 → NAS ✓ 50K\n rsync soundcore AeroClip (input)_2026-05-15_07-46-38.mp4 → NAS ✓ 26K\n rsync soundcore AeroClip (input)_2026-05-15_07-47-08.mp4 → NAS ✓ 32K\n rsync soundcore AeroClip (input)_2026-05-15_07-47-38.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_07-48-08.mp4 → NAS ✓ 32K\n rsync soundcore AeroClip (input)_2026-05-15_07-48-38.mp4 → NAS ✓ 62K\n rsync soundcore AeroClip (input)_2026-05-15_07-49-08.mp4 → NAS ✓ 110K\n rsync soundcore AeroClip (input)_2026-05-15_07-49-38.mp4 → NAS ✓ 51K\n rsync soundcore AeroClip (input)_2026-05-15_07-50-08.mp4 → NAS ✓ 35K\n rsync soundcore AeroClip (input)_2026-05-15_07-50-38.mp4 → NAS ✓ 81K\n rsync soundcore AeroClip (input)_2026-05-15_07-51-08.mp4 → NAS ✓ 72K\n rsync soundcore AeroClip (input)_2026-05-15_07-51-38.mp4 → NAS ✓ 26K\n rsync soundcore AeroClip (input)_2026-05-15_07-52-08.mp4 → NAS ✓ 22K\n rsync soundcore AeroClip (input)_2026-05-15_07-52-38.mp4 → NAS ✓ 17K\n rsync soundcore AeroClip (input)_2026-05-15_07-53-08.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_07-53-37.mp4 → NAS ✓ 21K\n rsync soundcore AeroClip (input)_2026-05-15_07-54-07.mp4 → NAS ✓ 28K\n rsync soundcore AeroClip (input)_2026-05-15_07-54-37.mp4 → NAS ✓ 19K\n rsync soundcore AeroClip (input)_2026-05-15_07-55-07.mp4 → NAS ✓ 17K\n rsync soundcore AeroClip (input)_2026-05-15_07-55-37.mp4 → NAS ✓ 15K\n rsync soundcore AeroClip (input)_2026-05-15_07-56-07.mp4 → NAS ✓ 16K\n rsync soundcore AeroClip (input)_2026-05-15_07-56-37.mp4 → NAS ✓ 16K\n rsync soundcore AeroClip (input)_2026-05-15_07-57-07.mp4 → NAS ✓ 11K\n rsync soundcore AeroClip (input)_2026-05-15_07-57-37.mp4 → NAS ✓ 8.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-58-07.mp4 → NAS ✓ 15K\n rsync soundcore AeroClip (input)_2026-05-15_07-58-37.mp4 → NAS ✓ 15K\n rsync soundcore AeroClip (input)_2026-05-15_07-59-07.mp4 → NAS ✓ 17K\n rsync soundcore AeroClip (input)_2026-05-15_07-59-37.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-00-26.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-00-58.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-01-47.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-02-43.mp4 → NAS ✓ 18K\n rsync soundcore AeroClip (input)_2026-05-15_08-03-20.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-03-52.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_08-04-22.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-04-52.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-05-37.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-06-09.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-08-20.mp4 → NAS ✓ 13K\n rsync soundcore AeroClip (input)_2026-05-15_08-08-52.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-09-36.mp4 → NAS ✓ 12K\n rsync soundcore AeroClip (input)_2026-05-15_08-10-08.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_08-10-38.mp4 → NAS ✓ 45K\n rsync soundcore AeroClip (input)_2026-05-15_08-11-08.mp4 → NAS ✓ 62K\n rsync soundcore AeroClip (input)_2026-05-15_08-11-38.mp4 → NAS ✓ 23K\n rsync soundcore AeroClip (input)_2026-05-15_08-12-08.mp4 → NAS ✓ 26K\n rsync soundcore AeroClip (input)_2026-05-15_08-12-38.mp4 → NAS ✓ 13K\n rsync soundcore AeroClip (input)_2026-05-15_08-13-08.mp4 → NAS ✓ 16K\n rsync soundcore AeroClip (input)_2026-05-15_08-13-38.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_08-14-08.mp4 → NAS ✓ 16K\n rsync soundcore AeroClip (input)_2026-05-15_08-14-38.mp4 → NAS ✓ 20K\n rsync soundcore AeroClip (input)_2026-05-15_08-15-31.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-16-03.mp4 → NAS ✓ 21K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-17-04.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-17-35.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-18-05.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-18-35.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-19-05.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-19-35.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-20-05.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-20-35.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-21-05.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-21-34.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-22-04.mp4 → NAS ✓ 213K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-22-34.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-23-04.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-23-34.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-24-04.mp4 → NAS ✓ 234K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-24-33.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-25-03.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-25-33.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-26-03.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-26-33.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-27-03.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-27-32.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-28-02.mp4 → NAS ✓ 225K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-28-32.mp4 → NAS ✓ 224K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-29-02.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-29-32.mp4 → NAS ✓ 188K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-30-02.mp4 → NAS ✓ 185K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-30-32.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-31-02.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-31-32.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-32-01.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-32-31.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-33-01.mp4 → NAS ✓ 235K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-33-31.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-34-01.mp4 → NAS ✓ 224K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-34-30.mp4 → NAS ✓ 218K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-35-00.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-35-30.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-35-59.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-36-29.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-36-59.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-37-29.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-37-59.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-38-28.mp4 → NAS ✓ 214K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-38-58.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-39-28.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-39-58.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-40-27.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-40-57.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-41-27.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-41-56.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-42-26.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-42-56.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-43-26.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-43-56.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-44-25.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-44-55.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-45-24.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-45-54.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-46-24.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-46-54.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-47-24.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-47-54.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-48-24.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-48-54.mp4 → NAS ✓ 220K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-49-24.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-49-54.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-50-23.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-50-53.mp4 → NAS ✓ 232K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-51-22.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-51-52.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-52-22.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-52-51.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-53-21.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-53-51.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-54-21.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-54-50.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-55-20.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-55-50.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-56-20.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-56-49.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-57-19.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-57-49.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-58-18.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-58-48.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-59-18.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-59-48.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-00-18.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-00-47.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-01-17.mp4 → NAS ✓ 214K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-01-47.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-02-16.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-02-46.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-03-16.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-03-46.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-04-16.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-04-46.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-05-15.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-05-45.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-06-15.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-06-45.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-07-15.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-07-45.mp4 → NAS ✓ 236K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-08-15.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-08-44.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-09-14.mp4 → NAS ✓ 217K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-09-44.mp4 → NAS ✓ 219K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-10-14.mp4 → NAS ✓ 219K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-10-43.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-11-13.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-11-43.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-12-13.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-12-43.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-13-13.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-13-42.mp4 → NAS ✓ 223K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-14-12.mp4 → NAS ✓ 223K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-14-42.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-15-12.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-15-41.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-16-11.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-16-41.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-17-11.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-17-41.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-18-11.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-18-41.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-19-11.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-19-41.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-20-11.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-20-41.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-21-10.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-21-40.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-22-10.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-22-40.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-23-10.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-23-40.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-24-10.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-24-39.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-25-09.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-25-39.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-26-09.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-26-39.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-27-08.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-27-38.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-28-08.mp4 → NAS ✓ 225K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-28-38.mp4 → NAS ✓ 240K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-29-08.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-29-38.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-30-07.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-30-37.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-31-07.mp4 → NAS ✓ 235K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-31-37.mp4 → NAS ✓ 220K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-32-06.mp4 → NAS ✓ 214K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-32-36.mp4 → NAS ✓ 220K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-33-06.mp4 → NAS ✓ 228K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-33-36.mp4 → NAS ✓ 232K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-34-05.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-34-35.mp4 → NAS ✓ 235K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-35-05.mp4 → NAS ✓ 219K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-35-35.mp4 → NAS ✓ 227K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-36-04.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-36-34.mp4 → NAS ✓ 231K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-37-04.mp4 → NAS ✓ 230K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-37-34.mp4 → NAS ✓ 241K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-38-03.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-38-33.mp4 → NAS ✓ 226K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-39-03.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-39-33.mp4 → NAS ✓ 227K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-40-02.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-40-32.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-41-02.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-41-32.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-42-02.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-42-32.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-43-02.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-43-32.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-44-01.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-44-31.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-45-01.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-45-31.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-46-01.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-46-31.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-47-01.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-47-31.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-48-01.mp4 → NAS ✓ 188K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-48-31.mp4 → NAS ✓ 185K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-49-01.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-49-31.mp4 → NAS ✓ 186K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-50-01.mp4 → NAS ✓ 186K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-50-31.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-51-00.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-51-30.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-52-00.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-58-06.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-58-37.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-59-07.mp4 → NAS ✓ 190K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-59-37.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-00-07.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-00-37.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-01-07.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-01-37.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-02-07.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-02-37.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-03-07.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-03-36.mp4 → NAS ✓ 231K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-04-06.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-04-36.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-05-06.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-05-36.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-06-06.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-06-36.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-07-06.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-07-36.mp4 → NAS ✓ 218K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-08-05.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-08-35.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-09-05.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-09-35.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-10-05.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-10-34.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-11-04.mp4 → NAS ✓ 188K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-11-34.mp4 → NAS ✓ 185K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-12-04.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-12-34.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-13-04.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-13-34.mp4 → NAS ✓ 230K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-14-03.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-14-33.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-15-03.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-15-33.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-16-03.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-16-33.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-17-03.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-17-33.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-18-03.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-18-32.mp4 → NAS ✓ 188K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-19-02.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-19-32.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-20-02.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-20-32.mp4 → NAS ✓ 232K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-21-02.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-21-31.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-22-01.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-22-31.mp4 → NAS ✓ 223K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-23-01.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-23-31.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-24-01.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-24-30.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-25-00.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-25-30.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-26-00.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-26-30.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-27-00.mp4 → NAS ✓ 229K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-27-30.mp4 → NAS ✓ 235K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-28-00.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-28-30.mp4 → NAS ✓ 224K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-29-00.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-29-30.mp4 → NAS ✓ 236K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-29-59.mp4 → NAS ✓ 232K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-30-29.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-30-59.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-31-29.mp4 → NAS ✓ 226K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-31-59.mp4 → NAS ✓ 240K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-32-28.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-32-58.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-33-28.mp4 → NAS ✓ 243K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-33-58.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-34-27.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-34-57.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-35-27.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-35-57.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-36-27.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-36-57.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-37-27.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-37-57.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-38-27.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-38-57.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-39-26.mp4 → NAS ✓ 228K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-39-56.mp4 → NAS ✓ 217K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-40-26.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-40-56.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-41-26.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-41-56.mp4 → NAS ✓ 229K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-42-26.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-42-55.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-43-25.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-43-55.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-44-25.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-44-55.mp4 → NAS ✓ 225K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-45-25.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-45-55.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-46-24.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-46-54.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-47-24.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-47-54.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-48-23.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-48-53.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-49-23.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-49-53.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-50-23.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-50-52.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-51-22.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-51-52.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-52-22.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-52-51.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-53-21.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-53-51.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-54-21.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-54-51.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-55-21.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-55-50.mp4 → NAS ✓ 235K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-56-20.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-56-50.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-57-19.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-57-49.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-58-19.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-58-49.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-59-19.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-59-49.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-00-19.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-00-48.mp4 → NAS ✓ 222K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-01-18.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-01-48.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-02-18.mp4 → NAS ✓ 225K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-02-48.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-03-18.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-03-47.mp4 → NAS ✓ 219K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-04-17.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-04-47.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-05-17.mp4 → NAS ✓ 223K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-05-46.mp4 → NAS ✓ 214K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-06-16.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-06-46.mp4 → NAS ✓ 213K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-07-16.mp4 → NAS ✓ 217K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-07-46.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-08-16.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-08-45.mp4 → NAS ✓ 229K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-09-15.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-09-45.mp4 → NAS ✓ 226K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-10-14.mp4 → NAS ✓ 227K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-10-44.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-11-14.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-11-44.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-12-14.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-12-43.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-13-13.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-13-43.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-14-13.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-14-43.mp4 → NAS ✓ 227K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-15-13.mp4 → NAS ✓ 239K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-15-42.mp4 → NAS ✓ 220K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-16-12.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-16-42.mp4 → NAS ✓ 234K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-17-12.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-17-42.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-18-12.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-18-41.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-19-11.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-19-41.mp4 → NAS ✓ 225K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-20-11.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-20-40.mp4 → NAS ✓ 68K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-20-50.mp4 → NAS ✓ 17K\n rsync soundcore AeroClip (input)_2026-05-15_11-20-51.mp4 → NAS ✓ 21K\n audio files total: 593 file(s), 86M\n\n[+07m22s] ▶ Copying screenpipe logs for 2026-05-15\n rsync logs → NAS ✓ 1 file(s), 200K\n\n[2026-05-18 09:27:38] Archive DB size: 6.6G\n[2026-05-18 09:27:38] Total time: 7m22s\n[2026-05-18 09:27:38] Sync complete for 2026-05-15\n[2026-05-18 09:27:38] ========================================\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ alias sp-start\nsp-start='npx screenpipe@latest record --disable-audio --ignored-windows \"Boosteroid\"'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ npx screenpipe@latest record\ndetected hardware tier: Mid\nwarning: parakeet is not supported on this platform, using whisper-tiny instead\n2026-05-18T09:35:34.045653Z INFO screenpipe_engine::auth_key: api auth: key resolved via secret store\nchecking permissions...\n screen recording: ok\n microphone: ok\n accessibility: ok\n2026-05-18T09:35:34.129353Z INFO screenpipe_screen::monitor::macos_version: Detected macOS version: 14.6\n2026-05-18T09:35:34.705740Z INFO screenpipe_engine::sleep_monitor: Starting macOS sleep/wake monitor\n2026-05-18T09:35:34.707418Z INFO screenpipe_engine::sleep_monitor: Screen lock/unlock observers registered (CFNotificationCenter)\n2026-05-18T09:35:34.707766Z INFO screenpipe_engine::sleep_monitor: Display reconfiguration watcher registered (CGDisplayRegisterReconfigurationCallback)\n2026-05-18T09:35:34.728020Z INFO screenpipe_engine::permission_monitor: permission monitor started screen=true mic=true accessibility=true keychain=true\n2026-05-18T09:35:34.728095Z INFO screenpipe: meeting detector enabled — independent of transcription mode\n2026-05-18T09:35:35.112296Z INFO screenpipe_engine::power::manager: power manager started (poll interval: 10s)\n2026-05-18T09:35:35.112352Z INFO screenpipe: API server listening on 127.0.0.1:3030 (localhost only)\n2026-05-18T09:35:35.112447Z INFO screenpipe: API auth enabled — run `screenpipe auth token` to view your key\n2026-05-18T09:35:35.112323Z INFO screenpipe_engine::snapshot_compaction: snapshot compaction worker started (min_age=600s, poll=300s)\n2026-05-18T09:35:35.112560Z INFO screenpipe_engine::vision_manager::manager: Starting VisionManager\n2026-05-18T09:35:35.115714Z INFO screenpipe_core::pipes: loaded pipe: day-recap\n2026-05-18T09:35:35.115964Z INFO screenpipe_core::pipes: loaded pipe: standup-update\n2026-05-18T09:35:35.116065Z INFO screenpipe_core::pipes: loaded pipe: ai-habits\n2026-05-18T09:35:35.116222Z INFO screenpipe_core::pipes: loaded pipe: time-breakdown\n2026-05-18T09:35:35.116729Z INFO screenpipe_core::pipes: loaded pipe: video-export\n2026-05-18T09:35:35.117010Z INFO screenpipe_core::pipes: loaded pipe: meeting-summary\n2026-05-18T09:35:35.117059Z INFO screenpipe_core::pipes: loaded 6 pipes from \"/Users/lukas/.screenpipe/pipes\"\n\n\n\n _ \n __________________ ___ ____ ____ (_____ ___ \n / ___/ ___/ ___/ _ \\/ _ \\/ __ \\ / __ \\/ / __ \\/ _ \\\n (__ / /__/ / / __/ __/ / / / / /_/ / / /_/ / __/\n/____/\\___/_/ \\___/\\___/_/ /_/ / .___/_/ .___/\\___/ \n /_/ /_/ \n\n\n\npower AI by everything you've seen, said or heard\nopen source | runs locally | developer friendly\n\n\n┌────────────────────────┬────────────────────────────────────┐\n│ setting │ value │\n├────────────────────────┼────────────────────────────────────┤\n│ audio chunk duration │ 30 seconds │\n│ port │ 3030 │\n│ audio disabled │ false │\n│ vision disabled │ false │\n│ pause on DRM content │ false │\n│ audio engine │ Parakeet │\n│ vad engine │ Silero │\n│ data directory │ /Users/lukas/.screenpipe │\n│ debug mode │ false │\n│ telemetry │ true │\n│ use pii removal │ true │\n│ use all monitors │ true │\n│ ignored windows │ [] │\n│ included windows │ [] │\n│ cloud sync │ disabled │\n│ auto-destruct pid │ 0 │\n│ deepgram key │ not set │\n│ api auth │ enabled │\n│ encrypt secrets │ disabled │\n│ retention days │ 14 │\n│ retention mode │ media-only (keep transcripts) │\n├────────────────────────┼────────────────────────────────────┤\n│ languages │ │\n│ │ all languages │\n├────────────────────────┼────────────────────────────────────┤\n│ monitors │ │\n│ │ id: 1 │\n│ │ id: 2 │\n├────────────────────────┼────────────────────────────────────┤\n│ audio devices │ │\n│ │ MacBook Pro Microphone (input) │\n│ │ System Audio (output) │\n└────────────────────────┴────────────────────────────────────┘\nyou are using local processing. all your data stays on your computer.\n\nwarning: telemetry is enabled. only error-level data will be sent.\nto disable, use the --disable-telemetry flag.\n\ncheck latest changes here: https://github.com/screenpipe/screenpipe/releases\n2026-05-18T09:35:35.119648Z INFO screenpipe: starting UI event capture\n2026-05-18T09:35:35.118778Z INFO screenpipe_core::pipes: pipe scheduler started (generation 2)\n2026-05-18T09:35:35.123641Z WARN screenpipe: pi agent install failed: bun not found — install from https://bun.sh\n2026-05-18T09:35:35.129085Z INFO screenpipe_engine::power::manager: initial power profile: Performance (on_ac=true, battery=Some(100))\n2026-05-18T09:35:35.134938Z INFO screenpipe_engine::ui_recorder: Starting UI event capture\n2026-05-18T09:35:35.149688Z INFO screenpipe: text-PII worker skipped at startup — async_pii_redaction=false. OPF model (~2.8 GB) will NOT be downloaded or loaded. Toggle via Settings → Privacy → AI PII removal.\n2026-05-18T09:35:35.149726Z INFO screenpipe: image-PII worker skipped at startup — async_image_pii_redaction=false. rfdetr_v9 model (~108 MB) will NOT be downloaded or loaded. Toggle via Settings → Privacy → AI PII removal.\n2026-05-18T09:35:35.149748Z INFO screenpipe_engine::ui_recorder: UI recording session started: 0404bede-2900-4a09-b527-d7a310880a81\n2026-05-18T09:35:35.149892Z INFO screenpipe_engine::calendar_speaker_id: speaker identification: started (user_name=<not set>)\n2026-05-18T09:35:35.150006Z INFO screenpipe_engine::hot_frame_cache: hot_frame_cache: warming from DB (2026-05-17 06:35:35.150003 UTC to 2026-05-18 06:35:35.150003 UTC)\n2026-05-18T09:35:35.150506Z INFO screenpipe_engine::meeting_detector: meeting v2: detection loop started (base_interval=5s, profiles=12)\n2026-05-18T09:35:35.153345Z INFO screenpipe_engine::hot_frame_cache: hot_frame_cache: warmed with 0 frame entries, coverage from 2026-05-17 06:35:35.150003 UTC\n2026-05-18T09:35:35.158094Z INFO screenpipe_engine::server: Server listening on 127.0.0.1:3030\n2026-05-18T09:35:35.169325Z INFO screenpipe_connect::mdns: mdns: advertising screenpipe on port 3030\n2026-05-18T09:35:35.221171Z INFO screenpipe_engine::vision_manager::manager: Starting vision recording for monitor 1 (1440x900)\n2026-05-18T09:35:35.221224Z INFO screenpipe_engine::vision_manager::manager: Starting event-driven capture for monitor 1 (device: monitor_1)\n2026-05-18T09:35:35.221261Z INFO screenpipe_engine::event_driven_capture: event-driven capture started for monitor 1 (device: monitor_1)\n2026-05-18T09:35:35.257517Z INFO screenpipe_engine::vision_manager::manager: Starting vision recording for monitor 2 (3008x1253)\n2026-05-18T09:35:35.257543Z INFO screenpipe_engine::vision_manager::manager: Starting event-driven capture for monitor 2 (device: monitor_2)\n2026-05-18T09:35:35.257553Z INFO screenpipe_engine::vision_manager::manager: VisionManager started with 2/2 monitor(s)\n2026-05-18T09:35:35.257560Z INFO screenpipe_engine::vision_manager::monitor_watcher: Starting monitor watcher (event-driven via CGDisplayRegisterReconfigurationCallback, 60s backstop poll)\n2026-05-18T09:35:35.257584Z INFO screenpipe_engine::event_driven_capture: event-driven capture started for monitor 2 (device: monitor_2)\n2026-05-18T09:35:35.862836Z INFO sck_rs::stream_manager: persistent SCK stream started for display 1 (1440x900, 2fps, 0 excluded)\n2026-05-18T09:35:35.925168Z INFO sck_rs::stream_manager: persistent SCK stream started for display 2 (3008x1253, 2fps, 0 excluded)","depth":4,"on_screen":true,"value":"Last login: Mon May 18 09:17:28 on ttys007\n\nPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 10G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ ~/.screenpipe/scripts/screenpipe_sync.sh 2026-05-15\n[2026-05-18 09:19:59] ========================================\n[2026-05-18 09:19:59] Screenpipe sync starting for: 2026-05-15\n[2026-05-18 09:19:59] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.1G)\n[2026-05-18 09:19:59] ERROR: NAS not mounted at /Volumes/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ ~/.screenpipe/scripts/screenpipe_sync.sh 2026-05-15\n[2026-05-18 09:20:16] ========================================\n[2026-05-18 09:20:16] Screenpipe sync starting for: 2026-05-15\n[2026-05-18 09:20:16] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.1G)\n NAS mount: OK /Volumes/screenpipe\n Archive DB: exists (6.1G)\n Data dir: OK (114 files, 146M)\n\n[+00m05s] ▶ Counting source rows for 2026-05-15\n frames: 3231\n elements: 417620\n ui_events: 3376\n ocr_text: 1366\n meetings: 2\n audio_chunks: 593\n audio_transcriptions: 15\n\n[+00m06s] ▶ Initialising tables, indexes, FTS\n creating tables ✓ 0m00s\n creating indexes ✓ 0m00s\n creating FTS tables ✓ 0m00s\n\n[+00m06s] ▶ Syncing vision data for 2026-05-15\n video_chunks ✓ 0m04s\n frames (3231 rows) ✓ 0m52s\n ocr_text (1366 rows) ✓ 0m30s\n ui_events (3376 rows) ✓ 0m01s\n elements (417620 rows) ✓ 0m37s\n meetings (2 rows) ✓ 0m00s\n\n[+02m10s] ▶ Syncing audio data for 2026-05-15\n audio_chunks (593 rows) ✓ 0m01s\n audio_transcriptions (15 rows) ✓ 0m00s\n\n[+02m11s] ▶ Updating FTS indexes\n elements_fts ✓ 1m13s\n frames_fts ✓ 1m51s\n ui_events_fts ✓ 0m02s\n audio_transcriptions_fts ✓ 0m01s\n\n[+05m18s] ▶ Verifying DB\n frames: 3231 / 3231 ✓\n elements: 417620 / 417620 ✓\n ui_events: 3376 / 3376 ✓\n ocr_text: 1366 / 1366 ✓\n meetings: 2 / 2 ✓\n audio_chunks: 593 / 593 ✓\n audio_transcriptions: 15 / 15 ✓\n\n[+06m17s] ▶ Copying data folder for 2026-05-15\n rsync 2026-05-15/ → NAS ✓ 0m10s (114 files, 146M)\n\n[+06m27s] ▶ Copying audio files for 2026-05-15\n rsync System Audio (output)_2026-05-15_06-26-46.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-26-46.mp4 → NAS ✓ 8.0K\n rsync System Audio (output)_2026-05-15_06-27-10.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-27-18.mp4 → NAS ✓ 70K\n rsync System Audio (output)_2026-05-15_06-27-32.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-27-55.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-27-48.mp4 → NAS ✓ 96K\n rsync System Audio (output)_2026-05-15_06-28-17.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-28-18.mp4 → NAS ✓ 79K\n rsync System Audio (output)_2026-05-15_06-28-39.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-28-48.mp4 → NAS ✓ 80K\n rsync System Audio (output)_2026-05-15_06-29-02.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-29-24.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-29-18.mp4 → NAS ✓ 133K\n rsync System Audio (output)_2026-05-15_06-29-47.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-29-48.mp4 → NAS ✓ 90K\n rsync System Audio (output)_2026-05-15_06-30-09.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-30-18.mp4 → NAS ✓ 80K\n rsync System Audio (output)_2026-05-15_06-30-32.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-30-54.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-30-48.mp4 → NAS ✓ 8.0K\n rsync System Audio (output)_2026-05-15_06-31-17.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-31-18.mp4 → NAS ✓ 10K\n rsync System Audio (output)_2026-05-15_06-31-39.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-31-48.mp4 → NAS ✓ 31K\n rsync System Audio (output)_2026-05-15_06-32-01.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-32-24.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-32-18.mp4 → NAS ✓ 74K\n rsync System Audio (output)_2026-05-15_06-32-46.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-32-48.mp4 → NAS ✓ 108K\n rsync System Audio (output)_2026-05-15_06-33-09.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-33-18.mp4 → NAS ✓ 87K\n rsync System Audio (output)_2026-05-15_06-33-31.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-33-54.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-33-48.mp4 → NAS ✓ 13K\n rsync System Audio (output)_2026-05-15_06-34-16.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-34-39.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-34-32.mp4 → NAS ✓ 18K\n rsync System Audio (output)_2026-05-15_06-35-01.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-35-04.mp4 → NAS ✓ 7.0K\n rsync System Audio (output)_2026-05-15_06-35-23.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-35-34.mp4 → NAS ✓ 54K\n rsync System Audio (output)_2026-05-15_06-35-46.mp4 → NAS ✓ 5.0K\n rsync System Audio (output)_2026-05-15_06-36-08.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_06-36-04.mp4 → NAS ✓ 49K\n rsync soundcore AeroClip (input)_2026-05-15_06-36-34.mp4 → NAS ✓ 62K\n rsync soundcore AeroClip (input)_2026-05-15_06-40-43.mp4 → NAS ✓ 74K\n rsync soundcore AeroClip (input)_2026-05-15_06-41-15.mp4 → NAS ✓ 49K\n rsync soundcore AeroClip (input)_2026-05-15_06-41-45.mp4 → NAS ✓ 48K\n rsync soundcore AeroClip (input)_2026-05-15_06-42-04.mp4 → NAS ✓ 6.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-42-04.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-42-36.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-43-06.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-43-36.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-44-06.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-44-36.mp4 → NAS ✓ 5.0K\n rsync LakyLak bose qc35 II (input)_2026-05-15_06-45-06.mp4 → NAS ✓ 5.0K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-45-45.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-46-17.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-46-47.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-47-16.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-47-46.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-48-16.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-48-46.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-49-15.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-49-45.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-50-15.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-50-45.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-51-15.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-51-44.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-52-14.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-52-44.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-53-14.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-53-44.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-54-14.mp4 → NAS ✓ 100K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-54-28.mp4 → NAS ✓ 16K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-54-51.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-55-24.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-55-53.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-56-23.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-56-53.mp4 → NAS ✓ 217K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-57-23.mp4 → NAS ✓ 213K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-57-52.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-58-22.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-58-52.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-59-22.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_06-59-52.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-00-21.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-00-51.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-01-20.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-01-50.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-02-20.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-02-50.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-03-20.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-03-50.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-04-20.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-04-50.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-05-19.mp4 → NAS ✓ 92K\n rsync MacBook Pro Microphone (input)_2026-05-15_07-05-33.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_07-05-33.mp4 → NAS ✓ 28K\n rsync soundcore AeroClip (input)_2026-05-15_07-06-05.mp4 → NAS ✓ 65K\n rsync soundcore AeroClip (input)_2026-05-15_07-06-35.mp4 → NAS ✓ 44K\n rsync soundcore AeroClip (input)_2026-05-15_07-07-05.mp4 → NAS ✓ 66K\n rsync soundcore AeroClip (input)_2026-05-15_07-07-35.mp4 → NAS ✓ 114K\n rsync soundcore AeroClip (input)_2026-05-15_07-08-05.mp4 → NAS ✓ 61K\n rsync soundcore AeroClip (input)_2026-05-15_07-08-35.mp4 → NAS ✓ 96K\n rsync soundcore AeroClip (input)_2026-05-15_07-09-05.mp4 → NAS ✓ 44K\n rsync soundcore AeroClip (input)_2026-05-15_07-09-35.mp4 → NAS ✓ 38K\n rsync soundcore AeroClip (input)_2026-05-15_07-10-05.mp4 → NAS ✓ 11K\n rsync soundcore AeroClip (input)_2026-05-15_07-10-35.mp4 → NAS ✓ 31K\n rsync soundcore AeroClip (input)_2026-05-15_07-11-05.mp4 → NAS ✓ 55K\n rsync soundcore AeroClip (input)_2026-05-15_07-11-35.mp4 → NAS ✓ 51K\n rsync soundcore AeroClip (input)_2026-05-15_07-12-04.mp4 → NAS ✓ 36K\n rsync soundcore AeroClip (input)_2026-05-15_07-12-34.mp4 → NAS ✓ 24K\n rsync soundcore AeroClip (input)_2026-05-15_07-13-04.mp4 → NAS ✓ 25K\n rsync soundcore AeroClip (input)_2026-05-15_07-13-34.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-14-04.mp4 → NAS ✓ 39K\n rsync soundcore AeroClip (input)_2026-05-15_07-14-34.mp4 → NAS ✓ 31K\n rsync soundcore AeroClip (input)_2026-05-15_07-15-04.mp4 → NAS ✓ 28K\n rsync soundcore AeroClip (input)_2026-05-15_07-15-34.mp4 → NAS ✓ 35K\n rsync soundcore AeroClip (input)_2026-05-15_07-16-04.mp4 → NAS ✓ 44K\n rsync soundcore AeroClip (input)_2026-05-15_07-16-34.mp4 → NAS ✓ 31K\n rsync soundcore AeroClip (input)_2026-05-15_07-17-04.mp4 → NAS ✓ 27K\n rsync soundcore AeroClip (input)_2026-05-15_07-17-34.mp4 → NAS ✓ 22K\n rsync soundcore AeroClip (input)_2026-05-15_07-18-04.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-18-34.mp4 → NAS ✓ 25K\n rsync soundcore AeroClip (input)_2026-05-15_07-19-04.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-19-34.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_07-20-04.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-20-34.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_07-21-04.mp4 → NAS ✓ 15K\n rsync soundcore AeroClip (input)_2026-05-15_07-21-34.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_07-22-04.mp4 → NAS ✓ 8.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-22-34.mp4 → NAS ✓ 8.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-23-04.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-23-34.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_07-24-04.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_07-24-34.mp4 → NAS ✓ 15K\n rsync soundcore AeroClip (input)_2026-05-15_07-25-04.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-25-38.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-26-10.mp4 → NAS ✓ 12K\n rsync soundcore AeroClip (input)_2026-05-15_07-26-40.mp4 → NAS ✓ 11K\n rsync soundcore AeroClip (input)_2026-05-15_07-27-10.mp4 → NAS ✓ 12K\n rsync soundcore AeroClip (input)_2026-05-15_07-27-40.mp4 → NAS ✓ 8.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-28-20.mp4 → NAS ✓ 25K\n rsync soundcore AeroClip (input)_2026-05-15_07-28-52.mp4 → NAS ✓ 12K\n rsync soundcore AeroClip (input)_2026-05-15_07-29-21.mp4 → NAS ✓ 12K\n rsync soundcore AeroClip (input)_2026-05-15_07-29-51.mp4 → NAS ✓ 8.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-30-25.mp4 → NAS ✓ 13K\n rsync soundcore AeroClip (input)_2026-05-15_07-30-57.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_07-31-27.mp4 → NAS ✓ 11K\n rsync soundcore AeroClip (input)_2026-05-15_07-31-57.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-32-27.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-32-57.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-33-38.mp4 → NAS ✓ 22K\n rsync soundcore AeroClip (input)_2026-05-15_07-34-10.mp4 → NAS ✓ 72K\n rsync soundcore AeroClip (input)_2026-05-15_07-34-40.mp4 → NAS ✓ 74K\n rsync soundcore AeroClip (input)_2026-05-15_07-35-10.mp4 → NAS ✓ 63K\n rsync soundcore AeroClip (input)_2026-05-15_07-35-40.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_07-36-10.mp4 → NAS ✓ 21K\n rsync soundcore AeroClip (input)_2026-05-15_07-36-39.mp4 → NAS ✓ 35K\n rsync soundcore AeroClip (input)_2026-05-15_07-37-09.mp4 → NAS ✓ 46K\n rsync soundcore AeroClip (input)_2026-05-15_07-37-39.mp4 → NAS ✓ 40K\n rsync soundcore AeroClip (input)_2026-05-15_07-38-09.mp4 → NAS ✓ 26K\n rsync soundcore AeroClip (input)_2026-05-15_07-38-39.mp4 → NAS ✓ 29K\n rsync soundcore AeroClip (input)_2026-05-15_07-39-09.mp4 → NAS ✓ 49K\n rsync soundcore AeroClip (input)_2026-05-15_07-39-39.mp4 → NAS ✓ 37K\n rsync soundcore AeroClip (input)_2026-05-15_07-40-09.mp4 → NAS ✓ 56K\n rsync soundcore AeroClip (input)_2026-05-15_07-40-39.mp4 → NAS ✓ 39K\n rsync soundcore AeroClip (input)_2026-05-15_07-41-09.mp4 → NAS ✓ 37K\n rsync soundcore AeroClip (input)_2026-05-15_07-41-38.mp4 → NAS ✓ 159K\n rsync soundcore AeroClip (input)_2026-05-15_07-42-08.mp4 → NAS ✓ 69K\n rsync soundcore AeroClip (input)_2026-05-15_07-42-38.mp4 → NAS ✓ 51K\n rsync soundcore AeroClip (input)_2026-05-15_07-43-08.mp4 → NAS ✓ 30K\n rsync soundcore AeroClip (input)_2026-05-15_07-43-38.mp4 → NAS ✓ 33K\n rsync soundcore AeroClip (input)_2026-05-15_07-44-08.mp4 → NAS ✓ 71K\n rsync soundcore AeroClip (input)_2026-05-15_07-44-38.mp4 → NAS ✓ 38K\n rsync soundcore AeroClip (input)_2026-05-15_07-45-08.mp4 → NAS ✓ 21K\n rsync soundcore AeroClip (input)_2026-05-15_07-45-38.mp4 → NAS ✓ 37K\n rsync soundcore AeroClip (input)_2026-05-15_07-46-08.mp4 → NAS ✓ 50K\n rsync soundcore AeroClip (input)_2026-05-15_07-46-38.mp4 → NAS ✓ 26K\n rsync soundcore AeroClip (input)_2026-05-15_07-47-08.mp4 → NAS ✓ 32K\n rsync soundcore AeroClip (input)_2026-05-15_07-47-38.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_07-48-08.mp4 → NAS ✓ 32K\n rsync soundcore AeroClip (input)_2026-05-15_07-48-38.mp4 → NAS ✓ 62K\n rsync soundcore AeroClip (input)_2026-05-15_07-49-08.mp4 → NAS ✓ 110K\n rsync soundcore AeroClip (input)_2026-05-15_07-49-38.mp4 → NAS ✓ 51K\n rsync soundcore AeroClip (input)_2026-05-15_07-50-08.mp4 → NAS ✓ 35K\n rsync soundcore AeroClip (input)_2026-05-15_07-50-38.mp4 → NAS ✓ 81K\n rsync soundcore AeroClip (input)_2026-05-15_07-51-08.mp4 → NAS ✓ 72K\n rsync soundcore AeroClip (input)_2026-05-15_07-51-38.mp4 → NAS ✓ 26K\n rsync soundcore AeroClip (input)_2026-05-15_07-52-08.mp4 → NAS ✓ 22K\n rsync soundcore AeroClip (input)_2026-05-15_07-52-38.mp4 → NAS ✓ 17K\n rsync soundcore AeroClip (input)_2026-05-15_07-53-08.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_07-53-37.mp4 → NAS ✓ 21K\n rsync soundcore AeroClip (input)_2026-05-15_07-54-07.mp4 → NAS ✓ 28K\n rsync soundcore AeroClip (input)_2026-05-15_07-54-37.mp4 → NAS ✓ 19K\n rsync soundcore AeroClip (input)_2026-05-15_07-55-07.mp4 → NAS ✓ 17K\n rsync soundcore AeroClip (input)_2026-05-15_07-55-37.mp4 → NAS ✓ 15K\n rsync soundcore AeroClip (input)_2026-05-15_07-56-07.mp4 → NAS ✓ 16K\n rsync soundcore AeroClip (input)_2026-05-15_07-56-37.mp4 → NAS ✓ 16K\n rsync soundcore AeroClip (input)_2026-05-15_07-57-07.mp4 → NAS ✓ 11K\n rsync soundcore AeroClip (input)_2026-05-15_07-57-37.mp4 → NAS ✓ 8.0K\n rsync soundcore AeroClip (input)_2026-05-15_07-58-07.mp4 → NAS ✓ 15K\n rsync soundcore AeroClip (input)_2026-05-15_07-58-37.mp4 → NAS ✓ 15K\n rsync soundcore AeroClip (input)_2026-05-15_07-59-07.mp4 → NAS ✓ 17K\n rsync soundcore AeroClip (input)_2026-05-15_07-59-37.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-00-26.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-00-58.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-01-47.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-02-43.mp4 → NAS ✓ 18K\n rsync soundcore AeroClip (input)_2026-05-15_08-03-20.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-03-52.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_08-04-22.mp4 → NAS ✓ 9.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-04-52.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-05-37.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-06-09.mp4 → NAS ✓ 7.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-08-20.mp4 → NAS ✓ 13K\n rsync soundcore AeroClip (input)_2026-05-15_08-08-52.mp4 → NAS ✓ 6.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-09-36.mp4 → NAS ✓ 12K\n rsync soundcore AeroClip (input)_2026-05-15_08-10-08.mp4 → NAS ✓ 10K\n rsync soundcore AeroClip (input)_2026-05-15_08-10-38.mp4 → NAS ✓ 45K\n rsync soundcore AeroClip (input)_2026-05-15_08-11-08.mp4 → NAS ✓ 62K\n rsync soundcore AeroClip (input)_2026-05-15_08-11-38.mp4 → NAS ✓ 23K\n rsync soundcore AeroClip (input)_2026-05-15_08-12-08.mp4 → NAS ✓ 26K\n rsync soundcore AeroClip (input)_2026-05-15_08-12-38.mp4 → NAS ✓ 13K\n rsync soundcore AeroClip (input)_2026-05-15_08-13-08.mp4 → NAS ✓ 16K\n rsync soundcore AeroClip (input)_2026-05-15_08-13-38.mp4 → NAS ✓ 14K\n rsync soundcore AeroClip (input)_2026-05-15_08-14-08.mp4 → NAS ✓ 16K\n rsync soundcore AeroClip (input)_2026-05-15_08-14-38.mp4 → NAS ✓ 20K\n rsync soundcore AeroClip (input)_2026-05-15_08-15-31.mp4 → NAS ✓ 5.0K\n rsync soundcore AeroClip (input)_2026-05-15_08-16-03.mp4 → NAS ✓ 21K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-17-04.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-17-35.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-18-05.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-18-35.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-19-05.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-19-35.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-20-05.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-20-35.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-21-05.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-21-34.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-22-04.mp4 → NAS ✓ 213K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-22-34.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-23-04.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-23-34.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-24-04.mp4 → NAS ✓ 234K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-24-33.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-25-03.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-25-33.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-26-03.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-26-33.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-27-03.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-27-32.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-28-02.mp4 → NAS ✓ 225K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-28-32.mp4 → NAS ✓ 224K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-29-02.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-29-32.mp4 → NAS ✓ 188K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-30-02.mp4 → NAS ✓ 185K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-30-32.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-31-02.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-31-32.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-32-01.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-32-31.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-33-01.mp4 → NAS ✓ 235K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-33-31.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-34-01.mp4 → NAS ✓ 224K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-34-30.mp4 → NAS ✓ 218K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-35-00.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-35-30.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-35-59.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-36-29.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-36-59.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-37-29.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-37-59.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-38-28.mp4 → NAS ✓ 214K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-38-58.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-39-28.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-39-58.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-40-27.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-40-57.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-41-27.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-41-56.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-42-26.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-42-56.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-43-26.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-43-56.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-44-25.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-44-55.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-45-24.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-45-54.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-46-24.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-46-54.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-47-24.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-47-54.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-48-24.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-48-54.mp4 → NAS ✓ 220K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-49-24.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-49-54.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-50-23.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-50-53.mp4 → NAS ✓ 232K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-51-22.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-51-52.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-52-22.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-52-51.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-53-21.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-53-51.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-54-21.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-54-50.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-55-20.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-55-50.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-56-20.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-56-49.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-57-19.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-57-49.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-58-18.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-58-48.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-59-18.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_08-59-48.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-00-18.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-00-47.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-01-17.mp4 → NAS ✓ 214K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-01-47.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-02-16.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-02-46.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-03-16.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-03-46.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-04-16.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-04-46.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-05-15.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-05-45.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-06-15.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-06-45.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-07-15.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-07-45.mp4 → NAS ✓ 236K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-08-15.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-08-44.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-09-14.mp4 → NAS ✓ 217K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-09-44.mp4 → NAS ✓ 219K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-10-14.mp4 → NAS ✓ 219K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-10-43.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-11-13.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-11-43.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-12-13.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-12-43.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-13-13.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-13-42.mp4 → NAS ✓ 223K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-14-12.mp4 → NAS ✓ 223K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-14-42.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-15-12.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-15-41.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-16-11.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-16-41.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-17-11.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-17-41.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-18-11.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-18-41.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-19-11.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-19-41.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-20-11.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-20-41.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-21-10.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-21-40.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-22-10.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-22-40.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-23-10.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-23-40.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-24-10.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-24-39.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-25-09.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-25-39.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-26-09.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-26-39.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-27-08.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-27-38.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-28-08.mp4 → NAS ✓ 225K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-28-38.mp4 → NAS ✓ 240K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-29-08.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-29-38.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-30-07.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-30-37.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-31-07.mp4 → NAS ✓ 235K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-31-37.mp4 → NAS ✓ 220K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-32-06.mp4 → NAS ✓ 214K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-32-36.mp4 → NAS ✓ 220K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-33-06.mp4 → NAS ✓ 228K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-33-36.mp4 → NAS ✓ 232K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-34-05.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-34-35.mp4 → NAS ✓ 235K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-35-05.mp4 → NAS ✓ 219K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-35-35.mp4 → NAS ✓ 227K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-36-04.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-36-34.mp4 → NAS ✓ 231K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-37-04.mp4 → NAS ✓ 230K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-37-34.mp4 → NAS ✓ 241K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-38-03.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-38-33.mp4 → NAS ✓ 226K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-39-03.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-39-33.mp4 → NAS ✓ 227K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-40-02.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-40-32.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-41-02.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-41-32.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-42-02.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-42-32.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-43-02.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-43-32.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-44-01.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-44-31.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-45-01.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-45-31.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-46-01.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-46-31.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-47-01.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-47-31.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-48-01.mp4 → NAS ✓ 188K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-48-31.mp4 → NAS ✓ 185K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-49-01.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-49-31.mp4 → NAS ✓ 186K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-50-01.mp4 → NAS ✓ 186K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-50-31.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-51-00.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-51-30.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-52-00.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-58-06.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-58-37.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-59-07.mp4 → NAS ✓ 190K\n rsync MacBook Pro Microphone (input)_2026-05-15_09-59-37.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-00-07.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-00-37.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-01-07.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-01-37.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-02-07.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-02-37.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-03-07.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-03-36.mp4 → NAS ✓ 231K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-04-06.mp4 → NAS ✓ 191K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-04-36.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-05-06.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-05-36.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-06-06.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-06-36.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-07-06.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-07-36.mp4 → NAS ✓ 218K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-08-05.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-08-35.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-09-05.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-09-35.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-10-05.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-10-34.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-11-04.mp4 → NAS ✓ 188K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-11-34.mp4 → NAS ✓ 185K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-12-04.mp4 → NAS ✓ 187K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-12-34.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-13-04.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-13-34.mp4 → NAS ✓ 230K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-14-03.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-14-33.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-15-03.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-15-33.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-16-03.mp4 → NAS ✓ 215K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-16-33.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-17-03.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-17-33.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-18-03.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-18-32.mp4 → NAS ✓ 188K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-19-02.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-19-32.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-20-02.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-20-32.mp4 → NAS ✓ 232K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-21-02.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-21-31.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-22-01.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-22-31.mp4 → NAS ✓ 223K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-23-01.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-23-31.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-24-01.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-24-30.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-25-00.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-25-30.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-26-00.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-26-30.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-27-00.mp4 → NAS ✓ 229K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-27-30.mp4 → NAS ✓ 235K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-28-00.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-28-30.mp4 → NAS ✓ 224K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-29-00.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-29-30.mp4 → NAS ✓ 236K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-29-59.mp4 → NAS ✓ 232K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-30-29.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-30-59.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-31-29.mp4 → NAS ✓ 226K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-31-59.mp4 → NAS ✓ 240K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-32-28.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-32-58.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-33-28.mp4 → NAS ✓ 243K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-33-58.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-34-27.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-34-57.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-35-27.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-35-57.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-36-27.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-36-57.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-37-27.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-37-57.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-38-27.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-38-57.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-39-26.mp4 → NAS ✓ 228K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-39-56.mp4 → NAS ✓ 217K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-40-26.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-40-56.mp4 → NAS ✓ 189K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-41-26.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-41-56.mp4 → NAS ✓ 229K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-42-26.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-42-55.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-43-25.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-43-55.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-44-25.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-44-55.mp4 → NAS ✓ 225K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-45-25.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-45-55.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-46-24.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-46-54.mp4 → NAS ✓ 193K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-47-24.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-47-54.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-48-23.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-48-53.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-49-23.mp4 → NAS ✓ 202K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-49-53.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-50-23.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-50-52.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-51-22.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-51-52.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-52-22.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-52-51.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-53-21.mp4 → NAS ✓ 201K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-53-51.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-54-21.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-54-51.mp4 → NAS ✓ 197K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-55-21.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-55-50.mp4 → NAS ✓ 235K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-56-20.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-56-50.mp4 → NAS ✓ 192K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-57-19.mp4 → NAS ✓ 196K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-57-49.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-58-19.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-58-49.mp4 → NAS ✓ 200K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-59-19.mp4 → NAS ✓ 194K\n rsync MacBook Pro Microphone (input)_2026-05-15_10-59-49.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-00-19.mp4 → NAS ✓ 206K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-00-48.mp4 → NAS ✓ 222K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-01-18.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-01-48.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-02-18.mp4 → NAS ✓ 225K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-02-48.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-03-18.mp4 → NAS ✓ 203K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-03-47.mp4 → NAS ✓ 219K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-04-17.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-04-47.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-05-17.mp4 → NAS ✓ 223K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-05-46.mp4 → NAS ✓ 214K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-06-16.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-06-46.mp4 → NAS ✓ 213K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-07-16.mp4 → NAS ✓ 217K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-07-46.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-08-16.mp4 → NAS ✓ 212K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-08-45.mp4 → NAS ✓ 229K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-09-15.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-09-45.mp4 → NAS ✓ 226K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-10-14.mp4 → NAS ✓ 227K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-10-44.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-11-14.mp4 → NAS ✓ 209K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-11-44.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-12-14.mp4 → NAS ✓ 204K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-12-43.mp4 → NAS ✓ 210K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-13-13.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-13-43.mp4 → NAS ✓ 207K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-14-13.mp4 → NAS ✓ 208K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-14-43.mp4 → NAS ✓ 227K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-15-13.mp4 → NAS ✓ 239K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-15-42.mp4 → NAS ✓ 220K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-16-12.mp4 → NAS ✓ 211K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-16-42.mp4 → NAS ✓ 234K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-17-12.mp4 → NAS ✓ 198K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-17-42.mp4 → NAS ✓ 199K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-18-12.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-18-41.mp4 → NAS ✓ 195K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-19-11.mp4 → NAS ✓ 205K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-19-41.mp4 → NAS ✓ 225K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-20-11.mp4 → NAS ✓ 216K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-20-40.mp4 → NAS ✓ 68K\n rsync MacBook Pro Microphone (input)_2026-05-15_11-20-50.mp4 → NAS ✓ 17K\n rsync soundcore AeroClip (input)_2026-05-15_11-20-51.mp4 → NAS ✓ 21K\n audio files total: 593 file(s), 86M\n\n[+07m22s] ▶ Copying screenpipe logs for 2026-05-15\n rsync logs → NAS ✓ 1 file(s), 200K\n\n[2026-05-18 09:27:38] Archive DB size: 6.6G\n[2026-05-18 09:27:38] Total time: 7m22s\n[2026-05-18 09:27:38] Sync complete for 2026-05-15\n[2026-05-18 09:27:38] ========================================\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ alias sp-start\nsp-start='npx screenpipe@latest record --disable-audio --ignored-windows \"Boosteroid\"'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ npx screenpipe@latest record\ndetected hardware tier: Mid\nwarning: parakeet is not supported on this platform, using whisper-tiny instead\n2026-05-18T09:35:34.045653Z INFO screenpipe_engine::auth_key: api auth: key resolved via secret store\nchecking permissions...\n screen recording: ok\n microphone: ok\n accessibility: ok\n2026-05-18T09:35:34.129353Z INFO screenpipe_screen::monitor::macos_version: Detected macOS version: 14.6\n2026-05-18T09:35:34.705740Z INFO screenpipe_engine::sleep_monitor: Starting macOS sleep/wake monitor\n2026-05-18T09:35:34.707418Z INFO screenpipe_engine::sleep_monitor: Screen lock/unlock observers registered (CFNotificationCenter)\n2026-05-18T09:35:34.707766Z INFO screenpipe_engine::sleep_monitor: Display reconfiguration watcher registered (CGDisplayRegisterReconfigurationCallback)\n2026-05-18T09:35:34.728020Z INFO screenpipe_engine::permission_monitor: permission monitor started screen=true mic=true accessibility=true keychain=true\n2026-05-18T09:35:34.728095Z INFO screenpipe: meeting detector enabled — independent of transcription mode\n2026-05-18T09:35:35.112296Z INFO screenpipe_engine::power::manager: power manager started (poll interval: 10s)\n2026-05-18T09:35:35.112352Z INFO screenpipe: API server listening on 127.0.0.1:3030 (localhost only)\n2026-05-18T09:35:35.112447Z INFO screenpipe: API auth enabled — run `screenpipe auth token` to view your key\n2026-05-18T09:35:35.112323Z INFO screenpipe_engine::snapshot_compaction: snapshot compaction worker started (min_age=600s, poll=300s)\n2026-05-18T09:35:35.112560Z INFO screenpipe_engine::vision_manager::manager: Starting VisionManager\n2026-05-18T09:35:35.115714Z INFO screenpipe_core::pipes: loaded pipe: day-recap\n2026-05-18T09:35:35.115964Z INFO screenpipe_core::pipes: loaded pipe: standup-update\n2026-05-18T09:35:35.116065Z INFO screenpipe_core::pipes: loaded pipe: ai-habits\n2026-05-18T09:35:35.116222Z INFO screenpipe_core::pipes: loaded pipe: time-breakdown\n2026-05-18T09:35:35.116729Z INFO screenpipe_core::pipes: loaded pipe: video-export\n2026-05-18T09:35:35.117010Z INFO screenpipe_core::pipes: loaded pipe: meeting-summary\n2026-05-18T09:35:35.117059Z INFO screenpipe_core::pipes: loaded 6 pipes from \"/Users/lukas/.screenpipe/pipes\"\n\n\n\n _ \n __________________ ___ ____ ____ (_____ ___ \n / ___/ ___/ ___/ _ \\/ _ \\/ __ \\ / __ \\/ / __ \\/ _ \\\n (__ / /__/ / / __/ __/ / / / / /_/ / / /_/ / __/\n/____/\\___/_/ \\___/\\___/_/ /_/ / .___/_/ .___/\\___/ \n /_/ /_/ \n\n\n\npower AI by everything you've seen, said or heard\nopen source | runs locally | developer friendly\n\n\n┌────────────────────────┬────────────────────────────────────┐\n│ setting │ value │\n├────────────────────────┼────────────────────────────────────┤\n│ audio chunk duration │ 30 seconds │\n│ port │ 3030 │\n│ audio disabled │ false │\n│ vision disabled │ false │\n│ pause on DRM content │ false │\n│ audio engine │ Parakeet │\n│ vad engine │ Silero │\n│ data directory │ /Users/lukas/.screenpipe │\n│ debug mode │ false │\n│ telemetry │ true │\n│ use pii removal │ true │\n│ use all monitors │ true │\n│ ignored windows │ [] │\n│ included windows │ [] │\n│ cloud sync │ disabled │\n│ auto-destruct pid │ 0 │\n│ deepgram key │ not set │\n│ api auth │ enabled │\n│ encrypt secrets │ disabled │\n│ retention days │ 14 │\n│ retention mode │ media-only (keep transcripts) │\n├────────────────────────┼────────────────────────────────────┤\n│ languages │ │\n│ │ all languages │\n├────────────────────────┼────────────────────────────────────┤\n│ monitors │ │\n│ │ id: 1 │\n│ │ id: 2 │\n├────────────────────────┼────────────────────────────────────┤\n│ audio devices │ │\n│ │ MacBook Pro Microphone (input) │\n│ │ System Audio (output) │\n└────────────────────────┴────────────────────────────────────┘\nyou are using local processing. all your data stays on your computer.\n\nwarning: telemetry is enabled. only error-level data will be sent.\nto disable, use the --disable-telemetry flag.\n\ncheck latest changes here: https://github.com/screenpipe/screenpipe/releases\n2026-05-18T09:35:35.119648Z INFO screenpipe: starting UI event capture\n2026-05-18T09:35:35.118778Z INFO screenpipe_core::pipes: pipe scheduler started (generation 2)\n2026-05-18T09:35:35.123641Z WARN screenpipe: pi agent install failed: bun not found — install from https://bun.sh\n2026-05-18T09:35:35.129085Z INFO screenpipe_engine::power::manager: initial power profile: Performance (on_ac=true, battery=Some(100))\n2026-05-18T09:35:35.134938Z INFO screenpipe_engine::ui_recorder: Starting UI event capture\n2026-05-18T09:35:35.149688Z INFO screenpipe: text-PII worker skipped at startup — async_pii_redaction=false. OPF model (~2.8 GB) will NOT be downloaded or loaded. Toggle via Settings → Privacy → AI PII removal.\n2026-05-18T09:35:35.149726Z INFO screenpipe: image-PII worker skipped at startup — async_image_pii_redaction=false. rfdetr_v9 model (~108 MB) will NOT be downloaded or loaded. Toggle via Settings → Privacy → AI PII removal.\n2026-05-18T09:35:35.149748Z INFO screenpipe_engine::ui_recorder: UI recording session started: 0404bede-2900-4a09-b527-d7a310880a81\n2026-05-18T09:35:35.149892Z INFO screenpipe_engine::calendar_speaker_id: speaker identification: started (user_name=<not set>)\n2026-05-18T09:35:35.150006Z INFO screenpipe_engine::hot_frame_cache: hot_frame_cache: warming from DB (2026-05-17 06:35:35.150003 UTC to 2026-05-18 06:35:35.150003 UTC)\n2026-05-18T09:35:35.150506Z INFO screenpipe_engine::meeting_detector: meeting v2: detection loop started (base_interval=5s, profiles=12)\n2026-05-18T09:35:35.153345Z INFO screenpipe_engine::hot_frame_cache: hot_frame_cache: warmed with 0 frame entries, coverage from 2026-05-17 06:35:35.150003 UTC\n2026-05-18T09:35:35.158094Z INFO screenpipe_engine::server: Server listening on 127.0.0.1:3030\n2026-05-18T09:35:35.169325Z INFO screenpipe_connect::mdns: mdns: advertising screenpipe on port 3030\n2026-05-18T09:35:35.221171Z INFO screenpipe_engine::vision_manager::manager: Starting vision recording for monitor 1 (1440x900)\n2026-05-18T09:35:35.221224Z INFO screenpipe_engine::vision_manager::manager: Starting event-driven capture for monitor 1 (device: monitor_1)\n2026-05-18T09:35:35.221261Z INFO screenpipe_engine::event_driven_capture: event-driven capture started for monitor 1 (device: monitor_1)\n2026-05-18T09:35:35.257517Z INFO screenpipe_engine::vision_manager::manager: Starting vision recording for monitor 2 (3008x1253)\n2026-05-18T09:35:35.257543Z INFO screenpipe_engine::vision_manager::manager: Starting event-driven capture for monitor 2 (device: monitor_2)\n2026-05-18T09:35:35.257553Z INFO screenpipe_engine::vision_manager::manager: VisionManager started with 2/2 monitor(s)\n2026-05-18T09:35:35.257560Z INFO screenpipe_engine::vision_manager::monitor_watcher: Starting monitor watcher (event-driven via CGDisplayRegisterReconfigurationCallback, 60s backstop poll)\n2026-05-18T09:35:35.257584Z INFO screenpipe_engine::event_driven_capture: event-driven capture started for monitor 2 (device: monitor_2)\n2026-05-18T09:35:35.862836Z INFO sck_rs::stream_manager: persistent SCK stream started for display 1 (1440x900, 2fps, 0 excluded)\n2026-05-18T09:35:35.925168Z INFO sck_rs::stream_manager: persistent SCK stream started for display 2 (3008x1253, 2fps, 0 excluded)","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.11801862,"height":-0.042298436},"on_screen":true,"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.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"on_screen":true,"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.3882979,"top":1.0,"width":0.11801862,"height":-0.042298436},"on_screen":true,"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.39029256,"top":1.0,"width":0.005319149,"height":-0.04549086},"on_screen":true,"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.5063165,"top":1.0,"width":0.11801862,"height":-0.042298436},"on_screen":true,"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.50831115,"top":1.0,"width":0.005319149,"height":-0.04549086},"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.6243351,"top":1.0,"width":0.11801862,"height":-0.042298436},"on_screen":true,"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.6263298,"top":1.0,"width":0.005319149,"height":-0.04549086},"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7287234,"top":1.0,"width":0.01861702,"height":-0.023144484},"on_screen":true,"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"screenpipe\"","depth":1,"bounds":{"left":0.49634308,"top":1.0,"width":0.027925532,"height":-0.02394259},"on_screen":true,"role_description":"text"}]...
|
4208632581409720272
|
8995597482196020563
|
manual
|
accessibility
|
NULL
|
Last login: Mon May 18 09:17:28 on ttys007
Poetry Last login: Mon May 18 09:17:28 on ttys007
Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents
Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
10G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ ~/.screenpipe/scripts/screenpipe_sync.sh 2026-05-15
[2026-05-18 09:19:59] ========================================
[2026-05-18 09:19:59] Screenpipe sync starting for: 2026-05-15
[2026-05-18 09:19:59] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.1G)
[2026-05-18 09:19:59] ERROR: NAS not mounted at /Volumes/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ ~/.screenpipe/scripts/screenpipe_sync.sh 2026-05-15
[2026-05-18 09:20:16] ========================================
[2026-05-18 09:20:16] Screenpipe sync starting for: 2026-05-15
[2026-05-18 09:20:16] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.1G)
NAS mount: OK /Volumes/screenpipe
Archive DB: exists (6.1G)
Data dir: OK (114 files, 146M)
[+00m05s] ▶ Counting source rows for 2026-05-15
frames: 3231
elements: 417620
ui_events: 3376
ocr_text: 1366
meetings: 2
audio_chunks: 593
audio_transcriptions: 15
[+00m06s] ▶ Initialising tables, indexes, FTS
creating tables ✓ 0m00s
creating indexes ✓ 0m00s
creating FTS tables ✓ 0m00s
[+00m06s] ▶ Syncing vision data for 2026-05-15
video_chunks ✓ 0m04s
frames (3231 rows) ✓ 0m52s
ocr_text (1366 rows) ✓ 0m30s
ui_events (3376 rows) ✓ 0m01s
elements (417620 rows) ✓ 0m37s
meetings (2 rows) ✓ 0m00s
[+02m10s] ▶ Syncing audio data for 2026-05-15
audio_chunks (593 rows) ✓ 0m01s
audio_transcriptions (15 rows) ✓ 0m00s
[+02m11s] ▶ Updating FTS indexes
elements_fts ✓ 1m13s
frames_fts ✓ 1m51s
ui_events_fts ✓ 0m02s
audio_transcriptions_fts ✓ 0m01s
[+05m18s] ▶ Verifying DB
frames: 3231 / 3231 ✓
elements: 417620 / 417620 ✓
ui_events: 3376 / 3376 ✓
ocr_text: 1366 / 1366 ✓
meetings: 2 / 2 ✓
audio_chunks: 593 / 593 ✓
audio_transcriptions: 15 / 15 ✓
[+06m17s] ▶ Copying data folder for 2026-05-15
rsync 2026-05-15/ → NAS ✓ 0m10s (114 files, 146M)
[+06m27s] ▶ Copying audio files for 2026-05-15
rsync System Audio (output)_2026-05-15_06-26-46.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-26-46.mp4 → NAS ✓ 8.0K
rsync System Audio (output)_2026-05-15_06-27-10.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-27-18.mp4 → NAS ✓ 70K
rsync System Audio (output)_2026-05-15_06-27-32.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-27-55.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-27-48.mp4 → NAS ✓ 96K
rsync System Audio (output)_2026-05-15_06-28-17.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-28-18.mp4 → NAS ✓ 79K
rsync System Audio (output)_2026-05-15_06-28-39.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-28-48.mp4 → NAS ✓ 80K
rsync System Audio (output)_2026-05-15_06-29-02.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-29-24.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-29-18.mp4 → NAS ✓ 133K
rsync System Audio (output)_2026-05-15_06-29-47.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-29-48.mp4 → NAS ✓ 90K
rsync System Audio (output)_2026-05-15_06-30-09.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-30-18.mp4 → NAS ✓ 80K
rsync System Audio (output)_2026-05-15_06-30-32.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-30-54.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-30-48.mp4 → NAS ✓ 8.0K
rsync System Audio (output)_2026-05-15_06-31-17.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-31-18.mp4 → NAS ✓ 10K
rsync System Audio (output)_2026-05-15_06-31-39.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-31-48.mp4 → NAS ✓ 31K
rsync System Audio (output)_2026-05-15_06-32-01.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-32-24.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-32-18.mp4 → NAS ✓ 74K
rsync System Audio (output)_2026-05-15_06-32-46.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-32-48.mp4 → NAS ✓ 108K
rsync System Audio (output)_2026-05-15_06-33-09.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-33-18.mp4 → NAS ✓ 87K
rsync System Audio (output)_2026-05-15_06-33-31.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-33-54.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-33-48.mp4 → NAS ✓ 13K
rsync System Audio (output)_2026-05-15_06-34-16.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-34-39.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-34-32.mp4 → NAS ✓ 18K
rsync System Audio (output)_2026-05-15_06-35-01.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-35-04.mp4 → NAS ✓ 7.0K
rsync System Audio (output)_2026-05-15_06-35-23.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-35-34.mp4 → NAS ✓ 54K
rsync System Audio (output)_2026-05-15_06-35-46.mp4 → NAS ✓ 5.0K
rsync System Audio (output)_2026-05-15_06-36-08.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_06-36-04.mp4 → NAS ✓ 49K
rsync soundcore AeroClip (input)_2026-05-15_06-36-34.mp4 → NAS ✓ 62K
rsync soundcore AeroClip (input)_2026-05-15_06-40-43.mp4 → NAS ✓ 74K
rsync soundcore AeroClip (input)_2026-05-15_06-41-15.mp4 → NAS ✓ 49K
rsync soundcore AeroClip (input)_2026-05-15_06-41-45.mp4 → NAS ✓ 48K
rsync soundcore AeroClip (input)_2026-05-15_06-42-04.mp4 → NAS ✓ 6.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-42-04.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-42-36.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-43-06.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-43-36.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-44-06.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-44-36.mp4 → NAS ✓ 5.0K
rsync LakyLak bose qc35 II (input)_2026-05-15_06-45-06.mp4 → NAS ✓ 5.0K
rsync MacBook Pro Microphone (input)_2026-05-15_06-45-45.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_06-46-17.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_06-46-47.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_06-47-16.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_06-47-46.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_06-48-16.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_06-48-46.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_06-49-15.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_06-49-45.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_06-50-15.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_06-50-45.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_06-51-15.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_06-51-44.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_06-52-14.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_06-52-44.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_06-53-14.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_06-53-44.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_06-54-14.mp4 → NAS ✓ 100K
rsync MacBook Pro Microphone (input)_2026-05-15_06-54-28.mp4 → NAS ✓ 16K
rsync MacBook Pro Microphone (input)_2026-05-15_06-54-51.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_06-55-24.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_06-55-53.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_06-56-23.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_06-56-53.mp4 → NAS ✓ 217K
rsync MacBook Pro Microphone (input)_2026-05-15_06-57-23.mp4 → NAS ✓ 213K
rsync MacBook Pro Microphone (input)_2026-05-15_06-57-52.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_06-58-22.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_06-58-52.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_06-59-22.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_06-59-52.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_07-00-21.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_07-00-51.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_07-01-20.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_07-01-50.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_07-02-20.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_07-02-50.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_07-03-20.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_07-03-50.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_07-04-20.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_07-04-50.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_07-05-19.mp4 → NAS ✓ 92K
rsync MacBook Pro Microphone (input)_2026-05-15_07-05-33.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_07-05-33.mp4 → NAS ✓ 28K
rsync soundcore AeroClip (input)_2026-05-15_07-06-05.mp4 → NAS ✓ 65K
rsync soundcore AeroClip (input)_2026-05-15_07-06-35.mp4 → NAS ✓ 44K
rsync soundcore AeroClip (input)_2026-05-15_07-07-05.mp4 → NAS ✓ 66K
rsync soundcore AeroClip (input)_2026-05-15_07-07-35.mp4 → NAS ✓ 114K
rsync soundcore AeroClip (input)_2026-05-15_07-08-05.mp4 → NAS ✓ 61K
rsync soundcore AeroClip (input)_2026-05-15_07-08-35.mp4 → NAS ✓ 96K
rsync soundcore AeroClip (input)_2026-05-15_07-09-05.mp4 → NAS ✓ 44K
rsync soundcore AeroClip (input)_2026-05-15_07-09-35.mp4 → NAS ✓ 38K
rsync soundcore AeroClip (input)_2026-05-15_07-10-05.mp4 → NAS ✓ 11K
rsync soundcore AeroClip (input)_2026-05-15_07-10-35.mp4 → NAS ✓ 31K
rsync soundcore AeroClip (input)_2026-05-15_07-11-05.mp4 → NAS ✓ 55K
rsync soundcore AeroClip (input)_2026-05-15_07-11-35.mp4 → NAS ✓ 51K
rsync soundcore AeroClip (input)_2026-05-15_07-12-04.mp4 → NAS ✓ 36K
rsync soundcore AeroClip (input)_2026-05-15_07-12-34.mp4 → NAS ✓ 24K
rsync soundcore AeroClip (input)_2026-05-15_07-13-04.mp4 → NAS ✓ 25K
rsync soundcore AeroClip (input)_2026-05-15_07-13-34.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_07-14-04.mp4 → NAS ✓ 39K
rsync soundcore AeroClip (input)_2026-05-15_07-14-34.mp4 → NAS ✓ 31K
rsync soundcore AeroClip (input)_2026-05-15_07-15-04.mp4 → NAS ✓ 28K
rsync soundcore AeroClip (input)_2026-05-15_07-15-34.mp4 → NAS ✓ 35K
rsync soundcore AeroClip (input)_2026-05-15_07-16-04.mp4 → NAS ✓ 44K
rsync soundcore AeroClip (input)_2026-05-15_07-16-34.mp4 → NAS ✓ 31K
rsync soundcore AeroClip (input)_2026-05-15_07-17-04.mp4 → NAS ✓ 27K
rsync soundcore AeroClip (input)_2026-05-15_07-17-34.mp4 → NAS ✓ 22K
rsync soundcore AeroClip (input)_2026-05-15_07-18-04.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_07-18-34.mp4 → NAS ✓ 25K
rsync soundcore AeroClip (input)_2026-05-15_07-19-04.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_07-19-34.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_07-20-04.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_07-20-34.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_07-21-04.mp4 → NAS ✓ 15K
rsync soundcore AeroClip (input)_2026-05-15_07-21-34.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_07-22-04.mp4 → NAS ✓ 8.0K
rsync soundcore AeroClip (input)_2026-05-15_07-22-34.mp4 → NAS ✓ 8.0K
rsync soundcore AeroClip (input)_2026-05-15_07-23-04.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_07-23-34.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_07-24-04.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_07-24-34.mp4 → NAS ✓ 15K
rsync soundcore AeroClip (input)_2026-05-15_07-25-04.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_07-25-38.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_07-26-10.mp4 → NAS ✓ 12K
rsync soundcore AeroClip (input)_2026-05-15_07-26-40.mp4 → NAS ✓ 11K
rsync soundcore AeroClip (input)_2026-05-15_07-27-10.mp4 → NAS ✓ 12K
rsync soundcore AeroClip (input)_2026-05-15_07-27-40.mp4 → NAS ✓ 8.0K
rsync soundcore AeroClip (input)_2026-05-15_07-28-20.mp4 → NAS ✓ 25K
rsync soundcore AeroClip (input)_2026-05-15_07-28-52.mp4 → NAS ✓ 12K
rsync soundcore AeroClip (input)_2026-05-15_07-29-21.mp4 → NAS ✓ 12K
rsync soundcore AeroClip (input)_2026-05-15_07-29-51.mp4 → NAS ✓ 8.0K
rsync soundcore AeroClip (input)_2026-05-15_07-30-25.mp4 → NAS ✓ 13K
rsync soundcore AeroClip (input)_2026-05-15_07-30-57.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_07-31-27.mp4 → NAS ✓ 11K
rsync soundcore AeroClip (input)_2026-05-15_07-31-57.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_07-32-27.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_07-32-57.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_07-33-38.mp4 → NAS ✓ 22K
rsync soundcore AeroClip (input)_2026-05-15_07-34-10.mp4 → NAS ✓ 72K
rsync soundcore AeroClip (input)_2026-05-15_07-34-40.mp4 → NAS ✓ 74K
rsync soundcore AeroClip (input)_2026-05-15_07-35-10.mp4 → NAS ✓ 63K
rsync soundcore AeroClip (input)_2026-05-15_07-35-40.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_07-36-10.mp4 → NAS ✓ 21K
rsync soundcore AeroClip (input)_2026-05-15_07-36-39.mp4 → NAS ✓ 35K
rsync soundcore AeroClip (input)_2026-05-15_07-37-09.mp4 → NAS ✓ 46K
rsync soundcore AeroClip (input)_2026-05-15_07-37-39.mp4 → NAS ✓ 40K
rsync soundcore AeroClip (input)_2026-05-15_07-38-09.mp4 → NAS ✓ 26K
rsync soundcore AeroClip (input)_2026-05-15_07-38-39.mp4 → NAS ✓ 29K
rsync soundcore AeroClip (input)_2026-05-15_07-39-09.mp4 → NAS ✓ 49K
rsync soundcore AeroClip (input)_2026-05-15_07-39-39.mp4 → NAS ✓ 37K
rsync soundcore AeroClip (input)_2026-05-15_07-40-09.mp4 → NAS ✓ 56K
rsync soundcore AeroClip (input)_2026-05-15_07-40-39.mp4 → NAS ✓ 39K
rsync soundcore AeroClip (input)_2026-05-15_07-41-09.mp4 → NAS ✓ 37K
rsync soundcore AeroClip (input)_2026-05-15_07-41-38.mp4 → NAS ✓ 159K
rsync soundcore AeroClip (input)_2026-05-15_07-42-08.mp4 → NAS ✓ 69K
rsync soundcore AeroClip (input)_2026-05-15_07-42-38.mp4 → NAS ✓ 51K
rsync soundcore AeroClip (input)_2026-05-15_07-43-08.mp4 → NAS ✓ 30K
rsync soundcore AeroClip (input)_2026-05-15_07-43-38.mp4 → NAS ✓ 33K
rsync soundcore AeroClip (input)_2026-05-15_07-44-08.mp4 → NAS ✓ 71K
rsync soundcore AeroClip (input)_2026-05-15_07-44-38.mp4 → NAS ✓ 38K
rsync soundcore AeroClip (input)_2026-05-15_07-45-08.mp4 → NAS ✓ 21K
rsync soundcore AeroClip (input)_2026-05-15_07-45-38.mp4 → NAS ✓ 37K
rsync soundcore AeroClip (input)_2026-05-15_07-46-08.mp4 → NAS ✓ 50K
rsync soundcore AeroClip (input)_2026-05-15_07-46-38.mp4 → NAS ✓ 26K
rsync soundcore AeroClip (input)_2026-05-15_07-47-08.mp4 → NAS ✓ 32K
rsync soundcore AeroClip (input)_2026-05-15_07-47-38.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_07-48-08.mp4 → NAS ✓ 32K
rsync soundcore AeroClip (input)_2026-05-15_07-48-38.mp4 → NAS ✓ 62K
rsync soundcore AeroClip (input)_2026-05-15_07-49-08.mp4 → NAS ✓ 110K
rsync soundcore AeroClip (input)_2026-05-15_07-49-38.mp4 → NAS ✓ 51K
rsync soundcore AeroClip (input)_2026-05-15_07-50-08.mp4 → NAS ✓ 35K
rsync soundcore AeroClip (input)_2026-05-15_07-50-38.mp4 → NAS ✓ 81K
rsync soundcore AeroClip (input)_2026-05-15_07-51-08.mp4 → NAS ✓ 72K
rsync soundcore AeroClip (input)_2026-05-15_07-51-38.mp4 → NAS ✓ 26K
rsync soundcore AeroClip (input)_2026-05-15_07-52-08.mp4 → NAS ✓ 22K
rsync soundcore AeroClip (input)_2026-05-15_07-52-38.mp4 → NAS ✓ 17K
rsync soundcore AeroClip (input)_2026-05-15_07-53-08.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_07-53-37.mp4 → NAS ✓ 21K
rsync soundcore AeroClip (input)_2026-05-15_07-54-07.mp4 → NAS ✓ 28K
rsync soundcore AeroClip (input)_2026-05-15_07-54-37.mp4 → NAS ✓ 19K
rsync soundcore AeroClip (input)_2026-05-15_07-55-07.mp4 → NAS ✓ 17K
rsync soundcore AeroClip (input)_2026-05-15_07-55-37.mp4 → NAS ✓ 15K
rsync soundcore AeroClip (input)_2026-05-15_07-56-07.mp4 → NAS ✓ 16K
rsync soundcore AeroClip (input)_2026-05-15_07-56-37.mp4 → NAS ✓ 16K
rsync soundcore AeroClip (input)_2026-05-15_07-57-07.mp4 → NAS ✓ 11K
rsync soundcore AeroClip (input)_2026-05-15_07-57-37.mp4 → NAS ✓ 8.0K
rsync soundcore AeroClip (input)_2026-05-15_07-58-07.mp4 → NAS ✓ 15K
rsync soundcore AeroClip (input)_2026-05-15_07-58-37.mp4 → NAS ✓ 15K
rsync soundcore AeroClip (input)_2026-05-15_07-59-07.mp4 → NAS ✓ 17K
rsync soundcore AeroClip (input)_2026-05-15_07-59-37.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_08-00-26.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_08-00-58.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_08-01-47.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_08-02-43.mp4 → NAS ✓ 18K
rsync soundcore AeroClip (input)_2026-05-15_08-03-20.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_08-03-52.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_08-04-22.mp4 → NAS ✓ 9.0K
rsync soundcore AeroClip (input)_2026-05-15_08-04-52.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_08-05-37.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_08-06-09.mp4 → NAS ✓ 7.0K
rsync soundcore AeroClip (input)_2026-05-15_08-08-20.mp4 → NAS ✓ 13K
rsync soundcore AeroClip (input)_2026-05-15_08-08-52.mp4 → NAS ✓ 6.0K
rsync soundcore AeroClip (input)_2026-05-15_08-09-36.mp4 → NAS ✓ 12K
rsync soundcore AeroClip (input)_2026-05-15_08-10-08.mp4 → NAS ✓ 10K
rsync soundcore AeroClip (input)_2026-05-15_08-10-38.mp4 → NAS ✓ 45K
rsync soundcore AeroClip (input)_2026-05-15_08-11-08.mp4 → NAS ✓ 62K
rsync soundcore AeroClip (input)_2026-05-15_08-11-38.mp4 → NAS ✓ 23K
rsync soundcore AeroClip (input)_2026-05-15_08-12-08.mp4 → NAS ✓ 26K
rsync soundcore AeroClip (input)_2026-05-15_08-12-38.mp4 → NAS ✓ 13K
rsync soundcore AeroClip (input)_2026-05-15_08-13-08.mp4 → NAS ✓ 16K
rsync soundcore AeroClip (input)_2026-05-15_08-13-38.mp4 → NAS ✓ 14K
rsync soundcore AeroClip (input)_2026-05-15_08-14-08.mp4 → NAS ✓ 16K
rsync soundcore AeroClip (input)_2026-05-15_08-14-38.mp4 → NAS ✓ 20K
rsync soundcore AeroClip (input)_2026-05-15_08-15-31.mp4 → NAS ✓ 5.0K
rsync soundcore AeroClip (input)_2026-05-15_08-16-03.mp4 → NAS ✓ 21K
rsync MacBook Pro Microphone (input)_2026-05-15_08-17-04.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-17-35.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-18-05.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_08-18-35.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-19-05.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_08-19-35.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-20-05.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_08-20-35.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_08-21-05.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-21-34.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_08-22-04.mp4 → NAS ✓ 213K
rsync MacBook Pro Microphone (input)_2026-05-15_08-22-34.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_08-23-04.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-23-34.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_08-24-04.mp4 → NAS ✓ 234K
rsync MacBook Pro Microphone (input)_2026-05-15_08-24-33.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_08-25-03.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_08-25-33.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-26-03.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-26-33.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-27-03.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-27-32.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_08-28-02.mp4 → NAS ✓ 225K
rsync MacBook Pro Microphone (input)_2026-05-15_08-28-32.mp4 → NAS ✓ 224K
rsync MacBook Pro Microphone (input)_2026-05-15_08-29-02.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_08-29-32.mp4 → NAS ✓ 188K
rsync MacBook Pro Microphone (input)_2026-05-15_08-30-02.mp4 → NAS ✓ 185K
rsync MacBook Pro Microphone (input)_2026-05-15_08-30-32.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_08-31-02.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-31-32.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-32-01.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_08-32-31.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-33-01.mp4 → NAS ✓ 235K
rsync MacBook Pro Microphone (input)_2026-05-15_08-33-31.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_08-34-01.mp4 → NAS ✓ 224K
rsync MacBook Pro Microphone (input)_2026-05-15_08-34-30.mp4 → NAS ✓ 218K
rsync MacBook Pro Microphone (input)_2026-05-15_08-35-00.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_08-35-30.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_08-35-59.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-36-29.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-36-59.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-37-29.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-37-59.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_08-38-28.mp4 → NAS ✓ 214K
rsync MacBook Pro Microphone (input)_2026-05-15_08-38-58.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_08-39-28.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_08-39-58.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-40-27.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_08-40-57.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_08-41-27.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_08-41-56.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-42-26.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-42-56.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-43-26.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_08-43-56.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_08-44-25.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-44-55.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_08-45-24.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_08-45-54.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_08-46-24.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_08-46-54.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_08-47-24.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_08-47-54.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_08-48-24.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_08-48-54.mp4 → NAS ✓ 220K
rsync MacBook Pro Microphone (input)_2026-05-15_08-49-24.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_08-49-54.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_08-50-23.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-50-53.mp4 → NAS ✓ 232K
rsync MacBook Pro Microphone (input)_2026-05-15_08-51-22.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_08-51-52.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_08-52-22.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_08-52-51.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_08-53-21.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-53-51.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_08-54-21.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_08-54-50.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_08-55-20.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_08-55-50.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-56-20.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_08-56-49.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_08-57-19.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_08-57-49.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_08-58-18.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_08-58-48.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_08-59-18.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_08-59-48.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_09-00-18.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_09-00-47.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_09-01-17.mp4 → NAS ✓ 214K
rsync MacBook Pro Microphone (input)_2026-05-15_09-01-47.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_09-02-16.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_09-02-46.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_09-03-16.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_09-03-46.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_09-04-16.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_09-04-46.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_09-05-15.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-05-45.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-06-15.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_09-06-45.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_09-07-15.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_09-07-45.mp4 → NAS ✓ 236K
rsync MacBook Pro Microphone (input)_2026-05-15_09-08-15.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_09-08-44.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_09-09-14.mp4 → NAS ✓ 217K
rsync MacBook Pro Microphone (input)_2026-05-15_09-09-44.mp4 → NAS ✓ 219K
rsync MacBook Pro Microphone (input)_2026-05-15_09-10-14.mp4 → NAS ✓ 219K
rsync MacBook Pro Microphone (input)_2026-05-15_09-10-43.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_09-11-13.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-11-43.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_09-12-13.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_09-12-43.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-13-13.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_09-13-42.mp4 → NAS ✓ 223K
rsync MacBook Pro Microphone (input)_2026-05-15_09-14-12.mp4 → NAS ✓ 223K
rsync MacBook Pro Microphone (input)_2026-05-15_09-14-42.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_09-15-12.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_09-15-41.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_09-16-11.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-16-41.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_09-17-11.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_09-17-41.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_09-18-11.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_09-18-41.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_09-19-11.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_09-19-41.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_09-20-11.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_09-20-41.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_09-21-10.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_09-21-40.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_09-22-10.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_09-22-40.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-23-10.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_09-23-40.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_09-24-10.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_09-24-39.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_09-25-09.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_09-25-39.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_09-26-09.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_09-26-39.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_09-27-08.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_09-27-38.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_09-28-08.mp4 → NAS ✓ 225K
rsync MacBook Pro Microphone (input)_2026-05-15_09-28-38.mp4 → NAS ✓ 240K
rsync MacBook Pro Microphone (input)_2026-05-15_09-29-08.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_09-29-38.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-30-07.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_09-30-37.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_09-31-07.mp4 → NAS ✓ 235K
rsync MacBook Pro Microphone (input)_2026-05-15_09-31-37.mp4 → NAS ✓ 220K
rsync MacBook Pro Microphone (input)_2026-05-15_09-32-06.mp4 → NAS ✓ 214K
rsync MacBook Pro Microphone (input)_2026-05-15_09-32-36.mp4 → NAS ✓ 220K
rsync MacBook Pro Microphone (input)_2026-05-15_09-33-06.mp4 → NAS ✓ 228K
rsync MacBook Pro Microphone (input)_2026-05-15_09-33-36.mp4 → NAS ✓ 232K
rsync MacBook Pro Microphone (input)_2026-05-15_09-34-05.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_09-34-35.mp4 → NAS ✓ 235K
rsync MacBook Pro Microphone (input)_2026-05-15_09-35-05.mp4 → NAS ✓ 219K
rsync MacBook Pro Microphone (input)_2026-05-15_09-35-35.mp4 → NAS ✓ 227K
rsync MacBook Pro Microphone (input)_2026-05-15_09-36-04.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_09-36-34.mp4 → NAS ✓ 231K
rsync MacBook Pro Microphone (input)_2026-05-15_09-37-04.mp4 → NAS ✓ 230K
rsync MacBook Pro Microphone (input)_2026-05-15_09-37-34.mp4 → NAS ✓ 241K
rsync MacBook Pro Microphone (input)_2026-05-15_09-38-03.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_09-38-33.mp4 → NAS ✓ 226K
rsync MacBook Pro Microphone (input)_2026-05-15_09-39-03.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_09-39-33.mp4 → NAS ✓ 227K
rsync MacBook Pro Microphone (input)_2026-05-15_09-40-02.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_09-40-32.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_09-41-02.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_09-41-32.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_09-42-02.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_09-42-32.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_09-43-02.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_09-43-32.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_09-44-01.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_09-44-31.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_09-45-01.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-45-31.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_09-46-01.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_09-46-31.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_09-47-01.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-47-31.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_09-48-01.mp4 → NAS ✓ 188K
rsync MacBook Pro Microphone (input)_2026-05-15_09-48-31.mp4 → NAS ✓ 185K
rsync MacBook Pro Microphone (input)_2026-05-15_09-49-01.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_09-49-31.mp4 → NAS ✓ 186K
rsync MacBook Pro Microphone (input)_2026-05-15_09-50-01.mp4 → NAS ✓ 186K
rsync MacBook Pro Microphone (input)_2026-05-15_09-50-31.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_09-51-00.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_09-51-30.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-52-00.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_09-58-06.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_09-58-37.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_09-59-07.mp4 → NAS ✓ 190K
rsync MacBook Pro Microphone (input)_2026-05-15_09-59-37.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-00-07.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-00-37.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-01-07.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_10-01-37.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_10-02-07.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-02-37.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-03-07.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-03-36.mp4 → NAS ✓ 231K
rsync MacBook Pro Microphone (input)_2026-05-15_10-04-06.mp4 → NAS ✓ 191K
rsync MacBook Pro Microphone (input)_2026-05-15_10-04-36.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-05-06.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-05-36.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_10-06-06.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_10-06-36.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-07-06.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_10-07-36.mp4 → NAS ✓ 218K
rsync MacBook Pro Microphone (input)_2026-05-15_10-08-05.mp4 → NAS ✓ 199K
rsync MacBook Pro Microphone (input)_2026-05-15_10-08-35.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-09-05.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-09-35.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_10-10-05.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-10-34.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_10-11-04.mp4 → NAS ✓ 188K
rsync MacBook Pro Microphone (input)_2026-05-15_10-11-34.mp4 → NAS ✓ 185K
rsync MacBook Pro Microphone (input)_2026-05-15_10-12-04.mp4 → NAS ✓ 187K
rsync MacBook Pro Microphone (input)_2026-05-15_10-12-34.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-13-04.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_10-13-34.mp4 → NAS ✓ 230K
rsync MacBook Pro Microphone (input)_2026-05-15_10-14-03.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-14-33.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_10-15-03.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_10-15-33.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-16-03.mp4 → NAS ✓ 215K
rsync MacBook Pro Microphone (input)_2026-05-15_10-16-33.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-17-03.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-17-33.mp4 → NAS ✓ 208K
rsync MacBook Pro Microphone (input)_2026-05-15_10-18-03.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_10-18-32.mp4 → NAS ✓ 188K
rsync MacBook Pro Microphone (input)_2026-05-15_10-19-02.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_10-19-32.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-20-02.mp4 → NAS ✓ 206K
rsync MacBook Pro Microphone (input)_2026-05-15_10-20-32.mp4 → NAS ✓ 232K
rsync MacBook Pro Microphone (input)_2026-05-15_10-21-02.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-21-31.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_10-22-01.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-22-31.mp4 → NAS ✓ 223K
rsync MacBook Pro Microphone (input)_2026-05-15_10-23-01.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-23-31.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-24-01.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-24-30.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-25-00.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-25-30.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_10-26-00.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_10-26-30.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_10-27-00.mp4 → NAS ✓ 229K
rsync MacBook Pro Microphone (input)_2026-05-15_10-27-30.mp4 → NAS ✓ 235K
rsync MacBook Pro Microphone (input)_2026-05-15_10-28-00.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_10-28-30.mp4 → NAS ✓ 224K
rsync MacBook Pro Microphone (input)_2026-05-15_10-29-00.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_10-29-30.mp4 → NAS ✓ 236K
rsync MacBook Pro Microphone (input)_2026-05-15_10-29-59.mp4 → NAS ✓ 232K
rsync MacBook Pro Microphone (input)_2026-05-15_10-30-29.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_10-30-59.mp4 → NAS ✓ 211K
rsync MacBook Pro Microphone (input)_2026-05-15_10-31-29.mp4 → NAS ✓ 226K
rsync MacBook Pro Microphone (input)_2026-05-15_10-31-59.mp4 → NAS ✓ 240K
rsync MacBook Pro Microphone (input)_2026-05-15_10-32-28.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_10-32-58.mp4 → NAS ✓ 216K
rsync MacBook Pro Microphone (input)_2026-05-15_10-33-28.mp4 → NAS ✓ 243K
rsync MacBook Pro Microphone (input)_2026-05-15_10-33-58.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_10-34-27.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-34-57.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-35-27.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_10-35-57.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_10-36-27.mp4 → NAS ✓ 200K
rsync MacBook Pro Microphone (input)_2026-05-15_10-36-57.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_10-37-27.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-37-57.mp4 → NAS ✓ 210K
rsync MacBook Pro Microphone (input)_2026-05-15_10-38-27.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_10-38-57.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_10-39-26.mp4 → NAS ✓ 228K
rsync MacBook Pro Microphone (input)_2026-05-15_10-39-56.mp4 → NAS ✓ 217K
rsync MacBook Pro Microphone (input)_2026-05-15_10-40-26.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-40-56.mp4 → NAS ✓ 189K
rsync MacBook Pro Microphone (input)_2026-05-15_10-41-26.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-41-56.mp4 → NAS ✓ 229K
rsync MacBook Pro Microphone (input)_2026-05-15_10-42-26.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-42-55.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_10-43-25.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-43-55.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_10-44-25.mp4 → NAS ✓ 212K
rsync MacBook Pro Microphone (input)_2026-05-15_10-44-55.mp4 → NAS ✓ 225K
rsync MacBook Pro Microphone (input)_2026-05-15_10-45-25.mp4 → NAS ✓ 203K
rsync MacBook Pro Microphone (input)_2026-05-15_10-45-55.mp4 → NAS ✓ 207K
rsync MacBook Pro Microphone (input)_2026-05-15_10-46-24.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_10-46-54.mp4 → NAS ✓ 193K
rsync MacBook Pro Microphone (input)_2026-05-15_10-47-24.mp4 → NAS ✓ 198K
rsync MacBook Pro Microphone (input)_2026-05-15_10-47-54.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-48-23.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-48-53.mp4 → NAS ✓ 205K
rsync MacBook Pro Microphone (input)_2026-05-15_10-49-23.mp4 → NAS ✓ 202K
rsync MacBook Pro Microphone (input)_2026-05-15_10-49-53.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-50-23.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-50-52.mp4 → NAS ✓ 194K
rsync MacBook Pro Microphone (input)_2026-05-15_10-51-22.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-51-52.mp4 → NAS ✓ 204K
rsync MacBook Pro Microphone (input)_2026-05-15_10-52-22.mp4 → NAS ✓ 192K
rsync MacBook Pro Microphone (input)_2026-05-15_10-52-51.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_10-53-21.mp4 → NAS ✓ 201K
rsync MacBook Pro Microphone (input)_2026-05-15_10-53-51.mp4 → NAS ✓ 195K
rsync MacBook Pro Microphone (input)_2026-05-15_10-54-21.mp4 → NAS ✓ 196K
rsync MacBook Pro Microphone (input)_2026-05-15_10-54-51.mp4 → NAS ✓ 197K
rsync MacBook Pro Microphone (input)_2026-05-15_10-55-21.mp4 → NAS ✓ 209K
rsync MacBook Pro Microphone (input)_2026-05-15_10-55-50.mp4 → NAS ✓ 235K
...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49323
|
1760
|
1
|
2026-05-18T06:35:36.667115+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086136667_m1.jpg...
|
iTerm2
|
APP (-zsh)
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Mon May 18 09:17:28 on ttys007
Poetry Last login: Mon May 18 09:17:28 on ttys007
Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents
Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
⌥⌘1
APP (-zsh)...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Mon May 18 09:17:28 on ttys007\n\nPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $","depth":4,"bounds":{"left":0.0,"top":0.08777778,"width":1.0,"height":0.9122222},"on_screen":true,"lines":[{"char_start":0,"char_count":43,"bounds":{"left":0.0034722222,"top":0.08777778,"width":0.23888889,"height":0.02}},{"char_start":43,"char_count":1,"bounds":{"left":0.0034722222,"top":0.107777774,"width":0.0055555557,"height":0.02}},{"char_start":44,"char_count":87,"bounds":{"left":0.0034722222,"top":0.12777779,"width":0.48333332,"height":0.02}},{"char_start":131,"char_count":1,"bounds":{"left":0.0034722222,"top":0.14777778,"width":0.0055555557,"height":0.02}},{"char_start":132,"char_count":87,"bounds":{"left":0.0034722222,"top":0.16777778,"width":0.48333332,"height":0.02}},{"char_start":219,"char_count":76,"bounds":{"left":0.0034722222,"top":0.18777777,"width":0.42222223,"height":0.02}}],"value":"Last login: Mon May 18 09:17:28 on ttys007\n\nPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.24652778,"height":0.026666667},"on_screen":true,"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},"on_screen":true,"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.24652778,"top":0.05888889,"width":0.24652778,"height":0.026666667},"on_screen":true,"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.25069445,"top":0.06333333,"width":0.011111111,"height":0.017777778},"on_screen":true,"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.49305555,"top":0.05888889,"width":0.24652778,"height":0.026666667},"on_screen":true,"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.49722221,"top":0.06333333,"width":0.011111111,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.7395833,"top":0.05888889,"width":0.24652778,"height":0.026666667},"on_screen":true,"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.74375,"top":0.06333333,"width":0.011111111,"height":0.017777778},"on_screen":true,"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},"on_screen":true,"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"APP (-zsh)","depth":1,"bounds":{"left":0.47569445,"top":0.033333335,"width":0.05138889,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
-5494105436682280059
|
8271949437836102675
|
click
|
accessibility
|
NULL
|
Last login: Mon May 18 09:17:28 on ttys007
Poetry Last login: Mon May 18 09:17:28 on ttys007
Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents
Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
⌥⌘1
APP (-zsh)...
|
49321
|
NULL
|
NULL
|
NULL
|
|
49324
|
1761
|
1
|
2026-05-18T06:35:36.692097+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086136692_m2.jpg...
|
iTerm2
|
APP (-zsh)
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Mon May 18 09:17:28 on ttys007
Poetry Last login: Mon May 18 09:17:28 on ttys007
Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents
Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
⌥⌘1
APP (-zsh)...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Mon May 18 09:17:28 on ttys007\n\nPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.4800532,"height":-0.06304872},"on_screen":true,"value":"Last login: Mon May 18 09:17:28 on ttys007\n\nPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.11801862,"height":-0.042298436},"on_screen":true,"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.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"on_screen":true,"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.3882979,"top":1.0,"width":0.11801862,"height":-0.042298436},"on_screen":true,"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.39029256,"top":1.0,"width":0.005319149,"height":-0.04549086},"on_screen":true,"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.5063165,"top":1.0,"width":0.11801862,"height":-0.042298436},"on_screen":true,"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.50831115,"top":1.0,"width":0.005319149,"height":-0.04549086},"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.6243351,"top":1.0,"width":0.11801862,"height":-0.042298436},"on_screen":true,"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.6263298,"top":1.0,"width":0.005319149,"height":-0.04549086},"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7287234,"top":1.0,"width":0.01861702,"height":-0.023144484},"on_screen":true,"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"APP (-zsh)","depth":1,"bounds":{"left":0.49800533,"top":1.0,"width":0.024601065,"height":-0.02394259},"on_screen":true,"role_description":"text"}]...
|
-5494105436682280059
|
8271949437836102675
|
click
|
accessibility
|
NULL
|
Last login: Mon May 18 09:17:28 on ttys007
Poetry Last login: Mon May 18 09:17:28 on ttys007
Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents
Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
⌥⌘1
APP (-zsh)...
|
49322
|
NULL
|
NULL
|
NULL
|
|
49326
|
1761
|
2
|
2026-05-18T06:35:41.058258+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086141058_m2.jpg...
|
PhpStorm
|
faVsco.js – SF [jiminny@localhost]
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Laravel Idea: Generate Helper Code?
Helper Code wi Laravel Idea: Generate Helper Code?
Helper Code will help IDE to understand your Laravel app code.
text/html
text/html
text/html
Generate
Don't Show Anymore
More
The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
pipedrive-sdk-poc, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"Laravel Idea: Generate Helper Code?","depth":2,"bounds":{"left":0.8753325,"top":0.8172386,"width":0.100398935,"height":0.013567438},"on_screen":true,"role_description":"text"},{"role":"AXTextField","text":"Helper Code will help IDE to understand your Laravel app code.","depth":3,"bounds":{"left":0.8753325,"top":0.83320034,"width":0.11037234,"height":0.027134877},"on_screen":true,"value":"Helper Code will help IDE to understand your Laravel app code.","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"bounds":{"left":0.8753325,"top":0.83320034,"width":0.09275266,"height":0.027134877},"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Generate","depth":2,"bounds":{"left":0.8753325,"top":0.8659218,"width":0.018949468,"height":0.013567438},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Don't Show Anymore","depth":2,"bounds":{"left":0.89960104,"top":0.8659218,"width":0.04288564,"height":0.013567438},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"More","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.016289894,"height":0.0},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","depth":3,"bounds":{"left":0.8753325,"top":0.9074222,"width":0.11037234,"height":0.054269753},"on_screen":true,"value":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"bounds":{"left":0.8753325,"top":0.9074222,"width":0.095744684,"height":0.054269753},"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"pipedrive-sdk-poc, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.05618351,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: pipedrive-sdk-poc","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.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"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.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"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.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"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.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"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.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.13962767,"top":0.29688746,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.14827128,"top":0.29688746,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.15924202,"top":0.29688746,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.16788563,"top":0.29688746,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.17652926,"top":0.29688746,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.1875,"top":0.29688746,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.19847074,"top":0.29688746,"width":0.024268618,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.22506648,"top":0.29688746,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.23603724,"top":0.29688746,"width":0.029587766,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.34242022,"top":0.29688746,"width":0.02825798,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-5012055702521643483
|
-6978887780039161522
|
click
|
accessibility
|
NULL
|
Laravel Idea: Generate Helper Code?
Helper Code wi Laravel Idea: Generate Helper Code?
Helper Code will help IDE to understand your Laravel app code.
text/html
text/html
text/html
Generate
Don't Show Anymore
More
The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
pipedrive-sdk-poc, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49325
|
1760
|
2
|
2026-05-18T06:35:41.088388+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086141088_m1.jpg...
|
PhpStorm
|
faVsco.js – SF [jiminny@localhost]
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Laravel Idea: Generate Helper Code?
Helper Code wi Laravel Idea: Generate Helper Code?
Helper Code will help IDE to understand your Laravel app code.
text/html
text/html
text/html
Generate
Don't Show Anymore
More
The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages....
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"Laravel Idea: Generate Helper Code?","depth":2,"on_screen":true,"role_description":"text"},{"role":"AXTextField","text":"Helper Code will help IDE to understand your Laravel app code.","depth":3,"on_screen":true,"value":"Helper Code will help IDE to understand your Laravel app code.","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Generate","depth":2,"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Don't Show Anymore","depth":2,"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"More","depth":2,"bounds":{"left":0.0,"top":0.0,"width":0.034027778,"height":0.018888889},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","depth":3,"on_screen":true,"value":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-4432679975798192229
|
5981346004581079114
|
click
|
accessibility
|
NULL
|
Laravel Idea: Generate Helper Code?
Helper Code wi Laravel Idea: Generate Helper Code?
Helper Code will help IDE to understand your Laravel app code.
text/html
text/html
text/html
Generate
Don't Show Anymore
More
The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages....
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49327
|
1760
|
3
|
2026-05-18T06:35:41.569232+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086141569_m1.jpg...
|
PhpStorm
|
faVsco.js – SF [jiminny@localhost]
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Laravel Idea: Generate Helper Code?
Helper Code wi Laravel Idea: Generate Helper Code?
Helper Code will help IDE to understand your Laravel app code.
text/html
text/html
text/html
Generate
Don't Show Anymore
More
The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
pipedrive-sdk-poc, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
23
22
16
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1052 and sa.provider = 'hubspot';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1052;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = '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 pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (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 * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_reports where id IN (55);
select * from automated_report_results where id IN (81);
select * from users where id IN (10633, 13987, 11985);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
select * from automated_report_results where media_type = 'pdf' and status = 2;
SELECT * FROM automated_report_results WHERE uuid_to_bin('82e74956-6144-4cd1-a3d3-af985c3070a4') = uuid;
select * from teams where id = 1029;
select * from crm_configurations where provider = 'pipedrive';
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1029 and sa.provider = 'pipedrive';
[
{
"user_id": "23460 (owner)",
"email": "[EMAIL]",
"id": 69,
"sociable_id": 23460,
"provider_user_id": "19555731",
"provider_user_token": "v1u:AQIBAHj-LzTNK2yuuuaLqifzhWb9crUNKTpk4FlQ9rjnXqp_6AEQhDhDQVa1nvWCHEvnpvSEAAAAfjB8BgkqhkiG9w0BBwagbzBtAgEAMGgGCSqGSIb3DQEHATAeBglghkgBZQMEAS4wEQQMnG8KNcZLIjEnlRPxAgEQgDsGPIcKjsMU7Qel36BtM5FCQa56mYUy24_AAoqd12yjVFkq6egLqS0inp-5G4JE7frJURMV8VTw_fY14g:OPrsRnjDrxiocwEU38d3e3LZXhacVtw1JBRLemFCrUfFEnFkMc2apOgKTlIKCxLhDX96axvQ7rnL-Wh7FvpBAFZsyap7eIOhlO8h6NwirzBUFmB9kXHbTC1d6AZOSwoC8QOq8oArtU1rSsZy9ED3dABAwV6Bo-jE5x20U5QeFZg5uoD8tfkfxPA5yWVxZIE2Y7S_uaM95n5eV4lLVkC9pF0c7WHwUSQxw689clWepqCRwND_1ley17zfqB3ZuDrUCRFmXq_pdC5c8NAlYMsZp7lGme53C-KVntIw6ccNuj0GzLBFGK45t_w8iHBmRf1nvfgN3siC2EB9PhMmJKRmvhKM_ZY",
"provider_refresh_token": "5034113:[TELEGRAM_TOKEN]b2bfc",
"expires": 1778858898,
"refresh_token_expires": null,
"provider": "pipedrive",
"state": "connected",
"auth_scope": "base,deals:full,activities:full,contacts:full,search:read",
"retry_after": null,
"created_at": "2025-04-16 08:23:28",
"updated_at": "2026-05-15 14:28:19",
"provider_user_token_encrypted": "eyJpdiI6IjdUMTU0b1JkMUJkMFVNS0ZjZk1URmc9PSIsInZhbHVlIjoiNkQyMzJaeG1xelRMNDBzTjNTd081OUdZMUlyUEpic1l2QjEwTGg4K0NqNkx6aU56RzVlS0VubG1UemNxR1VKTUFCRHhQbGxPcDhwVXNkbnhhd1daeU0vd1ZmMUZyMXFUazFMdmZOeVhVdGxIWEM4TFdEbVVkUzVSR1ozOWJvRzU5cU0wSnNsSVByUS9kam8wVUVhM09RL0NFY1Vaemt4QTFnM1owbEdrU3FRTTVBcjlzem9uZ3hRb255UldLeVJHQXlOZXJLSmY0dUlGeGU0Nm4wZ00yd2tlaVNReUNBTDd3TjlPVmFFU2hvVjZ4ZHlYOVJYOEJNeDFSOHMycXJZZzhMRHg0ekRPMU5XdityQW15MTZ1a2V1SG4vRXJuckRkbG0xYXBPUU5iRmZzTmtVWmcrZUY2NCtuRlFxTnhIdDE1VWVpYk5LN3hVNzYwMlRHUVpHbmZlUktOTlovRjlOT1R3WWtKcUhRRHRqSXhOa1VUemgvUWx4MU5tSVlqYVJGM1JoQkVNZ0tKNCs1ejNQdjN4aU5Cb0ZPYzZTbGR1aG9nSXJuNWNYUXRvWGZIUHA2OERqNmJjalVmZkdBaWRRd21Gd0RvTytXUUtlY2VvZmhiTE8veHoxNmwvZTRMa3B2L25sd2drVytZM01VS1czWkZqVUpRa2tZaklWcGczaGZQdCtqd3EwZ1hsM3FrM3M0cHdTZUZvNHlQMDRSTG5wMmNScWJ5MFNVWmx2ZUZWK1RDRmVYZ3lpcDUzQS9YOWhrbjcrKzdDVm5VMkE4dytROUtCdGNmN3hVa3B1MHNEU295Wm5nM0tNTURQaXBxZThpc25qU1RWVWFNTmhOUk1SM3ZiQldxSklONGxkeFRGSG5GK0RwSWdaU2p5ZlNuU1BHbGtzNlkvSXZuVjBpR1pSZDU3TkcxMjY0Z1RPNVNFS3grdWozdmN3bkFwQmZSYjNsMGYycnU3Vzl4K3k3aU4zTjhTU3Era1FqUmFQbzNQcWRWelJVTG9XWTVIZFAwSm83MVp2eTBNc1l4SVR2UlJGNElaYUJ4Y3F1K3lYWXRoamRFR0drS1hPYVNNVT0iLCJtYWMiOiI4MTg5N2QyZjU4OTQzYjA5ZTU2ZWViNGIzMTcwZDM5M2FhMTQyNDg0MDMyZTMwOGJjM2RlNDg2ZGE2MzY1M2MyIiwidGFnIjoiIn0=",
"provider_refresh_token_encrypted": "eyJpdiI6InErMzV0Vlh0MjE4TjBIN0NlUENOK3c9PSIsInZhbHVlIjoiYTd1ZThZQmlTRnhac3NjN09xVy90dGV3emJRME11ZUtvTXNQS2F6cXptVGJOYU5uQWViVnNENTl6OWdzTzk3YjJYN3BDeTRJT2I1K2YvQ2RvZThTc0E9PSIsIm1hYyI6ImQ4YmZlNmUwNWJhZTZiY2FhYTY4MGQxY2E0MmEyZDg0ZmE0Y2RjZmVlNTBjMGY5YjQ3YTgzODBlNGVjM2VhYmIiLCJ0YWciOiIifQ==",
"encryption_key": "0x01020300786192D9D96DD60D3D1EBC9DFAEE5F0C45EE80165CF3F3D2B3B627026AA7CFC7CA0128DD463535D32EE491ADBADF8B07596B0000006E306C06092A864886F70D010706A05F305D020100305806092A864886F70D010701301E060960864801650304012E3011040C7FB1319048ECB2EA3F23B995020110802B52D22F5EAD341AB238FBBCB6093156E443876A664BA5555D722565C2B2D04422C868CD7350555E3CC74221",
"sociable_type": "user",
"owner_id": 23460
},
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Code changed:
Hide
Sync Changes
Hide This Notification
20
1
18
2
6
Previous Highlighted Error
Next Highlighted Error
SELECT a.id, a.uuid, a.actual_start_time, o.id, o.uuid FROM opportunities o
JOIN activities a ON o.id = a.opportunity_id
WHERE a.crm_configuration_id = 39
AND a.actual_start_time > '2025-10-13'
AND a.type IN ('conference', 'softphone-inbound', 'softphone-outbound')
;
SELECT * FROM activities
WHERE crm_configuration_id = 39 and user_id = 143
and actual_start_time >= '2025-10-13'
AND type IN ('conference', 'softphone-inbound', 'softphone-outbound')
;
SELECT * FROM opportunities WHERE account_id IN (178);
select * from activities where id IN (620137, 620187, 620188, 620189, 620230);
# HS
SELECT * FROM opportunities WHERE id IN (238);
select * from activities where id IN (477,2076);
select * from users;
SELECT COUNT(*) FROM users;
SELECT COUNT(*) FROM activities;
SELECT COUNT(*) FROM opportunities;
UPDATE activities
SET
actual_start_time = '2025-12-19 09:00:00',
actual_end_time = '2025-12-19 10:30:00',
scheduled_start_time = '2025-12-19 09:00:00',
scheduled_end_time = '2025-12-19 10:30:00'
WHERE id IN (407509,407375);
select * from partners;
SELECT id, uuid, type, actual_start_time, user_id, crm_configuration_id
FROM activities
WHERE user_id = 143
AND actual_start_time >= '2025-10-13 00:00:00'
AND actual_start_time <= '2026-01-13 23:59:59'
ORDER BY actual_start_time DESC;
SELECT * FROM activities WHERE uuid_to_bin('78eda160-3086-435f-88a5-bb0c71b6008d') = uuid;
SELECT * FROM crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 282;
# lead_id
# account_id 177
# contact_id 3969
# opportunity_id
# stage_id 203
SELECT * FROM opportunities WHERE opportunities.crm_configuration_id = id = 282;
SELECT * FROM activities where crm_configuration_id = 39 AND type = 'conference'
AND user_id = 143 and actual_start_time >= '2025-10-13';
SELECT * FROM activities a
# JOIN opportunities o ON a.opportunity_id = o.id
WHERE a.crm_configuration_id = 39 AND a.type = 'conference'
and status = 'completed' and recording_state = 'recorded'
and a.actual_start_time >= '2025-10-13'
AND a.user_id = 143
;
select * from leads
where crm_configuration_id = 39; # 112 -> ac. 178, 109 => op. 1707
SELECT * FROM activities WHERE id IN (356013,616188,616202,616310,407509,407375,356001,356008);
SELECT * FROM activities WHERE id IN (356013,616188,616202,616310);
SELECT * FROM activities WHERE id IN (407509,407375); # leads: 112, 109 | status - 198
SELECT * FROM activities WHERE id IN (356001, 356008); # contacts:
SELECT * FROM opportunities WHERE id IN (1707);
SELECT * FROM stages where id IN (204, 198);
SELECT * FROM opportunities WHERE account_id IN (178);
SELECT * FROM opportunities WHERE crm_configuration_id = 39 AND created_at > '2025-01-01';
SELECT * FROM contacts WHERE account_id IN (178); # 4118 Musaibe, 4448 Ceco Personal
SELECT * FROM activities where crm_configuration_id = 39
AND opportunity_id IS NULL
AND is_internal = false
and status = 'completed' and recording_state = 'recorded'
AND actual_start_time >= '2025-10-13'
AND (lead_id IS NOT NULL OR contact_id IS NOT NULL OR account_id IS NOT NULL)
# AND lead_id IN (112, 109)
;
SELECT * FROM crm_profiles WHERE user_id = 143;
select * from inboxes; # 212
select * from users where id = 143; # 143
select * from inbox_email_batches where inbox_id = 212
and updated_at >= '2026-01-28 00:00:00' order by id desc;
select * from inbox_emails where inbox_id = 212
and batch_id = 95885 order by id desc;
select * from email_messages where origin_user_id = 143;
select * from activities where user_id = 143 and updated_at >= '2026-01-28 00:00:00';
select * from participants where activity_id = 620247;
select * from crm_profiles where user_id = 143;
SELECT * FROM activities WHERE uuid_to_bin('458cf915-b914-4000-b083-5687b32b2956') = uuid; # 356001
select * from transcription where activity_id = 356001; # 6943
select * from ai_prompts where transcription_id = 6943;
SELECT * FROM activity_summary_logs where activity_id = 356001;
SELECT * FROM social_accounts WHERE sociable_id = 143;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('0164a4fb-cb95-454e-9edd-4d804e4999bd') = uuid;
# 422515 softphone tr. 8100
SELECT * FROM activities WHERE uuid_to_bin('7520add8-8d87-41a5-98e5-fc4edf96f21e') = uuid;
# 407509 conference tr. 7670 crmId: 00UD1000002J9aTMAS
select * from ai_prompts where transcription_id IN (8100, 7670);
select * from activity_summary_logs where activity_id = 407509;
select * from sidekick_settings;
select * from default_activity_types;
SELECT * FROM contacts WHERE crm_configuration_id = 39 and email = '[EMAIL]';
SELECT * FROM leads WHERE crm_configuration_id = 39 and email = '[EMAIL]';
SELECT * FROM activity_searches where user_id = 143;
SELECT * FROM groups where team_id = 1;
select * from teams where id = 1;
select * from groups where team_id = 1; # 1150 - 7e75f8025c22
select id, name, group_id, status, deleted_at, email
from users where team_id = 1 order by group_id desc ;
select * from activity_searches where id in (1977, 1978, 1979);
select * from activity_search_filters where activity_search_id IN (1977, 1978, 1979);
select * from activity_search_filters where filter = 'group_id' and value = '443f26b8-8512-437e-a9f9-7e75f8025c22'; # 10268, 10272, 10277
select * from nudges where activity_search_id IN (1977, 1978, 1979); # 877, 878, 879
INSERT INTO `activity_search_filters`
(`activity_search_id`, `filter`, `value`) VALUES
(1977, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22'),
(1978, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22'),
(1979, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22')
;
select * from crm_configurations where id = 39;
select sa.* from users u JOIN social_accounts sa on u.id = sa.sociable_id
where u.team_id = 1;
SELECT * FROM social_accounts WHERE sociable_id = 1635;
SELECT * FROM users WHERE id = 1635;
select * from teams where id = 1;
select * from users where team_id = 1;
select * from team_features where team_id = 1;
select * from features;
SELECT * FROM activity_searches where id = 1982; # 1981
SELECT * FROM activity_search_filters WHERE activity_search_id = 1982;
SELECT * FROM activities WHERE uuid_to_bin('e916569b-086c-4bd1-94d7-5e3802c27ccf') = uuid;
SELECT * FROM groups WHERE id = 1439;
SELECT * FROM users WHERE group_id = 1439;
select * from permissions; # 158
select * from roles;
select * from permission_role;
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 28;
select * from playbooks where team_id = 1;
select * from playbooks where id = 179;
select * from playbook_categories where id = 1391;
select * from users where id = 143;
select * from crm_profiles where user_id = 143;
select * from activities where crm_configuration_id = 39 and type = 'conference'
and crm_provider_id IS NOT NULL ORDER by id desc;
select * from activities where id = 422003; # 00UO400000pB6fpMAC
SELECT ar.id, ar.uuid, ar.media_type, ar.status, a.type
FROM automated_report_results ar
JOIN automated_reports a ON a.id = ar.report_id
WHERE a.type = 'ask_jiminny'
LIMIT 10;
SELECT * FROM automated_reports where id = 71;
SELECT * FROM automated_report_results where report_id = 71;
UPDATE automated_reports set playbook_categories = NULL where id = 68;
SELECT * FROM automated_report_results where id = 275;
SELECT * FROM automated_reports order by id desc;
SELECT * FROM automated_report_results order by id desc;
select * from activity_searches where user_id = 143;
select * from ask_anything_prompts;
SELECT `automated_report_results`.* FROM `automated_report_results`
INNER JOIN `automated_reports`
ON `automated_report_results`.`report_id` = `automated_reports`.`id`
WHERE 1=1
AND `automated_report_results`.`generated_at` IS NOT NULL
# AND `automated_report_results`.`sent_at` IS NOT NULL
AND `automated_reports`.`team_id` = 1
AND JSON_CONTAINS(`automated_reports`.`recipients`, 143, '$."users"')
;
SELECT * FROM automated_reports where id = 67;
SELECT * FROM automated_reports where id = 42;
SELECT * FROM users WHERE id = 143; # group 28
select * from teams where id = 3143;
select * from crm_configurations where id = 500;
select * from users where name = 'Integration Account'; # 1695
SELECT * FROM social_accounts WHERE sociable_id = 1695;
select * from activities where crm_configuration_id = 39
and recording_state = 'recorded' and duration > 60
and status = 'completed' and actual_start_time >= '2025-12-01';
SELECT * FROM activities WHERE uuid_to_bin('458cf915-b914-4000-b083-5687b32b2956') = uuid;
select * from leads;
SELECT * FROM activities WHERE uuid_to_bin('f43cf158-e60d-46e5-92f8-c4e0594a3219') = uuid; # 422003
SELECT * FROM activities WHERE id IN (16,422003);
SELECT * FROM activities where status = 'failed';
SELECT * FROM tracks WHERE activity_id = 422003;
SELECT
a.*
FROM activities a
JOIN users u ON a.user_id = u.id
WHERE
a.status = 'completed'
AND uuid_to_bin('641f1acb-16b8-42d1-8726-df52979dad0e') = u.uuid
AND a.deleted_at IS NULL
AND EXISTS (
SELECT 1 FROM tracks t
WHERE t.activity_id = a.id
AND t.type IN ('audio', 'video')
)
ORDER BY a.actual_start_time DESC
LIMIT 25;
select * from teams where id = 19;
select * from crm_configurations where provider = 'pipedrive';
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 19 and sa.provider = 'pipedrive';
SELECT * FROM social_accounts WHERE id = 1116;
Project
Project
New File or Directory…
Expand Selected
Collapse All...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"Laravel Idea: Generate Helper Code?","depth":2,"on_screen":true,"role_description":"text"},{"role":"AXTextField","text":"Helper Code will help IDE to understand your Laravel app code.","depth":3,"on_screen":true,"value":"Helper Code will help IDE to understand your Laravel app code.","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Generate","depth":2,"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Don't Show Anymore","depth":2,"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"More","depth":2,"bounds":{"left":0.0,"top":0.0,"width":0.034027778,"height":0.018888889},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","depth":3,"on_screen":true,"value":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"pipedrive-sdk-poc, menu","depth":5,"on_screen":true,"help_text":"Git Branch: pipedrive-sdk-poc","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,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"on_screen":true,"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},"on_screen":false,"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},"on_screen":false,"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},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"23","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"22","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"16","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1052 and sa.provider = 'hubspot';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1052;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_reports where id IN (55);\nselect * from automated_report_results where id IN (81);\nselect * from users where id IN (10633, 13987, 11985);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;\n\n\nselect * from automated_report_results where media_type = 'pdf' and status = 2;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('82e74956-6144-4cd1-a3d3-af985c3070a4') = uuid;\n\nselect * from teams where id = 1029;\nselect * from crm_configurations where provider = 'pipedrive';\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1029 and sa.provider = 'pipedrive';\n\n[\n {\n \"user_id\": \"23460 (owner)\",\n \"email\": \"integration-account@pipedrive.jiminny.com\",\n \"id\": 69,\n \"sociable_id\": 23460,\n \"provider_user_id\": \"19555731\",\n \"provider_user_token\": \"v1u:AQIBAHj-LzTNK2yuuuaLqifzhWb9crUNKTpk4FlQ9rjnXqp_6AEQhDhDQVa1nvWCHEvnpvSEAAAAfjB8BgkqhkiG9w0BBwagbzBtAgEAMGgGCSqGSIb3DQEHATAeBglghkgBZQMEAS4wEQQMnG8KNcZLIjEnlRPxAgEQgDsGPIcKjsMU7Qel36BtM5FCQa56mYUy24_AAoqd12yjVFkq6egLqS0inp-5G4JE7frJURMV8VTw_fY14g:OPrsRnjDrxiocwEU38d3e3LZXhacVtw1JBRLemFCrUfFEnFkMc2apOgKTlIKCxLhDX96axvQ7rnL-Wh7FvpBAFZsyap7eIOhlO8h6NwirzBUFmB9kXHbTC1d6AZOSwoC8QOq8oArtU1rSsZy9ED3dABAwV6Bo-jE5x20U5QeFZg5uoD8tfkfxPA5yWVxZIE2Y7S_uaM95n5eV4lLVkC9pF0c7WHwUSQxw689clWepqCRwND_1ley17zfqB3ZuDrUCRFmXq_pdC5c8NAlYMsZp7lGme53C-KVntIw6ccNuj0GzLBFGK45t_w8iHBmRf1nvfgN3siC2EB9PhMmJKRmvhKM_ZY\",\n \"provider_refresh_token\": \"5034113:19555731:87c14258f0c813d02767ee975f6044d46b6b2bfc\",\n \"expires\": 1778858898,\n \"refresh_token_expires\": null,\n \"provider\": \"pipedrive\",\n \"state\": \"connected\",\n \"auth_scope\": \"base,deals:full,activities:full,contacts:full,search:read\",\n \"retry_after\": null,\n \"created_at\": \"2025-04-16 08:23:28\",\n \"updated_at\": \"2026-05-15 14:28:19\",\n \"provider_user_token_encrypted\": \"eyJpdiI6IjdUMTU0b1JkMUJkMFVNS0ZjZk1URmc9PSIsInZhbHVlIjoiNkQyMzJaeG1xelRMNDBzTjNTd081OUdZMUlyUEpic1l2QjEwTGg4K0NqNkx6aU56RzVlS0VubG1UemNxR1VKTUFCRHhQbGxPcDhwVXNkbnhhd1daeU0vd1ZmMUZyMXFUazFMdmZOeVhVdGxIWEM4TFdEbVVkUzVSR1ozOWJvRzU5cU0wSnNsSVByUS9kam8wVUVhM09RL0NFY1Vaemt4QTFnM1owbEdrU3FRTTVBcjlzem9uZ3hRb255UldLeVJHQXlOZXJLSmY0dUlGeGU0Nm4wZ00yd2tlaVNReUNBTDd3TjlPVmFFU2hvVjZ4ZHlYOVJYOEJNeDFSOHMycXJZZzhMRHg0ekRPMU5XdityQW15MTZ1a2V1SG4vRXJuckRkbG0xYXBPUU5iRmZzTmtVWmcrZUY2NCtuRlFxTnhIdDE1VWVpYk5LN3hVNzYwMlRHUVpHbmZlUktOTlovRjlOT1R3WWtKcUhRRHRqSXhOa1VUemgvUWx4MU5tSVlqYVJGM1JoQkVNZ0tKNCs1ejNQdjN4aU5Cb0ZPYzZTbGR1aG9nSXJuNWNYUXRvWGZIUHA2OERqNmJjalVmZkdBaWRRd21Gd0RvTytXUUtlY2VvZmhiTE8veHoxNmwvZTRMa3B2L25sd2drVytZM01VS1czWkZqVUpRa2tZaklWcGczaGZQdCtqd3EwZ1hsM3FrM3M0cHdTZUZvNHlQMDRSTG5wMmNScWJ5MFNVWmx2ZUZWK1RDRmVYZ3lpcDUzQS9YOWhrbjcrKzdDVm5VMkE4dytROUtCdGNmN3hVa3B1MHNEU295Wm5nM0tNTURQaXBxZThpc25qU1RWVWFNTmhOUk1SM3ZiQldxSklONGxkeFRGSG5GK0RwSWdaU2p5ZlNuU1BHbGtzNlkvSXZuVjBpR1pSZDU3TkcxMjY0Z1RPNVNFS3grdWozdmN3bkFwQmZSYjNsMGYycnU3Vzl4K3k3aU4zTjhTU3Era1FqUmFQbzNQcWRWelJVTG9XWTVIZFAwSm83MVp2eTBNc1l4SVR2UlJGNElaYUJ4Y3F1K3lYWXRoamRFR0drS1hPYVNNVT0iLCJtYWMiOiI4MTg5N2QyZjU4OTQzYjA5ZTU2ZWViNGIzMTcwZDM5M2FhMTQyNDg0MDMyZTMwOGJjM2RlNDg2ZGE2MzY1M2MyIiwidGFnIjoiIn0=\",\n \"provider_refresh_token_encrypted\": \"eyJpdiI6InErMzV0Vlh0MjE4TjBIN0NlUENOK3c9PSIsInZhbHVlIjoiYTd1ZThZQmlTRnhac3NjN09xVy90dGV3emJRME11ZUtvTXNQS2F6cXptVGJOYU5uQWViVnNENTl6OWdzTzk3YjJYN3BDeTRJT2I1K2YvQ2RvZThTc0E9PSIsIm1hYyI6ImQ4YmZlNmUwNWJhZTZiY2FhYTY4MGQxY2E0MmEyZDg0ZmE0Y2RjZmVlNTBjMGY5YjQ3YTgzODBlNGVjM2VhYmIiLCJ0YWciOiIifQ==\",\n \"encryption_key\": \"0x01020300786192D9D96DD60D3D1EBC9DFAEE5F0C45EE80165CF3F3D2B3B627026AA7CFC7CA0128DD463535D32EE491ADBADF8B07596B0000006E306C06092A864886F70D010706A05F305D020100305806092A864886F70D010701301E060960864801650304012E3011040C7FB1319048ECB2EA3F23B995020110802B52D22F5EAD341AB238FBBCB6093156E443876A664BA5555D722565C2B2D04422C868CD7350555E3CC74221\",\n \"sociable_type\": \"user\",\n \"owner_id\": 23460\n },","depth":4,"on_screen":true,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1052 and sa.provider = 'hubspot';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1052;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_reports where id IN (55);\nselect * from automated_report_results where id IN (81);\nselect * from users where id IN (10633, 13987, 11985);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;\n\n\nselect * from automated_report_results where media_type = 'pdf' and status = 2;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('82e74956-6144-4cd1-a3d3-af985c3070a4') = uuid;\n\nselect * from teams where id = 1029;\nselect * from crm_configurations where provider = 'pipedrive';\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1029 and sa.provider = 'pipedrive';\n\n[\n {\n \"user_id\": \"23460 (owner)\",\n \"email\": \"integration-account@pipedrive.jiminny.com\",\n \"id\": 69,\n \"sociable_id\": 23460,\n \"provider_user_id\": \"19555731\",\n \"provider_user_token\": \"v1u:AQIBAHj-LzTNK2yuuuaLqifzhWb9crUNKTpk4FlQ9rjnXqp_6AEQhDhDQVa1nvWCHEvnpvSEAAAAfjB8BgkqhkiG9w0BBwagbzBtAgEAMGgGCSqGSIb3DQEHATAeBglghkgBZQMEAS4wEQQMnG8KNcZLIjEnlRPxAgEQgDsGPIcKjsMU7Qel36BtM5FCQa56mYUy24_AAoqd12yjVFkq6egLqS0inp-5G4JE7frJURMV8VTw_fY14g:OPrsRnjDrxiocwEU38d3e3LZXhacVtw1JBRLemFCrUfFEnFkMc2apOgKTlIKCxLhDX96axvQ7rnL-Wh7FvpBAFZsyap7eIOhlO8h6NwirzBUFmB9kXHbTC1d6AZOSwoC8QOq8oArtU1rSsZy9ED3dABAwV6Bo-jE5x20U5QeFZg5uoD8tfkfxPA5yWVxZIE2Y7S_uaM95n5eV4lLVkC9pF0c7WHwUSQxw689clWepqCRwND_1ley17zfqB3ZuDrUCRFmXq_pdC5c8NAlYMsZp7lGme53C-KVntIw6ccNuj0GzLBFGK45t_w8iHBmRf1nvfgN3siC2EB9PhMmJKRmvhKM_ZY\",\n \"provider_refresh_token\": \"5034113:19555731:87c14258f0c813d02767ee975f6044d46b6b2bfc\",\n \"expires\": 1778858898,\n \"refresh_token_expires\": null,\n \"provider\": \"pipedrive\",\n \"state\": \"connected\",\n \"auth_scope\": \"base,deals:full,activities:full,contacts:full,search:read\",\n \"retry_after\": null,\n \"created_at\": \"2025-04-16 08:23:28\",\n \"updated_at\": \"2026-05-15 14:28:19\",\n \"provider_user_token_encrypted\": \"eyJpdiI6IjdUMTU0b1JkMUJkMFVNS0ZjZk1URmc9PSIsInZhbHVlIjoiNkQyMzJaeG1xelRMNDBzTjNTd081OUdZMUlyUEpic1l2QjEwTGg4K0NqNkx6aU56RzVlS0VubG1UemNxR1VKTUFCRHhQbGxPcDhwVXNkbnhhd1daeU0vd1ZmMUZyMXFUazFMdmZOeVhVdGxIWEM4TFdEbVVkUzVSR1ozOWJvRzU5cU0wSnNsSVByUS9kam8wVUVhM09RL0NFY1Vaemt4QTFnM1owbEdrU3FRTTVBcjlzem9uZ3hRb255UldLeVJHQXlOZXJLSmY0dUlGeGU0Nm4wZ00yd2tlaVNReUNBTDd3TjlPVmFFU2hvVjZ4ZHlYOVJYOEJNeDFSOHMycXJZZzhMRHg0ekRPMU5XdityQW15MTZ1a2V1SG4vRXJuckRkbG0xYXBPUU5iRmZzTmtVWmcrZUY2NCtuRlFxTnhIdDE1VWVpYk5LN3hVNzYwMlRHUVpHbmZlUktOTlovRjlOT1R3WWtKcUhRRHRqSXhOa1VUemgvUWx4MU5tSVlqYVJGM1JoQkVNZ0tKNCs1ejNQdjN4aU5Cb0ZPYzZTbGR1aG9nSXJuNWNYUXRvWGZIUHA2OERqNmJjalVmZkdBaWRRd21Gd0RvTytXUUtlY2VvZmhiTE8veHoxNmwvZTRMa3B2L25sd2drVytZM01VS1czWkZqVUpRa2tZaklWcGczaGZQdCtqd3EwZ1hsM3FrM3M0cHdTZUZvNHlQMDRSTG5wMmNScWJ5MFNVWmx2ZUZWK1RDRmVYZ3lpcDUzQS9YOWhrbjcrKzdDVm5VMkE4dytROUtCdGNmN3hVa3B1MHNEU295Wm5nM0tNTURQaXBxZThpc25qU1RWVWFNTmhOUk1SM3ZiQldxSklONGxkeFRGSG5GK0RwSWdaU2p5ZlNuU1BHbGtzNlkvSXZuVjBpR1pSZDU3TkcxMjY0Z1RPNVNFS3grdWozdmN3bkFwQmZSYjNsMGYycnU3Vzl4K3k3aU4zTjhTU3Era1FqUmFQbzNQcWRWelJVTG9XWTVIZFAwSm83MVp2eTBNc1l4SVR2UlJGNElaYUJ4Y3F1K3lYWXRoamRFR0drS1hPYVNNVT0iLCJtYWMiOiI4MTg5N2QyZjU4OTQzYjA5ZTU2ZWViNGIzMTcwZDM5M2FhMTQyNDg0MDMyZTMwOGJjM2RlNDg2ZGE2MzY1M2MyIiwidGFnIjoiIn0=\",\n \"provider_refresh_token_encrypted\": \"eyJpdiI6InErMzV0Vlh0MjE4TjBIN0NlUENOK3c9PSIsInZhbHVlIjoiYTd1ZThZQmlTRnhac3NjN09xVy90dGV3emJRME11ZUtvTXNQS2F6cXptVGJOYU5uQWViVnNENTl6OWdzTzk3YjJYN3BDeTRJT2I1K2YvQ2RvZThTc0E9PSIsIm1hYyI6ImQ4YmZlNmUwNWJhZTZiY2FhYTY4MGQxY2E0MmEyZDg0ZmE0Y2RjZmVlNTBjMGY5YjQ3YTgzODBlNGVjM2VhYmIiLCJ0YWciOiIifQ==\",\n \"encryption_key\": \"0x01020300786192D9D96DD60D3D1EBC9DFAEE5F0C45EE80165CF3F3D2B3B627026AA7CFC7CA0128DD463535D32EE491ADBADF8B07596B0000006E306C06092A864886F70D010706A05F305D020100305806092A864886F70D010701301E060960864801650304012E3011040C7FB1319048ECB2EA3F23B995020110802B52D22F5EAD341AB238FBBCB6093156E443876A664BA5555D722565C2B2D04422C868CD7350555E3CC74221\",\n \"sociable_type\": \"user\",\n \"owner_id\": 23460\n },","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"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},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"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},"on_screen":false,"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},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"20","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"18","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"2","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"6","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT a.id, a.uuid, a.actual_start_time, o.id, o.uuid FROM opportunities o\nJOIN activities a ON o.id = a.opportunity_id\nWHERE a.crm_configuration_id = 39\nAND a.actual_start_time > '2025-10-13'\nAND a.type IN ('conference', 'softphone-inbound', 'softphone-outbound')\n;\n\nSELECT * FROM activities\nWHERE crm_configuration_id = 39 and user_id = 143\nand actual_start_time >= '2025-10-13'\nAND type IN ('conference', 'softphone-inbound', 'softphone-outbound')\n;\n\nSELECT * FROM opportunities WHERE account_id IN (178);\nselect * from activities where id IN (620137, 620187, 620188, 620189, 620230);\n\n# HS\nSELECT * FROM opportunities WHERE id IN (238);\nselect * from activities where id IN (477,2076);\n\nselect * from users;\n\nSELECT COUNT(*) FROM users;\nSELECT COUNT(*) FROM activities;\nSELECT COUNT(*) FROM opportunities;\n\nUPDATE activities\nSET\n actual_start_time = '2025-12-19 09:00:00',\n actual_end_time = '2025-12-19 10:30:00',\n scheduled_start_time = '2025-12-19 09:00:00',\n scheduled_end_time = '2025-12-19 10:30:00'\nWHERE id IN (407509,407375);\n\nselect * from partners;\n\nSELECT id, uuid, type, actual_start_time, user_id, crm_configuration_id\nFROM activities\nWHERE user_id = 143\nAND actual_start_time >= '2025-10-13 00:00:00'\nAND actual_start_time <= '2026-01-13 23:59:59'\nORDER BY actual_start_time DESC;\n\nSELECT * FROM activities WHERE uuid_to_bin('78eda160-3086-435f-88a5-bb0c71b6008d') = uuid;\nSELECT * FROM crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 282;\n# lead_id\n# account_id 177\n# contact_id 3969\n# opportunity_id\n# stage_id 203\n\nSELECT * FROM opportunities WHERE opportunities.crm_configuration_id = id = 282;\n\nSELECT * FROM activities where crm_configuration_id = 39 AND type = 'conference'\nAND user_id = 143 and actual_start_time >= '2025-10-13';\n\nSELECT * FROM activities a\n# JOIN opportunities o ON a.opportunity_id = o.id\nWHERE a.crm_configuration_id = 39 AND a.type = 'conference'\nand status = 'completed' and recording_state = 'recorded'\nand a.actual_start_time >= '2025-10-13'\nAND a.user_id = 143\n;\n\nselect * from leads\nwhere crm_configuration_id = 39; # 112 -> ac. 178, 109 => op. 1707\n\nSELECT * FROM activities WHERE id IN (356013,616188,616202,616310,407509,407375,356001,356008);\nSELECT * FROM activities WHERE id IN (356013,616188,616202,616310);\nSELECT * FROM activities WHERE id IN (407509,407375); # leads: 112, 109 | status - 198\nSELECT * FROM activities WHERE id IN (356001, 356008); # contacts:\n\nSELECT * FROM opportunities WHERE id IN (1707);\nSELECT * FROM stages where id IN (204, 198);\nSELECT * FROM opportunities WHERE account_id IN (178);\nSELECT * FROM opportunities WHERE crm_configuration_id = 39 AND created_at > '2025-01-01';\nSELECT * FROM contacts WHERE account_id IN (178); # 4118 Musaibe, 4448 Ceco Personal\n\nSELECT * FROM activities where crm_configuration_id = 39\nAND opportunity_id IS NULL\nAND is_internal = false\nand status = 'completed' and recording_state = 'recorded'\nAND actual_start_time >= '2025-10-13'\nAND (lead_id IS NOT NULL OR contact_id IS NOT NULL OR account_id IS NOT NULL)\n# AND lead_id IN (112, 109)\n;\n\nSELECT * FROM crm_profiles WHERE user_id = 143;\n\nselect * from inboxes; # 212\nselect * from users where id = 143; # 143\nselect * from inbox_email_batches where inbox_id = 212\nand updated_at >= '2026-01-28 00:00:00' order by id desc;\nselect * from inbox_emails where inbox_id = 212\nand batch_id = 95885 order by id desc;\nselect * from email_messages where origin_user_id = 143;\nselect * from activities where user_id = 143 and updated_at >= '2026-01-28 00:00:00';\nselect * from participants where activity_id = 620247;\n\nselect * from crm_profiles where user_id = 143;\n\nSELECT * FROM activities WHERE uuid_to_bin('458cf915-b914-4000-b083-5687b32b2956') = uuid; # 356001\nselect * from transcription where activity_id = 356001; # 6943\nselect * from ai_prompts where transcription_id = 6943;\nSELECT * FROM activity_summary_logs where activity_id = 356001;\n\nSELECT * FROM social_accounts WHERE sociable_id = 143;\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('0164a4fb-cb95-454e-9edd-4d804e4999bd') = uuid;\n# 422515 softphone tr. 8100\n\nSELECT * FROM activities WHERE uuid_to_bin('7520add8-8d87-41a5-98e5-fc4edf96f21e') = uuid;\n# 407509 conference tr. 7670 crmId: 00UD1000002J9aTMAS\n\nselect * from ai_prompts where transcription_id IN (8100, 7670);\nselect * from activity_summary_logs where activity_id = 407509;\n\nselect * from sidekick_settings;\nselect * from default_activity_types;\n\nSELECT * FROM contacts WHERE crm_configuration_id = 39 and email = 'm.kogoj@gmx.at';\nSELECT * FROM leads WHERE crm_configuration_id = 39 and email = 'm.kogoj@gmx.at';\n\nSELECT * FROM activity_searches where user_id = 143;\nSELECT * FROM groups where team_id = 1;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1; # 1150 - 7e75f8025c22\nselect id, name, group_id, status, deleted_at, email\nfrom users where team_id = 1 order by group_id desc ;\n\nselect * from activity_searches where id in (1977, 1978, 1979);\nselect * from activity_search_filters where activity_search_id IN (1977, 1978, 1979);\nselect * from activity_search_filters where filter = 'group_id' and value = '443f26b8-8512-437e-a9f9-7e75f8025c22'; # 10268, 10272, 10277\nselect * from nudges where activity_search_id IN (1977, 1978, 1979); # 877, 878, 879\n\nINSERT INTO `activity_search_filters`\n(`activity_search_id`, `filter`, `value`) VALUES\n(1977, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22'),\n(1978, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22'),\n(1979, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22')\n;\n\nselect * from crm_configurations where id = 39;\n\n\nselect sa.* from users u JOIN social_accounts sa on u.id = sa.sociable_id\nwhere u.team_id = 1;\nSELECT * FROM social_accounts WHERE sociable_id = 1635;\nSELECT * FROM users WHERE id = 1635;\n\nselect * from teams where id = 1;\nselect * from users where team_id = 1;\nselect * from team_features where team_id = 1;\nselect * from features;\n\nSELECT * FROM activity_searches where id = 1982; # 1981\nSELECT * FROM activity_search_filters WHERE activity_search_id = 1982;\n\nSELECT * FROM activities WHERE uuid_to_bin('e916569b-086c-4bd1-94d7-5e3802c27ccf') = uuid;\nSELECT * FROM groups WHERE id = 1439;\nSELECT * FROM users WHERE group_id = 1439;\n\nselect * from permissions; # 158\nselect * from roles;\nselect * from permission_role;\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 28;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 179;\nselect * from playbook_categories where id = 1391;\nselect * from users where id = 143;\nselect * from crm_profiles where user_id = 143;\nselect * from activities where crm_configuration_id = 39 and type = 'conference'\nand crm_provider_id IS NOT NULL ORDER by id desc;\nselect * from activities where id = 422003; # 00UO400000pB6fpMAC\n\nSELECT ar.id, ar.uuid, ar.media_type, ar.status, a.type\nFROM automated_report_results ar\nJOIN automated_reports a ON a.id = ar.report_id\nWHERE a.type = 'ask_jiminny'\nLIMIT 10;\n\nSELECT * FROM automated_reports where id = 71;\nSELECT * FROM automated_report_results where report_id = 71;\nUPDATE automated_reports set playbook_categories = NULL where id = 68;\nSELECT * FROM automated_report_results where id = 275;\n\nSELECT * FROM automated_reports order by id desc;\nSELECT * FROM automated_report_results order by id desc;\nselect * from activity_searches where user_id = 143;\nselect * from ask_anything_prompts;\n\nSELECT `automated_report_results`.* FROM `automated_report_results`\nINNER JOIN `automated_reports`\n ON `automated_report_results`.`report_id` = `automated_reports`.`id`\nWHERE 1=1\n AND `automated_report_results`.`generated_at` IS NOT NULL\n# AND `automated_report_results`.`sent_at` IS NOT NULL\n AND `automated_reports`.`team_id` = 1\n AND JSON_CONTAINS(`automated_reports`.`recipients`, 143, '$.\"users\"')\n;\n\nSELECT * FROM automated_reports where id = 67;\nSELECT * FROM automated_reports where id = 42;\nSELECT * FROM users WHERE id = 143; # group 28\n\nselect * from teams where id = 3143;\nselect * from crm_configurations where id = 500;\nselect * from users where name = 'Integration Account'; # 1695\nSELECT * FROM social_accounts WHERE sociable_id = 1695;\n\nselect * from activities where crm_configuration_id = 39\nand recording_state = 'recorded' and duration > 60\nand status = 'completed' and actual_start_time >= '2025-12-01';\n\nSELECT * FROM activities WHERE uuid_to_bin('458cf915-b914-4000-b083-5687b32b2956') = uuid;\n\nselect * from leads;\n\nSELECT * FROM activities WHERE uuid_to_bin('f43cf158-e60d-46e5-92f8-c4e0594a3219') = uuid; # 422003\nSELECT * FROM activities WHERE id IN (16,422003);\nSELECT * FROM activities where status = 'failed';\n\nSELECT * FROM tracks WHERE activity_id = 422003;\n\nSELECT\n a.*\nFROM activities a\nJOIN users u ON a.user_id = u.id\nWHERE\n a.status = 'completed'\n AND uuid_to_bin('641f1acb-16b8-42d1-8726-df52979dad0e') = u.uuid\n AND a.deleted_at IS NULL\n AND EXISTS (\n SELECT 1 FROM tracks t\n WHERE t.activity_id = a.id\n AND t.type IN ('audio', 'video')\n )\nORDER BY a.actual_start_time DESC\nLIMIT 25;\n\nselect * from teams where id = 19;\nselect * from crm_configurations where provider = 'pipedrive';\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 19 and sa.provider = 'pipedrive';\n\nSELECT * FROM social_accounts WHERE id = 1116;","depth":4,"on_screen":true,"value":"SELECT a.id, a.uuid, a.actual_start_time, o.id, o.uuid FROM opportunities o\nJOIN activities a ON o.id = a.opportunity_id\nWHERE a.crm_configuration_id = 39\nAND a.actual_start_time > '2025-10-13'\nAND a.type IN ('conference', 'softphone-inbound', 'softphone-outbound')\n;\n\nSELECT * FROM activities\nWHERE crm_configuration_id = 39 and user_id = 143\nand actual_start_time >= '2025-10-13'\nAND type IN ('conference', 'softphone-inbound', 'softphone-outbound')\n;\n\nSELECT * FROM opportunities WHERE account_id IN (178);\nselect * from activities where id IN (620137, 620187, 620188, 620189, 620230);\n\n# HS\nSELECT * FROM opportunities WHERE id IN (238);\nselect * from activities where id IN (477,2076);\n\nselect * from users;\n\nSELECT COUNT(*) FROM users;\nSELECT COUNT(*) FROM activities;\nSELECT COUNT(*) FROM opportunities;\n\nUPDATE activities\nSET\n actual_start_time = '2025-12-19 09:00:00',\n actual_end_time = '2025-12-19 10:30:00',\n scheduled_start_time = '2025-12-19 09:00:00',\n scheduled_end_time = '2025-12-19 10:30:00'\nWHERE id IN (407509,407375);\n\nselect * from partners;\n\nSELECT id, uuid, type, actual_start_time, user_id, crm_configuration_id\nFROM activities\nWHERE user_id = 143\nAND actual_start_time >= '2025-10-13 00:00:00'\nAND actual_start_time <= '2026-01-13 23:59:59'\nORDER BY actual_start_time DESC;\n\nSELECT * FROM activities WHERE uuid_to_bin('78eda160-3086-435f-88a5-bb0c71b6008d') = uuid;\nSELECT * FROM crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 282;\n# lead_id\n# account_id 177\n# contact_id 3969\n# opportunity_id\n# stage_id 203\n\nSELECT * FROM opportunities WHERE opportunities.crm_configuration_id = id = 282;\n\nSELECT * FROM activities where crm_configuration_id = 39 AND type = 'conference'\nAND user_id = 143 and actual_start_time >= '2025-10-13';\n\nSELECT * FROM activities a\n# JOIN opportunities o ON a.opportunity_id = o.id\nWHERE a.crm_configuration_id = 39 AND a.type = 'conference'\nand status = 'completed' and recording_state = 'recorded'\nand a.actual_start_time >= '2025-10-13'\nAND a.user_id = 143\n;\n\nselect * from leads\nwhere crm_configuration_id = 39; # 112 -> ac. 178, 109 => op. 1707\n\nSELECT * FROM activities WHERE id IN (356013,616188,616202,616310,407509,407375,356001,356008);\nSELECT * FROM activities WHERE id IN (356013,616188,616202,616310);\nSELECT * FROM activities WHERE id IN (407509,407375); # leads: 112, 109 | status - 198\nSELECT * FROM activities WHERE id IN (356001, 356008); # contacts:\n\nSELECT * FROM opportunities WHERE id IN (1707);\nSELECT * FROM stages where id IN (204, 198);\nSELECT * FROM opportunities WHERE account_id IN (178);\nSELECT * FROM opportunities WHERE crm_configuration_id = 39 AND created_at > '2025-01-01';\nSELECT * FROM contacts WHERE account_id IN (178); # 4118 Musaibe, 4448 Ceco Personal\n\nSELECT * FROM activities where crm_configuration_id = 39\nAND opportunity_id IS NULL\nAND is_internal = false\nand status = 'completed' and recording_state = 'recorded'\nAND actual_start_time >= '2025-10-13'\nAND (lead_id IS NOT NULL OR contact_id IS NOT NULL OR account_id IS NOT NULL)\n# AND lead_id IN (112, 109)\n;\n\nSELECT * FROM crm_profiles WHERE user_id = 143;\n\nselect * from inboxes; # 212\nselect * from users where id = 143; # 143\nselect * from inbox_email_batches where inbox_id = 212\nand updated_at >= '2026-01-28 00:00:00' order by id desc;\nselect * from inbox_emails where inbox_id = 212\nand batch_id = 95885 order by id desc;\nselect * from email_messages where origin_user_id = 143;\nselect * from activities where user_id = 143 and updated_at >= '2026-01-28 00:00:00';\nselect * from participants where activity_id = 620247;\n\nselect * from crm_profiles where user_id = 143;\n\nSELECT * FROM activities WHERE uuid_to_bin('458cf915-b914-4000-b083-5687b32b2956') = uuid; # 356001\nselect * from transcription where activity_id = 356001; # 6943\nselect * from ai_prompts where transcription_id = 6943;\nSELECT * FROM activity_summary_logs where activity_id = 356001;\n\nSELECT * FROM social_accounts WHERE sociable_id = 143;\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('0164a4fb-cb95-454e-9edd-4d804e4999bd') = uuid;\n# 422515 softphone tr. 8100\n\nSELECT * FROM activities WHERE uuid_to_bin('7520add8-8d87-41a5-98e5-fc4edf96f21e') = uuid;\n# 407509 conference tr. 7670 crmId: 00UD1000002J9aTMAS\n\nselect * from ai_prompts where transcription_id IN (8100, 7670);\nselect * from activity_summary_logs where activity_id = 407509;\n\nselect * from sidekick_settings;\nselect * from default_activity_types;\n\nSELECT * FROM contacts WHERE crm_configuration_id = 39 and email = 'm.kogoj@gmx.at';\nSELECT * FROM leads WHERE crm_configuration_id = 39 and email = 'm.kogoj@gmx.at';\n\nSELECT * FROM activity_searches where user_id = 143;\nSELECT * FROM groups where team_id = 1;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1; # 1150 - 7e75f8025c22\nselect id, name, group_id, status, deleted_at, email\nfrom users where team_id = 1 order by group_id desc ;\n\nselect * from activity_searches where id in (1977, 1978, 1979);\nselect * from activity_search_filters where activity_search_id IN (1977, 1978, 1979);\nselect * from activity_search_filters where filter = 'group_id' and value = '443f26b8-8512-437e-a9f9-7e75f8025c22'; # 10268, 10272, 10277\nselect * from nudges where activity_search_id IN (1977, 1978, 1979); # 877, 878, 879\n\nINSERT INTO `activity_search_filters`\n(`activity_search_id`, `filter`, `value`) VALUES\n(1977, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22'),\n(1978, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22'),\n(1979, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22')\n;\n\nselect * from crm_configurations where id = 39;\n\n\nselect sa.* from users u JOIN social_accounts sa on u.id = sa.sociable_id\nwhere u.team_id = 1;\nSELECT * FROM social_accounts WHERE sociable_id = 1635;\nSELECT * FROM users WHERE id = 1635;\n\nselect * from teams where id = 1;\nselect * from users where team_id = 1;\nselect * from team_features where team_id = 1;\nselect * from features;\n\nSELECT * FROM activity_searches where id = 1982; # 1981\nSELECT * FROM activity_search_filters WHERE activity_search_id = 1982;\n\nSELECT * FROM activities WHERE uuid_to_bin('e916569b-086c-4bd1-94d7-5e3802c27ccf') = uuid;\nSELECT * FROM groups WHERE id = 1439;\nSELECT * FROM users WHERE group_id = 1439;\n\nselect * from permissions; # 158\nselect * from roles;\nselect * from permission_role;\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 28;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 179;\nselect * from playbook_categories where id = 1391;\nselect * from users where id = 143;\nselect * from crm_profiles where user_id = 143;\nselect * from activities where crm_configuration_id = 39 and type = 'conference'\nand crm_provider_id IS NOT NULL ORDER by id desc;\nselect * from activities where id = 422003; # 00UO400000pB6fpMAC\n\nSELECT ar.id, ar.uuid, ar.media_type, ar.status, a.type\nFROM automated_report_results ar\nJOIN automated_reports a ON a.id = ar.report_id\nWHERE a.type = 'ask_jiminny'\nLIMIT 10;\n\nSELECT * FROM automated_reports where id = 71;\nSELECT * FROM automated_report_results where report_id = 71;\nUPDATE automated_reports set playbook_categories = NULL where id = 68;\nSELECT * FROM automated_report_results where id = 275;\n\nSELECT * FROM automated_reports order by id desc;\nSELECT * FROM automated_report_results order by id desc;\nselect * from activity_searches where user_id = 143;\nselect * from ask_anything_prompts;\n\nSELECT `automated_report_results`.* FROM `automated_report_results`\nINNER JOIN `automated_reports`\n ON `automated_report_results`.`report_id` = `automated_reports`.`id`\nWHERE 1=1\n AND `automated_report_results`.`generated_at` IS NOT NULL\n# AND `automated_report_results`.`sent_at` IS NOT NULL\n AND `automated_reports`.`team_id` = 1\n AND JSON_CONTAINS(`automated_reports`.`recipients`, 143, '$.\"users\"')\n;\n\nSELECT * FROM automated_reports where id = 67;\nSELECT * FROM automated_reports where id = 42;\nSELECT * FROM users WHERE id = 143; # group 28\n\nselect * from teams where id = 3143;\nselect * from crm_configurations where id = 500;\nselect * from users where name = 'Integration Account'; # 1695\nSELECT * FROM social_accounts WHERE sociable_id = 1695;\n\nselect * from activities where crm_configuration_id = 39\nand recording_state = 'recorded' and duration > 60\nand status = 'completed' and actual_start_time >= '2025-12-01';\n\nSELECT * FROM activities WHERE uuid_to_bin('458cf915-b914-4000-b083-5687b32b2956') = uuid;\n\nselect * from leads;\n\nSELECT * FROM activities WHERE uuid_to_bin('f43cf158-e60d-46e5-92f8-c4e0594a3219') = uuid; # 422003\nSELECT * FROM activities WHERE id IN (16,422003);\nSELECT * FROM activities where status = 'failed';\n\nSELECT * FROM tracks WHERE activity_id = 422003;\n\nSELECT\n a.*\nFROM activities a\nJOIN users u ON a.user_id = u.id\nWHERE\n a.status = 'completed'\n AND uuid_to_bin('641f1acb-16b8-42d1-8726-df52979dad0e') = u.uuid\n AND a.deleted_at IS NULL\n AND EXISTS (\n SELECT 1 FROM tracks t\n WHERE t.activity_id = a.id\n AND t.type IN ('audio', 'video')\n )\nORDER BY a.actual_start_time DESC\nLIMIT 25;\n\nselect * from teams where id = 19;\nselect * from crm_configurations where provider = 'pipedrive';\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 19 and sa.provider = 'pipedrive';\n\nSELECT * FROM social_accounts WHERE id = 1116;","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"on_screen":true,"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.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"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.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"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.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-6129082927706622875
|
6686367290062452301
|
visual_change
|
accessibility
|
NULL
|
Laravel Idea: Generate Helper Code?
Helper Code wi Laravel Idea: Generate Helper Code?
Helper Code will help IDE to understand your Laravel app code.
text/html
text/html
text/html
Generate
Don't Show Anymore
More
The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
pipedrive-sdk-poc, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
23
22
16
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1052 and sa.provider = 'hubspot';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1052;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = '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 pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (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 * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_reports where id IN (55);
select * from automated_report_results where id IN (81);
select * from users where id IN (10633, 13987, 11985);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
select * from automated_report_results where media_type = 'pdf' and status = 2;
SELECT * FROM automated_report_results WHERE uuid_to_bin('82e74956-6144-4cd1-a3d3-af985c3070a4') = uuid;
select * from teams where id = 1029;
select * from crm_configurations where provider = 'pipedrive';
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1029 and sa.provider = 'pipedrive';
[
{
"user_id": "23460 (owner)",
"email": "[EMAIL]",
"id": 69,
"sociable_id": 23460,
"provider_user_id": "19555731",
"provider_user_token": "v1u:AQIBAHj-LzTNK2yuuuaLqifzhWb9crUNKTpk4FlQ9rjnXqp_6AEQhDhDQVa1nvWCHEvnpvSEAAAAfjB8BgkqhkiG9w0BBwagbzBtAgEAMGgGCSqGSIb3DQEHATAeBglghkgBZQMEAS4wEQQMnG8KNcZLIjEnlRPxAgEQgDsGPIcKjsMU7Qel36BtM5FCQa56mYUy24_AAoqd12yjVFkq6egLqS0inp-5G4JE7frJURMV8VTw_fY14g:OPrsRnjDrxiocwEU38d3e3LZXhacVtw1JBRLemFCrUfFEnFkMc2apOgKTlIKCxLhDX96axvQ7rnL-Wh7FvpBAFZsyap7eIOhlO8h6NwirzBUFmB9kXHbTC1d6AZOSwoC8QOq8oArtU1rSsZy9ED3dABAwV6Bo-jE5x20U5QeFZg5uoD8tfkfxPA5yWVxZIE2Y7S_uaM95n5eV4lLVkC9pF0c7WHwUSQxw689clWepqCRwND_1ley17zfqB3ZuDrUCRFmXq_pdC5c8NAlYMsZp7lGme53C-KVntIw6ccNuj0GzLBFGK45t_w8iHBmRf1nvfgN3siC2EB9PhMmJKRmvhKM_ZY",
"provider_refresh_token": "5034113:[TELEGRAM_TOKEN]b2bfc",
"expires": 1778858898,
"refresh_token_expires": null,
"provider": "pipedrive",
"state": "connected",
"auth_scope": "base,deals:full,activities:full,contacts:full,search:read",
"retry_after": null,
"created_at": "2025-04-16 08:23:28",
"updated_at": "2026-05-15 14:28:19",
"provider_user_token_encrypted": "eyJpdiI6IjdUMTU0b1JkMUJkMFVNS0ZjZk1URmc9PSIsInZhbHVlIjoiNkQyMzJaeG1xelRMNDBzTjNTd081OUdZMUlyUEpic1l2QjEwTGg4K0NqNkx6aU56RzVlS0VubG1UemNxR1VKTUFCRHhQbGxPcDhwVXNkbnhhd1daeU0vd1ZmMUZyMXFUazFMdmZOeVhVdGxIWEM4TFdEbVVkUzVSR1ozOWJvRzU5cU0wSnNsSVByUS9kam8wVUVhM09RL0NFY1Vaemt4QTFnM1owbEdrU3FRTTVBcjlzem9uZ3hRb255UldLeVJHQXlOZXJLSmY0dUlGeGU0Nm4wZ00yd2tlaVNReUNBTDd3TjlPVmFFU2hvVjZ4ZHlYOVJYOEJNeDFSOHMycXJZZzhMRHg0ekRPMU5XdityQW15MTZ1a2V1SG4vRXJuckRkbG0xYXBPUU5iRmZzTmtVWmcrZUY2NCtuRlFxTnhIdDE1VWVpYk5LN3hVNzYwMlRHUVpHbmZlUktOTlovRjlOT1R3WWtKcUhRRHRqSXhOa1VUemgvUWx4MU5tSVlqYVJGM1JoQkVNZ0tKNCs1ejNQdjN4aU5Cb0ZPYzZTbGR1aG9nSXJuNWNYUXRvWGZIUHA2OERqNmJjalVmZkdBaWRRd21Gd0RvTytXUUtlY2VvZmhiTE8veHoxNmwvZTRMa3B2L25sd2drVytZM01VS1czWkZqVUpRa2tZaklWcGczaGZQdCtqd3EwZ1hsM3FrM3M0cHdTZUZvNHlQMDRSTG5wMmNScWJ5MFNVWmx2ZUZWK1RDRmVYZ3lpcDUzQS9YOWhrbjcrKzdDVm5VMkE4dytROUtCdGNmN3hVa3B1MHNEU295Wm5nM0tNTURQaXBxZThpc25qU1RWVWFNTmhOUk1SM3ZiQldxSklONGxkeFRGSG5GK0RwSWdaU2p5ZlNuU1BHbGtzNlkvSXZuVjBpR1pSZDU3TkcxMjY0Z1RPNVNFS3grdWozdmN3bkFwQmZSYjNsMGYycnU3Vzl4K3k3aU4zTjhTU3Era1FqUmFQbzNQcWRWelJVTG9XWTVIZFAwSm83MVp2eTBNc1l4SVR2UlJGNElaYUJ4Y3F1K3lYWXRoamRFR0drS1hPYVNNVT0iLCJtYWMiOiI4MTg5N2QyZjU4OTQzYjA5ZTU2ZWViNGIzMTcwZDM5M2FhMTQyNDg0MDMyZTMwOGJjM2RlNDg2ZGE2MzY1M2MyIiwidGFnIjoiIn0=",
"provider_refresh_token_encrypted": "eyJpdiI6InErMzV0Vlh0MjE4TjBIN0NlUENOK3c9PSIsInZhbHVlIjoiYTd1ZThZQmlTRnhac3NjN09xVy90dGV3emJRME11ZUtvTXNQS2F6cXptVGJOYU5uQWViVnNENTl6OWdzTzk3YjJYN3BDeTRJT2I1K2YvQ2RvZThTc0E9PSIsIm1hYyI6ImQ4YmZlNmUwNWJhZTZiY2FhYTY4MGQxY2E0MmEyZDg0ZmE0Y2RjZmVlNTBjMGY5YjQ3YTgzODBlNGVjM2VhYmIiLCJ0YWciOiIifQ==",
"encryption_key": "0x01020300786192D9D96DD60D3D1EBC9DFAEE5F0C45EE80165CF3F3D2B3B627026AA7CFC7CA0128DD463535D32EE491ADBADF8B07596B0000006E306C06092A864886F70D010706A05F305D020100305806092A864886F70D010701301E060960864801650304012E3011040C7FB1319048ECB2EA3F23B995020110802B52D22F5EAD341AB238FBBCB6093156E443876A664BA5555D722565C2B2D04422C868CD7350555E3CC74221",
"sociable_type": "user",
"owner_id": 23460
},
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Code changed:
Hide
Sync Changes
Hide This Notification
20
1
18
2
6
Previous Highlighted Error
Next Highlighted Error
SELECT a.id, a.uuid, a.actual_start_time, o.id, o.uuid FROM opportunities o
JOIN activities a ON o.id = a.opportunity_id
WHERE a.crm_configuration_id = 39
AND a.actual_start_time > '2025-10-13'
AND a.type IN ('conference', 'softphone-inbound', 'softphone-outbound')
;
SELECT * FROM activities
WHERE crm_configuration_id = 39 and user_id = 143
and actual_start_time >= '2025-10-13'
AND type IN ('conference', 'softphone-inbound', 'softphone-outbound')
;
SELECT * FROM opportunities WHERE account_id IN (178);
select * from activities where id IN (620137, 620187, 620188, 620189, 620230);
# HS
SELECT * FROM opportunities WHERE id IN (238);
select * from activities where id IN (477,2076);
select * from users;
SELECT COUNT(*) FROM users;
SELECT COUNT(*) FROM activities;
SELECT COUNT(*) FROM opportunities;
UPDATE activities
SET
actual_start_time = '2025-12-19 09:00:00',
actual_end_time = '2025-12-19 10:30:00',
scheduled_start_time = '2025-12-19 09:00:00',
scheduled_end_time = '2025-12-19 10:30:00'
WHERE id IN (407509,407375);
select * from partners;
SELECT id, uuid, type, actual_start_time, user_id, crm_configuration_id
FROM activities
WHERE user_id = 143
AND actual_start_time >= '2025-10-13 00:00:00'
AND actual_start_time <= '2026-01-13 23:59:59'
ORDER BY actual_start_time DESC;
SELECT * FROM activities WHERE uuid_to_bin('78eda160-3086-435f-88a5-bb0c71b6008d') = uuid;
SELECT * FROM crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 282;
# lead_id
# account_id 177
# contact_id 3969
# opportunity_id
# stage_id 203
SELECT * FROM opportunities WHERE opportunities.crm_configuration_id = id = 282;
SELECT * FROM activities where crm_configuration_id = 39 AND type = 'conference'
AND user_id = 143 and actual_start_time >= '2025-10-13';
SELECT * FROM activities a
# JOIN opportunities o ON a.opportunity_id = o.id
WHERE a.crm_configuration_id = 39 AND a.type = 'conference'
and status = 'completed' and recording_state = 'recorded'
and a.actual_start_time >= '2025-10-13'
AND a.user_id = 143
;
select * from leads
where crm_configuration_id = 39; # 112 -> ac. 178, 109 => op. 1707
SELECT * FROM activities WHERE id IN (356013,616188,616202,616310,407509,407375,356001,356008);
SELECT * FROM activities WHERE id IN (356013,616188,616202,616310);
SELECT * FROM activities WHERE id IN (407509,407375); # leads: 112, 109 | status - 198
SELECT * FROM activities WHERE id IN (356001, 356008); # contacts:
SELECT * FROM opportunities WHERE id IN (1707);
SELECT * FROM stages where id IN (204, 198);
SELECT * FROM opportunities WHERE account_id IN (178);
SELECT * FROM opportunities WHERE crm_configuration_id = 39 AND created_at > '2025-01-01';
SELECT * FROM contacts WHERE account_id IN (178); # 4118 Musaibe, 4448 Ceco Personal
SELECT * FROM activities where crm_configuration_id = 39
AND opportunity_id IS NULL
AND is_internal = false
and status = 'completed' and recording_state = 'recorded'
AND actual_start_time >= '2025-10-13'
AND (lead_id IS NOT NULL OR contact_id IS NOT NULL OR account_id IS NOT NULL)
# AND lead_id IN (112, 109)
;
SELECT * FROM crm_profiles WHERE user_id = 143;
select * from inboxes; # 212
select * from users where id = 143; # 143
select * from inbox_email_batches where inbox_id = 212
and updated_at >= '2026-01-28 00:00:00' order by id desc;
select * from inbox_emails where inbox_id = 212
and batch_id = 95885 order by id desc;
select * from email_messages where origin_user_id = 143;
select * from activities where user_id = 143 and updated_at >= '2026-01-28 00:00:00';
select * from participants where activity_id = 620247;
select * from crm_profiles where user_id = 143;
SELECT * FROM activities WHERE uuid_to_bin('458cf915-b914-4000-b083-5687b32b2956') = uuid; # 356001
select * from transcription where activity_id = 356001; # 6943
select * from ai_prompts where transcription_id = 6943;
SELECT * FROM activity_summary_logs where activity_id = 356001;
SELECT * FROM social_accounts WHERE sociable_id = 143;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('0164a4fb-cb95-454e-9edd-4d804e4999bd') = uuid;
# 422515 softphone tr. 8100
SELECT * FROM activities WHERE uuid_to_bin('7520add8-8d87-41a5-98e5-fc4edf96f21e') = uuid;
# 407509 conference tr. 7670 crmId: 00UD1000002J9aTMAS
select * from ai_prompts where transcription_id IN (8100, 7670);
select * from activity_summary_logs where activity_id = 407509;
select * from sidekick_settings;
select * from default_activity_types;
SELECT * FROM contacts WHERE crm_configuration_id = 39 and email = '[EMAIL]';
SELECT * FROM leads WHERE crm_configuration_id = 39 and email = '[EMAIL]';
SELECT * FROM activity_searches where user_id = 143;
SELECT * FROM groups where team_id = 1;
select * from teams where id = 1;
select * from groups where team_id = 1; # 1150 - 7e75f8025c22
select id, name, group_id, status, deleted_at, email
from users where team_id = 1 order by group_id desc ;
select * from activity_searches where id in (1977, 1978, 1979);
select * from activity_search_filters where activity_search_id IN (1977, 1978, 1979);
select * from activity_search_filters where filter = 'group_id' and value = '443f26b8-8512-437e-a9f9-7e75f8025c22'; # 10268, 10272, 10277
select * from nudges where activity_search_id IN (1977, 1978, 1979); # 877, 878, 879
INSERT INTO `activity_search_filters`
(`activity_search_id`, `filter`, `value`) VALUES
(1977, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22'),
(1978, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22'),
(1979, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22')
;
select * from crm_configurations where id = 39;
select sa.* from users u JOIN social_accounts sa on u.id = sa.sociable_id
where u.team_id = 1;
SELECT * FROM social_accounts WHERE sociable_id = 1635;
SELECT * FROM users WHERE id = 1635;
select * from teams where id = 1;
select * from users where team_id = 1;
select * from team_features where team_id = 1;
select * from features;
SELECT * FROM activity_searches where id = 1982; # 1981
SELECT * FROM activity_search_filters WHERE activity_search_id = 1982;
SELECT * FROM activities WHERE uuid_to_bin('e916569b-086c-4bd1-94d7-5e3802c27ccf') = uuid;
SELECT * FROM groups WHERE id = 1439;
SELECT * FROM users WHERE group_id = 1439;
select * from permissions; # 158
select * from roles;
select * from permission_role;
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 28;
select * from playbooks where team_id = 1;
select * from playbooks where id = 179;
select * from playbook_categories where id = 1391;
select * from users where id = 143;
select * from crm_profiles where user_id = 143;
select * from activities where crm_configuration_id = 39 and type = 'conference'
and crm_provider_id IS NOT NULL ORDER by id desc;
select * from activities where id = 422003; # 00UO400000pB6fpMAC
SELECT ar.id, ar.uuid, ar.media_type, ar.status, a.type
FROM automated_report_results ar
JOIN automated_reports a ON a.id = ar.report_id
WHERE a.type = 'ask_jiminny'
LIMIT 10;
SELECT * FROM automated_reports where id = 71;
SELECT * FROM automated_report_results where report_id = 71;
UPDATE automated_reports set playbook_categories = NULL where id = 68;
SELECT * FROM automated_report_results where id = 275;
SELECT * FROM automated_reports order by id desc;
SELECT * FROM automated_report_results order by id desc;
select * from activity_searches where user_id = 143;
select * from ask_anything_prompts;
SELECT `automated_report_results`.* FROM `automated_report_results`
INNER JOIN `automated_reports`
ON `automated_report_results`.`report_id` = `automated_reports`.`id`
WHERE 1=1
AND `automated_report_results`.`generated_at` IS NOT NULL
# AND `automated_report_results`.`sent_at` IS NOT NULL
AND `automated_reports`.`team_id` = 1
AND JSON_CONTAINS(`automated_reports`.`recipients`, 143, '$."users"')
;
SELECT * FROM automated_reports where id = 67;
SELECT * FROM automated_reports where id = 42;
SELECT * FROM users WHERE id = 143; # group 28
select * from teams where id = 3143;
select * from crm_configurations where id = 500;
select * from users where name = 'Integration Account'; # 1695
SELECT * FROM social_accounts WHERE sociable_id = 1695;
select * from activities where crm_configuration_id = 39
and recording_state = 'recorded' and duration > 60
and status = 'completed' and actual_start_time >= '2025-12-01';
SELECT * FROM activities WHERE uuid_to_bin('458cf915-b914-4000-b083-5687b32b2956') = uuid;
select * from leads;
SELECT * FROM activities WHERE uuid_to_bin('f43cf158-e60d-46e5-92f8-c4e0594a3219') = uuid; # 422003
SELECT * FROM activities WHERE id IN (16,422003);
SELECT * FROM activities where status = 'failed';
SELECT * FROM tracks WHERE activity_id = 422003;
SELECT
a.*
FROM activities a
JOIN users u ON a.user_id = u.id
WHERE
a.status = 'completed'
AND uuid_to_bin('641f1acb-16b8-42d1-8726-df52979dad0e') = u.uuid
AND a.deleted_at IS NULL
AND EXISTS (
SELECT 1 FROM tracks t
WHERE t.activity_id = a.id
AND t.type IN ('audio', 'video')
)
ORDER BY a.actual_start_time DESC
LIMIT 25;
select * from teams where id = 19;
select * from crm_configurations where provider = 'pipedrive';
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 19 and sa.provider = 'pipedrive';
SELECT * FROM social_accounts WHERE id = 1116;
Project
Project
New File or Directory…
Expand Selected
Collapse All...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49328
|
1761
|
3
|
2026-05-18T06:35:41.684585+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086141684_m2.jpg...
|
PhpStorm
|
faVsco.js – SF [jiminny@localhost]
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Laravel Idea: Generate Helper Code?
Helper Code wi Laravel Idea: Generate Helper Code?
Helper Code will help IDE to understand your Laravel app code.
text/html
text/html
text/html
Generate
Don't Show Anymore
More
The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
pipedrive-sdk-poc, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
23
22
16
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1052 and sa.provider = 'hubspot';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1052;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = '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 pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (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 * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_reports where id IN (55);
select * from automated_report_results where id IN (81);
select * from users where id IN (10633, 13987, 11985);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
select * from automated_report_results where media_type = 'pdf' and status = 2;
SELECT * FROM automated_report_results WHERE uuid_to_bin('82e74956-6144-4cd1-a3d3-af985c3070a4') = uuid;
select * from teams where id = 1029;
select * from crm_configurations where provider = 'pipedrive';
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1029 and sa.provider = 'pipedrive';
[
{
"user_id": "23460 (owner)",
"email": "[EMAIL]",
"id": 69,
"sociable_id": 23460,
"provider_user_id": "19555731",
"provider_user_token": "v1u:AQIBAHj-LzTNK2yuuuaLqifzhWb9crUNKTpk4FlQ9rjnXqp_6AEQhDhDQVa1nvWCHEvnpvSEAAAAfjB8BgkqhkiG9w0BBwagbzBtAgEAMGgGCSqGSIb3DQEHATAeBglghkgBZQMEAS4wEQQMnG8KNcZLIjEnlRPxAgEQgDsGPIcKjsMU7Qel36BtM5FCQa56mYUy24_AAoqd12yjVFkq6egLqS0inp-5G4JE7frJURMV8VTw_fY14g:OPrsRnjDrxiocwEU38d3e3LZXhacVtw1JBRLemFCrUfFEnFkMc2apOgKTlIKCxLhDX96axvQ7rnL-Wh7FvpBAFZsyap7eIOhlO8h6NwirzBUFmB9kXHbTC1d6AZOSwoC8QOq8oArtU1rSsZy9ED3dABAwV6Bo-jE5x20U5QeFZg5uoD8tfkfxPA5yWVxZIE2Y7S_uaM95n5eV4lLVkC9pF0c7WHwUSQxw689clWepqCRwND_1ley17zfqB3ZuDrUCRFmXq_pdC5c8NAlYMsZp7lGme53C-KVntIw6ccNuj0GzLBFGK45t_w8iHBmRf1nvfgN3siC2EB9PhMmJKRmvhKM_ZY",
"provider_refresh_token": "5034113:[TELEGRAM_TOKEN]b2bfc",
"expires": 1778858898,
"refresh_token_expires": null,
"provider": "pipedrive",
"state": "connected",
"auth_scope": "base,deals:full,activities:full,contacts:full,search:read",
"retry_after": null,
"created_at": "2025-04-16 08:23:28",
"updated_at": "2026-05-15 14:28:19",
"provider_user_token_encrypted": "eyJpdiI6IjdUMTU0b1JkMUJkMFVNS0ZjZk1URmc9PSIsInZhbHVlIjoiNkQyMzJaeG1xelRMNDBzTjNTd081OUdZMUlyUEpic1l2QjEwTGg4K0NqNkx6aU56RzVlS0VubG1UemNxR1VKTUFCRHhQbGxPcDhwVXNkbnhhd1daeU0vd1ZmMUZyMXFUazFMdmZOeVhVdGxIWEM4TFdEbVVkUzVSR1ozOWJvRzU5cU0wSnNsSVByUS9kam8wVUVhM09RL0NFY1Vaemt4QTFnM1owbEdrU3FRTTVBcjlzem9uZ3hRb255UldLeVJHQXlOZXJLSmY0dUlGeGU0Nm4wZ00yd2tlaVNReUNBTDd3TjlPVmFFU2hvVjZ4ZHlYOVJYOEJNeDFSOHMycXJZZzhMRHg0ekRPMU5XdityQW15MTZ1a2V1SG4vRXJuckRkbG0xYXBPUU5iRmZzTmtVWmcrZUY2NCtuRlFxTnhIdDE1VWVpYk5LN3hVNzYwMlRHUVpHbmZlUktOTlovRjlOT1R3WWtKcUhRRHRqSXhOa1VUemgvUWx4MU5tSVlqYVJGM1JoQkVNZ0tKNCs1ejNQdjN4aU5Cb0ZPYzZTbGR1aG9nSXJuNWNYUXRvWGZIUHA2OERqNmJjalVmZkdBaWRRd21Gd0RvTytXUUtlY2VvZmhiTE8veHoxNmwvZTRMa3B2L25sd2drVytZM01VS1czWkZqVUpRa2tZaklWcGczaGZQdCtqd3EwZ1hsM3FrM3M0cHdTZUZvNHlQMDRSTG5wMmNScWJ5MFNVWmx2ZUZWK1RDRmVYZ3lpcDUzQS9YOWhrbjcrKzdDVm5VMkE4dytROUtCdGNmN3hVa3B1MHNEU295Wm5nM0tNTURQaXBxZThpc25qU1RWVWFNTmhOUk1SM3ZiQldxSklONGxkeFRGSG5GK0RwSWdaU2p5ZlNuU1BHbGtzNlkvSXZuVjBpR1pSZDU3TkcxMjY0Z1RPNVNFS3grdWozdmN3bkFwQmZSYjNsMGYycnU3Vzl4K3k3aU4zTjhTU3Era1FqUmFQbzNQcWRWelJVTG9XWTVIZFAwSm83MVp2eTBNc1l4SVR2UlJGNElaYUJ4Y3F1K3lYWXRoamRFR0drS1hPYVNNVT0iLCJtYWMiOiI4MTg5N2QyZjU4OTQzYjA5ZTU2ZWViNGIzMTcwZDM5M2FhMTQyNDg0MDMyZTMwOGJjM2RlNDg2ZGE2MzY1M2MyIiwidGFnIjoiIn0=",
"provider_refresh_token_encrypted": "eyJpdiI6InErMzV0Vlh0MjE4TjBIN0NlUENOK3c9PSIsInZhbHVlIjoiYTd1ZThZQmlTRnhac3NjN09xVy90dGV3emJRME11ZUtvTXNQS2F6cXptVGJOYU5uQWViVnNENTl6OWdzTzk3YjJYN3BDeTRJT2I1K2YvQ2RvZThTc0E9PSIsIm1hYyI6ImQ4YmZlNmUwNWJhZTZiY2FhYTY4MGQxY2E0MmEyZDg0ZmE0Y2RjZmVlNTBjMGY5YjQ3YTgzODBlNGVjM2VhYmIiLCJ0YWciOiIifQ==",
"encryption_key": "0x01020300786192D9D96DD60D3D1EBC9DFAEE5F0C45EE80165CF3F3D2B3B627026AA7CFC7CA0128DD463535D32EE491ADBADF8B07596B0000006E306C06092A864886F70D010706A05F305D020100305806092A864886F70D010701301E060960864801650304012E3011040C7FB1319048ECB2EA3F23B995020110802B52D22F5EAD341AB238FBBCB6093156E443876A664BA5555D722565C2B2D04422C868CD7350555E3CC74221",
"sociable_type": "user",
"owner_id": 23460
},
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Code changed:
Hide
Sync Changes
Hide This Notification
20
1
18
2
6
Previous Highlighted Error
Next Highlighted Error
SELECT a.id, a.uuid, a.actual_start_time, o.id, o.uuid FROM opportunities o
JOIN activities a ON o.id = a.opportunity_id
WHERE a.crm_configuration_id = 39
AND a.actual_start_time > '2025-10-13'
AND a.type IN ('conference', 'softphone-inbound', 'softphone-outbound')
;
SELECT * FROM activities
WHERE crm_configuration_id = 39 and user_id = 143
and actual_start_time >= '2025-10-13'
AND type IN ('conference', 'softphone-inbound', 'softphone-outbound')
;
SELECT * FROM opportunities WHERE account_id IN (178);
select * from activities where id IN (620137, 620187, 620188, 620189, 620230);
# HS
SELECT * FROM opportunities WHERE id IN (238);
select * from activities where id IN (477,2076);
select * from users;
SELECT COUNT(*) FROM users;
SELECT COUNT(*) FROM activities;
SELECT COUNT(*) FROM opportunities;
UPDATE activities
SET
actual_start_time = '2025-12-19 09:00:00',
actual_end_time = '2025-12-19 10:30:00',
scheduled_start_time = '2025-12-19 09:00:00',
scheduled_end_time = '2025-12-19 10:30:00'
WHERE id IN (407509,407375);
select * from partners;
SELECT id, uuid, type, actual_start_time, user_id, crm_configuration_id
FROM activities
WHERE user_id = 143
AND actual_start_time >= '2025-10-13 00:00:00'
AND actual_start_time <= '2026-01-13 23:59:59'
ORDER BY actual_start_time DESC;
SELECT * FROM activities WHERE uuid_to_bin('78eda160-3086-435f-88a5-bb0c71b6008d') = uuid;
SELECT * FROM crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 282;
# lead_id
# account_id 177
# contact_id 3969
# opportunity_id
# stage_id 203
SELECT * FROM opportunities WHERE opportunities.crm_configuration_id = id = 282;
SELECT * FROM activities where crm_configuration_id = 39 AND type = 'conference'
AND user_id = 143 and actual_start_time >= '2025-10-13';
SELECT * FROM activities a
# JOIN opportunities o ON a.opportunity_id = o.id
WHERE a.crm_configuration_id = 39 AND a.type = 'conference'
and status = 'completed' and recording_state = 'recorded'
and a.actual_start_time >= '2025-10-13'
AND a.user_id = 143
;
select * from leads
where crm_configuration_id = 39; # 112 -> ac. 178, 109 => op. 1707
SELECT * FROM activities WHERE id IN (356013,616188,616202,616310,407509,407375,356001,356008);
SELECT * FROM activities WHERE id IN (356013,616188,616202,616310);
SELECT * FROM activities WHERE id IN (407509,407375); # leads: 112, 109 | status - 198
SELECT * FROM activities WHERE id IN (356001, 356008); # contacts:
SELECT * FROM opportunities WHERE id IN (1707);
SELECT * FROM stages where id IN (204, 198);
SELECT * FROM opportunities WHERE account_id IN (178);
SELECT * FROM opportunities WHERE crm_configuration_id = 39 AND created_at > '2025-01-01';
SELECT * FROM contacts WHERE account_id IN (178); # 4118 Musaibe, 4448 Ceco Personal
SELECT * FROM activities where crm_configuration_id = 39
AND opportunity_id IS NULL
AND is_internal = false
and status = 'completed' and recording_state = 'recorded'
AND actual_start_time >= '2025-10-13'
AND (lead_id IS NOT NULL OR contact_id IS NOT NULL OR account_id IS NOT NULL)
# AND lead_id IN (112, 109)
;
SELECT * FROM crm_profiles WHERE user_id = 143;
select * from inboxes; # 212
select * from users where id = 143; # 143
select * from inbox_email_batches where inbox_id = 212
and updated_at >= '2026-01-28 00:00:00' order by id desc;
select * from inbox_emails where inbox_id = 212
and batch_id = 95885 order by id desc;
select * from email_messages where origin_user_id = 143;
select * from activities where user_id = 143 and updated_at >= '2026-01-28 00:00:00';
select * from participants where activity_id = 620247;
select * from crm_profiles where user_id = 143;
SELECT * FROM activities WHERE uuid_to_bin('458cf915-b914-4000-b083-5687b32b2956') = uuid; # 356001
select * from transcription where activity_id = 356001; # 6943
select * from ai_prompts where transcription_id = 6943;
SELECT * FROM activity_summary_logs where activity_id = 356001;
SELECT * FROM social_accounts WHERE sociable_id = 143;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('0164a4fb-cb95-454e-9edd-4d804e4999bd') = uuid;
# 422515 softphone tr. 8100
SELECT * FROM activities WHERE uuid_to_bin('7520add8-8d87-41a5-98e5-fc4edf96f21e') = uuid;
# 407509 conference tr. 7670 crmId: 00UD1000002J9aTMAS
select * from ai_prompts where transcription_id IN (8100, 7670);
select * from activity_summary_logs where activity_id = 407509;
select * from sidekick_settings;
select * from default_activity_types;
SELECT * FROM contacts WHERE crm_configuration_id = 39 and email = '[EMAIL]';
SELECT * FROM leads WHERE crm_configuration_id = 39 and email = '[EMAIL]';
SELECT * FROM activity_searches where user_id = 143;
SELECT * FROM groups where team_id = 1;
select * from teams where id = 1;
select * from groups where team_id = 1; # 1150 - 7e75f8025c22
select id, name, group_id, status, deleted_at, email
from users where team_id = 1 order by group_id desc ;
select * from activity_searches where id in (1977, 1978, 1979);
select * from activity_search_filters where activity_search_id IN (1977, 1978, 1979);
select * from activity_search_filters where filter = 'group_id' and value = '443f26b8-8512-437e-a9f9-7e75f8025c22'; # 10268, 10272, 10277
select * from nudges where activity_search_id IN (1977, 1978, 1979); # 877, 878, 879
INSERT INTO `activity_search_filters`
(`activity_search_id`, `filter`, `value`) VALUES
(1977, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22'),
(1978, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22'),
(1979, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22')
;
select * from crm_configurations where id = 39;
select sa.* from users u JOIN social_accounts sa on u.id = sa.sociable_id
where u.team_id = 1;
SELECT * FROM social_accounts WHERE sociable_id = 1635;
SELECT * FROM users WHERE id = 1635;
select * from teams where id = 1;
select * from users where team_id = 1;
select * from team_features where team_id = 1;
select * from features;
SELECT * FROM activity_searches where id = 1982; # 1981
SELECT * FROM activity_search_filters WHERE activity_search_id = 1982;
SELECT * FROM activities WHERE uuid_to_bin('e916569b-086c-4bd1-94d7-5e3802c27ccf') = uuid;
SELECT * FROM groups WHERE id = 1439;
SELECT * FROM users WHERE group_id = 1439;
select * from permissions; # 158
select * from roles;
select * from permission_role;
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 28;
select * from playbooks where team_id = 1;
select * from playbooks where id = 179;
select * from playbook_categories where id = 1391;
select * from users where id = 143;
select * from crm_profiles where user_id = 143;
select * from activities where crm_configuration_id = 39 and type = 'conference'
and crm_provider_id IS NOT NULL ORDER by id desc;
select * from activities where id = 422003; # 00UO400000pB6fpMAC
SELECT ar.id, ar.uuid, ar.media_type, ar.status, a.type
FROM automated_report_results ar
JOIN automated_reports a ON a.id = ar.report_id
WHERE a.type = 'ask_jiminny'
LIMIT 10;
SELECT * FROM automated_reports where id = 71;
SELECT * FROM automated_report_results where report_id = 71;
UPDATE automated_reports set playbook_categories = NULL where id = 68;
SELECT * FROM automated_report_results where id = 275;
SELECT * FROM automated_reports order by id desc;
SELECT * FROM automated_report_results order by id desc;
select * from activity_searches where user_id = 143;
select * from ask_anything_prompts;
SELECT `automated_report_results`.* FROM `automated_report_results`
INNER JOIN `automated_reports`
ON `automated_report_results`.`report_id` = `automated_reports`.`id`
WHERE 1=1
AND `automated_report_results`.`generated_at` IS NOT NULL
# AND `automated_report_results`.`sent_at` IS NOT NULL
AND `automated_reports`.`team_id` = 1
AND JSON_CONTAINS(`automated_reports`.`recipients`, 143, '$."users"')
;
SELECT * FROM automated_reports where id = 67;
SELECT * FROM automated_reports where id = 42;
SELECT * FROM users WHERE id = 143; # group 28
select * from teams where id = 3143;
select * from crm_configurations where id = 500;
select * from users where name = 'Integration Account'; # 1695
SELECT * FROM social_accounts WHERE sociable_id = 1695;
select * from activities where crm_configuration_id = 39
and recording_state = 'recorded' and duration > 60
and status = 'completed' and actual_start_time >= '2025-12-01';
SELECT * FROM activities WHERE uuid_to_bin('458cf915-b914-4000-b083-5687b32b2956') = uuid;
select * from leads;
SELECT * FROM activities WHERE uuid_to_bin('f43cf158-e60d-46e5-92f8-c4e0594a3219') = uuid; # 422003
SELECT * FROM activities WHERE id IN (16,422003);
SELECT * FROM activities where status = 'failed';
SELECT * FROM tracks WHERE activity_id = 422003;
SELECT
a.*
FROM activities a
JOIN users u ON a.user_id = u.id
WHERE
a.status = 'completed'
AND uuid_to_bin('641f1acb-16b8-42d1-8726-df52979dad0e') = u.uuid
AND a.deleted_at IS NULL
AND EXISTS (
SELECT 1 FROM tracks t
WHERE t.activity_id = a.id
AND t.type IN ('audio', 'video')
)
ORDER BY a.actual_start_time DESC
LIMIT 25;
select * from teams where id = 19;
select * from crm_configurations where provider = 'pipedrive';
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 19 and sa.provider = 'pipedrive';
SELECT * FROM social_accounts WHERE id = 1116;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Acl
ActionItems
Activity
ActivityAnalytics
ActivitySearch
AiActivityType
AiAutomation
AiCallScoring
AskAnything
Dtos
Events
AskAnythingPromptService.php, class
HistoryService.php, class
AskJiminnyAi
AWS
BillingManagement...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"Laravel Idea: Generate Helper Code?","depth":2,"bounds":{"left":0.8753325,"top":0.8172386,"width":0.100398935,"height":0.013567438},"on_screen":true,"role_description":"text"},{"role":"AXTextField","text":"Helper Code will help IDE to understand your Laravel app code.","depth":3,"bounds":{"left":0.8753325,"top":0.83320034,"width":0.11037234,"height":0.027134877},"on_screen":true,"value":"Helper Code will help IDE to understand your Laravel app code.","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"bounds":{"left":0.8753325,"top":0.83320034,"width":0.09275266,"height":0.027134877},"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Generate","depth":2,"bounds":{"left":0.8753325,"top":0.8659218,"width":0.018949468,"height":0.013567438},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Don't Show Anymore","depth":2,"bounds":{"left":0.89960104,"top":0.8659218,"width":0.04288564,"height":0.013567438},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"More","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.016289894,"height":0.0},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","depth":3,"bounds":{"left":0.8753325,"top":0.9074222,"width":0.11037234,"height":0.054269753},"on_screen":true,"value":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"bounds":{"left":0.8753325,"top":0.9074222,"width":0.095744684,"height":0.054269753},"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"pipedrive-sdk-poc, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.05618351,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: pipedrive-sdk-poc","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.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"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.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"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.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"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.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"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.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.13962767,"top":0.29688746,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.14827128,"top":0.29688746,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.15924202,"top":0.29688746,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.16788563,"top":0.29688746,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.17652926,"top":0.29688746,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.1875,"top":0.29688746,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.19847074,"top":0.29688746,"width":0.024268618,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.22506648,"top":0.29688746,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.23603724,"top":0.29688746,"width":0.029587766,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.34242022,"top":0.29688746,"width":0.02825798,"height":0.01915403},"on_screen":true,"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},"on_screen":false,"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},"on_screen":false,"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},"on_screen":false,"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},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"23","depth":4,"bounds":{"left":0.32214096,"top":0.3216281,"width":0.010305851,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"22","depth":4,"bounds":{"left":0.33444148,"top":0.3216281,"width":0.009973404,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"16","depth":4,"bounds":{"left":0.3464096,"top":0.3216281,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.35771278,"top":0.3200319,"width":0.00731383,"height":0.018355945},"on_screen":true,"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.3650266,"top":0.3200319,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1052 and sa.provider = 'hubspot';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1052;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_reports where id IN (55);\nselect * from automated_report_results where id IN (81);\nselect * from users where id IN (10633, 13987, 11985);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;\n\n\nselect * from automated_report_results where media_type = 'pdf' and status = 2;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('82e74956-6144-4cd1-a3d3-af985c3070a4') = uuid;\n\nselect * from teams where id = 1029;\nselect * from crm_configurations where provider = 'pipedrive';\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1029 and sa.provider = 'pipedrive';\n\n[\n {\n \"user_id\": \"23460 (owner)\",\n \"email\": \"integration-account@pipedrive.jiminny.com\",\n \"id\": 69,\n \"sociable_id\": 23460,\n \"provider_user_id\": \"19555731\",\n \"provider_user_token\": \"v1u:AQIBAHj-LzTNK2yuuuaLqifzhWb9crUNKTpk4FlQ9rjnXqp_6AEQhDhDQVa1nvWCHEvnpvSEAAAAfjB8BgkqhkiG9w0BBwagbzBtAgEAMGgGCSqGSIb3DQEHATAeBglghkgBZQMEAS4wEQQMnG8KNcZLIjEnlRPxAgEQgDsGPIcKjsMU7Qel36BtM5FCQa56mYUy24_AAoqd12yjVFkq6egLqS0inp-5G4JE7frJURMV8VTw_fY14g:OPrsRnjDrxiocwEU38d3e3LZXhacVtw1JBRLemFCrUfFEnFkMc2apOgKTlIKCxLhDX96axvQ7rnL-Wh7FvpBAFZsyap7eIOhlO8h6NwirzBUFmB9kXHbTC1d6AZOSwoC8QOq8oArtU1rSsZy9ED3dABAwV6Bo-jE5x20U5QeFZg5uoD8tfkfxPA5yWVxZIE2Y7S_uaM95n5eV4lLVkC9pF0c7WHwUSQxw689clWepqCRwND_1ley17zfqB3ZuDrUCRFmXq_pdC5c8NAlYMsZp7lGme53C-KVntIw6ccNuj0GzLBFGK45t_w8iHBmRf1nvfgN3siC2EB9PhMmJKRmvhKM_ZY\",\n \"provider_refresh_token\": \"5034113:19555731:87c14258f0c813d02767ee975f6044d46b6b2bfc\",\n \"expires\": 1778858898,\n \"refresh_token_expires\": null,\n \"provider\": \"pipedrive\",\n \"state\": \"connected\",\n \"auth_scope\": \"base,deals:full,activities:full,contacts:full,search:read\",\n \"retry_after\": null,\n \"created_at\": \"2025-04-16 08:23:28\",\n \"updated_at\": \"2026-05-15 14:28:19\",\n \"provider_user_token_encrypted\": \"eyJpdiI6IjdUMTU0b1JkMUJkMFVNS0ZjZk1URmc9PSIsInZhbHVlIjoiNkQyMzJaeG1xelRMNDBzTjNTd081OUdZMUlyUEpic1l2QjEwTGg4K0NqNkx6aU56RzVlS0VubG1UemNxR1VKTUFCRHhQbGxPcDhwVXNkbnhhd1daeU0vd1ZmMUZyMXFUazFMdmZOeVhVdGxIWEM4TFdEbVVkUzVSR1ozOWJvRzU5cU0wSnNsSVByUS9kam8wVUVhM09RL0NFY1Vaemt4QTFnM1owbEdrU3FRTTVBcjlzem9uZ3hRb255UldLeVJHQXlOZXJLSmY0dUlGeGU0Nm4wZ00yd2tlaVNReUNBTDd3TjlPVmFFU2hvVjZ4ZHlYOVJYOEJNeDFSOHMycXJZZzhMRHg0ekRPMU5XdityQW15MTZ1a2V1SG4vRXJuckRkbG0xYXBPUU5iRmZzTmtVWmcrZUY2NCtuRlFxTnhIdDE1VWVpYk5LN3hVNzYwMlRHUVpHbmZlUktOTlovRjlOT1R3WWtKcUhRRHRqSXhOa1VUemgvUWx4MU5tSVlqYVJGM1JoQkVNZ0tKNCs1ejNQdjN4aU5Cb0ZPYzZTbGR1aG9nSXJuNWNYUXRvWGZIUHA2OERqNmJjalVmZkdBaWRRd21Gd0RvTytXUUtlY2VvZmhiTE8veHoxNmwvZTRMa3B2L25sd2drVytZM01VS1czWkZqVUpRa2tZaklWcGczaGZQdCtqd3EwZ1hsM3FrM3M0cHdTZUZvNHlQMDRSTG5wMmNScWJ5MFNVWmx2ZUZWK1RDRmVYZ3lpcDUzQS9YOWhrbjcrKzdDVm5VMkE4dytROUtCdGNmN3hVa3B1MHNEU295Wm5nM0tNTURQaXBxZThpc25qU1RWVWFNTmhOUk1SM3ZiQldxSklONGxkeFRGSG5GK0RwSWdaU2p5ZlNuU1BHbGtzNlkvSXZuVjBpR1pSZDU3TkcxMjY0Z1RPNVNFS3grdWozdmN3bkFwQmZSYjNsMGYycnU3Vzl4K3k3aU4zTjhTU3Era1FqUmFQbzNQcWRWelJVTG9XWTVIZFAwSm83MVp2eTBNc1l4SVR2UlJGNElaYUJ4Y3F1K3lYWXRoamRFR0drS1hPYVNNVT0iLCJtYWMiOiI4MTg5N2QyZjU4OTQzYjA5ZTU2ZWViNGIzMTcwZDM5M2FhMTQyNDg0MDMyZTMwOGJjM2RlNDg2ZGE2MzY1M2MyIiwidGFnIjoiIn0=\",\n \"provider_refresh_token_encrypted\": \"eyJpdiI6InErMzV0Vlh0MjE4TjBIN0NlUENOK3c9PSIsInZhbHVlIjoiYTd1ZThZQmlTRnhac3NjN09xVy90dGV3emJRME11ZUtvTXNQS2F6cXptVGJOYU5uQWViVnNENTl6OWdzTzk3YjJYN3BDeTRJT2I1K2YvQ2RvZThTc0E9PSIsIm1hYyI6ImQ4YmZlNmUwNWJhZTZiY2FhYTY4MGQxY2E0MmEyZDg0ZmE0Y2RjZmVlNTBjMGY5YjQ3YTgzODBlNGVjM2VhYmIiLCJ0YWciOiIifQ==\",\n \"encryption_key\": \"0x01020300786192D9D96DD60D3D1EBC9DFAEE5F0C45EE80165CF3F3D2B3B627026AA7CFC7CA0128DD463535D32EE491ADBADF8B07596B0000006E306C06092A864886F70D010706A05F305D020100305806092A864886F70D010701301E060960864801650304012E3011040C7FB1319048ECB2EA3F23B995020110802B52D22F5EAD341AB238FBBCB6093156E443876A664BA5555D722565C2B2D04422C868CD7350555E3CC74221\",\n \"sociable_type\": \"user\",\n \"owner_id\": 23460\n },","depth":4,"on_screen":true,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1052 and sa.provider = 'hubspot';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1052;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_reports where id IN (55);\nselect * from automated_report_results where id IN (81);\nselect * from users where id IN (10633, 13987, 11985);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;\n\n\nselect * from automated_report_results where media_type = 'pdf' and status = 2;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('82e74956-6144-4cd1-a3d3-af985c3070a4') = uuid;\n\nselect * from teams where id = 1029;\nselect * from crm_configurations where provider = 'pipedrive';\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1029 and sa.provider = 'pipedrive';\n\n[\n {\n \"user_id\": \"23460 (owner)\",\n \"email\": \"integration-account@pipedrive.jiminny.com\",\n \"id\": 69,\n \"sociable_id\": 23460,\n \"provider_user_id\": \"19555731\",\n \"provider_user_token\": \"v1u:AQIBAHj-LzTNK2yuuuaLqifzhWb9crUNKTpk4FlQ9rjnXqp_6AEQhDhDQVa1nvWCHEvnpvSEAAAAfjB8BgkqhkiG9w0BBwagbzBtAgEAMGgGCSqGSIb3DQEHATAeBglghkgBZQMEAS4wEQQMnG8KNcZLIjEnlRPxAgEQgDsGPIcKjsMU7Qel36BtM5FCQa56mYUy24_AAoqd12yjVFkq6egLqS0inp-5G4JE7frJURMV8VTw_fY14g:OPrsRnjDrxiocwEU38d3e3LZXhacVtw1JBRLemFCrUfFEnFkMc2apOgKTlIKCxLhDX96axvQ7rnL-Wh7FvpBAFZsyap7eIOhlO8h6NwirzBUFmB9kXHbTC1d6AZOSwoC8QOq8oArtU1rSsZy9ED3dABAwV6Bo-jE5x20U5QeFZg5uoD8tfkfxPA5yWVxZIE2Y7S_uaM95n5eV4lLVkC9pF0c7WHwUSQxw689clWepqCRwND_1ley17zfqB3ZuDrUCRFmXq_pdC5c8NAlYMsZp7lGme53C-KVntIw6ccNuj0GzLBFGK45t_w8iHBmRf1nvfgN3siC2EB9PhMmJKRmvhKM_ZY\",\n \"provider_refresh_token\": \"5034113:19555731:87c14258f0c813d02767ee975f6044d46b6b2bfc\",\n \"expires\": 1778858898,\n \"refresh_token_expires\": null,\n \"provider\": \"pipedrive\",\n \"state\": \"connected\",\n \"auth_scope\": \"base,deals:full,activities:full,contacts:full,search:read\",\n \"retry_after\": null,\n \"created_at\": \"2025-04-16 08:23:28\",\n \"updated_at\": \"2026-05-15 14:28:19\",\n \"provider_user_token_encrypted\": \"eyJpdiI6IjdUMTU0b1JkMUJkMFVNS0ZjZk1URmc9PSIsInZhbHVlIjoiNkQyMzJaeG1xelRMNDBzTjNTd081OUdZMUlyUEpic1l2QjEwTGg4K0NqNkx6aU56RzVlS0VubG1UemNxR1VKTUFCRHhQbGxPcDhwVXNkbnhhd1daeU0vd1ZmMUZyMXFUazFMdmZOeVhVdGxIWEM4TFdEbVVkUzVSR1ozOWJvRzU5cU0wSnNsSVByUS9kam8wVUVhM09RL0NFY1Vaemt4QTFnM1owbEdrU3FRTTVBcjlzem9uZ3hRb255UldLeVJHQXlOZXJLSmY0dUlGeGU0Nm4wZ00yd2tlaVNReUNBTDd3TjlPVmFFU2hvVjZ4ZHlYOVJYOEJNeDFSOHMycXJZZzhMRHg0ekRPMU5XdityQW15MTZ1a2V1SG4vRXJuckRkbG0xYXBPUU5iRmZzTmtVWmcrZUY2NCtuRlFxTnhIdDE1VWVpYk5LN3hVNzYwMlRHUVpHbmZlUktOTlovRjlOT1R3WWtKcUhRRHRqSXhOa1VUemgvUWx4MU5tSVlqYVJGM1JoQkVNZ0tKNCs1ejNQdjN4aU5Cb0ZPYzZTbGR1aG9nSXJuNWNYUXRvWGZIUHA2OERqNmJjalVmZkdBaWRRd21Gd0RvTytXUUtlY2VvZmhiTE8veHoxNmwvZTRMa3B2L25sd2drVytZM01VS1czWkZqVUpRa2tZaklWcGczaGZQdCtqd3EwZ1hsM3FrM3M0cHdTZUZvNHlQMDRSTG5wMmNScWJ5MFNVWmx2ZUZWK1RDRmVYZ3lpcDUzQS9YOWhrbjcrKzdDVm5VMkE4dytROUtCdGNmN3hVa3B1MHNEU295Wm5nM0tNTURQaXBxZThpc25qU1RWVWFNTmhOUk1SM3ZiQldxSklONGxkeFRGSG5GK0RwSWdaU2p5ZlNuU1BHbGtzNlkvSXZuVjBpR1pSZDU3TkcxMjY0Z1RPNVNFS3grdWozdmN3bkFwQmZSYjNsMGYycnU3Vzl4K3k3aU4zTjhTU3Era1FqUmFQbzNQcWRWelJVTG9XWTVIZFAwSm83MVp2eTBNc1l4SVR2UlJGNElaYUJ4Y3F1K3lYWXRoamRFR0drS1hPYVNNVT0iLCJtYWMiOiI4MTg5N2QyZjU4OTQzYjA5ZTU2ZWViNGIzMTcwZDM5M2FhMTQyNDg0MDMyZTMwOGJjM2RlNDg2ZGE2MzY1M2MyIiwidGFnIjoiIn0=\",\n \"provider_refresh_token_encrypted\": \"eyJpdiI6InErMzV0Vlh0MjE4TjBIN0NlUENOK3c9PSIsInZhbHVlIjoiYTd1ZThZQmlTRnhac3NjN09xVy90dGV3emJRME11ZUtvTXNQS2F6cXptVGJOYU5uQWViVnNENTl6OWdzTzk3YjJYN3BDeTRJT2I1K2YvQ2RvZThTc0E9PSIsIm1hYyI6ImQ4YmZlNmUwNWJhZTZiY2FhYTY4MGQxY2E0MmEyZDg0ZmE0Y2RjZmVlNTBjMGY5YjQ3YTgzODBlNGVjM2VhYmIiLCJ0YWciOiIifQ==\",\n \"encryption_key\": \"0x01020300786192D9D96DD60D3D1EBC9DFAEE5F0C45EE80165CF3F3D2B3B627026AA7CFC7CA0128DD463535D32EE491ADBADF8B07596B0000006E306C06092A864886F70D010706A05F305D020100305806092A864886F70D010701301E060960864801650304012E3011040C7FB1319048ECB2EA3F23B995020110802B52D22F5EAD341AB238FBBCB6093156E443876A664BA5555D722565C2B2D04422C868CD7350555E3CC74221\",\n \"sociable_type\": \"user\",\n \"owner_id\": 23460\n },","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.37367022,"top":0.09896249,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.38231382,"top":0.09896249,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.3932846,"top":0.09896249,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.4019282,"top":0.09896249,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.4105718,"top":0.09896249,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.42154256,"top":0.09896249,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.4325133,"top":0.09896249,"width":0.024268618,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.45910904,"top":0.09896249,"width":0.008643617,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.47007978,"top":0.09896249,"width":0.029587766,"height":0.01915403},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.59375,"top":0.09896249,"width":0.02825798,"height":0.01915403},"on_screen":true,"role_description":"button","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},"on_screen":false,"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},"on_screen":false,"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},"on_screen":false,"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},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"20","depth":4,"bounds":{"left":0.5561835,"top":0.123703115,"width":0.010305851,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.56848407,"top":0.123703115,"width":0.00731383,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"18","depth":4,"bounds":{"left":0.5777925,"top":0.123703115,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"2","depth":4,"bounds":{"left":0.5894282,"top":0.123703115,"width":0.007978723,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"6","depth":4,"bounds":{"left":0.5994016,"top":0.123703115,"width":0.007978723,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.6090425,"top":0.12210695,"width":0.00731383,"height":0.018355945},"on_screen":true,"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.6163564,"top":0.12210695,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT a.id, a.uuid, a.actual_start_time, o.id, o.uuid FROM opportunities o\nJOIN activities a ON o.id = a.opportunity_id\nWHERE a.crm_configuration_id = 39\nAND a.actual_start_time > '2025-10-13'\nAND a.type IN ('conference', 'softphone-inbound', 'softphone-outbound')\n;\n\nSELECT * FROM activities\nWHERE crm_configuration_id = 39 and user_id = 143\nand actual_start_time >= '2025-10-13'\nAND type IN ('conference', 'softphone-inbound', 'softphone-outbound')\n;\n\nSELECT * FROM opportunities WHERE account_id IN (178);\nselect * from activities where id IN (620137, 620187, 620188, 620189, 620230);\n\n# HS\nSELECT * FROM opportunities WHERE id IN (238);\nselect * from activities where id IN (477,2076);\n\nselect * from users;\n\nSELECT COUNT(*) FROM users;\nSELECT COUNT(*) FROM activities;\nSELECT COUNT(*) FROM opportunities;\n\nUPDATE activities\nSET\n actual_start_time = '2025-12-19 09:00:00',\n actual_end_time = '2025-12-19 10:30:00',\n scheduled_start_time = '2025-12-19 09:00:00',\n scheduled_end_time = '2025-12-19 10:30:00'\nWHERE id IN (407509,407375);\n\nselect * from partners;\n\nSELECT id, uuid, type, actual_start_time, user_id, crm_configuration_id\nFROM activities\nWHERE user_id = 143\nAND actual_start_time >= '2025-10-13 00:00:00'\nAND actual_start_time <= '2026-01-13 23:59:59'\nORDER BY actual_start_time DESC;\n\nSELECT * FROM activities WHERE uuid_to_bin('78eda160-3086-435f-88a5-bb0c71b6008d') = uuid;\nSELECT * FROM crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 282;\n# lead_id\n# account_id 177\n# contact_id 3969\n# opportunity_id\n# stage_id 203\n\nSELECT * FROM opportunities WHERE opportunities.crm_configuration_id = id = 282;\n\nSELECT * FROM activities where crm_configuration_id = 39 AND type = 'conference'\nAND user_id = 143 and actual_start_time >= '2025-10-13';\n\nSELECT * FROM activities a\n# JOIN opportunities o ON a.opportunity_id = o.id\nWHERE a.crm_configuration_id = 39 AND a.type = 'conference'\nand status = 'completed' and recording_state = 'recorded'\nand a.actual_start_time >= '2025-10-13'\nAND a.user_id = 143\n;\n\nselect * from leads\nwhere crm_configuration_id = 39; # 112 -> ac. 178, 109 => op. 1707\n\nSELECT * FROM activities WHERE id IN (356013,616188,616202,616310,407509,407375,356001,356008);\nSELECT * FROM activities WHERE id IN (356013,616188,616202,616310);\nSELECT * FROM activities WHERE id IN (407509,407375); # leads: 112, 109 | status - 198\nSELECT * FROM activities WHERE id IN (356001, 356008); # contacts:\n\nSELECT * FROM opportunities WHERE id IN (1707);\nSELECT * FROM stages where id IN (204, 198);\nSELECT * FROM opportunities WHERE account_id IN (178);\nSELECT * FROM opportunities WHERE crm_configuration_id = 39 AND created_at > '2025-01-01';\nSELECT * FROM contacts WHERE account_id IN (178); # 4118 Musaibe, 4448 Ceco Personal\n\nSELECT * FROM activities where crm_configuration_id = 39\nAND opportunity_id IS NULL\nAND is_internal = false\nand status = 'completed' and recording_state = 'recorded'\nAND actual_start_time >= '2025-10-13'\nAND (lead_id IS NOT NULL OR contact_id IS NOT NULL OR account_id IS NOT NULL)\n# AND lead_id IN (112, 109)\n;\n\nSELECT * FROM crm_profiles WHERE user_id = 143;\n\nselect * from inboxes; # 212\nselect * from users where id = 143; # 143\nselect * from inbox_email_batches where inbox_id = 212\nand updated_at >= '2026-01-28 00:00:00' order by id desc;\nselect * from inbox_emails where inbox_id = 212\nand batch_id = 95885 order by id desc;\nselect * from email_messages where origin_user_id = 143;\nselect * from activities where user_id = 143 and updated_at >= '2026-01-28 00:00:00';\nselect * from participants where activity_id = 620247;\n\nselect * from crm_profiles where user_id = 143;\n\nSELECT * FROM activities WHERE uuid_to_bin('458cf915-b914-4000-b083-5687b32b2956') = uuid; # 356001\nselect * from transcription where activity_id = 356001; # 6943\nselect * from ai_prompts where transcription_id = 6943;\nSELECT * FROM activity_summary_logs where activity_id = 356001;\n\nSELECT * FROM social_accounts WHERE sociable_id = 143;\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('0164a4fb-cb95-454e-9edd-4d804e4999bd') = uuid;\n# 422515 softphone tr. 8100\n\nSELECT * FROM activities WHERE uuid_to_bin('7520add8-8d87-41a5-98e5-fc4edf96f21e') = uuid;\n# 407509 conference tr. 7670 crmId: 00UD1000002J9aTMAS\n\nselect * from ai_prompts where transcription_id IN (8100, 7670);\nselect * from activity_summary_logs where activity_id = 407509;\n\nselect * from sidekick_settings;\nselect * from default_activity_types;\n\nSELECT * FROM contacts WHERE crm_configuration_id = 39 and email = 'm.kogoj@gmx.at';\nSELECT * FROM leads WHERE crm_configuration_id = 39 and email = 'm.kogoj@gmx.at';\n\nSELECT * FROM activity_searches where user_id = 143;\nSELECT * FROM groups where team_id = 1;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1; # 1150 - 7e75f8025c22\nselect id, name, group_id, status, deleted_at, email\nfrom users where team_id = 1 order by group_id desc ;\n\nselect * from activity_searches where id in (1977, 1978, 1979);\nselect * from activity_search_filters where activity_search_id IN (1977, 1978, 1979);\nselect * from activity_search_filters where filter = 'group_id' and value = '443f26b8-8512-437e-a9f9-7e75f8025c22'; # 10268, 10272, 10277\nselect * from nudges where activity_search_id IN (1977, 1978, 1979); # 877, 878, 879\n\nINSERT INTO `activity_search_filters`\n(`activity_search_id`, `filter`, `value`) VALUES\n(1977, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22'),\n(1978, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22'),\n(1979, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22')\n;\n\nselect * from crm_configurations where id = 39;\n\n\nselect sa.* from users u JOIN social_accounts sa on u.id = sa.sociable_id\nwhere u.team_id = 1;\nSELECT * FROM social_accounts WHERE sociable_id = 1635;\nSELECT * FROM users WHERE id = 1635;\n\nselect * from teams where id = 1;\nselect * from users where team_id = 1;\nselect * from team_features where team_id = 1;\nselect * from features;\n\nSELECT * FROM activity_searches where id = 1982; # 1981\nSELECT * FROM activity_search_filters WHERE activity_search_id = 1982;\n\nSELECT * FROM activities WHERE uuid_to_bin('e916569b-086c-4bd1-94d7-5e3802c27ccf') = uuid;\nSELECT * FROM groups WHERE id = 1439;\nSELECT * FROM users WHERE group_id = 1439;\n\nselect * from permissions; # 158\nselect * from roles;\nselect * from permission_role;\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 28;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 179;\nselect * from playbook_categories where id = 1391;\nselect * from users where id = 143;\nselect * from crm_profiles where user_id = 143;\nselect * from activities where crm_configuration_id = 39 and type = 'conference'\nand crm_provider_id IS NOT NULL ORDER by id desc;\nselect * from activities where id = 422003; # 00UO400000pB6fpMAC\n\nSELECT ar.id, ar.uuid, ar.media_type, ar.status, a.type\nFROM automated_report_results ar\nJOIN automated_reports a ON a.id = ar.report_id\nWHERE a.type = 'ask_jiminny'\nLIMIT 10;\n\nSELECT * FROM automated_reports where id = 71;\nSELECT * FROM automated_report_results where report_id = 71;\nUPDATE automated_reports set playbook_categories = NULL where id = 68;\nSELECT * FROM automated_report_results where id = 275;\n\nSELECT * FROM automated_reports order by id desc;\nSELECT * FROM automated_report_results order by id desc;\nselect * from activity_searches where user_id = 143;\nselect * from ask_anything_prompts;\n\nSELECT `automated_report_results`.* FROM `automated_report_results`\nINNER JOIN `automated_reports`\n ON `automated_report_results`.`report_id` = `automated_reports`.`id`\nWHERE 1=1\n AND `automated_report_results`.`generated_at` IS NOT NULL\n# AND `automated_report_results`.`sent_at` IS NOT NULL\n AND `automated_reports`.`team_id` = 1\n AND JSON_CONTAINS(`automated_reports`.`recipients`, 143, '$.\"users\"')\n;\n\nSELECT * FROM automated_reports where id = 67;\nSELECT * FROM automated_reports where id = 42;\nSELECT * FROM users WHERE id = 143; # group 28\n\nselect * from teams where id = 3143;\nselect * from crm_configurations where id = 500;\nselect * from users where name = 'Integration Account'; # 1695\nSELECT * FROM social_accounts WHERE sociable_id = 1695;\n\nselect * from activities where crm_configuration_id = 39\nand recording_state = 'recorded' and duration > 60\nand status = 'completed' and actual_start_time >= '2025-12-01';\n\nSELECT * FROM activities WHERE uuid_to_bin('458cf915-b914-4000-b083-5687b32b2956') = uuid;\n\nselect * from leads;\n\nSELECT * FROM activities WHERE uuid_to_bin('f43cf158-e60d-46e5-92f8-c4e0594a3219') = uuid; # 422003\nSELECT * FROM activities WHERE id IN (16,422003);\nSELECT * FROM activities where status = 'failed';\n\nSELECT * FROM tracks WHERE activity_id = 422003;\n\nSELECT\n a.*\nFROM activities a\nJOIN users u ON a.user_id = u.id\nWHERE\n a.status = 'completed'\n AND uuid_to_bin('641f1acb-16b8-42d1-8726-df52979dad0e') = u.uuid\n AND a.deleted_at IS NULL\n AND EXISTS (\n SELECT 1 FROM tracks t\n WHERE t.activity_id = a.id\n AND t.type IN ('audio', 'video')\n )\nORDER BY a.actual_start_time DESC\nLIMIT 25;\n\nselect * from teams where id = 19;\nselect * from crm_configurations where provider = 'pipedrive';\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 19 and sa.provider = 'pipedrive';\n\nSELECT * FROM social_accounts WHERE id = 1116;","depth":4,"on_screen":true,"value":"SELECT a.id, a.uuid, a.actual_start_time, o.id, o.uuid FROM opportunities o\nJOIN activities a ON o.id = a.opportunity_id\nWHERE a.crm_configuration_id = 39\nAND a.actual_start_time > '2025-10-13'\nAND a.type IN ('conference', 'softphone-inbound', 'softphone-outbound')\n;\n\nSELECT * FROM activities\nWHERE crm_configuration_id = 39 and user_id = 143\nand actual_start_time >= '2025-10-13'\nAND type IN ('conference', 'softphone-inbound', 'softphone-outbound')\n;\n\nSELECT * FROM opportunities WHERE account_id IN (178);\nselect * from activities where id IN (620137, 620187, 620188, 620189, 620230);\n\n# HS\nSELECT * FROM opportunities WHERE id IN (238);\nselect * from activities where id IN (477,2076);\n\nselect * from users;\n\nSELECT COUNT(*) FROM users;\nSELECT COUNT(*) FROM activities;\nSELECT COUNT(*) FROM opportunities;\n\nUPDATE activities\nSET\n actual_start_time = '2025-12-19 09:00:00',\n actual_end_time = '2025-12-19 10:30:00',\n scheduled_start_time = '2025-12-19 09:00:00',\n scheduled_end_time = '2025-12-19 10:30:00'\nWHERE id IN (407509,407375);\n\nselect * from partners;\n\nSELECT id, uuid, type, actual_start_time, user_id, crm_configuration_id\nFROM activities\nWHERE user_id = 143\nAND actual_start_time >= '2025-10-13 00:00:00'\nAND actual_start_time <= '2026-01-13 23:59:59'\nORDER BY actual_start_time DESC;\n\nSELECT * FROM activities WHERE uuid_to_bin('78eda160-3086-435f-88a5-bb0c71b6008d') = uuid;\nSELECT * FROM crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 282;\n# lead_id\n# account_id 177\n# contact_id 3969\n# opportunity_id\n# stage_id 203\n\nSELECT * FROM opportunities WHERE opportunities.crm_configuration_id = id = 282;\n\nSELECT * FROM activities where crm_configuration_id = 39 AND type = 'conference'\nAND user_id = 143 and actual_start_time >= '2025-10-13';\n\nSELECT * FROM activities a\n# JOIN opportunities o ON a.opportunity_id = o.id\nWHERE a.crm_configuration_id = 39 AND a.type = 'conference'\nand status = 'completed' and recording_state = 'recorded'\nand a.actual_start_time >= '2025-10-13'\nAND a.user_id = 143\n;\n\nselect * from leads\nwhere crm_configuration_id = 39; # 112 -> ac. 178, 109 => op. 1707\n\nSELECT * FROM activities WHERE id IN (356013,616188,616202,616310,407509,407375,356001,356008);\nSELECT * FROM activities WHERE id IN (356013,616188,616202,616310);\nSELECT * FROM activities WHERE id IN (407509,407375); # leads: 112, 109 | status - 198\nSELECT * FROM activities WHERE id IN (356001, 356008); # contacts:\n\nSELECT * FROM opportunities WHERE id IN (1707);\nSELECT * FROM stages where id IN (204, 198);\nSELECT * FROM opportunities WHERE account_id IN (178);\nSELECT * FROM opportunities WHERE crm_configuration_id = 39 AND created_at > '2025-01-01';\nSELECT * FROM contacts WHERE account_id IN (178); # 4118 Musaibe, 4448 Ceco Personal\n\nSELECT * FROM activities where crm_configuration_id = 39\nAND opportunity_id IS NULL\nAND is_internal = false\nand status = 'completed' and recording_state = 'recorded'\nAND actual_start_time >= '2025-10-13'\nAND (lead_id IS NOT NULL OR contact_id IS NOT NULL OR account_id IS NOT NULL)\n# AND lead_id IN (112, 109)\n;\n\nSELECT * FROM crm_profiles WHERE user_id = 143;\n\nselect * from inboxes; # 212\nselect * from users where id = 143; # 143\nselect * from inbox_email_batches where inbox_id = 212\nand updated_at >= '2026-01-28 00:00:00' order by id desc;\nselect * from inbox_emails where inbox_id = 212\nand batch_id = 95885 order by id desc;\nselect * from email_messages where origin_user_id = 143;\nselect * from activities where user_id = 143 and updated_at >= '2026-01-28 00:00:00';\nselect * from participants where activity_id = 620247;\n\nselect * from crm_profiles where user_id = 143;\n\nSELECT * FROM activities WHERE uuid_to_bin('458cf915-b914-4000-b083-5687b32b2956') = uuid; # 356001\nselect * from transcription where activity_id = 356001; # 6943\nselect * from ai_prompts where transcription_id = 6943;\nSELECT * FROM activity_summary_logs where activity_id = 356001;\n\nSELECT * FROM social_accounts WHERE sociable_id = 143;\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('0164a4fb-cb95-454e-9edd-4d804e4999bd') = uuid;\n# 422515 softphone tr. 8100\n\nSELECT * FROM activities WHERE uuid_to_bin('7520add8-8d87-41a5-98e5-fc4edf96f21e') = uuid;\n# 407509 conference tr. 7670 crmId: 00UD1000002J9aTMAS\n\nselect * from ai_prompts where transcription_id IN (8100, 7670);\nselect * from activity_summary_logs where activity_id = 407509;\n\nselect * from sidekick_settings;\nselect * from default_activity_types;\n\nSELECT * FROM contacts WHERE crm_configuration_id = 39 and email = 'm.kogoj@gmx.at';\nSELECT * FROM leads WHERE crm_configuration_id = 39 and email = 'm.kogoj@gmx.at';\n\nSELECT * FROM activity_searches where user_id = 143;\nSELECT * FROM groups where team_id = 1;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1; # 1150 - 7e75f8025c22\nselect id, name, group_id, status, deleted_at, email\nfrom users where team_id = 1 order by group_id desc ;\n\nselect * from activity_searches where id in (1977, 1978, 1979);\nselect * from activity_search_filters where activity_search_id IN (1977, 1978, 1979);\nselect * from activity_search_filters where filter = 'group_id' and value = '443f26b8-8512-437e-a9f9-7e75f8025c22'; # 10268, 10272, 10277\nselect * from nudges where activity_search_id IN (1977, 1978, 1979); # 877, 878, 879\n\nINSERT INTO `activity_search_filters`\n(`activity_search_id`, `filter`, `value`) VALUES\n(1977, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22'),\n(1978, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22'),\n(1979, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22')\n;\n\nselect * from crm_configurations where id = 39;\n\n\nselect sa.* from users u JOIN social_accounts sa on u.id = sa.sociable_id\nwhere u.team_id = 1;\nSELECT * FROM social_accounts WHERE sociable_id = 1635;\nSELECT * FROM users WHERE id = 1635;\n\nselect * from teams where id = 1;\nselect * from users where team_id = 1;\nselect * from team_features where team_id = 1;\nselect * from features;\n\nSELECT * FROM activity_searches where id = 1982; # 1981\nSELECT * FROM activity_search_filters WHERE activity_search_id = 1982;\n\nSELECT * FROM activities WHERE uuid_to_bin('e916569b-086c-4bd1-94d7-5e3802c27ccf') = uuid;\nSELECT * FROM groups WHERE id = 1439;\nSELECT * FROM users WHERE group_id = 1439;\n\nselect * from permissions; # 158\nselect * from roles;\nselect * from permission_role;\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 28;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 179;\nselect * from playbook_categories where id = 1391;\nselect * from users where id = 143;\nselect * from crm_profiles where user_id = 143;\nselect * from activities where crm_configuration_id = 39 and type = 'conference'\nand crm_provider_id IS NOT NULL ORDER by id desc;\nselect * from activities where id = 422003; # 00UO400000pB6fpMAC\n\nSELECT ar.id, ar.uuid, ar.media_type, ar.status, a.type\nFROM automated_report_results ar\nJOIN automated_reports a ON a.id = ar.report_id\nWHERE a.type = 'ask_jiminny'\nLIMIT 10;\n\nSELECT * FROM automated_reports where id = 71;\nSELECT * FROM automated_report_results where report_id = 71;\nUPDATE automated_reports set playbook_categories = NULL where id = 68;\nSELECT * FROM automated_report_results where id = 275;\n\nSELECT * FROM automated_reports order by id desc;\nSELECT * FROM automated_report_results order by id desc;\nselect * from activity_searches where user_id = 143;\nselect * from ask_anything_prompts;\n\nSELECT `automated_report_results`.* FROM `automated_report_results`\nINNER JOIN `automated_reports`\n ON `automated_report_results`.`report_id` = `automated_reports`.`id`\nWHERE 1=1\n AND `automated_report_results`.`generated_at` IS NOT NULL\n# AND `automated_report_results`.`sent_at` IS NOT NULL\n AND `automated_reports`.`team_id` = 1\n AND JSON_CONTAINS(`automated_reports`.`recipients`, 143, '$.\"users\"')\n;\n\nSELECT * FROM automated_reports where id = 67;\nSELECT * FROM automated_reports where id = 42;\nSELECT * FROM users WHERE id = 143; # group 28\n\nselect * from teams where id = 3143;\nselect * from crm_configurations where id = 500;\nselect * from users where name = 'Integration Account'; # 1695\nSELECT * FROM social_accounts WHERE sociable_id = 1695;\n\nselect * from activities where crm_configuration_id = 39\nand recording_state = 'recorded' and duration > 60\nand status = 'completed' and actual_start_time >= '2025-12-01';\n\nSELECT * FROM activities WHERE uuid_to_bin('458cf915-b914-4000-b083-5687b32b2956') = uuid;\n\nselect * from leads;\n\nSELECT * FROM activities WHERE uuid_to_bin('f43cf158-e60d-46e5-92f8-c4e0594a3219') = uuid; # 422003\nSELECT * FROM activities WHERE id IN (16,422003);\nSELECT * FROM activities where status = 'failed';\n\nSELECT * FROM tracks WHERE activity_id = 422003;\n\nSELECT\n a.*\nFROM activities a\nJOIN users u ON a.user_id = u.id\nWHERE\n a.status = 'completed'\n AND uuid_to_bin('641f1acb-16b8-42d1-8726-df52979dad0e') = u.uuid\n AND a.deleted_at IS NULL\n AND EXISTS (\n SELECT 1 FROM tracks t\n WHERE t.activity_id = a.id\n AND t.type IN ('audio', 'video')\n )\nORDER BY a.actual_start_time DESC\nLIMIT 25;\n\nselect * from teams where id = 19;\nselect * from crm_configurations where provider = 'pipedrive';\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 19 and sa.provider = 'pipedrive';\n\nSELECT * FROM social_accounts WHERE id = 1116;","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"on_screen":true,"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},"on_screen":false,"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},"on_screen":false,"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},"on_screen":false,"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},"on_screen":false,"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},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app","depth":6,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".circleci","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".cursor","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".vscode","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".windsurf","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"app, sources root","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Actions","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Component","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Acl","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActionItems","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Activity","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivityAnalytics","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivitySearch","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiActivityType","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiAutomation","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiCallScoring","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskAnything","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dtos","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Events","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskAnythingPromptService.php, class","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"HistoryService.php, class","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskJiminnyAi","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AWS","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BillingManagement","depth":9,"on_screen":false,"role_description":"text"}]...
|
1532279257863433972
|
6686367290062452301
|
visual_change
|
accessibility
|
NULL
|
Laravel Idea: Generate Helper Code?
Helper Code wi Laravel Idea: Generate Helper Code?
Helper Code will help IDE to understand your Laravel app code.
text/html
text/html
text/html
Generate
Don't Show Anymore
More
The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
pipedrive-sdk-poc, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
23
22
16
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1052 and sa.provider = 'hubspot';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1052;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = '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 pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (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 * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_reports where id IN (55);
select * from automated_report_results where id IN (81);
select * from users where id IN (10633, 13987, 11985);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
select * from automated_report_results where media_type = 'pdf' and status = 2;
SELECT * FROM automated_report_results WHERE uuid_to_bin('82e74956-6144-4cd1-a3d3-af985c3070a4') = uuid;
select * from teams where id = 1029;
select * from crm_configurations where provider = 'pipedrive';
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1029 and sa.provider = 'pipedrive';
[
{
"user_id": "23460 (owner)",
"email": "[EMAIL]",
"id": 69,
"sociable_id": 23460,
"provider_user_id": "19555731",
"provider_user_token": "v1u:AQIBAHj-LzTNK2yuuuaLqifzhWb9crUNKTpk4FlQ9rjnXqp_6AEQhDhDQVa1nvWCHEvnpvSEAAAAfjB8BgkqhkiG9w0BBwagbzBtAgEAMGgGCSqGSIb3DQEHATAeBglghkgBZQMEAS4wEQQMnG8KNcZLIjEnlRPxAgEQgDsGPIcKjsMU7Qel36BtM5FCQa56mYUy24_AAoqd12yjVFkq6egLqS0inp-5G4JE7frJURMV8VTw_fY14g:OPrsRnjDrxiocwEU38d3e3LZXhacVtw1JBRLemFCrUfFEnFkMc2apOgKTlIKCxLhDX96axvQ7rnL-Wh7FvpBAFZsyap7eIOhlO8h6NwirzBUFmB9kXHbTC1d6AZOSwoC8QOq8oArtU1rSsZy9ED3dABAwV6Bo-jE5x20U5QeFZg5uoD8tfkfxPA5yWVxZIE2Y7S_uaM95n5eV4lLVkC9pF0c7WHwUSQxw689clWepqCRwND_1ley17zfqB3ZuDrUCRFmXq_pdC5c8NAlYMsZp7lGme53C-KVntIw6ccNuj0GzLBFGK45t_w8iHBmRf1nvfgN3siC2EB9PhMmJKRmvhKM_ZY",
"provider_refresh_token": "5034113:[TELEGRAM_TOKEN]b2bfc",
"expires": 1778858898,
"refresh_token_expires": null,
"provider": "pipedrive",
"state": "connected",
"auth_scope": "base,deals:full,activities:full,contacts:full,search:read",
"retry_after": null,
"created_at": "2025-04-16 08:23:28",
"updated_at": "2026-05-15 14:28:19",
"provider_user_token_encrypted": "eyJpdiI6IjdUMTU0b1JkMUJkMFVNS0ZjZk1URmc9PSIsInZhbHVlIjoiNkQyMzJaeG1xelRMNDBzTjNTd081OUdZMUlyUEpic1l2QjEwTGg4K0NqNkx6aU56RzVlS0VubG1UemNxR1VKTUFCRHhQbGxPcDhwVXNkbnhhd1daeU0vd1ZmMUZyMXFUazFMdmZOeVhVdGxIWEM4TFdEbVVkUzVSR1ozOWJvRzU5cU0wSnNsSVByUS9kam8wVUVhM09RL0NFY1Vaemt4QTFnM1owbEdrU3FRTTVBcjlzem9uZ3hRb255UldLeVJHQXlOZXJLSmY0dUlGeGU0Nm4wZ00yd2tlaVNReUNBTDd3TjlPVmFFU2hvVjZ4ZHlYOVJYOEJNeDFSOHMycXJZZzhMRHg0ekRPMU5XdityQW15MTZ1a2V1SG4vRXJuckRkbG0xYXBPUU5iRmZzTmtVWmcrZUY2NCtuRlFxTnhIdDE1VWVpYk5LN3hVNzYwMlRHUVpHbmZlUktOTlovRjlOT1R3WWtKcUhRRHRqSXhOa1VUemgvUWx4MU5tSVlqYVJGM1JoQkVNZ0tKNCs1ejNQdjN4aU5Cb0ZPYzZTbGR1aG9nSXJuNWNYUXRvWGZIUHA2OERqNmJjalVmZkdBaWRRd21Gd0RvTytXUUtlY2VvZmhiTE8veHoxNmwvZTRMa3B2L25sd2drVytZM01VS1czWkZqVUpRa2tZaklWcGczaGZQdCtqd3EwZ1hsM3FrM3M0cHdTZUZvNHlQMDRSTG5wMmNScWJ5MFNVWmx2ZUZWK1RDRmVYZ3lpcDUzQS9YOWhrbjcrKzdDVm5VMkE4dytROUtCdGNmN3hVa3B1MHNEU295Wm5nM0tNTURQaXBxZThpc25qU1RWVWFNTmhOUk1SM3ZiQldxSklONGxkeFRGSG5GK0RwSWdaU2p5ZlNuU1BHbGtzNlkvSXZuVjBpR1pSZDU3TkcxMjY0Z1RPNVNFS3grdWozdmN3bkFwQmZSYjNsMGYycnU3Vzl4K3k3aU4zTjhTU3Era1FqUmFQbzNQcWRWelJVTG9XWTVIZFAwSm83MVp2eTBNc1l4SVR2UlJGNElaYUJ4Y3F1K3lYWXRoamRFR0drS1hPYVNNVT0iLCJtYWMiOiI4MTg5N2QyZjU4OTQzYjA5ZTU2ZWViNGIzMTcwZDM5M2FhMTQyNDg0MDMyZTMwOGJjM2RlNDg2ZGE2MzY1M2MyIiwidGFnIjoiIn0=",
"provider_refresh_token_encrypted": "eyJpdiI6InErMzV0Vlh0MjE4TjBIN0NlUENOK3c9PSIsInZhbHVlIjoiYTd1ZThZQmlTRnhac3NjN09xVy90dGV3emJRME11ZUtvTXNQS2F6cXptVGJOYU5uQWViVnNENTl6OWdzTzk3YjJYN3BDeTRJT2I1K2YvQ2RvZThTc0E9PSIsIm1hYyI6ImQ4YmZlNmUwNWJhZTZiY2FhYTY4MGQxY2E0MmEyZDg0ZmE0Y2RjZmVlNTBjMGY5YjQ3YTgzODBlNGVjM2VhYmIiLCJ0YWciOiIifQ==",
"encryption_key": "0x01020300786192D9D96DD60D3D1EBC9DFAEE5F0C45EE80165CF3F3D2B3B627026AA7CFC7CA0128DD463535D32EE491ADBADF8B07596B0000006E306C06092A864886F70D010706A05F305D020100305806092A864886F70D010701301E060960864801650304012E3011040C7FB1319048ECB2EA3F23B995020110802B52D22F5EAD341AB238FBBCB6093156E443876A664BA5555D722565C2B2D04422C868CD7350555E3CC74221",
"sociable_type": "user",
"owner_id": 23460
},
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Code changed:
Hide
Sync Changes
Hide This Notification
20
1
18
2
6
Previous Highlighted Error
Next Highlighted Error
SELECT a.id, a.uuid, a.actual_start_time, o.id, o.uuid FROM opportunities o
JOIN activities a ON o.id = a.opportunity_id
WHERE a.crm_configuration_id = 39
AND a.actual_start_time > '2025-10-13'
AND a.type IN ('conference', 'softphone-inbound', 'softphone-outbound')
;
SELECT * FROM activities
WHERE crm_configuration_id = 39 and user_id = 143
and actual_start_time >= '2025-10-13'
AND type IN ('conference', 'softphone-inbound', 'softphone-outbound')
;
SELECT * FROM opportunities WHERE account_id IN (178);
select * from activities where id IN (620137, 620187, 620188, 620189, 620230);
# HS
SELECT * FROM opportunities WHERE id IN (238);
select * from activities where id IN (477,2076);
select * from users;
SELECT COUNT(*) FROM users;
SELECT COUNT(*) FROM activities;
SELECT COUNT(*) FROM opportunities;
UPDATE activities
SET
actual_start_time = '2025-12-19 09:00:00',
actual_end_time = '2025-12-19 10:30:00',
scheduled_start_time = '2025-12-19 09:00:00',
scheduled_end_time = '2025-12-19 10:30:00'
WHERE id IN (407509,407375);
select * from partners;
SELECT id, uuid, type, actual_start_time, user_id, crm_configuration_id
FROM activities
WHERE user_id = 143
AND actual_start_time >= '2025-10-13 00:00:00'
AND actual_start_time <= '2026-01-13 23:59:59'
ORDER BY actual_start_time DESC;
SELECT * FROM activities WHERE uuid_to_bin('78eda160-3086-435f-88a5-bb0c71b6008d') = uuid;
SELECT * FROM crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 282;
# lead_id
# account_id 177
# contact_id 3969
# opportunity_id
# stage_id 203
SELECT * FROM opportunities WHERE opportunities.crm_configuration_id = id = 282;
SELECT * FROM activities where crm_configuration_id = 39 AND type = 'conference'
AND user_id = 143 and actual_start_time >= '2025-10-13';
SELECT * FROM activities a
# JOIN opportunities o ON a.opportunity_id = o.id
WHERE a.crm_configuration_id = 39 AND a.type = 'conference'
and status = 'completed' and recording_state = 'recorded'
and a.actual_start_time >= '2025-10-13'
AND a.user_id = 143
;
select * from leads
where crm_configuration_id = 39; # 112 -> ac. 178, 109 => op. 1707
SELECT * FROM activities WHERE id IN (356013,616188,616202,616310,407509,407375,356001,356008);
SELECT * FROM activities WHERE id IN (356013,616188,616202,616310);
SELECT * FROM activities WHERE id IN (407509,407375); # leads: 112, 109 | status - 198
SELECT * FROM activities WHERE id IN (356001, 356008); # contacts:
SELECT * FROM opportunities WHERE id IN (1707);
SELECT * FROM stages where id IN (204, 198);
SELECT * FROM opportunities WHERE account_id IN (178);
SELECT * FROM opportunities WHERE crm_configuration_id = 39 AND created_at > '2025-01-01';
SELECT * FROM contacts WHERE account_id IN (178); # 4118 Musaibe, 4448 Ceco Personal
SELECT * FROM activities where crm_configuration_id = 39
AND opportunity_id IS NULL
AND is_internal = false
and status = 'completed' and recording_state = 'recorded'
AND actual_start_time >= '2025-10-13'
AND (lead_id IS NOT NULL OR contact_id IS NOT NULL OR account_id IS NOT NULL)
# AND lead_id IN (112, 109)
;
SELECT * FROM crm_profiles WHERE user_id = 143;
select * from inboxes; # 212
select * from users where id = 143; # 143
select * from inbox_email_batches where inbox_id = 212
and updated_at >= '2026-01-28 00:00:00' order by id desc;
select * from inbox_emails where inbox_id = 212
and batch_id = 95885 order by id desc;
select * from email_messages where origin_user_id = 143;
select * from activities where user_id = 143 and updated_at >= '2026-01-28 00:00:00';
select * from participants where activity_id = 620247;
select * from crm_profiles where user_id = 143;
SELECT * FROM activities WHERE uuid_to_bin('458cf915-b914-4000-b083-5687b32b2956') = uuid; # 356001
select * from transcription where activity_id = 356001; # 6943
select * from ai_prompts where transcription_id = 6943;
SELECT * FROM activity_summary_logs where activity_id = 356001;
SELECT * FROM social_accounts WHERE sociable_id = 143;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('0164a4fb-cb95-454e-9edd-4d804e4999bd') = uuid;
# 422515 softphone tr. 8100
SELECT * FROM activities WHERE uuid_to_bin('7520add8-8d87-41a5-98e5-fc4edf96f21e') = uuid;
# 407509 conference tr. 7670 crmId: 00UD1000002J9aTMAS
select * from ai_prompts where transcription_id IN (8100, 7670);
select * from activity_summary_logs where activity_id = 407509;
select * from sidekick_settings;
select * from default_activity_types;
SELECT * FROM contacts WHERE crm_configuration_id = 39 and email = '[EMAIL]';
SELECT * FROM leads WHERE crm_configuration_id = 39 and email = '[EMAIL]';
SELECT * FROM activity_searches where user_id = 143;
SELECT * FROM groups where team_id = 1;
select * from teams where id = 1;
select * from groups where team_id = 1; # 1150 - 7e75f8025c22
select id, name, group_id, status, deleted_at, email
from users where team_id = 1 order by group_id desc ;
select * from activity_searches where id in (1977, 1978, 1979);
select * from activity_search_filters where activity_search_id IN (1977, 1978, 1979);
select * from activity_search_filters where filter = 'group_id' and value = '443f26b8-8512-437e-a9f9-7e75f8025c22'; # 10268, 10272, 10277
select * from nudges where activity_search_id IN (1977, 1978, 1979); # 877, 878, 879
INSERT INTO `activity_search_filters`
(`activity_search_id`, `filter`, `value`) VALUES
(1977, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22'),
(1978, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22'),
(1979, 'group_id', '443f26b8-8512-437e-a9f9-7e75f8025c22')
;
select * from crm_configurations where id = 39;
select sa.* from users u JOIN social_accounts sa on u.id = sa.sociable_id
where u.team_id = 1;
SELECT * FROM social_accounts WHERE sociable_id = 1635;
SELECT * FROM users WHERE id = 1635;
select * from teams where id = 1;
select * from users where team_id = 1;
select * from team_features where team_id = 1;
select * from features;
SELECT * FROM activity_searches where id = 1982; # 1981
SELECT * FROM activity_search_filters WHERE activity_search_id = 1982;
SELECT * FROM activities WHERE uuid_to_bin('e916569b-086c-4bd1-94d7-5e3802c27ccf') = uuid;
SELECT * FROM groups WHERE id = 1439;
SELECT * FROM users WHERE group_id = 1439;
select * from permissions; # 158
select * from roles;
select * from permission_role;
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 28;
select * from playbooks where team_id = 1;
select * from playbooks where id = 179;
select * from playbook_categories where id = 1391;
select * from users where id = 143;
select * from crm_profiles where user_id = 143;
select * from activities where crm_configuration_id = 39 and type = 'conference'
and crm_provider_id IS NOT NULL ORDER by id desc;
select * from activities where id = 422003; # 00UO400000pB6fpMAC
SELECT ar.id, ar.uuid, ar.media_type, ar.status, a.type
FROM automated_report_results ar
JOIN automated_reports a ON a.id = ar.report_id
WHERE a.type = 'ask_jiminny'
LIMIT 10;
SELECT * FROM automated_reports where id = 71;
SELECT * FROM automated_report_results where report_id = 71;
UPDATE automated_reports set playbook_categories = NULL where id = 68;
SELECT * FROM automated_report_results where id = 275;
SELECT * FROM automated_reports order by id desc;
SELECT * FROM automated_report_results order by id desc;
select * from activity_searches where user_id = 143;
select * from ask_anything_prompts;
SELECT `automated_report_results`.* FROM `automated_report_results`
INNER JOIN `automated_reports`
ON `automated_report_results`.`report_id` = `automated_reports`.`id`
WHERE 1=1
AND `automated_report_results`.`generated_at` IS NOT NULL
# AND `automated_report_results`.`sent_at` IS NOT NULL
AND `automated_reports`.`team_id` = 1
AND JSON_CONTAINS(`automated_reports`.`recipients`, 143, '$."users"')
;
SELECT * FROM automated_reports where id = 67;
SELECT * FROM automated_reports where id = 42;
SELECT * FROM users WHERE id = 143; # group 28
select * from teams where id = 3143;
select * from crm_configurations where id = 500;
select * from users where name = 'Integration Account'; # 1695
SELECT * FROM social_accounts WHERE sociable_id = 1695;
select * from activities where crm_configuration_id = 39
and recording_state = 'recorded' and duration > 60
and status = 'completed' and actual_start_time >= '2025-12-01';
SELECT * FROM activities WHERE uuid_to_bin('458cf915-b914-4000-b083-5687b32b2956') = uuid;
select * from leads;
SELECT * FROM activities WHERE uuid_to_bin('f43cf158-e60d-46e5-92f8-c4e0594a3219') = uuid; # 422003
SELECT * FROM activities WHERE id IN (16,422003);
SELECT * FROM activities where status = 'failed';
SELECT * FROM tracks WHERE activity_id = 422003;
SELECT
a.*
FROM activities a
JOIN users u ON a.user_id = u.id
WHERE
a.status = 'completed'
AND uuid_to_bin('641f1acb-16b8-42d1-8726-df52979dad0e') = u.uuid
AND a.deleted_at IS NULL
AND EXISTS (
SELECT 1 FROM tracks t
WHERE t.activity_id = a.id
AND t.type IN ('audio', 'video')
)
ORDER BY a.actual_start_time DESC
LIMIT 25;
select * from teams where id = 19;
select * from crm_configurations where provider = 'pipedrive';
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 19 and sa.provider = 'pipedrive';
SELECT * FROM social_accounts WHERE id = 1116;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Acl
ActionItems
Activity
ActivityAnalytics
ActivitySearch
AiActivityType
AiAutomation
AiCallScoring
AskAnything
Dtos
Events
AskAnythingPromptService.php, class
HistoryService.php, class
AskJiminnyAi
AWS
BillingManagement...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49329
|
1761
|
4
|
2026-05-18T06:35:47.094314+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086147094_m2.jpg...
|
PhpStorm
|
faVsco.js – SF [jiminny@localhost]
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Laravel Idea: Generate Helper Code?
Helper Code wi Laravel Idea: Generate Helper Code?
Helper Code will help IDE to understand your Laravel app code.
text/html
text/html
text/html
Generate
Don't Show Anymore
More
The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"Laravel Idea: Generate Helper Code?","depth":2,"bounds":{"left":0.8753325,"top":0.8172386,"width":0.100398935,"height":0.013567438},"on_screen":true,"role_description":"text"},{"role":"AXTextField","text":"Helper Code will help IDE to understand your Laravel app code.","depth":3,"bounds":{"left":0.8753325,"top":0.83320034,"width":0.11037234,"height":0.027134877},"on_screen":true,"value":"Helper Code will help IDE to understand your Laravel app code.","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"bounds":{"left":0.8753325,"top":0.83320034,"width":0.09275266,"height":0.027134877},"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Generate","depth":2,"bounds":{"left":0.8753325,"top":0.8659218,"width":0.018949468,"height":0.013567438},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Don't Show Anymore","depth":2,"bounds":{"left":0.89960104,"top":0.8659218,"width":0.04288564,"height":0.013567438},"on_screen":true,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"More","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.016289894,"height":0.0},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","depth":3,"bounds":{"left":0.8753325,"top":0.9074222,"width":0.11037234,"height":0.054269753},"on_screen":true,"value":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"bounds":{"left":0.8753325,"top":0.9074222,"width":0.095744684,"height":0.054269753},"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-3650080095371983071
|
6269594283330885710
|
click
|
accessibility
|
NULL
|
Laravel Idea: Generate Helper Code?
Helper Code wi Laravel Idea: Generate Helper Code?
Helper Code will help IDE to understand your Laravel app code.
text/html
text/html
text/html
Generate
Don't Show Anymore
More
The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html...
|
49328
|
NULL
|
NULL
|
NULL
|
|
49330
|
1760
|
4
|
2026-05-18T06:35:47.094333+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086147094_m1.jpg...
|
PhpStorm
|
faVsco.js – SF [jiminny@localhost]
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShelllEditViewSessionScriptsProfilesWindowHe iTerm2ShelllEditViewSessionScriptsProfilesWindowHelp•• 0APP (-zsh)DOCKERLast login: Mon May 18 09:17:28 on ttys007O 81DEV (-zsh)O 82Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentsPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ U‹ $0APP (-zsh)|83100% <7|8• Mon 18 May 9:35:46screenpipe"T₴1₴4APP...
|
NULL
|
5111702543960518965
|
NULL
|
click
|
ocr
|
NULL
|
iTerm2ShelllEditViewSessionScriptsProfilesWindowHe iTerm2ShelllEditViewSessionScriptsProfilesWindowHelp•• 0APP (-zsh)DOCKERLast login: Mon May 18 09:17:28 on ttys007O 81DEV (-zsh)O 82Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentsPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ U‹ $0APP (-zsh)|83100% <7|8• Mon 18 May 9:35:46screenpipe"T₴1₴4APP...
|
49327
|
NULL
|
NULL
|
NULL
|
|
49331
|
1760
|
5
|
2026-05-18T06:35:51.452041+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086151452_m1.jpg...
|
Firefox
|
Finance Hub — Personal
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2Shell|EditViewSessionScriptsProfilesWindowHe iTerm2Shell|EditViewSessionScriptsProfilesWindowHelp100% C47 8• Mon 18 May 9:35:51•• 0APP (-zsh)T₴1DOCKERLast login: Mon May 18 09:17:28 on ttys007O 81DEV (-zsh)O ₴2Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentsPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentsLukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ 0APP (-zsh)83screenpipe*O &4APPPS-$1Firefox...
|
NULL
|
1479776929738670055
|
NULL
|
visual_change
|
ocr
|
NULL
|
iTerm2Shell|EditViewSessionScriptsProfilesWindowHe iTerm2Shell|EditViewSessionScriptsProfilesWindowHelp100% C47 8• Mon 18 May 9:35:51•• 0APP (-zsh)T₴1DOCKERLast login: Mon May 18 09:17:28 on ttys007O 81DEV (-zsh)O ₴2Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentsPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentsLukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ 0APP (-zsh)83screenpipe*O &4APPPS-$1Firefox...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49332
|
1761
|
5
|
2026-05-18T06:35:51.466115+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086151466_m2.jpg...
|
Firefox
|
Finance Hub — Personal
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
PhostormFV faVsco.js~VIewINavicare%9 pipedrive-sdk PhostormFV faVsco.js~VIewINavicare%9 pipedrive-sdk-pocvCodeLaravelKeractorroledey® ActivityController.php© SyncHubspotObjects.php© ConvertLeadActivities.php© SyncPlanhat.php©syncleaa.onp©syncoolects.onp© SyncOpportunitiesMissingFieldDataC/© CreatePlaybookCreatedEvent.phpg) syncopportunity.onp)syncrronllemeradata.ono© SyncTeamMetadata.phpc) IntearationApp/Service.php© LeadConverted.php© CreateSelfCoachedEvent.phpC) TestPipedriveOfticialSakcommand.ohC) CreateCommentedEvent.phpC) CreateSmsSentEvent.ohpC) PlanhatActivityListener.phoc) [EMAIL]> @ DealinsightsCAskAnvthinaPromotService.ohdDDevC) AutomatedReportsCommand.ohophp api y2.ohoC) RequestGenerateReport.Job.oho/> DialersDITOS© AutomatedReportResult.php© AutomatedReport.phpA console (STAGING]• EasticsearchEngagementStats> M GeckoSxoortdectarelstrict_types-ty,Livestream• M MailboxesO Migrate• M Plavhackthemecuse …Playbooks> D Playlists14 Dclass syncubnects extends command> D Postmark> D ProphetAi~ D Reports©AutomatedReportsCommand.php© AutomatedReportsRetentionPolicyCor* The name and sianature of the console commandi© AutomatedReportsSendCommand.ph/© CreateMockAskJiminnyReportResultO* ovar strind© DeleteReportCommand.php©GenerateMarketingReport.php7301orotected ssionature = crm:sunc-ohnects «team?, <--svncs'*© Team.phpc) Usage.php> D Slack* The console command description.> M Teamsa Tracks* @var string>a TranscriotionTwiloprotected $description = 'Sync remote CRM objects.';> User‹Vocabulary* Eyecuto the concole commandl> IMzoom© Command.php© CreateDatabaseUsers.phppublic function handle(): voidf...,© DatabaseTableCount.php© DeleteOldAiCrmNotesCommand.php© DeleteS3LeftoversCommand.php69 đ >protected function getStaggerDelaySeconds(): floatf.…,C) DevPostmanCommand.nhn@ nisrizoVinAiDarticinantldentificationCom.©EncryptTokensCommand.php74 đ >protected function getMaxDelaySeconds(): intf..,© EngagementStatsRegenerateCommand.fFeatureFlagsHelper.php81 đ >protected function getLogPrefix(): stringf…..]Helper Code will help IDE to understand your Laravel app code. // Generate // Don't Show Anymore (a minute ago)E custom.logE laravel.log© TestPipedriveOfficialSakCommand.phpA console (PROD]2212222232242552584 SF [iminny@localhost] XA HS_local (jiminny@localhost]O KernelpnpA console (EU]dajiminny ~020 A1 A18 X2 X6 A Vselect * from users where name = 'Integration Account': # mSELECT * FROM social_accounts WHERE sociable_id = 1695;select * from activities where crm_configuration_id = 39and recording state = 'recorded' and duration > 60and status = 'completed' and actual_start_time >= '2025-12-01';SELECT * FROM activities WHERE uuid_to_bin('458cf915-b914-4000-b083-5687b32b2956') = uuirselect * from leads;SELECT * FROM activities WHERE Uvid_to_bin('f43cf158-e60d-46e5-92f8-C4e0594a3219') = uuieSELECT * FROM activities WHERE id IN (16,422003);SELECT * FROM activities where status = 'failed';SELECT * FROM tracks WHERE activity_id = 422003;SELECTa.*FROM activities aJOIN users u 1..n<->1: ON a.user_id = u.idWHEREa.status = 'completed'AND uuid_to_bin('641f1acb-16b8-42d1-8726-df52979dad0e') = U.uuidAND a.deleted_at IS NULLAND EXISTS (SELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual_start_time DESCLIMIT 25;select * from teams where id = 19;select * from crm_configurations where provider = 'pipedrive';SELECTCONCAT(u.id, CASE WHEN U.id = t.owner_id THEN ' (owner)' ELSE "* END) AS user_id,u. emanSA.*t.owner_id FROM social_accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idlWHERE U.team_id = 19 and sa.provider = 'pipedrive':SELECT * FROM social_accounts WHERE id = 1116;CascadeCascade$0AskJiminnyReportActivityServiceTest v100% Lz&• Mon 18 May 9:35:50+0 ..wCascade Code x• .Kick off a new project. Make changesacross your entire codedase.G Debugging Pipedrive SDK Token© Text Relay Duplication FixReview PR for Activity StageAsk anything (30L)• <› CodeSWF.16• Laravel Idea: Generate Helper Code?Heloer Code willl nelo IDe to understand vourLaravel apo code.GenerateDon't Show AnvmoreWN Windsurf Teamo29:8 UTF-8f?4 spaces...
|
NULL
|
4452909682386183096
|
NULL
|
app_switch
|
ocr
|
NULL
|
PhostormFV faVsco.js~VIewINavicare%9 pipedrive-sdk PhostormFV faVsco.js~VIewINavicare%9 pipedrive-sdk-pocvCodeLaravelKeractorroledey® ActivityController.php© SyncHubspotObjects.php© ConvertLeadActivities.php© SyncPlanhat.php©syncleaa.onp©syncoolects.onp© SyncOpportunitiesMissingFieldDataC/© CreatePlaybookCreatedEvent.phpg) syncopportunity.onp)syncrronllemeradata.ono© SyncTeamMetadata.phpc) IntearationApp/Service.php© LeadConverted.php© CreateSelfCoachedEvent.phpC) TestPipedriveOfticialSakcommand.ohC) CreateCommentedEvent.phpC) CreateSmsSentEvent.ohpC) PlanhatActivityListener.phoc) [EMAIL]> @ DealinsightsCAskAnvthinaPromotService.ohdDDevC) AutomatedReportsCommand.ohophp api y2.ohoC) RequestGenerateReport.Job.oho/> DialersDITOS© AutomatedReportResult.php© AutomatedReport.phpA console (STAGING]• EasticsearchEngagementStats> M GeckoSxoortdectarelstrict_types-ty,Livestream• M MailboxesO Migrate• M Plavhackthemecuse …Playbooks> D Playlists14 Dclass syncubnects extends command> D Postmark> D ProphetAi~ D Reports©AutomatedReportsCommand.php© AutomatedReportsRetentionPolicyCor* The name and sianature of the console commandi© AutomatedReportsSendCommand.ph/© CreateMockAskJiminnyReportResultO* ovar strind© DeleteReportCommand.php©GenerateMarketingReport.php7301orotected ssionature = crm:sunc-ohnects «team?, <--svncs'*© Team.phpc) Usage.php> D Slack* The console command description.> M Teamsa Tracks* @var string>a TranscriotionTwiloprotected $description = 'Sync remote CRM objects.';> User‹Vocabulary* Eyecuto the concole commandl> IMzoom© Command.php© CreateDatabaseUsers.phppublic function handle(): voidf...,© DatabaseTableCount.php© DeleteOldAiCrmNotesCommand.php© DeleteS3LeftoversCommand.php69 đ >protected function getStaggerDelaySeconds(): floatf.…,C) DevPostmanCommand.nhn@ nisrizoVinAiDarticinantldentificationCom.©EncryptTokensCommand.php74 đ >protected function getMaxDelaySeconds(): intf..,© EngagementStatsRegenerateCommand.fFeatureFlagsHelper.php81 đ >protected function getLogPrefix(): stringf…..]Helper Code will help IDE to understand your Laravel app code. // Generate // Don't Show Anymore (a minute ago)E custom.logE laravel.log© TestPipedriveOfficialSakCommand.phpA console (PROD]2212222232242552584 SF [iminny@localhost] XA HS_local (jiminny@localhost]O KernelpnpA console (EU]dajiminny ~020 A1 A18 X2 X6 A Vselect * from users where name = 'Integration Account': # mSELECT * FROM social_accounts WHERE sociable_id = 1695;select * from activities where crm_configuration_id = 39and recording state = 'recorded' and duration > 60and status = 'completed' and actual_start_time >= '2025-12-01';SELECT * FROM activities WHERE uuid_to_bin('458cf915-b914-4000-b083-5687b32b2956') = uuirselect * from leads;SELECT * FROM activities WHERE Uvid_to_bin('f43cf158-e60d-46e5-92f8-C4e0594a3219') = uuieSELECT * FROM activities WHERE id IN (16,422003);SELECT * FROM activities where status = 'failed';SELECT * FROM tracks WHERE activity_id = 422003;SELECTa.*FROM activities aJOIN users u 1..n<->1: ON a.user_id = u.idWHEREa.status = 'completed'AND uuid_to_bin('641f1acb-16b8-42d1-8726-df52979dad0e') = U.uuidAND a.deleted_at IS NULLAND EXISTS (SELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual_start_time DESCLIMIT 25;select * from teams where id = 19;select * from crm_configurations where provider = 'pipedrive';SELECTCONCAT(u.id, CASE WHEN U.id = t.owner_id THEN ' (owner)' ELSE "* END) AS user_id,u. emanSA.*t.owner_id FROM social_accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idlWHERE U.team_id = 19 and sa.provider = 'pipedrive':SELECT * FROM social_accounts WHERE id = 1116;CascadeCascade$0AskJiminnyReportActivityServiceTest v100% Lz&• Mon 18 May 9:35:50+0 ..wCascade Code x• .Kick off a new project. Make changesacross your entire codedase.G Debugging Pipedrive SDK Token© Text Relay Duplication FixReview PR for Activity StageAsk anything (30L)• <› CodeSWF.16• Laravel Idea: Generate Helper Code?Heloer Code willl nelo IDe to understand vourLaravel apo code.GenerateDon't Show AnvmoreWN Windsurf Teamo29:8 UTF-8f?4 spaces...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49333
|
1761
|
6
|
2026-05-18T06:35:53.789166+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086153789_m2.jpg...
|
iTerm2
|
NULL
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
rireroxcalMistorbookmarksProtllesWindowmelprTavsco rireroxcalMistorbookmarksProtllesWindowmelprTavsco.s?° pipedrive-sdk-pocroledey© SyncHubspotObjects.php(C) ConvertLeadActivities.ong© SyncPlanhat.php©syncleaa.onpc syncopponunitiesmissingrielaDalact c createPlaybookcreatedevent.ongg) syncopportunity.onp)syncrronllemeradata.ono© SyncTeamMetadata.phpC) TestPipedriveOfticialSakcommand.ohc) IntearationApp/Service.php© LeadConverted.php© CreateSelfCoachedEvent.phpC) CreateCommentedEvent.phoC) CreateSmsSentEvent.ohpC) PlanhatActivityListener.phoc) [EMAIL]> @ Dealinsights(C)AskAnvthinaPromotService.ohdC DevC) AutomatedRenortsCommand.ohophp api y2.ohoC) RequestGenerateReport.Job.oho/> Dialers(C) AutomatedReportkesulconp© AutomatedReport.phpA console [STAGING]DITOS→ EasticsearchEndagementStats> M GeckoSxoortdectarelstrict_types-ty,M Livestream• M Mailboxes• M Miarateuse…..• M PlavhackthemecM Plavhooks14 D> D Playlistsclass syncubnects extends command>@ Postmark> @ ProphetAiv D Reports(@) AutomatedRenortsCommand.ono* The name and sianature of the console commandi© AutomatedReportsRetentionPolicyCor© AutomatedReportsSendCommand.ph/© CreateMockAskJiminnyReportResultO* ovar strind© DeleteReportCommand.php© GenerateMarketingReport.php7301orotected ssionature = crm:sunc-ohnects «team?, <--svncs':© Team.phpc) Usage.php>C Slack> M Teams* The console command descrintion.* Avan strina> Tracks>a TranscriotionTwilloprotected $description = 'Sync remote CRM objects.';> UsersVocabulan* Eyecuto the concole commandl> M zoon(C) Command.ohnpublic function handle: voidf...;© CreateDatabaseUsers.php(C) DatabaseTableCount nhnl© DeleteOldAiCrmNotesCommand.php© DeleteS3LeftoversCommand.php69 6t >protected function getStaggerDelavSeconds@: floatf...?C) DevPostmanCommand.nhn@ nisrizoVinAiDarticinantldentificationCom.9 CncruntTokonsCommand nhnl74 6tprotected function getMaxDelavSeconds@: intf...}© EngagementStatsRegenerateCommand.r81 6t>protected function getlogPrefix@: stringf...;( CoatureFlaasHeloer.php=custom.log=laravel.log4 SF jiminny@localhost] >© TestPipedriveOfficialSdkCommand.php223225256O KernelpnpPlaygroundselect * from users where name = 'IntegraSELECT * FROM social_accounts WHERE soci.selecc * rron accivlcles where crm cont10and recordina state = "recorded' and duraISELECT * FROM activities WHERE UU1dtO D1select * From Leads:SELECT * FROM activities WIERE uuid to biSELCT * FROM activities WIERE id IN (161SELECT * FROM activities where status =SEIEC * SROM +racks WHERs activitv id =SELECTFROM activities aIOTN usens u 1..n<->1: ON arusen id = midWHEREa.status = "complered"AND uuid_to_bin('641f1acb-16b8-42d1-8AND a.deleted_ at IS NULLAND EXISTSSELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual start time DESCLIMIT 25:select * from teams where 1d = 19.select * from erm confiqurations where oiSELECICONCATU.id. CASE WHEN U.id = t.owneru. emanSA.*+ownen id ER0M social accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idWHERE u.team_id = 19 and sa.provider = 'pCSICAT + CP0M cocial sccounte WHEpE id =() DXP4800PLUS-B5F8Getting Started - AFFiNE(*) Screenpipe - ArchiveDownload screenpipe — ge•• Self-Hosted Software and A"S Finance HubNew TabM Asl aet older now 70. lamNew jobs similar to Yeб nрсВ Завежпане на шета онпайPhotos - Google Photos) New Tab- New Tab• finance-hub.lakylak.xyzFinance HubY Filters (2SearchI• Recinient descrintion...All SourcesAll Statuses01/05/202678 transactions (balance alerts hidden) ITotal: 2,246.65 EUR incl. BGN→EUR|DATE JPECIDIENT18 May 2026, 08:06hostinger17 Mav 2026. 16:34RIIL A 101 18. SOFIA. RGI16 Mav 2026. 13:38VIVACOM. SOFIA. BG16 Mav 2026. 10:59PARKING. SOFIA. BG15 May 2026. 17:52VIMARD EOOD. SOFIA, BG15 May 2026, 08:53LIDL BALGARIYA EOOD, SOFIYA, BGR15 Mav 2026 09:49LIDL BALGARIYA EOOD, SOFIYA, BGR14 Mav 2026 16:101Roosteroid Rucharest RO14 Mav 2026 15:19CI AUDE14 Mav 2026. 12:08FANTASTICO 43. SOFIA. BG13 Mav 2026. 08:46lCBA EKO MARKET. SOFIA. BG12 May 2026, 08:45lBGR SOFIA CBA EKO MARKET10 May 2026, 21:57IRL 08000480408 APPLE COM BILL10 Mav 2026 17:16CRA ECO MARKET COFIA RGI10 Mav 2026 04:26CitvGate Cofia Trancit COFIA RGP09 Mav 2026. 15:45RGR SOFIA CRA ECO MARKET09 Mav 2026. 15:02VIADENTAL. SOFIA. BG8õ PaymentsL Upload CSVAll Tvoes18/ 05/20262026-05-01 - 2026-05-18|AMOUNT N22 02 FIIR|3.65 EUR36.91 EURI6.00 EUR7.98 EUR0.01 EUR87.51 EUR9.89 EUR21.60 SUP13.36 EUR3.50 EUR7.20 EUR3.99 EUR5.28 FIIP160 SIIP8.87 EUR124.00 EUR100% 2Mon 18 May 9:35:53X CleanAll Tags*) Skin@ Skio*) Skip@ Skip@Skip• Skip• Skip|Skio |• Skio• Skip• Skip |F Skin() Skin*) Skin@ Skio* Skip...
|
NULL
|
2030254513698501149
|
NULL
|
visual_change
|
ocr
|
NULL
|
rireroxcalMistorbookmarksProtllesWindowmelprTavsco rireroxcalMistorbookmarksProtllesWindowmelprTavsco.s?° pipedrive-sdk-pocroledey© SyncHubspotObjects.php(C) ConvertLeadActivities.ong© SyncPlanhat.php©syncleaa.onpc syncopponunitiesmissingrielaDalact c createPlaybookcreatedevent.ongg) syncopportunity.onp)syncrronllemeradata.ono© SyncTeamMetadata.phpC) TestPipedriveOfticialSakcommand.ohc) IntearationApp/Service.php© LeadConverted.php© CreateSelfCoachedEvent.phpC) CreateCommentedEvent.phoC) CreateSmsSentEvent.ohpC) PlanhatActivityListener.phoc) [EMAIL]> @ Dealinsights(C)AskAnvthinaPromotService.ohdC DevC) AutomatedRenortsCommand.ohophp api y2.ohoC) RequestGenerateReport.Job.oho/> Dialers(C) AutomatedReportkesulconp© AutomatedReport.phpA console [STAGING]DITOS→ EasticsearchEndagementStats> M GeckoSxoortdectarelstrict_types-ty,M Livestream• M Mailboxes• M Miarateuse…..• M PlavhackthemecM Plavhooks14 D> D Playlistsclass syncubnects extends command>@ Postmark> @ ProphetAiv D Reports(@) AutomatedRenortsCommand.ono* The name and sianature of the console commandi© AutomatedReportsRetentionPolicyCor© AutomatedReportsSendCommand.ph/© CreateMockAskJiminnyReportResultO* ovar strind© DeleteReportCommand.php© GenerateMarketingReport.php7301orotected ssionature = crm:sunc-ohnects «team?, <--svncs':© Team.phpc) Usage.php>C Slack> M Teams* The console command descrintion.* Avan strina> Tracks>a TranscriotionTwilloprotected $description = 'Sync remote CRM objects.';> UsersVocabulan* Eyecuto the concole commandl> M zoon(C) Command.ohnpublic function handle: voidf...;© CreateDatabaseUsers.php(C) DatabaseTableCount nhnl© DeleteOldAiCrmNotesCommand.php© DeleteS3LeftoversCommand.php69 6t >protected function getStaggerDelavSeconds@: floatf...?C) DevPostmanCommand.nhn@ nisrizoVinAiDarticinantldentificationCom.9 CncruntTokonsCommand nhnl74 6tprotected function getMaxDelavSeconds@: intf...}© EngagementStatsRegenerateCommand.r81 6t>protected function getlogPrefix@: stringf...;( CoatureFlaasHeloer.php=custom.log=laravel.log4 SF jiminny@localhost] >© TestPipedriveOfficialSdkCommand.php223225256O KernelpnpPlaygroundselect * from users where name = 'IntegraSELECT * FROM social_accounts WHERE soci.selecc * rron accivlcles where crm cont10and recordina state = "recorded' and duraISELECT * FROM activities WHERE UU1dtO D1select * From Leads:SELECT * FROM activities WIERE uuid to biSELCT * FROM activities WIERE id IN (161SELECT * FROM activities where status =SEIEC * SROM +racks WHERs activitv id =SELECTFROM activities aIOTN usens u 1..n<->1: ON arusen id = midWHEREa.status = "complered"AND uuid_to_bin('641f1acb-16b8-42d1-8AND a.deleted_ at IS NULLAND EXISTSSELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual start time DESCLIMIT 25:select * from teams where 1d = 19.select * from erm confiqurations where oiSELECICONCATU.id. CASE WHEN U.id = t.owneru. emanSA.*+ownen id ER0M social accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idWHERE u.team_id = 19 and sa.provider = 'pCSICAT + CP0M cocial sccounte WHEpE id =() DXP4800PLUS-B5F8Getting Started - AFFiNE(*) Screenpipe - ArchiveDownload screenpipe — ge•• Self-Hosted Software and A"S Finance HubNew TabM Asl aet older now 70. lamNew jobs similar to Yeб nрсВ Завежпане на шета онпайPhotos - Google Photos) New Tab- New Tab• finance-hub.lakylak.xyzFinance HubY Filters (2SearchI• Recinient descrintion...All SourcesAll Statuses01/05/202678 transactions (balance alerts hidden) ITotal: 2,246.65 EUR incl. BGN→EUR|DATE JPECIDIENT18 May 2026, 08:06hostinger17 Mav 2026. 16:34RIIL A 101 18. SOFIA. RGI16 Mav 2026. 13:38VIVACOM. SOFIA. BG16 Mav 2026. 10:59PARKING. SOFIA. BG15 May 2026. 17:52VIMARD EOOD. SOFIA, BG15 May 2026, 08:53LIDL BALGARIYA EOOD, SOFIYA, BGR15 Mav 2026 09:49LIDL BALGARIYA EOOD, SOFIYA, BGR14 Mav 2026 16:101Roosteroid Rucharest RO14 Mav 2026 15:19CI AUDE14 Mav 2026. 12:08FANTASTICO 43. SOFIA. BG13 Mav 2026. 08:46lCBA EKO MARKET. SOFIA. BG12 May 2026, 08:45lBGR SOFIA CBA EKO MARKET10 May 2026, 21:57IRL 08000480408 APPLE COM BILL10 Mav 2026 17:16CRA ECO MARKET COFIA RGI10 Mav 2026 04:26CitvGate Cofia Trancit COFIA RGP09 Mav 2026. 15:45RGR SOFIA CRA ECO MARKET09 Mav 2026. 15:02VIADENTAL. SOFIA. BG8õ PaymentsL Upload CSVAll Tvoes18/ 05/20262026-05-01 - 2026-05-18|AMOUNT N22 02 FIIR|3.65 EUR36.91 EURI6.00 EUR7.98 EUR0.01 EUR87.51 EUR9.89 EUR21.60 SUP13.36 EUR3.50 EUR7.20 EUR3.99 EUR5.28 FIIP160 SIIP8.87 EUR124.00 EUR100% 2Mon 18 May 9:35:53X CleanAll Tags*) Skin@ Skio*) Skip@ Skip@Skip• Skip• Skip|Skio |• Skio• Skip• Skip |F Skin() Skin*) Skin@ Skio* Skip...
|
49332
|
NULL
|
NULL
|
NULL
|
|
49334
|
1760
|
6
|
2026-05-18T06:35:54.465290+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086154465_m1.jpg...
|
iTerm2
|
NULL
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShelllEditViewSessionScriptsProfilesWindowHe iTerm2ShelllEditViewSessionScriptsProfilesWindowHelp•• 0APP (-zsh)DOCKERLast login: Mon May 18 09:17:28 on ttys007O 81DEV (-zsh)O 82Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentsPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ U‹ $0APP (-zsh)|83100% C47 8• Mon 18 May 9:35:54T₴1screenpipe*O &4APP...
|
NULL
|
3348179612131387858
|
NULL
|
visual_change
|
ocr
|
NULL
|
iTerm2ShelllEditViewSessionScriptsProfilesWindowHe iTerm2ShelllEditViewSessionScriptsProfilesWindowHelp•• 0APP (-zsh)DOCKERLast login: Mon May 18 09:17:28 on ttys007O 81DEV (-zsh)O 82Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentsPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ U‹ $0APP (-zsh)|83100% C47 8• Mon 18 May 9:35:54T₴1screenpipe*O &4APP...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49335
|
1761
|
7
|
2026-05-18T06:35:56.808205+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086156808_m2.jpg...
|
iTerm2
|
NULL
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
HomeActivityMoreSlackcalVIewMistonWindowhelp@ Desc HomeActivityMoreSlackcalVIewMistonWindowhelp@ Describe what you are looking forJiminny ...# platform-tickets# product launches# random# releases# sofa-office# support# thank-yous# the_people_of jimi...6? Direct messages% Galya Dimitrova. Vasil Vasilevf Aneliya AngelovaStoyan Tomov2. Stefka Stovanovaa Todor Stamatov2 Mario GeorgievA Nikolay Ivanova James Graham3 Stovan Tanevo Steliyan GeorgievF Petko KashinskiLukas Kovalik y...:::ADOS-T lira Cloud• ToastDTwilio> Users# Vocabulary> IMizooml, Galya Dimitrova• Messagese FilesMorevда си го взема ли тикетGalva Dimitrova 12:34 PMще го пусна за рефайнмьнт запонелелник. По сколо се изненалах какітака е станалоLukas Kovalik 12:35 PMпомня че имаше един тикет да ганаправим на всякьделали го поавихме обаче не знамима ли някой на EU който ползва JVами ше тряова през оазата да видимче в киоска го нямам това като филтьоLukas Kovalik 2:03 PMнаправих тикет за това със SMSnutps.auinny.auasslan.new prowset-20915. Изглежда че и от двете среди сепрашат Sms-ИJira CloudXi Bug: 22091 meira SpocifAdd environment-specihc em.StatusBacklogMessage Galya Dimitrova+ Aalcts.php x © EventServiceProvider.phpAcuvity.ongOPurgeLookupcache.pnp© SyncPlanhat.php©) salestorce/service.php( PlaybackController.phppnp api.phodConverted.php© CreateSelfCoachedEvent.phpeateSmsSentevent.ohpC) PlanhatActivityListener.phoAutomatedReportsRepositorv.ohd• aoi y2.oholC) RequestGenerateReport.Job.oho/omatedReport.phpA console [STAGING]commanos criolrantature of the console command.e'crm:sunc-obnects «team?, «--svncs'*d descrintion.protected $description = 'Sync remote CRM objects.';* Eyecuto the concole commandl© Command.php© CreateDatabaseUsers.php(C) DatabaseTableCount nhnlpublic function handle: voidf...;© DeleteOldAiCrmNotesCommand.php© DeleteS3LeftoversCommand.phpC) DevPostmanCommand.nhn69 6t >protected function getStaggerDelavSeconds@: floatf...?@ nisrizoVinAiDarticinantldentificationCom.9 CncruntTokonsCommand nhnl74 6tprotected function getMaxDelavSeconds@: intf...}© EngagementStatsReqenerateCommand.r( CoatureFlaasHeloer.php81 6t>protected function getlogPrefix@: stringf...;=custom.log=laravel.log4 SF jiminny@localhost] ›© TestPipedriveOfficialSdkCommand.php223225256O KernelpnpPlaygroundselect * from users where name = 'IntegraSELECT * FROM social_accounts WHERE soci.selecc * rron accivlcles where crm cont1oand recordina state = "recorded' and duraISELECT * FROM activities WHERE UU1dtO D1select * From Leads:SELECT * FROM activities WIERE uid to biSELECT * FROM activities WIERE id IN (16SELECT * FROM activities where status =SEIEC * SROM +racks WHERs activitv id =SELECTFROM activities aIOTN usens ut 1..n<->1: ON arusen id = m.idWHEREa.status = "complered"AND uuid_to_bin('641f1acb-16b8-42d1-8AND a.deleted_ at IS NULLAND EXISTSSELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual start time DESCLIMIT 25:select * from teams where id = 19;select * from crm confiqurations where p'SELECICONCATU.id. CASE WHEN U.id = t.owneru. emanSA.*+ownen id ER0M social accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idWHERE u.team_id = 19 and sa.provider = 'pCSICAT + CP0M cocial sccounte WHEpE id =() DXP4800PLUS-B5F8Getting Started - AFFiNE(*) Screenpipe - ArchiveDownload screenpipe - ge*• Self-Hosted Software and AS Finance HubNew TabM Asl aet older now 70. lamNew jobs similar to Yeб nрсВ Завежпане на шета онпайPhotos - Google Photos) New Tabfinance-hub.lakylak.xyzFinance HubY Filters (2SearchI• Recinient descrintion...All SourcesAll Statuses01/ 05 /202678 transactions (balance alerts hidden) ITotal: 2,246.65 EUR incl. BGN→EUR|DATE JPECIDIENT18 May 2026, 08:06hostinger17 Mav 2026. 16:34RIIL A 101 18. SOFIA. RGI16 Mav 2026. 13:38VIVACOM. SOFIA. BG16 Mav 2026. 10:59PARKING. SOFIA. BG15 May 2026. 17:52VIMARD EOOD. SOFIA, BG15 May 2026, 08:53LIDL BALGARIYA EOOD, SOFIYA, BGR15 Mav 2026 09:49LIDL BALGARIYA EOOD, SOFIYA, BGR14 Mav 2026 16:101Roosteroid Rucharest RO14 Mav 2026 15:19CI AUDE14 Mav 2026. 12:08FANTASTICO 43. SOFIA. BG13 Mav 2026. 08:46lCBA EKO MARKET. SOFIA. BG12 May 2026, 08:45lBGR SOFIA CBA EKO MARKET10 May 2026, 21:57IRL 08000480408 APPLE COM BILL10 Mav 2026 17:16CRA ECO MARKET COFIA RGI10 Mav 2026 04:26CitvGate Cofia Trancit COFIA RGP09 Mav 2026. 15:45RGR SOFIA CRA ECO MARKET09 Mav 2026. 15:02VIADENTAL. SOFIA. BG8õ PaymentsL Upload CSVAll Tvoes18/ 05/20262026-05-01 - 2026-05-18|AMOUNT N22 02 FIIR|3.65 EUR36.91 EURI6.00 EUR7.98 EUR0.01 EUR87.51 EUR9.89 EUR21.60 SUP13.36 EUR3.50 EUR7.20 EUR3.99 EUR5.28 FIIP160 SIIP8.87 EUR124.00 EUR100% 2• Mon 18 May 9:35:56^ X ClearAll Tags*) Skin@ Skio*) Skip@ Skip@Skip• Skip• Skip|Skio |• Skio• Skip• Skip |F Skin() Skin*) Skin@ Skio* Skip...
|
NULL
|
-7127207184645358859
|
NULL
|
visual_change
|
ocr
|
NULL
|
HomeActivityMoreSlackcalVIewMistonWindowhelp@ Desc HomeActivityMoreSlackcalVIewMistonWindowhelp@ Describe what you are looking forJiminny ...# platform-tickets# product launches# random# releases# sofa-office# support# thank-yous# the_people_of jimi...6? Direct messages% Galya Dimitrova. Vasil Vasilevf Aneliya AngelovaStoyan Tomov2. Stefka Stovanovaa Todor Stamatov2 Mario GeorgievA Nikolay Ivanova James Graham3 Stovan Tanevo Steliyan GeorgievF Petko KashinskiLukas Kovalik y...:::ADOS-T lira Cloud• ToastDTwilio> Users# Vocabulary> IMizooml, Galya Dimitrova• Messagese FilesMorevда си го взема ли тикетGalva Dimitrova 12:34 PMще го пусна за рефайнмьнт запонелелник. По сколо се изненалах какітака е станалоLukas Kovalik 12:35 PMпомня че имаше един тикет да ганаправим на всякьделали го поавихме обаче не знамима ли някой на EU който ползва JVами ше тряова през оазата да видимче в киоска го нямам това като филтьоLukas Kovalik 2:03 PMнаправих тикет за това със SMSnutps.auinny.auasslan.new prowset-20915. Изглежда че и от двете среди сепрашат Sms-ИJira CloudXi Bug: 22091 meira SpocifAdd environment-specihc em.StatusBacklogMessage Galya Dimitrova+ Aalcts.php x © EventServiceProvider.phpAcuvity.ongOPurgeLookupcache.pnp© SyncPlanhat.php©) salestorce/service.php( PlaybackController.phppnp api.phodConverted.php© CreateSelfCoachedEvent.phpeateSmsSentevent.ohpC) PlanhatActivityListener.phoAutomatedReportsRepositorv.ohd• aoi y2.oholC) RequestGenerateReport.Job.oho/omatedReport.phpA console [STAGING]commanos criolrantature of the console command.e'crm:sunc-obnects «team?, «--svncs'*d descrintion.protected $description = 'Sync remote CRM objects.';* Eyecuto the concole commandl© Command.php© CreateDatabaseUsers.php(C) DatabaseTableCount nhnlpublic function handle: voidf...;© DeleteOldAiCrmNotesCommand.php© DeleteS3LeftoversCommand.phpC) DevPostmanCommand.nhn69 6t >protected function getStaggerDelavSeconds@: floatf...?@ nisrizoVinAiDarticinantldentificationCom.9 CncruntTokonsCommand nhnl74 6tprotected function getMaxDelavSeconds@: intf...}© EngagementStatsReqenerateCommand.r( CoatureFlaasHeloer.php81 6t>protected function getlogPrefix@: stringf...;=custom.log=laravel.log4 SF jiminny@localhost] ›© TestPipedriveOfficialSdkCommand.php223225256O KernelpnpPlaygroundselect * from users where name = 'IntegraSELECT * FROM social_accounts WHERE soci.selecc * rron accivlcles where crm cont1oand recordina state = "recorded' and duraISELECT * FROM activities WHERE UU1dtO D1select * From Leads:SELECT * FROM activities WIERE uid to biSELECT * FROM activities WIERE id IN (16SELECT * FROM activities where status =SEIEC * SROM +racks WHERs activitv id =SELECTFROM activities aIOTN usens ut 1..n<->1: ON arusen id = m.idWHEREa.status = "complered"AND uuid_to_bin('641f1acb-16b8-42d1-8AND a.deleted_ at IS NULLAND EXISTSSELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual start time DESCLIMIT 25:select * from teams where id = 19;select * from crm confiqurations where p'SELECICONCATU.id. CASE WHEN U.id = t.owneru. emanSA.*+ownen id ER0M social accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idWHERE u.team_id = 19 and sa.provider = 'pCSICAT + CP0M cocial sccounte WHEpE id =() DXP4800PLUS-B5F8Getting Started - AFFiNE(*) Screenpipe - ArchiveDownload screenpipe - ge*• Self-Hosted Software and AS Finance HubNew TabM Asl aet older now 70. lamNew jobs similar to Yeб nрсВ Завежпане на шета онпайPhotos - Google Photos) New Tabfinance-hub.lakylak.xyzFinance HubY Filters (2SearchI• Recinient descrintion...All SourcesAll Statuses01/ 05 /202678 transactions (balance alerts hidden) ITotal: 2,246.65 EUR incl. BGN→EUR|DATE JPECIDIENT18 May 2026, 08:06hostinger17 Mav 2026. 16:34RIIL A 101 18. SOFIA. RGI16 Mav 2026. 13:38VIVACOM. SOFIA. BG16 Mav 2026. 10:59PARKING. SOFIA. BG15 May 2026. 17:52VIMARD EOOD. SOFIA, BG15 May 2026, 08:53LIDL BALGARIYA EOOD, SOFIYA, BGR15 Mav 2026 09:49LIDL BALGARIYA EOOD, SOFIYA, BGR14 Mav 2026 16:101Roosteroid Rucharest RO14 Mav 2026 15:19CI AUDE14 Mav 2026. 12:08FANTASTICO 43. SOFIA. BG13 Mav 2026. 08:46lCBA EKO MARKET. SOFIA. BG12 May 2026, 08:45lBGR SOFIA CBA EKO MARKET10 May 2026, 21:57IRL 08000480408 APPLE COM BILL10 Mav 2026 17:16CRA ECO MARKET COFIA RGI10 Mav 2026 04:26CitvGate Cofia Trancit COFIA RGP09 Mav 2026. 15:45RGR SOFIA CRA ECO MARKET09 Mav 2026. 15:02VIADENTAL. SOFIA. BG8õ PaymentsL Upload CSVAll Tvoes18/ 05/20262026-05-01 - 2026-05-18|AMOUNT N22 02 FIIR|3.65 EUR36.91 EURI6.00 EUR7.98 EUR0.01 EUR87.51 EUR9.89 EUR21.60 SUP13.36 EUR3.50 EUR7.20 EUR3.99 EUR5.28 FIIP160 SIIP8.87 EUR124.00 EUR100% 2• Mon 18 May 9:35:56^ X ClearAll Tags*) Skin@ Skio*) Skip@ Skip@Skip• Skip• Skip|Skio |• Skio• Skip• Skip |F Skin() Skin*) Skin@ Skio* Skip...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49336
|
1760
|
7
|
2026-05-18T06:35:58.065225+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086158065_m1.jpg...
|
iTerm2
|
NULL
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShelllEditViewSessionScriptsProfilesWindowHe iTerm2ShelllEditViewSessionScriptsProfilesWindowHelp•• 0APP (-zsh)DOCKERLast login: Mon May 18 09:17:28 on ttys007O 81DEV (-zsh)O 82Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentsPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ U‹ $0APP (-zsh)|83100% C47 8• Mon 18 May 9:35:57T₴1screenpipe*O &4APP...
|
NULL
|
8585104152221150405
|
NULL
|
click
|
ocr
|
NULL
|
iTerm2ShelllEditViewSessionScriptsProfilesWindowHe iTerm2ShelllEditViewSessionScriptsProfilesWindowHelp•• 0APP (-zsh)DOCKERLast login: Mon May 18 09:17:28 on ttys007O 81DEV (-zsh)O 82Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentsPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ U‹ $0APP (-zsh)|83100% C47 8• Mon 18 May 9:35:57T₴1screenpipe*O &4APP...
|
49334
|
NULL
|
NULL
|
NULL
|
|
49337
|
1761
|
8
|
2026-05-18T06:35:58.078064+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086158078_m2.jpg...
|
iTerm2
|
NULL
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
DMSActivityMoreSlackcalVIewMistonWindowhelp@ Descr DMSActivityMoreSlackcalVIewMistonWindowhelp@ Describe what you are looking forJiminny... ~Unreads@ Threads60 Huddles• Drafts & sent018) DirectoriesAb External connections* Starred8 fiminny-x-integrati...• platform-inner-team# Channels# ai-chapteru alerts# backend# bugsi confusion-clinic# curiosity labu engineering# general# liminnv-bgi nlatform-nickets# product launchesa random# releases# sofa-office# support# thank-yousD Twilio> Users# Vocabulary> IMizooml, Galya Dimitrova• Messagese FilesMorevда си го взема ли тикетGalva Dimitrova 12:34 PMще го пусна за рефайнмьнт запонелелник. По сколо се изненалах какітака e станалоLukas Kovalik 12:35 PMпомня че имаше един тикет да ганаправим на всякьделали го поавихме обаче не знамима ли някой на EU който ползва JVИли эмь по точноGalya Dimitrova 12:40 PMами ще тояова през оазата да видимче в киоска го нямам това като филтьоLukas Kovalik 2:02 pMlнаправих тикет за това със SMSnutps.auinny.auasslan.new prowset-20915. Изглежда че и от двете среди сепрашат Sms-ИJira CloudXi Bug: 22091 meira SpocifAdd environment-specihc em.StatusBacklogMessage Galya Dimitrova+ Aal© Command.php© CreateDatabaseUsers.php(C) DatabaseTableCount nhnl© DeleteOldAiCrmNotesCommand.php© DeleteS3LeftoversCommand.phpC) DevPostmanCommand.nhn69 6t >@ nisrizoVinAiDarticinantldentificationCom.9 CncruntTokonsCommand nhnl74 6t© EngagementStatsReqenerateCommand.rFoatureFlagsHelper.onp81 6t>cts.php x © EventServiceProvider.phpAcuvity.ongOPurgeLookupcache.pnp© SyncPlanhat.php©) salestorce/service.php( PlaybackController.phppnp api.phodConverted.php© CreateSelfCoachedEvent.phpeateSmsSentevent.ohpC) PlanhatActivityListener.phoAutomatedReportsRepositorv.ohd• aoi y2.oholC) RequestGenerateReport.Job.oho/omatedReport.phpA console [STAGING]Commands Crn"Commandolrantature of the console command.e'crm:sunc-obnects «team?, «--svncs'*d descrintion.protected $description = 'Sync remote CRM objects.';* Eyecuto the concole commandlpublic function handle: voidf...;protected function getStaggerDelavSeconds@: floatf...?protected function getMaxDelavSeconds@: intf...}protected function getlogPrefix@: stringf...;=custom.log=laravel.log4 SF jiminny@localhost] ›© TestPipedriveOfficialSdkCommand.php223225256O KernelpnpPlaygroundselect * from users where name = 'IntegraSELECT * FROM social_accounts WHERE soci.selecc * rron accivlcles where crm cont1oand recordina state = "recorded' and duraISELECT * FROM activities WHERE UU1dtO D1select * From Leads:SELECT * FROM activities WIERE uid to biSELECT * FROM activities WIERE id IN (16SELECT * FROM activities where status =SEIEC * SROM +racks WHERs activitv id =SELECTFROM activities aIOTN usens ut 1..n<->1: ON arusen id = m.idWHEREa.status = "complered"AND uuid_to_bin('641f1acb-16b8-42d1-8AND a.deleted_ at IS NULLAND EXISTSSELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual start time DESCLIMIT 25:select * from teams where id = 19;select * from crm confiqurations where p'SELECICONCATU.id. CASE WHEN U.id = t.owneru. emanSA.*+ownen id ER0M social accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idWHERE u.team_id = 19 and sa.provider = 'pCSICAT + CP0M cocial sccounte WHEpE id =() DXP4800PLUS-B5F8Getting Started - AFFiNE(*) Screenpipe - ArchiveDownload screenpipe - ge*• Self-Hosted Software and AS Finance HubNew TabM Asl aet older now 70. lamNew jobs similar to Yeб nрсВ Завежпане на шета онпайPhotos - Google Photos) New Tabfinance-hub.lakylak.xyzFinance HubY Filters (2SearchI• Recinient descrintion...All SourcesAll Statuses01/05/202678 transactions (balance alerts hidden) ITotal: 2,246.65 EUR incl. BGN→EUR|DATE JPECIDIENT18 May 2026, 08:06hostinger17 Mav 2026. 16:34RIIL A 101 18. SOFIA. RGI16 Mav 2026. 13:38VIVACOM. SOFIA. BG16 Mav 2026. 10:59PARKING. SOFIA. BG15 May 2026. 17:52VIMARD EOOD. SOFIA, BG15 May 2026, 08:53LIDL BALGARIYA EOOD, SOFIYA, BGR15 Mav 2026 09:49LIDL BALGARIYA EOOD, SOFIYA, BGR14 Mav 2026 16:101Roosteroid Rucharest RO14 Mav 2026 15:19CI AUDE14 Mav 2026. 12:08FANTASTICO 43. SOFIA. BG13 Mav 2026. 08:46lCBA EKO MARKET. SOFIA. BG12 May 2026, 08:45lBGR SOFIA CBA EKO MARKET10 May 2026, 21:57IRL 08000480408 APPLE COM BILL10 Mav 2026 17:16CRA ECO MARKET COFIA RGI10 Mav 2026 04:26CitvGate Cofia Trancit COFIA RGP09 Mav 2026. 15:45RGR SOFIA CRA ECO MARKET09 Mav 2026. 15:02VIADENTAL. SOFIA. BG8õ PaymentsL Upload CSVAll Tvoes18/ 05/20262026-05-01 - 2026-05-18|AMOUNT N22 02 FIIR|3.65 EUR36.91 EURI6.00 EUR7.98 EUR0.01 EUR87.51 EUR9.89 EUR21.60 SUP13.36 EUR3.50 EUR7.20 EUR3.99 EUR5.28 FIIP160 SIIP8.87 EUR124.00 EUR100% 2• Mon 18 May 9:35:57^ X ClearAll Tags*) Skin@ Skio*) Skip@ Skip@Skip• Skip• Skip|Skio |• Skio• Skip• Skip |F Skin() Skin*) Skin@ Skio* Skip...
|
NULL
|
5128012866898696725
|
NULL
|
click
|
ocr
|
NULL
|
DMSActivityMoreSlackcalVIewMistonWindowhelp@ Descr DMSActivityMoreSlackcalVIewMistonWindowhelp@ Describe what you are looking forJiminny... ~Unreads@ Threads60 Huddles• Drafts & sent018) DirectoriesAb External connections* Starred8 fiminny-x-integrati...• platform-inner-team# Channels# ai-chapteru alerts# backend# bugsi confusion-clinic# curiosity labu engineering# general# liminnv-bgi nlatform-nickets# product launchesa random# releases# sofa-office# support# thank-yousD Twilio> Users# Vocabulary> IMizooml, Galya Dimitrova• Messagese FilesMorevда си го взема ли тикетGalva Dimitrova 12:34 PMще го пусна за рефайнмьнт запонелелник. По сколо се изненалах какітака e станалоLukas Kovalik 12:35 PMпомня че имаше един тикет да ганаправим на всякьделали го поавихме обаче не знамима ли някой на EU който ползва JVИли эмь по точноGalya Dimitrova 12:40 PMами ще тояова през оазата да видимче в киоска го нямам това като филтьоLukas Kovalik 2:02 pMlнаправих тикет за това със SMSnutps.auinny.auasslan.new prowset-20915. Изглежда че и от двете среди сепрашат Sms-ИJira CloudXi Bug: 22091 meira SpocifAdd environment-specihc em.StatusBacklogMessage Galya Dimitrova+ Aal© Command.php© CreateDatabaseUsers.php(C) DatabaseTableCount nhnl© DeleteOldAiCrmNotesCommand.php© DeleteS3LeftoversCommand.phpC) DevPostmanCommand.nhn69 6t >@ nisrizoVinAiDarticinantldentificationCom.9 CncruntTokonsCommand nhnl74 6t© EngagementStatsReqenerateCommand.rFoatureFlagsHelper.onp81 6t>cts.php x © EventServiceProvider.phpAcuvity.ongOPurgeLookupcache.pnp© SyncPlanhat.php©) salestorce/service.php( PlaybackController.phppnp api.phodConverted.php© CreateSelfCoachedEvent.phpeateSmsSentevent.ohpC) PlanhatActivityListener.phoAutomatedReportsRepositorv.ohd• aoi y2.oholC) RequestGenerateReport.Job.oho/omatedReport.phpA console [STAGING]Commands Crn"Commandolrantature of the console command.e'crm:sunc-obnects «team?, «--svncs'*d descrintion.protected $description = 'Sync remote CRM objects.';* Eyecuto the concole commandlpublic function handle: voidf...;protected function getStaggerDelavSeconds@: floatf...?protected function getMaxDelavSeconds@: intf...}protected function getlogPrefix@: stringf...;=custom.log=laravel.log4 SF jiminny@localhost] ›© TestPipedriveOfficialSdkCommand.php223225256O KernelpnpPlaygroundselect * from users where name = 'IntegraSELECT * FROM social_accounts WHERE soci.selecc * rron accivlcles where crm cont1oand recordina state = "recorded' and duraISELECT * FROM activities WHERE UU1dtO D1select * From Leads:SELECT * FROM activities WIERE uid to biSELECT * FROM activities WIERE id IN (16SELECT * FROM activities where status =SEIEC * SROM +racks WHERs activitv id =SELECTFROM activities aIOTN usens ut 1..n<->1: ON arusen id = m.idWHEREa.status = "complered"AND uuid_to_bin('641f1acb-16b8-42d1-8AND a.deleted_ at IS NULLAND EXISTSSELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual start time DESCLIMIT 25:select * from teams where id = 19;select * from crm confiqurations where p'SELECICONCATU.id. CASE WHEN U.id = t.owneru. emanSA.*+ownen id ER0M social accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idWHERE u.team_id = 19 and sa.provider = 'pCSICAT + CP0M cocial sccounte WHEpE id =() DXP4800PLUS-B5F8Getting Started - AFFiNE(*) Screenpipe - ArchiveDownload screenpipe - ge*• Self-Hosted Software and AS Finance HubNew TabM Asl aet older now 70. lamNew jobs similar to Yeб nрсВ Завежпане на шета онпайPhotos - Google Photos) New Tabfinance-hub.lakylak.xyzFinance HubY Filters (2SearchI• Recinient descrintion...All SourcesAll Statuses01/05/202678 transactions (balance alerts hidden) ITotal: 2,246.65 EUR incl. BGN→EUR|DATE JPECIDIENT18 May 2026, 08:06hostinger17 Mav 2026. 16:34RIIL A 101 18. SOFIA. RGI16 Mav 2026. 13:38VIVACOM. SOFIA. BG16 Mav 2026. 10:59PARKING. SOFIA. BG15 May 2026. 17:52VIMARD EOOD. SOFIA, BG15 May 2026, 08:53LIDL BALGARIYA EOOD, SOFIYA, BGR15 Mav 2026 09:49LIDL BALGARIYA EOOD, SOFIYA, BGR14 Mav 2026 16:101Roosteroid Rucharest RO14 Mav 2026 15:19CI AUDE14 Mav 2026. 12:08FANTASTICO 43. SOFIA. BG13 Mav 2026. 08:46lCBA EKO MARKET. SOFIA. BG12 May 2026, 08:45lBGR SOFIA CBA EKO MARKET10 May 2026, 21:57IRL 08000480408 APPLE COM BILL10 Mav 2026 17:16CRA ECO MARKET COFIA RGI10 Mav 2026 04:26CitvGate Cofia Trancit COFIA RGP09 Mav 2026. 15:45RGR SOFIA CRA ECO MARKET09 Mav 2026. 15:02VIADENTAL. SOFIA. BG8õ PaymentsL Upload CSVAll Tvoes18/ 05/20262026-05-01 - 2026-05-18|AMOUNT N22 02 FIIR|3.65 EUR36.91 EURI6.00 EUR7.98 EUR0.01 EUR87.51 EUR9.89 EUR21.60 SUP13.36 EUR3.50 EUR7.20 EUR3.99 EUR5.28 FIIP160 SIIP8.87 EUR124.00 EUR100% 2• Mon 18 May 9:35:57^ X ClearAll Tags*) Skin@ Skio*) Skip@ Skip@Skip• Skip• Skip|Skio |• Skio• Skip• Skip |F Skin() Skin*) Skin@ Skio* Skip...
|
49335
|
NULL
|
NULL
|
NULL
|
|
49338
|
1761
|
9
|
2026-05-18T06:36:11.955383+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086171955_m2.jpg...
|
iTerm2
|
NULL
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
DMSActivityMoreSlackcalVIewMistonWindowhelpQ Descr DMSActivityMoreSlackcalVIewMistonWindowhelpQ Describe what you are looking forJiminny... ~Unreads@ Threads60 Huddles• Drafts & sent018) DirectoriesAb External connections* Starred8 fiminny-x-integrati...platform-inner-team# Channels# ai-chapter# alerts# backend# bugsi confusion-clinic# curiosity lab# engineering# general# liminnv-bgi nlatform-nickets# product launchesa random# releases# sofa-office# support# thank-yousD Twilio> Users# Vocabulary> IMizooml• plattorm-inn...9 10MessagesChannel OverviewMoreмрльсте за от!Пооцесинг екипа свъозани с call scoring и.мисля че са основно Фе. Лес има лостанеша покрай лесктоп апа и се налявамти да можеш да помогнеш с тях:httns:/hminnv.arlassian.net/browseAY20847 - тук ако това което се искаще е много тегаво занещо друго да измислим[URL_WITH_CREDENTIALS] floatf...@ nisrizoVinAiDarticinantldentificationCom.9 CncruntTokonsCommand nhnl74 6tprotected function getMaxDelavSeconds@: intf...}© EngagementStatsReqenerateCommand.r( CoatureFlaasHeloer.php81 6t>protected function getlogPrefix@: stringf...;=custom.log=laravel.log4 SF jiminny@localhost] ›© TestPipedriveOfficialSdkCommand.php223225256O KernelpnpPlaygroundselect * from users where name = 'IntegraSELECT * FROM social_accounts WHERE soci.selecc * rron accivlcles where crm cont10and recordina state = "recorded' and duraISELECT * FROM activities WHERE UU1d_tO_D1select * From Leads:SELECT * FROM activities WIERE uid to biSELECT * FROM activities WIERE id IN (16SELECT * FROM activities where status =SEIEC * SROM +racks WHERS activitv id =SELECTFROM activities aIOTN usens ut 1..n<->1: ON arusen id = m.idWHEREa.status = "complered"AND uuid_to_bin('641f1acb-16b8-42d1-8AND a.deleted_ at IS NULLAND EXISTSSELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual start time DESCLIMIT 25:select * from teams where id = 19;select * from crm confiqurations where p'SELECICONCATU.id. CASE WHEN U.id = t.owneru. emanSA.*+ownen id ER0M social accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idWHERE u.team_id = 19 and sa.provider = 'pCSICAT + CPAM cocial sccounte WHEpE id =() DXP4800PLUS-B5F8Getting Started - AFFiNE(*) Screenpipe - ArchiveDownload screenpipe - ge*• Self-Hosted Software and AS Finance HubNew TabM Asl aet older. now 70. 1amlNew jobs similar to Yeб nрсВ Завежпане на шета онпайPhotos - Google Photos) New Tabfinance-hub.lakylak.xyzFinance HubY Filters (2SearchI• Recinient descrintion...All SourcesAll Statuses01/ 05 /202678 transactions (balance alerts hidden) |Total: 2,246.65 EUR incl. BGN→EUR|DATE JPECIDIENT18 May 2026, 08:06hostinger17 Mav 2026. 16:34RIIL A 101 18. SOFIA. RGI16 Mav 2026. 13:38VIVACOM. SOFIA. BG16 Mav 2026. 10:59PARKING. SOFIA. BG15 May 2026. 17:52VIMARD EOOD. SOFIA, BG15 May 2026, 08:53LIDL BALGARIYA EOOD, SOFIYA, BGR15 Mav 2026 09:49LIDL BALGARIYA EOOD, SOFIYA, BGR14 Mav 2026 16:101Roosteroid Rucharest RO14 Mav 2026 15:19CI AUDE14 Mav 2026. 12:08FANTASTICO 43. SOFIA. BG13 Mav 2026. 08:46lCBA EKO MARKET. SOFIA. BG12 May 2026, 08:45lBGR SOFIA CBA EKO MARKET10 May 2026, 21:57IRL 08000480408 APPLE COM BILL10 Mav 2026 17:16CRA ECO MARKET COFIA RGI10 Mav 2026 04:26CitvGate Cofia Trancit COFIA RGP09 Mav 2026. 15:45RGR SOFIA CRA ECO MARKET09 Mav 2026. 15:02VIADENTAL. SOFIA. BG8õ PaymentsL Upload CSVAll Tvoes18/ 05/20262026-05-01 - 2026-05-18|AMOUNT N22 02 FIIR|3.65 EUR36.91 EURI6.00 EUR7.98 EUR0.01 EUR87.51 EUR9.89 EUR21.60 SUP13.36 EUR3.50 EUR7.20 EUR3.99 EUR5.28 FIIP160 SIIP8.87 EUR124.00 EUR100% 2• Mon 18 May 9:36:11^ X ClearAll Tags*) Skin@ Skio*) Skip@ Skip@Skip• Skip• Skip|Skio |• Skio• Skip• Skip |F Skin() Skin*) Skin@ Skio* Skip...
|
NULL
|
8509385754024124722
|
NULL
|
visual_change
|
ocr
|
NULL
|
DMSActivityMoreSlackcalVIewMistonWindowhelpQ Descr DMSActivityMoreSlackcalVIewMistonWindowhelpQ Describe what you are looking forJiminny... ~Unreads@ Threads60 Huddles• Drafts & sent018) DirectoriesAb External connections* Starred8 fiminny-x-integrati...platform-inner-team# Channels# ai-chapter# alerts# backend# bugsi confusion-clinic# curiosity lab# engineering# general# liminnv-bgi nlatform-nickets# product launchesa random# releases# sofa-office# support# thank-yousD Twilio> Users# Vocabulary> IMizooml• plattorm-inn...9 10MessagesChannel OverviewMoreмрльсте за от!Пооцесинг екипа свъозани с call scoring и.мисля че са основно Фе. Лес има лостанеша покрай лесктоп апа и се налявамти да можеш да помогнеш с тях:httns:/hminnv.arlassian.net/browseAY20847 - тук ако това което се искаще е много тегаво занещо друго да измислим[URL_WITH_CREDENTIALS] floatf...@ nisrizoVinAiDarticinantldentificationCom.9 CncruntTokonsCommand nhnl74 6tprotected function getMaxDelavSeconds@: intf...}© EngagementStatsReqenerateCommand.r( CoatureFlaasHeloer.php81 6t>protected function getlogPrefix@: stringf...;=custom.log=laravel.log4 SF jiminny@localhost] ›© TestPipedriveOfficialSdkCommand.php223225256O KernelpnpPlaygroundselect * from users where name = 'IntegraSELECT * FROM social_accounts WHERE soci.selecc * rron accivlcles where crm cont10and recordina state = "recorded' and duraISELECT * FROM activities WHERE UU1d_tO_D1select * From Leads:SELECT * FROM activities WIERE uid to biSELECT * FROM activities WIERE id IN (16SELECT * FROM activities where status =SEIEC * SROM +racks WHERS activitv id =SELECTFROM activities aIOTN usens ut 1..n<->1: ON arusen id = m.idWHEREa.status = "complered"AND uuid_to_bin('641f1acb-16b8-42d1-8AND a.deleted_ at IS NULLAND EXISTSSELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual start time DESCLIMIT 25:select * from teams where id = 19;select * from crm confiqurations where p'SELECICONCATU.id. CASE WHEN U.id = t.owneru. emanSA.*+ownen id ER0M social accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idWHERE u.team_id = 19 and sa.provider = 'pCSICAT + CPAM cocial sccounte WHEpE id =() DXP4800PLUS-B5F8Getting Started - AFFiNE(*) Screenpipe - ArchiveDownload screenpipe - ge*• Self-Hosted Software and AS Finance HubNew TabM Asl aet older. now 70. 1amlNew jobs similar to Yeб nрсВ Завежпане на шета онпайPhotos - Google Photos) New Tabfinance-hub.lakylak.xyzFinance HubY Filters (2SearchI• Recinient descrintion...All SourcesAll Statuses01/ 05 /202678 transactions (balance alerts hidden) |Total: 2,246.65 EUR incl. BGN→EUR|DATE JPECIDIENT18 May 2026, 08:06hostinger17 Mav 2026. 16:34RIIL A 101 18. SOFIA. RGI16 Mav 2026. 13:38VIVACOM. SOFIA. BG16 Mav 2026. 10:59PARKING. SOFIA. BG15 May 2026. 17:52VIMARD EOOD. SOFIA, BG15 May 2026, 08:53LIDL BALGARIYA EOOD, SOFIYA, BGR15 Mav 2026 09:49LIDL BALGARIYA EOOD, SOFIYA, BGR14 Mav 2026 16:101Roosteroid Rucharest RO14 Mav 2026 15:19CI AUDE14 Mav 2026. 12:08FANTASTICO 43. SOFIA. BG13 Mav 2026. 08:46lCBA EKO MARKET. SOFIA. BG12 May 2026, 08:45lBGR SOFIA CBA EKO MARKET10 May 2026, 21:57IRL 08000480408 APPLE COM BILL10 Mav 2026 17:16CRA ECO MARKET COFIA RGI10 Mav 2026 04:26CitvGate Cofia Trancit COFIA RGP09 Mav 2026. 15:45RGR SOFIA CRA ECO MARKET09 Mav 2026. 15:02VIADENTAL. SOFIA. BG8õ PaymentsL Upload CSVAll Tvoes18/ 05/20262026-05-01 - 2026-05-18|AMOUNT N22 02 FIIR|3.65 EUR36.91 EURI6.00 EUR7.98 EUR0.01 EUR87.51 EUR9.89 EUR21.60 SUP13.36 EUR3.50 EUR7.20 EUR3.99 EUR5.28 FIIP160 SIIP8.87 EUR124.00 EUR100% 2• Mon 18 May 9:36:11^ X ClearAll Tags*) Skin@ Skio*) Skip@ Skip@Skip• Skip• Skip|Skio |• Skio• Skip• Skip |F Skin() Skin*) Skin@ Skio* Skip...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49339
|
1760
|
8
|
2026-05-18T06:36:12.746696+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086172746_m1.jpg...
|
iTerm2
|
NULL
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShelllEditViewSessionScriptsProfilesWindowHe iTerm2ShelllEditViewSessionScriptsProfilesWindowHelp•• 0APP (-zsh)DOCKERLast login: Mon May 18 09:17:28 on ttys007O 81DEV (-zsh)O ₴2Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentsPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ U‹ $0APP (-zsh)|83100% C47 8• Mon 18 May 9:36:12T₴1screenpipe*O &4APP...
|
NULL
|
-5636200892135508413
|
NULL
|
click
|
ocr
|
NULL
|
iTerm2ShelllEditViewSessionScriptsProfilesWindowHe iTerm2ShelllEditViewSessionScriptsProfilesWindowHelp•• 0APP (-zsh)DOCKERLast login: Mon May 18 09:17:28 on ttys007O 81DEV (-zsh)O ₴2Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentsPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ U‹ $0APP (-zsh)|83100% C47 8• Mon 18 May 9:36:12T₴1screenpipe*O &4APP...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49340
|
1761
|
10
|
2026-05-18T06:36:15.019048+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086175019_m2.jpg...
|
iTerm2
|
NULL
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
HomeActivityMoreSlackcalVIewMistonWindowHelp@ Desc HomeActivityMoreSlackcalVIewMistonWindowHelp@ Describe what you are looking forJiminny... vStory JY... sira...C2 Syncing...( Unreads@ Threads6a HuddlesDrafts & sent8) Directories01Fallback mechanism for userswith active SF tokens for CRMMatchingJira Cloud CAb External connectionsDetailst Starred8 jiminny-x-integrati...& platform-inner-team# Channels# ai-chapter# alerts# backend# bugsi confusion-clinic# curiosity_lab# engineering# general# jiminny-bg" natform-nickets# product_launchesa random# releases# sofia-office# support# thank-yousD Twilio> Users# Vocabulary> IMizooml© Command.php© CreateDatabaseUsers.php© DatabaseTableCount.php© DeleteOldAiCrmNotesCommand.php© DeleteS3LeftoversCommand.php69 đ >C) DevPostmanCommand.nhn@ nisrizoVinAiDarticinantldentificationCom.9 CncruntTokonsCommand nhnl74 6t© EngagementStatsRegenerateCommand.fFeatureFlagsHelper.php81 đ >cts.php x EventServiceProvider.phpAcuvity.ongOPurgeLookupcache.pnp© SyncPlanhat.phpAcuivityLeadConverted.php©) salestorce/service.php( PlaybackController.phppnp api.phodConverted.php© CreateSelfCoachedEvent.phpeateSmsSentevent.ohpC) PlanhatActivityListener.phoAutomatedReportsRepositorv.ohv• aoi y2.oholC) RequestGenerateReport.Job.oho/omatedReport.phpA console (STAGING]Commandolrantature of the console command.:'crm:sunc-obnects «team?, «--svncs':Id description.protected $description = 'Sync remote CRM objects.';* Eyecuto the concole commandlpublic function handle(): voidf...,protected function getStaggerDelaySeconds(): floatf.…,protected function getMaxDelaySeconds(): intf...]protected function getLogPrefix(): stringf…..]E custom.log#laravel.log4 SF [iminny@localhost] x© TestPipedriveOfficialSdkCommand.phpO KernelpnpPlaygroundselect * from users where name = 'IntegraSELECT * FROM social_accounts WHERE socia223225256selecc * rron accivlcles where crm cont1oand recordina state = "recorded' and duraISELECT * FROM activities WHERE UU1dtO D1select * From Leads:SELECT * FROM activities WHERE vuid_to_biSELECT * FROM activities WIERE id IN (16SELECT * FROM activities where status =SELECT * FROM tracks WHERE activity_id =SELECTFROM activities aJOIN users u 1..n<->1: ON a.user_id = v.idWHEREa.status = "complered"AND uuid_to_bin('641f1acb-16b8-42d1-8AND a.deleted_ at IS NULLAND EXISTS (SELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual_start_time DESCLIMIT 25;select * from teams where id = 19;select * from crm_configurations where prSELECICONCATU.id. CASE WHEN U.id = t.owneru. emansa.*,+ownen id EROM social accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idWHERE u.team_id = 19 and sa.provider = 'eSELECT * FROM social_accounts WHERE id =() DXP4800PLUS-B5F8Getting Started - AFFiNE® Screenpipe - ArchiveDownload screenpipe - ge*• Self-Hosted Software and AS Finance HubNew TabM Asl aet older now 70. lamNew jobs similar to Yeб nрсЗавеждане на щета онлайнPhotos - Google Photos) New Tabfinance-hub.lakylak.xyzFinance HubY Filters (2SearchQ Recipient, description...All SourcesAll Statuses01/05/202678 transactions (balance alerts hidden)Total: 2,246.65 EUR incl. BGN→EURDATEvRECIPIENT18 May 2026, 08:06hostinger17 May 2026, 16:34RIIL A 101 18. SOFIA. RGI16 Mav 2026. 13:38VIVACOM, SOFIA, BG16 May 2026, 10:59PARKING, SOFIA, BG15 May 2026, 17:52VIMARD EOOD, SOFIA, BG15 May 2026, 08:53LIDL BALGARIYA EOOD, SOFIYA, BGR15 May 2026, 08:48LIDL BALGARIYA EOOD, SOFIYA, BGR14 Mav 2026 16:101Boosteroid, Bucharest, RO14 Mav 2026 15:191CI AUDE14 Mav 2026. 12:08FANTASTICO 43, SOFIA, BG13 Mav 2026. 08:46lCBA EKO MARKET, SOFIA, BG12 May 2026, 08:45BGR SOFIA CBA EKO MARKET10 May 2026, 21:57IRL 08000480408 APPLE COM BILL10 May 2026, 17:16CRA ECO MARKET COFIA RGI10 Mav 2026 04:26CitvGate Cofia Trancit COFIA RGP09 Mav 2026. 15:45RGR SOFIA CRA ECO MARKET09 Mav 2026. 15:02VIADENTAL, SOFIA, BG88 Payments&Upload CSVAll Types18/ 05/ 20262026-05-01 → 2026-05-18AMOUNT iL23.03 EUR3.65 EUR36.91 EURI6.00 EUR7.98 EUR0.01 EUR87.51 EUR9.89 EUR21.60 SUP13.36 EUR3.50 EUR7.20 EUR3.99 EUR5.38 EUR160 SIIP8.87 EUR124.00 EUR100% 28• Mon 18 May 9:36:14^ X ClearAll Tags@ Skip© Skip*) Skip@ Skip@Skip• Skip© SkipSkip• Skip• Skip• Skip@ Skip@ Skip*) Skin@ Skio* Skip...
|
NULL
|
5704476898916967034
|
NULL
|
visual_change
|
ocr
|
NULL
|
HomeActivityMoreSlackcalVIewMistonWindowHelp@ Desc HomeActivityMoreSlackcalVIewMistonWindowHelp@ Describe what you are looking forJiminny... vStory JY... sira...C2 Syncing...( Unreads@ Threads6a HuddlesDrafts & sent8) Directories01Fallback mechanism for userswith active SF tokens for CRMMatchingJira Cloud CAb External connectionsDetailst Starred8 jiminny-x-integrati...& platform-inner-team# Channels# ai-chapter# alerts# backend# bugsi confusion-clinic# curiosity_lab# engineering# general# jiminny-bg" natform-nickets# product_launchesa random# releases# sofia-office# support# thank-yousD Twilio> Users# Vocabulary> IMizooml© Command.php© CreateDatabaseUsers.php© DatabaseTableCount.php© DeleteOldAiCrmNotesCommand.php© DeleteS3LeftoversCommand.php69 đ >C) DevPostmanCommand.nhn@ nisrizoVinAiDarticinantldentificationCom.9 CncruntTokonsCommand nhnl74 6t© EngagementStatsRegenerateCommand.fFeatureFlagsHelper.php81 đ >cts.php x EventServiceProvider.phpAcuvity.ongOPurgeLookupcache.pnp© SyncPlanhat.phpAcuivityLeadConverted.php©) salestorce/service.php( PlaybackController.phppnp api.phodConverted.php© CreateSelfCoachedEvent.phpeateSmsSentevent.ohpC) PlanhatActivityListener.phoAutomatedReportsRepositorv.ohv• aoi y2.oholC) RequestGenerateReport.Job.oho/omatedReport.phpA console (STAGING]Commandolrantature of the console command.:'crm:sunc-obnects «team?, «--svncs':Id description.protected $description = 'Sync remote CRM objects.';* Eyecuto the concole commandlpublic function handle(): voidf...,protected function getStaggerDelaySeconds(): floatf.…,protected function getMaxDelaySeconds(): intf...]protected function getLogPrefix(): stringf…..]E custom.log#laravel.log4 SF [iminny@localhost] x© TestPipedriveOfficialSdkCommand.phpO KernelpnpPlaygroundselect * from users where name = 'IntegraSELECT * FROM social_accounts WHERE socia223225256selecc * rron accivlcles where crm cont1oand recordina state = "recorded' and duraISELECT * FROM activities WHERE UU1dtO D1select * From Leads:SELECT * FROM activities WHERE vuid_to_biSELECT * FROM activities WIERE id IN (16SELECT * FROM activities where status =SELECT * FROM tracks WHERE activity_id =SELECTFROM activities aJOIN users u 1..n<->1: ON a.user_id = v.idWHEREa.status = "complered"AND uuid_to_bin('641f1acb-16b8-42d1-8AND a.deleted_ at IS NULLAND EXISTS (SELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual_start_time DESCLIMIT 25;select * from teams where id = 19;select * from crm_configurations where prSELECICONCATU.id. CASE WHEN U.id = t.owneru. emansa.*,+ownen id EROM social accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idWHERE u.team_id = 19 and sa.provider = 'eSELECT * FROM social_accounts WHERE id =() DXP4800PLUS-B5F8Getting Started - AFFiNE® Screenpipe - ArchiveDownload screenpipe - ge*• Self-Hosted Software and AS Finance HubNew TabM Asl aet older now 70. lamNew jobs similar to Yeб nрсЗавеждане на щета онлайнPhotos - Google Photos) New Tabfinance-hub.lakylak.xyzFinance HubY Filters (2SearchQ Recipient, description...All SourcesAll Statuses01/05/202678 transactions (balance alerts hidden)Total: 2,246.65 EUR incl. BGN→EURDATEvRECIPIENT18 May 2026, 08:06hostinger17 May 2026, 16:34RIIL A 101 18. SOFIA. RGI16 Mav 2026. 13:38VIVACOM, SOFIA, BG16 May 2026, 10:59PARKING, SOFIA, BG15 May 2026, 17:52VIMARD EOOD, SOFIA, BG15 May 2026, 08:53LIDL BALGARIYA EOOD, SOFIYA, BGR15 May 2026, 08:48LIDL BALGARIYA EOOD, SOFIYA, BGR14 Mav 2026 16:101Boosteroid, Bucharest, RO14 Mav 2026 15:191CI AUDE14 Mav 2026. 12:08FANTASTICO 43, SOFIA, BG13 Mav 2026. 08:46lCBA EKO MARKET, SOFIA, BG12 May 2026, 08:45BGR SOFIA CBA EKO MARKET10 May 2026, 21:57IRL 08000480408 APPLE COM BILL10 May 2026, 17:16CRA ECO MARKET COFIA RGI10 Mav 2026 04:26CitvGate Cofia Trancit COFIA RGP09 Mav 2026. 15:45RGR SOFIA CRA ECO MARKET09 Mav 2026. 15:02VIADENTAL, SOFIA, BG88 Payments&Upload CSVAll Types18/ 05/ 20262026-05-01 → 2026-05-18AMOUNT iL23.03 EUR3.65 EUR36.91 EURI6.00 EUR7.98 EUR0.01 EUR87.51 EUR9.89 EUR21.60 SUP13.36 EUR3.50 EUR7.20 EUR3.99 EUR5.38 EUR160 SIIP8.87 EUR124.00 EUR100% 28• Mon 18 May 9:36:14^ X ClearAll Tags@ Skip© Skip*) Skip@ Skip@Skip• Skip© SkipSkip• Skip• Skip• Skip@ Skip@ Skip*) Skin@ Skio* Skip...
|
49338
|
NULL
|
NULL
|
NULL
|
|
49341
|
1760
|
9
|
2026-05-18T06:36:15.721502+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086175721_m1.jpg...
|
iTerm2
|
NULL
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShelllEditViewSessionScriptsProfilesWindowHe iTerm2ShelllEditViewSessionScriptsProfilesWindowHelp•• 0APP (-zsh)DOCKERLast login: Mon May 18 09:17:28 on ttys007O 81DEV (-zsh)O ₴2Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentsPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ U‹ $0APP (-zsh)|83100% C47 8• Mon 18 May 9:36:15T₴1screenpipe*O &4APP...
|
NULL
|
6793351634026965127
|
NULL
|
click
|
ocr
|
NULL
|
iTerm2ShelllEditViewSessionScriptsProfilesWindowHe iTerm2ShelllEditViewSessionScriptsProfilesWindowHelp•• 0APP (-zsh)DOCKERLast login: Mon May 18 09:17:28 on ttys007O 81DEV (-zsh)O ₴2Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentsPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ U‹ $0APP (-zsh)|83100% C47 8• Mon 18 May 9:36:15T₴1screenpipe*O &4APP...
|
49339
|
NULL
|
NULL
|
NULL
|
|
49342
|
1761
|
11
|
2026-05-18T06:36:18.022175+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086178022_m2.jpg...
|
Firefox
|
Jira — Personal
|
1
|
jiminny.atlassian.net/browse/JY-20912?atlOrigin=ey jiminny.atlassian.net/browse/JY-20912?atlOrigin=eyJpIjoiNDIxMmEyNTE4OWJhNGY0Yjg4OTBjYThiOTIyZTY0MmEiLCJwIjoiamlyYS1zbGFjay1pbnQifQ&issueKey=JY-20912&subProduct=jira-software...
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started · AFFiNE
Getting Started · AFFiNE
Screenpipe — Archive
Screenpipe — Archive
Download screenpipe — get started in minutes
Download screenpipe — get started in minutes
Self-Hosted Software and Apps
Self-Hosted Software and Apps
Finance Hub
Finance Hub
New Tab
New Tab
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
Завеждане на щета онлайн | Euroins
Завеждане на щета онлайн | Euroins
Photos - Google Photos
Photos - Google Photos
New Tab
New Tab
Jira
Jira
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Collapse sidebar [
Collapse sidebar [
The App Switcher is loading
Go to your Jira homepage
Search, press enter to navigate to advanced search with your text query
Create
Create
Rovo Ask Rovo
Ask Rovo
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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
Assets , (opens new window)
Assets
, (opens new window)
Teams , (opens new window)
Teams
, (opens new window)
open menu
open menu
Customise sidebar
Customise sidebar
Spaces
Spaces
/
Jiminny (New) Jiminny (New)
Jiminny (New)
/
Epic - Add parent
Add parent
/
Story - Change work type
JY-20912
JY-20912
Copy link
Fallback mechanism for users with active SF tokens for CRM Matching- Summary, edit
Fallback mechanism for users with active SF tokens for CRM Matching
Fallback mechanism for users with active SF tokens for CRM Matching
Add or create work related to this Story
Add or create work related to this Story
View app actions
View app actions
Collapse Description Description
Collapse Description
Collapse Description
Description
Add Description, edit
We identified an issue for Tourlane where Twilio calls appear as “Unknown Customer” when the Salesforce admin connection token has expired. In this case, CRM object matching fails because the system relies only on the admin’s Salesforce token.
We should implement the same fallback logic currently used for dialers - if the Salesforce admin token is expired or inactive, the system should search for another active Salesforce token from any user within the same organisation and use it for CRM matching.
Acceptance Criteria:
Acceptance Criteria:
If the Salesforce admin token has expired, the system searches for another active Salesforce token within the organisation.
CRM object matching continues successfully using the fallback token.
Calls should not appear as “Unknown Customer” when another valid Salesforce connection exists in the organisation.
Subtasks
Subtasks
Add subtask
Add subtask
Linked work items
Linked work items
Add linked work item
Add linked work item
Activity
Activity
All
All
Comments
Comments
History
History
Work log
Work log
Newest first Newest first
Newest first
Add a comment…
Who is working on this...?
Who is working on this...?
Status update...
Status update...
Thanks...
Thanks...
Pro tip:
press
M
to comment
Resize work item view side panel
Watch options: You are not watching this issue, 1 person watching
1
Share
Share
Actions
Actions
Backlog - Change status
Backlog
Automation
Automation
Improve Story
Improve Story
Details
Details
Details
Assignee
Assignee Pin to top. Only you can see pinned fields.
Unassigned- edit Assignee
Unassigned
Assign to me
Reporter
Reporter Pin to top. Only you can see pinned fields.
Adelina Petrova- edit Reporter
More information about Adelina Petrova
Adelina Petrova
Components
Components Pin to top. Only you can see pinned fields.
Edit Components, edit
Platform
Platform
Sub-Product
Sub-Product Pin to top. Only you can see pinned fields.
Edit Sub-Product, Add options selected, edit
Add options
Labels
Labels Pin to top. Only you can see pinned fields.
Edit Labels
None
Story point estimate
Story point estimate Pin to top. Only you can see pinned fields.
Edit Story point estimate
None
Story Points
Story Points Pin to top. Only you can see pinned fields.
Edit Story Points
None
Organisations
Organisations Pin to top. Only you can see pinned fields.
Edit Organisations, None selected, edit
None
Priority
Priority Pin to top. Only you can see pinned fields.
Edit Priority
Medium
Fix versions
Fix versions Pin to top. Only you can see pinned fields....
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"bounds":{"left":0.5,"top":0.0518755,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"DXP4800PLUS-B5F8","depth":5,"bounds":{"left":0.51329786,"top":0.06304868,"width":0.036901597,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Getting Started · AFFiNE","depth":4,"bounds":{"left":0.5,"top":0.08459697,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Getting Started · AFFiNE","depth":5,"bounds":{"left":0.51329786,"top":0.09577015,"width":0.04255319,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe — Archive","depth":4,"bounds":{"left":0.5,"top":0.11731844,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe — Archive","depth":5,"bounds":{"left":0.51329786,"top":0.12849163,"width":0.037898935,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Download screenpipe — get started in minutes","depth":4,"bounds":{"left":0.5,"top":0.15003991,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Download screenpipe — get started in minutes","depth":5,"bounds":{"left":0.51329786,"top":0.16121309,"width":0.0809508,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Self-Hosted Software and Apps","depth":4,"bounds":{"left":0.5,"top":0.18276137,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Self-Hosted Software and Apps","depth":5,"bounds":{"left":0.51329786,"top":0.19393456,"width":0.054853722,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Finance Hub","depth":4,"bounds":{"left":0.5,"top":0.21548285,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Finance Hub","depth":5,"bounds":{"left":0.51329786,"top":0.22665602,"width":0.021609042,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"bounds":{"left":0.5,"top":0.2482043,"width":0.06881649,"height":0.032721467},"on_screen":true,"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.51329786,"top":0.25937748,"width":0.014960106,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - kovaliklukas@gmail.com - Gmail","depth":4,"bounds":{"left":0.5,"top":0.28092578,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - kovaliklukas@gmail.com - Gmail","depth":5,"bounds":{"left":0.51329786,"top":0.29209897,"width":0.31382978,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - kovaliklukas@gmail.com - Gmail","depth":4,"bounds":{"left":0.5,"top":0.31364724,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - kovaliklukas@gmail.com - Gmail","depth":5,"bounds":{"left":0.51329786,"top":0.32482043,"width":0.19414894,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Завеждане на щета онлайн | Euroins","depth":4,"bounds":{"left":0.5,"top":0.3463687,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Завеждане на щета онлайн | Euroins","depth":5,"bounds":{"left":0.51329786,"top":0.3575419,"width":0.0653258,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Photos - Google Photos","depth":4,"bounds":{"left":0.5,"top":0.3790902,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Photos - Google Photos","depth":5,"bounds":{"left":0.51329786,"top":0.39026338,"width":0.04138963,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"bounds":{"left":0.5,"top":0.41181165,"width":0.06881649,"height":0.032721467},"on_screen":true,"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.51329786,"top":0.42298484,"width":0.014960106,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jira","depth":4,"bounds":{"left":0.5,"top":0.4445331,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Jira","depth":5,"bounds":{"left":0.51329786,"top":0.4557063,"width":0.0063164895,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.55651593,"top":0.4517159,"width":0.007978723,"height":0.01915403},"on_screen":true,"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.5028258,"top":0.47885075,"width":0.06333112,"height":0.025538707},"on_screen":true,"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},"on_screen":true,"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},"on_screen":true,"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.5249335,"top":0.97007185,"width":0.010638298,"height":0.025538707},"on_screen":true,"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.53607047,"top":0.97007185,"width":0.010638298,"height":0.025538707},"on_screen":true,"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.5472075,"top":0.97007185,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Collapse sidebar [","depth":9,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Collapse sidebar [","depth":11,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"The App Switcher is loading","depth":9,"on_screen":false,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Go to your Jira homepage","depth":9,"on_screen":false,"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,"on_screen":false,"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":10,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Rovo Ask Rovo","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Rovo","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Notifications","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notifications","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Help","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Help","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Settings","depth":12,"on_screen":false,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Settings","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"lukas.kovalik@jiminny.com","depth":12,"on_screen":false,"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":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"For you","depth":12,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"For you","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Recent","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Recent","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Starred","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Starred","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Apps","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Apps","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Apps","depth":13,"on_screen":false,"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 for Apps","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Spaces","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"Spaces","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create space","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create space","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for spaces","depth":13,"on_screen":false,"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 for spaces","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Recent","depth":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Service-Desk","depth":17,"on_screen":false,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Service-Desk","depth":18,"on_screen":false,"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 for Service-Desk","depth":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":17,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Jiminny (New)","depth":18,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXMenuButton","text":"Create board","depth":18,"on_screen":false,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Create board","depth":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Jiminny (New)","depth":18,"on_screen":false,"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 for Jiminny (New)","depth":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Platform Team","depth":19,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform Team","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Board actions","depth":20,"on_screen":false,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Capture Team","depth":19,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Capture Team","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Board actions","depth":20,"on_screen":false,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Enterprise Stability Issues 🤕","depth":19,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enterprise Stability Issues 🤕","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Board actions","depth":20,"on_screen":false,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Processing Team","depth":19,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Processing Team","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Board actions","depth":20,"on_screen":false,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"SE Kanban","depth":19,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SE Kanban","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Board actions","depth":20,"on_screen":false,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More spaces","depth":17,"on_screen":false,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Filters","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Filters","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Filters","depth":13,"on_screen":false,"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 for Filters","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Dashboards","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Dashboards","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create dashboard","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create dashboard","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Dashboards","depth":13,"on_screen":false,"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 for Dashboards","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Operations","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Operations","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Operations","depth":13,"on_screen":false,"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 for Operations","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Assets , (opens new window)","depth":13,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Assets","depth":17,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Teams , (opens new window)","depth":13,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Teams","depth":17,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"open menu","depth":14,"on_screen":false,"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":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Customise sidebar","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Customise sidebar","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Spaces","depth":15,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Spaces","depth":17,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New) Jiminny (New)","depth":15,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":17,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Epic - Add parent","depth":16,"on_screen":false,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Add parent","depth":18,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Story - Change work type","depth":15,"on_screen":false,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"JY-20912","depth":15,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20912","depth":17,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy link","depth":16,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Fallback mechanism for users with active SF tokens for CRM Matching- Summary, edit","depth":11,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Fallback mechanism for users with active SF tokens for CRM Matching","depth":11,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Fallback mechanism for users with active SF tokens for CRM Matching","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Add or create work related to this Story","depth":12,"on_screen":false,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Add or create work related to this Story","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"View app actions","depth":12,"on_screen":false,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"View app actions","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Collapse Description Description","depth":11,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse Description","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Collapse Description","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Description","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add Description, edit","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"We identified an issue for Tourlane where Twilio calls appear as “Unknown Customer” when the Salesforce admin connection token has expired. In this case, CRM object matching fails because the system relies only on the admin’s Salesforce token.","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"We should implement the same fallback logic currently used for dialers - if the Salesforce admin token is expired or inactive, the system should search for another active Salesforce token from any user within the same organisation and use it for CRM matching.","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Acceptance Criteria:","depth":13,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Acceptance Criteria:","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"If the Salesforce admin token has expired, the system searches for another active Salesforce token within the organisation.","depth":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CRM object matching continues successfully using the fallback token.","depth":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Calls should not appear as “Unknown Customer” when another valid Salesforce connection exists in the organisation.","depth":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Subtasks","depth":11,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Subtasks","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add subtask","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add subtask","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Linked work items","depth":11,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Linked work items","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add linked work item","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add linked work item","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Activity","depth":13,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Activity","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"All","depth":14,"on_screen":false,"help_text":"","role_description":"radio button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"All","depth":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Comments","depth":14,"on_screen":false,"help_text":"","role_description":"radio button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Comments","depth":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"History","depth":14,"on_screen":false,"help_text":"","role_description":"radio button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"History","depth":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Work log","depth":14,"on_screen":false,"help_text":"","role_description":"radio button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Work log","depth":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Newest first Newest first","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Newest first","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add a comment…","depth":15,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Who is working on this...?","depth":17,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Who is working on this...?","depth":19,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Status update...","depth":17,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Status update...","depth":19,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Thanks...","depth":17,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Thanks...","depth":19,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Pro tip:","depth":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"press","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"M","depth":17,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"to comment","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Resize work item view side panel","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Watch options: You are not watching this issue, 1 person watching","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":17,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Share","depth":14,"on_screen":false,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Share","depth":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Actions","depth":14,"on_screen":false,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Actions","depth":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Backlog - Change status","depth":11,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Backlog","depth":13,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Automation","depth":11,"on_screen":false,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Automation","depth":13,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Improve Story","depth":11,"bounds":{"left":0.89860374,"top":0.17877094,"width":0.04537899,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Improve Story","depth":13,"bounds":{"left":0.90791225,"top":0.18475658,"width":0.032081116,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Details","depth":14,"bounds":{"left":0.9015958,"top":0.22266561,"width":0.08211436,"height":0.022346368},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXHeading","text":"Details","depth":17,"bounds":{"left":0.9109042,"top":0.22585794,"width":0.01861702,"height":0.015961692},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Details","depth":18,"bounds":{"left":0.9109042,"top":0.22625698,"width":0.017287234,"height":0.01556265},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Assignee","depth":12,"bounds":{"left":0.90525264,"top":0.26296887,"width":0.020611702,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Assignee Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.92852396,"top":0.26376694,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Unassigned- edit Assignee","depth":12,"bounds":{"left":0.90525264,"top":0.29289705,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Unassigned","depth":13,"bounds":{"left":0.91589093,"top":0.28651237,"width":0.026097074,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Assign to me","depth":11,"bounds":{"left":0.90525264,"top":0.30925778,"width":0.07978723,"height":0.015961692},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reporter","depth":12,"bounds":{"left":0.90525264,"top":0.3387869,"width":0.019281914,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Reporter Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.9271942,"top":0.33918595,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Adelina Petrova- edit Reporter","depth":12,"bounds":{"left":0.90525264,"top":0.36871508,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXMenuButton","text":"More information about Adelina Petrova","depth":13,"bounds":{"left":0.90525264,"top":0.35953712,"width":0.04504654,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Adelina Petrova","depth":15,"bounds":{"left":0.91589093,"top":0.36193135,"width":0.034408245,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Components","depth":12,"bounds":{"left":0.90525264,"top":0.39505187,"width":0.028424202,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Components Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.93633646,"top":0.39545092,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Components, edit","depth":11,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Platform","depth":12,"bounds":{"left":0.9069149,"top":0.41660017,"width":0.018450798,"height":0.017557861},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform","depth":13,"bounds":{"left":0.9069149,"top":0.41939345,"width":0.018450798,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Sub-Product","depth":12,"bounds":{"left":0.90525264,"top":0.45131683,"width":0.02825798,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Sub-Product Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.9361702,"top":0.4521149,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Sub-Product, Add options selected, edit","depth":11,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add options","depth":12,"bounds":{"left":0.90525264,"top":0.47486034,"width":0.02642952,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Labels","depth":12,"bounds":{"left":0.90525264,"top":0.5079808,"width":0.01462766,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Labels Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.9225399,"top":0.5083799,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Labels","depth":12,"bounds":{"left":0.90525264,"top":0.53790903,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":13,"bounds":{"left":0.90525264,"top":0.5311253,"width":0.011801862,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Story point estimate","depth":12,"bounds":{"left":0.90525264,"top":0.5642458,"width":0.044714097,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Story point estimate Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.96193486,"top":0.5646449,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Story point estimate","depth":12,"bounds":{"left":0.90525264,"top":0.59417397,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":14,"bounds":{"left":0.90525264,"top":0.5877893,"width":0.011801862,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Story Points","depth":12,"bounds":{"left":0.90525264,"top":0.62051076,"width":0.026928192,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Story Points Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.94414896,"top":0.62130886,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Story Points","depth":12,"bounds":{"left":0.90525264,"top":0.65043896,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":14,"bounds":{"left":0.90525264,"top":0.6440543,"width":0.011801862,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Organisations","depth":12,"bounds":{"left":0.90525264,"top":0.6771748,"width":0.030751329,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Organisations Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.93866354,"top":0.6775738,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Organisations, None selected, edit","depth":11,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":12,"bounds":{"left":0.90525264,"top":0.70031923,"width":0.011801862,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Priority","depth":12,"bounds":{"left":0.90525264,"top":0.73343974,"width":0.016123671,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Priority Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.9240359,"top":0.7338388,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Priority","depth":12,"bounds":{"left":0.90525264,"top":0.7633679,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Medium","depth":13,"bounds":{"left":0.9132314,"top":0.7569832,"width":0.017785905,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Fix versions","depth":12,"bounds":{"left":0.90525264,"top":0.7897047,"width":0.026595745,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Fix versions Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.93450797,"top":0.7905028,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false}]...
|
6030090555386462498
|
7365460324838234215
|
visual_change
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started · AFFiNE
Getting Started · AFFiNE
Screenpipe — Archive
Screenpipe — Archive
Download screenpipe — get started in minutes
Download screenpipe — get started in minutes
Self-Hosted Software and Apps
Self-Hosted Software and Apps
Finance Hub
Finance Hub
New Tab
New Tab
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
Завеждане на щета онлайн | Euroins
Завеждане на щета онлайн | Euroins
Photos - Google Photos
Photos - Google Photos
New Tab
New Tab
Jira
Jira
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Collapse sidebar [
Collapse sidebar [
The App Switcher is loading
Go to your Jira homepage
Search, press enter to navigate to advanced search with your text query
Create
Create
Rovo Ask Rovo
Ask Rovo
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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
Assets , (opens new window)
Assets
, (opens new window)
Teams , (opens new window)
Teams
, (opens new window)
open menu
open menu
Customise sidebar
Customise sidebar
Spaces
Spaces
/
Jiminny (New) Jiminny (New)
Jiminny (New)
/
Epic - Add parent
Add parent
/
Story - Change work type
JY-20912
JY-20912
Copy link
Fallback mechanism for users with active SF tokens for CRM Matching- Summary, edit
Fallback mechanism for users with active SF tokens for CRM Matching
Fallback mechanism for users with active SF tokens for CRM Matching
Add or create work related to this Story
Add or create work related to this Story
View app actions
View app actions
Collapse Description Description
Collapse Description
Collapse Description
Description
Add Description, edit
We identified an issue for Tourlane where Twilio calls appear as “Unknown Customer” when the Salesforce admin connection token has expired. In this case, CRM object matching fails because the system relies only on the admin’s Salesforce token.
We should implement the same fallback logic currently used for dialers - if the Salesforce admin token is expired or inactive, the system should search for another active Salesforce token from any user within the same organisation and use it for CRM matching.
Acceptance Criteria:
Acceptance Criteria:
If the Salesforce admin token has expired, the system searches for another active Salesforce token within the organisation.
CRM object matching continues successfully using the fallback token.
Calls should not appear as “Unknown Customer” when another valid Salesforce connection exists in the organisation.
Subtasks
Subtasks
Add subtask
Add subtask
Linked work items
Linked work items
Add linked work item
Add linked work item
Activity
Activity
All
All
Comments
Comments
History
History
Work log
Work log
Newest first Newest first
Newest first
Add a comment…
Who is working on this...?
Who is working on this...?
Status update...
Status update...
Thanks...
Thanks...
Pro tip:
press
M
to comment
Resize work item view side panel
Watch options: You are not watching this issue, 1 person watching
1
Share
Share
Actions
Actions
Backlog - Change status
Backlog
Automation
Automation
Improve Story
Improve Story
Details
Details
Details
Assignee
Assignee Pin to top. Only you can see pinned fields.
Unassigned- edit Assignee
Unassigned
Assign to me
Reporter
Reporter Pin to top. Only you can see pinned fields.
Adelina Petrova- edit Reporter
More information about Adelina Petrova
Adelina Petrova
Components
Components Pin to top. Only you can see pinned fields.
Edit Components, edit
Platform
Platform
Sub-Product
Sub-Product Pin to top. Only you can see pinned fields.
Edit Sub-Product, Add options selected, edit
Add options
Labels
Labels Pin to top. Only you can see pinned fields.
Edit Labels
None
Story point estimate
Story point estimate Pin to top. Only you can see pinned fields.
Edit Story point estimate
None
Story Points
Story Points Pin to top. Only you can see pinned fields.
Edit Story Points
None
Organisations
Organisations Pin to top. Only you can see pinned fields.
Edit Organisations, None selected, edit
None
Priority
Priority Pin to top. Only you can see pinned fields.
Edit Priority
Medium
Fix versions
Fix versions Pin to top. Only you can see pinned fields....
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49343
|
1761
|
12
|
2026-05-18T06:36:21.069050+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086181069_m2.jpg...
|
Firefox
|
[JY-20912] Fallback mechanism for users with activ [JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira — Personal...
|
1
|
jiminny.atlassian.net/browse/JY-20912?issueKey=JY- jiminny.atlassian.net/browse/JY-20912?issueKey=JY-20912&subProduct=jira-software...
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started · AFFiNE
Getting Started · AFFiNE
Screenpipe — Archive
Screenpipe — Archive
Download screenpipe — get started in minutes
Download screenpipe — get started in minutes
Self-Hosted Software and Apps
Self-Hosted Software and Apps
Finance Hub
Finance Hub
New Tab
New Tab
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
Завеждане на щета онлайн | Euroins
Завеждане на щета онлайн | Euroins
Photos - Google Photos
Photos - Google Photos
New Tab
New Tab
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to:
Sidebar
Sidebar
Top Bar
Top Bar
Main Content
Main Content
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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)
Jiminny (New)
/
Epic - Add parent
Add parent
/
Story - Change work type
JY-20912
JY-20912
Copy link
Fallback mechanism for users with active SF tokens for CRM Matching- Summary, edit
Fallback mechanism for users with active SF tokens for CRM Matching
Fallback mechanism for users with active SF tokens for CRM Matching
Add or create work related to this Story
Add or create work related to this Story
View app actions
View app actions
Collapse Description Description
Collapse Description
Collapse Description
Description
Edit Description, edit
We identified an issue for Tourlane where Twilio calls appear as “Unknown Customer” when the Salesforce admin connection token has expired. In this case, CRM object matching fails because the system relies only on the admin’s Salesforce token.
We should implement the same fallback logic currently used for dialers - if the Salesforce admin token is expired or inactive, the system should search for another active Salesforce token from any user within the same organisation and use it for CRM matching.
Acceptance Criteria:
Acceptance Criteria:
If the Salesforce admin token has expired, the system searches for another active Salesforce token within the organisation.
CRM object matching continues successfully using the fallback token.
Calls should not appear as “Unknown Customer” when another valid Salesforce connection exists in the organisation.
Subtasks
Subtasks
Add subtask
Add subtask
Linked work items
Linked work items
Add linked work item
Add linked work item
Activity
Activity
All
All
Comments
Comments
History
History
Work log
Work log
Newest first Newest first
Newest first
Add a comment…
Who is working on this...?
Who is working on this...?
Status update...
Status update...
Thanks...
Thanks...
Pro tip:
press
M
to comment
Resize work item view side panel
Watch options: You are not watching this issue, 1 person watching
1
Share
Share
Actions
Actions
Backlog - Change status
Backlog
Automation
Automation
Improve Story
Improve Story
Details
Details
Details
Assignee
Assignee Pin to top. Only you can see pinned fields.
Unassigned- edit Assignee
Unassigned
Assign to me
Reporter
Reporter Pin to top. Only you can see pinned fields.
Adelina Petrova- edit Reporter
More information about Adelina Petrova
Adelina Petrova
Development
Development Pin to top. Only you can see pinned fields.
Open with VS Code Link to external website in new tab
Open with VS Code
Create branch Link to external website in new tab
Create branch
Create and checkout new branch
Create commit
Create commit
Components
Components Pin to top. Only you can see pinned fields.
Edit Components, edit
Platform
Platform
Sub-Product
Sub-Product Pin to top. Only you can see pinned fields.
Edit Sub-Product, Add options selected, edit
Add options
Labels
Labels Pin to top. Only you can see pinned fields.
Edit Labels
None
Story point estimate
More information about
Story point estimate Pin to top. Only you can see pinned fields.
Edit Story point estimate
None
Story Points
More information about
Story Points Pin to top. Only you can see pinned fields.
Edit Story Points
None
Organisations
More information about Organisations
Organisations Pin to top. Only you can see pinned fields.
Edit Organisations, None selected, edit
None
Priority
Priority Pin to top. Only you can see pinned fields.
Edit Priority
Medium
Fix versions
Fix versions Pin to top. Only you can see pinned fields.
Edit Fix versions, None selected, edit
None
Sprint
More information about
Sprint Pin to top. Only you can see pinned fields.
Edit Sprint
Platform Sprint 5 Q2
Platform Sprint 5 Q2
Days
Days Pin to top. Only you can see pinned fields.
Edit Days
None
Need QA
Need QA Pin to top. Only you can see pinned fields.
Edit Need QA
Add option
Canny Links
Open
Canny Links
More fields
More fields
More fields
Automation
Automation
Automation
featureOS
featureOS
featureOS
Sentry
Sentry
Sentry
Created
3 days ago
Updated
3 days ago
Configure
Configure
Open Rovo Chat
Open Rovo Chat...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"bounds":{"left":0.5,"top":0.0518755,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"DXP4800PLUS-B5F8","depth":5,"bounds":{"left":0.51329786,"top":0.06304868,"width":0.036901597,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Getting Started · AFFiNE","depth":4,"bounds":{"left":0.5,"top":0.08459697,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Getting Started · AFFiNE","depth":5,"bounds":{"left":0.51329786,"top":0.09577015,"width":0.04255319,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe — Archive","depth":4,"bounds":{"left":0.5,"top":0.11731844,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe — Archive","depth":5,"bounds":{"left":0.51329786,"top":0.12849163,"width":0.037898935,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Download screenpipe — get started in minutes","depth":4,"bounds":{"left":0.5,"top":0.15003991,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Download screenpipe — get started in minutes","depth":5,"bounds":{"left":0.51329786,"top":0.16121309,"width":0.0809508,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Self-Hosted Software and Apps","depth":4,"bounds":{"left":0.5,"top":0.18276137,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Self-Hosted Software and Apps","depth":5,"bounds":{"left":0.51329786,"top":0.19393456,"width":0.054853722,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Finance Hub","depth":4,"bounds":{"left":0.5,"top":0.21548285,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Finance Hub","depth":5,"bounds":{"left":0.51329786,"top":0.22665602,"width":0.021609042,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"bounds":{"left":0.5,"top":0.2482043,"width":0.06881649,"height":0.032721467},"on_screen":true,"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.51329786,"top":0.25937748,"width":0.014960106,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - kovaliklukas@gmail.com - Gmail","depth":4,"bounds":{"left":0.5,"top":0.28092578,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - kovaliklukas@gmail.com - Gmail","depth":5,"bounds":{"left":0.51329786,"top":0.29209897,"width":0.31382978,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - kovaliklukas@gmail.com - Gmail","depth":4,"bounds":{"left":0.5,"top":0.31364724,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - kovaliklukas@gmail.com - Gmail","depth":5,"bounds":{"left":0.51329786,"top":0.32482043,"width":0.19414894,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Завеждане на щета онлайн | Euroins","depth":4,"bounds":{"left":0.5,"top":0.3463687,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Завеждане на щета онлайн | Euroins","depth":5,"bounds":{"left":0.51329786,"top":0.3575419,"width":0.0653258,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Photos - Google Photos","depth":4,"bounds":{"left":0.5,"top":0.3790902,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Photos - Google Photos","depth":5,"bounds":{"left":0.51329786,"top":0.39026338,"width":0.04138963,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"bounds":{"left":0.5,"top":0.41181165,"width":0.06881649,"height":0.032721467},"on_screen":true,"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.51329786,"top":0.42298484,"width":0.014960106,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":4,"bounds":{"left":0.5,"top":0.4445331,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":5,"bounds":{"left":0.51329786,"top":0.4557063,"width":0.15259309,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.55651593,"top":0.4517159,"width":0.007978723,"height":0.01915403},"on_screen":true,"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.5028258,"top":0.47885075,"width":0.06333112,"height":0.025538707},"on_screen":true,"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},"on_screen":true,"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},"on_screen":true,"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.5249335,"top":0.97007185,"width":0.010638298,"height":0.025538707},"on_screen":true,"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.53607047,"top":0.97007185,"width":0.010638298,"height":0.025538707},"on_screen":true,"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.5472075,"top":0.97007185,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to:","depth":9,"bounds":{"left":0.5794548,"top":0.07861133,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Sidebar","depth":10,"bounds":{"left":0.5794548,"top":0.097765364,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Sidebar","depth":11,"bounds":{"left":0.5794548,"top":0.097765364,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Top Bar","depth":10,"bounds":{"left":0.5794548,"top":0.11691939,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Top Bar","depth":11,"bounds":{"left":0.5794548,"top":0.11691939,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Main Content","depth":10,"bounds":{"left":0.5794548,"top":0.13607343,"width":0.029421542,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Main Content","depth":11,"bounds":{"left":0.5794548,"top":0.13607343,"width":0.029421542,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse sidebar [","depth":9,"bounds":{"left":0.5728058,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Collapse sidebar [","depth":11,"bounds":{"left":0.57795876,"top":0.06344773,"width":0.039727394,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Switch sites or apps","depth":10,"bounds":{"left":0.58477396,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Switch sites or apps","depth":12,"bounds":{"left":0.58992684,"top":0.06344773,"width":0.044215426,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Go to your Jira homepage","depth":9,"bounds":{"left":0.5980718,"top":0.057861134,"width":0.029421542,"height":0.025538707},"on_screen":true,"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.6961436,"top":0.06264964,"width":0.14910239,"height":0.015961692},"on_screen":true,"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":10,"bounds":{"left":0.85355717,"top":0.057861134,"width":0.030086435,"height":0.025538707},"on_screen":true,"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.86486036,"top":0.06384677,"width":0.014793883,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Rovo Ask Rovo","depth":12,"bounds":{"left":0.91206783,"top":0.057861134,"width":0.036070477,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Rovo","depth":14,"bounds":{"left":0.923371,"top":0.06384677,"width":0.020777926,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Notifications","depth":12,"bounds":{"left":0.9494681,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notifications","depth":14,"bounds":{"left":0.954621,"top":0.06344773,"width":0.027759308,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Help","depth":12,"bounds":{"left":0.96143615,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Help","depth":14,"bounds":{"left":0.9665891,"top":0.06344773,"width":0.010139627,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Settings","depth":12,"bounds":{"left":0.9734042,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Settings","depth":14,"bounds":{"left":0.97855717,"top":0.06344773,"width":0.017952127,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"lukas.kovalik@jiminny.com","depth":12,"bounds":{"left":0.98537236,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":14,"bounds":{"left":0.99052525,"top":0.06344773,"width":0.009474754,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"For you","depth":12,"bounds":{"left":0.5728058,"top":0.09976058,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"For you","depth":15,"bounds":{"left":0.5834442,"top":0.10574621,"width":0.01662234,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Recent","depth":12,"bounds":{"left":0.5728058,"top":0.12529927,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Recent","depth":15,"bounds":{"left":0.5834442,"top":0.13128492,"width":0.015458777,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Starred","depth":12,"bounds":{"left":0.5728058,"top":0.15083799,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Starred","depth":15,"bounds":{"left":0.5834442,"top":0.15682362,"width":0.016456118,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Apps","depth":12,"bounds":{"left":0.5728058,"top":0.1763767,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Apps","depth":15,"bounds":{"left":0.5834442,"top":0.18236233,"width":0.011635638,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Apps","depth":13,"bounds":{"left":0.64228725,"top":0.17956904,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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 for Apps","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Spaces","depth":12,"bounds":{"left":0.5728058,"top":0.2019154,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"Spaces","depth":15,"bounds":{"left":0.5834442,"top":0.20790103,"width":0.016456118,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create space","depth":13,"bounds":{"left":0.6256649,"top":0.20510775,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create space","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for spaces","depth":13,"bounds":{"left":0.6349734,"top":0.20510775,"width":0.007978723,"height":0.01915403},"on_screen":true,"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 for spaces","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Recent","depth":16,"bounds":{"left":0.5787899,"top":0.23423783,"width":0.013464096,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Service-Desk","depth":17,"bounds":{"left":0.5767952,"top":0.2529928,"width":0.0674867,"height":0.025538707},"on_screen":true,"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":20,"bounds":{"left":0.5874335,"top":0.25897846,"width":0.03025266,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Service-Desk","depth":18,"bounds":{"left":0.64361703,"top":0.25618514,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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 for Service-Desk","depth":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":17,"bounds":{"left":0.5767952,"top":0.27853152,"width":0.0674867,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":20,"bounds":{"left":0.5874335,"top":0.28451717,"width":0.032081116,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Jiminny (New)","depth":18,"bounds":{"left":0.578125,"top":0.28172386,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXMenuButton","text":"Create board","depth":18,"bounds":{"left":0.6256649,"top":0.28172386,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Create board","depth":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Jiminny (New)","depth":18,"bounds":{"left":0.6349734,"top":0.28172386,"width":0.007978723,"height":0.01915403},"on_screen":true,"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 for Jiminny (New)","depth":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Platform Team","depth":19,"bounds":{"left":0.58078456,"top":0.30407023,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform Team","depth":22,"bounds":{"left":0.59142286,"top":0.31005585,"width":0.032247342,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Board actions","depth":20,"bounds":{"left":0.64228725,"top":0.30726257,"width":0.0039893617,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Capture Team","depth":19,"bounds":{"left":0.58078456,"top":0.32960895,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Capture Team","depth":22,"bounds":{"left":0.59142286,"top":0.33559456,"width":0.03125,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Board actions","depth":20,"bounds":{"left":0.64228725,"top":0.33280128,"width":0.0039893617,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Enterprise Stability Issues 🤕","depth":19,"bounds":{"left":0.58078456,"top":0.35514766,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enterprise Stability Issues 🤕","depth":22,"bounds":{"left":0.59142286,"top":0.36113328,"width":0.050531916,"height":0.030726258},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Board actions","depth":20,"bounds":{"left":0.64228725,"top":0.35834,"width":0.0039893617,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Processing Team","depth":19,"bounds":{"left":0.58078456,"top":0.38068634,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Processing Team","depth":22,"bounds":{"left":0.59142286,"top":0.386672,"width":0.038231384,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Board actions","depth":20,"bounds":{"left":0.64228725,"top":0.38387868,"width":0.0039893617,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"SE Kanban","depth":19,"bounds":{"left":0.58078456,"top":0.40622506,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SE Kanban","depth":22,"bounds":{"left":0.59142286,"top":0.4122107,"width":0.024102394,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Board actions","depth":20,"bounds":{"left":0.64228725,"top":0.4094174,"width":0.0039893617,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More spaces","depth":17,"bounds":{"left":0.5767952,"top":0.43176377,"width":0.0674867,"height":0.025538707},"on_screen":true,"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":20,"bounds":{"left":0.5874335,"top":0.43774942,"width":0.028756648,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Filters","depth":12,"bounds":{"left":0.5728058,"top":0.45730248,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Filters","depth":15,"bounds":{"left":0.5834442,"top":0.4632881,"width":0.013796543,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Filters","depth":13,"bounds":{"left":0.64228725,"top":0.46049482,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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 for Filters","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Dashboards","depth":12,"bounds":{"left":0.5728058,"top":0.4828412,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Dashboards","depth":15,"bounds":{"left":0.5834442,"top":0.4888268,"width":0.026761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create dashboard","depth":13,"bounds":{"left":0.6442819,"top":0.48603353,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create dashboard","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Dashboards","depth":13,"bounds":{"left":0.6515958,"top":0.48603353,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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 for Dashboards","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Operations","depth":12,"bounds":{"left":0.5728058,"top":0.5083799,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Operations","depth":15,"bounds":{"left":0.5834442,"top":0.5143655,"width":0.02443484,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Operations","depth":13,"bounds":{"left":0.64228725,"top":0.51157224,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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 for Operations","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Confluence , (opens new window)","depth":13,"bounds":{"left":0.5728058,"top":0.5434956,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Confluence","depth":17,"bounds":{"left":0.5834442,"top":0.5494813,"width":0.025764627,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"bounds":{"left":0.5728058,"top":0.55706304,"width":0.04837101,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Teams , (opens new window)","depth":13,"bounds":{"left":0.5728058,"top":0.56903434,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Teams","depth":17,"bounds":{"left":0.5834442,"top":0.57501996,"width":0.014793883,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"bounds":{"left":0.5728058,"top":0.5826017,"width":0.04837101,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"open menu","depth":14,"bounds":{"left":0.63297874,"top":0.57222664,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Customise sidebar","depth":12,"bounds":{"left":0.5728058,"top":0.60415006,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Customise sidebar","depth":15,"bounds":{"left":0.5834442,"top":0.6101357,"width":0.04155585,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Resize side navigation panel","depth":13,"bounds":{"left":0.70013297,"top":0.0981644,"width":0.062333778,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Spaces","depth":15,"bounds":{"left":0.6605718,"top":0.10933759,"width":0.013962766,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Spaces","depth":17,"bounds":{"left":0.6605718,"top":0.11292897,"width":0.013962766,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":15,"bounds":{"left":0.67636305,"top":0.11173184,"width":0.0016622341,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New) Jiminny (New)","depth":15,"bounds":{"left":0.6818484,"top":0.10933759,"width":0.034574468,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":17,"bounds":{"left":0.68916225,"top":0.11292897,"width":0.027260639,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":15,"bounds":{"left":0.71825135,"top":0.11173184,"width":0.0016622341,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Epic - Add parent","depth":16,"bounds":{"left":0.72174203,"top":0.10933759,"width":0.036070477,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Add parent","depth":18,"bounds":{"left":0.7330452,"top":0.11292897,"width":0.020777926,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":15,"bounds":{"left":0.75964093,"top":0.11173184,"width":0.0016622341,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Story - Change work type","depth":15,"bounds":{"left":0.7631317,"top":0.10933759,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"JY-20912","depth":15,"bounds":{"left":0.77111036,"top":0.10933759,"width":0.017952127,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20912","depth":17,"bounds":{"left":0.77111036,"top":0.11292897,"width":0.017952127,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy link","depth":16,"bounds":{"left":0.7877327,"top":0.11213089,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Fallback mechanism for users with active SF tokens for CRM Matching- Summary, edit","depth":11,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Fallback mechanism for users with active SF tokens for CRM Matching","depth":11,"bounds":{"left":0.6612367,"top":0.1396648,"width":0.22207446,"height":0.044692736},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Fallback mechanism for users with active SF tokens for CRM Matching","depth":12,"bounds":{"left":0.6612367,"top":0.13926576,"width":0.2059508,"height":0.045889866},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Add or create work related to this Story","depth":12,"bounds":{"left":0.6605718,"top":0.19393456,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Add or create work related to this Story","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"View app actions","depth":12,"bounds":{"left":0.67386967,"top":0.19393456,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"View app actions","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Collapse Description Description","depth":11,"bounds":{"left":0.6525931,"top":0.23224261,"width":0.23138298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse Description","depth":13,"bounds":{"left":0.6512633,"top":0.23543495,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Collapse Description","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Description","depth":14,"bounds":{"left":0.6605718,"top":0.23743017,"width":0.029587766,"height":0.01556265},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Edit Description, edit","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"We identified an issue for Tourlane where Twilio calls appear as “Unknown Customer” when the Salesforce admin connection token has expired. In this case, CRM object matching fails because the system relies only on the admin’s Salesforce token.","depth":14,"bounds":{"left":0.6612367,"top":0.2621708,"width":0.21409574,"height":0.05227454},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"We should implement the same fallback logic currently used for dialers - if the Salesforce admin token is expired or inactive, the system should search for another active Salesforce token from any user within the same organisation and use it for CRM matching.","depth":14,"bounds":{"left":0.6612367,"top":0.3292099,"width":0.21825133,"height":0.05227454},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Acceptance Criteria:","depth":13,"bounds":{"left":0.6612367,"top":0.42857143,"width":0.2200798,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Acceptance Criteria:","depth":14,"bounds":{"left":0.6612367,"top":0.42817238,"width":0.04637633,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"If the Salesforce admin token has expired, the system searches for another active Salesforce token within the organisation.","depth":16,"bounds":{"left":0.66921544,"top":0.4537111,"width":0.2059508,"height":0.03312051},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CRM object matching continues successfully using the fallback token.","depth":16,"bounds":{"left":0.66921544,"top":0.49521148,"width":0.15375665,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Calls should not appear as “Unknown Customer” when another valid Salesforce connection exists in the organisation.","depth":16,"bounds":{"left":0.66921544,"top":0.51755786,"width":0.20246011,"height":0.03312051},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Subtasks","depth":11,"bounds":{"left":0.6605718,"top":0.594573,"width":0.023936171,"height":0.015961692},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Subtasks","depth":12,"bounds":{"left":0.6605718,"top":0.5949721,"width":0.023936171,"height":0.01556265},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add subtask","depth":12,"bounds":{"left":0.6565825,"top":0.61532325,"width":0.035405584,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add subtask","depth":14,"bounds":{"left":0.6605718,"top":0.62130886,"width":0.027426861,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Linked work items","depth":11,"bounds":{"left":0.6605718,"top":0.66001594,"width":0.04654255,"height":0.015961692},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Linked work items","depth":12,"bounds":{"left":0.6605718,"top":0.660415,"width":0.04654255,"height":0.01556265},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add linked work item","depth":12,"bounds":{"left":0.6565825,"top":0.67917,"width":0.05418883,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add linked work item","depth":14,"bounds":{"left":0.6605718,"top":0.68515563,"width":0.046210106,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Activity","depth":13,"bounds":{"left":0.6605718,"top":0.7238627,"width":0.019946808,"height":0.015961692},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Activity","depth":14,"bounds":{"left":0.6605718,"top":0.72426176,"width":0.019946808,"height":0.01556265},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"All","depth":14,"bounds":{"left":0.6615692,"top":0.74541104,"width":0.01412899,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"radio button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"All","depth":16,"bounds":{"left":0.66589093,"top":0.7490024,"width":0.005485372,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Comments","depth":14,"bounds":{"left":0.67636305,"top":0.74541104,"width":0.032413565,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"radio button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Comments","depth":16,"bounds":{"left":0.68068486,"top":0.7490024,"width":0.023769947,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"History","depth":14,"bounds":{"left":0.7094415,"top":0.74541104,"width":0.024268618,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"radio button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"History","depth":16,"bounds":{"left":0.7137633,"top":0.7490024,"width":0.015625,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Work log","depth":14,"bounds":{"left":0.734375,"top":0.74541104,"width":0.02825798,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"radio button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Work log","depth":16,"bounds":{"left":0.7386968,"top":0.7490024,"width":0.019614361,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Newest first Newest first","depth":13,"bounds":{"left":0.87599736,"top":0.74940145,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Newest first","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add a comment…","depth":15,"bounds":{"left":0.67453456,"top":0.7893057,"width":0.2087766,"height":0.07182761},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Who is working on this...?","depth":17,"bounds":{"left":0.6805186,"top":0.8276137,"width":0.06482713,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Who is working on this...?","depth":19,"bounds":{"left":0.68450797,"top":0.830407,"width":0.056848403,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Status update...","depth":17,"bounds":{"left":0.74667555,"top":0.8276137,"width":0.04305186,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Status update...","depth":19,"bounds":{"left":0.7506649,"top":0.830407,"width":0.03507314,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Thanks...","depth":17,"bounds":{"left":0.79105717,"top":0.8276137,"width":0.028590426,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Thanks...","depth":19,"bounds":{"left":0.79504657,"top":0.830407,"width":0.020611702,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Pro tip:","depth":16,"bounds":{"left":0.67386967,"top":0.86951315,"width":0.013796543,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"press","depth":15,"bounds":{"left":0.68766624,"top":0.86951315,"width":0.012632979,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"M","depth":17,"bounds":{"left":0.701629,"top":0.87031126,"width":0.0034906915,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"to comment","depth":15,"bounds":{"left":0.70644945,"top":0.86951315,"width":0.023603724,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Resize work item view side panel","depth":12,"bounds":{"left":0.9439827,"top":0.0981644,"width":0.05601728,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Watch options: You are not watching this issue, 1 person watching","depth":13,"bounds":{"left":0.94830453,"top":0.10694334,"width":0.017121011,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":17,"bounds":{"left":0.9596077,"top":0.11292897,"width":0.0018284575,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Share","depth":14,"bounds":{"left":0.9680851,"top":0.10694334,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Share","depth":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Actions","depth":14,"bounds":{"left":0.98138297,"top":0.10694334,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Actions","depth":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Backlog - Change status","depth":11,"bounds":{"left":0.89860374,"top":0.14365523,"width":0.03174867,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Backlog","depth":13,"bounds":{"left":0.9025931,"top":0.14964086,"width":0.017785905,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Automation","depth":11,"bounds":{"left":0.93301195,"top":0.14365523,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Automation","depth":13,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Improve Story","depth":11,"bounds":{"left":0.89860374,"top":0.17877094,"width":0.04537899,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Improve Story","depth":13,"bounds":{"left":0.90791225,"top":0.18475658,"width":0.032081116,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Details","depth":14,"bounds":{"left":0.9015958,"top":0.22266561,"width":0.08211436,"height":0.022346368},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXHeading","text":"Details","depth":17,"bounds":{"left":0.9109042,"top":0.22585794,"width":0.01861702,"height":0.015961692},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Details","depth":18,"bounds":{"left":0.9109042,"top":0.22625698,"width":0.017287234,"height":0.01556265},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Assignee","depth":12,"bounds":{"left":0.90525264,"top":0.26296887,"width":0.020611702,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Assignee Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.92852396,"top":0.26376694,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Unassigned- edit Assignee","depth":12,"bounds":{"left":0.90525264,"top":0.29289705,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Unassigned","depth":13,"bounds":{"left":0.91589093,"top":0.28651237,"width":0.026097074,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Assign to me","depth":11,"bounds":{"left":0.90525264,"top":0.30925778,"width":0.07978723,"height":0.015961692},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reporter","depth":12,"bounds":{"left":0.90525264,"top":0.3387869,"width":0.019281914,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Reporter Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.9271942,"top":0.33918595,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Adelina Petrova- edit Reporter","depth":12,"bounds":{"left":0.90525264,"top":0.36871508,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXMenuButton","text":"More information about Adelina Petrova","depth":13,"bounds":{"left":0.90525264,"top":0.35953712,"width":0.04504654,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Adelina Petrova","depth":15,"bounds":{"left":0.91589093,"top":0.36193135,"width":0.034408245,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Development","depth":12,"bounds":{"left":0.90525264,"top":0.3982442,"width":0.029421542,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Development Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.93733376,"top":0.39784518,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Open with VS Code Link to external website in new tab","depth":12,"bounds":{"left":0.9025931,"top":0.41899443,"width":0.082446806,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Open with VS Code","depth":15,"bounds":{"left":0.9112367,"top":0.42498004,"width":0.043218084,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Create branch Link to external website in new tab","depth":12,"bounds":{"left":0.9025931,"top":0.4445331,"width":0.07446808,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Create branch","depth":15,"bounds":{"left":0.9112367,"top":0.45051876,"width":0.03158245,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Create and checkout new branch","depth":12,"bounds":{"left":0.97706115,"top":0.4445331,"width":0.007978723,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXMenuButton","text":"Create commit","depth":13,"bounds":{"left":0.9025931,"top":0.47007182,"width":0.082446806,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Create commit","depth":16,"bounds":{"left":0.9112367,"top":0.47605747,"width":0.032579787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Components","depth":12,"bounds":{"left":0.90525264,"top":0.5087789,"width":0.028424202,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Components Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.93633646,"top":0.50957704,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Components, edit","depth":11,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Platform","depth":12,"bounds":{"left":0.9069149,"top":0.5303272,"width":0.018450798,"height":0.017557861},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform","depth":13,"bounds":{"left":0.9069149,"top":0.5331205,"width":0.018450798,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Sub-Product","depth":12,"bounds":{"left":0.90525264,"top":0.5654429,"width":0.02825798,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Sub-Product Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.9361702,"top":0.565842,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Sub-Product, Add options selected, edit","depth":11,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add options","depth":12,"bounds":{"left":0.90525264,"top":0.5885874,"width":0.02642952,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Labels","depth":12,"bounds":{"left":0.90525264,"top":0.6217079,"width":0.01462766,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Labels Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.9225399,"top":0.62210697,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Labels","depth":12,"bounds":{"left":0.90525264,"top":0.65163606,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":13,"bounds":{"left":0.90525264,"top":0.6452514,"width":0.011801862,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Story point estimate","depth":12,"bounds":{"left":0.90525264,"top":0.67797285,"width":0.044714097,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More information about","depth":11,"bounds":{"left":0.9539561,"top":0.67877096,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Story point estimate Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.96193486,"top":0.67877096,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Story point estimate","depth":12,"bounds":{"left":0.90525264,"top":0.70790106,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":14,"bounds":{"left":0.90525264,"top":0.7015164,"width":0.011801862,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Story Points","depth":12,"bounds":{"left":0.90525264,"top":0.73463684,"width":0.026928192,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More information about","depth":11,"bounds":{"left":0.9361702,"top":0.7350359,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Story Points Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.94414896,"top":0.7350359,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Story Points","depth":12,"bounds":{"left":0.90525264,"top":0.76456505,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":14,"bounds":{"left":0.90525264,"top":0.7577813,"width":0.011801862,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Organisations","depth":12,"bounds":{"left":0.90525264,"top":0.79090184,"width":0.030751329,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More information about Organisations","depth":11,"bounds":{"left":0.9399933,"top":0.79209894,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Organisations Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.94797206,"top":0.7913009,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Organisations, None selected, edit","depth":11,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":12,"bounds":{"left":0.90525264,"top":0.8144453,"width":0.011801862,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Priority","depth":12,"bounds":{"left":0.90525264,"top":0.8471668,"width":0.016123671,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Priority Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.9240359,"top":0.8479649,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Priority","depth":12,"bounds":{"left":0.90525264,"top":0.877095,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Medium","depth":13,"bounds":{"left":0.9132314,"top":0.8707103,"width":0.017785905,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Fix versions","depth":12,"bounds":{"left":0.90525264,"top":0.9038308,"width":0.026595745,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Fix versions Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.93450797,"top":0.9042298,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Fix versions, None selected, edit","depth":11,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":12,"bounds":{"left":0.90525264,"top":0.92697525,"width":0.011801862,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Sprint","depth":12,"bounds":{"left":0.90525264,"top":0.96009576,"width":0.013297873,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More information about","depth":11,"bounds":{"left":0.9225399,"top":0.9604948,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Sprint Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.9305186,"top":0.9604948,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Sprint","depth":12,"bounds":{"left":0.90525264,"top":0.990024,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Platform Sprint 5 Q2","depth":13,"bounds":{"left":0.90525264,"top":0.98363924,"width":0.04454787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform Sprint 5 Q2","depth":14,"bounds":{"left":0.90525264,"top":0.98363924,"width":0.04454787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Days","depth":12,"bounds":{"left":0.90525264,"top":1.0,"width":0.011136968,"height":-0.01636076},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Days Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.9190492,"top":1.0,"width":0.005319149,"height":-0.017158866},"on_screen":false,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Days","depth":12,"bounds":{"left":0.90525264,"top":1.0,"width":0.0003324468,"height":-0.046288848},"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":14,"bounds":{"left":0.90525264,"top":1.0,"width":0.011801862,"height":-0.039904237},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Need QA","depth":12,"bounds":{"left":0.90525264,"top":1.0,"width":0.019780586,"height":-0.07302475},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Need QA Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.92769283,"top":1.0,"width":0.005319149,"height":-0.07342374},"on_screen":false,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Need QA","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add option","depth":13,"bounds":{"left":0.90525264,"top":1.0,"width":0.024102394,"height":-0.09616923},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Canny Links","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Open","depth":13,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Canny Links","depth":13,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More fields","depth":14,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"More fields","depth":17,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"More fields","depth":18,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Automation","depth":14,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"Automation","depth":17,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Automation","depth":18,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"featureOS","depth":15,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"featureOS","depth":18,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"featureOS","depth":19,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Sentry","depth":14,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"Sentry","depth":17,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Sentry","depth":18,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Created","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"3 days ago","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Updated","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"3 days ago","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Configure","depth":12,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Configure","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Open Rovo Chat","depth":9,"bounds":{"left":0.97606385,"top":0.9425379,"width":0.015957447,"height":0.03830806},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Open Rovo Chat","depth":11,"bounds":{"left":0.98387635,"top":0.9612929,"width":0.016123652,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
4425393857463124014
|
7365460221758756931
|
visual_change
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started · AFFiNE
Getting Started · AFFiNE
Screenpipe — Archive
Screenpipe — Archive
Download screenpipe — get started in minutes
Download screenpipe — get started in minutes
Self-Hosted Software and Apps
Self-Hosted Software and Apps
Finance Hub
Finance Hub
New Tab
New Tab
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
Завеждане на щета онлайн | Euroins
Завеждане на щета онлайн | Euroins
Photos - Google Photos
Photos - Google Photos
New Tab
New Tab
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to:
Sidebar
Sidebar
Top Bar
Top Bar
Main Content
Main Content
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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)
Jiminny (New)
/
Epic - Add parent
Add parent
/
Story - Change work type
JY-20912
JY-20912
Copy link
Fallback mechanism for users with active SF tokens for CRM Matching- Summary, edit
Fallback mechanism for users with active SF tokens for CRM Matching
Fallback mechanism for users with active SF tokens for CRM Matching
Add or create work related to this Story
Add or create work related to this Story
View app actions
View app actions
Collapse Description Description
Collapse Description
Collapse Description
Description
Edit Description, edit
We identified an issue for Tourlane where Twilio calls appear as “Unknown Customer” when the Salesforce admin connection token has expired. In this case, CRM object matching fails because the system relies only on the admin’s Salesforce token.
We should implement the same fallback logic currently used for dialers - if the Salesforce admin token is expired or inactive, the system should search for another active Salesforce token from any user within the same organisation and use it for CRM matching.
Acceptance Criteria:
Acceptance Criteria:
If the Salesforce admin token has expired, the system searches for another active Salesforce token within the organisation.
CRM object matching continues successfully using the fallback token.
Calls should not appear as “Unknown Customer” when another valid Salesforce connection exists in the organisation.
Subtasks
Subtasks
Add subtask
Add subtask
Linked work items
Linked work items
Add linked work item
Add linked work item
Activity
Activity
All
All
Comments
Comments
History
History
Work log
Work log
Newest first Newest first
Newest first
Add a comment…
Who is working on this...?
Who is working on this...?
Status update...
Status update...
Thanks...
Thanks...
Pro tip:
press
M
to comment
Resize work item view side panel
Watch options: You are not watching this issue, 1 person watching
1
Share
Share
Actions
Actions
Backlog - Change status
Backlog
Automation
Automation
Improve Story
Improve Story
Details
Details
Details
Assignee
Assignee Pin to top. Only you can see pinned fields.
Unassigned- edit Assignee
Unassigned
Assign to me
Reporter
Reporter Pin to top. Only you can see pinned fields.
Adelina Petrova- edit Reporter
More information about Adelina Petrova
Adelina Petrova
Development
Development Pin to top. Only you can see pinned fields.
Open with VS Code Link to external website in new tab
Open with VS Code
Create branch Link to external website in new tab
Create branch
Create and checkout new branch
Create commit
Create commit
Components
Components Pin to top. Only you can see pinned fields.
Edit Components, edit
Platform
Platform
Sub-Product
Sub-Product Pin to top. Only you can see pinned fields.
Edit Sub-Product, Add options selected, edit
Add options
Labels
Labels Pin to top. Only you can see pinned fields.
Edit Labels
None
Story point estimate
More information about
Story point estimate Pin to top. Only you can see pinned fields.
Edit Story point estimate
None
Story Points
More information about
Story Points Pin to top. Only you can see pinned fields.
Edit Story Points
None
Organisations
More information about Organisations
Organisations Pin to top. Only you can see pinned fields.
Edit Organisations, None selected, edit
None
Priority
Priority Pin to top. Only you can see pinned fields.
Edit Priority
Medium
Fix versions
Fix versions Pin to top. Only you can see pinned fields.
Edit Fix versions, None selected, edit
None
Sprint
More information about
Sprint Pin to top. Only you can see pinned fields.
Edit Sprint
Platform Sprint 5 Q2
Platform Sprint 5 Q2
Days
Days Pin to top. Only you can see pinned fields.
Edit Days
None
Need QA
Need QA Pin to top. Only you can see pinned fields.
Edit Need QA
Add option
Canny Links
Open
Canny Links
More fields
More fields
More fields
Automation
Automation
Automation
featureOS
featureOS
featureOS
Sentry
Sentry
Sentry
Created
3 days ago
Updated
3 days ago
Configure
Configure
Open Rovo Chat
Open Rovo Chat...
|
49342
|
NULL
|
NULL
|
NULL
|
|
49344
|
1760
|
10
|
2026-05-18T06:36:27.829718+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086187829_m1.jpg...
|
Firefox
|
[JY-20912] Fallback mechanism for users with activ [JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira — Personal...
|
1
|
jiminny.atlassian.net/browse/JY-20912?issueKey=JY- jiminny.atlassian.net/browse/JY-20912?issueKey=JY-20912&subProduct=jira-software...
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started · AFFiNE
Getting Started · AFFiNE
Screenpipe — Archive
Screenpipe — Archive
Download screenpipe — get started in minutes
Download screenpipe — get started in minutes
Self-Hosted Software and Apps
Self-Hosted Software and Apps
Finance Hub
Finance Hub
New Tab
New Tab
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
Завеждане на щета онлайн | Euroins
Завеждане на щета онлайн | Euroins
Photos - Google Photos
Photos - Google Photos
New Tab
New Tab
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to:
Sidebar
Sidebar
Top Bar
Top Bar
Main Content
Main Content
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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)
Jiminny (New)
/
Epic - Add parent
Add parent
/
Story - Change work type
JY-20912
JY-20912
Copy link
Fallback mechanism for users with active SF tokens for CRM Matching- Summary, edit
Fallback mechanism for users with active SF tokens for CRM Matching
Fallback mechanism for users with active SF tokens for CRM Matching
Add or create work related to this Story
Add or create work related to this Story
View app actions
View app actions
Collapse Description Description
Collapse Description
Collapse Description
Description
Edit Description, edit
We identified an issue for Tourlane where Twilio calls appear as “Unknown Customer” when the Salesforce admin connection token has expired. In this case, CRM object matching fails because the system relies only on the admin’s Salesforce token.
We should implement the same fallback logic currently used for dialers - if the Salesforce admin token is expired or inactive, the system should search for another active Salesforce token from any user within the same organisation and use it for CRM matching.
Acceptance Criteria:
Acceptance Criteria:
If the Salesforce admin token has expired, the system searches for another active Salesforce token within the organisation.
CRM object matching continues successfully using the fallback token.
Calls should not appear as “Unknown Customer” when another valid Salesforce connection exists in the organisation.
Subtasks
Subtasks
Add subtask
Add subtask
Linked work items
Linked work items
Add linked work item
Add linked work item
Activity
Activity
All
All
Comments
Comments
History
History
Work log
Work log
Newest first Newest first
Newest first
Add a comment…
Who is working on this...?
Who is working on this...?
Status update...
Status update...
Thanks...
Thanks...
Pro tip:
press
M
to comment
Resize work item view side panel
Watch options: You are not watching this issue, 1 person watching
1
Share
Share
Actions
Actions
Backlog - Change status
Backlog
Automation
Automation
Improve Story
Improve Story
Details
Details
Details
Assignee
Assignee Pin to top. Only you can see pinned fields.
Unassigned- edit Assignee
Unassigned
Assign to me
Reporter
Reporter Pin to top. Only you can see pinned fields.
Adelina Petrova- edit Reporter
More information about Adelina Petrova
Adelina Petrova
Development
Development Pin to top. Only you can see pinned fields.
Open with VS Code Link to external website in new tab
Open with VS Code
Create branch Link to external website in new tab
Create branch
Create and checkout new branch
Create commit
Create commit
Components
Components Pin to top. Only you can see pinned fields.
Edit Components, edit
Platform
Platform
Sub-Product
Sub-Product Pin to top. Only you can see pinned fields.
Edit Sub-Product, Add options selected, edit
Add options
Labels
Labels Pin to top. Only you can see pinned fields.
Edit Labels
None
Story point estimate
More information about
Story point estimate Pin to top. Only you can see pinned fields.
Edit Story point estimate
None
Story Points
More information about
Story Points Pin to top. Only you can see pinned fields.
Edit Story Points
None
Organisations
More information about Organisations
Organisations Pin to top. Only you can see pinned fields.
Edit Organisations, None selected, edit
None
Priority
Priority Pin to top. Only you can see pinned fields.
Edit Priority
Medium
Fix versions
Fix versions Pin to top. Only you can see pinned fields.
Edit Fix versions, None selected, edit
None
Sprint
More information about
Sprint Pin to top. Only you can see pinned fields.
Edit Sprint
Platform Sprint 5 Q2
Platform Sprint 5 Q2
Days
Days Pin to top. Only you can see pinned fields.
Edit Days
None
Need QA
Need QA Pin to top. Only you can see pinned fields.
Edit Need QA
Add option
Canny Links
Open
Canny Links
More fields
More fields
More fields
Automation
Automation
Automation
featureOS
featureOS
featureOS
Sentry
Sentry
Sentry
Created
3 days ago
Updated
3 days ago
Configure
Configure
Open Rovo Chat
Open Rovo Chat...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"DXP4800PLUS-B5F8","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Getting Started · AFFiNE","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Getting Started · AFFiNE","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe — Archive","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe — Archive","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Download screenpipe — get started in minutes","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Download screenpipe — get started in minutes","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Self-Hosted Software and Apps","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Self-Hosted Software and Apps","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Finance Hub","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Finance Hub","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - kovaliklukas@gmail.com - Gmail","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - kovaliklukas@gmail.com - Gmail","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - kovaliklukas@gmail.com - Gmail","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - kovaliklukas@gmail.com - Gmail","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Завеждане на щета онлайн | Euroins","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Завеждане на щета онлайн | Euroins","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Photos - Google Photos","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Photos - Google Photos","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"New Tab","depth":4,"on_screen":true,"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.48576388,"top":0.0,"width":0.022222223,"height":0.035555556},"on_screen":true,"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.5086806,"top":0.0,"width":0.022222223,"height":0.035555556},"on_screen":true,"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.53194445,"top":0.0,"width":0.022222223,"height":0.035555556},"on_screen":true,"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.5552083,"top":0.0,"width":0.022222223,"height":0.035555556},"on_screen":true,"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.5784722,"top":0.0,"width":0.022222223,"height":0.035555556},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to:","depth":9,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Sidebar","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Sidebar","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Top Bar","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Top Bar","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Main Content","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Main Content","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse sidebar [","depth":9,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Collapse sidebar [","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Switch sites or apps","depth":10,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Switch sites or apps","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Go to your Jira homepage","depth":9,"on_screen":true,"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,"on_screen":true,"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":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Rovo Ask Rovo","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Rovo","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Notifications","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notifications","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Help","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Help","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Settings","depth":12,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Settings","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"lukas.kovalik@jiminny.com","depth":12,"on_screen":true,"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":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"For you","depth":12,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"For you","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Recent","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Recent","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Starred","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Starred","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Apps","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Apps","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Apps","depth":13,"on_screen":true,"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 for Apps","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Spaces","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"Spaces","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create space","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create space","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for spaces","depth":13,"on_screen":true,"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 for spaces","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Recent","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Service-Desk","depth":17,"on_screen":true,"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":20,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Service-Desk","depth":18,"on_screen":true,"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 for Service-Desk","depth":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":17,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":20,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Jiminny (New)","depth":18,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXMenuButton","text":"Create board","depth":18,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Create board","depth":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Jiminny (New)","depth":18,"on_screen":true,"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 for Jiminny (New)","depth":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Platform Team","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform Team","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Board actions","depth":20,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Capture Team","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Capture Team","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Board actions","depth":20,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Enterprise Stability Issues 🤕","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enterprise Stability Issues 🤕","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Board actions","depth":20,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Processing Team","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Processing Team","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Board actions","depth":20,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"SE Kanban","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SE Kanban","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Board actions","depth":20,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More spaces","depth":17,"on_screen":true,"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":20,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Filters","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Filters","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Filters","depth":13,"on_screen":true,"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 for Filters","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Dashboards","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Dashboards","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create dashboard","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create dashboard","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Dashboards","depth":13,"on_screen":true,"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 for Dashboards","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Operations","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Operations","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Operations","depth":13,"on_screen":true,"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 for Operations","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Confluence , (opens new window)","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Confluence","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Teams , (opens new window)","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Teams","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"open menu","depth":14,"on_screen":true,"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":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Customise sidebar","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Customise sidebar","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Resize side navigation panel","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Spaces","depth":15,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Spaces","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New) Jiminny (New)","depth":15,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Epic - Add parent","depth":16,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Add parent","depth":18,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Story - Change work type","depth":15,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"JY-20912","depth":15,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20912","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy link","depth":16,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Fallback mechanism for users with active SF tokens for CRM Matching- Summary, edit","depth":11,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Fallback mechanism for users with active SF tokens for CRM Matching","depth":11,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Fallback mechanism for users with active SF tokens for CRM Matching","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Add or create work related to this Story","depth":12,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Add or create work related to this Story","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"View app actions","depth":12,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"View app actions","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Collapse Description Description","depth":11,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse Description","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Collapse Description","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Description","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Edit Description, edit","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"We identified an issue for Tourlane where Twilio calls appear as “Unknown Customer” when the Salesforce admin connection token has expired. In this case, CRM object matching fails because the system relies only on the admin’s Salesforce token.","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"We should implement the same fallback logic currently used for dialers - if the Salesforce admin token is expired or inactive, the system should search for another active Salesforce token from any user within the same organisation and use it for CRM matching.","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Acceptance Criteria:","depth":13,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Acceptance Criteria:","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"If the Salesforce admin token has expired, the system searches for another active Salesforce token within the organisation.","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CRM object matching continues successfully using the fallback token.","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Calls should not appear as “Unknown Customer” when another valid Salesforce connection exists in the organisation.","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Subtasks","depth":11,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Subtasks","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add subtask","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add subtask","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Linked work items","depth":11,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Linked work items","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add linked work item","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add linked work item","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Activity","depth":13,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Activity","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"All","depth":14,"on_screen":true,"help_text":"","role_description":"radio button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"All","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Comments","depth":14,"on_screen":true,"help_text":"","role_description":"radio button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Comments","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"History","depth":14,"on_screen":true,"help_text":"","role_description":"radio button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"History","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Work log","depth":14,"on_screen":true,"help_text":"","role_description":"radio button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Work log","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Newest first Newest first","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Newest first","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add a comment…","depth":15,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Who is working on this...?","depth":17,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Who is working on this...?","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Status update...","depth":17,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Status update...","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Thanks...","depth":17,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Thanks...","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Pro tip:","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"press","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"M","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"to comment","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Resize work item view side panel","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Watch options: You are not watching this issue, 1 person watching","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Share","depth":14,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Share","depth":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Actions","depth":14,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Actions","depth":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Backlog - Change status","depth":11,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Backlog","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Automation","depth":11,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Automation","depth":13,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Improve Story","depth":11,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Improve Story","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Details","depth":14,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXHeading","text":"Details","depth":17,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Details","depth":18,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Assignee","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Assignee Pin to top. Only you can see pinned fields.","depth":11,"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Unassigned- edit Assignee","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Unassigned","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Assign to me","depth":11,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reporter","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Reporter Pin to top. Only you can see pinned fields.","depth":11,"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Adelina Petrova- edit Reporter","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXMenuButton","text":"More information about Adelina Petrova","depth":13,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Adelina Petrova","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Development","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Development Pin to top. Only you can see pinned fields.","depth":11,"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Open with VS Code Link to external website in new tab","depth":12,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Open with VS Code","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Create branch Link to external website in new tab","depth":12,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Create branch","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Create and checkout new branch","depth":12,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXMenuButton","text":"Create commit","depth":13,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Create commit","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Components","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Components Pin to top. Only you can see pinned fields.","depth":11,"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Components, edit","depth":11,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Platform","depth":12,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Sub-Product","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Sub-Product Pin to top. Only you can see pinned fields.","depth":11,"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Sub-Product, Add options selected, edit","depth":11,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add options","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Labels","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Labels Pin to top. Only you can see pinned fields.","depth":11,"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Labels","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Story point estimate","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More information about","depth":11,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Story point estimate Pin to top. Only you can see pinned fields.","depth":11,"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Story point estimate","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Story Points","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More information about","depth":11,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Story Points Pin to top. Only you can see pinned fields.","depth":11,"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Story Points","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Organisations","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More information about Organisations","depth":11,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Organisations Pin to top. Only you can see pinned fields.","depth":11,"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Organisations, None selected, edit","depth":11,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Priority","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Priority Pin to top. Only you can see pinned fields.","depth":11,"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Priority","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Medium","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Fix versions","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Fix versions Pin to top. Only you can see pinned fields.","depth":11,"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Fix versions, None selected, edit","depth":11,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Sprint","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More information about","depth":11,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Sprint Pin to top. Only you can see pinned fields.","depth":11,"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Sprint","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Platform Sprint 5 Q2","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform Sprint 5 Q2","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Days","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Days Pin to top. Only you can see pinned fields.","depth":11,"on_screen":false,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Days","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Need QA","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Need QA Pin to top. Only you can see pinned fields.","depth":11,"on_screen":false,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Need QA","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add option","depth":13,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Canny Links","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Open","depth":13,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Canny Links","depth":13,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More fields","depth":14,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"More fields","depth":17,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"More fields","depth":18,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Automation","depth":14,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"Automation","depth":17,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Automation","depth":18,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"featureOS","depth":15,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"featureOS","depth":18,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"featureOS","depth":19,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Sentry","depth":14,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"Sentry","depth":17,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Sentry","depth":18,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Created","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"3 days ago","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Updated","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"3 days ago","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Configure","depth":12,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Configure","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Open Rovo Chat","depth":9,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Open Rovo Chat","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
4425393857463124014
|
7365460221758756931
|
visual_change
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started · AFFiNE
Getting Started · AFFiNE
Screenpipe — Archive
Screenpipe — Archive
Download screenpipe — get started in minutes
Download screenpipe — get started in minutes
Self-Hosted Software and Apps
Self-Hosted Software and Apps
Finance Hub
Finance Hub
New Tab
New Tab
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
Завеждане на щета онлайн | Euroins
Завеждане на щета онлайн | Euroins
Photos - Google Photos
Photos - Google Photos
New Tab
New Tab
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to:
Sidebar
Sidebar
Top Bar
Top Bar
Main Content
Main Content
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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)
Jiminny (New)
/
Epic - Add parent
Add parent
/
Story - Change work type
JY-20912
JY-20912
Copy link
Fallback mechanism for users with active SF tokens for CRM Matching- Summary, edit
Fallback mechanism for users with active SF tokens for CRM Matching
Fallback mechanism for users with active SF tokens for CRM Matching
Add or create work related to this Story
Add or create work related to this Story
View app actions
View app actions
Collapse Description Description
Collapse Description
Collapse Description
Description
Edit Description, edit
We identified an issue for Tourlane where Twilio calls appear as “Unknown Customer” when the Salesforce admin connection token has expired. In this case, CRM object matching fails because the system relies only on the admin’s Salesforce token.
We should implement the same fallback logic currently used for dialers - if the Salesforce admin token is expired or inactive, the system should search for another active Salesforce token from any user within the same organisation and use it for CRM matching.
Acceptance Criteria:
Acceptance Criteria:
If the Salesforce admin token has expired, the system searches for another active Salesforce token within the organisation.
CRM object matching continues successfully using the fallback token.
Calls should not appear as “Unknown Customer” when another valid Salesforce connection exists in the organisation.
Subtasks
Subtasks
Add subtask
Add subtask
Linked work items
Linked work items
Add linked work item
Add linked work item
Activity
Activity
All
All
Comments
Comments
History
History
Work log
Work log
Newest first Newest first
Newest first
Add a comment…
Who is working on this...?
Who is working on this...?
Status update...
Status update...
Thanks...
Thanks...
Pro tip:
press
M
to comment
Resize work item view side panel
Watch options: You are not watching this issue, 1 person watching
1
Share
Share
Actions
Actions
Backlog - Change status
Backlog
Automation
Automation
Improve Story
Improve Story
Details
Details
Details
Assignee
Assignee Pin to top. Only you can see pinned fields.
Unassigned- edit Assignee
Unassigned
Assign to me
Reporter
Reporter Pin to top. Only you can see pinned fields.
Adelina Petrova- edit Reporter
More information about Adelina Petrova
Adelina Petrova
Development
Development Pin to top. Only you can see pinned fields.
Open with VS Code Link to external website in new tab
Open with VS Code
Create branch Link to external website in new tab
Create branch
Create and checkout new branch
Create commit
Create commit
Components
Components Pin to top. Only you can see pinned fields.
Edit Components, edit
Platform
Platform
Sub-Product
Sub-Product Pin to top. Only you can see pinned fields.
Edit Sub-Product, Add options selected, edit
Add options
Labels
Labels Pin to top. Only you can see pinned fields.
Edit Labels
None
Story point estimate
More information about
Story point estimate Pin to top. Only you can see pinned fields.
Edit Story point estimate
None
Story Points
More information about
Story Points Pin to top. Only you can see pinned fields.
Edit Story Points
None
Organisations
More information about Organisations
Organisations Pin to top. Only you can see pinned fields.
Edit Organisations, None selected, edit
None
Priority
Priority Pin to top. Only you can see pinned fields.
Edit Priority
Medium
Fix versions
Fix versions Pin to top. Only you can see pinned fields.
Edit Fix versions, None selected, edit
None
Sprint
More information about
Sprint Pin to top. Only you can see pinned fields.
Edit Sprint
Platform Sprint 5 Q2
Platform Sprint 5 Q2
Days
Days Pin to top. Only you can see pinned fields.
Edit Days
None
Need QA
Need QA Pin to top. Only you can see pinned fields.
Edit Need QA
Add option
Canny Links
Open
Canny Links
More fields
More fields
More fields
Automation
Automation
Automation
featureOS
featureOS
featureOS
Sentry
Sentry
Sentry
Created
3 days ago
Updated
3 days ago
Configure
Configure
Open Rovo Chat
Open Rovo Chat...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49345
|
1761
|
13
|
2026-05-18T06:36:48.273364+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086208273_m2.jpg...
|
Firefox
|
[JY-20912] Fallback mechanism for users with activ [JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira — Personal...
|
1
|
jiminny.atlassian.net/browse/JY-20912?issueKey=JY- jiminny.atlassian.net/browse/JY-20912?issueKey=JY-20912&subProduct=jira-software...
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
[JY-20912] Fallback mechanism for users with activ [JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
jiminny.atlassian.net
DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started · AFFiNE
Getting Started · AFFiNE
Screenpipe — Archive
Screenpipe — Archive
Download screenpipe — get started in minutes
Download screenpipe — get started in minutes
Self-Hosted Software and Apps
Self-Hosted Software and Apps
Finance Hub
Finance Hub
New Tab
New Tab
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
Завеждане на щета онлайн | Euroins
Завеждане на щета онлайн | Euroins
Photos - Google Photos
Photos - Google Photos
New Tab
New Tab
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to:
Sidebar
Sidebar
Top Bar
Top Bar
Main Content
Main Content
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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)
Jiminny (New)
/
Epic - Add parent
Add parent
/
Story - Change work type
JY-20912
JY-20912
Copy link
Fallback mechanism for users with active SF tokens for CRM Matching- Summary, edit
Fallback mechanism for users with active SF tokens for CRM Matching
Fallback mechanism for users with active SF tokens for CRM Matching
Add or create work related to this Story
Add or create work related to this Story
View app actions
View app actions
Collapse Description Description
Collapse Description
Collapse Description
Description
Edit Description, edit
We identified an issue for Tourlane where Twilio calls appear as “Unknown Customer” when the Salesforce admin connection token has expired. In this case, CRM object matching fails because the system relies only on the admin’s Salesforce token.
We should implement the same fallback logic currently used for dialers - if the Salesforce admin token is expired or inactive, the system should search for another active Salesforce token from any user within the same organisation and use it for CRM matching.
Acceptance Criteria:
Acceptance Criteria:
If the Salesforce admin token has expired, the system searches for another active Salesforce token within the organisation.
CRM object matching continues successfully using the fallback token.
Calls should not appear as “Unknown Customer” when another valid Salesforce connection exists in the organisation.
Subtasks
Subtasks
Add subtask
Add subtask
Linked work items
Linked work items
Add linked work item
Add linked work item
Activity
Activity
All
All
Comments
Comments
History
History
Work log
Work log
Newest first Newest first
Newest first
Add a comment…
Who is working on this...?
Who is working on this...?
Status update...
Status update...
Thanks...
Thanks...
Pro tip:
press
M
to comment
Resize work item view side panel
Watch options: You are not watching this issue, 1 person watching
1
Share
Share
Actions
Actions
Backlog - Change status
Backlog
Automation
Automation
Improve Story
Improve Story
Details
Details
Details
Assignee
Assignee Pin to top. Only you can see pinned fields.
Unassigned- edit Assignee
Unassigned
Assign to me
Reporter
Reporter Pin to top. Only you can see pinned fields.
Adelina Petrova- edit Reporter
More information about Adelina Petrova
Adelina Petrova
Development
Development Pin to top. Only you can see pinned fields.
Open with VS Code Link to external website in new tab
Open with VS Code
Create branch Link to external website in new tab
Create branch
Create and checkout new branch
Create commit
Create commit
Components
Components Pin to top. Only you can see pinned fields.
Edit Components, edit
Platform
Platform
Sub-Product
Sub-Product Pin to top. Only you can see pinned fields.
Edit Sub-Product, Add options selected, edit
Add options
Labels
Labels Pin to top. Only you can see pinned fields.
Edit Labels
None
Story point estimate
More information about
Story point estimate Pin to top. Only you can see pinned fields.
Edit Story point estimate
None
Story Points
More information about
Story Points Pin to top. Only you can see pinned fields.
Edit Story Points
None
Organisations
More information about Organisations
Organisations Pin to top. Only you can see pinned fields.
Edit Organisations, None selected, edit
None
Priority
Priority Pin to top. Only you can see pinned fields.
Edit Priority
Medium
Fix versions
Fix versions Pin to top. Only you can see pinned fields.
Edit Fix versions, None selected, edit
None
Sprint
More information about
Sprint Pin to top. Only you can see pinned fields.
Edit Sprint
Platform Sprint 5 Q2
Platform Sprint 5 Q2
Days
Days Pin to top. Only you can see pinned fields.
Edit Days
None
Need QA
Need QA Pin to top. Only you can see pinned fields.
Edit Need QA
Add option
Canny Links
Open
Canny Links
More fields
More fields
More fields
Automation
Automation
Automation
featureOS
featureOS
featureOS
Sentry
Sentry
Sentry
Created
3 days ago
Updated
3 days ago
Configure
Configure
Open Rovo Chat
Open Rovo Chat...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":4,"bounds":{"left":0.5728058,"top":0.4517159,"width":0.08444149,"height":0.021548284},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"jiminny.atlassian.net","depth":4,"bounds":{"left":0.5728058,"top":0.47326416,"width":0.03507314,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"bounds":{"left":0.5,"top":0.0518755,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"DXP4800PLUS-B5F8","depth":5,"bounds":{"left":0.51329786,"top":0.06304868,"width":0.036901597,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Getting Started · AFFiNE","depth":4,"bounds":{"left":0.5,"top":0.08459697,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Getting Started · AFFiNE","depth":5,"bounds":{"left":0.51329786,"top":0.09577015,"width":0.04255319,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe — Archive","depth":4,"bounds":{"left":0.5,"top":0.11731844,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe — Archive","depth":5,"bounds":{"left":0.51329786,"top":0.12849163,"width":0.037898935,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Download screenpipe — get started in minutes","depth":4,"bounds":{"left":0.5,"top":0.15003991,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Download screenpipe — get started in minutes","depth":5,"bounds":{"left":0.51329786,"top":0.16121309,"width":0.0809508,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Self-Hosted Software and Apps","depth":4,"bounds":{"left":0.5,"top":0.18276137,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Self-Hosted Software and Apps","depth":5,"bounds":{"left":0.51329786,"top":0.19393456,"width":0.054853722,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Finance Hub","depth":4,"bounds":{"left":0.5,"top":0.21548285,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Finance Hub","depth":5,"bounds":{"left":0.51329786,"top":0.22665602,"width":0.021609042,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"bounds":{"left":0.5,"top":0.2482043,"width":0.06881649,"height":0.032721467},"on_screen":true,"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.51329786,"top":0.25937748,"width":0.014960106,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - kovaliklukas@gmail.com - Gmail","depth":4,"bounds":{"left":0.5,"top":0.28092578,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - kovaliklukas@gmail.com - Gmail","depth":5,"bounds":{"left":0.51329786,"top":0.29209897,"width":0.31382978,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - kovaliklukas@gmail.com - Gmail","depth":4,"bounds":{"left":0.5,"top":0.31364724,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - kovaliklukas@gmail.com - Gmail","depth":5,"bounds":{"left":0.51329786,"top":0.32482043,"width":0.19414894,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Завеждане на щета онлайн | Euroins","depth":4,"bounds":{"left":0.5,"top":0.3463687,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Завеждане на щета онлайн | Euroins","depth":5,"bounds":{"left":0.51329786,"top":0.3575419,"width":0.0653258,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Photos - Google Photos","depth":4,"bounds":{"left":0.5,"top":0.3790902,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Photos - Google Photos","depth":5,"bounds":{"left":0.51329786,"top":0.39026338,"width":0.04138963,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"bounds":{"left":0.5,"top":0.41181165,"width":0.06881649,"height":0.032721467},"on_screen":true,"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.51329786,"top":0.42298484,"width":0.014960106,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":4,"bounds":{"left":0.5,"top":0.4445331,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":5,"bounds":{"left":0.51329786,"top":0.4557063,"width":0.15259309,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.55651593,"top":0.4517159,"width":0.007978723,"height":0.01915403},"on_screen":true,"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.5028258,"top":0.47885075,"width":0.06333112,"height":0.025538707},"on_screen":true,"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},"on_screen":true,"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},"on_screen":true,"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.5249335,"top":0.97007185,"width":0.010638298,"height":0.025538707},"on_screen":true,"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.53607047,"top":0.97007185,"width":0.010638298,"height":0.025538707},"on_screen":true,"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.5472075,"top":0.97007185,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to:","depth":9,"bounds":{"left":0.5794548,"top":0.07861133,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Sidebar","depth":10,"bounds":{"left":0.5794548,"top":0.097765364,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Sidebar","depth":11,"bounds":{"left":0.5794548,"top":0.097765364,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Top Bar","depth":10,"bounds":{"left":0.5794548,"top":0.11691939,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Top Bar","depth":11,"bounds":{"left":0.5794548,"top":0.11691939,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Main Content","depth":10,"bounds":{"left":0.5794548,"top":0.13607343,"width":0.029421542,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Main Content","depth":11,"bounds":{"left":0.5794548,"top":0.13607343,"width":0.029421542,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse sidebar [","depth":9,"bounds":{"left":0.5728058,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Collapse sidebar [","depth":11,"bounds":{"left":0.57795876,"top":0.06344773,"width":0.039727394,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Switch sites or apps","depth":10,"bounds":{"left":0.58477396,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Switch sites or apps","depth":12,"bounds":{"left":0.58992684,"top":0.06344773,"width":0.044215426,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Go to your Jira homepage","depth":9,"bounds":{"left":0.5980718,"top":0.057861134,"width":0.029421542,"height":0.025538707},"on_screen":true,"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.6961436,"top":0.06264964,"width":0.14910239,"height":0.015961692},"on_screen":true,"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":10,"bounds":{"left":0.85355717,"top":0.057861134,"width":0.030086435,"height":0.025538707},"on_screen":true,"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.86486036,"top":0.06384677,"width":0.014793883,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Rovo Ask Rovo","depth":12,"bounds":{"left":0.91206783,"top":0.057861134,"width":0.036070477,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Rovo","depth":14,"bounds":{"left":0.923371,"top":0.06384677,"width":0.020777926,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Notifications","depth":12,"bounds":{"left":0.9494681,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notifications","depth":14,"bounds":{"left":0.954621,"top":0.06344773,"width":0.027759308,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Help","depth":12,"bounds":{"left":0.96143615,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Help","depth":14,"bounds":{"left":0.9665891,"top":0.06344773,"width":0.010139627,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Settings","depth":12,"bounds":{"left":0.9734042,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Settings","depth":14,"bounds":{"left":0.97855717,"top":0.06344773,"width":0.017952127,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"lukas.kovalik@jiminny.com","depth":12,"bounds":{"left":0.98537236,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":14,"bounds":{"left":0.99052525,"top":0.06344773,"width":0.009474754,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"For you","depth":12,"bounds":{"left":0.5728058,"top":0.09976058,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"For you","depth":15,"bounds":{"left":0.5834442,"top":0.10574621,"width":0.01662234,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Recent","depth":12,"bounds":{"left":0.5728058,"top":0.12529927,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Recent","depth":15,"bounds":{"left":0.5834442,"top":0.13128492,"width":0.015458777,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Starred","depth":12,"bounds":{"left":0.5728058,"top":0.15083799,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Starred","depth":15,"bounds":{"left":0.5834442,"top":0.15682362,"width":0.016456118,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Apps","depth":12,"bounds":{"left":0.5728058,"top":0.1763767,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Apps","depth":15,"bounds":{"left":0.5834442,"top":0.18236233,"width":0.011635638,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Apps","depth":13,"bounds":{"left":0.64228725,"top":0.17956904,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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 for Apps","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Spaces","depth":12,"bounds":{"left":0.5728058,"top":0.2019154,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"Spaces","depth":15,"bounds":{"left":0.5834442,"top":0.20790103,"width":0.016456118,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create space","depth":13,"bounds":{"left":0.6256649,"top":0.20510775,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create space","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for spaces","depth":13,"bounds":{"left":0.6349734,"top":0.20510775,"width":0.007978723,"height":0.01915403},"on_screen":true,"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 for spaces","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Recent","depth":16,"bounds":{"left":0.5787899,"top":0.23423783,"width":0.013464096,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Service-Desk","depth":17,"bounds":{"left":0.5767952,"top":0.2529928,"width":0.0674867,"height":0.025538707},"on_screen":true,"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":20,"bounds":{"left":0.5874335,"top":0.25897846,"width":0.03025266,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Service-Desk","depth":18,"bounds":{"left":0.64361703,"top":0.25618514,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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 for Service-Desk","depth":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":17,"bounds":{"left":0.5767952,"top":0.27853152,"width":0.0674867,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":20,"bounds":{"left":0.5874335,"top":0.28451717,"width":0.032081116,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Jiminny (New)","depth":18,"bounds":{"left":0.578125,"top":0.28172386,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXMenuButton","text":"Create board","depth":18,"bounds":{"left":0.6256649,"top":0.28172386,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Create board","depth":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Jiminny (New)","depth":18,"bounds":{"left":0.6349734,"top":0.28172386,"width":0.007978723,"height":0.01915403},"on_screen":true,"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 for Jiminny (New)","depth":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Platform Team","depth":19,"bounds":{"left":0.58078456,"top":0.30407023,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform Team","depth":22,"bounds":{"left":0.59142286,"top":0.31005585,"width":0.032247342,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Board actions","depth":20,"bounds":{"left":0.64228725,"top":0.30726257,"width":0.0039893617,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Capture Team","depth":19,"bounds":{"left":0.58078456,"top":0.32960895,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Capture Team","depth":22,"bounds":{"left":0.59142286,"top":0.33559456,"width":0.03125,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Board actions","depth":20,"bounds":{"left":0.64228725,"top":0.33280128,"width":0.0039893617,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Enterprise Stability Issues 🤕","depth":19,"bounds":{"left":0.58078456,"top":0.35514766,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enterprise Stability Issues 🤕","depth":22,"bounds":{"left":0.59142286,"top":0.36113328,"width":0.050531916,"height":0.030726258},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Board actions","depth":20,"bounds":{"left":0.64228725,"top":0.35834,"width":0.0039893617,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Processing Team","depth":19,"bounds":{"left":0.58078456,"top":0.38068634,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Processing Team","depth":22,"bounds":{"left":0.59142286,"top":0.386672,"width":0.038231384,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Board actions","depth":20,"bounds":{"left":0.64228725,"top":0.38387868,"width":0.0039893617,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"SE Kanban","depth":19,"bounds":{"left":0.58078456,"top":0.40622506,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SE Kanban","depth":22,"bounds":{"left":0.59142286,"top":0.4122107,"width":0.024102394,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Board actions","depth":20,"bounds":{"left":0.64228725,"top":0.4094174,"width":0.0039893617,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Board actions","depth":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More spaces","depth":17,"bounds":{"left":0.5767952,"top":0.43176377,"width":0.0674867,"height":0.025538707},"on_screen":true,"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":20,"bounds":{"left":0.5874335,"top":0.43774942,"width":0.028756648,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Filters","depth":12,"bounds":{"left":0.5728058,"top":0.45730248,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Filters","depth":15,"bounds":{"left":0.5834442,"top":0.4632881,"width":0.013796543,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Filters","depth":13,"bounds":{"left":0.64228725,"top":0.46049482,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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 for Filters","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Dashboards","depth":12,"bounds":{"left":0.5728058,"top":0.4828412,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Dashboards","depth":15,"bounds":{"left":0.5834442,"top":0.4888268,"width":0.026761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create dashboard","depth":13,"bounds":{"left":0.6442819,"top":0.48603353,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create dashboard","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Dashboards","depth":13,"bounds":{"left":0.6515958,"top":0.48603353,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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 for Dashboards","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Operations","depth":12,"bounds":{"left":0.5728058,"top":0.5083799,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Operations","depth":15,"bounds":{"left":0.5834442,"top":0.5143655,"width":0.02443484,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More actions for Operations","depth":13,"bounds":{"left":0.64228725,"top":0.51157224,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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 for Operations","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Confluence , (opens new window)","depth":13,"bounds":{"left":0.5728058,"top":0.5434956,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Confluence","depth":17,"bounds":{"left":0.5834442,"top":0.5494813,"width":0.025764627,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"bounds":{"left":0.5728058,"top":0.55706304,"width":0.04837101,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Teams , (opens new window)","depth":13,"bounds":{"left":0.5728058,"top":0.56903434,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Teams","depth":17,"bounds":{"left":0.5834442,"top":0.57501996,"width":0.014793883,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"bounds":{"left":0.5728058,"top":0.5826017,"width":0.04837101,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"open menu","depth":14,"bounds":{"left":0.63297874,"top":0.57222664,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Customise sidebar","depth":12,"bounds":{"left":0.5728058,"top":0.60415006,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Customise sidebar","depth":15,"bounds":{"left":0.5834442,"top":0.6101357,"width":0.04155585,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Resize side navigation panel","depth":13,"bounds":{"left":0.70013297,"top":0.0981644,"width":0.062333778,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Spaces","depth":15,"bounds":{"left":0.6605718,"top":0.10933759,"width":0.013962766,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Spaces","depth":17,"bounds":{"left":0.6605718,"top":0.11292897,"width":0.013962766,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":15,"bounds":{"left":0.67636305,"top":0.11173184,"width":0.0016622341,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New) Jiminny (New)","depth":15,"bounds":{"left":0.6818484,"top":0.10933759,"width":0.034574468,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":17,"bounds":{"left":0.68916225,"top":0.11292897,"width":0.027260639,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":15,"bounds":{"left":0.71825135,"top":0.11173184,"width":0.0016622341,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Epic - Add parent","depth":16,"bounds":{"left":0.72174203,"top":0.10933759,"width":0.036070477,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Add parent","depth":18,"bounds":{"left":0.7330452,"top":0.11292897,"width":0.020777926,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":15,"bounds":{"left":0.75964093,"top":0.11173184,"width":0.0016622341,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Story - Change work type","depth":15,"bounds":{"left":0.7631317,"top":0.10933759,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"JY-20912","depth":15,"bounds":{"left":0.77111036,"top":0.10933759,"width":0.017952127,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20912","depth":17,"bounds":{"left":0.77111036,"top":0.11292897,"width":0.017952127,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy link","depth":16,"bounds":{"left":0.7877327,"top":0.11213089,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Fallback mechanism for users with active SF tokens for CRM Matching- Summary, edit","depth":11,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Fallback mechanism for users with active SF tokens for CRM Matching","depth":11,"bounds":{"left":0.6612367,"top":0.1396648,"width":0.22207446,"height":0.044692736},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Fallback mechanism for users with active SF tokens for CRM Matching","depth":12,"bounds":{"left":0.6612367,"top":0.13926576,"width":0.2059508,"height":0.045889866},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Add or create work related to this Story","depth":12,"bounds":{"left":0.6605718,"top":0.19393456,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Add or create work related to this Story","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"View app actions","depth":12,"bounds":{"left":0.67386967,"top":0.19393456,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"View app actions","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Collapse Description Description","depth":11,"bounds":{"left":0.6525931,"top":0.23224261,"width":0.23138298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse Description","depth":13,"bounds":{"left":0.6512633,"top":0.23543495,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Collapse Description","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Description","depth":14,"bounds":{"left":0.6605718,"top":0.23743017,"width":0.029587766,"height":0.01556265},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Edit Description, edit","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"We identified an issue for Tourlane where Twilio calls appear as “Unknown Customer” when the Salesforce admin connection token has expired. In this case, CRM object matching fails because the system relies only on the admin’s Salesforce token.","depth":14,"bounds":{"left":0.6612367,"top":0.2621708,"width":0.21409574,"height":0.05227454},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"We should implement the same fallback logic currently used for dialers - if the Salesforce admin token is expired or inactive, the system should search for another active Salesforce token from any user within the same organisation and use it for CRM matching.","depth":14,"bounds":{"left":0.6612367,"top":0.3292099,"width":0.21825133,"height":0.05227454},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Acceptance Criteria:","depth":13,"bounds":{"left":0.6612367,"top":0.42857143,"width":0.2200798,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Acceptance Criteria:","depth":14,"bounds":{"left":0.6612367,"top":0.42817238,"width":0.04637633,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"If the Salesforce admin token has expired, the system searches for another active Salesforce token within the organisation.","depth":16,"bounds":{"left":0.66921544,"top":0.4537111,"width":0.2059508,"height":0.03312051},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CRM object matching continues successfully using the fallback token.","depth":16,"bounds":{"left":0.66921544,"top":0.49521148,"width":0.15375665,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Calls should not appear as “Unknown Customer” when another valid Salesforce connection exists in the organisation.","depth":16,"bounds":{"left":0.66921544,"top":0.51755786,"width":0.20246011,"height":0.03312051},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Subtasks","depth":11,"bounds":{"left":0.6605718,"top":0.594573,"width":0.023936171,"height":0.015961692},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Subtasks","depth":12,"bounds":{"left":0.6605718,"top":0.5949721,"width":0.023936171,"height":0.01556265},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add subtask","depth":12,"bounds":{"left":0.6565825,"top":0.61532325,"width":0.035405584,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add subtask","depth":14,"bounds":{"left":0.6605718,"top":0.62130886,"width":0.027426861,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Linked work items","depth":11,"bounds":{"left":0.6605718,"top":0.66001594,"width":0.04654255,"height":0.015961692},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Linked work items","depth":12,"bounds":{"left":0.6605718,"top":0.660415,"width":0.04654255,"height":0.01556265},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add linked work item","depth":12,"bounds":{"left":0.6565825,"top":0.67917,"width":0.05418883,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add linked work item","depth":14,"bounds":{"left":0.6605718,"top":0.68515563,"width":0.046210106,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Activity","depth":13,"bounds":{"left":0.6605718,"top":0.7238627,"width":0.019946808,"height":0.015961692},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Activity","depth":14,"bounds":{"left":0.6605718,"top":0.72426176,"width":0.019946808,"height":0.01556265},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"All","depth":14,"bounds":{"left":0.6615692,"top":0.74541104,"width":0.01412899,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"radio button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"All","depth":16,"bounds":{"left":0.66589093,"top":0.7490024,"width":0.005485372,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Comments","depth":14,"bounds":{"left":0.67636305,"top":0.74541104,"width":0.032413565,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"radio button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Comments","depth":16,"bounds":{"left":0.68068486,"top":0.7490024,"width":0.023769947,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"History","depth":14,"bounds":{"left":0.7094415,"top":0.74541104,"width":0.024268618,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"radio button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"History","depth":16,"bounds":{"left":0.7137633,"top":0.7490024,"width":0.015625,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Work log","depth":14,"bounds":{"left":0.734375,"top":0.74541104,"width":0.02825798,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"radio button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Work log","depth":16,"bounds":{"left":0.7386968,"top":0.7490024,"width":0.019614361,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Newest first Newest first","depth":13,"bounds":{"left":0.87599736,"top":0.74940145,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Newest first","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add a comment…","depth":15,"bounds":{"left":0.67453456,"top":0.7893057,"width":0.2087766,"height":0.07182761},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Who is working on this...?","depth":17,"bounds":{"left":0.6805186,"top":0.8276137,"width":0.06482713,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Who is working on this...?","depth":19,"bounds":{"left":0.68450797,"top":0.830407,"width":0.056848403,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Status update...","depth":17,"bounds":{"left":0.74667555,"top":0.8276137,"width":0.04305186,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Status update...","depth":19,"bounds":{"left":0.7506649,"top":0.830407,"width":0.03507314,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Thanks...","depth":17,"bounds":{"left":0.79105717,"top":0.8276137,"width":0.028590426,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Thanks...","depth":19,"bounds":{"left":0.79504657,"top":0.830407,"width":0.020611702,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Pro tip:","depth":16,"bounds":{"left":0.67386967,"top":0.86951315,"width":0.013796543,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"press","depth":15,"bounds":{"left":0.68766624,"top":0.86951315,"width":0.012632979,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"M","depth":17,"bounds":{"left":0.701629,"top":0.87031126,"width":0.0034906915,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"to comment","depth":15,"bounds":{"left":0.70644945,"top":0.86951315,"width":0.023603724,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Resize work item view side panel","depth":12,"bounds":{"left":0.9439827,"top":0.0981644,"width":0.05601728,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Watch options: You are not watching this issue, 1 person watching","depth":13,"bounds":{"left":0.94830453,"top":0.10694334,"width":0.017121011,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":17,"bounds":{"left":0.9596077,"top":0.11292897,"width":0.0018284575,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Share","depth":14,"bounds":{"left":0.9680851,"top":0.10694334,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Share","depth":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Actions","depth":14,"bounds":{"left":0.98138297,"top":0.10694334,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Actions","depth":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Backlog - Change status","depth":11,"bounds":{"left":0.89860374,"top":0.14365523,"width":0.03174867,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Backlog","depth":13,"bounds":{"left":0.9025931,"top":0.14964086,"width":0.017785905,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Automation","depth":11,"bounds":{"left":0.93301195,"top":0.14365523,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Automation","depth":13,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Improve Story","depth":11,"bounds":{"left":0.89860374,"top":0.17877094,"width":0.04537899,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Improve Story","depth":13,"bounds":{"left":0.90791225,"top":0.18475658,"width":0.032081116,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Details","depth":14,"bounds":{"left":0.9015958,"top":0.22266561,"width":0.08211436,"height":0.022346368},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXHeading","text":"Details","depth":17,"bounds":{"left":0.9109042,"top":0.22585794,"width":0.01861702,"height":0.015961692},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Details","depth":18,"bounds":{"left":0.9109042,"top":0.22625698,"width":0.017287234,"height":0.01556265},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Assignee","depth":12,"bounds":{"left":0.90525264,"top":0.26296887,"width":0.020611702,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Assignee Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.92852396,"top":0.26376694,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Unassigned- edit Assignee","depth":12,"bounds":{"left":0.90525264,"top":0.29289705,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Unassigned","depth":13,"bounds":{"left":0.91589093,"top":0.28651237,"width":0.026097074,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Assign to me","depth":11,"bounds":{"left":0.90525264,"top":0.30925778,"width":0.07978723,"height":0.015961692},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reporter","depth":12,"bounds":{"left":0.90525264,"top":0.3387869,"width":0.019281914,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Reporter Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.9271942,"top":0.33918595,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Adelina Petrova- edit Reporter","depth":12,"bounds":{"left":0.90525264,"top":0.36871508,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXMenuButton","text":"More information about Adelina Petrova","depth":13,"bounds":{"left":0.90525264,"top":0.35953712,"width":0.04504654,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Adelina Petrova","depth":15,"bounds":{"left":0.91589093,"top":0.36193135,"width":0.034408245,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Development","depth":12,"bounds":{"left":0.90525264,"top":0.3982442,"width":0.029421542,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Development Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.93733376,"top":0.39784518,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Open with VS Code Link to external website in new tab","depth":12,"bounds":{"left":0.9025931,"top":0.41899443,"width":0.082446806,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Open with VS Code","depth":15,"bounds":{"left":0.9112367,"top":0.42498004,"width":0.043218084,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Create branch Link to external website in new tab","depth":12,"bounds":{"left":0.9025931,"top":0.4445331,"width":0.07446808,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Create branch","depth":15,"bounds":{"left":0.9112367,"top":0.45051876,"width":0.03158245,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Create and checkout new branch","depth":12,"bounds":{"left":0.97706115,"top":0.4445331,"width":0.007978723,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXMenuButton","text":"Create commit","depth":13,"bounds":{"left":0.9025931,"top":0.47007182,"width":0.082446806,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Create commit","depth":16,"bounds":{"left":0.9112367,"top":0.47605747,"width":0.032579787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Components","depth":12,"bounds":{"left":0.90525264,"top":0.5087789,"width":0.028424202,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Components Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.93633646,"top":0.50957704,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Components, edit","depth":11,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Platform","depth":12,"bounds":{"left":0.9069149,"top":0.5303272,"width":0.018450798,"height":0.017557861},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform","depth":13,"bounds":{"left":0.9069149,"top":0.5331205,"width":0.018450798,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Sub-Product","depth":12,"bounds":{"left":0.90525264,"top":0.5654429,"width":0.02825798,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Sub-Product Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.9361702,"top":0.565842,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Sub-Product, Add options selected, edit","depth":11,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add options","depth":12,"bounds":{"left":0.90525264,"top":0.5885874,"width":0.02642952,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Labels","depth":12,"bounds":{"left":0.90525264,"top":0.6217079,"width":0.01462766,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Labels Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.9225399,"top":0.62210697,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Labels","depth":12,"bounds":{"left":0.90525264,"top":0.65163606,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":13,"bounds":{"left":0.90525264,"top":0.6452514,"width":0.011801862,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Story point estimate","depth":12,"bounds":{"left":0.90525264,"top":0.67797285,"width":0.044714097,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More information about","depth":11,"bounds":{"left":0.9539561,"top":0.67877096,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Story point estimate Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.96193486,"top":0.67877096,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Story point estimate","depth":12,"bounds":{"left":0.90525264,"top":0.70790106,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":14,"bounds":{"left":0.90525264,"top":0.7015164,"width":0.011801862,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Story Points","depth":12,"bounds":{"left":0.90525264,"top":0.73463684,"width":0.026928192,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More information about","depth":11,"bounds":{"left":0.9361702,"top":0.7350359,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Story Points Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.94414896,"top":0.7350359,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Story Points","depth":12,"bounds":{"left":0.90525264,"top":0.76456505,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":14,"bounds":{"left":0.90525264,"top":0.7577813,"width":0.011801862,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Organisations","depth":12,"bounds":{"left":0.90525264,"top":0.79090184,"width":0.030751329,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More information about Organisations","depth":11,"bounds":{"left":0.9399933,"top":0.79209894,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Organisations Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.94797206,"top":0.7913009,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Organisations, None selected, edit","depth":11,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":12,"bounds":{"left":0.90525264,"top":0.8144453,"width":0.011801862,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Priority","depth":12,"bounds":{"left":0.90525264,"top":0.8471668,"width":0.016123671,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Priority Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.9240359,"top":0.8479649,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Priority","depth":12,"bounds":{"left":0.90525264,"top":0.877095,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Medium","depth":13,"bounds":{"left":0.9132314,"top":0.8707103,"width":0.017785905,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Fix versions","depth":12,"bounds":{"left":0.90525264,"top":0.9038308,"width":0.026595745,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Fix versions Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.93450797,"top":0.9042298,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Fix versions, None selected, edit","depth":11,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":12,"bounds":{"left":0.90525264,"top":0.92697525,"width":0.011801862,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Sprint","depth":12,"bounds":{"left":0.90525264,"top":0.96009576,"width":0.013297873,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"More information about","depth":11,"bounds":{"left":0.9225399,"top":0.9604948,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Sprint Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.9305186,"top":0.9604948,"width":0.005319149,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Sprint","depth":12,"bounds":{"left":0.90525264,"top":0.990024,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Platform Sprint 5 Q2","depth":13,"bounds":{"left":0.90525264,"top":0.98363924,"width":0.04454787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform Sprint 5 Q2","depth":14,"bounds":{"left":0.90525264,"top":0.98363924,"width":0.04454787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Days","depth":12,"bounds":{"left":0.90525264,"top":1.0,"width":0.011136968,"height":-0.01636076},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Days Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.9190492,"top":1.0,"width":0.005319149,"height":-0.017158866},"on_screen":false,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Days","depth":12,"bounds":{"left":0.90525264,"top":1.0,"width":0.0003324468,"height":-0.046288848},"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"None","depth":14,"bounds":{"left":0.90525264,"top":1.0,"width":0.011801862,"height":-0.039904237},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Need QA","depth":12,"bounds":{"left":0.90525264,"top":1.0,"width":0.019780586,"height":-0.07302475},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Need QA Pin to top. Only you can see pinned fields.","depth":11,"bounds":{"left":0.92769283,"top":1.0,"width":0.005319149,"height":-0.07342374},"on_screen":false,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit Need QA","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add option","depth":13,"bounds":{"left":0.90525264,"top":1.0,"width":0.024102394,"height":-0.09616923},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Canny Links","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Open","depth":13,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Canny Links","depth":13,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More fields","depth":14,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"More fields","depth":17,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"More fields","depth":18,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Automation","depth":14,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"Automation","depth":17,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Automation","depth":18,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"featureOS","depth":15,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"featureOS","depth":18,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"featureOS","depth":19,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Sentry","depth":14,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"Sentry","depth":17,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Sentry","depth":18,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Created","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"3 days ago","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Updated","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"3 days ago","depth":12,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Configure","depth":12,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Configure","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Open Rovo Chat","depth":9,"bounds":{"left":0.97606385,"top":0.9425379,"width":0.015957447,"height":0.03830806},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Open Rovo Chat","depth":11,"bounds":{"left":0.98387635,"top":0.9612929,"width":0.016123652,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
8783159721926931891
|
7365455789352507463
|
visual_change
|
accessibility
|
NULL
|
[JY-20912] Fallback mechanism for users with activ [JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
jiminny.atlassian.net
DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started · AFFiNE
Getting Started · AFFiNE
Screenpipe — Archive
Screenpipe — Archive
Download screenpipe — get started in minutes
Download screenpipe — get started in minutes
Self-Hosted Software and Apps
Self-Hosted Software and Apps
Finance Hub
Finance Hub
New Tab
New Tab
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
Завеждане на щета онлайн | Euroins
Завеждане на щета онлайн | Euroins
Photos - Google Photos
Photos - Google Photos
New Tab
New Tab
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to:
Sidebar
Sidebar
Top Bar
Top Bar
Main Content
Main Content
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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)
Jiminny (New)
/
Epic - Add parent
Add parent
/
Story - Change work type
JY-20912
JY-20912
Copy link
Fallback mechanism for users with active SF tokens for CRM Matching- Summary, edit
Fallback mechanism for users with active SF tokens for CRM Matching
Fallback mechanism for users with active SF tokens for CRM Matching
Add or create work related to this Story
Add or create work related to this Story
View app actions
View app actions
Collapse Description Description
Collapse Description
Collapse Description
Description
Edit Description, edit
We identified an issue for Tourlane where Twilio calls appear as “Unknown Customer” when the Salesforce admin connection token has expired. In this case, CRM object matching fails because the system relies only on the admin’s Salesforce token.
We should implement the same fallback logic currently used for dialers - if the Salesforce admin token is expired or inactive, the system should search for another active Salesforce token from any user within the same organisation and use it for CRM matching.
Acceptance Criteria:
Acceptance Criteria:
If the Salesforce admin token has expired, the system searches for another active Salesforce token within the organisation.
CRM object matching continues successfully using the fallback token.
Calls should not appear as “Unknown Customer” when another valid Salesforce connection exists in the organisation.
Subtasks
Subtasks
Add subtask
Add subtask
Linked work items
Linked work items
Add linked work item
Add linked work item
Activity
Activity
All
All
Comments
Comments
History
History
Work log
Work log
Newest first Newest first
Newest first
Add a comment…
Who is working on this...?
Who is working on this...?
Status update...
Status update...
Thanks...
Thanks...
Pro tip:
press
M
to comment
Resize work item view side panel
Watch options: You are not watching this issue, 1 person watching
1
Share
Share
Actions
Actions
Backlog - Change status
Backlog
Automation
Automation
Improve Story
Improve Story
Details
Details
Details
Assignee
Assignee Pin to top. Only you can see pinned fields.
Unassigned- edit Assignee
Unassigned
Assign to me
Reporter
Reporter Pin to top. Only you can see pinned fields.
Adelina Petrova- edit Reporter
More information about Adelina Petrova
Adelina Petrova
Development
Development Pin to top. Only you can see pinned fields.
Open with VS Code Link to external website in new tab
Open with VS Code
Create branch Link to external website in new tab
Create branch
Create and checkout new branch
Create commit
Create commit
Components
Components Pin to top. Only you can see pinned fields.
Edit Components, edit
Platform
Platform
Sub-Product
Sub-Product Pin to top. Only you can see pinned fields.
Edit Sub-Product, Add options selected, edit
Add options
Labels
Labels Pin to top. Only you can see pinned fields.
Edit Labels
None
Story point estimate
More information about
Story point estimate Pin to top. Only you can see pinned fields.
Edit Story point estimate
None
Story Points
More information about
Story Points Pin to top. Only you can see pinned fields.
Edit Story Points
None
Organisations
More information about Organisations
Organisations Pin to top. Only you can see pinned fields.
Edit Organisations, None selected, edit
None
Priority
Priority Pin to top. Only you can see pinned fields.
Edit Priority
Medium
Fix versions
Fix versions Pin to top. Only you can see pinned fields.
Edit Fix versions, None selected, edit
None
Sprint
More information about
Sprint Pin to top. Only you can see pinned fields.
Edit Sprint
Platform Sprint 5 Q2
Platform Sprint 5 Q2
Days
Days Pin to top. Only you can see pinned fields.
Edit Days
None
Need QA
Need QA Pin to top. Only you can see pinned fields.
Edit Need QA
Add option
Canny Links
Open
Canny Links
More fields
More fields
More fields
Automation
Automation
Automation
featureOS
featureOS
featureOS
Sentry
Sentry
Sentry
Created
3 days ago
Updated
3 days ago
Configure
Configure
Open Rovo Chat
Open Rovo Chat...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49346
|
1760
|
11
|
2026-05-18T06:36:49.572869+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086209572_m1.jpg...
|
Firefox
|
[JY-20912] Fallback mechanism for users with activ [JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira — Personal...
|
1
|
finance-hub.lakylak.xyz
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
[JY-20912] Fallback mechanism for users with activ [JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
jiminny.atlassian.net
DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started · AFFiNE
Getting Started · AFFiNE
Screenpipe — Archive
Screenpipe — Archive
Download screenpipe — get started in minutes
Download screenpipe — get started in minutes
Self-Hosted Software and Apps
Self-Hosted Software and Apps
Finance Hub
Finance Hub
New Tab
New Tab
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
Завеждане на щета онлайн | Euroins
Завеждане на щета онлайн | Euroins
Photos - Google Photos
Photos - Google Photos
New Tab
New Tab
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to:
Sidebar
Sidebar
Top Bar
Top Bar
Main Content
Main Content
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[EMAIL]
For you
For you
Recent
Recent
Starred
Starred
Apps
Apps...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"jiminny.atlassian.net","depth":4,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"DXP4800PLUS-B5F8","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Getting Started · AFFiNE","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Getting Started · AFFiNE","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe — Archive","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe — Archive","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Download screenpipe — get started in minutes","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Download screenpipe — get started in minutes","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Self-Hosted Software and Apps","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Self-Hosted Software and Apps","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Finance Hub","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Finance Hub","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - kovaliklukas@gmail.com - Gmail","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - kovaliklukas@gmail.com - Gmail","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - kovaliklukas@gmail.com - Gmail","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - kovaliklukas@gmail.com - Gmail","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Завеждане на щета онлайн | Euroins","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Завеждане на щета онлайн | Euroins","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Photos - Google Photos","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Photos - Google Photos","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"New Tab","depth":4,"on_screen":true,"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.48576388,"top":0.0,"width":0.022222223,"height":0.035555556},"on_screen":true,"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.5086806,"top":0.0,"width":0.022222223,"height":0.035555556},"on_screen":true,"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.53194445,"top":0.0,"width":0.022222223,"height":0.035555556},"on_screen":true,"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.5552083,"top":0.0,"width":0.022222223,"height":0.035555556},"on_screen":true,"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.5784722,"top":0.0,"width":0.022222223,"height":0.035555556},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to:","depth":9,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Sidebar","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Sidebar","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Top Bar","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Top Bar","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Main Content","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Main Content","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse sidebar [","depth":9,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Collapse sidebar [","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Switch sites or apps","depth":10,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Switch sites or apps","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Go to your Jira homepage","depth":9,"on_screen":true,"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,"on_screen":true,"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":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Rovo Ask Rovo","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Rovo","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Notifications","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notifications","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Help","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Help","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Settings","depth":12,"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Settings","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"lukas.kovalik@jiminny.com","depth":12,"on_screen":true,"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":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"For you","depth":12,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"For you","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Recent","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Recent","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Starred","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Starred","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Apps","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Apps","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
-1448001272848273704
|
2761015714856945411
|
click
|
accessibility
|
NULL
|
[JY-20912] Fallback mechanism for users with activ [JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
jiminny.atlassian.net
DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started · AFFiNE
Getting Started · AFFiNE
Screenpipe — Archive
Screenpipe — Archive
Download screenpipe — get started in minutes
Download screenpipe — get started in minutes
Self-Hosted Software and Apps
Self-Hosted Software and Apps
Finance Hub
Finance Hub
New Tab
New Tab
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
Завеждане на щета онлайн | Euroins
Завеждане на щета онлайн | Euroins
Photos - Google Photos
Photos - Google Photos
New Tab
New Tab
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to:
Sidebar
Sidebar
Top Bar
Top Bar
Main Content
Main Content
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[EMAIL]
For you
For you
Recent
Recent
Starred
Starred
Apps
Apps...
|
49344
|
NULL
|
NULL
|
NULL
|
|
49347
|
1761
|
14
|
2026-05-18T06:36:49.578187+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086209578_m2.jpg...
|
Firefox
|
[JY-20912] Fallback mechanism for users with activ [JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira — Personal...
|
1
|
finance-hub.lakylak.xyz
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
[JY-20912] Fallback mechanism for users with activ [JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
jiminny.atlassian.net
DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started · AFFiNE
Getting Started · AFFiNE
Screenpipe — Archive
Screenpipe — Archive
Download screenpipe — get started in minutes
Download screenpipe — get started in minutes
Self-Hosted Software and Apps
Self-Hosted Software and Apps
Finance Hub
Finance Hub
New Tab
New Tab
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
Завеждане на щета онлайн | Euroins
Завеждане на щета онлайн | Euroins
Photos - Google Photos
Photos - Google Photos
New Tab
New Tab
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to:
Sidebar
Sidebar
Top Bar
Top Bar
Main Content
Main Content
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[EMAIL]...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":4,"bounds":{"left":0.5728058,"top":0.4517159,"width":0.08444149,"height":0.021548284},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"jiminny.atlassian.net","depth":4,"bounds":{"left":0.5728058,"top":0.47326416,"width":0.03507314,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"bounds":{"left":0.5,"top":0.0518755,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"DXP4800PLUS-B5F8","depth":5,"bounds":{"left":0.51329786,"top":0.06304868,"width":0.036901597,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Getting Started · AFFiNE","depth":4,"bounds":{"left":0.5,"top":0.08459697,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Getting Started · AFFiNE","depth":5,"bounds":{"left":0.51329786,"top":0.09577015,"width":0.04255319,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe — Archive","depth":4,"bounds":{"left":0.5,"top":0.11731844,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe — Archive","depth":5,"bounds":{"left":0.51329786,"top":0.12849163,"width":0.037898935,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Download screenpipe — get started in minutes","depth":4,"bounds":{"left":0.5,"top":0.15003991,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Download screenpipe — get started in minutes","depth":5,"bounds":{"left":0.51329786,"top":0.16121309,"width":0.0809508,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Self-Hosted Software and Apps","depth":4,"bounds":{"left":0.5,"top":0.18276137,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Self-Hosted Software and Apps","depth":5,"bounds":{"left":0.51329786,"top":0.19393456,"width":0.054853722,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Finance Hub","depth":4,"bounds":{"left":0.5,"top":0.21548285,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Finance Hub","depth":5,"bounds":{"left":0.51329786,"top":0.22665602,"width":0.021609042,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"bounds":{"left":0.5,"top":0.2482043,"width":0.06881649,"height":0.032721467},"on_screen":true,"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.51329786,"top":0.25937748,"width":0.014960106,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - kovaliklukas@gmail.com - Gmail","depth":4,"bounds":{"left":0.5,"top":0.28092578,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - kovaliklukas@gmail.com - Gmail","depth":5,"bounds":{"left":0.51329786,"top":0.29209897,"width":0.31382978,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - kovaliklukas@gmail.com - Gmail","depth":4,"bounds":{"left":0.5,"top":0.31364724,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - kovaliklukas@gmail.com - Gmail","depth":5,"bounds":{"left":0.51329786,"top":0.32482043,"width":0.19414894,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Завеждане на щета онлайн | Euroins","depth":4,"bounds":{"left":0.5,"top":0.3463687,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Завеждане на щета онлайн | Euroins","depth":5,"bounds":{"left":0.51329786,"top":0.3575419,"width":0.0653258,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Photos - Google Photos","depth":4,"bounds":{"left":0.5,"top":0.3790902,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Photos - Google Photos","depth":5,"bounds":{"left":0.51329786,"top":0.39026338,"width":0.04138963,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"bounds":{"left":0.5,"top":0.41181165,"width":0.06881649,"height":0.032721467},"on_screen":true,"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.51329786,"top":0.42298484,"width":0.014960106,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":4,"bounds":{"left":0.5,"top":0.4445331,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":5,"bounds":{"left":0.51329786,"top":0.4557063,"width":0.15259309,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.55651593,"top":0.4517159,"width":0.007978723,"height":0.01915403},"on_screen":true,"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.5028258,"top":0.47885075,"width":0.06333112,"height":0.025538707},"on_screen":true,"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},"on_screen":true,"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},"on_screen":true,"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.5249335,"top":0.97007185,"width":0.010638298,"height":0.025538707},"on_screen":true,"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.53607047,"top":0.97007185,"width":0.010638298,"height":0.025538707},"on_screen":true,"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.5472075,"top":0.97007185,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to:","depth":9,"bounds":{"left":0.5794548,"top":0.07861133,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Sidebar","depth":10,"bounds":{"left":0.5794548,"top":0.097765364,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Sidebar","depth":11,"bounds":{"left":0.5794548,"top":0.097765364,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Top Bar","depth":10,"bounds":{"left":0.5794548,"top":0.11691939,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Top Bar","depth":11,"bounds":{"left":0.5794548,"top":0.11691939,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Main Content","depth":10,"bounds":{"left":0.5794548,"top":0.13607343,"width":0.029421542,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Main Content","depth":11,"bounds":{"left":0.5794548,"top":0.13607343,"width":0.029421542,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse sidebar [","depth":9,"bounds":{"left":0.5728058,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Collapse sidebar [","depth":11,"bounds":{"left":0.57795876,"top":0.06344773,"width":0.039727394,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Switch sites or apps","depth":10,"bounds":{"left":0.58477396,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Switch sites or apps","depth":12,"bounds":{"left":0.58992684,"top":0.06344773,"width":0.044215426,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Go to your Jira homepage","depth":9,"bounds":{"left":0.5980718,"top":0.057861134,"width":0.029421542,"height":0.025538707},"on_screen":true,"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.6961436,"top":0.06264964,"width":0.14910239,"height":0.015961692},"on_screen":true,"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":10,"bounds":{"left":0.85355717,"top":0.057861134,"width":0.030086435,"height":0.025538707},"on_screen":true,"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.86486036,"top":0.06384677,"width":0.014793883,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Rovo Ask Rovo","depth":12,"bounds":{"left":0.91206783,"top":0.057861134,"width":0.036070477,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Rovo","depth":14,"bounds":{"left":0.923371,"top":0.06384677,"width":0.020777926,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Notifications","depth":12,"bounds":{"left":0.9494681,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notifications","depth":14,"bounds":{"left":0.954621,"top":0.06344773,"width":0.027759308,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Help","depth":12,"bounds":{"left":0.96143615,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Help","depth":14,"bounds":{"left":0.9665891,"top":0.06344773,"width":0.010139627,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Settings","depth":12,"bounds":{"left":0.9734042,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Settings","depth":14,"bounds":{"left":0.97855717,"top":0.06344773,"width":0.017952127,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"lukas.kovalik@jiminny.com","depth":12,"bounds":{"left":0.98537236,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":14,"bounds":{"left":0.99052525,"top":0.06344773,"width":0.009474754,"height":0.01396648},"on_screen":true,"role_description":"text","subrole":"AXUnknown"}]...
|
-3389384359884674529
|
2761015706267011843
|
click
|
accessibility
|
NULL
|
[JY-20912] Fallback mechanism for users with activ [JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
jiminny.atlassian.net
DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started · AFFiNE
Getting Started · AFFiNE
Screenpipe — Archive
Screenpipe — Archive
Download screenpipe — get started in minutes
Download screenpipe — get started in minutes
Self-Hosted Software and Apps
Self-Hosted Software and Apps
Finance Hub
Finance Hub
New Tab
New Tab
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
Завеждане на щета онлайн | Euroins
Завеждане на щета онлайн | Euroins
Photos - Google Photos
Photos - Google Photos
New Tab
New Tab
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to:
Sidebar
Sidebar
Top Bar
Top Bar
Main Content
Main Content
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[EMAIL]...
|
49345
|
NULL
|
NULL
|
NULL
|
|
49348
|
1760
|
12
|
2026-05-18T06:36:50.750433+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086210750_m1.jpg...
|
Firefox
|
Finance Hub — Personal
|
1
|
finance-hub.lakylak.xyz
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started · AFFiNE
Getting Started · AFFiNE
Screenpipe — Archive
Screenpipe — Archive
Download screenpipe — get started in minutes
Download screenpipe — get started in minutes
Self-Hosted Software and Apps
Self-Hosted Software and Apps
Finance Hub
Finance Hub
Close tab
New Tab
New Tab
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
Завеждане на щета онлайн | Euroins
Завеждане на щета онлайн | Euroins
Photos - Google Photos
Photos - Google Photos
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Finance Hub
Finance Hub
78
transaction
s
Payments
Payments
Upload CSV
Upload CSV
Refresh
Display settings
Sign out
Filters 2
Filters
2
Clear
Clear
Search
Recipient, description…
Source
Status
Type
Tag
From date
01
/
05
/
2026
Calendar
To date
18
/
05
/
2026
Calendar
78
transaction
s
(balance alerts hidden)
·
Total:
2,246.65
EUR
incl. BGN→EUR
·
2026-05-01 → 2026-05-18
DATE
RECIPIENT
AMOUNT
TAGS
18 May 2026, 08:06
hostinger
Raw data
23.03 EUR
Subscription
Send
Send
Skip
Skip
Delete
17 May 2026, 16:34
BILLA 101 18, SOFIA, BG
Raw data
3.65 EUR
Groceries
Send
Send
Skip
Skip
Delete
16 May 2026, 13:38
VIVACOM, SOFIA, BG
Raw data
36.91 EUR
Send
Send
Skip
Skip
Delete
16 May 2026, 10:59
PARKING, SOFIA, BG
Raw data
6.00 EUR
Send
Send
Skip
Skip
Delete
15 May 2026, 17:52
VIMARD EOOD, SOFIA, BG
Raw data
7.98 EUR
Groceries
Send
Send
Skip
Skip
Delete
15 May 2026, 08:53
LIDL BALGARIYA EOOD, SOFIYA, BGR
Raw data
0.01 EUR
Groceries
Send
Send
Skip
Skip
Delete
15 May 2026, 08:48
LIDL BALGARIYA EOOD, SOFIYA, BGR
Raw data
87.51 EUR
Groceries
Send
Send
Skip
Skip
Delete
14 May 2026, 16:10
Boosteroid, Bucharest, RO
Raw data
9.89 EUR
Subscription
Send
Send
Skip
Skip
Delete
14 May 2026, 15:19
CLAUDE
Raw data
21.60 EUR
Subscription
Send
Send
Skip
Skip
Delete
14 May 2026, 12:08
FANTASTICO 43, SOFIA, BG
Raw data
13.36 EUR
Groceries
Send
Send
Skip
Skip
Delete
13 May 2026, 08:46
CBA EKO MARKET, SOFIA, BG
Raw data
3.50 EUR
Groceries
Send
Send
Skip
Skip
Delete
12 May 2026, 08:45
BGR SOFIA CBA EKO MARKET
Raw data
7.20 EUR
Groceries
Send
Send
Skip
Skip
Delete
10 May 2026, 21:57
IRL 08000480408 APPLE COM BILL
Raw data
3.99 EUR
Send
Send
Skip
Skip
Delete
10 May 2026, 17:16
CBA ECO MARKET, SOFIA, BG
Raw data
5.38 EUR
Groceries
Send
Send
Skip
Skip
Delete
10 May 2026, 04:26
CityGate Sofia Transit, SOFIA, BGR
Raw data
1.60 EUR
Transport
Send...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"DXP4800PLUS-B5F8","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Getting Started · AFFiNE","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Getting Started · AFFiNE","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe — Archive","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe — Archive","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Download screenpipe — get started in minutes","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Download screenpipe — get started in minutes","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Self-Hosted Software and Apps","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Self-Hosted Software and Apps","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Finance Hub","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Finance Hub","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"New Tab","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - kovaliklukas@gmail.com - Gmail","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - kovaliklukas@gmail.com - Gmail","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - kovaliklukas@gmail.com - Gmail","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - kovaliklukas@gmail.com - Gmail","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Завеждане на щета онлайн | Euroins","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Завеждане на щета онлайн | Euroins","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Photos - Google Photos","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Photos - Google Photos","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"on_screen":true,"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.48576388,"top":0.0,"width":0.022222223,"height":0.035555556},"on_screen":true,"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.5086806,"top":0.0,"width":0.022222223,"height":0.035555556},"on_screen":true,"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.53194445,"top":0.0,"width":0.022222223,"height":0.035555556},"on_screen":true,"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.5552083,"top":0.0,"width":0.022222223,"height":0.035555556},"on_screen":true,"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.5784722,"top":0.0,"width":0.022222223,"height":0.035555556},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Finance Hub","depth":8,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Finance Hub","depth":9,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"78","depth":9,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"transaction","depth":9,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"s","depth":9,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Payments","depth":8,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Payments","depth":10,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Upload CSV","depth":8,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Upload CSV","depth":10,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Refresh","depth":8,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Display settings","depth":8,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Sign out","depth":8,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Filters 2","depth":9,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Filters","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":10,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Clear","depth":9,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Clear","depth":10,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Search","depth":10,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Recipient, description…","depth":10,"on_screen":true,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Source","depth":10,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Status","depth":10,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Type","depth":10,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Tag","depth":10,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"From date","depth":10,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"01","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"05","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"To date","depth":10,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"05","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"78","depth":9,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"transaction","depth":9,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"s","depth":9,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(balance alerts hidden)","depth":9,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"·","depth":9,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Total:","depth":9,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2,246.65","depth":9,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"EUR","depth":9,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"incl. BGN→EUR","depth":10,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"·","depth":9,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026-05-01 → 2026-05-18","depth":9,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"DATE","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"RECIPIENT","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AMOUNT","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"TAGS","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18 May 2026, 08:06","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"hostinger","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"23.03 EUR","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Subscription","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"17 May 2026, 16:34","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"BILLA 101 18, SOFIA, BG","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"3.65 EUR","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Groceries","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"16 May 2026, 13:38","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"VIVACOM, SOFIA, BG","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"36.91 EUR","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"16 May 2026, 10:59","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"PARKING, SOFIA, BG","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"6.00 EUR","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"15 May 2026, 17:52","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"VIMARD EOOD, SOFIA, BG","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"7.98 EUR","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Groceries","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"15 May 2026, 08:53","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"LIDL BALGARIYA EOOD, SOFIYA, BGR","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"0.01 EUR","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Groceries","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"15 May 2026, 08:48","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"LIDL BALGARIYA EOOD, SOFIYA, BGR","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"87.51 EUR","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Groceries","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"14 May 2026, 16:10","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Boosteroid, Bucharest, RO","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"9.89 EUR","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Subscription","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"14 May 2026, 15:19","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CLAUDE","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"21.60 EUR","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Subscription","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"14 May 2026, 12:08","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"FANTASTICO 43, SOFIA, BG","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"13.36 EUR","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Groceries","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"13 May 2026, 08:46","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CBA EKO MARKET, SOFIA, BG","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"3.50 EUR","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Groceries","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"12 May 2026, 08:45","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"BGR SOFIA CBA EKO MARKET","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"7.20 EUR","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Groceries","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"10 May 2026, 21:57","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"IRL 08000480408 APPLE COM BILL","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"3.99 EUR","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"10 May 2026, 17:16","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CBA ECO MARKET, SOFIA, BG","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"5.38 EUR","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Groceries","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"10 May 2026, 04:26","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CityGate Sofia Transit, SOFIA, BGR","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"1.60 EUR","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Transport","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false}]...
|
8815173589349407158
|
-7050336492170057815
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started · AFFiNE
Getting Started · AFFiNE
Screenpipe — Archive
Screenpipe — Archive
Download screenpipe — get started in minutes
Download screenpipe — get started in minutes
Self-Hosted Software and Apps
Self-Hosted Software and Apps
Finance Hub
Finance Hub
Close tab
New Tab
New Tab
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
Завеждане на щета онлайн | Euroins
Завеждане на щета онлайн | Euroins
Photos - Google Photos
Photos - Google Photos
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Finance Hub
Finance Hub
78
transaction
s
Payments
Payments
Upload CSV
Upload CSV
Refresh
Display settings
Sign out
Filters 2
Filters
2
Clear
Clear
Search
Recipient, description…
Source
Status
Type
Tag
From date
01
/
05
/
2026
Calendar
To date
18
/
05
/
2026
Calendar
78
transaction
s
(balance alerts hidden)
·
Total:
2,246.65
EUR
incl. BGN→EUR
·
2026-05-01 → 2026-05-18
DATE
RECIPIENT
AMOUNT
TAGS
18 May 2026, 08:06
hostinger
Raw data
23.03 EUR
Subscription
Send
Send
Skip
Skip
Delete
17 May 2026, 16:34
BILLA 101 18, SOFIA, BG
Raw data
3.65 EUR
Groceries
Send
Send
Skip
Skip
Delete
16 May 2026, 13:38
VIVACOM, SOFIA, BG
Raw data
36.91 EUR
Send
Send
Skip
Skip
Delete
16 May 2026, 10:59
PARKING, SOFIA, BG
Raw data
6.00 EUR
Send
Send
Skip
Skip
Delete
15 May 2026, 17:52
VIMARD EOOD, SOFIA, BG
Raw data
7.98 EUR
Groceries
Send
Send
Skip
Skip
Delete
15 May 2026, 08:53
LIDL BALGARIYA EOOD, SOFIYA, BGR
Raw data
0.01 EUR
Groceries
Send
Send
Skip
Skip
Delete
15 May 2026, 08:48
LIDL BALGARIYA EOOD, SOFIYA, BGR
Raw data
87.51 EUR
Groceries
Send
Send
Skip
Skip
Delete
14 May 2026, 16:10
Boosteroid, Bucharest, RO
Raw data
9.89 EUR
Subscription
Send
Send
Skip
Skip
Delete
14 May 2026, 15:19
CLAUDE
Raw data
21.60 EUR
Subscription
Send
Send
Skip
Skip
Delete
14 May 2026, 12:08
FANTASTICO 43, SOFIA, BG
Raw data
13.36 EUR
Groceries
Send
Send
Skip
Skip
Delete
13 May 2026, 08:46
CBA EKO MARKET, SOFIA, BG
Raw data
3.50 EUR
Groceries
Send
Send
Skip
Skip
Delete
12 May 2026, 08:45
BGR SOFIA CBA EKO MARKET
Raw data
7.20 EUR
Groceries
Send
Send
Skip
Skip
Delete
10 May 2026, 21:57
IRL 08000480408 APPLE COM BILL
Raw data
3.99 EUR
Send
Send
Skip
Skip
Delete
10 May 2026, 17:16
CBA ECO MARKET, SOFIA, BG
Raw data
5.38 EUR
Groceries
Send
Send
Skip
Skip
Delete
10 May 2026, 04:26
CityGate Sofia Transit, SOFIA, BGR
Raw data
1.60 EUR
Transport
Send...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49349
|
1761
|
15
|
2026-05-18T06:36:50.754588+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086210754_m2.jpg...
|
Firefox
|
Finance Hub — Personal
|
1
|
finance-hub.lakylak.xyz
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started · AFFiNE
Getting Started · AFFiNE
Screenpipe — Archive
Screenpipe — Archive
Download screenpipe — get started in minutes
Download screenpipe — get started in minutes
Self-Hosted Software and Apps
Self-Hosted Software and Apps
Finance Hub
Finance Hub
Close tab
New Tab
New Tab
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
Завеждане на щета онлайн | Euroins
Завеждане на щета онлайн | Euroins
Photos - Google Photos
Photos - Google Photos
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Finance Hub
Finance Hub
78
transaction
s
Payments
Payments
Upload CSV
Upload CSV
Refresh
Display settings
Sign out
Filters 2
Filters
2
Clear
Clear
Search
Recipient, description…
Source
Status
Type
Tag
From date
01
/
05
/
2026
Calendar
To date
18
/
05
/
2026
Calendar
78
transaction
s
(balance alerts hidden)
·
Total:
2,246.65
EUR
incl. BGN→EUR
·
2026-05-01 → 2026-05-18
DATE
RECIPIENT
AMOUNT
TAGS
18 May 2026, 08:06
hostinger
Raw data
23.03 EUR
Subscription
Send
Send
Skip
Skip
Delete
17 May 2026, 16:34
BILLA 101 18, SOFIA, BG
Raw data
3.65 EUR
Groceries
Send
Send
Skip
Skip
Delete
16 May 2026, 13:38
VIVACOM, SOFIA, BG
Raw data
36.91 EUR
Send
Send
Skip
Skip
Delete
16 May 2026, 10:59
PARKING, SOFIA, BG
Raw data
6.00 EUR
Send
Send
Skip
Skip
Delete
15 May 2026, 17:52
VIMARD EOOD, SOFIA, BG
Raw data
7.98 EUR
Groceries
Send
Send
Skip
Skip
Delete
15 May 2026, 08:53
LIDL BALGARIYA EOOD, SOFIYA, BGR
Raw data
0.01 EUR
Groceries
Send
Send
Skip
Skip
Delete
15 May 2026, 08:48
LIDL BALGARIYA EOOD, SOFIYA, BGR
Raw data
87.51 EUR
Groceries
Send
Send
Skip
Skip
Delete
14 May 2026, 16:10
Boosteroid, Bucharest, RO
Raw data
9.89 EUR
Subscription
Send
Send
Skip
Skip
Delete
14 May 2026, 15:19
CLAUDE
Raw data
21.60 EUR
Subscription
Send
Send
Skip
Skip
Delete
14 May 2026, 12:08
FANTASTICO 43, SOFIA, BG
Raw data
13.36 EUR
Groceries
Send
Send
Skip
Skip
Delete
13 May 2026, 08:46
CBA EKO MARKET, SOFIA, BG
Raw data
3.50 EUR
Groceries
Send
Send
Skip
Skip
Delete
12 May 2026, 08:45
BGR SOFIA CBA EKO MARKET
Raw data
7.20 EUR
Groceries
Send
Send
Skip
Skip
Delete
10 May 2026, 21:57
IRL 08000480408 APPLE COM BILL
Raw data
3.99 EUR
Send
Send
Skip
Skip
Delete
10 May 2026, 17:16
CBA ECO MARKET, SOFIA, BG
Raw data
5.38 EUR
Groceries
Send
Send
Skip
Skip
Delete
10 May 2026, 04:26
CityGate Sofia Transit, SOFIA, BGR
Raw data
1.60 EUR
Transport
Send
Send
Skip
Skip
Delete
09 May 2026, 15:45
BGR SOFIA CBA ECO MARKET
Raw data
8.87 EUR
Groceries
Send
Send
Skip
Skip
Delete
09 May 2026, 15:02
VIADENTAL, SOFIA, BG
Raw data
124.00 EUR
Dentist
Medical
Send
Send
Skip
Skip
Delete
09 May 2026, 14:54
VIADENTAL, SOFIA, BG
Raw data
117.00 EUR
Dentist
Medical
Send
Send
Skip
Skip
Delete
08 May 2026, 19:32
BGR SOFIYA LIDL BALGARIYA EOOD UL TODOR
Raw data
67.81 EUR
Groceries
Send
Send
Skip
Skip
Delete
08 May 2026, 18:45
BGR Sofia Sinsay
Raw data
5.02 EUR
Send
Send
Skip
Skip
Delete
08 May 2026, 18:35
TEMA RETAIL BG EOOD, SOFIA, BG
Raw data
15.46 EUR
Send
Send
Skip
Skip
Delete
08 May 2026, 18:07
DM BULGARIA EOOD, SOFIYA, BG
Raw data
9.04 EUR
Send
Send
Skip
Skip
Delete
08 May 2026, 10:00
DSK ATM, SOFIA, BG
Raw data
200.00 EUR
Send
Send
Skip
Skip
Delete
07 May 2026, 09:02
BGR SOFIA CBA EKO MARKET
Raw data
5.51 EUR
Groceries
Send
Send
Skip
Skip
Delete...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"bounds":{"left":0.5,"top":0.0518755,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"DXP4800PLUS-B5F8","depth":5,"bounds":{"left":0.51329786,"top":0.06304868,"width":0.036901597,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Getting Started · AFFiNE","depth":4,"bounds":{"left":0.5,"top":0.08459697,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Getting Started · AFFiNE","depth":5,"bounds":{"left":0.51329786,"top":0.09577015,"width":0.04255319,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe — Archive","depth":4,"bounds":{"left":0.5,"top":0.11731844,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe — Archive","depth":5,"bounds":{"left":0.51329786,"top":0.12849163,"width":0.037898935,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Download screenpipe — get started in minutes","depth":4,"bounds":{"left":0.5,"top":0.15003991,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Download screenpipe — get started in minutes","depth":5,"bounds":{"left":0.51329786,"top":0.16121309,"width":0.0809508,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Self-Hosted Software and Apps","depth":4,"bounds":{"left":0.5,"top":0.18276137,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Self-Hosted Software and Apps","depth":5,"bounds":{"left":0.51329786,"top":0.19393456,"width":0.054853722,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Finance Hub","depth":4,"bounds":{"left":0.5,"top":0.21548285,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Finance Hub","depth":5,"bounds":{"left":0.51329786,"top":0.22665602,"width":0.021609042,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.55651593,"top":0.22266561,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"New Tab","depth":4,"bounds":{"left":0.5,"top":0.2482043,"width":0.06881649,"height":0.032721467},"on_screen":true,"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.51329786,"top":0.25937748,"width":0.014960106,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - kovaliklukas@gmail.com - Gmail","depth":4,"bounds":{"left":0.5,"top":0.28092578,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - kovaliklukas@gmail.com - Gmail","depth":5,"bounds":{"left":0.51329786,"top":0.29209897,"width":0.31382978,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - kovaliklukas@gmail.com - Gmail","depth":4,"bounds":{"left":0.5,"top":0.31364724,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - kovaliklukas@gmail.com - Gmail","depth":5,"bounds":{"left":0.51329786,"top":0.32482043,"width":0.19414894,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Завеждане на щета онлайн | Euroins","depth":4,"bounds":{"left":0.5,"top":0.3463687,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Завеждане на щета онлайн | Euroins","depth":5,"bounds":{"left":0.51329786,"top":0.3575419,"width":0.0653258,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Photos - Google Photos","depth":4,"bounds":{"left":0.5,"top":0.3790902,"width":0.06881649,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Photos - Google Photos","depth":5,"bounds":{"left":0.51329786,"top":0.39026338,"width":0.04138963,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"bounds":{"left":0.5,"top":0.41181165,"width":0.06881649,"height":0.032721467},"on_screen":true,"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.51329786,"top":0.42298484,"width":0.014960106,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"bounds":{"left":0.5028258,"top":0.4461293,"width":0.06333112,"height":0.025538707},"on_screen":true,"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},"on_screen":true,"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},"on_screen":true,"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.5249335,"top":0.97007185,"width":0.010638298,"height":0.025538707},"on_screen":true,"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.53607047,"top":0.97007185,"width":0.010638298,"height":0.025538707},"on_screen":true,"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.5472075,"top":0.97007185,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Finance Hub","depth":8,"bounds":{"left":0.5962433,"top":0.0622506,"width":0.032081116,"height":0.015961692},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Finance Hub","depth":9,"bounds":{"left":0.5962433,"top":0.06264964,"width":0.032081116,"height":0.015163607},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"78","depth":9,"bounds":{"left":0.5962433,"top":0.07861133,"width":0.0048204786,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"transaction","depth":9,"bounds":{"left":0.60106385,"top":0.07861133,"width":0.022273935,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"s","depth":9,"bounds":{"left":0.62333775,"top":0.07861133,"width":0.0019946808,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Payments","depth":8,"bounds":{"left":0.7506649,"top":0.06384677,"width":0.036070477,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Payments","depth":10,"bounds":{"left":0.7613032,"top":0.0698324,"width":0.02144282,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Upload CSV","depth":8,"bounds":{"left":0.78740025,"top":0.06384677,"width":0.04105718,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Upload CSV","depth":10,"bounds":{"left":0.79803854,"top":0.0698324,"width":0.02642952,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Refresh","depth":8,"bounds":{"left":0.9506317,"top":0.06384677,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Display settings","depth":8,"bounds":{"left":0.96326464,"top":0.06384677,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Sign out","depth":8,"bounds":{"left":0.9758976,"top":0.06384677,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Filters 2","depth":9,"bounds":{"left":0.58793217,"top":0.1300878,"width":0.3698471,"height":0.015961692},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Filters","depth":11,"bounds":{"left":0.5959109,"top":0.13128492,"width":0.013630319,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":10,"bounds":{"left":0.61419547,"top":0.132083,"width":0.002493351,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Clear","depth":9,"bounds":{"left":0.96043885,"top":0.12849163,"width":0.02044548,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Clear","depth":10,"bounds":{"left":0.9684175,"top":0.132083,"width":0.009807181,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Search","depth":10,"bounds":{"left":0.58793217,"top":0.16799681,"width":0.013297873,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Recipient, description…","depth":10,"bounds":{"left":0.58793217,"top":0.18355946,"width":0.3929521,"height":0.030327214},"on_screen":true,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Source","depth":10,"bounds":{"left":0.58793217,"top":0.22386272,"width":0.013464096,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Status","depth":10,"bounds":{"left":0.6871675,"top":0.22386272,"width":0.012466756,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Type","depth":10,"bounds":{"left":0.78640294,"top":0.22386272,"width":0.009474734,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Tag","depth":10,"bounds":{"left":0.8856383,"top":0.22386272,"width":0.006981383,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"From date","depth":10,"bounds":{"left":0.58793217,"top":0.2773344,"width":0.019448139,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"01","depth":11,"bounds":{"left":0.59325135,"top":0.30127692,"width":0.004986702,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"bounds":{"left":0.59923536,"top":0.30127692,"width":0.0013297872,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"05","depth":11,"bounds":{"left":0.6015625,"top":0.30127692,"width":0.005817819,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"bounds":{"left":0.60837764,"top":0.30127692,"width":0.0013297872,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":11,"bounds":{"left":0.6107048,"top":0.30127692,"width":0.011303191,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":10,"bounds":{"left":0.7712766,"top":0.30207503,"width":0.006150266,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"To date","depth":10,"bounds":{"left":0.78640294,"top":0.2773344,"width":0.014295213,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18","depth":11,"bounds":{"left":0.79172206,"top":0.30127692,"width":0.004986702,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"bounds":{"left":0.7977061,"top":0.30127692,"width":0.0014960107,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"05","depth":11,"bounds":{"left":0.80019945,"top":0.30127692,"width":0.0056515955,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"bounds":{"left":0.8068484,"top":0.30127692,"width":0.0013297872,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":11,"bounds":{"left":0.80917555,"top":0.30127692,"width":0.011303191,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":10,"bounds":{"left":0.96974736,"top":0.30207503,"width":0.006150266,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"78","depth":9,"bounds":{"left":0.58793217,"top":0.36272946,"width":0.005817819,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"transaction","depth":9,"bounds":{"left":0.59375,"top":0.36272946,"width":0.02543218,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"s","depth":9,"bounds":{"left":0.61918217,"top":0.36272946,"width":0.0023271276,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(balance alerts hidden)","depth":9,"bounds":{"left":0.6228391,"top":0.3643256,"width":0.04338431,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"·","depth":9,"bounds":{"left":0.6715425,"top":0.36272946,"width":0.0013297872,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Total:","depth":9,"bounds":{"left":0.6781915,"top":0.36272946,"width":0.013131649,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2,246.65","depth":9,"bounds":{"left":0.69132316,"top":0.36272946,"width":0.020944148,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"EUR","depth":9,"bounds":{"left":0.71359706,"top":0.3643256,"width":0.007978723,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"incl. BGN→EUR","depth":10,"bounds":{"left":0.7229056,"top":0.3643256,"width":0.028922873,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"·","depth":9,"bounds":{"left":0.7571476,"top":0.36272946,"width":0.0013297872,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026-05-01 → 2026-05-18","depth":9,"bounds":{"left":0.76379657,"top":0.36352754,"width":0.051861703,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"DATE","depth":13,"bounds":{"left":0.58793217,"top":0.4066241,"width":0.011136968,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"RECIPIENT","depth":13,"bounds":{"left":0.6537567,"top":0.4066241,"width":0.022938829,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AMOUNT","depth":13,"bounds":{"left":0.78789896,"top":0.4066241,"width":0.019281914,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"TAGS","depth":13,"bounds":{"left":0.83211434,"top":0.4066241,"width":0.011469414,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18 May 2026, 08:06","depth":13,"bounds":{"left":0.58793217,"top":0.43615323,"width":0.044215426,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"hostinger","depth":14,"bounds":{"left":0.6537567,"top":0.43615323,"width":0.020279255,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"bounds":{"left":0.6753657,"top":0.43735036,"width":0.004654255,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"23.03 EUR","depth":14,"bounds":{"left":0.78789896,"top":0.43615323,"width":0.024102394,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Subscription","depth":13,"bounds":{"left":0.83410907,"top":0.4369513,"width":0.024268618,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"bounds":{"left":0.9119016,"top":0.43335995,"width":0.021775266,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"bounds":{"left":0.9205452,"top":0.4369513,"width":0.009807181,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"bounds":{"left":0.9350067,"top":0.43256184,"width":0.021110373,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"bounds":{"left":0.9439827,"top":0.4369513,"width":0.008477394,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"bounds":{"left":0.9574468,"top":0.43256184,"width":0.008643617,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"17 May 2026, 16:34","depth":13,"bounds":{"left":0.58793217,"top":0.47047088,"width":0.044215426,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"BILLA 101 18, SOFIA, BG","depth":14,"bounds":{"left":0.6537567,"top":0.47047088,"width":0.052027926,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"bounds":{"left":0.70711434,"top":0.471668,"width":0.004654255,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"3.65 EUR","depth":14,"bounds":{"left":0.78789896,"top":0.47047088,"width":0.020944148,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Groceries","depth":13,"bounds":{"left":0.83410907,"top":0.47126895,"width":0.01861702,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"bounds":{"left":0.9119016,"top":0.46767756,"width":0.021775266,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"bounds":{"left":0.9205452,"top":0.47126895,"width":0.009807181,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"bounds":{"left":0.9350067,"top":0.4668795,"width":0.021110373,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"bounds":{"left":0.9439827,"top":0.47126895,"width":0.008477394,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"bounds":{"left":0.9574468,"top":0.4668795,"width":0.008643617,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"16 May 2026, 13:38","depth":13,"bounds":{"left":0.58793217,"top":0.5047885,"width":0.044215426,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"VIVACOM, SOFIA, BG","depth":14,"bounds":{"left":0.6537567,"top":0.5047885,"width":0.045877658,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"bounds":{"left":0.7009641,"top":0.5059856,"width":0.004654255,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"36.91 EUR","depth":14,"bounds":{"left":0.78789896,"top":0.5047885,"width":0.024102394,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"bounds":{"left":0.9119016,"top":0.5019952,"width":0.021775266,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"bounds":{"left":0.9205452,"top":0.50558656,"width":0.009807181,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"bounds":{"left":0.9350067,"top":0.5011971,"width":0.021110373,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"bounds":{"left":0.9439827,"top":0.50558656,"width":0.008477394,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"bounds":{"left":0.9574468,"top":0.5011971,"width":0.008643617,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"16 May 2026, 10:59","depth":13,"bounds":{"left":0.58793217,"top":0.53910613,"width":0.044215426,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"PARKING, SOFIA, BG","depth":14,"bounds":{"left":0.6537567,"top":0.53910613,"width":0.04488032,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"bounds":{"left":0.6999667,"top":0.5403033,"width":0.004654255,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"6.00 EUR","depth":14,"bounds":{"left":0.78789896,"top":0.53910613,"width":0.020944148,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"bounds":{"left":0.9119016,"top":0.5363129,"width":0.021775266,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"bounds":{"left":0.9205452,"top":0.53990424,"width":0.009807181,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"bounds":{"left":0.9350067,"top":0.5355148,"width":0.021110373,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"bounds":{"left":0.9439827,"top":0.53990424,"width":0.008477394,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"bounds":{"left":0.9574468,"top":0.5355148,"width":0.008643617,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"15 May 2026, 17:52","depth":13,"bounds":{"left":0.58793217,"top":0.5734238,"width":0.044215426,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"VIMARD EOOD, SOFIA, BG","depth":14,"bounds":{"left":0.6537567,"top":0.5734238,"width":0.05701463,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"bounds":{"left":0.71210104,"top":0.5746209,"width":0.004654255,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"7.98 EUR","depth":14,"bounds":{"left":0.78789896,"top":0.5734238,"width":0.020944148,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Groceries","depth":13,"bounds":{"left":0.83410907,"top":0.57422185,"width":0.01861702,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"bounds":{"left":0.9119016,"top":0.5706305,"width":0.021775266,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"bounds":{"left":0.9205452,"top":0.57422185,"width":0.009807181,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"bounds":{"left":0.9350067,"top":0.5698324,"width":0.021110373,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"bounds":{"left":0.9439827,"top":0.57422185,"width":0.008477394,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"bounds":{"left":0.9574468,"top":0.5698324,"width":0.008643617,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"15 May 2026, 08:53","depth":13,"bounds":{"left":0.58793217,"top":0.6077414,"width":0.044215426,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"LIDL BALGARIYA EOOD, SOFIYA, BGR","depth":14,"bounds":{"left":0.6537567,"top":0.6077414,"width":0.080784574,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"bounds":{"left":0.735871,"top":0.6089386,"width":0.004654255,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"0.01 EUR","depth":14,"bounds":{"left":0.78789896,"top":0.6077414,"width":0.020944148,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Groceries","depth":13,"bounds":{"left":0.83410907,"top":0.6085395,"width":0.01861702,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"bounds":{"left":0.9119016,"top":0.6049481,"width":0.021775266,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"bounds":{"left":0.9205452,"top":0.6085395,"width":0.009807181,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"bounds":{"left":0.9350067,"top":0.60415006,"width":0.021110373,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"bounds":{"left":0.9439827,"top":0.6085395,"width":0.008477394,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"bounds":{"left":0.9574468,"top":0.60415006,"width":0.008643617,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"15 May 2026, 08:48","depth":13,"bounds":{"left":0.58793217,"top":0.6420591,"width":0.044215426,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"LIDL BALGARIYA EOOD, SOFIYA, BGR","depth":14,"bounds":{"left":0.6537567,"top":0.6420591,"width":0.080784574,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"bounds":{"left":0.735871,"top":0.6432562,"width":0.004654255,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"87.51 EUR","depth":14,"bounds":{"left":0.78789896,"top":0.6420591,"width":0.024102394,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Groceries","depth":13,"bounds":{"left":0.83410907,"top":0.64285713,"width":0.01861702,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"bounds":{"left":0.9119016,"top":0.6392658,"width":0.021775266,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"bounds":{"left":0.9205452,"top":0.64285713,"width":0.009807181,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"bounds":{"left":0.9350067,"top":0.63846767,"width":0.021110373,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"bounds":{"left":0.9439827,"top":0.64285713,"width":0.008477394,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"bounds":{"left":0.9574468,"top":0.63846767,"width":0.008643617,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"14 May 2026, 16:10","depth":13,"bounds":{"left":0.58793217,"top":0.6763767,"width":0.044215426,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Boosteroid, Bucharest, RO","depth":14,"bounds":{"left":0.6537567,"top":0.6763767,"width":0.05668218,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"bounds":{"left":0.7117686,"top":0.6775738,"width":0.004654255,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"9.89 EUR","depth":14,"bounds":{"left":0.78789896,"top":0.6763767,"width":0.020944148,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Subscription","depth":13,"bounds":{"left":0.83410907,"top":0.6771748,"width":0.024268618,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"bounds":{"left":0.9119016,"top":0.6735834,"width":0.021775266,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"bounds":{"left":0.9205452,"top":0.6771748,"width":0.009807181,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"bounds":{"left":0.9350067,"top":0.67278534,"width":0.021110373,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"bounds":{"left":0.9439827,"top":0.6771748,"width":0.008477394,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"bounds":{"left":0.9574468,"top":0.67278534,"width":0.008643617,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"14 May 2026, 15:19","depth":13,"bounds":{"left":0.58793217,"top":0.7106943,"width":0.044215426,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CLAUDE","depth":14,"bounds":{"left":0.6537567,"top":0.7106943,"width":0.018284574,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"bounds":{"left":0.673371,"top":0.7118915,"width":0.004654255,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"21.60 EUR","depth":14,"bounds":{"left":0.78789896,"top":0.7106943,"width":0.024102394,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Subscription","depth":13,"bounds":{"left":0.83410907,"top":0.7114924,"width":0.024268618,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"bounds":{"left":0.9119016,"top":0.70790106,"width":0.021775266,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"bounds":{"left":0.9205452,"top":0.7114924,"width":0.009807181,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"bounds":{"left":0.9350067,"top":0.70710295,"width":0.021110373,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"bounds":{"left":0.9439827,"top":0.7114924,"width":0.008477394,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"bounds":{"left":0.9574468,"top":0.70710295,"width":0.008643617,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"14 May 2026, 12:08","depth":13,"bounds":{"left":0.58793217,"top":0.745012,"width":0.044215426,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"FANTASTICO 43, SOFIA, BG","depth":14,"bounds":{"left":0.6537567,"top":0.745012,"width":0.060339097,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"bounds":{"left":0.71542555,"top":0.7462091,"width":0.004654255,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"13.36 EUR","depth":14,"bounds":{"left":0.78789896,"top":0.745012,"width":0.024102394,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Groceries","depth":13,"bounds":{"left":0.83410907,"top":0.74581003,"width":0.01861702,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"bounds":{"left":0.9119016,"top":0.7422187,"width":0.021775266,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"bounds":{"left":0.9205452,"top":0.74581003,"width":0.009807181,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"bounds":{"left":0.9350067,"top":0.74142057,"width":0.021110373,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"bounds":{"left":0.9439827,"top":0.74581003,"width":0.008477394,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"bounds":{"left":0.9574468,"top":0.74142057,"width":0.008643617,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"13 May 2026, 08:46","depth":13,"bounds":{"left":0.58793217,"top":0.7793296,"width":0.044215426,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CBA EKO MARKET, SOFIA, BG","depth":14,"bounds":{"left":0.6537567,"top":0.7793296,"width":0.064494684,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"bounds":{"left":0.7195811,"top":0.78052676,"width":0.004654255,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"3.50 EUR","depth":14,"bounds":{"left":0.78789896,"top":0.7793296,"width":0.020944148,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Groceries","depth":13,"bounds":{"left":0.83410907,"top":0.7801277,"width":0.01861702,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"bounds":{"left":0.9119016,"top":0.7765363,"width":0.021775266,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"bounds":{"left":0.9205452,"top":0.7801277,"width":0.009807181,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"bounds":{"left":0.9350067,"top":0.77573824,"width":0.021110373,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"bounds":{"left":0.9439827,"top":0.7801277,"width":0.008477394,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"bounds":{"left":0.9574468,"top":0.77573824,"width":0.008643617,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"12 May 2026, 08:45","depth":13,"bounds":{"left":0.58793217,"top":0.8136473,"width":0.044215426,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"BGR SOFIA CBA EKO MARKET","depth":14,"bounds":{"left":0.6537567,"top":0.8136473,"width":0.065159574,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"bounds":{"left":0.720246,"top":0.81484437,"width":0.004654255,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"7.20 EUR","depth":14,"bounds":{"left":0.78789896,"top":0.8136473,"width":0.020944148,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Groceries","depth":13,"bounds":{"left":0.83410907,"top":0.8144453,"width":0.01861702,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"bounds":{"left":0.9119016,"top":0.81085396,"width":0.021775266,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"bounds":{"left":0.9205452,"top":0.8144453,"width":0.009807181,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"bounds":{"left":0.9350067,"top":0.81005585,"width":0.021110373,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"bounds":{"left":0.9439827,"top":0.8144453,"width":0.008477394,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"bounds":{"left":0.9574468,"top":0.81005585,"width":0.008643617,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"10 May 2026, 21:57","depth":13,"bounds":{"left":0.58793217,"top":0.8479649,"width":0.044215426,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"IRL 08000480408 APPLE COM BILL","depth":14,"bounds":{"left":0.6537567,"top":0.8479649,"width":0.07829122,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"bounds":{"left":0.73337764,"top":0.849162,"width":0.004654255,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"3.99 EUR","depth":14,"bounds":{"left":0.78789896,"top":0.8479649,"width":0.020944148,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"bounds":{"left":0.9119016,"top":0.8451716,"width":0.021775266,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"bounds":{"left":0.9205452,"top":0.848763,"width":0.009807181,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"bounds":{"left":0.9350067,"top":0.8443735,"width":0.021110373,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"bounds":{"left":0.9439827,"top":0.848763,"width":0.008477394,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"bounds":{"left":0.9574468,"top":0.8443735,"width":0.008643617,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"10 May 2026, 17:16","depth":13,"bounds":{"left":0.58793217,"top":0.8822825,"width":0.044215426,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CBA ECO MARKET, SOFIA, BG","depth":14,"bounds":{"left":0.6537567,"top":0.8822825,"width":0.06482713,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"bounds":{"left":0.71991354,"top":0.88347965,"width":0.004654255,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"5.38 EUR","depth":14,"bounds":{"left":0.78789896,"top":0.8822825,"width":0.020944148,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Groceries","depth":13,"bounds":{"left":0.83410907,"top":0.8830806,"width":0.01861702,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"bounds":{"left":0.9119016,"top":0.87948924,"width":0.021775266,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"bounds":{"left":0.9205452,"top":0.8830806,"width":0.009807181,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"bounds":{"left":0.9350067,"top":0.87869114,"width":0.021110373,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"bounds":{"left":0.9439827,"top":0.8830806,"width":0.008477394,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"bounds":{"left":0.9574468,"top":0.87869114,"width":0.008643617,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"10 May 2026, 04:26","depth":13,"bounds":{"left":0.58793217,"top":0.91660017,"width":0.044215426,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CityGate Sofia Transit, SOFIA, BGR","depth":14,"bounds":{"left":0.6537567,"top":0.91660017,"width":0.074634306,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"bounds":{"left":0.7297208,"top":0.91779727,"width":0.004654255,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"1.60 EUR","depth":14,"bounds":{"left":0.78789896,"top":0.91660017,"width":0.020944148,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Transport","depth":13,"bounds":{"left":0.83410907,"top":0.9173983,"width":0.01861702,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"bounds":{"left":0.9119016,"top":0.91380686,"width":0.021775266,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"bounds":{"left":0.9205452,"top":0.9173983,"width":0.009807181,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"bounds":{"left":0.9350067,"top":0.91300875,"width":0.021110373,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"bounds":{"left":0.9439827,"top":0.9173983,"width":0.008477394,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"bounds":{"left":0.9574468,"top":0.91300875,"width":0.008643617,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"09 May 2026, 15:45","depth":13,"bounds":{"left":0.58793217,"top":0.9509178,"width":0.044215426,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"BGR SOFIA CBA ECO MARKET","depth":14,"bounds":{"left":0.6537567,"top":0.9509178,"width":0.06565824,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"bounds":{"left":0.72074467,"top":0.95211494,"width":0.004654255,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"8.87 EUR","depth":14,"bounds":{"left":0.78789896,"top":0.9509178,"width":0.020944148,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Groceries","depth":13,"bounds":{"left":0.83410907,"top":0.9517159,"width":0.01861702,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"bounds":{"left":0.9119016,"top":0.9481245,"width":0.021775266,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"bounds":{"left":0.9205452,"top":0.9517159,"width":0.009807181,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"bounds":{"left":0.9350067,"top":0.9473264,"width":0.021110373,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"bounds":{"left":0.9439827,"top":0.9517159,"width":0.008477394,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"bounds":{"left":0.9574468,"top":0.9473264,"width":0.008643617,"height":0.0207502},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"09 May 2026, 15:02","depth":13,"bounds":{"left":0.58793217,"top":0.98523545,"width":0.044215426,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"VIADENTAL, SOFIA, BG","depth":14,"bounds":{"left":0.6537567,"top":0.98523545,"width":0.050033245,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"bounds":{"left":0.70511967,"top":0.98643255,"width":0.004654255,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"124.00 EUR","depth":14,"bounds":{"left":0.78789896,"top":0.98523545,"width":0.027094414,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Dentist","depth":13,"bounds":{"left":0.83410907,"top":0.9860335,"width":0.013796543,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Medical","depth":13,"bounds":{"left":0.8572141,"top":0.9860335,"width":0.014960106,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"bounds":{"left":0.9119016,"top":0.98244214,"width":0.021775266,"height":0.01755786},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"bounds":{"left":0.9205452,"top":0.9860335,"width":0.009807181,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"bounds":{"left":0.9350067,"top":0.98164403,"width":0.021110373,"height":0.018355966},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"bounds":{"left":0.9439827,"top":0.9860335,"width":0.008477394,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"bounds":{"left":0.9574468,"top":0.98164403,"width":0.008643617,"height":0.018355966},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"09 May 2026, 14:54","depth":13,"bounds":{"left":0.58793217,"top":1.0,"width":0.044215426,"height":-0.019553065},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"VIADENTAL, SOFIA, BG","depth":14,"bounds":{"left":0.6537567,"top":1.0,"width":0.050033245,"height":-0.019553065},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"bounds":{"left":0.70511967,"top":1.0,"width":0.004654255,"height":-0.020750165},"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"117.00 EUR","depth":14,"bounds":{"left":0.78789896,"top":1.0,"width":0.027094414,"height":-0.019553065},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Dentist","depth":13,"bounds":{"left":0.83410907,"top":1.0,"width":0.013796543,"height":-0.020351171},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Medical","depth":13,"bounds":{"left":0.8572141,"top":1.0,"width":0.014960106,"height":-0.020351171},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"bounds":{"left":0.9119016,"top":1.0,"width":0.021775266,"height":-0.016759753},"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"bounds":{"left":0.9205452,"top":1.0,"width":0.009807181,"height":-0.020351171},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"bounds":{"left":0.9350067,"top":1.0,"width":0.021110373,"height":-0.015961647},"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"bounds":{"left":0.9439827,"top":1.0,"width":0.008477394,"height":-0.020351171},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"bounds":{"left":0.9574468,"top":1.0,"width":0.008643617,"height":-0.015961647},"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"08 May 2026, 19:32","depth":13,"bounds":{"left":0.58793217,"top":1.0,"width":0.044215426,"height":-0.053870678},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"BGR SOFIYA LIDL BALGARIYA EOOD UL TODOR","depth":14,"bounds":{"left":0.6537567,"top":1.0,"width":0.10305851,"height":-0.053870678},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"bounds":{"left":0.758145,"top":1.0,"width":0.004654255,"height":-0.055067778},"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"67.81 EUR","depth":14,"bounds":{"left":0.78789896,"top":1.0,"width":0.024102394,"height":-0.053870678},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Groceries","depth":13,"bounds":{"left":0.83410907,"top":1.0,"width":0.01861702,"height":-0.054668784},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"bounds":{"left":0.9119016,"top":1.0,"width":0.021775266,"height":-0.051077366},"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"bounds":{"left":0.9205452,"top":1.0,"width":0.009807181,"height":-0.054668784},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"bounds":{"left":0.9350067,"top":1.0,"width":0.021110373,"height":-0.05027938},"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"bounds":{"left":0.9439827,"top":1.0,"width":0.008477394,"height":-0.054668784},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"bounds":{"left":0.9574468,"top":1.0,"width":0.008643617,"height":-0.05027938},"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"08 May 2026, 18:45","depth":13,"bounds":{"left":0.58793217,"top":1.0,"width":0.044215426,"height":-0.08818829},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"BGR Sofia Sinsay","depth":14,"bounds":{"left":0.6537567,"top":1.0,"width":0.03673537,"height":-0.08818829},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"bounds":{"left":0.6918218,"top":1.0,"width":0.004654255,"height":-0.08938551},"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"5.02 EUR","depth":14,"bounds":{"left":0.78789896,"top":1.0,"width":0.020944148,"height":-0.08818829},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"bounds":{"left":0.9119016,"top":1.0,"width":0.021775266,"height":-0.0853951},"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"bounds":{"left":0.9205452,"top":1.0,"width":0.009807181,"height":-0.0889864},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"bounds":{"left":0.9350067,"top":1.0,"width":0.021110373,"height":-0.08459699},"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"bounds":{"left":0.9439827,"top":1.0,"width":0.008477394,"height":-0.0889864},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"bounds":{"left":0.9574468,"top":1.0,"width":0.008643617,"height":-0.08459699},"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"08 May 2026, 18:35","depth":13,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"TEMA RETAIL BG EOOD, SOFIA, BG","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"15.46 EUR","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"08 May 2026, 18:07","depth":13,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"DM BULGARIA EOOD, SOFIYA, BG","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"9.04 EUR","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"08 May 2026, 10:00","depth":13,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"DSK ATM, SOFIA, BG","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"200.00 EUR","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"07 May 2026, 09:02","depth":13,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"BGR SOFIA CBA EKO MARKET","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Raw data","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"5.51 EUR","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Groceries","depth":13,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Send","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Send","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Skip","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip","depth":14,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Delete","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false}]...
|
-4066173002200257884
|
-7059343686559930455
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started DXP4800PLUS-B5F8
DXP4800PLUS-B5F8
Getting Started · AFFiNE
Getting Started · AFFiNE
Screenpipe — Archive
Screenpipe — Archive
Download screenpipe — get started in minutes
Download screenpipe — get started in minutes
Self-Hosted Software and Apps
Self-Hosted Software and Apps
Finance Hub
Finance Hub
Close tab
New Tab
New Tab
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
As I get older, now 79, I am viewing, seeing or realizing more and more disturbing things that are finally hitting home more profoundly and affecti... - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
New jobs similar to Уеб Програмист/ PHP at M3 Communications Group, Inc. - [EMAIL] - Gmail
Завеждане на щета онлайн | Euroins
Завеждане на щета онлайн | Euroins
Photos - Google Photos
Photos - Google Photos
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Finance Hub
Finance Hub
78
transaction
s
Payments
Payments
Upload CSV
Upload CSV
Refresh
Display settings
Sign out
Filters 2
Filters
2
Clear
Clear
Search
Recipient, description…
Source
Status
Type
Tag
From date
01
/
05
/
2026
Calendar
To date
18
/
05
/
2026
Calendar
78
transaction
s
(balance alerts hidden)
·
Total:
2,246.65
EUR
incl. BGN→EUR
·
2026-05-01 → 2026-05-18
DATE
RECIPIENT
AMOUNT
TAGS
18 May 2026, 08:06
hostinger
Raw data
23.03 EUR
Subscription
Send
Send
Skip
Skip
Delete
17 May 2026, 16:34
BILLA 101 18, SOFIA, BG
Raw data
3.65 EUR
Groceries
Send
Send
Skip
Skip
Delete
16 May 2026, 13:38
VIVACOM, SOFIA, BG
Raw data
36.91 EUR
Send
Send
Skip
Skip
Delete
16 May 2026, 10:59
PARKING, SOFIA, BG
Raw data
6.00 EUR
Send
Send
Skip
Skip
Delete
15 May 2026, 17:52
VIMARD EOOD, SOFIA, BG
Raw data
7.98 EUR
Groceries
Send
Send
Skip
Skip
Delete
15 May 2026, 08:53
LIDL BALGARIYA EOOD, SOFIYA, BGR
Raw data
0.01 EUR
Groceries
Send
Send
Skip
Skip
Delete
15 May 2026, 08:48
LIDL BALGARIYA EOOD, SOFIYA, BGR
Raw data
87.51 EUR
Groceries
Send
Send
Skip
Skip
Delete
14 May 2026, 16:10
Boosteroid, Bucharest, RO
Raw data
9.89 EUR
Subscription
Send
Send
Skip
Skip
Delete
14 May 2026, 15:19
CLAUDE
Raw data
21.60 EUR
Subscription
Send
Send
Skip
Skip
Delete
14 May 2026, 12:08
FANTASTICO 43, SOFIA, BG
Raw data
13.36 EUR
Groceries
Send
Send
Skip
Skip
Delete
13 May 2026, 08:46
CBA EKO MARKET, SOFIA, BG
Raw data
3.50 EUR
Groceries
Send
Send
Skip
Skip
Delete
12 May 2026, 08:45
BGR SOFIA CBA EKO MARKET
Raw data
7.20 EUR
Groceries
Send
Send
Skip
Skip
Delete
10 May 2026, 21:57
IRL 08000480408 APPLE COM BILL
Raw data
3.99 EUR
Send
Send
Skip
Skip
Delete
10 May 2026, 17:16
CBA ECO MARKET, SOFIA, BG
Raw data
5.38 EUR
Groceries
Send
Send
Skip
Skip
Delete
10 May 2026, 04:26
CityGate Sofia Transit, SOFIA, BGR
Raw data
1.60 EUR
Transport
Send
Send
Skip
Skip
Delete
09 May 2026, 15:45
BGR SOFIA CBA ECO MARKET
Raw data
8.87 EUR
Groceries
Send
Send
Skip
Skip
Delete
09 May 2026, 15:02
VIADENTAL, SOFIA, BG
Raw data
124.00 EUR
Dentist
Medical
Send
Send
Skip
Skip
Delete
09 May 2026, 14:54
VIADENTAL, SOFIA, BG
Raw data
117.00 EUR
Dentist
Medical
Send
Send
Skip
Skip
Delete
08 May 2026, 19:32
BGR SOFIYA LIDL BALGARIYA EOOD UL TODOR
Raw data
67.81 EUR
Groceries
Send
Send
Skip
Skip
Delete
08 May 2026, 18:45
BGR Sofia Sinsay
Raw data
5.02 EUR
Send
Send
Skip
Skip
Delete
08 May 2026, 18:35
TEMA RETAIL BG EOOD, SOFIA, BG
Raw data
15.46 EUR
Send
Send
Skip
Skip
Delete
08 May 2026, 18:07
DM BULGARIA EOOD, SOFIYA, BG
Raw data
9.04 EUR
Send
Send
Skip
Skip
Delete
08 May 2026, 10:00
DSK ATM, SOFIA, BG
Raw data
200.00 EUR
Send
Send
Skip
Skip
Delete
07 May 2026, 09:02
BGR SOFIA CBA EKO MARKET
Raw data
5.51 EUR
Groceries
Send
Send
Skip
Skip
Delete...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49351
|
NULL
|
0
|
2026-05-18T06:36:55.370122+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086215370_m2.jpg...
|
iTerm2
|
NULL
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
ActivityFilesLateMorerireroyToolsHelpcalMistorJimi ActivityFilesLateMorerireroyToolsHelpcalMistorJiminny...v# alertsbookmarksProtllesWindowJY-209... Sira Clo...cts.php x EventServiceProvider.phpAcuvity.ongOPurgeLookupcache.pnp© SyncPlanhat.phpic backend# bugs# confusion-clinic# curiosity_lab# engineering# general# jiminny-bg# platform-tickets# product_launches# random# releases# sofia-office# support# thank-yous# the people of iimi..Fallback mechanism for userswith active SF tokens for CRMMatchingJira Cloud &)AcuivityLeadConverted.php©) salestorce/service.phpPlaybackController.phppnp api.phodConverted.php© CreateSelfCoachedEvent.phpeateSmsSentevent.ohpC) PlanhatActivityListener.phoDetailsAutomatedReportsRepositorv.ohdaoi_y2.ohoC) RequestGenerateReport.Job.oho/DescriptionWe identified an issue for Tourlane where TwiliocomatedReport.phpA console (STAGING]calls appear as "Unknown Customer" when theSalesforce admin connection token has expired. Inthis case, CRM object matching fails because thesystem relies only on the admin's Salesforcetoken.\Commands\Crm;We should implement the same fallback logiccurrently used for dialers - if the Salesforce admintoken is expired or inactive, the system shouldsearch for another active Salesforce token from^ Direct messagesany user within the same organisation and use itPP. Galya Dimitrovafor CRM matching.olranta€. Vasil VasilevAcceptance Criteria:A. Aneliya Angelova• If the Salesforce admin token has expired, theIture of the console command.8. Stoyan Tomovsystem searches for anotner acuve salestorcetoken within the organisation.. Stefka Stoyanova• CRM obiect matching continues successfully19 lodor Stamatovusing the... show moree'crm:sunc-obnects «team?, "--svncs'*di. Mario GeorgievStatusC. Nikolay Ivanov&o James Graham2. Stoyan TanevOnen in Jira+ Summarisee Stelivaa focnpriew> D Twilio30 €protected $description = 'Sync remote CRM objects.';> Users> Vocabulanv* Eyecute the concole commandi> IMizooml© Command.php© CreateDatabaseUsers.phppublic function handle(): voidf...,© DatabaseTableCount.php© DeleteOldAiCrmNotesCommand.php© DeleteS3LeftoversCommand.php69 đ >protected function getStaggerDelaySeconds(): floatf.…,C) DevPostmanCommand.nhn© DiarizeViaAiParticipantldentificationComr©EncryptTokensCommand.php74 đ >protected function getMaxDelaySeconds(): intf...]© EngagementStatsRegenerateCommand.fFeatureFlagsHelper.php81 đ >protected function getLogPrefix(): stringf…..]E custom.log#laravel.log4 SF [iminny@localhost] X© TestPipedriveOfficialSdkCommand.phpO KernelpnpPlaygroundselect * from users where name = 'IntegraSELECT * FROM social_accounts WHERE socia223225256selecc * rron accivlcles where crm cont1aand recordina state = "recorded' and duraISELECT * FROM activities WHERE UU1dtO D1select * From Leads:SELECT * FROM activities WHERE vuid_to_biSELCT * FROM activities WIERE id IN (161SELECT * FROM activities where status =SELECT * FROM tracks WHERE activity_id =SELECTFROM activities aJOIN users u 1..n<->1: ON a.user_id = u.idWHEREa.status = "complered"AND uuid_to_bin('641f1acb-16b8-42d1-8lAND a.deleted_ at IS NULLAND EXISTS (SELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual_start_time DESCLIMIT 25;select * from teams where 1d = 19.select * from erm confiqurations where oiSELECICONCATU.id. CASE WHEN U.id = t.owneru. emansa.*,+ownen id ER0M social accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idWHERE u.team_id = 19 and sa.provider = 'elSELECT * FROM social_accounts WHERE id =() DXP4800PLUS-B5F8Getting Started - AFFiNE® Screenpipe - ArchiveDownload screenpipe — ge.• Self-Hosted Software and A;S Finance HubNew TabM Asl aet older now 70. lamNew jobs similar to Yeб nodЗавеждане на щета онлайнPhotos - Google Photos) New Tab- New Tab©finance-hub.lakylak.xyzFinance HubY Filters (2SearchQ Recipient, description...All SourcesAll Statuses01/05/202678 transactions (balance alerts hidden)Total: 2,246.65 EUR incl. BGN→EURDATEvRECIPIENT18 May 2026, 08:06hostinger17 May 2026, 16:34RIIL A 101 18. SOFIA. RGI16 Mav 2026. 13:38VIVACOM, SOFIA, BG16 May 2026, 10:59PARKING, SOFIA, BG15 May 2026, 17:52VIMARD EOOD, SOFIA, BG15 May 2026, 08:53LIDL BALGARIYA EOOD, SOFIYA, BGR15 May 2026, 08:48LIDL BALGARIYA EOOD, SOFIYA, BGR14 Mav 2026 16:101Boosteroid, Bucharest, RO14 Mav 2026 15:19CI AUDFV14 Mav 2026. 12:08FANTASTICO 43, SOFIA, BG13 Mav 2026. 08:46lCBA EKO MARKET, SOFIA, BG12 May 2026, 08:45BGR SOFIA CBA EKO MARKET10 May 2026, 21:57IRL 08000480408 APPLE COM BILL10 May 2026, 17:16CRA ECO MARKET COFIA RGI10 Mav 2026 04:26CitvGate Cofia Trancit COFIA RGP09 Mav 2026. 15:45BGR SOFIA CRA ECO MARKET09 Mav 2026. 15:02VIADENTAL, SOFIA, BG88 Payments&Upload CSVAll Types18/05 /20262026-05-01 → 2026-05-18AMOUNT iL23.03 EUR3.65 EUR36.91 EURI6.00 EUR7.98 EUR0.01 EUR87.51 EUR9.89 EUR21.60 SUP13.36 EUR3.50 EUR7.20 EUR3.99 EUR5.38 EUR160 SIIP8.87 EUR124.00 EUR100% 2Mon 18 May 9:36:55X CleanAll Tags@ Skip© Skip*) Skip@ Skip@Skip• Skip© SkipSkip• Skip• Skip• Skip@ Skip@ Skip*) Skin@ Skio* Skip...
|
NULL
|
-8180096673988171423
|
NULL
|
click
|
ocr
|
NULL
|
ActivityFilesLateMorerireroyToolsHelpcalMistorJimi ActivityFilesLateMorerireroyToolsHelpcalMistorJiminny...v# alertsbookmarksProtllesWindowJY-209... Sira Clo...cts.php x EventServiceProvider.phpAcuvity.ongOPurgeLookupcache.pnp© SyncPlanhat.phpic backend# bugs# confusion-clinic# curiosity_lab# engineering# general# jiminny-bg# platform-tickets# product_launches# random# releases# sofia-office# support# thank-yous# the people of iimi..Fallback mechanism for userswith active SF tokens for CRMMatchingJira Cloud &)AcuivityLeadConverted.php©) salestorce/service.phpPlaybackController.phppnp api.phodConverted.php© CreateSelfCoachedEvent.phpeateSmsSentevent.ohpC) PlanhatActivityListener.phoDetailsAutomatedReportsRepositorv.ohdaoi_y2.ohoC) RequestGenerateReport.Job.oho/DescriptionWe identified an issue for Tourlane where TwiliocomatedReport.phpA console (STAGING]calls appear as "Unknown Customer" when theSalesforce admin connection token has expired. Inthis case, CRM object matching fails because thesystem relies only on the admin's Salesforcetoken.\Commands\Crm;We should implement the same fallback logiccurrently used for dialers - if the Salesforce admintoken is expired or inactive, the system shouldsearch for another active Salesforce token from^ Direct messagesany user within the same organisation and use itPP. Galya Dimitrovafor CRM matching.olranta€. Vasil VasilevAcceptance Criteria:A. Aneliya Angelova• If the Salesforce admin token has expired, theIture of the console command.8. Stoyan Tomovsystem searches for anotner acuve salestorcetoken within the organisation.. Stefka Stoyanova• CRM obiect matching continues successfully19 lodor Stamatovusing the... show moree'crm:sunc-obnects «team?, "--svncs'*di. Mario GeorgievStatusC. Nikolay Ivanov&o James Graham2. Stoyan TanevOnen in Jira+ Summarisee Stelivaa focnpriew> D Twilio30 €protected $description = 'Sync remote CRM objects.';> Users> Vocabulanv* Eyecute the concole commandi> IMizooml© Command.php© CreateDatabaseUsers.phppublic function handle(): voidf...,© DatabaseTableCount.php© DeleteOldAiCrmNotesCommand.php© DeleteS3LeftoversCommand.php69 đ >protected function getStaggerDelaySeconds(): floatf.…,C) DevPostmanCommand.nhn© DiarizeViaAiParticipantldentificationComr©EncryptTokensCommand.php74 đ >protected function getMaxDelaySeconds(): intf...]© EngagementStatsRegenerateCommand.fFeatureFlagsHelper.php81 đ >protected function getLogPrefix(): stringf…..]E custom.log#laravel.log4 SF [iminny@localhost] X© TestPipedriveOfficialSdkCommand.phpO KernelpnpPlaygroundselect * from users where name = 'IntegraSELECT * FROM social_accounts WHERE socia223225256selecc * rron accivlcles where crm cont1aand recordina state = "recorded' and duraISELECT * FROM activities WHERE UU1dtO D1select * From Leads:SELECT * FROM activities WHERE vuid_to_biSELCT * FROM activities WIERE id IN (161SELECT * FROM activities where status =SELECT * FROM tracks WHERE activity_id =SELECTFROM activities aJOIN users u 1..n<->1: ON a.user_id = u.idWHEREa.status = "complered"AND uuid_to_bin('641f1acb-16b8-42d1-8lAND a.deleted_ at IS NULLAND EXISTS (SELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual_start_time DESCLIMIT 25;select * from teams where 1d = 19.select * from erm confiqurations where oiSELECICONCATU.id. CASE WHEN U.id = t.owneru. emansa.*,+ownen id ER0M social accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idWHERE u.team_id = 19 and sa.provider = 'elSELECT * FROM social_accounts WHERE id =() DXP4800PLUS-B5F8Getting Started - AFFiNE® Screenpipe - ArchiveDownload screenpipe — ge.• Self-Hosted Software and A;S Finance HubNew TabM Asl aet older now 70. lamNew jobs similar to Yeб nodЗавеждане на щета онлайнPhotos - Google Photos) New Tab- New Tab©finance-hub.lakylak.xyzFinance HubY Filters (2SearchQ Recipient, description...All SourcesAll Statuses01/05/202678 transactions (balance alerts hidden)Total: 2,246.65 EUR incl. BGN→EURDATEvRECIPIENT18 May 2026, 08:06hostinger17 May 2026, 16:34RIIL A 101 18. SOFIA. RGI16 Mav 2026. 13:38VIVACOM, SOFIA, BG16 May 2026, 10:59PARKING, SOFIA, BG15 May 2026, 17:52VIMARD EOOD, SOFIA, BG15 May 2026, 08:53LIDL BALGARIYA EOOD, SOFIYA, BGR15 May 2026, 08:48LIDL BALGARIYA EOOD, SOFIYA, BGR14 Mav 2026 16:101Boosteroid, Bucharest, RO14 Mav 2026 15:19CI AUDFV14 Mav 2026. 12:08FANTASTICO 43, SOFIA, BG13 Mav 2026. 08:46lCBA EKO MARKET, SOFIA, BG12 May 2026, 08:45BGR SOFIA CBA EKO MARKET10 May 2026, 21:57IRL 08000480408 APPLE COM BILL10 May 2026, 17:16CRA ECO MARKET COFIA RGI10 Mav 2026 04:26CitvGate Cofia Trancit COFIA RGP09 Mav 2026. 15:45BGR SOFIA CRA ECO MARKET09 Mav 2026. 15:02VIADENTAL, SOFIA, BG88 Payments&Upload CSVAll Types18/05 /20262026-05-01 → 2026-05-18AMOUNT iL23.03 EUR3.65 EUR36.91 EURI6.00 EUR7.98 EUR0.01 EUR87.51 EUR9.89 EUR21.60 SUP13.36 EUR3.50 EUR7.20 EUR3.99 EUR5.38 EUR160 SIIP8.87 EUR124.00 EUR100% 2Mon 18 May 9:36:55X CleanAll Tags@ Skip© Skip*) Skip@ Skip@Skip• Skip© SkipSkip• Skip• Skip• Skip@ Skip@ Skip*) Skin@ Skio* Skip...
|
49349
|
NULL
|
NULL
|
NULL
|
|
49350
|
NULL
|
0
|
2026-05-18T06:36:55.375713+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086215375_m1.jpg...
|
iTerm2
|
NULL
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShelllEditViewSessionScriptsProfilesWindowHe iTerm2ShelllEditViewSessionScriptsProfilesWindowHelp•• 0APP (-zsh)DOCKERLast login: Mon May 18 09:17:28 on ttys007O 81DEV (-zsh)O ₴2Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentsPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ U‹ $0APP (-zsh)83100% C47 8• Mon 18 May 9:36:54T₴1ffmpeg₴4APP...
|
NULL
|
-1078171501741576683
|
NULL
|
click
|
ocr
|
NULL
|
iTerm2ShelllEditViewSessionScriptsProfilesWindowHe iTerm2ShelllEditViewSessionScriptsProfilesWindowHelp•• 0APP (-zsh)DOCKERLast login: Mon May 18 09:17:28 on ttys007O 81DEV (-zsh)O ₴2Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentsPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ U‹ $0APP (-zsh)83100% C47 8• Mon 18 May 9:36:54T₴1ffmpeg₴4APP...
|
49348
|
NULL
|
NULL
|
NULL
|
|
49352
|
1763
|
0
|
2026-05-18T06:36:57.480805+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086217480_m2.jpg...
|
iTerm2
|
NULL
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
HomeActivityFilesLateMoreSlackcalVIewMistonWindowH HomeActivityFilesLateMoreSlackcalVIewMistonWindowHelp@ Describe what you are looking forJiminny... ~# alertsic backend# bugs# confusion-clinic# curiosity_lab# engineering# general#jiminny-bg# platform-tickets# product launches# randomi released# sofa-office# support# thank-yous# the people of iimi..0 Direct messagesGalva DimitrovaeVasil Vaciler./e Aneliva Angelovaa Stovan TomovStefka Stoyanova19 lodor StamatovMario Georgieved Nikolay IvanovSa James Graham*% Stoyan TanevP. Stelivan GeoroievDTwilio> Users> Vocabulanv> IMizooml(C) Command.ohncts.php x © EventServiceProvider.phpJY-209... Jira Clo.Acuvity.ongOPurgeLookupcache.pnp© SyncPlanhat.phpPrioritvMealum©) salestorce/service.php( PlaybackController.phpComponentsdConverted.php© CreateSelfCoachedEvent.phpPlatformeateSmsSentevent.ohpC) PlanhatActivityListener.phoSorintAutomatedReportsRepositorv.ohdPlatform Sprint 5 Q2• aoi y2.oholC) RequestGenerateReport.Job.oho/Story point estmateomatedReport.phpA console [STAGING]NoneCix versionsNonecommanos criDaysNoneCommandNeed OAolrantaNoneture of the console commandilahelsNaneSub-Product:'crm:sunc-obnects «team?, «--svncs':NoneIdescrintion.Onen in JiraSummariseprotected $description = 'Sync remote CRM objects.';* Eyecuto the concole commandlpublic function handle: voidf...;© CreateDatabaseUsers.php(C) DatabaseTableCount nhnl© DeleteOldAiCrmNotesCommand.php© DeleteS3LeftoversCommand.phpC) DevPostmanCommand.nhn69 6t >protected function getStaggerDelavSeconds@: floatf...?@ nisrizoVinAiDarticinantldentificationCom.9 CncruntTokonsCommand nhnl74 6tprotected function getMaxDelavSeconds@: int{...}(e SnanaomontCtatcDoaeneratoCammand r81 6t>protected function getlogPrefix@: stringf...;FoatureFlagsHelper.onp=custom.log=laravel.log4 SF jiminny@localhost] ›© TestPipedriveOfficialSdkCommand.php223225256O KernelpnpPlaygroundselect * from users where name = 'IntegraSELECT * FROM social_accounts WHERE soci.selecc * rron accivlcles where crm cont1oand recordina state = "recorded' and duraISELECT * FROM activities WHERE UU1dtO D1select * From Leads:SELECT * FROM activities WIERE uid to biSELECT * FROM activities WIERE id IN (16SELECT * FROM activities where status =SEIEC * SROM +racks WHERs activitv id =SELECTFROM activities aIOTN usens ut 1..n<->1: ON arusen id = m.idWHEREa.status = "complered"AND uuid_to_bin('641f1acb-16b8-42d1-8AND a.deleted_ at IS NULLAND EXISTSSELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual start time DESCLIMIT 25:select * from teams where id = 19;select * from crm confiqurations where p'SELECICONCATU.id. CASE WHEN U.id = t.owneru. emanSA.*+ownen id ER0M social accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idWHERE u.team_id = 19 and sa.provider = 'pCSICAT + CP0M cocial sccounte WHEpE id =() DXP4800PLUS-B5F8Getting Started - AFFiNE(*) Screenpipe - ArchiveDownload screenpipe - ge*• Self-Hosted Software and AS Finance HubNew TabM Asl aet older now 70. lamNew jobs similar to Yeб nodВ Завежпане на шета онпайPhotos - Google Photos) New Tabfinance-hub.lakylak.xyzFinance HubY Filters (2SearchI• Recinient descrintion...All SourcesAll Statuses01/ 05 /202678 transactions (balance alerts hidden) ITotal: 2,246.65 EUR incl. BGN→EUR|DATE JPECIDIENT18 May 2026, 08:06hostinger17 Mav 2026. 16:34RIIL A 101 18. SOFIA. RGI16 Mav 2026. 13:38VIVACOM. SOFIA. BG16 Mav 2026. 10:59PARKING. SOFIA. BG15 May 2026. 17:52VIMARD EOOD. SOFIA, BG15 May 2026, 08:53LIDL BALGARIYA EOOD, SOFIYA, BGR15 Mav 2026 09:49LIDL BALGARIYA EOOD, SOFIYA, BGR14 Mav 2026 16:101Roosteroid Rucharest RO14 Mav 2026 15:19CI AUDE14 Mav 2026. 12:08FANTASTICO 43. SOFIA. BG13 Mav 2026. 08:46lCBA EKO MARKET. SOFIA. BG12 May 2026, 08:45lBGR SOFIA CBA EKO MARKET10 May 2026, 21:57IRL 08000480408 APPLE COM BILL10 Mav 2026 17:16CRA ECO MARKET COFIA RGI10 Mav 2026 04:26CitvGate Cofia Trancit COFIA RGP09 Mav 2026. 15:45RGR SOFIA CRA ECO MARKET09 Mav 2026. 15:02VIADENTAL. SOFIA. BG8õ PaymentsL Upload CSVAll Tvoes18/ 05/20262026-05-01 - 2026-05-18|AMOUNT N22 02 FIIR|3.65 EUR36.91 EURI6.00 EUR7.98 EUR0.01 EUR87.51 EUR9.89 EUR21.60 SUP13.36 EUR3.50 EUR7.20 EUR3.99 EUR5.28 FIIP160 SIIP8.87 EUR124.00 EUR100% 2• Mon 18 May 9:36:57^ X ClearAll Tags*) Skin@ Skio*) Skip@ Skip@Skip• Skip• Skip|Skio |• Skio• Skip• Skip |F Skin() Skin*) Skin@ Skio* Skip...
|
NULL
|
5828321966372029262
|
NULL
|
visual_change
|
ocr
|
NULL
|
HomeActivityFilesLateMoreSlackcalVIewMistonWindowH HomeActivityFilesLateMoreSlackcalVIewMistonWindowHelp@ Describe what you are looking forJiminny... ~# alertsic backend# bugs# confusion-clinic# curiosity_lab# engineering# general#jiminny-bg# platform-tickets# product launches# randomi released# sofa-office# support# thank-yous# the people of iimi..0 Direct messagesGalva DimitrovaeVasil Vaciler./e Aneliva Angelovaa Stovan TomovStefka Stoyanova19 lodor StamatovMario Georgieved Nikolay IvanovSa James Graham*% Stoyan TanevP. Stelivan GeoroievDTwilio> Users> Vocabulanv> IMizooml(C) Command.ohncts.php x © EventServiceProvider.phpJY-209... Jira Clo.Acuvity.ongOPurgeLookupcache.pnp© SyncPlanhat.phpPrioritvMealum©) salestorce/service.php( PlaybackController.phpComponentsdConverted.php© CreateSelfCoachedEvent.phpPlatformeateSmsSentevent.ohpC) PlanhatActivityListener.phoSorintAutomatedReportsRepositorv.ohdPlatform Sprint 5 Q2• aoi y2.oholC) RequestGenerateReport.Job.oho/Story point estmateomatedReport.phpA console [STAGING]NoneCix versionsNonecommanos criDaysNoneCommandNeed OAolrantaNoneture of the console commandilahelsNaneSub-Product:'crm:sunc-obnects «team?, «--svncs':NoneIdescrintion.Onen in JiraSummariseprotected $description = 'Sync remote CRM objects.';* Eyecuto the concole commandlpublic function handle: voidf...;© CreateDatabaseUsers.php(C) DatabaseTableCount nhnl© DeleteOldAiCrmNotesCommand.php© DeleteS3LeftoversCommand.phpC) DevPostmanCommand.nhn69 6t >protected function getStaggerDelavSeconds@: floatf...?@ nisrizoVinAiDarticinantldentificationCom.9 CncruntTokonsCommand nhnl74 6tprotected function getMaxDelavSeconds@: int{...}(e SnanaomontCtatcDoaeneratoCammand r81 6t>protected function getlogPrefix@: stringf...;FoatureFlagsHelper.onp=custom.log=laravel.log4 SF jiminny@localhost] ›© TestPipedriveOfficialSdkCommand.php223225256O KernelpnpPlaygroundselect * from users where name = 'IntegraSELECT * FROM social_accounts WHERE soci.selecc * rron accivlcles where crm cont1oand recordina state = "recorded' and duraISELECT * FROM activities WHERE UU1dtO D1select * From Leads:SELECT * FROM activities WIERE uid to biSELECT * FROM activities WIERE id IN (16SELECT * FROM activities where status =SEIEC * SROM +racks WHERs activitv id =SELECTFROM activities aIOTN usens ut 1..n<->1: ON arusen id = m.idWHEREa.status = "complered"AND uuid_to_bin('641f1acb-16b8-42d1-8AND a.deleted_ at IS NULLAND EXISTSSELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual start time DESCLIMIT 25:select * from teams where id = 19;select * from crm confiqurations where p'SELECICONCATU.id. CASE WHEN U.id = t.owneru. emanSA.*+ownen id ER0M social accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idWHERE u.team_id = 19 and sa.provider = 'pCSICAT + CP0M cocial sccounte WHEpE id =() DXP4800PLUS-B5F8Getting Started - AFFiNE(*) Screenpipe - ArchiveDownload screenpipe - ge*• Self-Hosted Software and AS Finance HubNew TabM Asl aet older now 70. lamNew jobs similar to Yeб nodВ Завежпане на шета онпайPhotos - Google Photos) New Tabfinance-hub.lakylak.xyzFinance HubY Filters (2SearchI• Recinient descrintion...All SourcesAll Statuses01/ 05 /202678 transactions (balance alerts hidden) ITotal: 2,246.65 EUR incl. BGN→EUR|DATE JPECIDIENT18 May 2026, 08:06hostinger17 Mav 2026. 16:34RIIL A 101 18. SOFIA. RGI16 Mav 2026. 13:38VIVACOM. SOFIA. BG16 Mav 2026. 10:59PARKING. SOFIA. BG15 May 2026. 17:52VIMARD EOOD. SOFIA, BG15 May 2026, 08:53LIDL BALGARIYA EOOD, SOFIYA, BGR15 Mav 2026 09:49LIDL BALGARIYA EOOD, SOFIYA, BGR14 Mav 2026 16:101Roosteroid Rucharest RO14 Mav 2026 15:19CI AUDE14 Mav 2026. 12:08FANTASTICO 43. SOFIA. BG13 Mav 2026. 08:46lCBA EKO MARKET. SOFIA. BG12 May 2026, 08:45lBGR SOFIA CBA EKO MARKET10 May 2026, 21:57IRL 08000480408 APPLE COM BILL10 Mav 2026 17:16CRA ECO MARKET COFIA RGI10 Mav 2026 04:26CitvGate Cofia Trancit COFIA RGP09 Mav 2026. 15:45RGR SOFIA CRA ECO MARKET09 Mav 2026. 15:02VIADENTAL. SOFIA. BG8õ PaymentsL Upload CSVAll Tvoes18/ 05/20262026-05-01 - 2026-05-18|AMOUNT N22 02 FIIR|3.65 EUR36.91 EURI6.00 EUR7.98 EUR0.01 EUR87.51 EUR9.89 EUR21.60 SUP13.36 EUR3.50 EUR7.20 EUR3.99 EUR5.28 FIIP160 SIIP8.87 EUR124.00 EUR100% 2• Mon 18 May 9:36:57^ X ClearAll Tags*) Skin@ Skio*) Skip@ Skip@Skip• Skip• Skip|Skio |• Skio• Skip• Skip |F Skin() Skin*) Skin@ Skio* Skip...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49353
|
1762
|
0
|
2026-05-18T06:37:00.793420+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086220793_m1.jpg...
|
iTerm2
|
NULL
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShelllEditViewSessionScriptsProfilesWindowHe iTerm2ShelllEditViewSessionScriptsProfilesWindowHelp•• 0APP (-zsh)DOCKERLast login: Mon May 18 09:17:28 on ttys007O 81DEV (-zsh)O 82Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentsPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ U‹ $0APP (-zsh)|83100% C47 8• Mon 18 May 9:37:00T₴1screenpipe*O &4APP...
|
NULL
|
-4105028799184393850
|
NULL
|
click
|
ocr
|
NULL
|
iTerm2ShelllEditViewSessionScriptsProfilesWindowHe iTerm2ShelllEditViewSessionScriptsProfilesWindowHelp•• 0APP (-zsh)DOCKERLast login: Mon May 18 09:17:28 on ttys007O 81DEV (-zsh)O 82Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentsPoetry could not find a pyproject.toml file in /Users/lukas/jiminny/app or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ U‹ $0APP (-zsh)|83100% C47 8• Mon 18 May 9:37:00T₴1screenpipe*O &4APP...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49354
|
1763
|
1
|
2026-05-18T06:37:00.807745+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086220807_m2.jpg...
|
iTerm2
|
NULL
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
DMSActivityMoreSlackcalVIewMistonWindowHelp@ Descr DMSActivityMoreSlackcalVIewMistonWindowHelp@ Describe what you are looking forJiminny... ~( Unreads@ Threads6a HuddlesDrafts & sent8) Directories01Ab External connectionsJY-209... Sira Clo...Fallback mechanism for userswith active SF tokens for CRMMatchingJira Cloud &Detailscts.php x EventServiceProvider.phpAcuvity.ongOPurgeLookupcache.pnp© SyncPlanhat.phpActivityLeadConverted.php©) salestorce/service.php( PlaybackController.phppnp api.phodConverted.php© CreateSelfCoachedEvent.phpeateSmsSentevent.ohpC) PlanhatActivityListener.phoAutomatedReportsRepositorv.ohvcoleyoineC) RequestGenerateReport.Job.oho/t Starred8 jiminny-x-integrati...& platform-inner-teamDescriptionWe identified an issue for Tourlane where TwilioomatedReport.phpA console (STAGING]calls appear as "Unknown Customer" when theSalesforce admin connection token has expired. In# Channelsthis case, CRM object matching fails because the# ai-chaptersystem relies only on the admin's Salesforcetoken.Commands Crn"# alertsWe should implement the same fallback logic# backendcurrently used for dialers - if the Salesforce admin# bugstoken is expired or inactive, the system shouldi confusion-clinicsearch for another active Salesforce token fromany user within the same organisation and use it# curiosity_labfor CRM matching.olranta# engineeringAcceptance Criteria:# general• If the Salesforce admin token has expired, theture of the console commandi# jiminny-bgsystem searches for anotner acuve salestorce" natform-nicketstoken within the organisation.• CRM obiect matching continues successfully# product_launchesusing the... show more:'crm:sunc-obnects «team?, «--svncs':a random# releasesStatus# sofia-officeI description.# supportOnen in Jira+ Summarise# thank-yousD Twilioprotected $description = 'Sync remote CRM objects.';> Users# Vocabulary* Eyecute the concole commandi> IMizooml© Command.php© CreateDatabaseUsers.phppublic function handle(): voidf...,© DatabaseTableCount.php© DeleteOldAiCrmNotesCommand.php© DeleteS3LeftoversCommand.php69 đ >protected function getStaggerDelaySeconds(): floatf.…,C) DevPostmanCommand.nhn@ nisrizoVinAiDarticinantldentificationCom.9 CncruntTokonsCommand nhnl74 đ >protected function getMaxDelaySeconds(): intf..,© EngagementStatsRegenerateCommand.fFeatureFlagsHelper.php81 đ >protected function getLogPrefix(): stringf…..]E custom.log#laravel.log4 SF [iminny@localhost] x© TestPipedriveOfficialSdkCommand.phpO KernelpnpPlaygroundselect * from users where name = 'IntegraSELECT * FROM social_accounts WHERE socia223225256selecc * rron accivlcles where crm cont1oand recordina state = "recorded' and duraISELECT * FROM activities WHERE UU1dtO D1select * From Leads:SELECT * FROM activities WHERE vuid_to_biSELECT * FROM activities WIERE id IN (16SELECT * FROM activities where status =SELECT * FROM tracks WHERE activity_id =SELECTFROM activities aJOIN users u 1..n<->1: ON a.user_id = v.idWHEREa.status = "complered"AND uuid_to_bin('641f1acb-16b8-42d1-8AND a.deleted_ at IS NULLAND EXISTS (SELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual_start_time DESCLIMIT 25;select * from teams where id = 19;select * from crm_configurations where prSELECICONCATU.id. CASE WHEN U.id = t.owneru. emansa.*,+ownen id ER0M social accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idWHERE u.team_id = 19 and sa.provider = 'eSELECT * FROM social_accounts WHERE id =() DXP4800PLUS-B5F8Getting Started - AFFiNE® Screenpipe - ArchiveDownload screenpipe - ge*• Self-Hosted Software and AS Finance HubNew TabM Asl aet older. now 70. 1amlNew jobs similar to Yeб nрсЗавеждане на щета онлайнPhotos - Google Photos) New Tabfinance-hub.lakylak.xyzFinance HubY Filters (2SearchQ Recipient, description...All SourcesAll Statuses01/05/202678 transactions (balance alerts hidden)Total: 2,246.65 EUR incl. BGN→EURDATEvRECIPIENT18 May 2026, 08:06hostinger17 May 2026, 16:34RIIL A 101 18. SOFIA. RGI16 Mav 2026. 13:38VIVACOM, SOFIA, BG16 May 2026, 10:59PARKING, SOFIA, BG15 May 2026, 17:52VIMARD EOOD, SOFIA, BG15 May 2026, 08:53LIDL BALGARIYA EOOD, SOFIYA, BGR15 May 2026, 08:48LIDL BALGARIYA EOOD, SOFIYA, BGR14 Mav 2026 16:101Boosteroid, Bucharest, RO14 Mav 2026 15:191CI AUDFV14 Mav 2026. 12:08FANTASTICO 43, SOFIA, BG13 Mav 2026. 08:46lCBA EKO MARKET, SOFIA, BG12 May 2026, 08:45BGR SOFIA CBA EKO MARKET10 May 2026, 21:57IRL 08000480408 APPLE COM BILL10 May 2026, 17:16CRA ECO MARKET COFIA RGI10 Mav 2026 04:26CitvGate Cofia Trancit COFIA RGP09 Mav 2026. 15:45RGR SOFIA CRA ECO MARKET09 Mav 2026. 15:02VIADENTAL, SOFIA, BG88 Payments&Upload CSVAll Types18/05 /20262026-05-01 → 2026-05-18AMOUNT iL23.03 EUR3.65 EUR36.91 EUR6.00 EUR7.98 EUR0.01 EUR87.51 EUR9.89 EUR21.60 SUP13.36 EUR3.50 EUR7.20 EUR3.99 EUR5.38 EUR160 SIIP8.87 EUR124.00 EUR100% 28• Mon 18 May 9:37:00^ X ClearAll Tags@ Skip© Skip*) Skip@ Skip@Skip• Skip© SkipSkip• Skip• Skip• Skip@ Skip@ Skip*) Skin@ Skio* Skip...
|
NULL
|
-7229449115395726788
|
NULL
|
click
|
ocr
|
NULL
|
DMSActivityMoreSlackcalVIewMistonWindowHelp@ Descr DMSActivityMoreSlackcalVIewMistonWindowHelp@ Describe what you are looking forJiminny... ~( Unreads@ Threads6a HuddlesDrafts & sent8) Directories01Ab External connectionsJY-209... Sira Clo...Fallback mechanism for userswith active SF tokens for CRMMatchingJira Cloud &Detailscts.php x EventServiceProvider.phpAcuvity.ongOPurgeLookupcache.pnp© SyncPlanhat.phpActivityLeadConverted.php©) salestorce/service.php( PlaybackController.phppnp api.phodConverted.php© CreateSelfCoachedEvent.phpeateSmsSentevent.ohpC) PlanhatActivityListener.phoAutomatedReportsRepositorv.ohvcoleyoineC) RequestGenerateReport.Job.oho/t Starred8 jiminny-x-integrati...& platform-inner-teamDescriptionWe identified an issue for Tourlane where TwilioomatedReport.phpA console (STAGING]calls appear as "Unknown Customer" when theSalesforce admin connection token has expired. In# Channelsthis case, CRM object matching fails because the# ai-chaptersystem relies only on the admin's Salesforcetoken.Commands Crn"# alertsWe should implement the same fallback logic# backendcurrently used for dialers - if the Salesforce admin# bugstoken is expired or inactive, the system shouldi confusion-clinicsearch for another active Salesforce token fromany user within the same organisation and use it# curiosity_labfor CRM matching.olranta# engineeringAcceptance Criteria:# general• If the Salesforce admin token has expired, theture of the console commandi# jiminny-bgsystem searches for anotner acuve salestorce" natform-nicketstoken within the organisation.• CRM obiect matching continues successfully# product_launchesusing the... show more:'crm:sunc-obnects «team?, «--svncs':a random# releasesStatus# sofia-officeI description.# supportOnen in Jira+ Summarise# thank-yousD Twilioprotected $description = 'Sync remote CRM objects.';> Users# Vocabulary* Eyecute the concole commandi> IMizooml© Command.php© CreateDatabaseUsers.phppublic function handle(): voidf...,© DatabaseTableCount.php© DeleteOldAiCrmNotesCommand.php© DeleteS3LeftoversCommand.php69 đ >protected function getStaggerDelaySeconds(): floatf.…,C) DevPostmanCommand.nhn@ nisrizoVinAiDarticinantldentificationCom.9 CncruntTokonsCommand nhnl74 đ >protected function getMaxDelaySeconds(): intf..,© EngagementStatsRegenerateCommand.fFeatureFlagsHelper.php81 đ >protected function getLogPrefix(): stringf…..]E custom.log#laravel.log4 SF [iminny@localhost] x© TestPipedriveOfficialSdkCommand.phpO KernelpnpPlaygroundselect * from users where name = 'IntegraSELECT * FROM social_accounts WHERE socia223225256selecc * rron accivlcles where crm cont1oand recordina state = "recorded' and duraISELECT * FROM activities WHERE UU1dtO D1select * From Leads:SELECT * FROM activities WHERE vuid_to_biSELECT * FROM activities WIERE id IN (16SELECT * FROM activities where status =SELECT * FROM tracks WHERE activity_id =SELECTFROM activities aJOIN users u 1..n<->1: ON a.user_id = v.idWHEREa.status = "complered"AND uuid_to_bin('641f1acb-16b8-42d1-8AND a.deleted_ at IS NULLAND EXISTS (SELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual_start_time DESCLIMIT 25;select * from teams where id = 19;select * from crm_configurations where prSELECICONCATU.id. CASE WHEN U.id = t.owneru. emansa.*,+ownen id ER0M social accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idWHERE u.team_id = 19 and sa.provider = 'eSELECT * FROM social_accounts WHERE id =() DXP4800PLUS-B5F8Getting Started - AFFiNE® Screenpipe - ArchiveDownload screenpipe - ge*• Self-Hosted Software and AS Finance HubNew TabM Asl aet older. now 70. 1amlNew jobs similar to Yeб nрсЗавеждане на щета онлайнPhotos - Google Photos) New Tabfinance-hub.lakylak.xyzFinance HubY Filters (2SearchQ Recipient, description...All SourcesAll Statuses01/05/202678 transactions (balance alerts hidden)Total: 2,246.65 EUR incl. BGN→EURDATEvRECIPIENT18 May 2026, 08:06hostinger17 May 2026, 16:34RIIL A 101 18. SOFIA. RGI16 Mav 2026. 13:38VIVACOM, SOFIA, BG16 May 2026, 10:59PARKING, SOFIA, BG15 May 2026, 17:52VIMARD EOOD, SOFIA, BG15 May 2026, 08:53LIDL BALGARIYA EOOD, SOFIYA, BGR15 May 2026, 08:48LIDL BALGARIYA EOOD, SOFIYA, BGR14 Mav 2026 16:101Boosteroid, Bucharest, RO14 Mav 2026 15:191CI AUDFV14 Mav 2026. 12:08FANTASTICO 43, SOFIA, BG13 Mav 2026. 08:46lCBA EKO MARKET, SOFIA, BG12 May 2026, 08:45BGR SOFIA CBA EKO MARKET10 May 2026, 21:57IRL 08000480408 APPLE COM BILL10 May 2026, 17:16CRA ECO MARKET COFIA RGI10 Mav 2026 04:26CitvGate Cofia Trancit COFIA RGP09 Mav 2026. 15:45RGR SOFIA CRA ECO MARKET09 Mav 2026. 15:02VIADENTAL, SOFIA, BG88 Payments&Upload CSVAll Types18/05 /20262026-05-01 → 2026-05-18AMOUNT iL23.03 EUR3.65 EUR36.91 EUR6.00 EUR7.98 EUR0.01 EUR87.51 EUR9.89 EUR21.60 SUP13.36 EUR3.50 EUR7.20 EUR3.99 EUR5.38 EUR160 SIIP8.87 EUR124.00 EUR100% 28• Mon 18 May 9:37:00^ X ClearAll Tags@ Skip© Skip*) Skip@ Skip@Skip• Skip© SkipSkip• Skip• Skip• Skip@ Skip@ Skip*) Skin@ Skio* Skip...
|
49352
|
NULL
|
NULL
|
NULL
|
|
49355
|
1763
|
2
|
2026-05-18T06:37:06.583139+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086226583_m2.jpg...
|
iTerm2
|
NULL
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
DMSActivityMoreSlackcalVIewMistonWindowhelpDescrib DMSActivityMoreSlackcalVIewMistonWindowhelpDescribe wnat you are looking forJiminny... ~Unreads@ Threads60 Huddles• Drafts & sent018) DirectoriesAb External connections* Starred8 fiminny-x-integrati...platform-inner-team# Channels# ai-chapteru alerts# backend# bugsi confusion-clinic# curiosity lab# engineering# general# liminnv-bgi nlatform-nickets# product launchesa random# releases# sofa-office# support# thank-yousD Twilio> Users# Vocabulary> IMizoomlplattorm-inn….9 10MessagesChannel OverviewMorehttos://iiminnv.atlassian.net/browse/JY-20534edited)battachmentsFallback mechanism for users ...57 Story JY-20912 in Jira CloudCall Scoring filter for Exec rep...# Story JY-20771 in Jira CloudSCIM > Allow customers to m...Story JY-208/8 in Jira CloucFnable userUsers can flter Scores in Team...anveXew thutirelettAl Call Scoring quick access in...5i Storr IV-20524 in lira CloudNikolay Yankov 12:39 PMРазбира се, каквото кажетеMessage & platform-inner-team+ Aa© Command.php© CreateDatabaseUsers.php(C) DatabaseTableCount nhnl© DeleteOldAiCrmNotesCommand.php© DeleteS3LeftoversCommand.phpC) DevPostmanCommand.nhn69 6t >@ nisrizoVinAiDarticinantldentificationCom.9 CncruntTokonsCommand nhnl74 6t© EngagementStatsReqenerateCommand.rFoatureFlagsHelper.onp81 6)cts.php x © EventServiceProvider.phpAcuvity.ongOPurgeLookupcache.pnp© SyncPlanhat.phpAcuivityLeadConverted.php©) salestorce/service.php( PlaybackController.phppnp api.phodConverted.php© CreateSelfCoachedEvent.phpeateSmsSentevent.ohpC) PlanhatActivityListener.phoAutomatedReportsRepositorv.ohd• aoi y2.oholC) RequestGenerateReport.Job.oho/omatedReport.phpA console [STAGING]Commands Crm"olrantature of the console command.= 'crm:sunc-obnects «team?, «--svncs':Idescrintion.protected $description = 'Sync remote CRM objects.';* Eyecuto the concole commandlpublic function handle: voidf...;protected function getStaggerDelavSeconds@: floatf...protected function getMaxDelavSeconds@: intf...}protected function getlogPrefix@: stringf...;=custom.log=laravel.log4 SF jiminny@localhost] ›© TestPipedriveOfficialSdkCommand.php223225256O KernelpnpPlaygroundselect * from users where name = 'IntegraSELECT * FROM social_accounts WHERE soci.selecc * rron accivlcles where crm cont1oand recordina state = "recorded' and duraISELECT * FROM activities WHERE UU1dtO D1select * From Leads:SELECT * FROM activities WIERE uid to biSELECT * FROM activities WIERE id IN (16SELECT * FROM activities where status =SEIEC * SROM +racks WHERS activitv id =SELECTFROM activities aIOTN usens ut 1..n<->1: ON arusen id = m.idWHEREa.status = "complered"AND uuid_to_bin('641f1acb-16b8-42d1-8AND a.deleted_ at IS NULLAND EXISTSSELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual start time DESCLIMIT 25:select * from teams where id = 19;select * from crm confiqurations where p'SELECICONCATU.id. CASE WHEN U.id = t.owneru. emanSA.*+ownen id ER0M social accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idWHERE u.team_id = 19 and sa.provider = 'pCSICAT + CPAM cocial sccounte WHEpE id =() DXP4800PLUS-B5F8Getting Started - AFFiNE(*) Screenpipe - ArchiveDownload screenpipe - ge*• Self-Hosted Software and AS Finance HubNew TabM Asl aet older. now 70. 1amlNew jobs similar to Yeб nрсВ Завежпане на шета онпайPhotos - Google Photos) New Tabfinance-hub.lakylak.xyzFinance HubY Filters (2SearchI• Recinient descrintion...All SourcesAll Statuses01/ 05 /202678 transactions (balance alerts hidden) ITotal: 2,246.65 EUR incl. BGN→EUR|DATE JPECIDIENT18 May 2026, 08:06hostinger17 Mav 2026. 16:34RIIL A 101 18. SOFIA. RGI16 Mav 2026. 13:38VIVACOM. SOFIA. BG16 Mav 2026. 10:59PARKING. SOFIA. BG15 May 2026. 17:52VIMARD EOOD. SOFIA, BG15 May 2026, 08:53LIDL BALGARIYA EOOD, SOFIYA, BGR15 Mav 2026 09:49LIDL BALGARIYA EOOD, SOFIYA, BGR14 Mav 2026 16:101Roosteroid Rucharest RO14 Mav 2026 15:19CI AUDE14 Mav 2026. 12:08FANTASTICO 43. SOFIA. BG13 Mav 2026. 08:46lCBA EKO MARKET. SOFIA. BG12 May 2026, 08:45lBGR SOFIA CBA EKO MARKET10 May 2026, 21:57IRL 08000480408 APPLE COM BILL10 Mav 2026 17:16CRA ECO MARKET COFIA RGI10 Mav 2026 04:26CitvGate Cofia Trancit COFIA RGP09 Mav 2026. 15:45RGR SOFIA CRA ECO MARKET09 Mav 2026. 15:02VIADENTAL. SOFIA. BG8õ PaymentsL Upload CSVAll Tvoes18/ 05/20262026-05-01 - 2026-05-18|AMOUNT N22 02 FIIR|3.65 EUR36.91 EURI6.00 EUR7.98 EUR0.01 EUR87.51 EUR9.89 EUR21.60 SUP13.36 EUR3.50 EUR7.20 EUR3.99 EUR5.28 FIIP160 SIIP8.87 EUR124.00 EUR100% 2• Mon 18 May 9:37:06^ X ClearAll Tags*) Skin@ Skio*) Skip@ Skip@Skip• Skip• Skip|Skio |• Skio• Skip• Skip |F Skin() Skin*) Skin@ Skio* Skip...
|
NULL
|
-619795055961170425
|
NULL
|
visual_change
|
ocr
|
NULL
|
DMSActivityMoreSlackcalVIewMistonWindowhelpDescrib DMSActivityMoreSlackcalVIewMistonWindowhelpDescribe wnat you are looking forJiminny... ~Unreads@ Threads60 Huddles• Drafts & sent018) DirectoriesAb External connections* Starred8 fiminny-x-integrati...platform-inner-team# Channels# ai-chapteru alerts# backend# bugsi confusion-clinic# curiosity lab# engineering# general# liminnv-bgi nlatform-nickets# product launchesa random# releases# sofa-office# support# thank-yousD Twilio> Users# Vocabulary> IMizoomlplattorm-inn….9 10MessagesChannel OverviewMorehttos://iiminnv.atlassian.net/browse/JY-20534edited)battachmentsFallback mechanism for users ...57 Story JY-20912 in Jira CloudCall Scoring filter for Exec rep...# Story JY-20771 in Jira CloudSCIM > Allow customers to m...Story JY-208/8 in Jira CloucFnable userUsers can flter Scores in Team...anveXew thutirelettAl Call Scoring quick access in...5i Storr IV-20524 in lira CloudNikolay Yankov 12:39 PMРазбира се, каквото кажетеMessage & platform-inner-team+ Aa© Command.php© CreateDatabaseUsers.php(C) DatabaseTableCount nhnl© DeleteOldAiCrmNotesCommand.php© DeleteS3LeftoversCommand.phpC) DevPostmanCommand.nhn69 6t >@ nisrizoVinAiDarticinantldentificationCom.9 CncruntTokonsCommand nhnl74 6t© EngagementStatsReqenerateCommand.rFoatureFlagsHelper.onp81 6)cts.php x © EventServiceProvider.phpAcuvity.ongOPurgeLookupcache.pnp© SyncPlanhat.phpAcuivityLeadConverted.php©) salestorce/service.php( PlaybackController.phppnp api.phodConverted.php© CreateSelfCoachedEvent.phpeateSmsSentevent.ohpC) PlanhatActivityListener.phoAutomatedReportsRepositorv.ohd• aoi y2.oholC) RequestGenerateReport.Job.oho/omatedReport.phpA console [STAGING]Commands Crm"olrantature of the console command.= 'crm:sunc-obnects «team?, «--svncs':Idescrintion.protected $description = 'Sync remote CRM objects.';* Eyecuto the concole commandlpublic function handle: voidf...;protected function getStaggerDelavSeconds@: floatf...protected function getMaxDelavSeconds@: intf...}protected function getlogPrefix@: stringf...;=custom.log=laravel.log4 SF jiminny@localhost] ›© TestPipedriveOfficialSdkCommand.php223225256O KernelpnpPlaygroundselect * from users where name = 'IntegraSELECT * FROM social_accounts WHERE soci.selecc * rron accivlcles where crm cont1oand recordina state = "recorded' and duraISELECT * FROM activities WHERE UU1dtO D1select * From Leads:SELECT * FROM activities WIERE uid to biSELECT * FROM activities WIERE id IN (16SELECT * FROM activities where status =SEIEC * SROM +racks WHERS activitv id =SELECTFROM activities aIOTN usens ut 1..n<->1: ON arusen id = m.idWHEREa.status = "complered"AND uuid_to_bin('641f1acb-16b8-42d1-8AND a.deleted_ at IS NULLAND EXISTSSELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual start time DESCLIMIT 25:select * from teams where id = 19;select * from crm confiqurations where p'SELECICONCATU.id. CASE WHEN U.id = t.owneru. emanSA.*+ownen id ER0M social accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idWHERE u.team_id = 19 and sa.provider = 'pCSICAT + CPAM cocial sccounte WHEpE id =() DXP4800PLUS-B5F8Getting Started - AFFiNE(*) Screenpipe - ArchiveDownload screenpipe - ge*• Self-Hosted Software and AS Finance HubNew TabM Asl aet older. now 70. 1amlNew jobs similar to Yeб nрсВ Завежпане на шета онпайPhotos - Google Photos) New Tabfinance-hub.lakylak.xyzFinance HubY Filters (2SearchI• Recinient descrintion...All SourcesAll Statuses01/ 05 /202678 transactions (balance alerts hidden) ITotal: 2,246.65 EUR incl. BGN→EUR|DATE JPECIDIENT18 May 2026, 08:06hostinger17 Mav 2026. 16:34RIIL A 101 18. SOFIA. RGI16 Mav 2026. 13:38VIVACOM. SOFIA. BG16 Mav 2026. 10:59PARKING. SOFIA. BG15 May 2026. 17:52VIMARD EOOD. SOFIA, BG15 May 2026, 08:53LIDL BALGARIYA EOOD, SOFIYA, BGR15 Mav 2026 09:49LIDL BALGARIYA EOOD, SOFIYA, BGR14 Mav 2026 16:101Roosteroid Rucharest RO14 Mav 2026 15:19CI AUDE14 Mav 2026. 12:08FANTASTICO 43. SOFIA. BG13 Mav 2026. 08:46lCBA EKO MARKET. SOFIA. BG12 May 2026, 08:45lBGR SOFIA CBA EKO MARKET10 May 2026, 21:57IRL 08000480408 APPLE COM BILL10 Mav 2026 17:16CRA ECO MARKET COFIA RGI10 Mav 2026 04:26CitvGate Cofia Trancit COFIA RGP09 Mav 2026. 15:45RGR SOFIA CRA ECO MARKET09 Mav 2026. 15:02VIADENTAL. SOFIA. BG8õ PaymentsL Upload CSVAll Tvoes18/ 05/20262026-05-01 - 2026-05-18|AMOUNT N22 02 FIIR|3.65 EUR36.91 EURI6.00 EUR7.98 EUR0.01 EUR87.51 EUR9.89 EUR21.60 SUP13.36 EUR3.50 EUR7.20 EUR3.99 EUR5.28 FIIP160 SIIP8.87 EUR124.00 EUR100% 2• Mon 18 May 9:37:06^ X ClearAll Tags*) Skin@ Skio*) Skip@ Skip@Skip• Skip• Skip|Skio |• Skio• Skip• Skip |F Skin() Skin*) Skin@ Skio* Skip...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49356
|
1763
|
3
|
2026-05-18T06:37:24.687152+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086244687_m2.jpg...
|
iTerm2
|
NULL
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
DMSActivityMoreSlackcalVIewMistonWindowhelpDescrib DMSActivityMoreSlackcalVIewMistonWindowhelpDescribe wnat you are looking forJiminny... ~Unreads@ Threads60 Huddles• Drafts & sent018) DirectoriesAb External connections* Starred8 fiminny-x-integrati...platform-inner-team# Channels# ai-chapteru alerts# backend# bugsi confusion-clinic# curiosity lab# engineering# general# liminnv-bgi nlatform-nickets# product launchesa random# releases# sofa-office# support# thank-yousD Twilio> Users# Vocabulary> IMizoomlplattorm-inn….9 10MessagesChannel OverviewMorehttos://iiminnv.atlassian.net/browse/JY-20534(edited))battachmentsFallback mechanism for users ...57 Story JY-20912 in Jira CloudCall Scoring filter for Exec rep...# Story JY-20771 in Jira CloudSCIM > Allow customers to m...Story JY-208/8 in Jira CloucEnable users to use their new ...Users can flter Scores in Team...anveXew thutirelettAl Call Scoring quick access in...5i Storr IV-20524 in lira CloudNikolay Yankov 12:39 PMРазбира се, каквото кажетеMessage & platform-inner-team+ Аa© Command.php© CreateDatabaseUsers.php(C) DatabaseTableCount nhnl© DeleteOldAiCrmNotesCommand.php© DeleteS3LeftoversCommand.phpC) DevPostmanCommand.nhn69 6t >@ nisrizoVinAiDarticinantldentificationCom.9 CncruntTokonsCommand nhnl74 6t© EngagementStatsReqenerateCommand.r( CoatureFlaasHeloer.php81 6)cts.php x © EventServiceProvider.phpAcuvity.ongOPurgeLookupcache.pnp© SyncPlanhat.phpAcuivityLeadConverted.php©) salestorce/service.php( PlaybackController.phppnp api.phodConverted.php© CreateSelfCoachedEvent.phpeateSmsSentevent.ohpC) PlanhatActivityListener.phoAutomatedReportsRepositorv.ohd• aoi y2.oholC) RequestGenerateReport.Job.oho/omatedReport.phpA console [STAGING]Commands Crn"Commandolrantature of the console command.= 'crm:sunc-obnects «team?, «--svncs':Idescrintion.protected $description = 'Sync remote CRM objects.';* Eyecuto the concole commandlpublic function handle: voidf...;protected function getStaggerDelavSeconds@: floatf...protected function getMaxDelavSeconds@: int{...}protected function getlogPrefix@: stringf...;=custom.log=laravel.log4 SF jiminny@localhost] ›© TestPipedriveOfficialSdkCommand.php223225256O KernelpnpPlaygroundselect * from users where name = 'IntegraSELECT * FROM social_accounts WHERE soci.selecc * rron accivlcles where crm cont1oand recordina state = "recorded' and duraISELECT * FROM activities WHERE UU1dtO D1select * From Leads:SELECT * FROM activities WIERE uid to biSELECT * FROM activities WIERE id IN (16SELECT * FROM activities where status =SEIEC * SROM +racks WHERS activitv id =SELECTFROM activities aIOTN usens ut 1..n<->1: ON arusen id = m.idWHEREa.status = "complered"AND uuid_to_bin('641f1acb-16b8-42d1-8AND a.deleted_ at IS NULLAND EXISTSSELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual start time DESCLIMIT 25:select * from teams where id = 19;select * from crm confiqurations where p'SELECICONCATU.id. CASE WHEN U.id = t.owneru. emanSA.*+ownen id ER0M social accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idWHERE u.team_id = 19 and sa.provider = 'pCSICAT + CPAM cocial sccounte WHEpE id =() DXP4800PLUS-B5F8Getting Started - AFFiNE(*) Screenpipe - ArchiveDownload screenpipe - ge*• Self-Hosted Software and AS Finance HubNew TabM Asl aet older. now 70. 1amlNew jobs similar to Yeб nрсВ Завежпане на шета онпайPhotos - Google Photos) New Tabfinance-hub.lakylak.xyzFinance HubY Filters (2SearchI• Recinient descrintion...All SourcesAll Statuses01/ 05 /202678 transactions (balance alerts hidden) ITotal: 2,246.65 EUR incl. BGN→EUR|DATE JPECIDIENT18 May 2026, 08:06hostinger17 Mav 2026. 16:34RIIL A 101 18. SOFIA. RGI16 Mav 2026. 13:38VIVACOM. SOFIA. BG16 Mav 2026. 10:59PARKING. SOFIA. BG15 May 2026. 17:52VIMARD EOOD. SOFIA, BG15 May 2026, 08:53LIDL BALGARIYA EOOD, SOFIYA, BGR15 Mav 2026 09:49LIDL BALGARIYA EOOD, SOFIYA, BGR14 Mav 2026 16:101Roosteroid Rucharest RO14 Mav 2026 15:19CI AUDE14 Mav 2026. 12:08FANTASTICO 43. SOFIA. BG13 Mav 2026. 08:46lCBA EKO MARKET. SOFIA. BG12 May 2026, 08:45lBGR SOFIA CBA EKO MARKET10 May 2026, 21:57IRL 08000480408 APPLE COM BILL10 Mav 2026 17:16CRA ECO MARKET COFIA RGI10 Mav 2026 04:26CitvGate Cofia Trancit COFIA RGP09 Mav 2026. 15:45RGR SOFIA CRA ECO MARKET09 Mav 2026. 15:02VIADENTAL. SOFIA. BG8õ PaymentsL Upload CSVAll Tvoes18/ 05/20262026-05-01 - 2026-05-18|AMOUNT N22 02 FIIR|3.65 EUR36.91 EURI6.00 EUR7.98 EUR0.01 EUR87.51 EUR9.89 EUR21.60 SUP13.36 EUR3.50 EUR7.20 EUR3.99 EUR5.28 FIIP160 SIIP8.87 EUR124.00 EUR100% 2• Mon 18 May 9:37:24^ X ClearAll Tags*) Skin@ Skio*) Skip@ Skip@Skip• Skip• Skip|Skio |• Skio• Skip• Skip |F Skin() Skin*) Skin@ Skio* Skip...
|
NULL
|
3511624612440335606
|
NULL
|
visual_change
|
ocr
|
NULL
|
DMSActivityMoreSlackcalVIewMistonWindowhelpDescrib DMSActivityMoreSlackcalVIewMistonWindowhelpDescribe wnat you are looking forJiminny... ~Unreads@ Threads60 Huddles• Drafts & sent018) DirectoriesAb External connections* Starred8 fiminny-x-integrati...platform-inner-team# Channels# ai-chapteru alerts# backend# bugsi confusion-clinic# curiosity lab# engineering# general# liminnv-bgi nlatform-nickets# product launchesa random# releases# sofa-office# support# thank-yousD Twilio> Users# Vocabulary> IMizoomlplattorm-inn….9 10MessagesChannel OverviewMorehttos://iiminnv.atlassian.net/browse/JY-20534(edited))battachmentsFallback mechanism for users ...57 Story JY-20912 in Jira CloudCall Scoring filter for Exec rep...# Story JY-20771 in Jira CloudSCIM > Allow customers to m...Story JY-208/8 in Jira CloucEnable users to use their new ...Users can flter Scores in Team...anveXew thutirelettAl Call Scoring quick access in...5i Storr IV-20524 in lira CloudNikolay Yankov 12:39 PMРазбира се, каквото кажетеMessage & platform-inner-team+ Аa© Command.php© CreateDatabaseUsers.php(C) DatabaseTableCount nhnl© DeleteOldAiCrmNotesCommand.php© DeleteS3LeftoversCommand.phpC) DevPostmanCommand.nhn69 6t >@ nisrizoVinAiDarticinantldentificationCom.9 CncruntTokonsCommand nhnl74 6t© EngagementStatsReqenerateCommand.r( CoatureFlaasHeloer.php81 6)cts.php x © EventServiceProvider.phpAcuvity.ongOPurgeLookupcache.pnp© SyncPlanhat.phpAcuivityLeadConverted.php©) salestorce/service.php( PlaybackController.phppnp api.phodConverted.php© CreateSelfCoachedEvent.phpeateSmsSentevent.ohpC) PlanhatActivityListener.phoAutomatedReportsRepositorv.ohd• aoi y2.oholC) RequestGenerateReport.Job.oho/omatedReport.phpA console [STAGING]Commands Crn"Commandolrantature of the console command.= 'crm:sunc-obnects «team?, «--svncs':Idescrintion.protected $description = 'Sync remote CRM objects.';* Eyecuto the concole commandlpublic function handle: voidf...;protected function getStaggerDelavSeconds@: floatf...protected function getMaxDelavSeconds@: int{...}protected function getlogPrefix@: stringf...;=custom.log=laravel.log4 SF jiminny@localhost] ›© TestPipedriveOfficialSdkCommand.php223225256O KernelpnpPlaygroundselect * from users where name = 'IntegraSELECT * FROM social_accounts WHERE soci.selecc * rron accivlcles where crm cont1oand recordina state = "recorded' and duraISELECT * FROM activities WHERE UU1dtO D1select * From Leads:SELECT * FROM activities WIERE uid to biSELECT * FROM activities WIERE id IN (16SELECT * FROM activities where status =SEIEC * SROM +racks WHERS activitv id =SELECTFROM activities aIOTN usens ut 1..n<->1: ON arusen id = m.idWHEREa.status = "complered"AND uuid_to_bin('641f1acb-16b8-42d1-8AND a.deleted_ at IS NULLAND EXISTSSELECT 1 FROM tracks tWHERE t.activity_id = a.idAND t.type IN ('audio', 'video')ORDER BY a.actual start time DESCLIMIT 25:select * from teams where id = 19;select * from crm confiqurations where p'SELECICONCATU.id. CASE WHEN U.id = t.owneru. emanSA.*+ownen id ER0M social accounts saJOIN users u on u.id = sa.sociable_idLIOTN teams + 1.n<->1: on +.id = u.team idWHERE u.team_id = 19 and sa.provider = 'pCSICAT + CPAM cocial sccounte WHEpE id =() DXP4800PLUS-B5F8Getting Started - AFFiNE(*) Screenpipe - ArchiveDownload screenpipe - ge*• Self-Hosted Software and AS Finance HubNew TabM Asl aet older. now 70. 1amlNew jobs similar to Yeб nрсВ Завежпане на шета онпайPhotos - Google Photos) New Tabfinance-hub.lakylak.xyzFinance HubY Filters (2SearchI• Recinient descrintion...All SourcesAll Statuses01/ 05 /202678 transactions (balance alerts hidden) ITotal: 2,246.65 EUR incl. BGN→EUR|DATE JPECIDIENT18 May 2026, 08:06hostinger17 Mav 2026. 16:34RIIL A 101 18. SOFIA. RGI16 Mav 2026. 13:38VIVACOM. SOFIA. BG16 Mav 2026. 10:59PARKING. SOFIA. BG15 May 2026. 17:52VIMARD EOOD. SOFIA, BG15 May 2026, 08:53LIDL BALGARIYA EOOD, SOFIYA, BGR15 Mav 2026 09:49LIDL BALGARIYA EOOD, SOFIYA, BGR14 Mav 2026 16:101Roosteroid Rucharest RO14 Mav 2026 15:19CI AUDE14 Mav 2026. 12:08FANTASTICO 43. SOFIA. BG13 Mav 2026. 08:46lCBA EKO MARKET. SOFIA. BG12 May 2026, 08:45lBGR SOFIA CBA EKO MARKET10 May 2026, 21:57IRL 08000480408 APPLE COM BILL10 Mav 2026 17:16CRA ECO MARKET COFIA RGI10 Mav 2026 04:26CitvGate Cofia Trancit COFIA RGP09 Mav 2026. 15:45RGR SOFIA CRA ECO MARKET09 Mav 2026. 15:02VIADENTAL. SOFIA. BG8õ PaymentsL Upload CSVAll Tvoes18/ 05/20262026-05-01 - 2026-05-18|AMOUNT N22 02 FIIR|3.65 EUR36.91 EURI6.00 EUR7.98 EUR0.01 EUR87.51 EUR9.89 EUR21.60 SUP13.36 EUR3.50 EUR7.20 EUR3.99 EUR5.28 FIIP160 SIIP8.87 EUR124.00 EUR100% 2• Mon 18 May 9:37:24^ X ClearAll Tags*) Skin@ Skio*) Skip@ Skip@Skip• Skip• Skip|Skio |• Skio• Skip• Skip |F Skin() Skin*) Skin@ Skio* Skip...
|
49355
|
NULL
|
NULL
|
NULL
|
|
49357
|
1762
|
1
|
2026-05-18T06:37:31.043807+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086251043_m1.jpg...
|
Firefox
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira — Work...
|
1
|
jiminny.atlassian.net/jira/software/c/projects/JY/ jiminny.atlassian.net/jira/software/c/projects/JY/boards/37...
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Close tab
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
[JY-20891] Sidekick SMS issue - Jira
[JY-20891] Sidekick SMS issue - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
Usage | Windsurf
Usage | Windsurf
[SRD-6853] Moxso - Potential deal stages bug - Jira
[SRD-6853] Moxso - Potential deal stages bug - Jira
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Pipedrive API Reference and Documentation
Pipedrive API Reference and Documentation
pipedrive/client-php: Pipedrive API client for PHP
pipedrive/client-php: Pipedrive API client for PHP
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Personal Access Tokens (Classic)
Personal Access Tokens (Classic)
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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
Add people
Add people
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
Docs
Docs
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 Aneliya Angelova
Filter assignees by Nikolay Ivanov
Filter assignees by Nikolay Nikolov
Filter assignees by Steliyan Georgiev
Filter assignees by Unassigned
Epic
Epic
Type
Type
Quick filters
Quick filters
Complete sprint
Complete sprint
Sprint details
Sprint details
Group by Queries
Group
: Queries
Sprint insights
Sprint insights
View settings
View settings
More actions
More actions
Ready For DEV
READY FOR DEV
5
JY-20676 Notify the user if a Panorama prompts is deleted but is used in AJ Report. Use the enter key to load the work item.
Notify the user if a Panorama prompts is deleted but is used in AJ Report
AJ Reports, Edit Parent
AJ REPORTS
Backlog
JY-20676...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20891] Sidekick SMS issue - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20891] Sidekick SMS issue - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Usage | Windsurf","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Usage | Windsurf","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[SRD-6853] Moxso - Potential deal stages bug - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[SRD-6853] Moxso - Potential deal stages bug - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipelines - jiminny/app","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pipelines - jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Feed — jiminny — Sentry","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Feed — jiminny — Sentry","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipedrive API Reference and Documentation","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pipedrive API Reference and Documentation","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"pipedrive/client-php: Pipedrive API client for PHP","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"pipedrive/client-php: Pipedrive API client for PHP","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - lukas.kovalik@jiminny.com - Jiminny Mail","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - lukas.kovalik@jiminny.com - Jiminny Mail","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pull requests · jiminny/app","depth":4,"on_screen":true,"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,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Personal Access Tokens (Classic)","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Personal Access Tokens (Classic)","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"on_screen":true,"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,"on_screen":true,"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,"on_screen":true,"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,"on_screen":true,"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,"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to:","depth":9,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Top Bar","depth":10,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Top Bar","depth":11,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Sidebar","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Sidebar","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Main Content","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Main Content","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Space navigation","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Space navigation","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse sidebar [","depth":9,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Collapse sidebar [","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Switch sites or apps","depth":10,"on_screen":true,"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":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Go to your Jira homepage","depth":9,"on_screen":true,"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,"on_screen":true,"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":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Rovo Ask Rovo","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Rovo","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Notifications","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notifications","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Help","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Help","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Settings","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Settings","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"lukas.kovalik@jiminny.com","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"lukas.kovalik@jiminny.com","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"For you","depth":12,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"For you","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Recent","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Recent","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Starred","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Starred","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Apps","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Apps","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Apps","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Spaces","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"Spaces","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create space","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create space","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for spaces","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Recent","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Service-Desk","depth":17,"on_screen":true,"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":20,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Service-Desk","depth":18,"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":17,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":20,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Jiminny (New)","depth":18,"on_screen":true,"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":18,"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Jiminny (New)","depth":18,"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Platform Team","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform Team","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Capture Team","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Capture Team","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Enterprise Stability Issues 🤕","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enterprise Stability Issues 🤕","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Processing Team","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Processing Team","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"SE Kanban","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SE Kanban","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More spaces","depth":17,"on_screen":true,"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":20,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Filters","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Filters","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Filters","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Dashboards","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Dashboards","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create dashboard","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create dashboard","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Dashboards","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Operations","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Operations","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Operations","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Confluence , (opens new window)","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Confluence","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Teams , (opens new window)","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Teams","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"open menu","depth":14,"on_screen":true,"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":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Customise sidebar","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Customise sidebar","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Resize side navigation panel","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Spaces","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Spaces","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Platform Team","depth":10,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Platform Team","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add people","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add people","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":10,"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Share","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Automation","depth":10,"on_screen":true,"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":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Give feedback","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Enter full screen","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enter full screen","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Summary","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Summary","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Timeline","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Timeline","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Backlog","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Backlog","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Active sprints","depth":13,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Active sprints","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Calendar","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Calendar","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Reports","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reports","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Testing Board","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Testing Board","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"List","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"List","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Forms","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Forms","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Components","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Components","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Development","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Development","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Code","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Code","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Security","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Security","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Releases","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Releases","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Deployments","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Deployments","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Archived work items","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Archived work items","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Docs","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Docs","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Shortcuts","depth":14,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Shortcuts","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Slack integration","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Slack integration","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Reporting Center","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reporting Center","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add to navigation","depth":11,"on_screen":true,"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":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Search on current page","depth":11,"on_screen":true,"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":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Filter assignees by Lukas Kovalik","depth":11,"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Filter assignees by Aneliya Angelova","depth":11,"on_screen":true,"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":11,"on_screen":true,"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":11,"on_screen":true,"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":11,"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Filter assignees by Unassigned","depth":11,"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Epic","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Epic","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Type","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Type","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Quick filters","depth":13,"on_screen":true,"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":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Complete sprint","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Complete sprint","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Sprint details","depth":10,"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Group by Queries","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Group","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":": Queries","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Sprint insights","depth":10,"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"View settings","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"View settings","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More actions","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Ready For DEV","depth":16,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"READY FOR DEV","depth":18,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5","depth":21,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"JY-20676 Notify the user if a Panorama prompts is deleted but is used in AJ Report. Use the enter key to load the work item.","depth":16,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notify the user if a Panorama prompts is deleted but is used in AJ Report","depth":18,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"AJ Reports, Edit Parent","depth":17,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AJ REPORTS","depth":21,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Backlog","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20676","depth":17,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false}]...
|
9189030597182010849
|
1320979302388519022
|
idle
|
accessibility
|
NULL
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Close tab
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
[JY-20891] Sidekick SMS issue - Jira
[JY-20891] Sidekick SMS issue - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
Usage | Windsurf
Usage | Windsurf
[SRD-6853] Moxso - Potential deal stages bug - Jira
[SRD-6853] Moxso - Potential deal stages bug - Jira
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Pipedrive API Reference and Documentation
Pipedrive API Reference and Documentation
pipedrive/client-php: Pipedrive API client for PHP
pipedrive/client-php: Pipedrive API client for PHP
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Personal Access Tokens (Classic)
Personal Access Tokens (Classic)
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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
Add people
Add people
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
Docs
Docs
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 Aneliya Angelova
Filter assignees by Nikolay Ivanov
Filter assignees by Nikolay Nikolov
Filter assignees by Steliyan Georgiev
Filter assignees by Unassigned
Epic
Epic
Type
Type
Quick filters
Quick filters
Complete sprint
Complete sprint
Sprint details
Sprint details
Group by Queries
Group
: Queries
Sprint insights
Sprint insights
View settings
View settings
More actions
More actions
Ready For DEV
READY FOR DEV
5
JY-20676 Notify the user if a Panorama prompts is deleted but is used in AJ Report. Use the enter key to load the work item.
Notify the user if a Panorama prompts is deleted but is used in AJ Report
AJ Reports, Edit Parent
AJ REPORTS
Backlog
JY-20676...
|
49353
|
NULL
|
NULL
|
NULL
|
|
49358
|
1762
|
2
|
2026-05-18T06:37:31.559534+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086251559_m1.jpg...
|
Firefox
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira — Work...
|
1
|
jiminny.atlassian.net/jira/software/c/projects/JY/ jiminny.atlassian.net/jira/software/c/projects/JY/boards/37...
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Close tab
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
[JY-20891] Sidekick SMS issue - Jira
[JY-20891] Sidekick SMS issue - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
Usage | Windsurf
Usage | Windsurf
[SRD-6853] Moxso - Potential deal stages bug - Jira
[SRD-6853] Moxso - Potential deal stages bug - Jira
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Pipedrive API Reference and Documentation
Pipedrive API Reference and Documentation
pipedrive/client-php: Pipedrive API client for PHP
pipedrive/client-php: Pipedrive API client for PHP
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Personal Access Tokens (Classic)
Personal Access Tokens (Classic)
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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
Add people
Add people
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
Docs
Docs
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 Aneliya Angelova
Filter assignees by Nikolay Ivanov
Filter assignees by Nikolay Nikolov
Filter assignees by Steliyan Georgiev
Filter assignees by Unassigned
Epic
Epic
Type
Type
Quick filters
Quick filters
Complete sprint
Complete sprint
Sprint details
Sprint details
Group by Queries
Group
: Queries
Sprint insights
Sprint insights
View settings
View settings
More actions
More actions...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20891] Sidekick SMS issue - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20891] Sidekick SMS issue - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Usage | Windsurf","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Usage | Windsurf","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[SRD-6853] Moxso - Potential deal stages bug - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[SRD-6853] Moxso - Potential deal stages bug - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipelines - jiminny/app","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pipelines - jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Feed — jiminny — Sentry","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Feed — jiminny — Sentry","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipedrive API Reference and Documentation","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pipedrive API Reference and Documentation","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"pipedrive/client-php: Pipedrive API client for PHP","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"pipedrive/client-php: Pipedrive API client for PHP","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - lukas.kovalik@jiminny.com - Jiminny Mail","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - lukas.kovalik@jiminny.com - Jiminny Mail","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pull requests · jiminny/app","depth":4,"on_screen":true,"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,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Personal Access Tokens (Classic)","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Personal Access Tokens (Classic)","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"on_screen":true,"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,"on_screen":true,"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,"on_screen":true,"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,"on_screen":true,"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,"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to:","depth":9,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Top Bar","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Top Bar","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Sidebar","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Sidebar","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Main Content","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Main Content","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Space navigation","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Space navigation","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse sidebar [","depth":9,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Collapse sidebar [","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Switch sites or apps","depth":10,"on_screen":true,"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":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Go to your Jira homepage","depth":9,"on_screen":true,"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,"on_screen":true,"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":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Rovo Ask Rovo","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Rovo","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Notifications","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notifications","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Help","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Help","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Settings","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Settings","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"lukas.kovalik@jiminny.com","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"lukas.kovalik@jiminny.com","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"For you","depth":12,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"For you","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Recent","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Recent","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Starred","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Starred","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Apps","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Apps","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Apps","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Spaces","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"Spaces","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create space","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create space","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for spaces","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Recent","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Service-Desk","depth":17,"on_screen":true,"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":20,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Service-Desk","depth":18,"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":17,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":20,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Jiminny (New)","depth":18,"on_screen":true,"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":18,"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Jiminny (New)","depth":18,"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Platform Team","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform Team","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Capture Team","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Capture Team","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Enterprise Stability Issues 🤕","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enterprise Stability Issues 🤕","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Processing Team","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Processing Team","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"SE Kanban","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SE Kanban","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More spaces","depth":17,"on_screen":true,"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":20,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Filters","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Filters","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Filters","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Dashboards","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Dashboards","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create dashboard","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create dashboard","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Dashboards","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Operations","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Operations","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Operations","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Confluence , (opens new window)","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Confluence","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Teams , (opens new window)","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Teams","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"open menu","depth":14,"on_screen":true,"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":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Customise sidebar","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Customise sidebar","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Resize side navigation panel","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Spaces","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Spaces","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Platform Team","depth":10,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Platform Team","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add people","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add people","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":10,"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Share","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Automation","depth":10,"on_screen":true,"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":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Give feedback","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Enter full screen","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enter full screen","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Summary","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Summary","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Timeline","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Timeline","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Backlog","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Backlog","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Active sprints","depth":13,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Active sprints","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Calendar","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Calendar","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Reports","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reports","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Testing Board","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Testing Board","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"List","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"List","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Forms","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Forms","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Components","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Components","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Development","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Development","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Code","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Code","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Security","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Security","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Releases","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Releases","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Deployments","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Deployments","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Archived work items","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Archived work items","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Docs","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Docs","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Shortcuts","depth":14,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Shortcuts","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Slack integration","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Slack integration","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Reporting Center","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reporting Center","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add to navigation","depth":11,"on_screen":true,"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":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Search on current page","depth":11,"on_screen":true,"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":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Filter assignees by Lukas Kovalik","depth":11,"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Filter assignees by Aneliya Angelova","depth":11,"on_screen":true,"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":11,"on_screen":true,"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":11,"on_screen":true,"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":11,"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Filter assignees by Unassigned","depth":11,"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Epic","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Epic","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Type","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Type","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Quick filters","depth":13,"on_screen":true,"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":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Complete sprint","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Complete sprint","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Sprint details","depth":10,"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Group by Queries","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Group","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":": Queries","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Sprint insights","depth":10,"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"View settings","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"View settings","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More actions","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
4114246161568241216
|
1320979285175619630
|
visual_change
|
accessibility
|
NULL
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Close tab
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
[JY-20891] Sidekick SMS issue - Jira
[JY-20891] Sidekick SMS issue - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
Usage | Windsurf
Usage | Windsurf
[SRD-6853] Moxso - Potential deal stages bug - Jira
[SRD-6853] Moxso - Potential deal stages bug - Jira
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Pipedrive API Reference and Documentation
Pipedrive API Reference and Documentation
pipedrive/client-php: Pipedrive API client for PHP
pipedrive/client-php: Pipedrive API client for PHP
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Personal Access Tokens (Classic)
Personal Access Tokens (Classic)
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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
Add people
Add people
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
Docs
Docs
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 Aneliya Angelova
Filter assignees by Nikolay Ivanov
Filter assignees by Nikolay Nikolov
Filter assignees by Steliyan Georgiev
Filter assignees by Unassigned
Epic
Epic
Type
Type
Quick filters
Quick filters
Complete sprint
Complete sprint
Sprint details
Sprint details
Group by Queries
Group
: Queries
Sprint insights
Sprint insights
View settings
View settings
More actions
More actions...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49360
|
1763
|
4
|
2026-05-18T06:37:33.117862+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086253117_m2.jpg...
|
Firefox
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira — Work...
|
1
|
jiminny.atlassian.net/jira/software/c/projects/JY/ jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedIssue=JY-20613...
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Close tab
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
[JY-20891] Sidekick SMS issue - Jira
[JY-20891] Sidekick SMS issue - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
Usage | Windsurf
Usage | Windsurf
[SRD-6853] Moxso - Potential deal stages bug - Jira
[SRD-6853] Moxso - Potential deal stages bug - Jira
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Pipedrive API Reference and Documentation
Pipedrive API Reference and Documentation
pipedrive/client-php: Pipedrive API client for PHP
pipedrive/client-php: Pipedrive API client for PHP
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Personal Access Tokens (Classic)
Personal Access Tokens (Classic)
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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
Add people
Add people
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
Docs
Docs
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 Aneliya Angelova
Filter assignees by Nikolay Ivanov
Filter assignees by Nikolay Nikolov
Filter assignees by Steliyan Georgiev
Filter assignees by Unassigned
Epic
Epic
Type
Type
Quick filters
Quick filters
Complete sprint
Complete sprint
Sprint details
Sprint details
Group by Queries
Group
: Queries
Sprint insights
Sprint insights...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira","depth":4,"bounds":{"left":0.0,"top":0.0518755,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.06304868,"width":0.10106383,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.06732048,"top":0.05905826,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.08459697,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.09577015,"width":0.15658244,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20891] Sidekick SMS issue - Jira","depth":4,"bounds":{"left":0.0,"top":0.11731844,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20891] Sidekick SMS issue - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.12849163,"width":0.064494684,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira","depth":4,"bounds":{"left":0.0,"top":0.15003991,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.16121309,"width":0.18068483,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Usage | Windsurf","depth":4,"bounds":{"left":0.0,"top":0.18276137,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Usage | Windsurf","depth":5,"bounds":{"left":0.013297873,"top":0.19393456,"width":0.029920213,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[SRD-6853] Moxso - Potential deal stages bug - Jira","depth":4,"bounds":{"left":0.0,"top":0.21548285,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[SRD-6853] Moxso - Potential deal stages bug - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.22665602,"width":0.09158909,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipelines - jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.2482043,"width":0.07962101,"height":0.032721467},"on_screen":true,"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.25937748,"width":0.039228722,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Feed — jiminny — Sentry","depth":4,"bounds":{"left":0.0,"top":0.28092578,"width":0.07962101,"height":0.032721467},"on_screen":true,"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.29209897,"width":0.042719416,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":4,"bounds":{"left":0.0,"top":0.31364724,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.32482043,"width":0.07413564,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipedrive API Reference and Documentation","depth":4,"bounds":{"left":0.0,"top":0.3463687,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pipedrive API Reference and Documentation","depth":5,"bounds":{"left":0.013297873,"top":0.3575419,"width":0.07679521,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"pipedrive/client-php: Pipedrive API client for PHP","depth":4,"bounds":{"left":0.0,"top":0.3790902,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"pipedrive/client-php: Pipedrive API client for PHP","depth":5,"bounds":{"left":0.013297873,"top":0.39026338,"width":0.08543883,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - lukas.kovalik@jiminny.com - Jiminny Mail","depth":4,"bounds":{"left":0.0,"top":0.41181165,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - lukas.kovalik@jiminny.com - Jiminny Mail","depth":5,"bounds":{"left":0.013297873,"top":0.42298484,"width":0.21791889,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pull requests · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.4445331,"width":0.07962101,"height":0.032721467},"on_screen":true,"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.013297873,"top":0.4557063,"width":0.04537899,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":4,"bounds":{"left":0.0,"top":0.4772546,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.4884278,"width":0.15259309,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":4,"bounds":{"left":0.0,"top":0.509976,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.5211492,"width":0.07413564,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Personal Access Tokens (Classic)","depth":4,"bounds":{"left":0.0,"top":0.54269755,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Personal Access Tokens (Classic)","depth":5,"bounds":{"left":0.013297873,"top":0.55387074,"width":0.058011968,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"bounds":{"left":0.0028257978,"top":0.57701516,"width":0.07413564,"height":0.025538707},"on_screen":true,"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},"on_screen":true,"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},"on_screen":true,"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},"on_screen":true,"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},"on_screen":true,"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},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to:","depth":9,"bounds":{"left":0.090259306,"top":0.07861133,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Top Bar","depth":10,"bounds":{"left":0.090259306,"top":0.097765364,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Top Bar","depth":11,"bounds":{"left":0.090259306,"top":0.097765364,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Sidebar","depth":10,"bounds":{"left":0.090259306,"top":0.11691939,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Sidebar","depth":11,"bounds":{"left":0.090259306,"top":0.11691939,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Main Content","depth":10,"bounds":{"left":0.090259306,"top":0.13607343,"width":0.029421542,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Main Content","depth":11,"bounds":{"left":0.090259306,"top":0.13607343,"width":0.029421542,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Space navigation","depth":10,"bounds":{"left":0.090259306,"top":0.15522745,"width":0.037898935,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Space navigation","depth":11,"bounds":{"left":0.090259306,"top":0.15522745,"width":0.037898935,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse sidebar [","depth":9,"bounds":{"left":0.08361037,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Collapse sidebar [","depth":11,"bounds":{"left":0.0887633,"top":0.06344773,"width":0.039727394,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Switch sites or apps","depth":10,"bounds":{"left":0.095578454,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":12,"bounds":{"left":0.10073138,"top":0.06344773,"width":0.044215426,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Go to your Jira homepage","depth":9,"bounds":{"left":0.10887633,"top":0.057861134,"width":0.029421542,"height":0.025538707},"on_screen":true,"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.40475398,"top":0.06264964,"width":0.24268617,"height":0.015961692},"on_screen":true,"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":10,"bounds":{"left":0.65575135,"top":0.057861134,"width":0.030086435,"height":0.025538707},"on_screen":true,"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.66705453,"top":0.06384677,"width":0.014793883,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Rovo Ask Rovo","depth":12,"bounds":{"left":0.91223407,"top":0.057861134,"width":0.035904255,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Rovo","depth":14,"bounds":{"left":0.92353725,"top":0.06384677,"width":0.020611702,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Notifications","depth":12,"bounds":{"left":0.9494681,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notifications","depth":14,"bounds":{"left":0.954621,"top":0.06344773,"width":0.027759308,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Help","depth":12,"bounds":{"left":0.96143615,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Help","depth":14,"bounds":{"left":0.9665891,"top":0.06344773,"width":0.010139627,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Settings","depth":12,"bounds":{"left":0.9734042,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Settings","depth":14,"bounds":{"left":0.97855717,"top":0.06344773,"width":0.017952127,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"lukas.kovalik@jiminny.com","depth":12,"bounds":{"left":0.98537236,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"lukas.kovalik@jiminny.com","depth":14,"bounds":{"left":0.99052525,"top":0.06344773,"width":0.009474754,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"For you","depth":12,"bounds":{"left":0.08361037,"top":0.09976058,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"For you","depth":15,"bounds":{"left":0.09424867,"top":0.10574621,"width":0.01662234,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Recent","depth":12,"bounds":{"left":0.08361037,"top":0.12529927,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Recent","depth":15,"bounds":{"left":0.09424867,"top":0.13128492,"width":0.015458777,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Starred","depth":12,"bounds":{"left":0.08361037,"top":0.15083799,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Starred","depth":15,"bounds":{"left":0.09424867,"top":0.15682362,"width":0.016456118,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Apps","depth":12,"bounds":{"left":0.08361037,"top":0.1763767,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Apps","depth":15,"bounds":{"left":0.09424867,"top":0.18236233,"width":0.011635638,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Apps","depth":13,"bounds":{"left":0.15309176,"top":0.17956904,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Spaces","depth":12,"bounds":{"left":0.08361037,"top":0.2019154,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"Spaces","depth":15,"bounds":{"left":0.09424867,"top":0.20790103,"width":0.016456118,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create space","depth":13,"bounds":{"left":0.13646941,"top":0.20510775,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create space","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for spaces","depth":13,"bounds":{"left":0.14577793,"top":0.20510775,"width":0.007978723,"height":0.01915403},"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Recent","depth":16,"bounds":{"left":0.08959442,"top":0.23423783,"width":0.013464096,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Service-Desk","depth":17,"bounds":{"left":0.08759973,"top":0.2529928,"width":0.0674867,"height":0.025538707},"on_screen":true,"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":20,"bounds":{"left":0.09823803,"top":0.25897846,"width":0.03025266,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Service-Desk","depth":18,"bounds":{"left":0.15442154,"top":0.25618514,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":17,"bounds":{"left":0.08759973,"top":0.27853152,"width":0.0674867,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":20,"bounds":{"left":0.09823803,"top":0.28451717,"width":0.032081116,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Jiminny (New)","depth":18,"bounds":{"left":0.08892952,"top":0.28172386,"width":0.007978723,"height":0.01915403},"on_screen":true,"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":18,"bounds":{"left":0.13646941,"top":0.28172386,"width":0.007978723,"height":0.01915403},"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Jiminny (New)","depth":18,"bounds":{"left":0.14577793,"top":0.28172386,"width":0.007978723,"height":0.01915403},"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Platform Team","depth":19,"bounds":{"left":0.09158909,"top":0.30407023,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform Team","depth":22,"bounds":{"left":0.1022274,"top":0.31005585,"width":0.032247342,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"bounds":{"left":0.15309176,"top":0.30726257,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Capture Team","depth":19,"bounds":{"left":0.09158909,"top":0.32960895,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Capture Team","depth":22,"bounds":{"left":0.1022274,"top":0.33559456,"width":0.03125,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"bounds":{"left":0.15309176,"top":0.33280128,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Enterprise Stability Issues 🤕","depth":19,"bounds":{"left":0.09158909,"top":0.35514766,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enterprise Stability Issues 🤕","depth":22,"bounds":{"left":0.1022274,"top":0.36113328,"width":0.050531916,"height":0.030726258},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"bounds":{"left":0.15309176,"top":0.35834,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Processing Team","depth":19,"bounds":{"left":0.09158909,"top":0.38068634,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Processing Team","depth":22,"bounds":{"left":0.1022274,"top":0.386672,"width":0.038231384,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"bounds":{"left":0.15309176,"top":0.38387868,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"SE Kanban","depth":19,"bounds":{"left":0.09158909,"top":0.40622506,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SE Kanban","depth":22,"bounds":{"left":0.1022274,"top":0.4122107,"width":0.024102394,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"bounds":{"left":0.15309176,"top":0.4094174,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More spaces","depth":17,"bounds":{"left":0.08759973,"top":0.43176377,"width":0.0674867,"height":0.025538707},"on_screen":true,"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":20,"bounds":{"left":0.09823803,"top":0.43774942,"width":0.028756648,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Filters","depth":12,"bounds":{"left":0.08361037,"top":0.45730248,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Filters","depth":15,"bounds":{"left":0.09424867,"top":0.4632881,"width":0.013796543,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Filters","depth":13,"bounds":{"left":0.15309176,"top":0.46049482,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Dashboards","depth":12,"bounds":{"left":0.08361037,"top":0.4828412,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Dashboards","depth":15,"bounds":{"left":0.09424867,"top":0.4888268,"width":0.026761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create dashboard","depth":13,"bounds":{"left":0.15508644,"top":0.48603353,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create dashboard","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Dashboards","depth":13,"bounds":{"left":0.16240026,"top":0.48603353,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Operations","depth":12,"bounds":{"left":0.08361037,"top":0.5083799,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Operations","depth":15,"bounds":{"left":0.09424867,"top":0.5143655,"width":0.02443484,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Operations","depth":13,"bounds":{"left":0.15309176,"top":0.51157224,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Confluence , (opens new window)","depth":13,"bounds":{"left":0.08361037,"top":0.5434956,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Confluence","depth":17,"bounds":{"left":0.09424867,"top":0.5494813,"width":0.025764627,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"bounds":{"left":0.08361037,"top":0.55706304,"width":0.04837101,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Teams , (opens new window)","depth":13,"bounds":{"left":0.08361037,"top":0.56903434,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Teams","depth":17,"bounds":{"left":0.09424867,"top":0.57501996,"width":0.014793883,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"bounds":{"left":0.08361037,"top":0.5826017,"width":0.04837101,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"open menu","depth":14,"bounds":{"left":0.14378324,"top":0.57222664,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Customise sidebar","depth":12,"bounds":{"left":0.08361037,"top":0.60415006,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Customise sidebar","depth":15,"bounds":{"left":0.09424867,"top":0.6101357,"width":0.04155585,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Resize side navigation panel","depth":13,"bounds":{"left":0.2109375,"top":0.0981644,"width":0.062333778,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Spaces","depth":13,"bounds":{"left":0.16738696,"top":0.09976058,"width":0.016289894,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Spaces","depth":15,"bounds":{"left":0.16738696,"top":0.102553874,"width":0.016289894,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"bounds":{"left":0.18683511,"top":0.102553874,"width":0.0016622341,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":13,"bounds":{"left":0.19165559,"top":0.09976058,"width":0.03174867,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":15,"bounds":{"left":0.19165559,"top":0.102553874,"width":0.03174867,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Platform Team","depth":10,"bounds":{"left":0.16738696,"top":0.12210695,"width":0.045877658,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Platform Team","depth":11,"bounds":{"left":0.16738696,"top":0.12210695,"width":0.045877658,"height":0.019553073},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add people","depth":10,"bounds":{"left":0.21525931,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add people","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":10,"bounds":{"left":0.2278923,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Share","depth":10,"bounds":{"left":0.94148934,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Automation","depth":10,"bounds":{"left":0.95478725,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":10,"bounds":{"left":0.9680851,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Give feedback","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Enter full screen","depth":10,"bounds":{"left":0.98138297,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enter full screen","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Summary","depth":13,"bounds":{"left":0.16472739,"top":0.14764565,"width":0.035904255,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Summary","depth":15,"bounds":{"left":0.17603059,"top":0.15363128,"width":0.021276595,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Timeline","depth":13,"bounds":{"left":0.20196144,"top":0.14764565,"width":0.03357713,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Timeline","depth":15,"bounds":{"left":0.21326463,"top":0.15363128,"width":0.018949468,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Backlog","depth":13,"bounds":{"left":0.23686835,"top":0.14764565,"width":0.032413565,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Backlog","depth":15,"bounds":{"left":0.24817154,"top":0.15363128,"width":0.017785905,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Active sprints","depth":13,"bounds":{"left":0.2706117,"top":0.14764565,"width":0.045212764,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Active sprints","depth":15,"bounds":{"left":0.2819149,"top":0.15363128,"width":0.030585106,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Calendar","depth":13,"bounds":{"left":0.31715426,"top":0.14764565,"width":0.03474069,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Calendar","depth":15,"bounds":{"left":0.32845744,"top":0.15363128,"width":0.020113032,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Reports","depth":13,"bounds":{"left":0.35322472,"top":0.14764565,"width":0.031914894,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reports","depth":15,"bounds":{"left":0.3645279,"top":0.15363128,"width":0.017287234,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Testing Board","depth":13,"bounds":{"left":0.38646942,"top":0.14764565,"width":0.046708778,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Testing Board","depth":15,"bounds":{"left":0.3977726,"top":0.15363128,"width":0.030751329,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"List","depth":13,"bounds":{"left":0.43450797,"top":0.14764565,"width":0.02244016,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"List","depth":15,"bounds":{"left":0.44581118,"top":0.15363128,"width":0.0078125,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Forms","depth":13,"bounds":{"left":0.4582779,"top":0.14764565,"width":0.028590426,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Forms","depth":15,"bounds":{"left":0.46958113,"top":0.15363128,"width":0.013962766,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Components","depth":13,"bounds":{"left":0.48819813,"top":0.14764565,"width":0.04305186,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Components","depth":15,"bounds":{"left":0.49950132,"top":0.15363128,"width":0.028424202,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Development","depth":13,"bounds":{"left":0.5325798,"top":0.14764565,"width":0.044049203,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Development","depth":15,"bounds":{"left":0.54388297,"top":0.15363128,"width":0.029421542,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Code","depth":13,"bounds":{"left":0.57795876,"top":0.14764565,"width":0.02642952,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Code","depth":15,"bounds":{"left":0.58926195,"top":0.15363128,"width":0.011801862,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Security","depth":13,"bounds":{"left":0.6057181,"top":0.14764565,"width":0.03324468,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Security","depth":15,"bounds":{"left":0.61702126,"top":0.15363128,"width":0.01861702,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Releases","depth":13,"bounds":{"left":0.6402925,"top":0.14764565,"width":0.034574468,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Releases","depth":15,"bounds":{"left":0.6515958,"top":0.15363128,"width":0.019946808,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Deployments","depth":13,"bounds":{"left":0.6761968,"top":0.14764565,"width":0.043882977,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Deployments","depth":15,"bounds":{"left":0.6875,"top":0.15363128,"width":0.02925532,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Archived work items","depth":13,"bounds":{"left":0.72140956,"top":0.14764565,"width":0.06017287,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Archived work items","depth":15,"bounds":{"left":0.73271275,"top":0.15363128,"width":0.045545213,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Docs","depth":13,"bounds":{"left":0.78291225,"top":0.14764565,"width":0.025930852,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Docs","depth":15,"bounds":{"left":0.79421544,"top":0.15363128,"width":0.011303191,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Shortcuts","depth":14,"bounds":{"left":0.81017286,"top":0.14764565,"width":0.045545213,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Shortcuts","depth":15,"bounds":{"left":0.8228058,"top":0.15363128,"width":0.021609042,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Slack integration","depth":13,"bounds":{"left":0.85704786,"top":0.14764565,"width":0.05319149,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Slack integration","depth":15,"bounds":{"left":0.86835104,"top":0.15363128,"width":0.03723404,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Reporting Center","depth":13,"bounds":{"left":0.9115692,"top":0.14764565,"width":0.053856384,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reporting Center","depth":15,"bounds":{"left":0.92287236,"top":0.15363128,"width":0.037898935,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add to navigation","depth":11,"bounds":{"left":0.96675533,"top":0.15083799,"width":0.007978723,"height":0.01915403},"on_screen":true,"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":11,"bounds":{"left":0.16738696,"top":0.20271349,"width":0.18134974,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Search on current page","depth":11,"bounds":{"left":0.17569813,"top":0.188747,"width":0.050531916,"height":0.026735835},"on_screen":true,"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":12,"bounds":{"left":0.23121676,"top":0.19034317,"width":0.03873005,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Filter assignees by Lukas Kovalik","depth":11,"bounds":{"left":0.23254654,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Filter assignees by Aneliya Angelova","depth":11,"bounds":{"left":0.24052526,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":11,"bounds":{"left":0.24850398,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":11,"bounds":{"left":0.25648272,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":11,"bounds":{"left":0.26446143,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Filter assignees by Unassigned","depth":11,"bounds":{"left":0.27244017,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Epic","depth":13,"bounds":{"left":0.28440824,"top":0.18914606,"width":0.0234375,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Epic","depth":16,"bounds":{"left":0.2883976,"top":0.19513169,"width":0.009474734,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Type","depth":13,"bounds":{"left":0.31050533,"top":0.18914606,"width":0.025099734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Type","depth":16,"bounds":{"left":0.31449467,"top":0.19513169,"width":0.011136968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Quick filters","depth":13,"bounds":{"left":0.3382646,"top":0.18914606,"width":0.040724736,"height":0.025538707},"on_screen":true,"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":16,"bounds":{"left":0.34225398,"top":0.19513169,"width":0.026761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Complete sprint","depth":10,"bounds":{"left":0.85106385,"top":0.18914606,"width":0.04338431,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Complete sprint","depth":12,"bounds":{"left":0.8550532,"top":0.19513169,"width":0.035405584,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Sprint details","depth":10,"bounds":{"left":0.8971077,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Group by Queries","depth":10,"bounds":{"left":0.9104056,"top":0.18914606,"width":0.041722074,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Group","depth":13,"bounds":{"left":0.914395,"top":0.19513169,"width":0.013796543,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":": Queries","depth":13,"bounds":{"left":0.9281915,"top":0.19513169,"width":0.019946808,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Sprint insights","depth":10,"bounds":{"left":0.95478725,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
-5788700500321891651
|
1320979285192396846
|
click
|
accessibility
|
NULL
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Close tab
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
[JY-20891] Sidekick SMS issue - Jira
[JY-20891] Sidekick SMS issue - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
Usage | Windsurf
Usage | Windsurf
[SRD-6853] Moxso - Potential deal stages bug - Jira
[SRD-6853] Moxso - Potential deal stages bug - Jira
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Pipedrive API Reference and Documentation
Pipedrive API Reference and Documentation
pipedrive/client-php: Pipedrive API client for PHP
pipedrive/client-php: Pipedrive API client for PHP
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Personal Access Tokens (Classic)
Personal Access Tokens (Classic)
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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
Add people
Add people
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
Docs
Docs
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 Aneliya Angelova
Filter assignees by Nikolay Ivanov
Filter assignees by Nikolay Nikolov
Filter assignees by Steliyan Georgiev
Filter assignees by Unassigned
Epic
Epic
Type
Type
Quick filters
Quick filters
Complete sprint
Complete sprint
Sprint details
Sprint details
Group by Queries
Group
: Queries
Sprint insights
Sprint insights...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49359
|
1762
|
3
|
2026-05-18T06:37:33.130797+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086253130_m1.jpg...
|
Firefox
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira — Work...
|
1
|
jiminny.atlassian.net/jira/software/c/projects/JY/ jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedIssue=JY-20613...
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Close tab
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
[JY-20891] Sidekick SMS issue - Jira
[JY-20891] Sidekick SMS issue - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
Usage | Windsurf
Usage | Windsurf
[SRD-6853] Moxso - Potential deal stages bug - Jira
[SRD-6853] Moxso - Potential deal stages bug - Jira
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Pipedrive API Reference and Documentation
Pipedrive API Reference and Documentation
pipedrive/client-php: Pipedrive API client for PHP
pipedrive/client-php: Pipedrive API client for PHP
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Personal Access Tokens (Classic)
Personal Access Tokens (Classic)
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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
Add people
Add people
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...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20891] Sidekick SMS issue - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20891] Sidekick SMS issue - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Usage | Windsurf","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Usage | Windsurf","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[SRD-6853] Moxso - Potential deal stages bug - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[SRD-6853] Moxso - Potential deal stages bug - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipelines - jiminny/app","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pipelines - jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Feed — jiminny — Sentry","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Feed — jiminny — Sentry","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipedrive API Reference and Documentation","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pipedrive API Reference and Documentation","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"pipedrive/client-php: Pipedrive API client for PHP","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"pipedrive/client-php: Pipedrive API client for PHP","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - lukas.kovalik@jiminny.com - Jiminny Mail","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - lukas.kovalik@jiminny.com - Jiminny Mail","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pull requests · jiminny/app","depth":4,"on_screen":true,"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,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Personal Access Tokens (Classic)","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Personal Access Tokens (Classic)","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"on_screen":true,"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,"on_screen":true,"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,"on_screen":true,"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,"on_screen":true,"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,"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to:","depth":9,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Top Bar","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Top Bar","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Sidebar","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Sidebar","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Main Content","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Main Content","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Space navigation","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Space navigation","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse sidebar [","depth":9,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Collapse sidebar [","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Switch sites or apps","depth":10,"on_screen":true,"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":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Go to your Jira homepage","depth":9,"on_screen":true,"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,"on_screen":true,"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":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Rovo Ask Rovo","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Rovo","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Notifications","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notifications","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Help","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Help","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Settings","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Settings","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"lukas.kovalik@jiminny.com","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"lukas.kovalik@jiminny.com","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"For you","depth":12,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"For you","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Recent","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Recent","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Starred","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Starred","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Apps","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Apps","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Apps","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Spaces","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"Spaces","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create space","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create space","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for spaces","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Recent","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Service-Desk","depth":17,"on_screen":true,"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":20,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Service-Desk","depth":18,"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":17,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":20,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Jiminny (New)","depth":18,"on_screen":true,"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":18,"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Jiminny (New)","depth":18,"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Platform Team","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform Team","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Capture Team","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Capture Team","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Enterprise Stability Issues 🤕","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enterprise Stability Issues 🤕","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Processing Team","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Processing Team","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"SE Kanban","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SE Kanban","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More spaces","depth":17,"on_screen":true,"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":20,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Filters","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Filters","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Filters","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Dashboards","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Dashboards","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create dashboard","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create dashboard","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Dashboards","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Operations","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Operations","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Operations","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Confluence , (opens new window)","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Confluence","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Teams , (opens new window)","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Teams","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"open menu","depth":14,"on_screen":true,"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":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Customise sidebar","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Customise sidebar","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Resize side navigation panel","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Spaces","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Spaces","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Platform Team","depth":10,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Platform Team","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add people","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add people","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":10,"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Share","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Automation","depth":10,"on_screen":true,"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":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Give feedback","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Enter full screen","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enter full screen","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Summary","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Summary","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Timeline","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Timeline","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Backlog","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Backlog","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Active sprints","depth":13,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Active sprints","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Calendar","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Calendar","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Reports","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reports","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Testing Board","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Testing Board","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"List","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"List","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Forms","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Forms","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
5226896663364307489
|
1320977081605738574
|
click
|
accessibility
|
NULL
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Close tab
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
[JY-20891] Sidekick SMS issue - Jira
[JY-20891] Sidekick SMS issue - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
Usage | Windsurf
Usage | Windsurf
[SRD-6853] Moxso - Potential deal stages bug - Jira
[SRD-6853] Moxso - Potential deal stages bug - Jira
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Pipedrive API Reference and Documentation
Pipedrive API Reference and Documentation
pipedrive/client-php: Pipedrive API client for PHP
pipedrive/client-php: Pipedrive API client for PHP
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Personal Access Tokens (Classic)
Personal Access Tokens (Classic)
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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
Add people
Add people
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...
|
49358
|
NULL
|
NULL
|
NULL
|
|
49361
|
1763
|
5
|
2026-05-18T06:37:33.750731+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086253750_m2.jpg...
|
Firefox
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira — Work...
|
1
|
jiminny.atlassian.net/jira/software/c/projects/JY/ jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedIssue=JY-20613...
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Close tab
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
[JY-20891] Sidekick SMS issue - Jira
[JY-20891] Sidekick SMS issue - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
Usage | Windsurf
Usage | Windsurf
[SRD-6853] Moxso - Potential deal stages bug - Jira
[SRD-6853] Moxso - Potential deal stages bug - Jira
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Pipedrive API Reference and Documentation
Pipedrive API Reference and Documentation
pipedrive/client-php: Pipedrive API client for PHP
pipedrive/client-php: Pipedrive API client for PHP
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Personal Access Tokens (Classic)
Personal Access Tokens (Classic)
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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
Add people
Add people
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
Docs
Docs
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 Aneliya Angelova
Filter assignees by Nikolay Ivanov
Filter assignees by Nikolay Nikolov
Filter assignees by Steliyan Georgiev
Filter assignees by Unassigned
Epic
Epic
Type
Type
Quick filters
Quick filters
Complete sprint
Complete sprint
Sprint details
Sprint details
Group by Queries
Group
: Queries
Sprint insights
Sprint insights
View settings
View settings
More actions
More actions
Ready For DEV
READY FOR DEV
5
JY-20676 Notify the user if a Panorama prompts is deleted but is used in AJ Report. Use the enter key to load the work item.
Notify the user if a Panorama prompts is deleted but is used in AJ Report
AJ Reports, Edit Parent
AJ REPORTS
Backlog
JY-20676
JY-20676
3
Assignee: Lukas Kovalik
JY-20615 Notify the user if a SS is deleted but is used in AJ Report. Use the enter key to load the work item.
Notify the user if a SS is deleted but is used in AJ Report
AJ Reports, Edit Parent
AJ REPORTS
Backlog
JY-20615
JY-20615
2.5
JY-19958 Upgrade BE libraries - May. Use the enter key to load the work item.
Upgrade BE libraries - May
Maintenance, Edit Parent
MAINTENANCE
Backlog
JY-19958
JY-19958
1
JY-20613 Allow owner's role to be selected when setting up a trial. Use the enter key to load the work item.
Allow owner's role to be selected when setting up a trial
Improvement of our efficiency, Edit Parent
IMPROVEMENT OF OUR EFFICIENCY
Backlog
JY-20613
JY-20613
1.5
Assignee: Lukas Kovalik
JY-20410 Improve Activity Type suggestions. Use the enter key to load the work item.
Improve Activity Type suggestions
Auto-detected activity type, Edit Parent
AUTO-DETECTED ACTIVITY TYPE
Backlog
JY-20410
JY-20410
2
In DEV
IN DEV
2
JY-20833 MCP > Enable users to get a list of calls and their details. Use the enter key to load the work item.
MCP > Enable users to get a list of calls and their details
Jiminny MCP Connector, Edit Parent
JIMINNY MCP CONNECTOR
In Dev
JY-20833
JY-20833
9
JY-20835 MCP > Enable users to get a list of deals and their details. Use the enter key to load the work item.
MCP > Enable users to get a list of deals and their details
JIMINNY MCP CONNECTOR
In Dev
JY-20835
JY-20835
20
merged pull request
Code Review
CODE REVIEW
1...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira","depth":4,"bounds":{"left":0.0,"top":0.0518755,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.06304868,"width":0.10106383,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.06732048,"top":0.05905826,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.08459697,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.09577015,"width":0.15658244,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20891] Sidekick SMS issue - Jira","depth":4,"bounds":{"left":0.0,"top":0.11731844,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20891] Sidekick SMS issue - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.12849163,"width":0.064494684,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira","depth":4,"bounds":{"left":0.0,"top":0.15003991,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.16121309,"width":0.18068483,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Usage | Windsurf","depth":4,"bounds":{"left":0.0,"top":0.18276137,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Usage | Windsurf","depth":5,"bounds":{"left":0.013297873,"top":0.19393456,"width":0.029920213,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[SRD-6853] Moxso - Potential deal stages bug - Jira","depth":4,"bounds":{"left":0.0,"top":0.21548285,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[SRD-6853] Moxso - Potential deal stages bug - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.22665602,"width":0.09158909,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipelines - jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.2482043,"width":0.07962101,"height":0.032721467},"on_screen":true,"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.25937748,"width":0.039228722,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Feed — jiminny — Sentry","depth":4,"bounds":{"left":0.0,"top":0.28092578,"width":0.07962101,"height":0.032721467},"on_screen":true,"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.29209897,"width":0.042719416,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":4,"bounds":{"left":0.0,"top":0.31364724,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.32482043,"width":0.07413564,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipedrive API Reference and Documentation","depth":4,"bounds":{"left":0.0,"top":0.3463687,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pipedrive API Reference and Documentation","depth":5,"bounds":{"left":0.013297873,"top":0.3575419,"width":0.07679521,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"pipedrive/client-php: Pipedrive API client for PHP","depth":4,"bounds":{"left":0.0,"top":0.3790902,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"pipedrive/client-php: Pipedrive API client for PHP","depth":5,"bounds":{"left":0.013297873,"top":0.39026338,"width":0.08543883,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - lukas.kovalik@jiminny.com - Jiminny Mail","depth":4,"bounds":{"left":0.0,"top":0.41181165,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - lukas.kovalik@jiminny.com - Jiminny Mail","depth":5,"bounds":{"left":0.013297873,"top":0.42298484,"width":0.21791889,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pull requests · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.4445331,"width":0.07962101,"height":0.032721467},"on_screen":true,"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.013297873,"top":0.4557063,"width":0.04537899,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":4,"bounds":{"left":0.0,"top":0.4772546,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.4884278,"width":0.15259309,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":4,"bounds":{"left":0.0,"top":0.509976,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.5211492,"width":0.07413564,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Personal Access Tokens (Classic)","depth":4,"bounds":{"left":0.0,"top":0.54269755,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Personal Access Tokens (Classic)","depth":5,"bounds":{"left":0.013297873,"top":0.55387074,"width":0.058011968,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"bounds":{"left":0.0028257978,"top":0.57701516,"width":0.07413564,"height":0.025538707},"on_screen":true,"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},"on_screen":true,"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},"on_screen":true,"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},"on_screen":true,"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},"on_screen":true,"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},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to:","depth":9,"bounds":{"left":0.090259306,"top":0.07861133,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Top Bar","depth":10,"bounds":{"left":0.090259306,"top":0.097765364,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Top Bar","depth":11,"bounds":{"left":0.090259306,"top":0.097765364,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Sidebar","depth":10,"bounds":{"left":0.090259306,"top":0.11691939,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Sidebar","depth":11,"bounds":{"left":0.090259306,"top":0.11691939,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Main Content","depth":10,"bounds":{"left":0.090259306,"top":0.13607343,"width":0.029421542,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Main Content","depth":11,"bounds":{"left":0.090259306,"top":0.13607343,"width":0.029421542,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Space navigation","depth":10,"bounds":{"left":0.090259306,"top":0.15522745,"width":0.037898935,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Space navigation","depth":11,"bounds":{"left":0.090259306,"top":0.15522745,"width":0.037898935,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse sidebar [","depth":9,"bounds":{"left":0.08361037,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Collapse sidebar [","depth":11,"bounds":{"left":0.0887633,"top":0.06344773,"width":0.039727394,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Switch sites or apps","depth":10,"bounds":{"left":0.095578454,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":12,"bounds":{"left":0.10073138,"top":0.06344773,"width":0.044215426,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Go to your Jira homepage","depth":9,"bounds":{"left":0.10887633,"top":0.057861134,"width":0.029421542,"height":0.025538707},"on_screen":true,"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.40475398,"top":0.06264964,"width":0.24268617,"height":0.015961692},"on_screen":true,"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":10,"bounds":{"left":0.65575135,"top":0.057861134,"width":0.030086435,"height":0.025538707},"on_screen":true,"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.66705453,"top":0.06384677,"width":0.014793883,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Rovo Ask Rovo","depth":12,"bounds":{"left":0.91223407,"top":0.057861134,"width":0.035904255,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Rovo","depth":14,"bounds":{"left":0.92353725,"top":0.06384677,"width":0.020611702,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Notifications","depth":12,"bounds":{"left":0.9494681,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notifications","depth":14,"bounds":{"left":0.954621,"top":0.06344773,"width":0.027759308,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Help","depth":12,"bounds":{"left":0.96143615,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Help","depth":14,"bounds":{"left":0.9665891,"top":0.06344773,"width":0.010139627,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Settings","depth":12,"bounds":{"left":0.9734042,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Settings","depth":14,"bounds":{"left":0.97855717,"top":0.06344773,"width":0.017952127,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"lukas.kovalik@jiminny.com","depth":12,"bounds":{"left":0.98537236,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"lukas.kovalik@jiminny.com","depth":14,"bounds":{"left":0.99052525,"top":0.06344773,"width":0.009474754,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"For you","depth":12,"bounds":{"left":0.08361037,"top":0.09976058,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"For you","depth":15,"bounds":{"left":0.09424867,"top":0.10574621,"width":0.01662234,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Recent","depth":12,"bounds":{"left":0.08361037,"top":0.12529927,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Recent","depth":15,"bounds":{"left":0.09424867,"top":0.13128492,"width":0.015458777,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Starred","depth":12,"bounds":{"left":0.08361037,"top":0.15083799,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Starred","depth":15,"bounds":{"left":0.09424867,"top":0.15682362,"width":0.016456118,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Apps","depth":12,"bounds":{"left":0.08361037,"top":0.1763767,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Apps","depth":15,"bounds":{"left":0.09424867,"top":0.18236233,"width":0.011635638,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Apps","depth":13,"bounds":{"left":0.15309176,"top":0.17956904,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Spaces","depth":12,"bounds":{"left":0.08361037,"top":0.2019154,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"Spaces","depth":15,"bounds":{"left":0.09424867,"top":0.20790103,"width":0.016456118,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create space","depth":13,"bounds":{"left":0.13646941,"top":0.20510775,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create space","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for spaces","depth":13,"bounds":{"left":0.14577793,"top":0.20510775,"width":0.007978723,"height":0.01915403},"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Recent","depth":16,"bounds":{"left":0.08959442,"top":0.23423783,"width":0.013464096,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Service-Desk","depth":17,"bounds":{"left":0.08759973,"top":0.2529928,"width":0.0674867,"height":0.025538707},"on_screen":true,"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":20,"bounds":{"left":0.09823803,"top":0.25897846,"width":0.03025266,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Service-Desk","depth":18,"bounds":{"left":0.15442154,"top":0.25618514,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":17,"bounds":{"left":0.08759973,"top":0.27853152,"width":0.0674867,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":20,"bounds":{"left":0.09823803,"top":0.28451717,"width":0.032081116,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Jiminny (New)","depth":18,"bounds":{"left":0.08892952,"top":0.28172386,"width":0.007978723,"height":0.01915403},"on_screen":true,"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":18,"bounds":{"left":0.13646941,"top":0.28172386,"width":0.007978723,"height":0.01915403},"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Jiminny (New)","depth":18,"bounds":{"left":0.14577793,"top":0.28172386,"width":0.007978723,"height":0.01915403},"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Platform Team","depth":19,"bounds":{"left":0.09158909,"top":0.30407023,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform Team","depth":22,"bounds":{"left":0.1022274,"top":0.31005585,"width":0.032247342,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"bounds":{"left":0.15309176,"top":0.30726257,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Capture Team","depth":19,"bounds":{"left":0.09158909,"top":0.32960895,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Capture Team","depth":22,"bounds":{"left":0.1022274,"top":0.33559456,"width":0.03125,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"bounds":{"left":0.15309176,"top":0.33280128,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Enterprise Stability Issues 🤕","depth":19,"bounds":{"left":0.09158909,"top":0.35514766,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enterprise Stability Issues 🤕","depth":22,"bounds":{"left":0.1022274,"top":0.36113328,"width":0.050531916,"height":0.030726258},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"bounds":{"left":0.15309176,"top":0.35834,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Processing Team","depth":19,"bounds":{"left":0.09158909,"top":0.38068634,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Processing Team","depth":22,"bounds":{"left":0.1022274,"top":0.386672,"width":0.038231384,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"bounds":{"left":0.15309176,"top":0.38387868,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"SE Kanban","depth":19,"bounds":{"left":0.09158909,"top":0.40622506,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SE Kanban","depth":22,"bounds":{"left":0.1022274,"top":0.4122107,"width":0.024102394,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"bounds":{"left":0.15309176,"top":0.4094174,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More spaces","depth":17,"bounds":{"left":0.08759973,"top":0.43176377,"width":0.0674867,"height":0.025538707},"on_screen":true,"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":20,"bounds":{"left":0.09823803,"top":0.43774942,"width":0.028756648,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Filters","depth":12,"bounds":{"left":0.08361037,"top":0.45730248,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Filters","depth":15,"bounds":{"left":0.09424867,"top":0.4632881,"width":0.013796543,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Filters","depth":13,"bounds":{"left":0.15309176,"top":0.46049482,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Dashboards","depth":12,"bounds":{"left":0.08361037,"top":0.4828412,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Dashboards","depth":15,"bounds":{"left":0.09424867,"top":0.4888268,"width":0.026761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create dashboard","depth":13,"bounds":{"left":0.15508644,"top":0.48603353,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create dashboard","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Dashboards","depth":13,"bounds":{"left":0.16240026,"top":0.48603353,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Operations","depth":12,"bounds":{"left":0.08361037,"top":0.5083799,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Operations","depth":15,"bounds":{"left":0.09424867,"top":0.5143655,"width":0.02443484,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Operations","depth":13,"bounds":{"left":0.15309176,"top":0.51157224,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Confluence , (opens new window)","depth":13,"bounds":{"left":0.08361037,"top":0.5434956,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Confluence","depth":17,"bounds":{"left":0.09424867,"top":0.5494813,"width":0.025764627,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"bounds":{"left":0.08361037,"top":0.55706304,"width":0.04837101,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Teams , (opens new window)","depth":13,"bounds":{"left":0.08361037,"top":0.56903434,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Teams","depth":17,"bounds":{"left":0.09424867,"top":0.57501996,"width":0.014793883,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"bounds":{"left":0.08361037,"top":0.5826017,"width":0.04837101,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"open menu","depth":14,"bounds":{"left":0.14378324,"top":0.57222664,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Customise sidebar","depth":12,"bounds":{"left":0.08361037,"top":0.60415006,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Customise sidebar","depth":15,"bounds":{"left":0.09424867,"top":0.6101357,"width":0.04155585,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Resize side navigation panel","depth":13,"bounds":{"left":0.2109375,"top":0.0981644,"width":0.062333778,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Spaces","depth":13,"bounds":{"left":0.16738696,"top":0.09976058,"width":0.016289894,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Spaces","depth":15,"bounds":{"left":0.16738696,"top":0.102553874,"width":0.016289894,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"bounds":{"left":0.18683511,"top":0.102553874,"width":0.0016622341,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":13,"bounds":{"left":0.19165559,"top":0.09976058,"width":0.03174867,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":15,"bounds":{"left":0.19165559,"top":0.102553874,"width":0.03174867,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Platform Team","depth":10,"bounds":{"left":0.16738696,"top":0.12210695,"width":0.045877658,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Platform Team","depth":11,"bounds":{"left":0.16738696,"top":0.12210695,"width":0.045877658,"height":0.019553073},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add people","depth":10,"bounds":{"left":0.21525931,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add people","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":10,"bounds":{"left":0.2278923,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Share","depth":10,"bounds":{"left":0.94148934,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Automation","depth":10,"bounds":{"left":0.95478725,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":10,"bounds":{"left":0.9680851,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Give feedback","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Enter full screen","depth":10,"bounds":{"left":0.98138297,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enter full screen","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Summary","depth":13,"bounds":{"left":0.16472739,"top":0.14764565,"width":0.035904255,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Summary","depth":15,"bounds":{"left":0.17603059,"top":0.15363128,"width":0.021276595,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Timeline","depth":13,"bounds":{"left":0.20196144,"top":0.14764565,"width":0.03357713,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Timeline","depth":15,"bounds":{"left":0.21326463,"top":0.15363128,"width":0.018949468,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Backlog","depth":13,"bounds":{"left":0.23686835,"top":0.14764565,"width":0.032413565,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Backlog","depth":15,"bounds":{"left":0.24817154,"top":0.15363128,"width":0.017785905,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Active sprints","depth":13,"bounds":{"left":0.2706117,"top":0.14764565,"width":0.045212764,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Active sprints","depth":15,"bounds":{"left":0.2819149,"top":0.15363128,"width":0.030585106,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Calendar","depth":13,"bounds":{"left":0.31715426,"top":0.14764565,"width":0.03474069,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Calendar","depth":15,"bounds":{"left":0.32845744,"top":0.15363128,"width":0.020113032,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Reports","depth":13,"bounds":{"left":0.35322472,"top":0.14764565,"width":0.031914894,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reports","depth":15,"bounds":{"left":0.3645279,"top":0.15363128,"width":0.017287234,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Testing Board","depth":13,"bounds":{"left":0.38646942,"top":0.14764565,"width":0.046708778,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Testing Board","depth":15,"bounds":{"left":0.3977726,"top":0.15363128,"width":0.030751329,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"List","depth":13,"bounds":{"left":0.43450797,"top":0.14764565,"width":0.02244016,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"List","depth":15,"bounds":{"left":0.44581118,"top":0.15363128,"width":0.0078125,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Forms","depth":13,"bounds":{"left":0.4582779,"top":0.14764565,"width":0.028590426,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Forms","depth":15,"bounds":{"left":0.46958113,"top":0.15363128,"width":0.013962766,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Components","depth":13,"bounds":{"left":0.48819813,"top":0.14764565,"width":0.04305186,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Components","depth":15,"bounds":{"left":0.49950132,"top":0.15363128,"width":0.028424202,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Development","depth":13,"bounds":{"left":0.5325798,"top":0.14764565,"width":0.044049203,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Development","depth":15,"bounds":{"left":0.54388297,"top":0.15363128,"width":0.029421542,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Code","depth":13,"bounds":{"left":0.57795876,"top":0.14764565,"width":0.02642952,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Code","depth":15,"bounds":{"left":0.58926195,"top":0.15363128,"width":0.011801862,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Security","depth":13,"bounds":{"left":0.6057181,"top":0.14764565,"width":0.03324468,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Security","depth":15,"bounds":{"left":0.61702126,"top":0.15363128,"width":0.01861702,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Releases","depth":13,"bounds":{"left":0.6402925,"top":0.14764565,"width":0.034574468,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Releases","depth":15,"bounds":{"left":0.6515958,"top":0.15363128,"width":0.019946808,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Deployments","depth":13,"bounds":{"left":0.6761968,"top":0.14764565,"width":0.043882977,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Deployments","depth":15,"bounds":{"left":0.6875,"top":0.15363128,"width":0.02925532,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Archived work items","depth":13,"bounds":{"left":0.72140956,"top":0.14764565,"width":0.06017287,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Archived work items","depth":15,"bounds":{"left":0.73271275,"top":0.15363128,"width":0.045545213,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Docs","depth":13,"bounds":{"left":0.78291225,"top":0.14764565,"width":0.025930852,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Docs","depth":15,"bounds":{"left":0.79421544,"top":0.15363128,"width":0.011303191,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Shortcuts","depth":14,"bounds":{"left":0.81017286,"top":0.14764565,"width":0.045545213,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Shortcuts","depth":15,"bounds":{"left":0.8228058,"top":0.15363128,"width":0.021609042,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Slack integration","depth":13,"bounds":{"left":0.85704786,"top":0.14764565,"width":0.05319149,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Slack integration","depth":15,"bounds":{"left":0.86835104,"top":0.15363128,"width":0.03723404,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Reporting Center","depth":13,"bounds":{"left":0.9115692,"top":0.14764565,"width":0.053856384,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reporting Center","depth":15,"bounds":{"left":0.92287236,"top":0.15363128,"width":0.037898935,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add to navigation","depth":11,"bounds":{"left":0.96675533,"top":0.15083799,"width":0.007978723,"height":0.01915403},"on_screen":true,"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":11,"bounds":{"left":0.16738696,"top":0.20271349,"width":0.18134974,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Search on current page","depth":11,"bounds":{"left":0.17569813,"top":0.188747,"width":0.050531916,"height":0.026735835},"on_screen":true,"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":12,"bounds":{"left":0.23121676,"top":0.19034317,"width":0.03873005,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Filter assignees by Lukas Kovalik","depth":11,"bounds":{"left":0.23254654,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Filter assignees by Aneliya Angelova","depth":11,"bounds":{"left":0.24052526,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":11,"bounds":{"left":0.24850398,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":11,"bounds":{"left":0.25648272,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":11,"bounds":{"left":0.26446143,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Filter assignees by Unassigned","depth":11,"bounds":{"left":0.27244017,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Epic","depth":13,"bounds":{"left":0.28440824,"top":0.18914606,"width":0.0234375,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Epic","depth":16,"bounds":{"left":0.2883976,"top":0.19513169,"width":0.009474734,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Type","depth":13,"bounds":{"left":0.31050533,"top":0.18914606,"width":0.025099734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Type","depth":16,"bounds":{"left":0.31449467,"top":0.19513169,"width":0.011136968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Quick filters","depth":13,"bounds":{"left":0.3382646,"top":0.18914606,"width":0.040724736,"height":0.025538707},"on_screen":true,"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":16,"bounds":{"left":0.34225398,"top":0.19513169,"width":0.026761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Complete sprint","depth":10,"bounds":{"left":0.85106385,"top":0.18914606,"width":0.04338431,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Complete sprint","depth":12,"bounds":{"left":0.8550532,"top":0.19513169,"width":0.035405584,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Sprint details","depth":10,"bounds":{"left":0.8971077,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Group by Queries","depth":10,"bounds":{"left":0.9104056,"top":0.18914606,"width":0.041722074,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Group","depth":13,"bounds":{"left":0.914395,"top":0.19513169,"width":0.013796543,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":": Queries","depth":13,"bounds":{"left":0.9281915,"top":0.19513169,"width":0.019946808,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Sprint insights","depth":10,"bounds":{"left":0.95478725,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"View settings","depth":10,"bounds":{"left":0.9680851,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"View settings","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions","depth":10,"bounds":{"left":0.98138297,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More actions","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Ready For DEV","depth":16,"bounds":{"left":0.17270611,"top":0.24022347,"width":0.042220745,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"READY FOR DEV","depth":18,"bounds":{"left":0.17270611,"top":0.2406225,"width":0.03158245,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5","depth":21,"bounds":{"left":0.20844415,"top":0.2406225,"width":0.0023271276,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"JY-20676 Notify the user if a Panorama prompts is deleted but is used in AJ Report. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.1690492,"top":0.27055067,"width":0.112034574,"height":0.1217079},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notify the user if a Panorama prompts is deleted but is used in AJ Report","depth":18,"bounds":{"left":0.17303856,"top":0.28132483,"width":0.08843085,"height":0.029928172},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"AJ Reports, Edit Parent","depth":17,"bounds":{"left":0.17303856,"top":0.31843576,"width":0.025930852,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AJ REPORTS","depth":21,"bounds":{"left":0.17436835,"top":0.3196329,"width":0.023271276,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Backlog","depth":17,"bounds":{"left":0.17303856,"top":0.33918595,"width":0.01761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20676","depth":17,"bounds":{"left":0.1796875,"top":0.3651237,"width":0.018783245,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20676","depth":19,"bounds":{"left":0.1796875,"top":0.36552274,"width":0.018783245,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3","depth":17,"bounds":{"left":0.24251994,"top":0.36552274,"width":0.002493351,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Assignee: Lukas Kovalik","depth":17,"bounds":{"left":0.2684508,"top":0.36193135,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20615 Notify the user if a SS is deleted but is used in AJ Report. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.1690492,"top":0.39545092,"width":0.112034574,"height":0.1217079},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notify the user if a SS is deleted but is used in AJ Report","depth":18,"bounds":{"left":0.17303856,"top":0.40622506,"width":0.083942816,"height":0.029928172},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"AJ Reports, Edit Parent","depth":17,"bounds":{"left":0.17303856,"top":0.44333598,"width":0.025930852,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AJ REPORTS","depth":21,"bounds":{"left":0.17436835,"top":0.4445331,"width":0.023271276,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Backlog","depth":17,"bounds":{"left":0.17303856,"top":0.4640862,"width":0.01761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20615","depth":17,"bounds":{"left":0.1796875,"top":0.49002394,"width":0.018118352,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20615","depth":19,"bounds":{"left":0.1796875,"top":0.490423,"width":0.018118352,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2.5","depth":17,"bounds":{"left":0.24052526,"top":0.490423,"width":0.005984043,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"JY-19958 Upgrade BE libraries - May. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.1690492,"top":0.5203512,"width":0.112034574,"height":0.10574621},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Upgrade BE libraries - May","depth":18,"bounds":{"left":0.17303856,"top":0.5311253,"width":0.059175532,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Maintenance, Edit Parent","depth":17,"bounds":{"left":0.17303856,"top":0.5522745,"width":0.03174867,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"MAINTENANCE","depth":21,"bounds":{"left":0.17436835,"top":0.5534717,"width":0.029089095,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Backlog","depth":17,"bounds":{"left":0.17303856,"top":0.57302475,"width":0.01761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-19958","depth":17,"bounds":{"left":0.1796875,"top":0.5989625,"width":0.018284574,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-19958","depth":19,"bounds":{"left":0.1796875,"top":0.59936154,"width":0.018284574,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":17,"bounds":{"left":0.24301861,"top":0.59936154,"width":0.0016622341,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"JY-20613 Allow owner's role to be selected when setting up a trial. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.1690492,"top":0.6292897,"width":0.112034574,"height":0.1217079},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Allow owner's role to be selected when setting up a trial","depth":18,"bounds":{"left":0.17303856,"top":0.6400638,"width":0.086269945,"height":0.029928172},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Improvement of our efficiency, Edit Parent","depth":17,"bounds":{"left":0.17303856,"top":0.6771748,"width":0.07114362,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"IMPROVEMENT OF OUR EFFICIENCY","depth":21,"bounds":{"left":0.17436835,"top":0.6783719,"width":0.068484046,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Backlog","depth":17,"bounds":{"left":0.17303856,"top":0.697925,"width":0.01761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20613","depth":17,"bounds":{"left":0.1796875,"top":0.7238627,"width":0.018284574,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20613","depth":19,"bounds":{"left":0.1796875,"top":0.72426176,"width":0.018284574,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1.5","depth":17,"bounds":{"left":0.24135639,"top":0.72426176,"width":0.004986702,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Assignee: Lukas Kovalik","depth":17,"bounds":{"left":0.2684508,"top":0.7206704,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20410 Improve Activity Type suggestions. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.1690492,"top":0.75418997,"width":0.112034574,"height":0.10574621},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Improve Activity Type suggestions","depth":18,"bounds":{"left":0.17303856,"top":0.7649641,"width":0.07662899,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Auto-detected activity type, Edit Parent","depth":17,"bounds":{"left":0.17303856,"top":0.7861133,"width":0.06615692,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AUTO-DETECTED ACTIVITY TYPE","depth":21,"bounds":{"left":0.17436835,"top":0.7873105,"width":0.06349734,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Backlog","depth":17,"bounds":{"left":0.17303856,"top":0.80686355,"width":0.01761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20410","depth":17,"bounds":{"left":0.1796875,"top":0.8328013,"width":0.018284574,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20410","depth":19,"bounds":{"left":0.1796875,"top":0.83320034,"width":0.018284574,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":17,"bounds":{"left":0.24268617,"top":0.83320034,"width":0.0023271276,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"In DEV","depth":16,"bounds":{"left":0.29072472,"top":0.24022347,"width":0.024601065,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"IN DEV","depth":18,"bounds":{"left":0.29072472,"top":0.2406225,"width":0.013962766,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":21,"bounds":{"left":0.30884308,"top":0.2406225,"width":0.002493351,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"JY-20833 MCP > Enable users to get a list of calls and their details. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.28706783,"top":0.27055067,"width":0.112034574,"height":0.1217079},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"MCP > Enable users to get a list of calls and their details","depth":18,"bounds":{"left":0.29105717,"top":0.28132483,"width":0.087101065,"height":0.029928172},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Jiminny MCP Connector, Edit Parent","depth":17,"bounds":{"left":0.29105717,"top":0.31843576,"width":0.0546875,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JIMINNY MCP CONNECTOR","depth":21,"bounds":{"left":0.29238698,"top":0.3196329,"width":0.052027926,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"In Dev","depth":17,"bounds":{"left":0.29105717,"top":0.33918595,"width":0.01462766,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20833","depth":17,"bounds":{"left":0.29770613,"top":0.3651237,"width":0.019115692,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20833","depth":19,"bounds":{"left":0.29770613,"top":0.36552274,"width":0.019115692,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"9","depth":17,"bounds":{"left":0.36319813,"top":0.36552274,"width":0.002493351,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"JY-20835 MCP > Enable users to get a list of deals and their details. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.28706783,"top":0.39545092,"width":0.112034574,"height":0.121308856},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"MCP > Enable users to get a list of deals and their details","depth":17,"bounds":{"left":0.29105717,"top":0.40622506,"width":0.08892952,"height":0.029928172},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"JIMINNY MCP CONNECTOR","depth":18,"bounds":{"left":0.29238698,"top":0.4441341,"width":0.052027926,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"In Dev","depth":17,"bounds":{"left":0.29105717,"top":0.46368715,"width":0.01462766,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20835","depth":17,"bounds":{"left":0.29770613,"top":0.4896249,"width":0.018949468,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20835","depth":19,"bounds":{"left":0.29770613,"top":0.49002394,"width":0.018949468,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"20","depth":17,"bounds":{"left":0.35272607,"top":0.49002394,"width":0.004986702,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"merged pull request","depth":16,"bounds":{"left":0.36120346,"top":0.48643255,"width":0.007978723,"height":0.01915403},"on_screen":true,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"Code Review","depth":16,"bounds":{"left":0.40874335,"top":0.24022347,"width":0.038896278,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CODE REVIEW","depth":18,"bounds":{"left":0.40874335,"top":0.2406225,"width":0.02825798,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":21,"bounds":{"left":0.44148937,"top":0.2406225,"width":0.0016622341,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
-4597661043967093273
|
1176856412631914703
|
visual_change
|
accessibility
|
NULL
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Close tab
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
[JY-20891] Sidekick SMS issue - Jira
[JY-20891] Sidekick SMS issue - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
Usage | Windsurf
Usage | Windsurf
[SRD-6853] Moxso - Potential deal stages bug - Jira
[SRD-6853] Moxso - Potential deal stages bug - Jira
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Pipedrive API Reference and Documentation
Pipedrive API Reference and Documentation
pipedrive/client-php: Pipedrive API client for PHP
pipedrive/client-php: Pipedrive API client for PHP
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Personal Access Tokens (Classic)
Personal Access Tokens (Classic)
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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
Add people
Add people
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
Docs
Docs
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 Aneliya Angelova
Filter assignees by Nikolay Ivanov
Filter assignees by Nikolay Nikolov
Filter assignees by Steliyan Georgiev
Filter assignees by Unassigned
Epic
Epic
Type
Type
Quick filters
Quick filters
Complete sprint
Complete sprint
Sprint details
Sprint details
Group by Queries
Group
: Queries
Sprint insights
Sprint insights
View settings
View settings
More actions
More actions
Ready For DEV
READY FOR DEV
5
JY-20676 Notify the user if a Panorama prompts is deleted but is used in AJ Report. Use the enter key to load the work item.
Notify the user if a Panorama prompts is deleted but is used in AJ Report
AJ Reports, Edit Parent
AJ REPORTS
Backlog
JY-20676
JY-20676
3
Assignee: Lukas Kovalik
JY-20615 Notify the user if a SS is deleted but is used in AJ Report. Use the enter key to load the work item.
Notify the user if a SS is deleted but is used in AJ Report
AJ Reports, Edit Parent
AJ REPORTS
Backlog
JY-20615
JY-20615
2.5
JY-19958 Upgrade BE libraries - May. Use the enter key to load the work item.
Upgrade BE libraries - May
Maintenance, Edit Parent
MAINTENANCE
Backlog
JY-19958
JY-19958
1
JY-20613 Allow owner's role to be selected when setting up a trial. Use the enter key to load the work item.
Allow owner's role to be selected when setting up a trial
Improvement of our efficiency, Edit Parent
IMPROVEMENT OF OUR EFFICIENCY
Backlog
JY-20613
JY-20613
1.5
Assignee: Lukas Kovalik
JY-20410 Improve Activity Type suggestions. Use the enter key to load the work item.
Improve Activity Type suggestions
Auto-detected activity type, Edit Parent
AUTO-DETECTED ACTIVITY TYPE
Backlog
JY-20410
JY-20410
2
In DEV
IN DEV
2
JY-20833 MCP > Enable users to get a list of calls and their details. Use the enter key to load the work item.
MCP > Enable users to get a list of calls and their details
Jiminny MCP Connector, Edit Parent
JIMINNY MCP CONNECTOR
In Dev
JY-20833
JY-20833
9
JY-20835 MCP > Enable users to get a list of deals and their details. Use the enter key to load the work item.
MCP > Enable users to get a list of deals and their details
JIMINNY MCP CONNECTOR
In Dev
JY-20835
JY-20835
20
merged pull request
Code Review
CODE REVIEW
1...
|
49360
|
NULL
|
NULL
|
NULL
|
|
49362
|
1763
|
6
|
2026-05-18T06:37:36.783776+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086256783_m2.jpg...
|
Firefox
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira — Work...
|
1
|
jiminny.atlassian.net/jira/software/c/projects/JY/ jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedIssue=JY-20613...
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Close tab
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
[JY-20891] Sidekick SMS issue - Jira
[JY-20891] Sidekick SMS issue - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
Usage | Windsurf
Usage | Windsurf
[SRD-6853] Moxso - Potential deal stages bug - Jira
[SRD-6853] Moxso - Potential deal stages bug - Jira
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Pipedrive API Reference and Documentation
Pipedrive API Reference and Documentation
pipedrive/client-php: Pipedrive API client for PHP
pipedrive/client-php: Pipedrive API client for PHP
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Personal Access Tokens (Classic)
Personal Access Tokens (Classic)
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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
Add people
Add people
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
Docs
Docs
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 Aneliya Angelova
Filter assignees by Nikolay Ivanov
Filter assignees by Nikolay Nikolov
Filter assignees by Steliyan Georgiev
Filter assignees by Unassigned
Epic
Epic
Type
Type
Quick filters
Quick filters
Complete sprint
Complete sprint
Sprint details
Sprint details
Group by Queries
Group
: Queries
Sprint insights
Sprint insights
View settings
View settings
More actions
More actions
Ready For DEV
READY FOR DEV
5
JY-20676 Notify the user if a Panorama prompts is deleted but is used in AJ Report. Use the enter key to load the work item.
Notify the user if a Panorama prompts is deleted but is used in AJ Report
AJ Reports, Edit Parent
AJ REPORTS
Backlog
JY-20676
JY-20676
3
Assignee: Lukas Kovalik
JY-20615 Notify the user if a SS is deleted but is used in AJ Report. Use the enter key to load the work item.
Notify the user if a SS is deleted but is used in AJ Report
AJ Reports, Edit Parent
AJ REPORTS
Backlog
JY-20615
JY-20615
2.5
JY-19958 Upgrade BE libraries - May. Use the enter key to load the work item.
Upgrade BE libraries - May
Maintenance, Edit Parent
MAINTENANCE
Backlog
JY-19958
JY-19958
1
JY-20613 Allow owner's role to be selected when setting up a trial. Use the enter key to load the work item.
Allow owner's role to be selected when setting up a trial
Improvement of our efficiency, Edit Parent
IMPROVEMENT OF OUR EFFICIENCY
Backlog
JY-20613
JY-20613
1.5
Assignee: Lukas Kovalik
JY-20410 Improve Activity Type suggestions. Use the enter key to load the work item.
Improve Activity Type suggestions
Auto-detected activity type, Edit Parent
AUTO-DETECTED ACTIVITY TYPE
Backlog
JY-20410
JY-20410
2
In DEV
IN DEV
2
JY-20833 MCP > Enable users to get a list of calls and their details. Use the enter key to load the work item.
MCP > Enable users to get a list of calls and their details
Jiminny MCP Connector, Edit Parent
JIMINNY MCP CONNECTOR
In Dev
JY-20833
JY-20833
9
JY-20835 MCP > Enable users to get a list of deals and their details. Use the enter key to load the work item.
MCP > Enable users to get a list of deals and their details
JIMINNY MCP CONNECTOR
In Dev
JY-20835
JY-20835
20
merged pull request
Code Review
CODE REVIEW
1
Create work item
JY-20846 MCP > Enable the AI to know details about the user. Use the enter key to load the work item.
MCP > Enable the AI to know details about the user
JIMINNY MCP CONNECTOR
Code Review
JY-20846
JY-20846
1.5
pull request
Create work item in Code Review
Create
Blocked
BLOCKED
Create work item in Blocked
Create
QA
QA
3
Create work item
JY-20725 [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts. Use the enter key to load the work item.
[HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts
PLATFORM STABILITY
In QA
JY-20725
JY-20725
1.5
pull request
JY-18091 Upgrade to PHP 8.5. Use the enter key to load the work item.
Upgrade to PHP 8.5
PHP 8.5 UPGRADE
Ready for QA
JY-18091
JY-18091...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira","depth":4,"bounds":{"left":0.0,"top":0.0518755,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.06304868,"width":0.10106383,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.06732048,"top":0.05905826,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.08459697,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.09577015,"width":0.15658244,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20891] Sidekick SMS issue - Jira","depth":4,"bounds":{"left":0.0,"top":0.11731844,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20891] Sidekick SMS issue - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.12849163,"width":0.064494684,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira","depth":4,"bounds":{"left":0.0,"top":0.15003991,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.16121309,"width":0.18068483,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Usage | Windsurf","depth":4,"bounds":{"left":0.0,"top":0.18276137,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Usage | Windsurf","depth":5,"bounds":{"left":0.013297873,"top":0.19393456,"width":0.029920213,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[SRD-6853] Moxso - Potential deal stages bug - Jira","depth":4,"bounds":{"left":0.0,"top":0.21548285,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[SRD-6853] Moxso - Potential deal stages bug - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.22665602,"width":0.09158909,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipelines - jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.2482043,"width":0.07962101,"height":0.032721467},"on_screen":true,"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.25937748,"width":0.039228722,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Feed — jiminny — Sentry","depth":4,"bounds":{"left":0.0,"top":0.28092578,"width":0.07962101,"height":0.032721467},"on_screen":true,"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.29209897,"width":0.042719416,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":4,"bounds":{"left":0.0,"top":0.31364724,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.32482043,"width":0.07413564,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipedrive API Reference and Documentation","depth":4,"bounds":{"left":0.0,"top":0.3463687,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pipedrive API Reference and Documentation","depth":5,"bounds":{"left":0.013297873,"top":0.3575419,"width":0.07679521,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"pipedrive/client-php: Pipedrive API client for PHP","depth":4,"bounds":{"left":0.0,"top":0.3790902,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"pipedrive/client-php: Pipedrive API client for PHP","depth":5,"bounds":{"left":0.013297873,"top":0.39026338,"width":0.08543883,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - lukas.kovalik@jiminny.com - Jiminny Mail","depth":4,"bounds":{"left":0.0,"top":0.41181165,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - lukas.kovalik@jiminny.com - Jiminny Mail","depth":5,"bounds":{"left":0.013297873,"top":0.42298484,"width":0.21791889,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pull requests · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.4445331,"width":0.07962101,"height":0.032721467},"on_screen":true,"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.013297873,"top":0.4557063,"width":0.04537899,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":4,"bounds":{"left":0.0,"top":0.4772546,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.4884278,"width":0.15259309,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":4,"bounds":{"left":0.0,"top":0.509976,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.5211492,"width":0.07413564,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Personal Access Tokens (Classic)","depth":4,"bounds":{"left":0.0,"top":0.54269755,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Personal Access Tokens (Classic)","depth":5,"bounds":{"left":0.013297873,"top":0.55387074,"width":0.058011968,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"bounds":{"left":0.0028257978,"top":0.57701516,"width":0.07413564,"height":0.025538707},"on_screen":true,"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},"on_screen":true,"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},"on_screen":true,"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},"on_screen":true,"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},"on_screen":true,"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},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to:","depth":9,"bounds":{"left":0.090259306,"top":0.07861133,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Top Bar","depth":10,"bounds":{"left":0.090259306,"top":0.097765364,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Top Bar","depth":11,"bounds":{"left":0.090259306,"top":0.097765364,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Sidebar","depth":10,"bounds":{"left":0.090259306,"top":0.11691939,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Sidebar","depth":11,"bounds":{"left":0.090259306,"top":0.11691939,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Main Content","depth":10,"bounds":{"left":0.090259306,"top":0.13607343,"width":0.029421542,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Main Content","depth":11,"bounds":{"left":0.090259306,"top":0.13607343,"width":0.029421542,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Space navigation","depth":10,"bounds":{"left":0.090259306,"top":0.15522745,"width":0.037898935,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Space navigation","depth":11,"bounds":{"left":0.090259306,"top":0.15522745,"width":0.037898935,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse sidebar [","depth":9,"bounds":{"left":0.08361037,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Collapse sidebar [","depth":11,"bounds":{"left":0.0887633,"top":0.06344773,"width":0.039727394,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Switch sites or apps","depth":10,"bounds":{"left":0.095578454,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":12,"bounds":{"left":0.10073138,"top":0.06344773,"width":0.044215426,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Go to your Jira homepage","depth":9,"bounds":{"left":0.10887633,"top":0.057861134,"width":0.029421542,"height":0.025538707},"on_screen":true,"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.40475398,"top":0.06264964,"width":0.24268617,"height":0.015961692},"on_screen":true,"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":10,"bounds":{"left":0.65575135,"top":0.057861134,"width":0.030086435,"height":0.025538707},"on_screen":true,"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.66705453,"top":0.06384677,"width":0.014793883,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Rovo Ask Rovo","depth":12,"bounds":{"left":0.91223407,"top":0.057861134,"width":0.035904255,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Rovo","depth":14,"bounds":{"left":0.92353725,"top":0.06384677,"width":0.020611702,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Notifications","depth":12,"bounds":{"left":0.9494681,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notifications","depth":14,"bounds":{"left":0.954621,"top":0.06344773,"width":0.027759308,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Help","depth":12,"bounds":{"left":0.96143615,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Help","depth":14,"bounds":{"left":0.9665891,"top":0.06344773,"width":0.010139627,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Settings","depth":12,"bounds":{"left":0.9734042,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Settings","depth":14,"bounds":{"left":0.97855717,"top":0.06344773,"width":0.017952127,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"lukas.kovalik@jiminny.com","depth":12,"bounds":{"left":0.98537236,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"lukas.kovalik@jiminny.com","depth":14,"bounds":{"left":0.99052525,"top":0.06344773,"width":0.009474754,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"For you","depth":12,"bounds":{"left":0.08361037,"top":0.09976058,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"For you","depth":15,"bounds":{"left":0.09424867,"top":0.10574621,"width":0.01662234,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Recent","depth":12,"bounds":{"left":0.08361037,"top":0.12529927,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Recent","depth":15,"bounds":{"left":0.09424867,"top":0.13128492,"width":0.015458777,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Starred","depth":12,"bounds":{"left":0.08361037,"top":0.15083799,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Starred","depth":15,"bounds":{"left":0.09424867,"top":0.15682362,"width":0.016456118,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Apps","depth":12,"bounds":{"left":0.08361037,"top":0.1763767,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Apps","depth":15,"bounds":{"left":0.09424867,"top":0.18236233,"width":0.011635638,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Apps","depth":13,"bounds":{"left":0.15309176,"top":0.17956904,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Spaces","depth":12,"bounds":{"left":0.08361037,"top":0.2019154,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"Spaces","depth":15,"bounds":{"left":0.09424867,"top":0.20790103,"width":0.016456118,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create space","depth":13,"bounds":{"left":0.13646941,"top":0.20510775,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create space","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for spaces","depth":13,"bounds":{"left":0.14577793,"top":0.20510775,"width":0.007978723,"height":0.01915403},"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Recent","depth":16,"bounds":{"left":0.08959442,"top":0.23423783,"width":0.013464096,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Service-Desk","depth":17,"bounds":{"left":0.08759973,"top":0.2529928,"width":0.0674867,"height":0.025538707},"on_screen":true,"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":20,"bounds":{"left":0.09823803,"top":0.25897846,"width":0.03025266,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Service-Desk","depth":18,"bounds":{"left":0.15442154,"top":0.25618514,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":17,"bounds":{"left":0.08759973,"top":0.27853152,"width":0.0674867,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":20,"bounds":{"left":0.09823803,"top":0.28451717,"width":0.032081116,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Jiminny (New)","depth":18,"bounds":{"left":0.08892952,"top":0.28172386,"width":0.007978723,"height":0.01915403},"on_screen":true,"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":18,"bounds":{"left":0.13646941,"top":0.28172386,"width":0.007978723,"height":0.01915403},"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Jiminny (New)","depth":18,"bounds":{"left":0.14577793,"top":0.28172386,"width":0.007978723,"height":0.01915403},"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Platform Team","depth":19,"bounds":{"left":0.09158909,"top":0.30407023,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform Team","depth":22,"bounds":{"left":0.1022274,"top":0.31005585,"width":0.032247342,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"bounds":{"left":0.15309176,"top":0.30726257,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Capture Team","depth":19,"bounds":{"left":0.09158909,"top":0.32960895,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Capture Team","depth":22,"bounds":{"left":0.1022274,"top":0.33559456,"width":0.03125,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"bounds":{"left":0.15309176,"top":0.33280128,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Enterprise Stability Issues 🤕","depth":19,"bounds":{"left":0.09158909,"top":0.35514766,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enterprise Stability Issues 🤕","depth":22,"bounds":{"left":0.1022274,"top":0.36113328,"width":0.050531916,"height":0.030726258},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"bounds":{"left":0.15309176,"top":0.35834,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Processing Team","depth":19,"bounds":{"left":0.09158909,"top":0.38068634,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Processing Team","depth":22,"bounds":{"left":0.1022274,"top":0.386672,"width":0.038231384,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"bounds":{"left":0.15309176,"top":0.38387868,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"SE Kanban","depth":19,"bounds":{"left":0.09158909,"top":0.40622506,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SE Kanban","depth":22,"bounds":{"left":0.1022274,"top":0.4122107,"width":0.024102394,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"bounds":{"left":0.15309176,"top":0.4094174,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More spaces","depth":17,"bounds":{"left":0.08759973,"top":0.43176377,"width":0.0674867,"height":0.025538707},"on_screen":true,"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":20,"bounds":{"left":0.09823803,"top":0.43774942,"width":0.028756648,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Filters","depth":12,"bounds":{"left":0.08361037,"top":0.45730248,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Filters","depth":15,"bounds":{"left":0.09424867,"top":0.4632881,"width":0.013796543,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Filters","depth":13,"bounds":{"left":0.15309176,"top":0.46049482,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Dashboards","depth":12,"bounds":{"left":0.08361037,"top":0.4828412,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Dashboards","depth":15,"bounds":{"left":0.09424867,"top":0.4888268,"width":0.026761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create dashboard","depth":13,"bounds":{"left":0.15508644,"top":0.48603353,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create dashboard","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Dashboards","depth":13,"bounds":{"left":0.16240026,"top":0.48603353,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Operations","depth":12,"bounds":{"left":0.08361037,"top":0.5083799,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Operations","depth":15,"bounds":{"left":0.09424867,"top":0.5143655,"width":0.02443484,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Operations","depth":13,"bounds":{"left":0.15309176,"top":0.51157224,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Confluence , (opens new window)","depth":13,"bounds":{"left":0.08361037,"top":0.5434956,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Confluence","depth":17,"bounds":{"left":0.09424867,"top":0.5494813,"width":0.025764627,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"bounds":{"left":0.08361037,"top":0.55706304,"width":0.04837101,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Teams , (opens new window)","depth":13,"bounds":{"left":0.08361037,"top":0.56903434,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Teams","depth":17,"bounds":{"left":0.09424867,"top":0.57501996,"width":0.014793883,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"bounds":{"left":0.08361037,"top":0.5826017,"width":0.04837101,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"open menu","depth":14,"bounds":{"left":0.14378324,"top":0.57222664,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Customise sidebar","depth":12,"bounds":{"left":0.08361037,"top":0.60415006,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Customise sidebar","depth":15,"bounds":{"left":0.09424867,"top":0.6101357,"width":0.04155585,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Resize side navigation panel","depth":13,"bounds":{"left":0.2109375,"top":0.0981644,"width":0.062333778,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Spaces","depth":13,"bounds":{"left":0.16738696,"top":0.09976058,"width":0.016289894,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Spaces","depth":15,"bounds":{"left":0.16738696,"top":0.102553874,"width":0.016289894,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"bounds":{"left":0.18683511,"top":0.102553874,"width":0.0016622341,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":13,"bounds":{"left":0.19165559,"top":0.09976058,"width":0.03174867,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":15,"bounds":{"left":0.19165559,"top":0.102553874,"width":0.03174867,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Platform Team","depth":10,"bounds":{"left":0.16738696,"top":0.12210695,"width":0.045877658,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Platform Team","depth":11,"bounds":{"left":0.16738696,"top":0.12210695,"width":0.045877658,"height":0.019553073},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add people","depth":10,"bounds":{"left":0.21525931,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add people","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":10,"bounds":{"left":0.2278923,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Share","depth":10,"bounds":{"left":0.94148934,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Automation","depth":10,"bounds":{"left":0.95478725,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":10,"bounds":{"left":0.9680851,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Give feedback","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Enter full screen","depth":10,"bounds":{"left":0.98138297,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enter full screen","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Summary","depth":13,"bounds":{"left":0.16472739,"top":0.14764565,"width":0.035904255,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Summary","depth":15,"bounds":{"left":0.17603059,"top":0.15363128,"width":0.021276595,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Timeline","depth":13,"bounds":{"left":0.20196144,"top":0.14764565,"width":0.03357713,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Timeline","depth":15,"bounds":{"left":0.21326463,"top":0.15363128,"width":0.018949468,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Backlog","depth":13,"bounds":{"left":0.23686835,"top":0.14764565,"width":0.032413565,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Backlog","depth":15,"bounds":{"left":0.24817154,"top":0.15363128,"width":0.017785905,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Active sprints","depth":13,"bounds":{"left":0.2706117,"top":0.14764565,"width":0.045212764,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Active sprints","depth":15,"bounds":{"left":0.2819149,"top":0.15363128,"width":0.030585106,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Calendar","depth":13,"bounds":{"left":0.31715426,"top":0.14764565,"width":0.03474069,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Calendar","depth":15,"bounds":{"left":0.32845744,"top":0.15363128,"width":0.020113032,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Reports","depth":13,"bounds":{"left":0.35322472,"top":0.14764565,"width":0.031914894,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reports","depth":15,"bounds":{"left":0.3645279,"top":0.15363128,"width":0.017287234,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Testing Board","depth":13,"bounds":{"left":0.38646942,"top":0.14764565,"width":0.046708778,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Testing Board","depth":15,"bounds":{"left":0.3977726,"top":0.15363128,"width":0.030751329,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"List","depth":13,"bounds":{"left":0.43450797,"top":0.14764565,"width":0.02244016,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"List","depth":15,"bounds":{"left":0.44581118,"top":0.15363128,"width":0.0078125,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Forms","depth":13,"bounds":{"left":0.4582779,"top":0.14764565,"width":0.028590426,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Forms","depth":15,"bounds":{"left":0.46958113,"top":0.15363128,"width":0.013962766,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Components","depth":13,"bounds":{"left":0.48819813,"top":0.14764565,"width":0.04305186,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Components","depth":15,"bounds":{"left":0.49950132,"top":0.15363128,"width":0.028424202,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Development","depth":13,"bounds":{"left":0.5325798,"top":0.14764565,"width":0.044049203,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Development","depth":15,"bounds":{"left":0.54388297,"top":0.15363128,"width":0.029421542,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Code","depth":13,"bounds":{"left":0.57795876,"top":0.14764565,"width":0.02642952,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Code","depth":15,"bounds":{"left":0.58926195,"top":0.15363128,"width":0.011801862,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Security","depth":13,"bounds":{"left":0.6057181,"top":0.14764565,"width":0.03324468,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Security","depth":15,"bounds":{"left":0.61702126,"top":0.15363128,"width":0.01861702,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Releases","depth":13,"bounds":{"left":0.6402925,"top":0.14764565,"width":0.034574468,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Releases","depth":15,"bounds":{"left":0.6515958,"top":0.15363128,"width":0.019946808,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Deployments","depth":13,"bounds":{"left":0.6761968,"top":0.14764565,"width":0.043882977,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Deployments","depth":15,"bounds":{"left":0.6875,"top":0.15363128,"width":0.02925532,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Archived work items","depth":13,"bounds":{"left":0.72140956,"top":0.14764565,"width":0.06017287,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Archived work items","depth":15,"bounds":{"left":0.73271275,"top":0.15363128,"width":0.045545213,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Docs","depth":13,"bounds":{"left":0.78291225,"top":0.14764565,"width":0.025930852,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Docs","depth":15,"bounds":{"left":0.79421544,"top":0.15363128,"width":0.011303191,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Shortcuts","depth":14,"bounds":{"left":0.81017286,"top":0.14764565,"width":0.045545213,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Shortcuts","depth":15,"bounds":{"left":0.8228058,"top":0.15363128,"width":0.021609042,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Slack integration","depth":13,"bounds":{"left":0.85704786,"top":0.14764565,"width":0.05319149,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Slack integration","depth":15,"bounds":{"left":0.86835104,"top":0.15363128,"width":0.03723404,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Reporting Center","depth":13,"bounds":{"left":0.9115692,"top":0.14764565,"width":0.053856384,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reporting Center","depth":15,"bounds":{"left":0.92287236,"top":0.15363128,"width":0.037898935,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add to navigation","depth":11,"bounds":{"left":0.96675533,"top":0.15083799,"width":0.007978723,"height":0.01915403},"on_screen":true,"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":11,"bounds":{"left":0.16738696,"top":0.20271349,"width":0.18134974,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Search on current page","depth":11,"bounds":{"left":0.17569813,"top":0.188747,"width":0.050531916,"height":0.026735835},"on_screen":true,"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":12,"bounds":{"left":0.23121676,"top":0.19034317,"width":0.03873005,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Filter assignees by Lukas Kovalik","depth":11,"bounds":{"left":0.23254654,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Filter assignees by Aneliya Angelova","depth":11,"bounds":{"left":0.24052526,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":11,"bounds":{"left":0.24850398,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":11,"bounds":{"left":0.25648272,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":11,"bounds":{"left":0.26446143,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Filter assignees by Unassigned","depth":11,"bounds":{"left":0.27244017,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Epic","depth":13,"bounds":{"left":0.28440824,"top":0.18914606,"width":0.0234375,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Epic","depth":16,"bounds":{"left":0.2883976,"top":0.19513169,"width":0.009474734,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Type","depth":13,"bounds":{"left":0.31050533,"top":0.18914606,"width":0.025099734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Type","depth":16,"bounds":{"left":0.31449467,"top":0.19513169,"width":0.011136968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Quick filters","depth":13,"bounds":{"left":0.3382646,"top":0.18914606,"width":0.040724736,"height":0.025538707},"on_screen":true,"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":16,"bounds":{"left":0.34225398,"top":0.19513169,"width":0.026761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Complete sprint","depth":10,"bounds":{"left":0.85106385,"top":0.18914606,"width":0.04338431,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Complete sprint","depth":12,"bounds":{"left":0.8550532,"top":0.19513169,"width":0.035405584,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Sprint details","depth":10,"bounds":{"left":0.8971077,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Group by Queries","depth":10,"bounds":{"left":0.9104056,"top":0.18914606,"width":0.041722074,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Group","depth":13,"bounds":{"left":0.914395,"top":0.19513169,"width":0.013796543,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":": Queries","depth":13,"bounds":{"left":0.9281915,"top":0.19513169,"width":0.019946808,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Sprint insights","depth":10,"bounds":{"left":0.95478725,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"View settings","depth":10,"bounds":{"left":0.9680851,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"View settings","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions","depth":10,"bounds":{"left":0.98138297,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More actions","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Ready For DEV","depth":16,"bounds":{"left":0.17270611,"top":0.24022347,"width":0.042220745,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"READY FOR DEV","depth":18,"bounds":{"left":0.17270611,"top":0.2406225,"width":0.03158245,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5","depth":21,"bounds":{"left":0.20844415,"top":0.2406225,"width":0.0023271276,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"JY-20676 Notify the user if a Panorama prompts is deleted but is used in AJ Report. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.1690492,"top":0.27055067,"width":0.112034574,"height":0.1217079},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notify the user if a Panorama prompts is deleted but is used in AJ Report","depth":18,"bounds":{"left":0.17303856,"top":0.28132483,"width":0.08843085,"height":0.029928172},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"AJ Reports, Edit Parent","depth":17,"bounds":{"left":0.17303856,"top":0.31843576,"width":0.025930852,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AJ REPORTS","depth":21,"bounds":{"left":0.17436835,"top":0.3196329,"width":0.023271276,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Backlog","depth":17,"bounds":{"left":0.17303856,"top":0.33918595,"width":0.01761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20676","depth":17,"bounds":{"left":0.1796875,"top":0.3651237,"width":0.018783245,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20676","depth":19,"bounds":{"left":0.1796875,"top":0.36552274,"width":0.018783245,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3","depth":17,"bounds":{"left":0.24251994,"top":0.36552274,"width":0.002493351,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Assignee: Lukas Kovalik","depth":17,"bounds":{"left":0.2684508,"top":0.36193135,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20615 Notify the user if a SS is deleted but is used in AJ Report. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.1690492,"top":0.39545092,"width":0.112034574,"height":0.1217079},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notify the user if a SS is deleted but is used in AJ Report","depth":18,"bounds":{"left":0.17303856,"top":0.40622506,"width":0.083942816,"height":0.029928172},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"AJ Reports, Edit Parent","depth":17,"bounds":{"left":0.17303856,"top":0.44333598,"width":0.025930852,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AJ REPORTS","depth":21,"bounds":{"left":0.17436835,"top":0.4445331,"width":0.023271276,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Backlog","depth":17,"bounds":{"left":0.17303856,"top":0.4640862,"width":0.01761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20615","depth":17,"bounds":{"left":0.1796875,"top":0.49002394,"width":0.018118352,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20615","depth":19,"bounds":{"left":0.1796875,"top":0.490423,"width":0.018118352,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2.5","depth":17,"bounds":{"left":0.24052526,"top":0.490423,"width":0.005984043,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"JY-19958 Upgrade BE libraries - May. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.1690492,"top":0.5203512,"width":0.112034574,"height":0.10574621},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Upgrade BE libraries - May","depth":18,"bounds":{"left":0.17303856,"top":0.5311253,"width":0.059175532,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Maintenance, Edit Parent","depth":17,"bounds":{"left":0.17303856,"top":0.5522745,"width":0.03174867,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"MAINTENANCE","depth":21,"bounds":{"left":0.17436835,"top":0.5534717,"width":0.029089095,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Backlog","depth":17,"bounds":{"left":0.17303856,"top":0.57302475,"width":0.01761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-19958","depth":17,"bounds":{"left":0.1796875,"top":0.5989625,"width":0.018284574,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-19958","depth":19,"bounds":{"left":0.1796875,"top":0.59936154,"width":0.018284574,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":17,"bounds":{"left":0.24301861,"top":0.59936154,"width":0.0016622341,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"JY-20613 Allow owner's role to be selected when setting up a trial. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.1690492,"top":0.6292897,"width":0.112034574,"height":0.1217079},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Allow owner's role to be selected when setting up a trial","depth":18,"bounds":{"left":0.17303856,"top":0.6400638,"width":0.086269945,"height":0.029928172},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Improvement of our efficiency, Edit Parent","depth":17,"bounds":{"left":0.17303856,"top":0.6771748,"width":0.07114362,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"IMPROVEMENT OF OUR EFFICIENCY","depth":21,"bounds":{"left":0.17436835,"top":0.6783719,"width":0.068484046,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Backlog","depth":17,"bounds":{"left":0.17303856,"top":0.697925,"width":0.01761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20613","depth":17,"bounds":{"left":0.1796875,"top":0.7238627,"width":0.018284574,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20613","depth":19,"bounds":{"left":0.1796875,"top":0.72426176,"width":0.018284574,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1.5","depth":17,"bounds":{"left":0.24135639,"top":0.72426176,"width":0.004986702,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Assignee: Lukas Kovalik","depth":17,"bounds":{"left":0.2684508,"top":0.7206704,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20410 Improve Activity Type suggestions. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.1690492,"top":0.75418997,"width":0.112034574,"height":0.10574621},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Improve Activity Type suggestions","depth":18,"bounds":{"left":0.17303856,"top":0.7649641,"width":0.07662899,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Auto-detected activity type, Edit Parent","depth":17,"bounds":{"left":0.17303856,"top":0.7861133,"width":0.06615692,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AUTO-DETECTED ACTIVITY TYPE","depth":21,"bounds":{"left":0.17436835,"top":0.7873105,"width":0.06349734,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Backlog","depth":17,"bounds":{"left":0.17303856,"top":0.80686355,"width":0.01761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20410","depth":17,"bounds":{"left":0.1796875,"top":0.8328013,"width":0.018284574,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20410","depth":19,"bounds":{"left":0.1796875,"top":0.83320034,"width":0.018284574,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":17,"bounds":{"left":0.24268617,"top":0.83320034,"width":0.0023271276,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"In DEV","depth":16,"bounds":{"left":0.29072472,"top":0.24022347,"width":0.024601065,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"IN DEV","depth":18,"bounds":{"left":0.29072472,"top":0.2406225,"width":0.013962766,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":21,"bounds":{"left":0.30884308,"top":0.2406225,"width":0.002493351,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"JY-20833 MCP > Enable users to get a list of calls and their details. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.28706783,"top":0.27055067,"width":0.112034574,"height":0.1217079},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"MCP > Enable users to get a list of calls and their details","depth":18,"bounds":{"left":0.29105717,"top":0.28132483,"width":0.087101065,"height":0.029928172},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Jiminny MCP Connector, Edit Parent","depth":17,"bounds":{"left":0.29105717,"top":0.31843576,"width":0.0546875,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JIMINNY MCP CONNECTOR","depth":21,"bounds":{"left":0.29238698,"top":0.3196329,"width":0.052027926,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"In Dev","depth":17,"bounds":{"left":0.29105717,"top":0.33918595,"width":0.01462766,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20833","depth":17,"bounds":{"left":0.29770613,"top":0.3651237,"width":0.019115692,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20833","depth":19,"bounds":{"left":0.29770613,"top":0.36552274,"width":0.019115692,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"9","depth":17,"bounds":{"left":0.36319813,"top":0.36552274,"width":0.002493351,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"JY-20835 MCP > Enable users to get a list of deals and their details. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.28706783,"top":0.39545092,"width":0.112034574,"height":0.121308856},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"MCP > Enable users to get a list of deals and their details","depth":17,"bounds":{"left":0.29105717,"top":0.40622506,"width":0.08892952,"height":0.029928172},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"JIMINNY MCP CONNECTOR","depth":18,"bounds":{"left":0.29238698,"top":0.4441341,"width":0.052027926,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"In Dev","depth":17,"bounds":{"left":0.29105717,"top":0.46368715,"width":0.01462766,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20835","depth":17,"bounds":{"left":0.29770613,"top":0.4896249,"width":0.018949468,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20835","depth":19,"bounds":{"left":0.29770613,"top":0.49002394,"width":0.018949468,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"20","depth":17,"bounds":{"left":0.35272607,"top":0.49002394,"width":0.004986702,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"merged pull request","depth":16,"bounds":{"left":0.36120346,"top":0.48643255,"width":0.007978723,"height":0.01915403},"on_screen":true,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"Code Review","depth":16,"bounds":{"left":0.40874335,"top":0.24022347,"width":0.038896278,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"CODE REVIEW","depth":18,"bounds":{"left":0.40874335,"top":0.2406225,"width":0.02825798,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":21,"bounds":{"left":0.44148937,"top":0.2406225,"width":0.0016622341,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create work item","depth":16,"bounds":{"left":0.4010971,"top":0.25937748,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"JY-20846 MCP > Enable the AI to know details about the user. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.40508643,"top":0.27055067,"width":0.112034574,"height":0.121308856},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"MCP > Enable the AI to know details about the user","depth":17,"bounds":{"left":0.4090758,"top":0.28132483,"width":0.08045213,"height":0.029928172},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"JIMINNY MCP CONNECTOR","depth":18,"bounds":{"left":0.41040558,"top":0.31923383,"width":0.052027926,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Code Review","depth":17,"bounds":{"left":0.4090758,"top":0.3387869,"width":0.028756648,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20846","depth":17,"bounds":{"left":0.41572472,"top":0.36472467,"width":0.019115692,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20846","depth":19,"bounds":{"left":0.41572472,"top":0.3651237,"width":0.019115692,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1.5","depth":17,"bounds":{"left":0.47057846,"top":0.3651237,"width":0.0051529254,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"pull request","depth":16,"bounds":{"left":0.4792221,"top":0.36153233,"width":0.007978723,"height":0.01915403},"on_screen":true,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Create work item in Code Review","depth":16,"bounds":{"left":0.40508643,"top":0.39505187,"width":0.112034574,"height":0.028731046},"on_screen":true,"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.4163896,"top":0.40263367,"width":0.014793883,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Blocked","depth":16,"bounds":{"left":0.52676195,"top":0.24022347,"width":0.018783245,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"BLOCKED","depth":18,"bounds":{"left":0.52676195,"top":0.2406225,"width":0.018783245,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create work item in Blocked","depth":16,"bounds":{"left":0.523105,"top":0.27055067,"width":0.11186835,"height":0.028731046},"on_screen":true,"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.5344083,"top":0.27813247,"width":0.014793883,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"QA","depth":16,"bounds":{"left":0.64461434,"top":0.24022347,"width":0.016456118,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"QA","depth":18,"bounds":{"left":0.64461434,"top":0.2406225,"width":0.005817819,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3","depth":21,"bounds":{"left":0.65442157,"top":0.2406225,"width":0.0026595744,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create work item","depth":16,"bounds":{"left":0.6369681,"top":0.25937748,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"JY-20725 [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.6409575,"top":0.27055067,"width":0.112034574,"height":0.121308856},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts","depth":17,"bounds":{"left":0.6449468,"top":0.28132483,"width":0.08826463,"height":0.029928172},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"PLATFORM STABILITY","depth":18,"bounds":{"left":0.6462766,"top":0.31923383,"width":0.042220745,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"In QA","depth":17,"bounds":{"left":0.6449468,"top":0.3387869,"width":0.012799202,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20725","depth":17,"bounds":{"left":0.6515958,"top":0.36472467,"width":0.01861702,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20725","depth":19,"bounds":{"left":0.6515958,"top":0.3651237,"width":0.01861702,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1.5","depth":17,"bounds":{"left":0.7039561,"top":0.3651237,"width":0.0051529254,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"pull request","depth":16,"bounds":{"left":0.7124335,"top":0.36153233,"width":0.007978723,"height":0.01915403},"on_screen":true,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-18091 Upgrade to PHP 8.5. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.6409575,"top":0.39505187,"width":0.112034574,"height":0.105347164},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Upgrade to PHP 8.5","depth":17,"bounds":{"left":0.6449468,"top":0.40582603,"width":0.043550532,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"PHP 8.5 UPGRADE","depth":18,"bounds":{"left":0.6462766,"top":0.42777336,"width":0.03357713,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ready for QA","depth":17,"bounds":{"left":0.6449468,"top":0.44732642,"width":0.02925532,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-18091","depth":17,"bounds":{"left":0.6515958,"top":0.47326416,"width":0.01761968,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-18091","depth":19,"bounds":{"left":0.6515958,"top":0.4736632,"width":0.01761968,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
1669722282955675863
|
5787453914413652167
|
visual_change
|
accessibility
|
NULL
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Close tab
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
[JY-20891] Sidekick SMS issue - Jira
[JY-20891] Sidekick SMS issue - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
Usage | Windsurf
Usage | Windsurf
[SRD-6853] Moxso - Potential deal stages bug - Jira
[SRD-6853] Moxso - Potential deal stages bug - Jira
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Pipedrive API Reference and Documentation
Pipedrive API Reference and Documentation
pipedrive/client-php: Pipedrive API client for PHP
pipedrive/client-php: Pipedrive API client for PHP
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Personal Access Tokens (Classic)
Personal Access Tokens (Classic)
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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
Add people
Add people
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
Docs
Docs
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 Aneliya Angelova
Filter assignees by Nikolay Ivanov
Filter assignees by Nikolay Nikolov
Filter assignees by Steliyan Georgiev
Filter assignees by Unassigned
Epic
Epic
Type
Type
Quick filters
Quick filters
Complete sprint
Complete sprint
Sprint details
Sprint details
Group by Queries
Group
: Queries
Sprint insights
Sprint insights
View settings
View settings
More actions
More actions
Ready For DEV
READY FOR DEV
5
JY-20676 Notify the user if a Panorama prompts is deleted but is used in AJ Report. Use the enter key to load the work item.
Notify the user if a Panorama prompts is deleted but is used in AJ Report
AJ Reports, Edit Parent
AJ REPORTS
Backlog
JY-20676
JY-20676
3
Assignee: Lukas Kovalik
JY-20615 Notify the user if a SS is deleted but is used in AJ Report. Use the enter key to load the work item.
Notify the user if a SS is deleted but is used in AJ Report
AJ Reports, Edit Parent
AJ REPORTS
Backlog
JY-20615
JY-20615
2.5
JY-19958 Upgrade BE libraries - May. Use the enter key to load the work item.
Upgrade BE libraries - May
Maintenance, Edit Parent
MAINTENANCE
Backlog
JY-19958
JY-19958
1
JY-20613 Allow owner's role to be selected when setting up a trial. Use the enter key to load the work item.
Allow owner's role to be selected when setting up a trial
Improvement of our efficiency, Edit Parent
IMPROVEMENT OF OUR EFFICIENCY
Backlog
JY-20613
JY-20613
1.5
Assignee: Lukas Kovalik
JY-20410 Improve Activity Type suggestions. Use the enter key to load the work item.
Improve Activity Type suggestions
Auto-detected activity type, Edit Parent
AUTO-DETECTED ACTIVITY TYPE
Backlog
JY-20410
JY-20410
2
In DEV
IN DEV
2
JY-20833 MCP > Enable users to get a list of calls and their details. Use the enter key to load the work item.
MCP > Enable users to get a list of calls and their details
Jiminny MCP Connector, Edit Parent
JIMINNY MCP CONNECTOR
In Dev
JY-20833
JY-20833
9
JY-20835 MCP > Enable users to get a list of deals and their details. Use the enter key to load the work item.
MCP > Enable users to get a list of deals and their details
JIMINNY MCP CONNECTOR
In Dev
JY-20835
JY-20835
20
merged pull request
Code Review
CODE REVIEW
1
Create work item
JY-20846 MCP > Enable the AI to know details about the user. Use the enter key to load the work item.
MCP > Enable the AI to know details about the user
JIMINNY MCP CONNECTOR
Code Review
JY-20846
JY-20846
1.5
pull request
Create work item in Code Review
Create
Blocked
BLOCKED
Create work item in Blocked
Create
QA
QA
3
Create work item
JY-20725 [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts. Use the enter key to load the work item.
[HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts
PLATFORM STABILITY
In QA
JY-20725
JY-20725
1.5
pull request
JY-18091 Upgrade to PHP 8.5. Use the enter key to load the work item.
Upgrade to PHP 8.5
PHP 8.5 UPGRADE
Ready for QA
JY-18091
JY-18091...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49363
|
1762
|
4
|
2026-05-18T06:37:36.935636+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086256935_m1.jpg...
|
Firefox
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira — Work...
|
1
|
jiminny.atlassian.net/jira/software/c/projects/JY/ jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedIssue=JY-20613...
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Close tab
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
[JY-20891] Sidekick SMS issue - Jira
[JY-20891] Sidekick SMS issue - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
Usage | Windsurf
Usage | Windsurf
[SRD-6853] Moxso - Potential deal stages bug - Jira
[SRD-6853] Moxso - Potential deal stages bug - Jira
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Pipedrive API Reference and Documentation
Pipedrive API Reference and Documentation
pipedrive/client-php: Pipedrive API client for PHP
pipedrive/client-php: Pipedrive API client for PHP
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Personal Access Tokens (Classic)
Personal Access Tokens (Classic)
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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
Add people
Add people
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
Docs
Docs
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 Aneliya Angelova
Filter assignees by Nikolay Ivanov
Filter assignees by Nikolay Nikolov
Filter assignees by Steliyan Georgiev
Filter assignees by Unassigned
Epic
Epic
Type
Type
Quick filters
Quick filters
Complete sprint
Complete sprint
Sprint details
Sprint details
Group by Queries
Group
: Queries
Sprint insights
Sprint insights
View settings
View settings
More actions
More actions
Ready For DEV
READY FOR DEV
5
JY-20676 Notify the user if a Panorama prompts is deleted but is used in AJ Report. Use the enter key to load the work item.
Notify the user if a Panorama prompts is deleted but is used in AJ Report
AJ Reports, Edit Parent
AJ REPORTS
Backlog
JY-20676
JY-20676
3
Assignee: Lukas Kovalik
JY-20615 Notify the user if a SS is deleted but is used in AJ Report. Use the enter key to load the work item.
Notify the user if a SS is deleted but is used in AJ Report
AJ Reports, Edit Parent
AJ REPORTS
Backlog
JY-20615
JY-20615...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20891] Sidekick SMS issue - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20891] Sidekick SMS issue - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Usage | Windsurf","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Usage | Windsurf","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[SRD-6853] Moxso - Potential deal stages bug - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[SRD-6853] Moxso - Potential deal stages bug - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipelines - jiminny/app","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pipelines - jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Feed — jiminny — Sentry","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Feed — jiminny — Sentry","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipedrive API Reference and Documentation","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pipedrive API Reference and Documentation","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"pipedrive/client-php: Pipedrive API client for PHP","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"pipedrive/client-php: Pipedrive API client for PHP","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - lukas.kovalik@jiminny.com - Jiminny Mail","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - lukas.kovalik@jiminny.com - Jiminny Mail","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pull requests · jiminny/app","depth":4,"on_screen":true,"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,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Personal Access Tokens (Classic)","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Personal Access Tokens (Classic)","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"on_screen":true,"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,"on_screen":true,"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,"on_screen":true,"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,"on_screen":true,"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,"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to:","depth":9,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Top Bar","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Top Bar","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Sidebar","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Sidebar","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Main Content","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Main Content","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Space navigation","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Space navigation","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse sidebar [","depth":9,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Collapse sidebar [","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Switch sites or apps","depth":10,"on_screen":true,"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":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Go to your Jira homepage","depth":9,"on_screen":true,"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,"on_screen":true,"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":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Rovo Ask Rovo","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Rovo","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Notifications","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notifications","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Help","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Help","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Settings","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Settings","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"lukas.kovalik@jiminny.com","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"lukas.kovalik@jiminny.com","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"For you","depth":12,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"For you","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Recent","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Recent","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Starred","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Starred","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Apps","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Apps","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Apps","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Spaces","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"Spaces","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create space","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create space","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for spaces","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Recent","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Service-Desk","depth":17,"on_screen":true,"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":20,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Service-Desk","depth":18,"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":17,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":20,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Jiminny (New)","depth":18,"on_screen":true,"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":18,"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Jiminny (New)","depth":18,"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Platform Team","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform Team","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Capture Team","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Capture Team","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Enterprise Stability Issues 🤕","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enterprise Stability Issues 🤕","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Processing Team","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Processing Team","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"SE Kanban","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SE Kanban","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More spaces","depth":17,"on_screen":true,"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":20,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Filters","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Filters","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Filters","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Dashboards","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Dashboards","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create dashboard","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create dashboard","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Dashboards","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Operations","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Operations","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Operations","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Confluence , (opens new window)","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Confluence","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Teams , (opens new window)","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Teams","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"open menu","depth":14,"on_screen":true,"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":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Customise sidebar","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Customise sidebar","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Resize side navigation panel","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Spaces","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Spaces","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Platform Team","depth":10,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Platform Team","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add people","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add people","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":10,"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Share","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Automation","depth":10,"on_screen":true,"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":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Give feedback","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Enter full screen","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enter full screen","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Summary","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Summary","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Timeline","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Timeline","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Backlog","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Backlog","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Active sprints","depth":13,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Active sprints","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Calendar","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Calendar","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Reports","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reports","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Testing Board","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Testing Board","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"List","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"List","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Forms","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Forms","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Components","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Components","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Development","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Development","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Code","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Code","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Security","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Security","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Releases","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Releases","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Deployments","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Deployments","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Archived work items","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Archived work items","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Docs","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Docs","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Shortcuts","depth":14,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Shortcuts","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Slack integration","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Slack integration","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Reporting Center","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reporting Center","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add to navigation","depth":11,"on_screen":true,"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":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Search on current page","depth":11,"on_screen":true,"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":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Filter assignees by Lukas Kovalik","depth":11,"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Filter assignees by Aneliya Angelova","depth":11,"on_screen":true,"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":11,"on_screen":true,"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":11,"on_screen":true,"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":11,"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Filter assignees by Unassigned","depth":11,"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Epic","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Epic","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Type","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Type","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Quick filters","depth":13,"on_screen":true,"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":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Complete sprint","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Complete sprint","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Sprint details","depth":10,"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Group by Queries","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Group","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":": Queries","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Sprint insights","depth":10,"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"View settings","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"View settings","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More actions","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Ready For DEV","depth":16,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"READY FOR DEV","depth":18,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5","depth":21,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"JY-20676 Notify the user if a Panorama prompts is deleted but is used in AJ Report. Use the enter key to load the work item.","depth":16,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notify the user if a Panorama prompts is deleted but is used in AJ Report","depth":18,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"AJ Reports, Edit Parent","depth":17,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AJ REPORTS","depth":21,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Backlog","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20676","depth":17,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20676","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Assignee: Lukas Kovalik","depth":17,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20615 Notify the user if a SS is deleted but is used in AJ Report. Use the enter key to load the work item.","depth":16,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notify the user if a SS is deleted but is used in AJ Report","depth":18,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"AJ Reports, Edit Parent","depth":17,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AJ REPORTS","depth":21,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Backlog","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20615","depth":17,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20615","depth":19,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
-4977723391669225224
|
1320979297556680815
|
click
|
accessibility
|
NULL
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Close tab
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
[JY-20891] Sidekick SMS issue - Jira
[JY-20891] Sidekick SMS issue - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
Usage | Windsurf
Usage | Windsurf
[SRD-6853] Moxso - Potential deal stages bug - Jira
[SRD-6853] Moxso - Potential deal stages bug - Jira
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Pipedrive API Reference and Documentation
Pipedrive API Reference and Documentation
pipedrive/client-php: Pipedrive API client for PHP
pipedrive/client-php: Pipedrive API client for PHP
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Personal Access Tokens (Classic)
Personal Access Tokens (Classic)
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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
Add people
Add people
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
Docs
Docs
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 Aneliya Angelova
Filter assignees by Nikolay Ivanov
Filter assignees by Nikolay Nikolov
Filter assignees by Steliyan Georgiev
Filter assignees by Unassigned
Epic
Epic
Type
Type
Quick filters
Quick filters
Complete sprint
Complete sprint
Sprint details
Sprint details
Group by Queries
Group
: Queries
Sprint insights
Sprint insights
View settings
View settings
More actions
More actions
Ready For DEV
READY FOR DEV
5
JY-20676 Notify the user if a Panorama prompts is deleted but is used in AJ Report. Use the enter key to load the work item.
Notify the user if a Panorama prompts is deleted but is used in AJ Report
AJ Reports, Edit Parent
AJ REPORTS
Backlog
JY-20676
JY-20676
3
Assignee: Lukas Kovalik
JY-20615 Notify the user if a SS is deleted but is used in AJ Report. Use the enter key to load the work item.
Notify the user if a SS is deleted but is used in AJ Report
AJ Reports, Edit Parent
AJ REPORTS
Backlog
JY-20615
JY-20615...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49364
|
1762
|
5
|
2026-05-18T06:37:39.661293+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086259661_m1.jpg...
|
Firefox
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira — Work...
|
1
|
jiminny.atlassian.net/jira/software/c/projects/JY/ jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedIssue=JY-20613...
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Close tab
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
[JY-20891] Sidekick SMS issue - Jira
[JY-20891] Sidekick SMS issue - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
Usage | Windsurf
Usage | Windsurf
[SRD-6853] Moxso - Potential deal stages bug - Jira
[SRD-6853] Moxso - Potential deal stages bug - Jira
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Pipedrive API Reference and Documentation
Pipedrive API Reference and Documentation
pipedrive/client-php: Pipedrive API client for PHP
pipedrive/client-php: Pipedrive API client for PHP
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Personal Access Tokens (Classic)
Personal Access Tokens (Classic)
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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
Add people
Add people
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
Docs
Docs
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...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20891] Sidekick SMS issue - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20891] Sidekick SMS issue - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Usage | Windsurf","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Usage | Windsurf","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[SRD-6853] Moxso - Potential deal stages bug - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[SRD-6853] Moxso - Potential deal stages bug - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipelines - jiminny/app","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pipelines - jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Feed — jiminny — Sentry","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Feed — jiminny — Sentry","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipedrive API Reference and Documentation","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pipedrive API Reference and Documentation","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"pipedrive/client-php: Pipedrive API client for PHP","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"pipedrive/client-php: Pipedrive API client for PHP","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - lukas.kovalik@jiminny.com - Jiminny Mail","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - lukas.kovalik@jiminny.com - Jiminny Mail","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pull requests · jiminny/app","depth":4,"on_screen":true,"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,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Personal Access Tokens (Classic)","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Personal Access Tokens (Classic)","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"on_screen":true,"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,"on_screen":true,"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,"on_screen":true,"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,"on_screen":true,"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,"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to:","depth":9,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Top Bar","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Top Bar","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Sidebar","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Sidebar","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Main Content","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Main Content","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Space navigation","depth":10,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Space navigation","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse sidebar [","depth":9,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Collapse sidebar [","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Switch sites or apps","depth":10,"on_screen":true,"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":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Go to your Jira homepage","depth":9,"on_screen":true,"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,"on_screen":true,"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":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create","depth":12,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Rovo Ask Rovo","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Rovo","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Notifications","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notifications","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Help","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Help","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Settings","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Settings","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"lukas.kovalik@jiminny.com","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"lukas.kovalik@jiminny.com","depth":14,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"For you","depth":12,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"For you","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Recent","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Recent","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Starred","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Starred","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Apps","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Apps","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Apps","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Spaces","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"Spaces","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create space","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create space","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for spaces","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Recent","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Service-Desk","depth":17,"on_screen":true,"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":20,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Service-Desk","depth":18,"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":17,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":20,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Jiminny (New)","depth":18,"on_screen":true,"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":18,"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Jiminny (New)","depth":18,"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Platform Team","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform Team","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Capture Team","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Capture Team","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Enterprise Stability Issues 🤕","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enterprise Stability Issues 🤕","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Processing Team","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Processing Team","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"SE Kanban","depth":19,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SE Kanban","depth":22,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More spaces","depth":17,"on_screen":true,"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":20,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Filters","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Filters","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Filters","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Dashboards","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Dashboards","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create dashboard","depth":13,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create dashboard","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Dashboards","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Operations","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Operations","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Operations","depth":13,"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Confluence , (opens new window)","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Confluence","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Teams , (opens new window)","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Teams","depth":17,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"open menu","depth":14,"on_screen":true,"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":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Customise sidebar","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Customise sidebar","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Resize side navigation panel","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Spaces","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Spaces","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Platform Team","depth":10,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Platform Team","depth":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add people","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add people","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":10,"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Share","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Automation","depth":10,"on_screen":true,"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":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Give feedback","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Enter full screen","depth":10,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enter full screen","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Summary","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Summary","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Timeline","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Timeline","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Backlog","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Backlog","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Active sprints","depth":13,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Active sprints","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Calendar","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Calendar","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Reports","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reports","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Testing Board","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Testing Board","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"List","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"List","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Forms","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Forms","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Components","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Components","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Development","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Development","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Code","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Code","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Security","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Security","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Releases","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Releases","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Deployments","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Deployments","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Archived work items","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Archived work items","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Docs","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Docs","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Shortcuts","depth":14,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Shortcuts","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Slack integration","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Slack integration","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Reporting Center","depth":13,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reporting Center","depth":15,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add to navigation","depth":11,"on_screen":true,"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":11,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Search on current page","depth":11,"on_screen":true,"placeholder":"Search board","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false}]...
|
5707919656727187878
|
1320979297271992398
|
click
|
accessibility
|
NULL
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Close tab
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
[JY-20891] Sidekick SMS issue - Jira
[JY-20891] Sidekick SMS issue - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
Usage | Windsurf
Usage | Windsurf
[SRD-6853] Moxso - Potential deal stages bug - Jira
[SRD-6853] Moxso - Potential deal stages bug - Jira
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Pipedrive API Reference and Documentation
Pipedrive API Reference and Documentation
pipedrive/client-php: Pipedrive API client for PHP
pipedrive/client-php: Pipedrive API client for PHP
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Personal Access Tokens (Classic)
Personal Access Tokens (Classic)
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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
Add people
Add people
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
Docs
Docs
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...
|
49363
|
NULL
|
NULL
|
NULL
|
|
49365
|
1763
|
7
|
2026-05-18T06:37:39.671218+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779086259671_m2.jpg...
|
Firefox
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira — Work...
|
1
|
jiminny.atlassian.net/jira/software/c/projects/JY/ jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedIssue=JY-20613...
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Close tab
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
[JY-20891] Sidekick SMS issue - Jira
[JY-20891] Sidekick SMS issue - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
Usage | Windsurf
Usage | Windsurf
[SRD-6853] Moxso - Potential deal stages bug - Jira
[SRD-6853] Moxso - Potential deal stages bug - Jira
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Pipedrive API Reference and Documentation
Pipedrive API Reference and Documentation
pipedrive/client-php: Pipedrive API client for PHP
pipedrive/client-php: Pipedrive API client for PHP
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Personal Access Tokens (Classic)
Personal Access Tokens (Classic)
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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
Add people
Add people
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
Docs
Docs
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 Aneliya Angelova
Filter assignees by Nikolay Ivanov
Filter assignees by Nikolay Nikolov
Filter assignees by Steliyan Georgiev
Filter assignees by Unassigned
Epic
Epic
Type
Type
Quick filters
Quick filters
Complete sprint
Complete sprint
Sprint details
Sprint details
Group by Queries
Group
: Queries
Sprint insights
Sprint insights
View settings
View settings
More actions
More actions
Ready For DEV
READY FOR DEV
5
JY-20676 Notify the user if a Panorama prompts is deleted but is used in AJ Report. Use the enter key to load the work item.
Notify the user if a Panorama prompts is deleted but is used in AJ Report
AJ Reports, Edit Parent
AJ REPORTS
Backlog
JY-20676
JY-20676
3
Assignee: Lukas Kovalik
JY-20615 Notify the user if a SS is deleted but is used in AJ Report. Use the enter key to load the work item.
Notify the user if a SS is deleted but is used in AJ Report
AJ Reports, Edit Parent
AJ REPORTS
Backlog
JY-20615
JY-20615
2.5
JY-19958 Upgrade BE libraries - May. Use the enter key to load the work item.
Upgrade BE libraries - May
Maintenance, Edit Parent
MAINTENANCE
Backlog
JY-19958
JY-19958
1
JY-20613 Allow owner's role to be selected when setting up a trial. Use the enter key to load the work item.
Allow owner's role to be selected when setting up a trial
Improvement of our efficiency, Edit Parent
IMPROVEMENT OF OUR EFFICIENCY
Backlog
JY-20613
JY-20613
1.5
Assignee: Lukas Kovalik
JY-20410 Improve Activity Type suggestions. Use the enter key to load the work item.
Improve Activity Type suggestions
Auto-detected activity type, Edit Parent
AUTO-DETECTED ACTIVITY TYPE
Backlog
JY-20410
JY-20410
2
In DEV
IN DEV
2
JY-20833 MCP > Enable users to get a list of calls and their details. Use the enter key to load the work item.
MCP > Enable users to get a list of calls and their details
Jiminny MCP Connector, Edit Parent
JIMINNY MCP CONNECTOR
In Dev
JY-20833
JY-20833
9
JY-20835 MCP > Enable users to get a list of deals and their details. Use the enter key to load the work item.
MCP > Enable users to get a list of deals and their details
JIMINNY MCP CONNECTOR
In Dev...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira","depth":4,"bounds":{"left":0.0,"top":0.0518755,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.06304868,"width":0.10106383,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.06732048,"top":0.05905826,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.08459697,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.09577015,"width":0.15658244,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20891] Sidekick SMS issue - Jira","depth":4,"bounds":{"left":0.0,"top":0.11731844,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20891] Sidekick SMS issue - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.12849163,"width":0.064494684,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira","depth":4,"bounds":{"left":0.0,"top":0.15003991,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.16121309,"width":0.18068483,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Usage | Windsurf","depth":4,"bounds":{"left":0.0,"top":0.18276137,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Usage | Windsurf","depth":5,"bounds":{"left":0.013297873,"top":0.19393456,"width":0.029920213,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[SRD-6853] Moxso - Potential deal stages bug - Jira","depth":4,"bounds":{"left":0.0,"top":0.21548285,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[SRD-6853] Moxso - Potential deal stages bug - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.22665602,"width":0.09158909,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipelines - jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.2482043,"width":0.07962101,"height":0.032721467},"on_screen":true,"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.25937748,"width":0.039228722,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Feed — jiminny — Sentry","depth":4,"bounds":{"left":0.0,"top":0.28092578,"width":0.07962101,"height":0.032721467},"on_screen":true,"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.29209897,"width":0.042719416,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":4,"bounds":{"left":0.0,"top":0.31364724,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.32482043,"width":0.07413564,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pipedrive API Reference and Documentation","depth":4,"bounds":{"left":0.0,"top":0.3463687,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pipedrive API Reference and Documentation","depth":5,"bounds":{"left":0.013297873,"top":0.3575419,"width":0.07679521,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"pipedrive/client-php: Pipedrive API client for PHP","depth":4,"bounds":{"left":0.0,"top":0.3790902,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"pipedrive/client-php: Pipedrive API client for PHP","depth":5,"bounds":{"left":0.013297873,"top":0.39026338,"width":0.08543883,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - lukas.kovalik@jiminny.com - Jiminny Mail","depth":4,"bounds":{"left":0.0,"top":0.41181165,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - lukas.kovalik@jiminny.com - Jiminny Mail","depth":5,"bounds":{"left":0.013297873,"top":0.42298484,"width":0.21791889,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pull requests · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.4445331,"width":0.07962101,"height":0.032721467},"on_screen":true,"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.013297873,"top":0.4557063,"width":0.04537899,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":4,"bounds":{"left":0.0,"top":0.4772546,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.4884278,"width":0.15259309,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":4,"bounds":{"left":0.0,"top":0.509976,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20906] Review of Pipedrive SDK - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.5211492,"width":0.07413564,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Personal Access Tokens (Classic)","depth":4,"bounds":{"left":0.0,"top":0.54269755,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Personal Access Tokens (Classic)","depth":5,"bounds":{"left":0.013297873,"top":0.55387074,"width":0.058011968,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"bounds":{"left":0.0028257978,"top":0.57701516,"width":0.07413564,"height":0.025538707},"on_screen":true,"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},"on_screen":true,"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},"on_screen":true,"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},"on_screen":true,"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},"on_screen":true,"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},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to:","depth":9,"bounds":{"left":0.090259306,"top":0.07861133,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Top Bar","depth":10,"bounds":{"left":0.090259306,"top":0.097765364,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Top Bar","depth":11,"bounds":{"left":0.090259306,"top":0.097765364,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Sidebar","depth":10,"bounds":{"left":0.090259306,"top":0.11691939,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Sidebar","depth":11,"bounds":{"left":0.090259306,"top":0.11691939,"width":0.016954787,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Main Content","depth":10,"bounds":{"left":0.090259306,"top":0.13607343,"width":0.029421542,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Main Content","depth":11,"bounds":{"left":0.090259306,"top":0.13607343,"width":0.029421542,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Space navigation","depth":10,"bounds":{"left":0.090259306,"top":0.15522745,"width":0.037898935,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Space navigation","depth":11,"bounds":{"left":0.090259306,"top":0.15522745,"width":0.037898935,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse sidebar [","depth":9,"bounds":{"left":0.08361037,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Collapse sidebar [","depth":11,"bounds":{"left":0.0887633,"top":0.06344773,"width":0.039727394,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Switch sites or apps","depth":10,"bounds":{"left":0.095578454,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":12,"bounds":{"left":0.10073138,"top":0.06344773,"width":0.044215426,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Go to your Jira homepage","depth":9,"bounds":{"left":0.10887633,"top":0.057861134,"width":0.029421542,"height":0.025538707},"on_screen":true,"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.40475398,"top":0.06264964,"width":0.24268617,"height":0.015961692},"on_screen":true,"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":10,"bounds":{"left":0.65575135,"top":0.057861134,"width":0.030086435,"height":0.025538707},"on_screen":true,"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.66705453,"top":0.06384677,"width":0.014793883,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Rovo Ask Rovo","depth":12,"bounds":{"left":0.91223407,"top":0.057861134,"width":0.035904255,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Rovo","depth":14,"bounds":{"left":0.92353725,"top":0.06384677,"width":0.020611702,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Notifications","depth":12,"bounds":{"left":0.9494681,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notifications","depth":14,"bounds":{"left":0.954621,"top":0.06344773,"width":0.027759308,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Help","depth":12,"bounds":{"left":0.96143615,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Help","depth":14,"bounds":{"left":0.9665891,"top":0.06344773,"width":0.010139627,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Settings","depth":12,"bounds":{"left":0.9734042,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Settings","depth":14,"bounds":{"left":0.97855717,"top":0.06344773,"width":0.017952127,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"lukas.kovalik@jiminny.com","depth":12,"bounds":{"left":0.98537236,"top":0.057861134,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"lukas.kovalik@jiminny.com","depth":14,"bounds":{"left":0.99052525,"top":0.06344773,"width":0.009474754,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"For you","depth":12,"bounds":{"left":0.08361037,"top":0.09976058,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"For you","depth":15,"bounds":{"left":0.09424867,"top":0.10574621,"width":0.01662234,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Recent","depth":12,"bounds":{"left":0.08361037,"top":0.12529927,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Recent","depth":15,"bounds":{"left":0.09424867,"top":0.13128492,"width":0.015458777,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Starred","depth":12,"bounds":{"left":0.08361037,"top":0.15083799,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Starred","depth":15,"bounds":{"left":0.09424867,"top":0.15682362,"width":0.016456118,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Apps","depth":12,"bounds":{"left":0.08361037,"top":0.1763767,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Apps","depth":15,"bounds":{"left":0.09424867,"top":0.18236233,"width":0.011635638,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Apps","depth":13,"bounds":{"left":0.15309176,"top":0.17956904,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Spaces","depth":12,"bounds":{"left":0.08361037,"top":0.2019154,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"Spaces","depth":15,"bounds":{"left":0.09424867,"top":0.20790103,"width":0.016456118,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create space","depth":13,"bounds":{"left":0.13646941,"top":0.20510775,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create space","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for spaces","depth":13,"bounds":{"left":0.14577793,"top":0.20510775,"width":0.007978723,"height":0.01915403},"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Recent","depth":16,"bounds":{"left":0.08959442,"top":0.23423783,"width":0.013464096,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Service-Desk","depth":17,"bounds":{"left":0.08759973,"top":0.2529928,"width":0.0674867,"height":0.025538707},"on_screen":true,"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":20,"bounds":{"left":0.09823803,"top":0.25897846,"width":0.03025266,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Service-Desk","depth":18,"bounds":{"left":0.15442154,"top":0.25618514,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":17,"bounds":{"left":0.08759973,"top":0.27853152,"width":0.0674867,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":20,"bounds":{"left":0.09823803,"top":0.28451717,"width":0.032081116,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Jiminny (New)","depth":18,"bounds":{"left":0.08892952,"top":0.28172386,"width":0.007978723,"height":0.01915403},"on_screen":true,"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":18,"bounds":{"left":0.13646941,"top":0.28172386,"width":0.007978723,"height":0.01915403},"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Jiminny (New)","depth":18,"bounds":{"left":0.14577793,"top":0.28172386,"width":0.007978723,"height":0.01915403},"on_screen":true,"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":20,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Platform Team","depth":19,"bounds":{"left":0.09158909,"top":0.30407023,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Platform Team","depth":22,"bounds":{"left":0.1022274,"top":0.31005585,"width":0.032247342,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"bounds":{"left":0.15309176,"top":0.30726257,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Capture Team","depth":19,"bounds":{"left":0.09158909,"top":0.32960895,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Capture Team","depth":22,"bounds":{"left":0.1022274,"top":0.33559456,"width":0.03125,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"bounds":{"left":0.15309176,"top":0.33280128,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Enterprise Stability Issues 🤕","depth":19,"bounds":{"left":0.09158909,"top":0.35514766,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enterprise Stability Issues 🤕","depth":22,"bounds":{"left":0.1022274,"top":0.36113328,"width":0.050531916,"height":0.030726258},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"bounds":{"left":0.15309176,"top":0.35834,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Processing Team","depth":19,"bounds":{"left":0.09158909,"top":0.38068634,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Processing Team","depth":22,"bounds":{"left":0.1022274,"top":0.386672,"width":0.038231384,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"bounds":{"left":0.15309176,"top":0.38387868,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"SE Kanban","depth":19,"bounds":{"left":0.09158909,"top":0.40622506,"width":0.06349734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SE Kanban","depth":22,"bounds":{"left":0.1022274,"top":0.4122107,"width":0.024102394,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":20,"bounds":{"left":0.15309176,"top":0.4094174,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":22,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More spaces","depth":17,"bounds":{"left":0.08759973,"top":0.43176377,"width":0.0674867,"height":0.025538707},"on_screen":true,"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":20,"bounds":{"left":0.09823803,"top":0.43774942,"width":0.028756648,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Filters","depth":12,"bounds":{"left":0.08361037,"top":0.45730248,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Filters","depth":15,"bounds":{"left":0.09424867,"top":0.4632881,"width":0.013796543,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Filters","depth":13,"bounds":{"left":0.15309176,"top":0.46049482,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Dashboards","depth":12,"bounds":{"left":0.08361037,"top":0.4828412,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Dashboards","depth":15,"bounds":{"left":0.09424867,"top":0.4888268,"width":0.026761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Create dashboard","depth":13,"bounds":{"left":0.15508644,"top":0.48603353,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Create dashboard","depth":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Dashboards","depth":13,"bounds":{"left":0.16240026,"top":0.48603353,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Operations","depth":12,"bounds":{"left":0.08361037,"top":0.5083799,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Operations","depth":15,"bounds":{"left":0.09424867,"top":0.5143655,"width":0.02443484,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions for Operations","depth":13,"bounds":{"left":0.15309176,"top":0.51157224,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":15,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Confluence , (opens new window)","depth":13,"bounds":{"left":0.08361037,"top":0.5434956,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Confluence","depth":17,"bounds":{"left":0.09424867,"top":0.5494813,"width":0.025764627,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"bounds":{"left":0.08361037,"top":0.55706304,"width":0.04837101,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Teams , (opens new window)","depth":13,"bounds":{"left":0.08361037,"top":0.56903434,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Teams","depth":17,"bounds":{"left":0.09424867,"top":0.57501996,"width":0.014793883,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", (opens new window)","depth":15,"bounds":{"left":0.08361037,"top":0.5826017,"width":0.04837101,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"open menu","depth":14,"bounds":{"left":0.14378324,"top":0.57222664,"width":0.0039893617,"height":0.01915403},"on_screen":true,"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":16,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Customise sidebar","depth":12,"bounds":{"left":0.08361037,"top":0.60415006,"width":0.071476065,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Customise sidebar","depth":15,"bounds":{"left":0.09424867,"top":0.6101357,"width":0.04155585,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Resize side navigation panel","depth":13,"bounds":{"left":0.2109375,"top":0.0981644,"width":0.062333778,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Spaces","depth":13,"bounds":{"left":0.16738696,"top":0.09976058,"width":0.016289894,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Spaces","depth":15,"bounds":{"left":0.16738696,"top":0.102553874,"width":0.016289894,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"bounds":{"left":0.18683511,"top":0.102553874,"width":0.0016622341,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Jiminny (New)","depth":13,"bounds":{"left":0.19165559,"top":0.09976058,"width":0.03174867,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny (New)","depth":15,"bounds":{"left":0.19165559,"top":0.102553874,"width":0.03174867,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Platform Team","depth":10,"bounds":{"left":0.16738696,"top":0.12210695,"width":0.045877658,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Platform Team","depth":11,"bounds":{"left":0.16738696,"top":0.12210695,"width":0.045877658,"height":0.019553073},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add people","depth":10,"bounds":{"left":0.21525931,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Add people","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Board actions","depth":10,"bounds":{"left":0.2278923,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Share","depth":10,"bounds":{"left":0.94148934,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Automation","depth":10,"bounds":{"left":0.95478725,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":10,"bounds":{"left":0.9680851,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Give feedback","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Enter full screen","depth":10,"bounds":{"left":0.98138297,"top":0.118914604,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Enter full screen","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Summary","depth":13,"bounds":{"left":0.16472739,"top":0.14764565,"width":0.035904255,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Summary","depth":15,"bounds":{"left":0.17603059,"top":0.15363128,"width":0.021276595,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Timeline","depth":13,"bounds":{"left":0.20196144,"top":0.14764565,"width":0.03357713,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Timeline","depth":15,"bounds":{"left":0.21326463,"top":0.15363128,"width":0.018949468,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Backlog","depth":13,"bounds":{"left":0.23686835,"top":0.14764565,"width":0.032413565,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Backlog","depth":15,"bounds":{"left":0.24817154,"top":0.15363128,"width":0.017785905,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Active sprints","depth":13,"bounds":{"left":0.2706117,"top":0.14764565,"width":0.045212764,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Active sprints","depth":15,"bounds":{"left":0.2819149,"top":0.15363128,"width":0.030585106,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Calendar","depth":13,"bounds":{"left":0.31715426,"top":0.14764565,"width":0.03474069,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Calendar","depth":15,"bounds":{"left":0.32845744,"top":0.15363128,"width":0.020113032,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Reports","depth":13,"bounds":{"left":0.35322472,"top":0.14764565,"width":0.031914894,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reports","depth":15,"bounds":{"left":0.3645279,"top":0.15363128,"width":0.017287234,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Testing Board","depth":13,"bounds":{"left":0.38646942,"top":0.14764565,"width":0.046708778,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Testing Board","depth":15,"bounds":{"left":0.3977726,"top":0.15363128,"width":0.030751329,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"List","depth":13,"bounds":{"left":0.43450797,"top":0.14764565,"width":0.02244016,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"List","depth":15,"bounds":{"left":0.44581118,"top":0.15363128,"width":0.0078125,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Forms","depth":13,"bounds":{"left":0.4582779,"top":0.14764565,"width":0.028590426,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Forms","depth":15,"bounds":{"left":0.46958113,"top":0.15363128,"width":0.013962766,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Components","depth":13,"bounds":{"left":0.48819813,"top":0.14764565,"width":0.04305186,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Components","depth":15,"bounds":{"left":0.49950132,"top":0.15363128,"width":0.028424202,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Development","depth":13,"bounds":{"left":0.5325798,"top":0.14764565,"width":0.044049203,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Development","depth":15,"bounds":{"left":0.54388297,"top":0.15363128,"width":0.029421542,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Code","depth":13,"bounds":{"left":0.57795876,"top":0.14764565,"width":0.02642952,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Code","depth":15,"bounds":{"left":0.58926195,"top":0.15363128,"width":0.011801862,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Security","depth":13,"bounds":{"left":0.6057181,"top":0.14764565,"width":0.03324468,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Security","depth":15,"bounds":{"left":0.61702126,"top":0.15363128,"width":0.01861702,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Releases","depth":13,"bounds":{"left":0.6402925,"top":0.14764565,"width":0.034574468,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Releases","depth":15,"bounds":{"left":0.6515958,"top":0.15363128,"width":0.019946808,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Deployments","depth":13,"bounds":{"left":0.6761968,"top":0.14764565,"width":0.043882977,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Deployments","depth":15,"bounds":{"left":0.6875,"top":0.15363128,"width":0.02925532,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Archived work items","depth":13,"bounds":{"left":0.72140956,"top":0.14764565,"width":0.06017287,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Archived work items","depth":15,"bounds":{"left":0.73271275,"top":0.15363128,"width":0.045545213,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Docs","depth":13,"bounds":{"left":0.78291225,"top":0.14764565,"width":0.025930852,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Docs","depth":15,"bounds":{"left":0.79421544,"top":0.15363128,"width":0.011303191,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Shortcuts","depth":14,"bounds":{"left":0.81017286,"top":0.14764565,"width":0.045545213,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Shortcuts","depth":15,"bounds":{"left":0.8228058,"top":0.15363128,"width":0.021609042,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Slack integration","depth":13,"bounds":{"left":0.85704786,"top":0.14764565,"width":0.05319149,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Slack integration","depth":15,"bounds":{"left":0.86835104,"top":0.15363128,"width":0.03723404,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Reporting Center","depth":13,"bounds":{"left":0.9115692,"top":0.14764565,"width":0.053856384,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reporting Center","depth":15,"bounds":{"left":0.92287236,"top":0.15363128,"width":0.037898935,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Add to navigation","depth":11,"bounds":{"left":0.96675533,"top":0.15083799,"width":0.007978723,"height":0.01915403},"on_screen":true,"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":11,"bounds":{"left":0.16738696,"top":0.20271349,"width":0.18134974,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Search on current page","depth":11,"bounds":{"left":0.17569813,"top":0.188747,"width":0.050531916,"height":0.026735835},"on_screen":true,"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":12,"bounds":{"left":0.23121676,"top":0.19034317,"width":0.03873005,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Filter assignees by Lukas Kovalik","depth":11,"bounds":{"left":0.23254654,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Filter assignees by Aneliya Angelova","depth":11,"bounds":{"left":0.24052526,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":11,"bounds":{"left":0.24850398,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":11,"bounds":{"left":0.25648272,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":11,"bounds":{"left":0.26446143,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Filter assignees by Unassigned","depth":11,"bounds":{"left":0.27244017,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"checkbox","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Epic","depth":13,"bounds":{"left":0.28440824,"top":0.18914606,"width":0.0234375,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Epic","depth":16,"bounds":{"left":0.2883976,"top":0.19513169,"width":0.009474734,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Type","depth":13,"bounds":{"left":0.31050533,"top":0.18914606,"width":0.025099734,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Type","depth":16,"bounds":{"left":0.31449467,"top":0.19513169,"width":0.011136968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Quick filters","depth":13,"bounds":{"left":0.3382646,"top":0.18914606,"width":0.040724736,"height":0.025538707},"on_screen":true,"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":16,"bounds":{"left":0.34225398,"top":0.19513169,"width":0.026761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Complete sprint","depth":10,"bounds":{"left":0.85106385,"top":0.18914606,"width":0.04338431,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Complete sprint","depth":12,"bounds":{"left":0.8550532,"top":0.19513169,"width":0.035405584,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Sprint details","depth":10,"bounds":{"left":0.8971077,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Group by Queries","depth":10,"bounds":{"left":0.9104056,"top":0.18914606,"width":0.041722074,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Group","depth":13,"bounds":{"left":0.914395,"top":0.19513169,"width":0.013796543,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":": Queries","depth":13,"bounds":{"left":0.9281915,"top":0.19513169,"width":0.019946808,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Sprint insights","depth":10,"bounds":{"left":0.95478725,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"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":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"View settings","depth":10,"bounds":{"left":0.9680851,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"View settings","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More actions","depth":10,"bounds":{"left":0.98138297,"top":0.18914606,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More actions","depth":12,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Ready For DEV","depth":16,"bounds":{"left":0.17270611,"top":0.24022347,"width":0.042220745,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"READY FOR DEV","depth":18,"bounds":{"left":0.17270611,"top":0.2406225,"width":0.03158245,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5","depth":21,"bounds":{"left":0.20844415,"top":0.2406225,"width":0.0023271276,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"JY-20676 Notify the user if a Panorama prompts is deleted but is used in AJ Report. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.1690492,"top":0.27055067,"width":0.112034574,"height":0.1217079},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notify the user if a Panorama prompts is deleted but is used in AJ Report","depth":18,"bounds":{"left":0.17303856,"top":0.28132483,"width":0.08843085,"height":0.029928172},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"AJ Reports, Edit Parent","depth":17,"bounds":{"left":0.17303856,"top":0.31843576,"width":0.025930852,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AJ REPORTS","depth":21,"bounds":{"left":0.17436835,"top":0.3196329,"width":0.023271276,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Backlog","depth":17,"bounds":{"left":0.17303856,"top":0.33918595,"width":0.01761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20676","depth":17,"bounds":{"left":0.1796875,"top":0.3651237,"width":0.018783245,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20676","depth":19,"bounds":{"left":0.1796875,"top":0.36552274,"width":0.018783245,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3","depth":17,"bounds":{"left":0.24251994,"top":0.36552274,"width":0.002493351,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Assignee: Lukas Kovalik","depth":17,"bounds":{"left":0.2684508,"top":0.36193135,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20615 Notify the user if a SS is deleted but is used in AJ Report. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.1690492,"top":0.39545092,"width":0.112034574,"height":0.1217079},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Notify the user if a SS is deleted but is used in AJ Report","depth":18,"bounds":{"left":0.17303856,"top":0.40622506,"width":0.083942816,"height":0.029928172},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"AJ Reports, Edit Parent","depth":17,"bounds":{"left":0.17303856,"top":0.44333598,"width":0.025930852,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AJ REPORTS","depth":21,"bounds":{"left":0.17436835,"top":0.4445331,"width":0.023271276,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Backlog","depth":17,"bounds":{"left":0.17303856,"top":0.4640862,"width":0.01761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20615","depth":17,"bounds":{"left":0.1796875,"top":0.49002394,"width":0.018118352,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20615","depth":19,"bounds":{"left":0.1796875,"top":0.490423,"width":0.018118352,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2.5","depth":17,"bounds":{"left":0.24052526,"top":0.490423,"width":0.005984043,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"JY-19958 Upgrade BE libraries - May. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.1690492,"top":0.5203512,"width":0.112034574,"height":0.10574621},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Upgrade BE libraries - May","depth":18,"bounds":{"left":0.17303856,"top":0.5311253,"width":0.059175532,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Maintenance, Edit Parent","depth":17,"bounds":{"left":0.17303856,"top":0.5522745,"width":0.03174867,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"MAINTENANCE","depth":21,"bounds":{"left":0.17436835,"top":0.5534717,"width":0.029089095,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Backlog","depth":17,"bounds":{"left":0.17303856,"top":0.57302475,"width":0.01761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-19958","depth":17,"bounds":{"left":0.1796875,"top":0.5989625,"width":0.018284574,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-19958","depth":19,"bounds":{"left":0.1796875,"top":0.59936154,"width":0.018284574,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":17,"bounds":{"left":0.24301861,"top":0.59936154,"width":0.0016622341,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"JY-20613 Allow owner's role to be selected when setting up a trial. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.1690492,"top":0.6292897,"width":0.112034574,"height":0.1217079},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Allow owner's role to be selected when setting up a trial","depth":18,"bounds":{"left":0.17303856,"top":0.6400638,"width":0.086269945,"height":0.029928172},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Improvement of our efficiency, Edit Parent","depth":17,"bounds":{"left":0.17303856,"top":0.6771748,"width":0.07114362,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"IMPROVEMENT OF OUR EFFICIENCY","depth":21,"bounds":{"left":0.17436835,"top":0.6783719,"width":0.068484046,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Backlog","depth":17,"bounds":{"left":0.17303856,"top":0.697925,"width":0.01761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20613","depth":17,"bounds":{"left":0.1796875,"top":0.7238627,"width":0.018284574,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20613","depth":19,"bounds":{"left":0.1796875,"top":0.72426176,"width":0.018284574,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1.5","depth":17,"bounds":{"left":0.24135639,"top":0.72426176,"width":0.004986702,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Assignee: Lukas Kovalik","depth":17,"bounds":{"left":0.2684508,"top":0.7206704,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20410 Improve Activity Type suggestions. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.1690492,"top":0.75418997,"width":0.112034574,"height":0.10574621},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Improve Activity Type suggestions","depth":18,"bounds":{"left":0.17303856,"top":0.7649641,"width":0.07662899,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Auto-detected activity type, Edit Parent","depth":17,"bounds":{"left":0.17303856,"top":0.7861133,"width":0.06615692,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AUTO-DETECTED ACTIVITY TYPE","depth":21,"bounds":{"left":0.17436835,"top":0.7873105,"width":0.06349734,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Backlog","depth":17,"bounds":{"left":0.17303856,"top":0.80686355,"width":0.01761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20410","depth":17,"bounds":{"left":0.1796875,"top":0.8328013,"width":0.018284574,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20410","depth":19,"bounds":{"left":0.1796875,"top":0.83320034,"width":0.018284574,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":17,"bounds":{"left":0.24268617,"top":0.83320034,"width":0.0023271276,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"In DEV","depth":16,"bounds":{"left":0.29072472,"top":0.24022347,"width":0.024601065,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"IN DEV","depth":18,"bounds":{"left":0.29072472,"top":0.2406225,"width":0.013962766,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":21,"bounds":{"left":0.30884308,"top":0.2406225,"width":0.002493351,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"JY-20833 MCP > Enable users to get a list of calls and their details. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.28706783,"top":0.27055067,"width":0.112034574,"height":0.1217079},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"MCP > Enable users to get a list of calls and their details","depth":18,"bounds":{"left":0.29105717,"top":0.28132483,"width":0.087101065,"height":0.029928172},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Jiminny MCP Connector, Edit Parent","depth":17,"bounds":{"left":0.29105717,"top":0.31843576,"width":0.0546875,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JIMINNY MCP CONNECTOR","depth":21,"bounds":{"left":0.29238698,"top":0.3196329,"width":0.052027926,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"In Dev","depth":17,"bounds":{"left":0.29105717,"top":0.33918595,"width":0.01462766,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20833","depth":17,"bounds":{"left":0.29770613,"top":0.3651237,"width":0.019115692,"height":0.012769354},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20833","depth":19,"bounds":{"left":0.29770613,"top":0.36552274,"width":0.019115692,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"9","depth":17,"bounds":{"left":0.36319813,"top":0.36552274,"width":0.002493351,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"JY-20835 MCP > Enable users to get a list of deals and their details. Use the enter key to load the work item.","depth":16,"bounds":{"left":0.28706783,"top":0.39545092,"width":0.112034574,"height":0.121308856},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"MCP > Enable users to get a list of deals and their details","depth":17,"bounds":{"left":0.29105717,"top":0.40622506,"width":0.08892952,"height":0.029928172},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"JIMINNY MCP CONNECTOR","depth":18,"bounds":{"left":0.29238698,"top":0.4441341,"width":0.052027926,"height":0.011173184},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"In Dev","depth":17,"bounds":{"left":0.29105717,"top":0.46368715,"width":0.01462766,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
-4814144050486485768
|
1320975998754281679
|
click
|
accessibility
|
NULL
|
Platform Sprint 4 Q2 - Platform Team - Scrum Board Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 4 Q2 - Platform Team - Scrum Board - Jira
Close tab
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
JY-20891 add support for secondary email by LakyLak · Pull Request #12073 · jiminny/app
[JY-20891] Sidekick SMS issue - Jira
[JY-20891] Sidekick SMS issue - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
Usage | Windsurf
Usage | Windsurf
[SRD-6853] Moxso - Potential deal stages bug - Jira
[SRD-6853] Moxso - Potential deal stages bug - Jira
Pipelines - jiminny/app
Pipelines - jiminny/app
Feed — jiminny — Sentry
Feed — jiminny — Sentry
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Pipedrive API Reference and Documentation
Pipedrive API Reference and Documentation
pipedrive/client-php: Pipedrive API client for PHP
pipedrive/client-php: Pipedrive API client for PHP
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
[jiminny/infrastructure] JY-20623 Add SQS queue for panorama reports (PR #728) - [EMAIL] - Jiminny Mail
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20912] Fallback mechanism for users with active SF tokens for CRM Matching - Jira
[JY-20906] Review of Pipedrive SDK - Jira
[JY-20906] Review of Pipedrive SDK - Jira
Personal Access Tokens (Classic)
Personal Access Tokens (Classic)
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
Notifications
Notifications
Help
Help
Settings
Settings
[EMAIL]
[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
Service-Desk
Service-Desk
More actions for Service-Desk
More actions for Service-Desk
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
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
SE Kanban
SE Kanban
Board actions
Board actions
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
Add people
Add people
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
Docs
Docs
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 Aneliya Angelova
Filter assignees by Nikolay Ivanov
Filter assignees by Nikolay Nikolov
Filter assignees by Steliyan Georgiev
Filter assignees by Unassigned
Epic
Epic
Type
Type
Quick filters
Quick filters
Complete sprint
Complete sprint
Sprint details
Sprint details
Group by Queries
Group
: Queries
Sprint insights
Sprint insights
View settings
View settings
More actions
More actions
Ready For DEV
READY FOR DEV
5
JY-20676 Notify the user if a Panorama prompts is deleted but is used in AJ Report. Use the enter key to load the work item.
Notify the user if a Panorama prompts is deleted but is used in AJ Report
AJ Reports, Edit Parent
AJ REPORTS
Backlog
JY-20676
JY-20676
3
Assignee: Lukas Kovalik
JY-20615 Notify the user if a SS is deleted but is used in AJ Report. Use the enter key to load the work item.
Notify the user if a SS is deleted but is used in AJ Report
AJ Reports, Edit Parent
AJ REPORTS
Backlog
JY-20615
JY-20615
2.5
JY-19958 Upgrade BE libraries - May. Use the enter key to load the work item.
Upgrade BE libraries - May
Maintenance, Edit Parent
MAINTENANCE
Backlog
JY-19958
JY-19958
1
JY-20613 Allow owner's role to be selected when setting up a trial. Use the enter key to load the work item.
Allow owner's role to be selected when setting up a trial
Improvement of our efficiency, Edit Parent
IMPROVEMENT OF OUR EFFICIENCY
Backlog
JY-20613
JY-20613
1.5
Assignee: Lukas Kovalik
JY-20410 Improve Activity Type suggestions. Use the enter key to load the work item.
Improve Activity Type suggestions
Auto-detected activity type, Edit Parent
AUTO-DETECTED ACTIVITY TYPE
Backlog
JY-20410
JY-20410
2
In DEV
IN DEV
2
JY-20833 MCP > Enable users to get a list of calls and their details. Use the enter key to load the work item.
MCP > Enable users to get a list of calls and their details
Jiminny MCP Connector, Edit Parent
JIMINNY MCP CONNECTOR
In Dev
JY-20833
JY-20833
9
JY-20835 MCP > Enable users to get a list of deals and their details. Use the enter key to load the work item.
MCP > Enable users to get a list of deals and their details
JIMINNY MCP CONNECTOR
In Dev...
|
49362
|
NULL
|
NULL
|
NULL
|