|
22837
|
977
|
52
|
2026-05-12T07:22:44.075699+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570564075_m2.jpg...
|
PhpStorm
|
faVsco.js – UserAutomatedReportsController.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
HandleHubspotRateLimitTest
Run 'HandleHubspotRateLimitTest'
Debug 'HandleHubspotRateLimitTest'
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
);
}
}
}...
|
[{"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":"JY-20725-handle-HS-search-rate-limit, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09541223,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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.82413566,"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":"HandleHubspotRateLimitTest","depth":6,"bounds":{"left":0.8394282,"top":0.019952115,"width":0.076130316,"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 'HandleHubspotRateLimitTest'","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 'HandleHubspotRateLimitTest'","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.3899601,"top":0.07581804,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"2","depth":4,"bounds":{"left":0.40159574,"top":0.07581804,"width":0.007978723,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.4112367,"top":0.074221864,"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.41855052,"top":0.074221864,"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.122340426,"top":0.0,"width":0.30319148,"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}]...
|
-7995423086579261202
|
-2619102745400854003
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
HandleHubspotRateLimitTest
Run 'HandleHubspotRateLimitTest'
Debug 'HandleHubspotRateLimitTest'
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
);
}
}
}...
|
22836
|
NULL
|
NULL
|
NULL
|
|
22838
|
977
|
53
|
2026-05-12T07:22:50.704457+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570570704_m2.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Petko Kashinski
Screen share
Chrome
File
Edit
View Petko Kashinski
Screen share
Chrome
File
Edit
View
History
Bookmarks
Profiles
Tab
Window
Help
の
Work
Gree
Score
@ wilso
Call A
Jimin
M Inbox
= Nate
= Apps
Build
u Users
New
→
run.userpilot.io/dashboards/product-usage
u
• AIKB
ChatPlayground Al...
Jiminny - Calenda...
GMaill
My Calendly - Eve...
= PH New Ul Login
Get Starting with J...
→ Apps
Chloe Onboarding...
CX Journey SMB...
+ All dashboards
Q Search engagement, feedback, reports, users and more
Dashboard,
Product Usage
3
People
The Product Usage Dashboard tracks user and company engagement metrics, popular pages, and features. It highlights trends, user stickiness, top interactions, and browser preferences.
5
Data
区
Analytics
国
Add Filters
Sessions
E User activity metrics
Measures the daily, weekly, and monthly number of individual users actively using the product.
Metric | Today
E Company activity metrics
Measures the daily, weekly, and monthly number of companies actively using the product.
Metric | Today
Work hows
Active Users
Entarement
542
Feedback
Daily
Active Users
4,390
Weekly
Active Users
6,578
Montnly
& Trend of active users
Tracks active users over time, providing a time-based view of engagement.
Line - Linear | Last 90 Days
& Trend of active companies
Tracks active companies over time, providing a time-based view of engagement.
Line - Linear | Last 90 Days
• Huddle with Lukas Kovalik
Petko Kashinski|
[EMAIL]
7E Al Notes: Off
PK
G Logout
zoom
7
+ %
X
8• Mon 11 May 12:18
™Ux
+
白
E Work
Jiminny
courson
Get Started with Userpilot
へ
必
皇
Leave
Analyse Image
rewind...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Petko Kashinski\nScreen share","depth":2,"bounds":{"left":0.2717018,"top":1.0,"width":0.03757422,"height":-0.028020501},"on_screen":true,"value":"Petko Kashinski\nScreen share","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Chrome","depth":2,"bounds":{"left":0.28422657,"top":1.0,"width":0.015308015,"height":-0.06826019},"on_screen":true,"value":"Chrome","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"File","depth":2,"bounds":{"left":0.3044053,"top":1.0,"width":0.006958189,"height":-0.06826019},"on_screen":true,"value":"File","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Edit","depth":2,"bounds":{"left":0.31623423,"top":1.0,"width":0.0076540075,"height":-0.06826019},"on_screen":true,"value":"Edit","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"View","depth":2,"bounds":{"left":0.32875896,"top":1.0,"width":0.009045646,"height":-0.06826019},"on_screen":true,"value":"View","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"History","depth":2,"bounds":{"left":0.34267536,"top":1.0,"width":0.013220559,"height":-0.06826019},"on_screen":true,"value":"History","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Bookmarks","depth":2,"bounds":{"left":0.36076665,"top":1.0,"width":0.01948293,"height":-0.06826019},"on_screen":true,"value":"Bookmarks","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Profiles","depth":2,"bounds":{"left":0.38581613,"top":1.0,"width":0.013916378,"height":-0.06826019},"on_screen":true,"value":"Profiles","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Tab","depth":2,"bounds":{"left":0.40390742,"top":1.0,"width":0.006958189,"height":-0.06826019},"on_screen":true,"value":"Tab","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Window","depth":2,"bounds":{"left":0.41573632,"top":1.0,"width":0.014612197,"height":-0.06826019},"on_screen":true,"value":"Window","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Help","depth":2,"bounds":{"left":0.43521926,"top":1.0,"width":0.009045646,"height":-0.06826019},"on_screen":true,"value":"Help","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"の","depth":2,"bounds":{"left":0.60499907,"top":1.0,"width":0.0055665514,"height":-0.06826019},"on_screen":true,"value":"の","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Work","depth":2,"bounds":{"left":0.3301506,"top":1.0,"width":0.009741465,"height":-0.091656566},"on_screen":true,"value":"Work","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Gree","depth":2,"bounds":{"left":0.36563736,"top":1.0,"width":0.008349826,"height":-0.09332764},"on_screen":true,"value":"Gree","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Score","depth":2,"bounds":{"left":0.38790357,"top":1.0,"width":0.009045646,"height":-0.09332764},"on_screen":true,"value":"Score","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"@ wilso","depth":2,"bounds":{"left":0.42478198,"top":1.0,"width":0.016003834,"height":-0.089668155},"on_screen":true,"value":"@ wilso","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Call A","depth":2,"bounds":{"left":0.45331055,"top":1.0,"width":0.010437283,"height":-0.09159458},"on_screen":true,"value":"Call A","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jimin","depth":2,"bounds":{"left":0.47557676,"top":1.0,"width":0.009045646,"height":-0.091656566},"on_screen":true,"value":"Jimin","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"M Inbox","depth":2,"bounds":{"left":0.49088478,"top":1.0,"width":0.016003834,"height":-0.09159458},"on_screen":true,"value":"M Inbox","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"= Nate","depth":2,"bounds":{"left":0.5131281,"top":1.0,"width":0.014657999,"height":-0.09141934},"on_screen":true,"value":"= Nate","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"= Apps","depth":2,"bounds":{"left":0.5354172,"top":1.0,"width":0.015308015,"height":-0.09159458},"on_screen":true,"value":"= Apps","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Build","depth":2,"bounds":{"left":0.56324995,"top":1.0,"width":0.009045646,"height":-0.091656566},"on_screen":true,"value":"Build","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"u Users","depth":2,"bounds":{"left":0.57924336,"top":1.0,"width":0.016024597,"height":-0.091540456},"on_screen":true,"value":"u Users","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"New","depth":2,"bounds":{"left":0.6063907,"top":1.0,"width":0.009045646,"height":-0.091656566},"on_screen":true,"value":"New","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"→","depth":2,"on_screen":true,"value":"→","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"run.userpilot.io/dashboards/product-usage","depth":2,"on_screen":true,"value":"run.userpilot.io/dashboards/product-usage","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"u","depth":2,"on_screen":true,"value":"u","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"• AIKB","depth":2,"on_screen":true,"value":"• AIKB","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ChatPlayground Al...","depth":2,"on_screen":true,"value":"ChatPlayground Al...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jiminny - Calenda...","depth":2,"on_screen":true,"value":"Jiminny - Calenda...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"GMaill","depth":2,"on_screen":true,"value":"GMaill","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"My Calendly - Eve...","depth":2,"on_screen":true,"value":"My Calendly - Eve...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"= PH New Ul Login","depth":2,"on_screen":true,"value":"= PH New Ul Login","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Get Starting with J...","depth":2,"on_screen":true,"value":"Get Starting with J...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"→ Apps","depth":2,"on_screen":true,"value":"→ Apps","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Chloe Onboarding...","depth":2,"on_screen":true,"value":"Chloe Onboarding...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"CX Journey SMB...","depth":2,"on_screen":true,"value":"CX Journey SMB...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+ All dashboards","depth":2,"on_screen":true,"value":"+ All dashboards","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Q Search engagement, feedback, reports, users and more","depth":2,"on_screen":true,"value":"Q Search engagement, feedback, reports, users and more","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Dashboard,","depth":2,"on_screen":true,"value":"Dashboard,","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Product Usage","depth":2,"on_screen":true,"value":"Product Usage","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"3\nPeople","depth":2,"on_screen":true,"value":"3\nPeople","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"The Product Usage Dashboard tracks user and company engagement metrics, popular pages, and features. It highlights trends, user stickiness, top interactions, and browser preferences.","depth":2,"on_screen":true,"value":"The Product Usage Dashboard tracks user and company engagement metrics, popular pages, and features. It highlights trends, user stickiness, top interactions, and browser preferences.","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"5\nData\n区\nAnalytics","depth":2,"on_screen":true,"value":"5\nData\n区\nAnalytics","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"国","depth":2,"on_screen":true,"value":"国","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Add Filters","depth":2,"on_screen":true,"value":"Add Filters","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Sessions","depth":2,"on_screen":true,"value":"Sessions","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"E User activity metrics\nMeasures the daily, weekly, and monthly number of individual users actively using the product.\nMetric | Today","depth":2,"on_screen":true,"value":"E User activity metrics\nMeasures the daily, weekly, and monthly number of individual users actively using the product.\nMetric | Today","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"E Company activity metrics\nMeasures the daily, weekly, and monthly number of companies actively using the product.\nMetric | Today","depth":2,"on_screen":true,"value":"E Company activity metrics\nMeasures the daily, weekly, and monthly number of companies actively using the product.\nMetric | Today","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Work hows","depth":2,"on_screen":true,"value":"Work hows","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Active Users","depth":2,"on_screen":true,"value":"Active Users","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Entarement","depth":2,"on_screen":true,"value":"Entarement","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"542","depth":2,"on_screen":true,"value":"542","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Feedback","depth":2,"on_screen":true,"value":"Feedback","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Daily","depth":2,"on_screen":true,"value":"Daily","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Active Users\n4,390\nWeekly","depth":2,"on_screen":true,"value":"Active Users\n4,390\nWeekly","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Active Users","depth":2,"on_screen":true,"value":"Active Users","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"6,578\nMontnly","depth":2,"on_screen":true,"value":"6,578\nMontnly","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"& Trend of active users","depth":2,"on_screen":true,"value":"& Trend of active users","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Tracks active users over time, providing a time-based view of engagement.\nLine - Linear | Last 90 Days","depth":2,"on_screen":true,"value":"Tracks active users over time, providing a time-based view of engagement.\nLine - Linear | Last 90 Days","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"& Trend of active companies\nTracks active companies over time, providing a time-based view of engagement.\nLine - Linear | Last 90 Days","depth":2,"on_screen":true,"value":"& Trend of active companies\nTracks active companies over time, providing a time-based view of engagement.\nLine - Linear | Last 90 Days","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"• Huddle with Lukas Kovalik","depth":2,"on_screen":true,"value":"• Huddle with Lukas Kovalik","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Petko Kashinski|\npetko.rashinski@jiminny.com","depth":2,"on_screen":true,"value":"Petko Kashinski|\npetko.rashinski@jiminny.com","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"7E Al Notes: Off","depth":2,"on_screen":true,"value":"7E Al Notes: Off","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"PK\nG Logout","depth":2,"on_screen":true,"value":"PK\nG Logout","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"zoom","depth":2,"on_screen":true,"value":"zoom","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"7","depth":2,"on_screen":true,"value":"7","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+ %","depth":2,"bounds":{"left":0.64118165,"top":1.0,"width":0.020874565,"height":-0.03483677},"on_screen":true,"value":"+ %","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"X","depth":2,"bounds":{"left":0.68084335,"top":1.0,"width":0.005566551,"height":-0.03483677},"on_screen":true,"value":"X","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"8• Mon 11 May 12:18","depth":2,"bounds":{"left":0.6258736,"top":1.0,"width":0.04453241,"height":-0.066550255},"on_screen":true,"value":"8• Mon 11 May 12:18","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"™Ux\n+","depth":2,"bounds":{"left":0.6230904,"top":1.0,"width":0.025745299,"height":-0.09159458},"on_screen":true,"value":"™Ux\n+","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"白","depth":2,"on_screen":true,"value":"白","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"E Work","depth":2,"on_screen":true,"value":"E Work","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jiminny\ncourson","depth":2,"on_screen":true,"value":"Jiminny\ncourson","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Get Started with Userpilot","depth":2,"on_screen":true,"value":"Get Started with Userpilot","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"へ","depth":2,"on_screen":true,"value":"へ","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"必","depth":2,"on_screen":true,"value":"必","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"皇","depth":2,"on_screen":true,"value":"皇","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Leave","depth":2,"on_screen":true,"value":"Leave","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Analyse Image","depth":2,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"rewind","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false}]...
|
-5941976415871962592
|
-7327792768612828046
|
click
|
accessibility
|
NULL
|
Petko Kashinski
Screen share
Chrome
File
Edit
View Petko Kashinski
Screen share
Chrome
File
Edit
View
History
Bookmarks
Profiles
Tab
Window
Help
の
Work
Gree
Score
@ wilso
Call A
Jimin
M Inbox
= Nate
= Apps
Build
u Users
New
→
run.userpilot.io/dashboards/product-usage
u
• AIKB
ChatPlayground Al...
Jiminny - Calenda...
GMaill
My Calendly - Eve...
= PH New Ul Login
Get Starting with J...
→ Apps
Chloe Onboarding...
CX Journey SMB...
+ All dashboards
Q Search engagement, feedback, reports, users and more
Dashboard,
Product Usage
3
People
The Product Usage Dashboard tracks user and company engagement metrics, popular pages, and features. It highlights trends, user stickiness, top interactions, and browser preferences.
5
Data
区
Analytics
国
Add Filters
Sessions
E User activity metrics
Measures the daily, weekly, and monthly number of individual users actively using the product.
Metric | Today
E Company activity metrics
Measures the daily, weekly, and monthly number of companies actively using the product.
Metric | Today
Work hows
Active Users
Entarement
542
Feedback
Daily
Active Users
4,390
Weekly
Active Users
6,578
Montnly
& Trend of active users
Tracks active users over time, providing a time-based view of engagement.
Line - Linear | Last 90 Days
& Trend of active companies
Tracks active companies over time, providing a time-based view of engagement.
Line - Linear | Last 90 Days
• Huddle with Lukas Kovalik
Petko Kashinski|
[EMAIL]
7E Al Notes: Off
PK
G Logout
zoom
7
+ %
X
8• Mon 11 May 12:18
™Ux
+
白
E Work
Jiminny
courson
Get Started with Userpilot
へ
必
皇
Leave
Analyse Image
rewind...
|
NULL
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22842
|
977
|
54
|
2026-05-12T07:22:55.789870+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570575789_m2.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Petko Kashinski
Screen share
Chrome
File
Edit
View Petko Kashinski
Screen share
Chrome
File
Edit
View
History
Bookmarks
Profiles
Tab
Window
Help
の
Work
Gree
Score
@ wilso
Call A
Jimin
M Inbox
= Nate
= Apps
Build
u Users
New
→
run.userpilot.io/dashboards/product-usage
u
• AIKB
ChatPlayground Al...
Jiminny - Calenda...
GMaill
My Calendly - Eve...
= PH New Ul Login
Get Starting with J...
→ Apps
Chloe Onboarding...
CX Journey SMB...
+ All dashboards
Q Search engagement, feedback, reports, users and more
Dashboard,
Product Usage
3
People
The Product Usage Dashboard tracks user and company engagement metrics, popular pages, and features. It highlights trends, user stickiness, top interactions, and browser preferences.
5
Data
区
Analytics
国
Add Filters
Sessions
E User activity metrics
Measures the daily, weekly, and monthly number of individual users actively using the product.
Metric | Today
E Company activity metrics
Measures the daily, weekly, and monthly number of companies actively using the product.
Metric | Today
Work hows
Active Users
Entarement
542
Feedback
Daily
Active Users
4,390
Weekly
Active Users
6,578
Montnly
& Trend of active users
Tracks active users over time, providing a time-based view of engagement.
Line - Linear | Last 90 Days
& Trend of active companies
Tracks active companies over time, providing a time-based view of engagement.
Line - Linear | Last 90 Days
• Huddle with Lukas Kovalik
Petko Kashinski|
[EMAIL]
7E Al Notes: Off
PK
G Logout
zoom
7
+ %
X
8• Mon 11 May 12:18
™Ux
+
白
E Work
Jiminny
courson
Get Started with Userpilot
へ
必
皇
Leave
Analyse Image
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
00:49
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Petko Kashinski\nScreen share","depth":2,"bounds":{"left":0.2717018,"top":1.0,"width":0.03757422,"height":-0.028020501},"on_screen":true,"value":"Petko Kashinski\nScreen share","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Chrome","depth":2,"bounds":{"left":0.28422657,"top":1.0,"width":0.015308015,"height":-0.06826019},"on_screen":true,"value":"Chrome","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"File","depth":2,"bounds":{"left":0.3044053,"top":1.0,"width":0.006958189,"height":-0.06826019},"on_screen":true,"value":"File","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Edit","depth":2,"bounds":{"left":0.31623423,"top":1.0,"width":0.0076540075,"height":-0.06826019},"on_screen":true,"value":"Edit","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"View","depth":2,"bounds":{"left":0.32875896,"top":1.0,"width":0.009045646,"height":-0.06826019},"on_screen":true,"value":"View","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"History","depth":2,"bounds":{"left":0.34267536,"top":1.0,"width":0.013220559,"height":-0.06826019},"on_screen":true,"value":"History","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Bookmarks","depth":2,"bounds":{"left":0.36076665,"top":1.0,"width":0.01948293,"height":-0.06826019},"on_screen":true,"value":"Bookmarks","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Profiles","depth":2,"bounds":{"left":0.38581613,"top":1.0,"width":0.013916378,"height":-0.06826019},"on_screen":true,"value":"Profiles","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Tab","depth":2,"bounds":{"left":0.40390742,"top":1.0,"width":0.006958189,"height":-0.06826019},"on_screen":true,"value":"Tab","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Window","depth":2,"bounds":{"left":0.41573632,"top":1.0,"width":0.014612197,"height":-0.06826019},"on_screen":true,"value":"Window","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Help","depth":2,"bounds":{"left":0.43521926,"top":1.0,"width":0.009045646,"height":-0.06826019},"on_screen":true,"value":"Help","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"の","depth":2,"bounds":{"left":0.60499907,"top":1.0,"width":0.0055665514,"height":-0.06826019},"on_screen":true,"value":"の","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Work","depth":2,"bounds":{"left":0.3301506,"top":1.0,"width":0.009741465,"height":-0.091656566},"on_screen":true,"value":"Work","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Gree","depth":2,"bounds":{"left":0.36563736,"top":1.0,"width":0.008349826,"height":-0.09332764},"on_screen":true,"value":"Gree","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Score","depth":2,"bounds":{"left":0.38790357,"top":1.0,"width":0.009045646,"height":-0.09332764},"on_screen":true,"value":"Score","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"@ wilso","depth":2,"bounds":{"left":0.42478198,"top":1.0,"width":0.016003834,"height":-0.089668155},"on_screen":true,"value":"@ wilso","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Call A","depth":2,"bounds":{"left":0.45331055,"top":1.0,"width":0.010437283,"height":-0.09159458},"on_screen":true,"value":"Call A","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jimin","depth":2,"bounds":{"left":0.47557676,"top":1.0,"width":0.009045646,"height":-0.091656566},"on_screen":true,"value":"Jimin","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"M Inbox","depth":2,"bounds":{"left":0.49088478,"top":1.0,"width":0.016003834,"height":-0.09159458},"on_screen":true,"value":"M Inbox","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"= Nate","depth":2,"bounds":{"left":0.5131281,"top":1.0,"width":0.014657999,"height":-0.09141934},"on_screen":true,"value":"= Nate","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"= Apps","depth":2,"bounds":{"left":0.5354172,"top":1.0,"width":0.015308015,"height":-0.09159458},"on_screen":true,"value":"= Apps","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Build","depth":2,"bounds":{"left":0.56324995,"top":1.0,"width":0.009045646,"height":-0.091656566},"on_screen":true,"value":"Build","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"u Users","depth":2,"bounds":{"left":0.57924336,"top":1.0,"width":0.016024597,"height":-0.091540456},"on_screen":true,"value":"u Users","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"New","depth":2,"bounds":{"left":0.6063907,"top":1.0,"width":0.009045646,"height":-0.091656566},"on_screen":true,"value":"New","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"→","depth":2,"on_screen":true,"value":"→","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"run.userpilot.io/dashboards/product-usage","depth":2,"on_screen":true,"value":"run.userpilot.io/dashboards/product-usage","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"u","depth":2,"on_screen":true,"value":"u","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"• AIKB","depth":2,"on_screen":true,"value":"• AIKB","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ChatPlayground Al...","depth":2,"on_screen":true,"value":"ChatPlayground Al...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jiminny - Calenda...","depth":2,"on_screen":true,"value":"Jiminny - Calenda...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"GMaill","depth":2,"on_screen":true,"value":"GMaill","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"My Calendly - Eve...","depth":2,"on_screen":true,"value":"My Calendly - Eve...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"= PH New Ul Login","depth":2,"on_screen":true,"value":"= PH New Ul Login","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Get Starting with J...","depth":2,"on_screen":true,"value":"Get Starting with J...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"→ Apps","depth":2,"on_screen":true,"value":"→ Apps","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Chloe Onboarding...","depth":2,"on_screen":true,"value":"Chloe Onboarding...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"CX Journey SMB...","depth":2,"on_screen":true,"value":"CX Journey SMB...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+ All dashboards","depth":2,"on_screen":true,"value":"+ All dashboards","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Q Search engagement, feedback, reports, users and more","depth":2,"on_screen":true,"value":"Q Search engagement, feedback, reports, users and more","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Dashboard,","depth":2,"on_screen":true,"value":"Dashboard,","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Product Usage","depth":2,"on_screen":true,"value":"Product Usage","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"3\nPeople","depth":2,"on_screen":true,"value":"3\nPeople","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"The Product Usage Dashboard tracks user and company engagement metrics, popular pages, and features. It highlights trends, user stickiness, top interactions, and browser preferences.","depth":2,"on_screen":true,"value":"The Product Usage Dashboard tracks user and company engagement metrics, popular pages, and features. It highlights trends, user stickiness, top interactions, and browser preferences.","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"5\nData\n区\nAnalytics","depth":2,"on_screen":true,"value":"5\nData\n区\nAnalytics","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"国","depth":2,"on_screen":true,"value":"国","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Add Filters","depth":2,"on_screen":true,"value":"Add Filters","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Sessions","depth":2,"on_screen":true,"value":"Sessions","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"E User activity metrics\nMeasures the daily, weekly, and monthly number of individual users actively using the product.\nMetric | Today","depth":2,"on_screen":true,"value":"E User activity metrics\nMeasures the daily, weekly, and monthly number of individual users actively using the product.\nMetric | Today","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"E Company activity metrics\nMeasures the daily, weekly, and monthly number of companies actively using the product.\nMetric | Today","depth":2,"on_screen":true,"value":"E Company activity metrics\nMeasures the daily, weekly, and monthly number of companies actively using the product.\nMetric | Today","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Work hows","depth":2,"on_screen":true,"value":"Work hows","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Active Users","depth":2,"on_screen":true,"value":"Active Users","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Entarement","depth":2,"on_screen":true,"value":"Entarement","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"542","depth":2,"on_screen":true,"value":"542","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Feedback","depth":2,"on_screen":true,"value":"Feedback","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Daily","depth":2,"on_screen":true,"value":"Daily","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Active Users\n4,390\nWeekly","depth":2,"on_screen":true,"value":"Active Users\n4,390\nWeekly","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Active Users","depth":2,"on_screen":true,"value":"Active Users","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"6,578\nMontnly","depth":2,"on_screen":true,"value":"6,578\nMontnly","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"& Trend of active users","depth":2,"on_screen":true,"value":"& Trend of active users","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Tracks active users over time, providing a time-based view of engagement.\nLine - Linear | Last 90 Days","depth":2,"on_screen":true,"value":"Tracks active users over time, providing a time-based view of engagement.\nLine - Linear | Last 90 Days","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"& Trend of active companies\nTracks active companies over time, providing a time-based view of engagement.\nLine - Linear | Last 90 Days","depth":2,"on_screen":true,"value":"& Trend of active companies\nTracks active companies over time, providing a time-based view of engagement.\nLine - Linear | Last 90 Days","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"• Huddle with Lukas Kovalik","depth":2,"on_screen":true,"value":"• Huddle with Lukas Kovalik","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Petko Kashinski|\npetko.rashinski@jiminny.com","depth":2,"on_screen":true,"value":"Petko Kashinski|\npetko.rashinski@jiminny.com","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"7E Al Notes: Off","depth":2,"on_screen":true,"value":"7E Al Notes: Off","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"PK\nG Logout","depth":2,"on_screen":true,"value":"PK\nG Logout","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"zoom","depth":2,"on_screen":true,"value":"zoom","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"7","depth":2,"on_screen":true,"value":"7","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+ %","depth":2,"bounds":{"left":0.64118165,"top":1.0,"width":0.020874565,"height":-0.03483677},"on_screen":true,"value":"+ %","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"X","depth":2,"bounds":{"left":0.68084335,"top":1.0,"width":0.005566551,"height":-0.03483677},"on_screen":true,"value":"X","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"8• Mon 11 May 12:18","depth":2,"bounds":{"left":0.6258736,"top":1.0,"width":0.04453241,"height":-0.066550255},"on_screen":true,"value":"8• Mon 11 May 12:18","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"™Ux\n+","depth":2,"bounds":{"left":0.6230904,"top":1.0,"width":0.025745299,"height":-0.09159458},"on_screen":true,"value":"™Ux\n+","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"白","depth":2,"on_screen":true,"value":"白","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"E Work","depth":2,"on_screen":true,"value":"E Work","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jiminny\ncourson","depth":2,"on_screen":true,"value":"Jiminny\ncourson","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Get Started with Userpilot","depth":2,"on_screen":true,"value":"Get Started with Userpilot","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"へ","depth":2,"on_screen":true,"value":"へ","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"必","depth":2,"on_screen":true,"value":"必","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"皇","depth":2,"on_screen":true,"value":"皇","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Leave","depth":2,"on_screen":true,"value":"Leave","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Analyse Image","depth":2,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"rewind","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"00:49","depth":1,"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.5625,"top":1.0,"width":0.0033244682,"height":-0.028730989},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.46143618,"top":1.0,"width":0.10106383,"height":-0.028730989},"on_screen":true,"role_description":"text"}]...
|
8415859131651151154
|
-7327808193987347338
|
click
|
accessibility
|
NULL
|
Petko Kashinski
Screen share
Chrome
File
Edit
View Petko Kashinski
Screen share
Chrome
File
Edit
View
History
Bookmarks
Profiles
Tab
Window
Help
の
Work
Gree
Score
@ wilso
Call A
Jimin
M Inbox
= Nate
= Apps
Build
u Users
New
→
run.userpilot.io/dashboards/product-usage
u
• AIKB
ChatPlayground Al...
Jiminny - Calenda...
GMaill
My Calendly - Eve...
= PH New Ul Login
Get Starting with J...
→ Apps
Chloe Onboarding...
CX Journey SMB...
+ All dashboards
Q Search engagement, feedback, reports, users and more
Dashboard,
Product Usage
3
People
The Product Usage Dashboard tracks user and company engagement metrics, popular pages, and features. It highlights trends, user stickiness, top interactions, and browser preferences.
5
Data
区
Analytics
国
Add Filters
Sessions
E User activity metrics
Measures the daily, weekly, and monthly number of individual users actively using the product.
Metric | Today
E Company activity metrics
Measures the daily, weekly, and monthly number of companies actively using the product.
Metric | Today
Work hows
Active Users
Entarement
542
Feedback
Daily
Active Users
4,390
Weekly
Active Users
6,578
Montnly
& Trend of active users
Tracks active users over time, providing a time-based view of engagement.
Line - Linear | Last 90 Days
& Trend of active companies
Tracks active companies over time, providing a time-based view of engagement.
Line - Linear | Last 90 Days
• Huddle with Lukas Kovalik
Petko Kashinski|
[EMAIL]
7E Al Notes: Off
PK
G Logout
zoom
7
+ %
X
8• Mon 11 May 12:18
™Ux
+
白
E Work
Jiminny
courson
Get Started with Userpilot
へ
必
皇
Leave
Analyse Image
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
00:49
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22851
|
977
|
55
|
2026-05-12T07:23:26.081554+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570606081_m2.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
01:17
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"01:17","depth":1,"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.5625,"top":1.0,"width":0.0033244682,"height":-0.028730989},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.46143618,"top":1.0,"width":0.10106383,"height":-0.028730989},"on_screen":true,"role_description":"text"}]...
|
-4648571774569032263
|
5943394529161513572
|
idle
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
01:17
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
PnostorimIavicatecodeFV faVsco.js?9 JY-20725-handle-HS-search-rate-limitroledeyC) AutomatedReportGenerated.ong© PlaybackController.phpC) UserAutomatedReponscontroller.pnp› D Themesuse r..v D UserAutomatedRepclass UserAutomatedReportstontroller extends controulen© UserAutomatedlv Dv2C) ACuiVityvzcontrAskAnythingCor© AskJiminnyRepc(c) DealsvzControll(C) OnDemandV2CcPlavlistControlle€ PlavlistShareCorC) PlavlistTrackcor30 O1C) ActionltemsControlC) ActivitvControlier.oC) A CrmNotesControl© BaseController.phpc) ClientTokenControlc) CrmController nhoC) Deall evelPromntca© InstantmeeuingconC) Languagecontrollec Layoutmanagemen© Meeuingscontroller• Messacecontrollerc Meradaracontroller© MobileSettingsCon€ NudgeController.ph) NumberAllocatorecc) Orcanizationmemo© OrganizationRetentC) OraanizationRolesci© OrganizationSvncC@ PartnerController.oC) PhoneNumberContg) PlavbackControlle'@ PlavlistController.nl5819yФ ScimController.php@ SidekickController12710C) SoftnhoneControlle(C) ScoController nhn(C) SubscrintionControe ToamAiAutamatione ToamAiContovtear0 TeamController.php(e) TosminciahtcContrpublic const int RESULTSPER_PAGE = 257public const string SORT_COLUMN = 'sort_column';2 usagespublic const string SORT_DIRECTION = 'sort_direction';oublic function constructprivate readonly AutomatedReportsRepository SautomatedReportsRepository,private readonly AutomatedReportsService $automatedReportsService,private readonly ApiResponseService SapiResponseService,private readonly Response Sresponse,private readonly PlanhatService $planhatService,)f..3PosI /api/vi/automatea-reports/interest 1 usage• public function trackInterest(Request Srequest): JsonResponse/** @var User Suser */Suser = Srequest->userO:deterfn ( => Sthis->planhatService->track(user: suser,event.'automated-renorts-track-interest'.)->alwavs@:return Sthis->response->withoko.* athrows AnnlicationExcentionGET lanilv1lautomated-renortspublic function list(Request Srequest): JsonResponsef...}DELETE /api/v1/automated-reports/{uuid}public function delete(Request Srequest, string Suuid): JsonResponse{...}A14 V.2 ^A SF (jiminny@localhost]4 HS_local [jiminny@localhost]# console [PKol)& console [EU]A console [STAGING][2026-05-07 14:21:15] local.INF0: [Hubspot] DEBUG Getting headers {"Vace":L"Inu,0r May 2020 14.21.15 bMl"J,"Transter-Encodinq":"chunked")."CF-Ray": ["9f80deb8db60dc3a-SOF"]."Strict-Transport-Security":["max-aqe=31536000: includeSubDomains: preload"].acceot-encodino""server-timing": ["hcid;desc=\"019e02d0-6fd8-7812-bdba-885b7ccb3ee3\","x-content-tvoe-ontions": "nosniff")."x-hubsoot-correlation-id": "019e02d0-6fd8-7812-bdba-885b7ccb3ee3")."Set-Cookie":["__cf_bm=SrUrtdQgXVrik50pdqF6hZVYKhzTnQBidvMabeCtm0Y-1778163675-[IP_ADDRESS]-rI.ZggtDKxTge5zr8_2gbBfW07-May-26 14:51:15 GMT; domain=.hubapi.com; Http0nly; Secure; SameSite=None"),"Renont-To".f"s"endnoints".'\"url\":"https:\V/\V/a.nel.cloudflare.com\\/report\\/v4?s=NYAlsVTP0fYm32qrSDjxYE4sd2RWRqiSp3wHsmdEgZlzoYdxI%2BIx\"group\":\"cf-nel\",\"max_age\":604800}"],"NEL": ["{\"success_fraction\":0.01,report to. "cr-nel,|"max agel ":604800}"]"Server": ["cloudflare"]}} {"correlation 1d":"95256555-ec98-4541-b9za-adta/Sbo9eab","trace 10":"C/AD8565-905t-4604-9405-8e5b551e5545hhlsupoont Dally • In 41 37100% 5• lue 1z May 10•23.2:cascadePlanhat Event Playbac+0 ..find planhat event playback visitedThoughtsSearched planhat in ~/iminnylappThoughtsSearched olavback *visitedivisited."olavback in ~/fiminnvlaoo.Searched olavback in anniSoarched pl.Searched visited in aprThouahtslFound it in PlaybackController.php :Read DlavbackController.nhn #| 85-114Location:Plavbackcontroller.0no:95-168oho.*Cendina InlavbackVicitedl event to Planhat without clowina +hedeferlfn = Sthis->olanhatService-strack(user. Suserpay load:'activityld' = Sactivity->getId(),activitvluid' = sactivity-saetluido.-salwavs@)Contovt. Collod in tha niavhaak nado controllor wronnod in doforl to firo tha Dlanhat avant scunchronduely aftor thoHTTP response is sent to avoid slowina down the user experience.Oal *Jed daily usage quota is exhausted. Purchase extra usage to continue usina premium models. Quota resets May 12, 11:00"AN CUTYAsk anvthina (84L)÷ @Code SWF-1.6W Windsurf TeamoA0-26fo 4 spaces...
|
22842
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22855
|
977
|
56
|
2026-05-12T07:23:38.898231+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570618898_m2.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
01:31
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"01:31","depth":1,"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.5625,"top":1.0,"width":0.0033244682,"height":-0.028730989},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.46143618,"top":1.0,"width":0.10106383,"height":-0.028730989},"on_screen":true,"role_description":"text"}]...
|
6542616262426003820
|
6498454382855326324
|
click
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
01:31
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
PnostorimIavicatecodeFV faVsco.js?9 JY-20725-handle-HS-search-rate-limitroledeyC) AutomatedReportGenerated.ong© PlaybackController.phpC) UserAutomatedReponscontroller.pnp› D Themesuse r..v D UserAutomatedRepclass UserAutomatedReportstontroller extends controulen© UserAutomatedlv Dv2C) ACuiVityvzcontrAskAnythingCor© AskJiminnyRepc(c) DealsvzControll(C) OnDemandV2CcPlavlistControlle€ PlavlistShareCorC) PlavlistTrackcor30 O1C) ActionltemsControlC) ActivitvControlier.oC) A CrmNotesControl© BaseController.phpc) ClientTokenControlc) CrmController nhoC) Deall evelPromntca© InstantmeeuingconC) Languagecontrollec Layoutmanagemen© Meeuingscontroller• Messacecontrollerc Meradaracontroller© MobileSettingsCon€ NudgeController.ph) NumberAllocatorecc) Orcanizationmemo© OrganizationRetentC) OraanizationRolesci© OrganizationSvncC@ PartnerController.oC) PhoneNumberContg) PlavbackControlle'@ PlavlistController.nl5819yФ ScimController.php@ SidekickController12710C) SoftnhoneControlle(C) ScoController nhn(C) SubscrintionControe ToamAiAutamatione ToamAiContovtear0 TeamController.php(e) TosminciahtcContrpublic const int RESULTSPER_PAGE = 257public const string SORT_COLUMN = 'sort_column';2 usagespublic const string SORT_DIRECTION = 'sort_direction';oublic function constructprivate readonly AutomatedReportsRepository SautomatedReportsRepository,private readonly AutomatedReportsService $automatedReportsService,private readonly ApiResponseService SapiResponseService,private readonly Response Sresponse,private readonly PlanhatService $planhatService,)f..3PosI /api/vi/automatea-reports/interest 1 usage• public function trackInterest(Request Srequest): JsonResponse/** @var User Suser */Suser = Srequest->userO:deterfn ( => Sthis->planhatService->track(user: suser,event.'automated-renorts-track-interest'.)->alwavs@:return Sthis->response->withoko.* athrows AnnlicationExcentionGET lanilv1lautomated-renortspublic function list(Request Srequest): JsonResponsef...}DELETE /api/v1/automated-reports/{uuid}public function delete(Request Srequest, string Suuid): JsonResponse{...}A14 V.2 ^A SF (jiminny@localhost]4 HS_local [jiminny@localhost]# console [PKol)& console [EU]A console [STAGING][2026-05-07 14:21:15] local.INF0: [Hubspot] DEBUG Getting headers {"Vace":L"Inu,0r May 2020 14.21.15 bMl"J,"Transter-Encodinq":"chunked")."CF-Ray": ["9f80deb8db60dc3a-SOF"]."Strict-Transport-Security":["max-aqe=31536000: includeSubDomains: preload"].acceot-encodino""server-timing": ["hcid;desc=\"019e02d0-6fd8-7812-bdba-885b7ccb3ee3\","x-content-tvoe-ontions": "nosniff")."x-hubsoot-correlation-id": "019e02d0-6fd8-7812-bdba-885b7ccb3ee3")."Set-Cookie":["__cf_bm=SrUrtdQgXVrik50pdqF6hZVYKhzTnQBidvMabeCtm0Y-1778163675-[IP_ADDRESS]-rI.ZggtDKxTge5zr8_2gbBfW07-May-26 14:51:15 GMT; domain=.hubapi.com; Http0nly; Secure; SameSite=None"),"Renont-To".f"s"endnoints".'\"url\":"https:\V/\V/a.nel.cloudflare.com\\/report\\/v4?s=NYAlsVTP0fYm32qrSDjxYE4sd2RWRqiSp3wHsmdEgZlzoYdxI%2BIx\"group\":\"cf-nel\",\"max_age\":604800}"],"NEL": ["{\"success_fraction\":0.01,report to. "cr-nel,|"max agel ":604800}"]"Server": ["cloudflare"]}} {"correlation 1d":"95256555-ec98-4541-b9za-adta/Sbo9eab","trace 10":"C/AD8565-905t-4604-9405-8e5b551e5545hhlsupoont Dally • In 41 37100% 5• lue 1z May 10•23•30cascadePlanhat Event Playbac+0 ..find planhat event playback visitedThoughtsSearched planhat in ~/iminnylappThoughtsSearched olavback *visitedivisited."olavback in ~/fiminnvlaoo.Searched olavback in anniSoarched pl.Searched visited in aprThouahtslFound it in PlaybackController.php :Read DlavbackController.nhn #| 85-114Location:Plavbackcontroller.0no:95-168oho.*Cendina InlavbackVicitedl event to Planhat without clowina +hedeferlfn = Sthis->olanhatService-strack(user. Suserpay load:'activityld' = Sactivity->getId(),activitvluid' = sactivity-saetluido.-salwavs@)Contovt. Collod in tha niavhaak nado controllor wronnod in doforl to firo tha Dlanhat avant scunchronduely aftor thoHTTP response is sent to avoid slowina down the user experience.Oal *Jed daily usage quota is exhausted. Purchase extra usage to continue usina premium models. Quota resets May 12, 11:00"AN CUTYAsk anvthina (84L)÷ @Code SWF-1.6W Windsurf TeamoA0-26fo 4 spaces...
|
NULL
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22858
|
977
|
57
|
2026-05-12T07:23:41.463199+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570621463_m2.jpg...
|
PhpStorm
|
faVsco.js – UserAutomatedReportsController.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
PnostorimIavicatecodeFV faVsco.jsroledeyC) Automat PnostorimIavicatecodeFV faVsco.jsroledeyC) AutomatedReportGenerated.ong© PlaybackController.phpC) UserAutomatedReponscontroller.pnp› D Themesv D UserAutomatedRep© UserAutomatedlv Dv2C) ACuiVityvzcontrAskAnythingCor© AskJiminnyRepc(c) DealsvzControll(C) OnDemandV2CcPlavlistControlle€ PlavlistShareCorC) PlavlistTrackcorC) ActionltemsControlC) ActivitvControlier.oC) A CrmNotesControl© BaseController.phpc) ClientTokenControlc) CrmController nhoC) Deall evelPromntca© InstantmeeuingconC) Languagecontrollec LayoutmanagemenCal livoSoodControllor© Meeuingscontroller• Messacecontrollerc Meradaracontroller© MobileSettingsConc) Momentcontroller.r€ NudgeController.ph) NumberAllocatorecc) OrganizationLicensc) Orcanizationmemo© OrganizationRetentC) OraanizationRolescl© OrganizationSvncC@ PartnerController.oC) PhoneNumberContg) PlavbackControlle'@ PlavlistController.nlФ ScimController.php@ SidekickController30 O142 Eclass UserAutomatedReportstontroller extends controulen5819y12710C) SoftnhoneControlle(C) ScoController nhn(C) SubscrintionControe ToamAiAutamatione ToamAiContovtear9a ToamCantrollor nh.(e) TosminciahtcContrpublic const int RESULTSPER_PAGE = 257public const string SORT_COLUMN = 'sort_column';2 usagespublic const string SORT_DIRECTION = 'sort_direction';oublic function constructprivate readonly AutomatedReportsRepository SautomatedReportsRepository,private readonly AutomatedReportsService $automatedReportsService,private readonly ApiResponseService SapiResponseService,private readonly Response Sresponse,private readonly PlanhatService $planhatService,)f..3PosI /api/vi/automatea-reports/interest 1 usage• public function trackInterest(Request Srequest): JsonResponse/** @var User Suser */Suser = Srequest->userO:deterfn ( => Sthis->planhatService->track(user: suser,event.'automated-renorts-track-interest'.)->alwavs@:return Sthis->response->withoko.* athrows AnnlicationExcentionGET lanilv1lautomated-renortspublic function list(Request Srequest): JsonResponsef...}DELETE /api/v1/automated-reports/{uuid}public function delete(Request Srequest, string Suuid): JsonResponse{...}A14 V.2 ^A SF (jiminny@localhost]4 HS_local jiminny@localhost]# console [PKol)& console [EU]A console [STAGING][2026-05-07 14:21:15] local.INF0: [Hubspot] DEBUG Getting headers {"Vace":L"Inu,0r May 2020 14.21.15 bMl"J,"Transter-Encodinq":"chunked")."CF-Ray": ["9f80deb8db60dc3a-SOF"]."Strict-Transport-Security":["max-aqe=31536000: includeSubDomains: preload"].acceot-encodino""server-timing": ["hcid;desc=\"019e02d0-6fd8-7812-bdba-885b7ccb3ee3\","x-content-tvoe-ontions": "nosniff")."x-hubsoot-correlation-id": "019e02d0-6fd8-7812-bdba-885b7ccb3ee3")."Set-Cookie":["__cf_bm=SrUrtdQgXVrik50pdqF6hZVYKhzTnQBidvMabeCtm0Y-1778163675-[IP_ADDRESS]-rI.ZggtDKxTge5zr8_2gbBfW07-May-26 14:51:15 GMT; domain=.hubapi.com; Http0nly; Secure; SameSite=None"),"Renont-To".f"s"endnoints".'\"url\":"https:\V/\V/a.nel.cloudflare.com\\/report\\/v4?s=NYAlsVTP0fYm32qrSDjxYE4sd2RWRqiSp3wHsmdEgZlzoYdxI%2BIx\"group\":\"cf-nel\",\"max_age\":604800}"],"NEL": ["{\"success_fraction\":0.01,report to. "cr-nel,|"max agel ":604800}"]"Server": ["cloudflare"]}} {"correlation 1d":"95256555-ec98-4541-b9za-adta/Sbo9eab","trace 10":"C/AD8565-905t-4604-9405-8e5b551e5545hhlsupoont Dally • In 41 37100% 5• lue 1z May 10•23.4cascadePlanhat Event Playbac+0 ..find planhat event playback visitedThoughtsSearched planhat in ~/iminnylappThoughtsSearched olavback *visitedivisited."olavback in ~/fiminnvlaoo.Soarched pl.Searched visited in aprThouahtsFound it in PlaybackController.php :Read DlavbackController.nhn #| 85-114Location:Plavbackcontroller.0no:95-168oho.*Cendina InlavbackVicitedl event to Planhat without clowina +hedeferlfn = Sthis->olanhatService-strack(user. Suserpay load:'activityld' = Sactivity->getId(),activitvluid' = sactivity-saetluido.-salwavs@)Contovt. Collod in tha niavhaak nado controllor wronnod in doforl to firo tha Dlanhat avant scunchronduely aftor thoHTTP response is sent to avoid slowina down the user experience.Oal *Jed daily usage quota is exhausted. Purchase extra usage to continue usina premium models. Quota resets May 12, 11:00"AN CUTYAsk anvthina (84L)÷ @Code SWF-1.6W Windsurf TeamoA0-26fo 4 spaces...
|
NULL
|
-8432469529606319269
|
NULL
|
click
|
ocr
|
NULL
|
PnostorimIavicatecodeFV faVsco.jsroledeyC) Automat PnostorimIavicatecodeFV faVsco.jsroledeyC) AutomatedReportGenerated.ong© PlaybackController.phpC) UserAutomatedReponscontroller.pnp› D Themesv D UserAutomatedRep© UserAutomatedlv Dv2C) ACuiVityvzcontrAskAnythingCor© AskJiminnyRepc(c) DealsvzControll(C) OnDemandV2CcPlavlistControlle€ PlavlistShareCorC) PlavlistTrackcorC) ActionltemsControlC) ActivitvControlier.oC) A CrmNotesControl© BaseController.phpc) ClientTokenControlc) CrmController nhoC) Deall evelPromntca© InstantmeeuingconC) Languagecontrollec LayoutmanagemenCal livoSoodControllor© Meeuingscontroller• Messacecontrollerc Meradaracontroller© MobileSettingsConc) Momentcontroller.r€ NudgeController.ph) NumberAllocatorecc) OrganizationLicensc) Orcanizationmemo© OrganizationRetentC) OraanizationRolescl© OrganizationSvncC@ PartnerController.oC) PhoneNumberContg) PlavbackControlle'@ PlavlistController.nlФ ScimController.php@ SidekickController30 O142 Eclass UserAutomatedReportstontroller extends controulen5819y12710C) SoftnhoneControlle(C) ScoController nhn(C) SubscrintionControe ToamAiAutamatione ToamAiContovtear9a ToamCantrollor nh.(e) TosminciahtcContrpublic const int RESULTSPER_PAGE = 257public const string SORT_COLUMN = 'sort_column';2 usagespublic const string SORT_DIRECTION = 'sort_direction';oublic function constructprivate readonly AutomatedReportsRepository SautomatedReportsRepository,private readonly AutomatedReportsService $automatedReportsService,private readonly ApiResponseService SapiResponseService,private readonly Response Sresponse,private readonly PlanhatService $planhatService,)f..3PosI /api/vi/automatea-reports/interest 1 usage• public function trackInterest(Request Srequest): JsonResponse/** @var User Suser */Suser = Srequest->userO:deterfn ( => Sthis->planhatService->track(user: suser,event.'automated-renorts-track-interest'.)->alwavs@:return Sthis->response->withoko.* athrows AnnlicationExcentionGET lanilv1lautomated-renortspublic function list(Request Srequest): JsonResponsef...}DELETE /api/v1/automated-reports/{uuid}public function delete(Request Srequest, string Suuid): JsonResponse{...}A14 V.2 ^A SF (jiminny@localhost]4 HS_local jiminny@localhost]# console [PKol)& console [EU]A console [STAGING][2026-05-07 14:21:15] local.INF0: [Hubspot] DEBUG Getting headers {"Vace":L"Inu,0r May 2020 14.21.15 bMl"J,"Transter-Encodinq":"chunked")."CF-Ray": ["9f80deb8db60dc3a-SOF"]."Strict-Transport-Security":["max-aqe=31536000: includeSubDomains: preload"].acceot-encodino""server-timing": ["hcid;desc=\"019e02d0-6fd8-7812-bdba-885b7ccb3ee3\","x-content-tvoe-ontions": "nosniff")."x-hubsoot-correlation-id": "019e02d0-6fd8-7812-bdba-885b7ccb3ee3")."Set-Cookie":["__cf_bm=SrUrtdQgXVrik50pdqF6hZVYKhzTnQBidvMabeCtm0Y-1778163675-[IP_ADDRESS]-rI.ZggtDKxTge5zr8_2gbBfW07-May-26 14:51:15 GMT; domain=.hubapi.com; Http0nly; Secure; SameSite=None"),"Renont-To".f"s"endnoints".'\"url\":"https:\V/\V/a.nel.cloudflare.com\\/report\\/v4?s=NYAlsVTP0fYm32qrSDjxYE4sd2RWRqiSp3wHsmdEgZlzoYdxI%2BIx\"group\":\"cf-nel\",\"max_age\":604800}"],"NEL": ["{\"success_fraction\":0.01,report to. "cr-nel,|"max agel ":604800}"]"Server": ["cloudflare"]}} {"correlation 1d":"95256555-ec98-4541-b9za-adta/Sbo9eab","trace 10":"C/AD8565-905t-4604-9405-8e5b551e5545hhlsupoont Dally • In 41 37100% 5• lue 1z May 10•23.4cascadePlanhat Event Playbac+0 ..find planhat event playback visitedThoughtsSearched planhat in ~/iminnylappThoughtsSearched olavback *visitedivisited."olavback in ~/fiminnvlaoo.Soarched pl.Searched visited in aprThouahtsFound it in PlaybackController.php :Read DlavbackController.nhn #| 85-114Location:Plavbackcontroller.0no:95-168oho.*Cendina InlavbackVicitedl event to Planhat without clowina +hedeferlfn = Sthis->olanhatService-strack(user. Suserpay load:'activityld' = Sactivity->getId(),activitvluid' = sactivity-saetluido.-salwavs@)Contovt. Collod in tha niavhaak nado controllor wronnod in doforl to firo tha Dlanhat avant scunchronduely aftor thoHTTP response is sent to avoid slowina down the user experience.Oal *Jed daily usage quota is exhausted. Purchase extra usage to continue usina premium models. Quota resets May 12, 11:00"AN CUTYAsk anvthina (84L)÷ @Code SWF-1.6W Windsurf TeamoA0-26fo 4 spaces...
|
22855
|
NULL
|
NULL
|
NULL
|
|
22860
|
977
|
58
|
2026-05-12T07:23:50.440887+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570630440_m2.jpg...
|
PhpStorm
|
faVsco.js – PlanhatService.php
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
HandleHubspotRateLimitTest
Run 'HandleHubspotRateLimitTest'
Debug 'HandleHubspotRateLimitTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
12
19
Previous Highlighted Error
Next Highlighted Error
<?php
namespace Jiminny\Services;
use Carbon\Carbon;
use Exception;
use GuzzleHttp\Exception\GuzzleException;
use Illuminate\Contracts\Container\BindingResolutionException;
use Illuminate\Http\Client\Response;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\BillingManagement\Repositories\RoleStatsRepository;
use Jiminny\Models\Partner;
use Jiminny\Models\Team;
use Jiminny\Models\User;
readonly class PlanhatService
{
public function __construct(
private RoleStatsRepository $roleStatsRepository,
) {
}
/** @throws GuzzleException */
public function track(User $user, string $event, array $payload = []): void
{
if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {
return;
}
$user->load('team');
$data = [
'name' => $user->getName(),
'email' => $user->getEmailAddress(),
'externalId' => $user->getUuid(),
'companyExternalId' => $user->getTeam()->getUuid(),
'action' => $event,
'info' => $payload,
];
$planhatResponse = Http::planhatAnalyticsApi()
->post('analytics/' . config('services.planhat.tenantUuid'), $data);
$this->logFailedResponses($planhatResponse, __METHOD__, [
'body' => $planhatResponse->json(),
'status' => $planhatResponse->status(),
'data' => $data,
]);
}
/** @throws GuzzleException */
public function meter(User $user, string $dimension, string $value): void
{
if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {
return;
}
$user->load('team');
$data = [
'dimensionId' => $dimension,
'value' => $value,
'companyExternalId' => $user->getTeam()->getUuid(),
];
$planhatResponse = Http::planhatAnalyticsApi()
->post('dimensiondata/' . config('services.planhat.tenantUuid'), $data);
$this->logFailedResponses($planhatResponse, __METHOD__, $data);
}
/** @throws GuzzleException */
public function upsertCompany(Team $team): void
{
if (! $this->serviceIsAvailable($team->getPartnerId())) {
return;
}
$integrations = $team->activityProviders()
->where('is_enabled', true)
->pluck('provider')
->toArray();
$usersRolesLookUp = $this->roleStatsRepository->getPaidRolesLookup($team->getId());
$teamDomains = $team->domains()->pluck('domain')->toArray();
$data = [
'externalId' => $team->getUuid(),
'sourceId' => $team->account?->crm_provider_id,
'name' => $team->getName(),
'slug' => $team->getSlug(),
'domains' => $teamDomains,
'custom' => [
'Conference decoupled?' => true,
'Email Provider' => $team->calendar_provider,
'CRM' => $team->crm?->provider,
'Customer Api' => $team->getApiToken() === null ? 'no' : 'yes',
'Jiminny Voice' => $usersRolesLookUp[User::ROLE_RECORDER_AND_VOICE] > 0 ? 'Inbound + SMS' : 'Outbound Only',
'Integrations' => $integrations,
'Collaboration' => $team->hasSlackBot() ? 'slack' : null,
'Jiminny Voice Compliance mode' => $team->compliance_mode,
'Active users' => $usersRolesLookUp['active'],
'Recording users' => $usersRolesLookUp[User::ROLE_RECORDER],
'Voice users' => $usersRolesLookUp[User::ROLE_RECORDER_AND_VOICE],
'Listener users' => $usersRolesLookUp[User::ROLE_LISTENER],
'Data Center' => config('jiminny.deploy_region'),
'Active Jiminny Instance' => $team->status === Team::STATUS_ACTIVE,
'CRM Installed App Version' => $team->getCrmConfiguration()->getInstalledAppVersion(),
],
];
$planhatResponse = Http::planhatApi()->put('companies', $data);
$this->logFailedResponses($planhatResponse, __METHOD__, $data);
}
/**
* @throws GuzzleException
* @throws BindingResolutionException
*/
public function upsertUser(User $user): void
{
if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {
return;
}
$intercomService = app()->make(IntercomService::class);
$integrations = $user->socialAccounts()->pluck('provider')->toArray();
$lastSeen = null;
try {
$intercomUser = $intercomService->getUsers([
'user_id' => $user->getUuid(),
]);
if ($intercomUser) {
$lastSeen = Carbon::parse($intercomUser->last_request_at)->toIso8601String();
}
} catch (Exception $e) {
Log::error(__METHOD__ . ' Intercom failed to fetch user data', ['error' => $e->getMessage()]);
}
$roleNames = $user->roles()->pluck('name');
$data = [
'externalId' => $user->getUuid(),
'companyExternalId' => $user->team->getUuid(),
'name' => $user->getName(),
'position' => $user->job?->name,
'email' => $user->getEmailAddress(),
'createDate' => $user->created_at->toIso8601String(),
'custom' => [
'Role' => $roleNames->implode(', '),
'Group' => $user->group?->name,
'User Integrations' => $integrations,
'Licence Type' => $this->getLicenseType($roleNames),
'Jiminny Create Date' => $user->created_at->toIso8601String(),
'CRM Access' => $user->crm_required,
'Last seen' => $lastSeen,
'Email Synced' => $user->isSyncEmailEnabled(),
'User Job Title' => $user->job?->name ?? 'N/A',
],
];
$planhatResponse = Http::planhatApi()->put('endusers', $data);
$this->logFailedResponses($planhatResponse, __METHOD__, $data);
}
/** @throws GuzzleException */
public function deleteUser(User $user): void
{
if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {
return;
}
$planhatUserId = Http::planhatApi()
->get('endusers', ['email' => $user->email,])
->json('0._id');
if ($planhatUserId) {
Http::planhatApi()->delete("endusers/$planhatUserId");
Log::info(__METHOD__, ['result' => 'User deleted from Planhat']);
} else {
Log::error(__METHOD__, ['result' => 'User not found in Planhat']);
}
}
private function logFailedResponses(Response $planhatResponse, string $message, array $logData): void
{
if (
$planhatResponse->failed()
|| (
isset($planhatResponse->json()['errors'])
&& ! empty($planhatResponse->json()['errors'])
)
) {
Log::error($message, [
'response' => $planhatResponse->json(),
'status' => $planhatResponse->status(),
'data' => $logData,
]);
}
}
/**
* Disable Planhat service on development and staging environments to prevent
* failures and error noise in the logs.
* It should run only for Jiminny partners
*/
private function serviceIsAvailable(int $partnerId): bool
{
return config('services.planhat.enabled')
&& $partnerId === Partner::PARTNER_DEFAULT;
}
private function getLicenseType(Collection $roleNames): string
{
if ($roleNames->contains(User::ROLE_RECORDER_AND_VOICE)) {
return User::ROLE_RECORDER_AND_VOICE;
}
if ($roleNames->contains(User::ROLE_RECORDER)) {
return User::ROLE_RECORDER;
}
return User::ROLE_ANALYST;
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
19
Previous Highlighted Error
Next Highlighted Error
[2026-05-07 14:21:15] local.INFO: [Hubspot] DEBUG Getting headers {
"headers":{
"Date":["Thu,07 May 2026 14:21:15 GMT"],
"Content-Type":["application/json;charset=utf-8"],
"Transfer-Encoding":["chunked"],
"Connection":["keep-alive"],
"CF-Ray":["9f80deb8db60dc3a-SOF"],
"CF-Cache-Status":["DYNAMIC"],
"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],
"Vary":["origin,
accept-encoding"],
"access-control-allow-credentials":["false"],
"server-timing":["hcid;desc=\"019e02d0-6fd8-7812-bdba-885b7ccb3ee3\",
cfr;desc=\"9f80deb8e7c6dc3a-IAD\""],
"x-content-type-options":["nosniff"],
"x-hubspot-correlation-id":["019e02d0-6fd8-7812-bdba-885b7ccb3ee3"],
"Set-Cookie":["__cf_bm=SIUrtdQgXVrik50pdqF6hZVYKhzTnQBidvMabeCtm0Y-1778163675-[IP_ADDRESS]-rI.ZggtDKxTge5zr8_2gbBfWMQQ.ufZEXDZyHz2mBUFdzdo2gTHEsOkXMSEShjK0hGYxNhUGM1ZoBpX7BcFZcHEjA7Cs_.SMUhUnd2nYjko; path=/; expires=Thu,
07-May-26 14:51:15 GMT; domain=.hubapi.com; HttpOnly; Secure; SameSite=None"],
"Report-To":["{
\"endpoints\":[{
\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=NYAlsVTP0fYm32qrSDjxYE4sd2RWRqiSp3wHsmdEgZlzoYdxI%2BIxVpHmsKn3O%2BKVA3mFIJ2m7YRECDGSM%2BW2IYTzo6FM4%2BdUIjURO8srzKSvJgZ%2BQ6R79arKQw3uHLlX\"}],
\"group\":\"cf-nel\",
\"max_age\":604800}"],
"NEL":["{
\"success_fraction\":0.01,
\"report_to\":\"cf-nel\",
\"max_age\":604800}"],
"Server":["cloudflare"]}} {
"correlation_id":"95236535-ec98-4541-b92a-adfa73b69eab",
"trace_id":"c7ab8365-903f-46d4-9403-0e5b551e3545"}
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":"JY-20725-handle-HS-search-rate-limit, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09541223,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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.82413566,"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":"HandleHubspotRateLimitTest","depth":6,"bounds":{"left":0.8394282,"top":0.019952115,"width":0.076130316,"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 'HandleHubspotRateLimitTest'","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 'HandleHubspotRateLimitTest'","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":"12","depth":4,"bounds":{"left":0.3882979,"top":0.07581804,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"19","depth":4,"bounds":{"left":0.39993352,"top":0.07581804,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.4112367,"top":0.074221864,"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.41855052,"top":0.074221864,"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\nnamespace Jiminny\\Services;\n\nuse Carbon\\Carbon;\nuse Exception;\nuse GuzzleHttp\\Exception\\GuzzleException;\nuse Illuminate\\Contracts\\Container\\BindingResolutionException;\nuse Illuminate\\Http\\Client\\Response;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Http;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\BillingManagement\\Repositories\\RoleStatsRepository;\nuse Jiminny\\Models\\Partner;\nuse Jiminny\\Models\\Team;\nuse Jiminny\\Models\\User;\n\nreadonly class PlanhatService\n{\n public function __construct(\n private RoleStatsRepository $roleStatsRepository,\n ) {\n }\n\n /** @throws GuzzleException */\n public function track(User $user, string $event, array $payload = []): void\n {\n if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {\n return;\n }\n\n $user->load('team');\n\n $data = [\n 'name' => $user->getName(),\n 'email' => $user->getEmailAddress(),\n 'externalId' => $user->getUuid(),\n 'companyExternalId' => $user->getTeam()->getUuid(),\n 'action' => $event,\n 'info' => $payload,\n ];\n\n $planhatResponse = Http::planhatAnalyticsApi()\n ->post('analytics/' . config('services.planhat.tenantUuid'), $data);\n\n $this->logFailedResponses($planhatResponse, __METHOD__, [\n 'body' => $planhatResponse->json(),\n 'status' => $planhatResponse->status(),\n 'data' => $data,\n ]);\n }\n\n /** @throws GuzzleException */\n public function meter(User $user, string $dimension, string $value): void\n {\n if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {\n return;\n }\n\n $user->load('team');\n\n $data = [\n 'dimensionId' => $dimension,\n 'value' => $value,\n 'companyExternalId' => $user->getTeam()->getUuid(),\n ];\n\n $planhatResponse = Http::planhatAnalyticsApi()\n ->post('dimensiondata/' . config('services.planhat.tenantUuid'), $data);\n\n $this->logFailedResponses($planhatResponse, __METHOD__, $data);\n }\n\n /** @throws GuzzleException */\n public function upsertCompany(Team $team): void\n {\n if (! $this->serviceIsAvailable($team->getPartnerId())) {\n return;\n }\n\n $integrations = $team->activityProviders()\n ->where('is_enabled', true)\n ->pluck('provider')\n ->toArray();\n\n $usersRolesLookUp = $this->roleStatsRepository->getPaidRolesLookup($team->getId());\n $teamDomains = $team->domains()->pluck('domain')->toArray();\n\n $data = [\n 'externalId' => $team->getUuid(),\n 'sourceId' => $team->account?->crm_provider_id,\n 'name' => $team->getName(),\n 'slug' => $team->getSlug(),\n 'domains' => $teamDomains,\n 'custom' => [\n 'Conference decoupled?' => true,\n 'Email Provider' => $team->calendar_provider,\n 'CRM' => $team->crm?->provider,\n 'Customer Api' => $team->getApiToken() === null ? 'no' : 'yes',\n 'Jiminny Voice' => $usersRolesLookUp[User::ROLE_RECORDER_AND_VOICE] > 0 ? 'Inbound + SMS' : 'Outbound Only',\n 'Integrations' => $integrations,\n 'Collaboration' => $team->hasSlackBot() ? 'slack' : null,\n 'Jiminny Voice Compliance mode' => $team->compliance_mode,\n 'Active users' => $usersRolesLookUp['active'],\n 'Recording users' => $usersRolesLookUp[User::ROLE_RECORDER],\n 'Voice users' => $usersRolesLookUp[User::ROLE_RECORDER_AND_VOICE],\n 'Listener users' => $usersRolesLookUp[User::ROLE_LISTENER],\n 'Data Center' => config('jiminny.deploy_region'),\n 'Active Jiminny Instance' => $team->status === Team::STATUS_ACTIVE,\n 'CRM Installed App Version' => $team->getCrmConfiguration()->getInstalledAppVersion(),\n ],\n ];\n\n $planhatResponse = Http::planhatApi()->put('companies', $data);\n\n $this->logFailedResponses($planhatResponse, __METHOD__, $data);\n }\n\n /**\n * @throws GuzzleException\n * @throws BindingResolutionException\n */\n public function upsertUser(User $user): void\n {\n if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {\n return;\n }\n\n $intercomService = app()->make(IntercomService::class);\n\n $integrations = $user->socialAccounts()->pluck('provider')->toArray();\n $lastSeen = null;\n\n try {\n $intercomUser = $intercomService->getUsers([\n 'user_id' => $user->getUuid(),\n ]);\n\n if ($intercomUser) {\n $lastSeen = Carbon::parse($intercomUser->last_request_at)->toIso8601String();\n }\n } catch (Exception $e) {\n Log::error(__METHOD__ . ' Intercom failed to fetch user data', ['error' => $e->getMessage()]);\n }\n\n $roleNames = $user->roles()->pluck('name');\n\n $data = [\n 'externalId' => $user->getUuid(),\n 'companyExternalId' => $user->team->getUuid(),\n 'name' => $user->getName(),\n 'position' => $user->job?->name,\n 'email' => $user->getEmailAddress(),\n 'createDate' => $user->created_at->toIso8601String(),\n 'custom' => [\n 'Role' => $roleNames->implode(', '),\n 'Group' => $user->group?->name,\n 'User Integrations' => $integrations,\n 'Licence Type' => $this->getLicenseType($roleNames),\n 'Jiminny Create Date' => $user->created_at->toIso8601String(),\n 'CRM Access' => $user->crm_required,\n 'Last seen' => $lastSeen,\n 'Email Synced' => $user->isSyncEmailEnabled(),\n 'User Job Title' => $user->job?->name ?? 'N/A',\n ],\n ];\n\n $planhatResponse = Http::planhatApi()->put('endusers', $data);\n\n $this->logFailedResponses($planhatResponse, __METHOD__, $data);\n }\n\n /** @throws GuzzleException */\n public function deleteUser(User $user): void\n {\n if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {\n return;\n }\n\n $planhatUserId = Http::planhatApi()\n ->get('endusers', ['email' => $user->email,])\n ->json('0._id');\n\n if ($planhatUserId) {\n Http::planhatApi()->delete(\"endusers/$planhatUserId\");\n\n Log::info(__METHOD__, ['result' => 'User deleted from Planhat']);\n } else {\n Log::error(__METHOD__, ['result' => 'User not found in Planhat']);\n }\n }\n\n private function logFailedResponses(Response $planhatResponse, string $message, array $logData): void\n {\n if (\n $planhatResponse->failed()\n || (\n isset($planhatResponse->json()['errors'])\n && ! empty($planhatResponse->json()['errors'])\n )\n ) {\n Log::error($message, [\n 'response' => $planhatResponse->json(),\n 'status' => $planhatResponse->status(),\n 'data' => $logData,\n ]);\n }\n }\n\n /**\n * Disable Planhat service on development and staging environments to prevent\n * failures and error noise in the logs.\n * It should run only for Jiminny partners\n */\n private function serviceIsAvailable(int $partnerId): bool\n {\n return config('services.planhat.enabled')\n && $partnerId === Partner::PARTNER_DEFAULT;\n }\n\n private function getLicenseType(Collection $roleNames): string\n {\n if ($roleNames->contains(User::ROLE_RECORDER_AND_VOICE)) {\n return User::ROLE_RECORDER_AND_VOICE;\n }\n\n if ($roleNames->contains(User::ROLE_RECORDER)) {\n return User::ROLE_RECORDER;\n }\n\n return User::ROLE_ANALYST;\n }\n}","depth":4,"bounds":{"left":0.122340426,"top":0.0726257,"width":0.30319148,"height":0.9273743},"on_screen":true,"value":"<?php\n\nnamespace Jiminny\\Services;\n\nuse Carbon\\Carbon;\nuse Exception;\nuse GuzzleHttp\\Exception\\GuzzleException;\nuse Illuminate\\Contracts\\Container\\BindingResolutionException;\nuse Illuminate\\Http\\Client\\Response;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Http;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\BillingManagement\\Repositories\\RoleStatsRepository;\nuse Jiminny\\Models\\Partner;\nuse Jiminny\\Models\\Team;\nuse Jiminny\\Models\\User;\n\nreadonly class PlanhatService\n{\n public function __construct(\n private RoleStatsRepository $roleStatsRepository,\n ) {\n }\n\n /** @throws GuzzleException */\n public function track(User $user, string $event, array $payload = []): void\n {\n if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {\n return;\n }\n\n $user->load('team');\n\n $data = [\n 'name' => $user->getName(),\n 'email' => $user->getEmailAddress(),\n 'externalId' => $user->getUuid(),\n 'companyExternalId' => $user->getTeam()->getUuid(),\n 'action' => $event,\n 'info' => $payload,\n ];\n\n $planhatResponse = Http::planhatAnalyticsApi()\n ->post('analytics/' . config('services.planhat.tenantUuid'), $data);\n\n $this->logFailedResponses($planhatResponse, __METHOD__, [\n 'body' => $planhatResponse->json(),\n 'status' => $planhatResponse->status(),\n 'data' => $data,\n ]);\n }\n\n /** @throws GuzzleException */\n public function meter(User $user, string $dimension, string $value): void\n {\n if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {\n return;\n }\n\n $user->load('team');\n\n $data = [\n 'dimensionId' => $dimension,\n 'value' => $value,\n 'companyExternalId' => $user->getTeam()->getUuid(),\n ];\n\n $planhatResponse = Http::planhatAnalyticsApi()\n ->post('dimensiondata/' . config('services.planhat.tenantUuid'), $data);\n\n $this->logFailedResponses($planhatResponse, __METHOD__, $data);\n }\n\n /** @throws GuzzleException */\n public function upsertCompany(Team $team): void\n {\n if (! $this->serviceIsAvailable($team->getPartnerId())) {\n return;\n }\n\n $integrations = $team->activityProviders()\n ->where('is_enabled', true)\n ->pluck('provider')\n ->toArray();\n\n $usersRolesLookUp = $this->roleStatsRepository->getPaidRolesLookup($team->getId());\n $teamDomains = $team->domains()->pluck('domain')->toArray();\n\n $data = [\n 'externalId' => $team->getUuid(),\n 'sourceId' => $team->account?->crm_provider_id,\n 'name' => $team->getName(),\n 'slug' => $team->getSlug(),\n 'domains' => $teamDomains,\n 'custom' => [\n 'Conference decoupled?' => true,\n 'Email Provider' => $team->calendar_provider,\n 'CRM' => $team->crm?->provider,\n 'Customer Api' => $team->getApiToken() === null ? 'no' : 'yes',\n 'Jiminny Voice' => $usersRolesLookUp[User::ROLE_RECORDER_AND_VOICE] > 0 ? 'Inbound + SMS' : 'Outbound Only',\n 'Integrations' => $integrations,\n 'Collaboration' => $team->hasSlackBot() ? 'slack' : null,\n 'Jiminny Voice Compliance mode' => $team->compliance_mode,\n 'Active users' => $usersRolesLookUp['active'],\n 'Recording users' => $usersRolesLookUp[User::ROLE_RECORDER],\n 'Voice users' => $usersRolesLookUp[User::ROLE_RECORDER_AND_VOICE],\n 'Listener users' => $usersRolesLookUp[User::ROLE_LISTENER],\n 'Data Center' => config('jiminny.deploy_region'),\n 'Active Jiminny Instance' => $team->status === Team::STATUS_ACTIVE,\n 'CRM Installed App Version' => $team->getCrmConfiguration()->getInstalledAppVersion(),\n ],\n ];\n\n $planhatResponse = Http::planhatApi()->put('companies', $data);\n\n $this->logFailedResponses($planhatResponse, __METHOD__, $data);\n }\n\n /**\n * @throws GuzzleException\n * @throws BindingResolutionException\n */\n public function upsertUser(User $user): void\n {\n if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {\n return;\n }\n\n $intercomService = app()->make(IntercomService::class);\n\n $integrations = $user->socialAccounts()->pluck('provider')->toArray();\n $lastSeen = null;\n\n try {\n $intercomUser = $intercomService->getUsers([\n 'user_id' => $user->getUuid(),\n ]);\n\n if ($intercomUser) {\n $lastSeen = Carbon::parse($intercomUser->last_request_at)->toIso8601String();\n }\n } catch (Exception $e) {\n Log::error(__METHOD__ . ' Intercom failed to fetch user data', ['error' => $e->getMessage()]);\n }\n\n $roleNames = $user->roles()->pluck('name');\n\n $data = [\n 'externalId' => $user->getUuid(),\n 'companyExternalId' => $user->team->getUuid(),\n 'name' => $user->getName(),\n 'position' => $user->job?->name,\n 'email' => $user->getEmailAddress(),\n 'createDate' => $user->created_at->toIso8601String(),\n 'custom' => [\n 'Role' => $roleNames->implode(', '),\n 'Group' => $user->group?->name,\n 'User Integrations' => $integrations,\n 'Licence Type' => $this->getLicenseType($roleNames),\n 'Jiminny Create Date' => $user->created_at->toIso8601String(),\n 'CRM Access' => $user->crm_required,\n 'Last seen' => $lastSeen,\n 'Email Synced' => $user->isSyncEmailEnabled(),\n 'User Job Title' => $user->job?->name ?? 'N/A',\n ],\n ];\n\n $planhatResponse = Http::planhatApi()->put('endusers', $data);\n\n $this->logFailedResponses($planhatResponse, __METHOD__, $data);\n }\n\n /** @throws GuzzleException */\n public function deleteUser(User $user): void\n {\n if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {\n return;\n }\n\n $planhatUserId = Http::planhatApi()\n ->get('endusers', ['email' => $user->email,])\n ->json('0._id');\n\n if ($planhatUserId) {\n Http::planhatApi()->delete(\"endusers/$planhatUserId\");\n\n Log::info(__METHOD__, ['result' => 'User deleted from Planhat']);\n } else {\n Log::error(__METHOD__, ['result' => 'User not found in Planhat']);\n }\n }\n\n private function logFailedResponses(Response $planhatResponse, string $message, array $logData): void\n {\n if (\n $planhatResponse->failed()\n || (\n isset($planhatResponse->json()['errors'])\n && ! empty($planhatResponse->json()['errors'])\n )\n ) {\n Log::error($message, [\n 'response' => $planhatResponse->json(),\n 'status' => $planhatResponse->status(),\n 'data' => $logData,\n ]);\n }\n }\n\n /**\n * Disable Planhat service on development and staging environments to prevent\n * failures and error noise in the logs.\n * It should run only for Jiminny partners\n */\n private function serviceIsAvailable(int $partnerId): bool\n {\n return config('services.planhat.enabled')\n && $partnerId === Partner::PARTNER_DEFAULT;\n }\n\n private function getLicenseType(Collection $roleNames): string\n {\n if ($roleNames->contains(User::ROLE_RECORDER_AND_VOICE)) {\n return User::ROLE_RECORDER_AND_VOICE;\n }\n\n if ($roleNames->contains(User::ROLE_RECORDER)) {\n return User::ROLE_RECORDER;\n }\n\n return User::ROLE_ANALYST;\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"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":"19","depth":4,"bounds":{"left":0.7124335,"top":0.10055866,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.7237367,"top":0.09896249,"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.73105055,"top":0.09896249,"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":"[2026-05-07 14:21:15] local.INFO: [Hubspot] DEBUG Getting headers {\n\"headers\":{\n\"Date\":[\"Thu,07 May 2026 14:21:15 GMT\"],\n \"Content-Type\":[\"application/json;charset=utf-8\"],\n \"Transfer-Encoding\":[\"chunked\"],\n \"Connection\":[\"keep-alive\"],\n \"CF-Ray\":[\"9f80deb8db60dc3a-SOF\"],\n \"CF-Cache-Status\":[\"DYNAMIC\"],\n \"Strict-Transport-Security\":[\"max-age=31536000; includeSubDomains; preload\"],\n \"Vary\":[\"origin,\n accept-encoding\"],\n \"access-control-allow-credentials\":[\"false\"],\n \"server-timing\":[\"hcid;desc=\\\"019e02d0-6fd8-7812-bdba-885b7ccb3ee3\\\",\n cfr;desc=\\\"9f80deb8e7c6dc3a-IAD\\\"\"],\n \"x-content-type-options\":[\"nosniff\"],\n \"x-hubspot-correlation-id\":[\"019e02d0-6fd8-7812-bdba-885b7ccb3ee3\"],\n \"Set-Cookie\":[\"__cf_bm=SIUrtdQgXVrik50pdqF6hZVYKhzTnQBidvMabeCtm0Y-1778163675-1.0.1.1-rI.ZggtDKxTge5zr8_2gbBfWMQQ.ufZEXDZyHz2mBUFdzdo2gTHEsOkXMSEShjK0hGYxNhUGM1ZoBpX7BcFZcHEjA7Cs_.SMUhUnd2nYjko; path=/; expires=Thu,\n 07-May-26 14:51:15 GMT; domain=.hubapi.com; HttpOnly; Secure; SameSite=None\"],\n \"Report-To\":[\"{\n\\\"endpoints\\\":[{\n\\\"url\\\":\\\"https:\\\\/\\\\/a.nel.cloudflare.com\\\\/report\\\\/v4?s=NYAlsVTP0fYm32qrSDjxYE4sd2RWRqiSp3wHsmdEgZlzoYdxI%2BIxVpHmsKn3O%2BKVA3mFIJ2m7YRECDGSM%2BW2IYTzo6FM4%2BdUIjURO8srzKSvJgZ%2BQ6R79arKQw3uHLlX\\\"}],\n\\\"group\\\":\\\"cf-nel\\\",\n\\\"max_age\\\":604800}\"],\n\"NEL\":[\"{\n\\\"success_fraction\\\":0.01,\n\\\"report_to\\\":\\\"cf-nel\\\",\n\\\"max_age\\\":604800}\"],\n\"Server\":[\"cloudflare\"]}} {\n\"correlation_id\":\"95236535-ec98-4541-b92a-adfa73b69eab\",\n\"trace_id\":\"c7ab8365-903f-46d4-9403-0e5b551e3545\"}","depth":4,"bounds":{"left":0.44481382,"top":0.09736632,"width":0.55518615,"height":0.8818835},"on_screen":true,"value":"[2026-05-07 14:21:15] local.INFO: [Hubspot] DEBUG Getting headers {\n\"headers\":{\n\"Date\":[\"Thu,07 May 2026 14:21:15 GMT\"],\n \"Content-Type\":[\"application/json;charset=utf-8\"],\n \"Transfer-Encoding\":[\"chunked\"],\n \"Connection\":[\"keep-alive\"],\n \"CF-Ray\":[\"9f80deb8db60dc3a-SOF\"],\n \"CF-Cache-Status\":[\"DYNAMIC\"],\n \"Strict-Transport-Security\":[\"max-age=31536000; includeSubDomains; preload\"],\n \"Vary\":[\"origin,\n accept-encoding\"],\n \"access-control-allow-credentials\":[\"false\"],\n \"server-timing\":[\"hcid;desc=\\\"019e02d0-6fd8-7812-bdba-885b7ccb3ee3\\\",\n cfr;desc=\\\"9f80deb8e7c6dc3a-IAD\\\"\"],\n \"x-content-type-options\":[\"nosniff\"],\n \"x-hubspot-correlation-id\":[\"019e02d0-6fd8-7812-bdba-885b7ccb3ee3\"],\n \"Set-Cookie\":[\"__cf_bm=SIUrtdQgXVrik50pdqF6hZVYKhzTnQBidvMabeCtm0Y-1778163675-1.0.1.1-rI.ZggtDKxTge5zr8_2gbBfWMQQ.ufZEXDZyHz2mBUFdzdo2gTHEsOkXMSEShjK0hGYxNhUGM1ZoBpX7BcFZcHEjA7Cs_.SMUhUnd2nYjko; path=/; expires=Thu,\n 07-May-26 14:51:15 GMT; domain=.hubapi.com; HttpOnly; Secure; SameSite=None\"],\n \"Report-To\":[\"{\n\\\"endpoints\\\":[{\n\\\"url\\\":\\\"https:\\\\/\\\\/a.nel.cloudflare.com\\\\/report\\\\/v4?s=NYAlsVTP0fYm32qrSDjxYE4sd2RWRqiSp3wHsmdEgZlzoYdxI%2BIxVpHmsKn3O%2BKVA3mFIJ2m7YRECDGSM%2BW2IYTzo6FM4%2BdUIjURO8srzKSvJgZ%2BQ6R79arKQw3uHLlX\\\"}],\n\\\"group\\\":\\\"cf-nel\\\",\n\\\"max_age\\\":604800}\"],\n\"NEL\":[\"{\n\\\"success_fraction\\\":0.01,\n\\\"report_to\\\":\\\"cf-nel\\\",\n\\\"max_age\\\":604800}\"],\n\"Server\":[\"cloudflare\"]}} {\n\"correlation_id\":\"95236535-ec98-4541-b92a-adfa73b69eab\",\n\"trace_id\":\"c7ab8365-903f-46d4-9403-0e5b551e3545\"}","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}]...
|
8167272953559082915
|
-7714420151459628056
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
HandleHubspotRateLimitTest
Run 'HandleHubspotRateLimitTest'
Debug 'HandleHubspotRateLimitTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
12
19
Previous Highlighted Error
Next Highlighted Error
<?php
namespace Jiminny\Services;
use Carbon\Carbon;
use Exception;
use GuzzleHttp\Exception\GuzzleException;
use Illuminate\Contracts\Container\BindingResolutionException;
use Illuminate\Http\Client\Response;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\BillingManagement\Repositories\RoleStatsRepository;
use Jiminny\Models\Partner;
use Jiminny\Models\Team;
use Jiminny\Models\User;
readonly class PlanhatService
{
public function __construct(
private RoleStatsRepository $roleStatsRepository,
) {
}
/** @throws GuzzleException */
public function track(User $user, string $event, array $payload = []): void
{
if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {
return;
}
$user->load('team');
$data = [
'name' => $user->getName(),
'email' => $user->getEmailAddress(),
'externalId' => $user->getUuid(),
'companyExternalId' => $user->getTeam()->getUuid(),
'action' => $event,
'info' => $payload,
];
$planhatResponse = Http::planhatAnalyticsApi()
->post('analytics/' . config('services.planhat.tenantUuid'), $data);
$this->logFailedResponses($planhatResponse, __METHOD__, [
'body' => $planhatResponse->json(),
'status' => $planhatResponse->status(),
'data' => $data,
]);
}
/** @throws GuzzleException */
public function meter(User $user, string $dimension, string $value): void
{
if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {
return;
}
$user->load('team');
$data = [
'dimensionId' => $dimension,
'value' => $value,
'companyExternalId' => $user->getTeam()->getUuid(),
];
$planhatResponse = Http::planhatAnalyticsApi()
->post('dimensiondata/' . config('services.planhat.tenantUuid'), $data);
$this->logFailedResponses($planhatResponse, __METHOD__, $data);
}
/** @throws GuzzleException */
public function upsertCompany(Team $team): void
{
if (! $this->serviceIsAvailable($team->getPartnerId())) {
return;
}
$integrations = $team->activityProviders()
->where('is_enabled', true)
->pluck('provider')
->toArray();
$usersRolesLookUp = $this->roleStatsRepository->getPaidRolesLookup($team->getId());
$teamDomains = $team->domains()->pluck('domain')->toArray();
$data = [
'externalId' => $team->getUuid(),
'sourceId' => $team->account?->crm_provider_id,
'name' => $team->getName(),
'slug' => $team->getSlug(),
'domains' => $teamDomains,
'custom' => [
'Conference decoupled?' => true,
'Email Provider' => $team->calendar_provider,
'CRM' => $team->crm?->provider,
'Customer Api' => $team->getApiToken() === null ? 'no' : 'yes',
'Jiminny Voice' => $usersRolesLookUp[User::ROLE_RECORDER_AND_VOICE] > 0 ? 'Inbound + SMS' : 'Outbound Only',
'Integrations' => $integrations,
'Collaboration' => $team->hasSlackBot() ? 'slack' : null,
'Jiminny Voice Compliance mode' => $team->compliance_mode,
'Active users' => $usersRolesLookUp['active'],
'Recording users' => $usersRolesLookUp[User::ROLE_RECORDER],
'Voice users' => $usersRolesLookUp[User::ROLE_RECORDER_AND_VOICE],
'Listener users' => $usersRolesLookUp[User::ROLE_LISTENER],
'Data Center' => config('jiminny.deploy_region'),
'Active Jiminny Instance' => $team->status === Team::STATUS_ACTIVE,
'CRM Installed App Version' => $team->getCrmConfiguration()->getInstalledAppVersion(),
],
];
$planhatResponse = Http::planhatApi()->put('companies', $data);
$this->logFailedResponses($planhatResponse, __METHOD__, $data);
}
/**
* @throws GuzzleException
* @throws BindingResolutionException
*/
public function upsertUser(User $user): void
{
if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {
return;
}
$intercomService = app()->make(IntercomService::class);
$integrations = $user->socialAccounts()->pluck('provider')->toArray();
$lastSeen = null;
try {
$intercomUser = $intercomService->getUsers([
'user_id' => $user->getUuid(),
]);
if ($intercomUser) {
$lastSeen = Carbon::parse($intercomUser->last_request_at)->toIso8601String();
}
} catch (Exception $e) {
Log::error(__METHOD__ . ' Intercom failed to fetch user data', ['error' => $e->getMessage()]);
}
$roleNames = $user->roles()->pluck('name');
$data = [
'externalId' => $user->getUuid(),
'companyExternalId' => $user->team->getUuid(),
'name' => $user->getName(),
'position' => $user->job?->name,
'email' => $user->getEmailAddress(),
'createDate' => $user->created_at->toIso8601String(),
'custom' => [
'Role' => $roleNames->implode(', '),
'Group' => $user->group?->name,
'User Integrations' => $integrations,
'Licence Type' => $this->getLicenseType($roleNames),
'Jiminny Create Date' => $user->created_at->toIso8601String(),
'CRM Access' => $user->crm_required,
'Last seen' => $lastSeen,
'Email Synced' => $user->isSyncEmailEnabled(),
'User Job Title' => $user->job?->name ?? 'N/A',
],
];
$planhatResponse = Http::planhatApi()->put('endusers', $data);
$this->logFailedResponses($planhatResponse, __METHOD__, $data);
}
/** @throws GuzzleException */
public function deleteUser(User $user): void
{
if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {
return;
}
$planhatUserId = Http::planhatApi()
->get('endusers', ['email' => $user->email,])
->json('0._id');
if ($planhatUserId) {
Http::planhatApi()->delete("endusers/$planhatUserId");
Log::info(__METHOD__, ['result' => 'User deleted from Planhat']);
} else {
Log::error(__METHOD__, ['result' => 'User not found in Planhat']);
}
}
private function logFailedResponses(Response $planhatResponse, string $message, array $logData): void
{
if (
$planhatResponse->failed()
|| (
isset($planhatResponse->json()['errors'])
&& ! empty($planhatResponse->json()['errors'])
)
) {
Log::error($message, [
'response' => $planhatResponse->json(),
'status' => $planhatResponse->status(),
'data' => $logData,
]);
}
}
/**
* Disable Planhat service on development and staging environments to prevent
* failures and error noise in the logs.
* It should run only for Jiminny partners
*/
private function serviceIsAvailable(int $partnerId): bool
{
return config('services.planhat.enabled')
&& $partnerId === Partner::PARTNER_DEFAULT;
}
private function getLicenseType(Collection $roleNames): string
{
if ($roleNames->contains(User::ROLE_RECORDER_AND_VOICE)) {
return User::ROLE_RECORDER_AND_VOICE;
}
if ($roleNames->contains(User::ROLE_RECORDER)) {
return User::ROLE_RECORDER;
}
return User::ROLE_ANALYST;
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
19
Previous Highlighted Error
Next Highlighted Error
[2026-05-07 14:21:15] local.INFO: [Hubspot] DEBUG Getting headers {
"headers":{
"Date":["Thu,07 May 2026 14:21:15 GMT"],
"Content-Type":["application/json;charset=utf-8"],
"Transfer-Encoding":["chunked"],
"Connection":["keep-alive"],
"CF-Ray":["9f80deb8db60dc3a-SOF"],
"CF-Cache-Status":["DYNAMIC"],
"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],
"Vary":["origin,
accept-encoding"],
"access-control-allow-credentials":["false"],
"server-timing":["hcid;desc=\"019e02d0-6fd8-7812-bdba-885b7ccb3ee3\",
cfr;desc=\"9f80deb8e7c6dc3a-IAD\""],
"x-content-type-options":["nosniff"],
"x-hubspot-correlation-id":["019e02d0-6fd8-7812-bdba-885b7ccb3ee3"],
"Set-Cookie":["__cf_bm=SIUrtdQgXVrik50pdqF6hZVYKhzTnQBidvMabeCtm0Y-1778163675-[IP_ADDRESS]-rI.ZggtDKxTge5zr8_2gbBfWMQQ.ufZEXDZyHz2mBUFdzdo2gTHEsOkXMSEShjK0hGYxNhUGM1ZoBpX7BcFZcHEjA7Cs_.SMUhUnd2nYjko; path=/; expires=Thu,
07-May-26 14:51:15 GMT; domain=.hubapi.com; HttpOnly; Secure; SameSite=None"],
"Report-To":["{
\"endpoints\":[{
\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=NYAlsVTP0fYm32qrSDjxYE4sd2RWRqiSp3wHsmdEgZlzoYdxI%2BIxVpHmsKn3O%2BKVA3mFIJ2m7YRECDGSM%2BW2IYTzo6FM4%2BdUIjURO8srzKSvJgZ%2BQ6R79arKQw3uHLlX\"}],
\"group\":\"cf-nel\",
\"max_age\":604800}"],
"NEL":["{
\"success_fraction\":0.01,
\"report_to\":\"cf-nel\",
\"max_age\":604800}"],
"Server":["cloudflare"]}} {
"correlation_id":"95236535-ec98-4541-b92a-adfa73b69eab",
"trace_id":"c7ab8365-903f-46d4-9403-0e5b551e3545"}
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
22862
|
977
|
59
|
2026-05-12T07:23:55.723457+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570635723_m2.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
PhostormViewINavicareCodeLaravelKeractorTOOISWindo PhostormViewINavicareCodeLaravelKeractorTOOISWindowFV faVsco.js°9 JY-20725-handle-HS-search-rate-limitroledeyC) AutomatedReportGenerated.ong© PlaybackController.php(1) MatchDomainBvEmail© OpportunityActivityMa© OpportunitySyncStrate© OpportunitySyncStrate© ProspectCache.php€ ProspectSearchScope© ProspectSearchStrate© ProspectSearchStratec Providerkegistry.pnp€ RecordSelector.phpkesolvecompanyNamc) limererioaiterator.phlimoonuInternal0 Kioskv AutomatedReportsC) ActivitvivoeServiceC) AskJiminnvReportA(C) AutomatedRenortsiC) AutomatedRenorts.(C) DealStadesServiceC) RecioientsService.rE) ReportSort.ohrE) RenortSortDirection(C) KioskService.oho1M Mailom MeptinaGenerator1 NotificationD OAuth2M PecallAD SecurityD StrategyD Streaming_ leam_ lelepnonyD UserPilot0 Webhook© AbstractService.php© ActivityProviderFactorv.D© ActivitvService.php(C) AoiResoonseService.oho@ ConferenceService.ohnC)InsiahtSeatService.oho(C)InstantMeetinaService.oh(C)IntercomService.oho© InapiClient.php©) IoaniService.ohr@ DarticinantShareService r 1201reaconly class Plannatservicea PlanhatService nhr@ DlavhackService nhnYC) PlavhackViden@nlvServic 127C Dlavhaskeotharne.apublic function -_constructtprivate Rolestatsrepository srolestatsrepository.) (...7/** othrows Guzzle xception */oubuc function trackuser suser strind Sevent, arrav soavload = : vord1f @ Sthis-›servicelsAvailable(Suser->getTeamO->qetPartnerido0)«return:Susen->inadld relations: "team!)Sdata =fInamel => Susen->aetNameollemaili = Susen->aptFmailAddneçsoll'externalId' => $user->getUuid.'companyExternalId' => Suser->getTeam->getUuid.'action' => $event,'info' => $payload.SplanhatResponse = Http::planhatAnaluticsApiO->post url:"analytics". confia( key:'services.planhat.tenantUuid'). Sdata):Sthis->loqFailedResponses(SplanhatResponse.message: METHOD"body => solanhatresponse->sonlo'status' => SolanhatResoonse->statusol'data' => Sdatal** athrows Guzzesycention */nublic function meten(lisen Suser. string Sdimension. strina Svalue)• voidf...?** Athrows GuzzleSycention */public function upsertCompany(Team Steam): voidi...}* Athnowe Guz>leSycontion* @throws BindingResolutionExceptionpublic function upsertUser(User Suser): void{...}nit // View null reauect (vecterdav 10•021PlanhatService.php >:12 v.19 ^|aravel.logA SF (jiminny@localhost]4 HS_local jiminny@localhost]A console [STAGING][2026-05-07 14:21:15] local.INF0: [Hubspot] DEBUG Getting headers {"neaders.?"Vace".L"Inu,or May 2020 14.21.15 bMl"J,"Transter-Encodinq":"chunked").# console [PRol)# console [eu)hel"suppont Dally • In 4h 37m100% 5• Tue 12 May 10:23:55HandleHubspotRateLimitTest v+0..find planhat event playback visitedcascadePlanhat Event PlaybacThoughtsSearched planhat in ~/iminnylappThoughtsSearched olavback *visitedivisited."olavback in ~/fiminnvlaoo.СОЛРРВРДВВВВВВВВВВВВВВВО"CF-Ray": ["9f80deb8db60dc3a-SOF"]."Strict-Transport-Security":["max-aqe=31536000: includeSubDomains: preload"]."server-timing": ["hcid;desc=\"019e02d0-6fd8-7812-bdba-885b7ccb3ee3\","x-content-tvoe-ootions":"nosniff"."x-hubsoot-correlation-id":"019e02d0-6fd8-7812-bdba-885b7ccb3ee3"7."Set-Cookie":["__cf_bm=StUrtdQgXVnik50pdqF6hZVYKhzTnQBidvMabeCtm0Y-1778163675-[IP_ADDRESS]-rI.ZggtDKxTge5zr8_2gbBfW07-May-26 14:51:15 GMT; domain=.hubapi.com; Http0nly; Secure; SameSite=None"),"Renont-To".f"s"endnoints".'\"url\":"https:\V/\V/a.nel.cloudflare.com\\/report\\/v4?s=NYAlsVTP0fYm32qrSDjxYE4sd2RWRqiSp3wHsmdEgZlzoYdxI%2BIx\"group\":\"cf-nel\",\"max_age\":604800}"],"NEL":["{\"success_fraction\":0.01,report to. "cr-nel,|"max agel ":604800}"]"Server": ["cloudflare"]}} {"correlation 1d":"95256555-ec98-4541-b9za-adta/sboyeab"."trace_10":"C/A8565-905t-4604-9405-0e5b551e5545',Searched olavback in anniSoarched DlaSearched visited in aprThouahtsFound it in PlaybackController.php :Read DlavbackController.nhn #| 85-114Location:Plavbackcontroller.0no:95-168oho.*Cendina InlavbackVicitedl event to Planhat without clowina +hedeferlfn = Sthis->olanhatService-strack(user. Suserpayload: ['activityld' = Sactivity->getId(),activitvluid' = sactivity-saetluido.-salwavs@)Contovt. Collod in tha niavhaak nado controllor wronnod in doforl to firo tha Dlanhat avant scunchronduely aftor thoHTTP response is sent to avoid slowina down the user experience.Oal ***Jed daily usage quota is exhausted. Purchase extra usage to continue usina premium models. Quota resets May 12, 11:00"AN CUTYAsk anvthina (84L)÷ @Code SWF-1.6WN Windsurf Toams 20-17 UTF.8io 4 spaces...
|
NULL
|
8376897375824378124
|
NULL
|
click
|
ocr
|
NULL
|
PhostormViewINavicareCodeLaravelKeractorTOOISWindo PhostormViewINavicareCodeLaravelKeractorTOOISWindowFV faVsco.js°9 JY-20725-handle-HS-search-rate-limitroledeyC) AutomatedReportGenerated.ong© PlaybackController.php(1) MatchDomainBvEmail© OpportunityActivityMa© OpportunitySyncStrate© OpportunitySyncStrate© ProspectCache.php€ ProspectSearchScope© ProspectSearchStrate© ProspectSearchStratec Providerkegistry.pnp€ RecordSelector.phpkesolvecompanyNamc) limererioaiterator.phlimoonuInternal0 Kioskv AutomatedReportsC) ActivitvivoeServiceC) AskJiminnvReportA(C) AutomatedRenortsiC) AutomatedRenorts.(C) DealStadesServiceC) RecioientsService.rE) ReportSort.ohrE) RenortSortDirection(C) KioskService.oho1M Mailom MeptinaGenerator1 NotificationD OAuth2M PecallAD SecurityD StrategyD Streaming_ leam_ lelepnonyD UserPilot0 Webhook© AbstractService.php© ActivityProviderFactorv.D© ActivitvService.php(C) AoiResoonseService.oho@ ConferenceService.ohnC)InsiahtSeatService.oho(C)InstantMeetinaService.oh(C)IntercomService.oho© InapiClient.php©) IoaniService.ohr@ DarticinantShareService r 1201reaconly class Plannatservicea PlanhatService nhr@ DlavhackService nhnYC) PlavhackViden@nlvServic 127C Dlavhaskeotharne.apublic function -_constructtprivate Rolestatsrepository srolestatsrepository.) (...7/** othrows Guzzle xception */oubuc function trackuser suser strind Sevent, arrav soavload = : vord1f @ Sthis-›servicelsAvailable(Suser->getTeamO->qetPartnerido0)«return:Susen->inadld relations: "team!)Sdata =fInamel => Susen->aetNameollemaili = Susen->aptFmailAddneçsoll'externalId' => $user->getUuid.'companyExternalId' => Suser->getTeam->getUuid.'action' => $event,'info' => $payload.SplanhatResponse = Http::planhatAnaluticsApiO->post url:"analytics". confia( key:'services.planhat.tenantUuid'). Sdata):Sthis->loqFailedResponses(SplanhatResponse.message: METHOD"body => solanhatresponse->sonlo'status' => SolanhatResoonse->statusol'data' => Sdatal** athrows Guzzesycention */nublic function meten(lisen Suser. string Sdimension. strina Svalue)• voidf...?** Athrows GuzzleSycention */public function upsertCompany(Team Steam): voidi...}* Athnowe Guz>leSycontion* @throws BindingResolutionExceptionpublic function upsertUser(User Suser): void{...}nit // View null reauect (vecterdav 10•021PlanhatService.php >:12 v.19 ^|aravel.logA SF (jiminny@localhost]4 HS_local jiminny@localhost]A console [STAGING][2026-05-07 14:21:15] local.INF0: [Hubspot] DEBUG Getting headers {"neaders.?"Vace".L"Inu,or May 2020 14.21.15 bMl"J,"Transter-Encodinq":"chunked").# console [PRol)# console [eu)hel"suppont Dally • In 4h 37m100% 5• Tue 12 May 10:23:55HandleHubspotRateLimitTest v+0..find planhat event playback visitedcascadePlanhat Event PlaybacThoughtsSearched planhat in ~/iminnylappThoughtsSearched olavback *visitedivisited."olavback in ~/fiminnvlaoo.СОЛРРВРДВВВВВВВВВВВВВВВО"CF-Ray": ["9f80deb8db60dc3a-SOF"]."Strict-Transport-Security":["max-aqe=31536000: includeSubDomains: preload"]."server-timing": ["hcid;desc=\"019e02d0-6fd8-7812-bdba-885b7ccb3ee3\","x-content-tvoe-ootions":"nosniff"."x-hubsoot-correlation-id":"019e02d0-6fd8-7812-bdba-885b7ccb3ee3"7."Set-Cookie":["__cf_bm=StUrtdQgXVnik50pdqF6hZVYKhzTnQBidvMabeCtm0Y-1778163675-[IP_ADDRESS]-rI.ZggtDKxTge5zr8_2gbBfW07-May-26 14:51:15 GMT; domain=.hubapi.com; Http0nly; Secure; SameSite=None"),"Renont-To".f"s"endnoints".'\"url\":"https:\V/\V/a.nel.cloudflare.com\\/report\\/v4?s=NYAlsVTP0fYm32qrSDjxYE4sd2RWRqiSp3wHsmdEgZlzoYdxI%2BIx\"group\":\"cf-nel\",\"max_age\":604800}"],"NEL":["{\"success_fraction\":0.01,report to. "cr-nel,|"max agel ":604800}"]"Server": ["cloudflare"]}} {"correlation 1d":"95256555-ec98-4541-b9za-adta/sboyeab"."trace_10":"C/A8565-905t-4604-9405-0e5b551e5545',Searched olavback in anniSoarched DlaSearched visited in aprThouahtsFound it in PlaybackController.php :Read DlavbackController.nhn #| 85-114Location:Plavbackcontroller.0no:95-168oho.*Cendina InlavbackVicitedl event to Planhat without clowina +hedeferlfn = Sthis->olanhatService-strack(user. Suserpayload: ['activityld' = Sactivity->getId(),activitvluid' = sactivity-saetluido.-salwavs@)Contovt. Collod in tha niavhaak nado controllor wronnod in doforl to firo tha Dlanhat avant scunchronduely aftor thoHTTP response is sent to avoid slowina down the user experience.Oal ***Jed daily usage quota is exhausted. Purchase extra usage to continue usina premium models. Quota resets May 12, 11:00"AN CUTYAsk anvthina (84L)÷ @Code SWF-1.6WN Windsurf Toams 20-17 UTF.8io 4 spaces...
|
22860
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22864
|
977
|
60
|
2026-05-12T07:23:58.430520+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570638430_m2.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
01:33
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":true},{"role":"AXButton","text":"fast forward","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"01:33","depth":1,"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.5621675,"top":1.0,"width":0.0033244682,"height":-0.028730989},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.46110374,"top":1.0,"width":0.10106383,"height":-0.028730989},"on_screen":true,"role_description":"text"}]...
|
448356998781951801
|
8227845435850230388
|
click
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
01:33
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
PnostormIavicatecode10019FV faVsco.js?9 JY-20725-handle-HS-search-rate-limitProjectyC) AutomatedReportGenerated.ong© PlaybackController.php(1) MatchDomainBvEmail© OpportunityActivityMa© OpportunitySyncStrate© OpportunitySyncStrate© ProspectCache.php€ ProspectSearchScope© ProspectSearchStrate© ProspectSearchStratec Providerkegistry.pnp€ RecordSelector.phpkesolvecompanyNamc) limererioaiterator.phaImoonuInternal0 Kioskv AutomatedReportsC) ActivitvivoeServiceC) AskJiminnvReportA(C) AutomatedRenortsiC) AutomatedRenorts.(C) DealStadesServiceC) RecioientsService.rE) ReportSort.ohrE) RenortSortDirection(C) KioskService.oho1m Mailm MeptinaGenerator1 NotificationM0Auth2M PecallAm SecurityD StrategyD Streaming_ leamD TelephonvD UserPilot0 Webhook© AbstractService.php© ActivityProviderFactorv.p© ActivitvService.php(C) AoiResoonseService.oho© ConferenceService.ohn(C)InsiahtSeatService.oho(C)InstantMeetinaService.oh(C)IntercomService.oho@ InapiClient.php©) IoaniService.ohr@ DarticinantShareService r 1201(@) PlanhatService nhr@ DlavhackService nhnYC) PlavhackViden@nlvServic 127(C) DlavbaskCotoaan.c.ndhhlsupoont Dally • In 41 37PlanhatService.php x:12 v.19 ^= laravel.l0gA SF (jiminny@localhost]4 HS_local [jiminny@localhost]# console [PRol)A console [STAGING][2026-05-07 14:21:15] local.INF0: [Hubspot] DEBUG Getting headers {"neaders.?"Vace".L"Inu,or May 2020 14.21.15 bMl"J,"Transter-Encodinq":"chunked").& console [EU]cascadePlanhat Event PlaybacThoughtsSearched planhat in ~/iminnylappThoughtsSearched olavback *visitedivisited."olavback in ~/fiminnvlaoo.100% 5• lue 1z May 10-23:00+0 ..find planhat event playback visitedreaconly class Plannatservicepublic function -_constructtprivate Rolestatsrepository srolestatsrepository.) (...7/** othrows Guzzle xception */oubuc function trackuser suser strind Sevent, arrav soavload = : vord1f @ Sthis-›servicelsAvailable(Suser->getTeamO->qetPartnerido0)«return:Susen->inadld relations: "team!)Sdata =fInamel => Susen->aetNameollemaili = Susen->aptFmailAddnecs0ll'externalId' => $user->getUuid.'companyExternalId' => Suser->getTeam->getUuidaction = sevent,'info' => $payload.SplanhatResponse = Http::planhatAnaluticsApiO->post url:'analytics/'. confia( key:'services.planhat.tenantUuid'). Sdata):Sthis->loqFailedResponses(SplanhatResponse.message: METHOD"body => solanhatresponse->sonlo'status' => $planhatResponse->status@'data' => Sdatal** athrows Guzzesycention */nublic function meten(lisen Suser. string Sdimension. strina Svalue)• voidf...?** Athrows GuzzleSycention */public function upsertCompany(Team Steam): voidi...}* Athnowe Guz>leSycontion* @throws BindingResolutionExceptionpublic function upsertUser(User Suser): void{...}СОЛРРВРДВВВВВВВВВВВВВВВО"CF-Ray": ["9f80deb8db60dc3a-SOF"]."Strict-Transport-Security":["max-aqe=31536000: includeSubDomains: preload"]."server-timing": ["hcid;desc=\"019e02d0-6fd8-7812-bdba-885b7ccb3ee3\","x-content-tvoe-ootions":"nosniff"."x-hubsoot-correlation-id":"019e02d0-6fd8-7812-bdba-885b7ccb3ee3"7."Set-Cookie":["__cf_bm=StUrtdQgXVnik50pdqF6hZVYKhzTnQBidvMabeCtm0Y-1778163675-[IP_ADDRESS]-rI.ZggtDKxTge5zr8_2gbBfW07-May-26 14:51:15 GMT; domain=.hubapi.com; Http0nly; Secure; SameSite=None"),"Renont-To".f"s"endnoints".'\"url\":"https:\V/\V/a.nel.cloudflare.com\\/report\\/v4?s=NYAlsVTP0fYm32qrSDjxYE4sd2RWRqiSp3wHsmdEgZlzoYdxI%2BIx\"group\":\"cf-nel\",\"max_age\":604800}"],"NEL":["{\"success_fraction\":0.01,report to. "cr-nel,|"max agel ":604800}"]"Server": ["cloudflare"]}} {"correlation 1d":"95256555-ec98-4541-b9za-adta/sboyeab"."trace_10":"C/A8565-905t-4604-9405-0e5b551e5545',Soarched pl.Searched visited in aprThouahtslFound it in PlaybackController.php :Read DlavbackController.nhn #| 85-114Location:Plavbackcontroller.0no:95-168oho.*Cendina InlavbackVicitedl event to Planhat without clowina +hedeferlfn = Sthis->olanhatService-strack(user. Suserpay load:'activityld' = Sactivity->getId(),activitvluid' = sactivity-saetluido.-salwavs@)Contovt. Collod in tha niavhaak nado controllor wronnod in doforl to firo tha Dlanhat avant scunchronduely aftor thoHTTP response is sent to avoid slowina down the user experience.Oal ***Jed daily usage quota is exhausted. Purchase extra usage to continue usina premium models. Quota resets May 12, 11:00"AN CUTYAsk anvthina (84L)÷ @Code SWF-1.620-17JUTE.Afo 4 spaces...
|
NULL
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22872
|
977
|
61
|
2026-05-12T07:24:26.065905+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570666065_m2.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:00
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":true},{"role":"AXButton","text":"fast forward","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"02:00","depth":1,"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.5621675,"top":1.0,"width":0.0033244682,"height":-0.028730989},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.46110374,"top":1.0,"width":0.10106383,"height":-0.028730989},"on_screen":true,"role_description":"text"}]...
|
4920310641909634866
|
-3301379780684019084
|
click
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:00
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
PnostormIavicatecode10019FV faVsco.js?9 JY-20725-handle-HS-search-rate-limitProjectyC) AutomatedReportGenerated.ong© PlaybackController.php(1) MatchDomainBvEmail© OpportunityActivityMa© OpportunitySyncStrate© OpportunitySyncStrate© ProspectCache.php€ ProspectSearchScope© ProspectSearchStrate© ProspectSearchStratec Providerkegistry.pnp€ RecordSelector.phpkesolvecompanyNamc) limererioaiterator.phaImoonuInternal0 Kioskv AutomatedReportsC) ActivitvivoeServiceC) AskJiminnvReportA(C) AutomatedRenortsiC) AutomatedRenorts.(C) DealStadesServiceC) RecioientsService.rE) ReportSort.ohrE) RenortSortDirection(C) KioskService.oho1M Mailom MeptinaGenerator1 NotificationM0Auth2M PecallAm SecurityD StrategyD Streaming_ leamD TelephonvD UserPilot0 Webhook© AbstractService.php© ActivityProviderFactorv.p© ActivitvService.php(C) AoiResoonseService.oho© ConferenceService.ohn(C)InsiahtSeatService.oho(C)InstantMeetinaService.oh(C)IntercomService.oho@ InapiClient.php©) IoaniService.ohr@ DarticinantShareService r 1201(@) PlanhatService nhr@ DlavhackService nhnYC) PlavhackViden@nlvServic 127(C) DlavbaskCotoaan.c.ndPlanhatService.php x:12 v.19 ^= laravel.l0gA SF (jiminny@localhost]4 HS_local [jiminny@localhost]# console [PRol)A console [STAGING][2026-05-07 14:21:15] local.INF0: [Hubspot] DEBUG Getting headers {"neaders.?"Vace".L"Inu,or May 2020 14.21.15 bMl"J,"Transter-Encodinq":"chunked").& console [EU]>0 lll 0supoont Dally • In 41 30cascadePlanhat Event PlaybacThoughtsSearched planhat in ~/iminnylappThoughtsSearched olavback *visitedivisited."olavback in ~/fiminnvlaoo.100% 5• lue 1z May 10•2424+O •find planhat event playback visitedreaconly class Plannatservicepublic function -_constructtprivate Rolestatsrepository srolestatsrepository.) (...7/** othrows Guzzle xception */oubuc function trackuser suser strind Sevent, arrav soavload = : vord1f @ Sthis-›servicelsAvailable(Suser->getTeamO->qetPartnerido0)«return:Susen->inadld relations: "team!)Sdata =fInamel => Susen->aetNameollemaili = Susen->aptFmailAddnecs0ll'externalId' => $user->getUuid.'companyExternalId' => Suser->getTeam->getUuidaction = sevent,'info' => $payload.SplanhatResponse = Http::planhatAnaluticsApiO->post url:'analytics/'. confia( key:'services.planhat.tenantUuid'). Sdata):Sthis->loqFailedResponses(SplanhatResponse.message: METHOD"body => solanhatresponse->sonlo'status' => $planhatResponse->status@'data' => Sdatal** athrows Guzzesycention */nublic function meten(lisen Suser. string Sdimension. strina Svalue)• voidf...?** Athrows GuzzleSycention */public function upsertCompany(Team Steam): voidi...}* Athnowe Guz>leSycontion* @throws BindingResolutionExceptionpublic function upsertUser(User Suser): void{...}СОЛРРВРДВВВВВВВВВВВВВВВО"CF-Ray": ["9f80deb8db60dc3a-SOF"]."Strict-Transport-Security":["max-aqe=31536000: includeSubDomains: preload"]."server-timing": ["hcid;desc=\"019e02d0-6fd8-7812-bdba-885b7ccb3ee3\","x-content-tvoe-ootions":"nosniff"."x-hubsoot-correlation-id":"019e02d0-6fd8-7812-bdba-885b7ccb3ee3"7."Set-Cookie":["__cf_bm=StUrtdQgXVnik50pdqF6hZVYKhzTnQBidvMabeCtm0Y-1778163675-[IP_ADDRESS]-rI.ZggtDKxTge5zr8_2gbBfW07-May-26 14:51:15 GMT; domain=.hubapi.com; Http0nly; Secure; SameSite=None"),"Renont-To".f"s"endnoints".'\"url\":"https:\V/\V/a.nel.cloudflare.com\\/report\\/v4?s=NYAlsVTP0fYm32qrSDjxYE4sd2RWRqiSp3wHsmdEgZlzoYdxI%2BIx\"group\":\"cf-nel\",\"max_age\":604800}"],"NEL":["{\"success_fraction\":0.01,report to. "cr-nel,|"max agel ":604800}"]"Server": ["cloudflare"]}} {"correlation 1d":"95256555-ec98-4541-b9za-adta/sboyeab"."trace_10":"C/A8565-905t-4604-9405-0e5b551e5545',Soarched pl.Searched visited in aprThouahtslFound it in PlaybackController.php :Read DlavbackController.nhn #| 85-114Location:Plavbackcontroller.0no:95-168oho.*Cendina InlavbackVicitedl event to Planhat without clowina +hedeferlfn = Sthis->olanhatService-strack(user. Suserpay load:'activityld' = Sactivity->getId(),activitvluid' = sactivity-saetluido.-salwavs@)Contovt. Collod in tha niavhaak nado controllor wronnod in doforl to firo tha Dlanhat avant scunchronduely aftor thoHTTP response is sent to avoid slowina down the user experience.Oal ***Jed daily usage quota is exhausted. Purchase extra usage to continue usina premium models. Quota resets May 12, 11:00"AN CUTYAsk anvthina (84L)÷ @Code SWF-1.620-17JUTE.Afo 4 spaces...
|
22864
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22875
|
978
|
0
|
2026-05-12T07:24:44.911127+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570684911_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
QuickTime PlayerFileEditViewWindowHelpj Support Da QuickTime PlayerFileEditViewWindowHelpj Support Daily - in 4h 36 m100% (Tue 12 May 10:24:44• PLanhat Petko interest event 2026-05-11.mp4Screen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*8• Mon 11 May 12:19Gree!Scoreandre• wilsoCall AJiminM Inbox=N=AppsBuildUser;§ New: | u User; | +Cws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5WorkAIKB• ChatPlayground Al...Jiminny - Calenda…M GMail• My Calendly - Eve....= PH New Ul LoginGet Starting with J...AppsChloe Onboarding..+ CX Journey SMB....Jiminny ~Content ExplorerData ExplorerNotificationsEmail Manager•** MoreSections -CS Day-to-day•Getting started Guide• Just CS Data+ Daily Operations# Weekly prepERenewals and UpsellRisk and Churn AnalyticsImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsLeadershipSystem ReportsLeadership OperationsPortiolio Overview (Dashbo…NPS Report - GregClient Engagement OverviewRevenue AnalyticsE Metric -B DatasetplaybackVisitedQ, PLAYBACK+ Metricactivities.playbackVisitedTукOverview~ Company 2Raw Data• Playback Adoption Avg• Playback AdoptionCalCaCompanyEndUserD BT Local Business Oxford & BucksTHRIVE• JUsers Playback Adoption• Playback Adoption (Last 7 days)CalCalBT Local Business SevernsideJibble• Playback AdoptionCallplaybackVisitedMoxsoConnectdReward Gateway-EdenredTeamtailorReward Gateway-EdenredScoroBT Local Business SevernsideScoroCrmnUserBen CopelinLouise CameronConnor MorrisEllas Bjernstjerne EngedalTom ZiniZoe SergioAidan JonesAndrew CrabtreeThomas CrothallLewis TurnerThomas CrothallThomas CrothalEventplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedpayoocariateplaybackVisitedplaybackVisitednisharWliitalPetkoFilter by CompanyTimeMay 11, 2026 09:19:16Ingestion AtMay 11, 2026 09:19:18May 11, 2026 09:19:11May 11, 2026 09:19:18May 11, 2026 09:19:03May 11, 2026 09:19:08May 11, 2026 09-19:00May 11, 2026 09:18:58May 11, 2026 09:19:08May 11, 2026 09:19:08May 11, 2026 09:18:58May 11, 2026 09:19:08May 11, 2026 09:18-45May 11, 2026 09:18:47May 11, 2026 09:18:45May 11, 2026 09:18-34May 11, 2026 09:18:09May 11, 2026 09:18:47May 11May 114= Al Notes: OffMay 11, 2026 09:18:05May 11, 2026 09:18:04May 11, 2026 09:18:02May 11, 2026 09:18:00May 11,May 11,May 11May 11,7Petko ...een .ГА02:0704:55...
|
NULL
|
-8750061779557573986
|
NULL
|
click
|
ocr
|
NULL
|
QuickTime PlayerFileEditViewWindowHelpj Support Da QuickTime PlayerFileEditViewWindowHelpj Support Daily - in 4h 36 m100% (Tue 12 May 10:24:44• PLanhat Petko interest event 2026-05-11.mp4Screen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*8• Mon 11 May 12:19Gree!Scoreandre• wilsoCall AJiminM Inbox=N=AppsBuildUser;§ New: | u User; | +Cws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5WorkAIKB• ChatPlayground Al...Jiminny - Calenda…M GMail• My Calendly - Eve....= PH New Ul LoginGet Starting with J...AppsChloe Onboarding..+ CX Journey SMB....Jiminny ~Content ExplorerData ExplorerNotificationsEmail Manager•** MoreSections -CS Day-to-day•Getting started Guide• Just CS Data+ Daily Operations# Weekly prepERenewals and UpsellRisk and Churn AnalyticsImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsLeadershipSystem ReportsLeadership OperationsPortiolio Overview (Dashbo…NPS Report - GregClient Engagement OverviewRevenue AnalyticsE Metric -B DatasetplaybackVisitedQ, PLAYBACK+ Metricactivities.playbackVisitedTукOverview~ Company 2Raw Data• Playback Adoption Avg• Playback AdoptionCalCaCompanyEndUserD BT Local Business Oxford & BucksTHRIVE• JUsers Playback Adoption• Playback Adoption (Last 7 days)CalCalBT Local Business SevernsideJibble• Playback AdoptionCallplaybackVisitedMoxsoConnectdReward Gateway-EdenredTeamtailorReward Gateway-EdenredScoroBT Local Business SevernsideScoroCrmnUserBen CopelinLouise CameronConnor MorrisEllas Bjernstjerne EngedalTom ZiniZoe SergioAidan JonesAndrew CrabtreeThomas CrothallLewis TurnerThomas CrothallThomas CrothalEventplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedpayoocariateplaybackVisitedplaybackVisitednisharWliitalPetkoFilter by CompanyTimeMay 11, 2026 09:19:16Ingestion AtMay 11, 2026 09:19:18May 11, 2026 09:19:11May 11, 2026 09:19:18May 11, 2026 09:19:03May 11, 2026 09:19:08May 11, 2026 09-19:00May 11, 2026 09:18:58May 11, 2026 09:19:08May 11, 2026 09:19:08May 11, 2026 09:18:58May 11, 2026 09:19:08May 11, 2026 09:18-45May 11, 2026 09:18:47May 11, 2026 09:18:45May 11, 2026 09:18-34May 11, 2026 09:18:09May 11, 2026 09:18:47May 11May 114= Al Notes: OffMay 11, 2026 09:18:05May 11, 2026 09:18:04May 11, 2026 09:18:02May 11, 2026 09:18:00May 11,May 11,May 11May 11,7Petko ...een .ГА02:0704:55...
|
22873
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22877
|
978
|
1
|
2026-05-12T07:24:52.052571+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570692052_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:14
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"02:14","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
9209024992629999468
|
6502966778542164596
|
visual_change
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:14
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(ablj Support Daily - in 4h 36 mA100% (8•Tue 12 May 10:24:51• PLanhat Petko interest event 2026-05-11.mp4Screen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*Q8• Mon 11 May 12:19GreetScoreandre• wilsoCall AJiminM Inbox=N=Apps@ Buildu Usery§ New: | u User; | +Cws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.67489a8c40ddfa05d5bf5aa4WorkAIKB• ChatPlayground Al...Apps+ CX Journey SMB....Jiminny ~Content ExplorerData ExplorerNotificationsEmail ManagerMoreSections -ECS Day-to-day•Getting started Guide• Just CS Data* Daily Operations# Weekly prepRenewals and UpsellRisk and Churn AnalyticsImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsLeadershipSystem ReportsLeadership OperationsPortiolio Overview (Dashbo…NPS Report - GregCiient Engagement OverviewRevenue AnalyticsJiminny - Calenda….M GMail• My Calendly - Eve....= PH New Ul LoginGet Starting with J...Chloe Onboarding..8 MetricB DatasetPlayback AdoptionQ, PLAYBACK+ MetricReporting & Data modeis (Featured)calculated.67489a8c40ddfa05dSbf5aa4ТугOverviewLogsTrace~ Company 2• Playback Adoption Avg• Metric is rebuilding.• Playback AdoptionFiter by CompanyEndUser• JUsers Playback AdoptionCal• Playback Adoption (Last 7 days)• Playback AdoptionMetric data loadingCalplaybackVisitedUsasaacross companiesNo groups found+ Show full listAdd a com40 +E. Petko6 Feb 11, 2026 - May 10, 2026Al Notes: OffPetko ...reen .702:1404:55ve...
|
NULL
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22878
|
978
|
2
|
2026-05-12T07:24:55.120064+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570695120_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:17
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"02:17","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
1945678105254570677
|
-3301378393426359692
|
visual_change
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:17
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelpScreen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelpGree!Scoreandre• wilsoCall AJiminM Inbox= NCws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.67489a8c40ddfa05d5bf5aa4AIKB• ChatPlayground Al...Jiminny ~Content ExplorerData ExplorerNotificationsEmail Manager•** MoreSections -ECS Day-to-day•Getting started Guide• Just CS Data* Daily Operations# Weekly prepRenewals and UpsellRisk and Churn AnalyticsImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsLeadershipSystem ReportsLeadership OperationsPortfolio Overview (Dashbo….NPS Report - GregClient Engagement OverviewRevenue AnalyticsJiminny - Calenda…M GMail• My Calendly - Eve....= PH New Ul LoginGet Starting with J...8 MetricB DatasetPlayback AdoptionQ, PLAYBACK+ Metric6 nReporting & Data modeis (Featured)calculated.67489a8c40ddfa05dSbf5aa4ТугOverviewFormulaLogsTrace- Company 2Formula• Playback Adoption Avg("type": "metricOverTime", "days": 30, "op*: "SUM", "prop*: "activities.playbackVisited*X• Playback AdoptionEndUser© Read about how to conuct a formula beceHandle missing data as no value ©• JUsers Playback AdoptionCalConditions• Playback Adoption (Last 7 days)Cal• Playback AdoptionCalplaybackVisitedUs(ablj Support Daily - in 4h 36 mA100% (8•Tue 12 May 10:24:54• PLanhat Petko interest event 2026-05-11.mp4*Q8• Mon 11 May 12:19=Apps@ Buildu User, |§ New: | u User; | +© WorkAppsChloe Onboarding..+ CX Journey SMB....40 +E. Petko4= Al Notes: OffPetko ...een .ЕEBГА02:17. ..04:55ve...
|
22877
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22880
|
978
|
3
|
2026-05-12T07:25:07.223506+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570707223_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Petko Kashinski
Screen share
+
图
X
Chrome
File
Edi Petko Kashinski
Screen share
+
图
X
Chrome
File
Edit
View
History
Bookmarks
Profiles
Tab
Window
Help
分
⑦
*
8•
Mon 11 May 12:19
Work
Gree
Score
andre
@ wilso
Call A
Jimin
M Inbox
NX
ニ Apps
Build
u User
New
1 User
ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.67489a8c40ddfa05d5bf5aa4
Q
u
今
E Work
■ AIKB
ChatPlayground Al...
+ CX Journey SMB...
Jiminny ~
Content Explorer
Data Explorer
" Notifications
* Email Manager
More
Sections -
CS Day-to-day *
Getting started Guide
€ Just CS Data
田
H
* Daily Operations
• Weekly prep
• Renewals and Upsell
Risk and Churn Analytics
目
Implementation
Impl Projects
Trial Opps (Under Review)
Stoyan's clients
Leadership
• System Reports
Leadership Operations
Portfolio Overview (Dashbo….
NPS Report - Greg
Client Engagement Overview
Revenue Analytics
Jiminny - Calenda...
M
GMail
My Calendly - Eve...
8 Metric ~
@ Dataset
CUPEAYBACN
+ Metric
Name
Tyr
Company
• Playback AdoNlyn Avg
Cal
• Playback Adoption
Cal
EndUser 4
JUsers Playback Adoption
Cal
Playback Adoption (Last 7 days)
Cal
• Playback Adoption
Cal
playbackVisited
Usi
= PH New Ul Login
Get Starting with J...
■ Apps
Chloe Onboarding…..
Search Jiminny
Playback Adoption
Reporting & Data models (Featured)
calculated.67489a8c40ddfa5d5bf5aa4
Overview
Formula
Logs
Trace
("type": "metricOverTime", "days": 30, "op": "SUM", "prop*: "activities.playbackVisited*)
• Read about how to construct a formula here
Handle missing data as no value O
Conditions
+ Rule
4 ®
Petko
Save
7= Al Notes: Off
•110
Petko ..
reen ...
zoom
田
A
&+
必
t
€
Leave
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:17
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Petko Kashinski\nScreen share","depth":2,"bounds":{"left":0.0022771326,"top":0.039010823,"width":0.07848837,"height":0.037549384},"on_screen":true,"lines":[{"char_start":0,"char_count":16,"bounds":{"left":0.0022771326,"top":0.039010823,"width":0.07848837,"height":0.016469594}},{"char_start":16,"char_count":12,"bounds":{"left":0.0022771326,"top":0.062255677,"width":0.05377907,"height":0.014304527}}],"value":"Petko Kashinski\nScreen share","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+","depth":2,"bounds":{"left":0.772626,"top":0.048500497,"width":0.013081395,"height":0.020939758},"on_screen":true,"value":"+","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"图","depth":2,"bounds":{"left":0.829312,"top":0.048500497,"width":0.013081395,"height":0.018613119},"on_screen":true,"value":"图","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"X","depth":2,"bounds":{"left":0.8569283,"top":0.048500497,"width":0.011627907,"height":0.018613119},"on_screen":true,"value":"X","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Chrome","depth":2,"bounds":{"left":0.028439922,"top":0.095033295,"width":0.031976745,"height":0.011633199},"on_screen":true,"value":"Chrome","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"File\nEdit","depth":2,"bounds":{"left":0.070591085,"top":0.095033295,"width":0.040697675,"height":0.0116332},"on_screen":true,"value":"File\nEdit","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"View","depth":2,"bounds":{"left":0.12146318,"top":0.095033295,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"View","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"History","depth":2,"bounds":{"left":0.15053295,"top":0.095033295,"width":0.02761628,"height":0.013959839},"on_screen":true,"value":"History","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Bookmarks","depth":2,"bounds":{"left":0.18832365,"top":0.095033295,"width":0.04215116,"height":0.011633199},"on_screen":true,"value":"Bookmarks","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Profiles","depth":2,"bounds":{"left":0.24064922,"top":0.095033295,"width":0.029069766,"height":0.011633199},"on_screen":true,"value":"Profiles","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Tab","depth":2,"bounds":{"left":0.2784399,"top":0.095033295,"width":0.014534883,"height":0.011633199},"on_screen":true,"value":"Tab","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Window","depth":2,"bounds":{"left":0.30314922,"top":0.095033295,"width":0.030523255,"height":0.011633199},"on_screen":true,"value":"Window","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Help","depth":2,"bounds":{"left":0.3438469,"top":0.095033295,"width":0.018895349,"height":0.013959839},"on_screen":true,"value":"Help","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"分","depth":2,"bounds":{"left":0.52407944,"top":0.09270666,"width":0.010174419,"height":0.018613119},"on_screen":true,"value":"分","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"⑦","depth":2,"bounds":{"left":0.5429748,"top":0.09270666,"width":0.010174419,"height":0.018613119},"on_screen":true,"value":"⑦","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"*","depth":2,"bounds":{"left":0.582219,"top":0.09270666,"width":0.0072674416,"height":0.01628648},"on_screen":true,"value":"*","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"8•\nMon 11 May 12:19","depth":2,"bounds":{"left":0.74210274,"top":0.0926528,"width":0.093023255,"height":0.016340336},"on_screen":true,"value":"8•\nMon 11 May 12:19","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Work","depth":2,"bounds":{"left":0.12437016,"top":0.12760626,"width":0.020348838,"height":0.0116332},"on_screen":true,"value":"Work","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Gree","depth":2,"bounds":{"left":0.19849806,"top":0.1299329,"width":0.01744186,"height":0.006979919},"on_screen":true,"value":"Gree","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Score","depth":2,"bounds":{"left":0.24500969,"top":0.12760626,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"Score","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"andre","depth":2,"bounds":{"left":0.29006782,"top":0.12760626,"width":0.020348838,"height":0.011633199},"on_screen":true,"value":"andre","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"@ wilso","depth":2,"bounds":{"left":0.32204458,"top":0.12483798,"width":0.03343023,"height":0.016986625},"on_screen":true,"value":"@ wilso","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Call A","depth":2,"bounds":{"left":0.3816376,"top":0.12752008,"width":0.021802325,"height":0.011719371},"on_screen":true,"value":"Call A","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jimin","depth":2,"bounds":{"left":0.42814922,"top":0.12760626,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"Jimin","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"M Inbox","depth":2,"bounds":{"left":0.46303293,"top":0.12752008,"width":0.030523255,"height":0.011719371},"on_screen":true,"value":"M Inbox","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"NX","depth":2,"bounds":{"left":0.52138036,"top":0.12752008,"width":0.017233986,"height":0.011719371},"on_screen":true,"value":"NX","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ニ Apps","depth":2,"bounds":{"left":0.5531492,"top":0.12752008,"width":0.03197674,"height":0.014304527},"on_screen":true,"value":"ニ Apps","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Build","depth":2,"bounds":{"left":0.6112888,"top":0.12760626,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"Build","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"u User","depth":2,"bounds":{"left":0.644719,"top":0.12752008,"width":0.03343023,"height":0.011719371},"on_screen":true,"value":"u User","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"New","depth":2,"bounds":{"left":0.70140505,"top":0.12760626,"width":0.020348836,"height":0.011633199},"on_screen":true,"value":"New","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"1 User","depth":2,"bounds":{"left":0.7362888,"top":0.1299329,"width":0.030523254,"height":0.0074215503},"on_screen":true,"value":"1 User","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.67489a8c40ddfa05d5bf5aa4","depth":2,"bounds":{"left":0.08948644,"top":0.16715913,"width":0.45639533,"height":0.01628648},"on_screen":true,"value":"ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.67489a8c40ddfa05d5bf5aa4","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Q","depth":2,"bounds":{"left":0.5691376,"top":0.16715913,"width":0.010174418,"height":0.013959839},"on_screen":true,"value":"Q","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"u","depth":2,"bounds":{"left":0.61710274,"top":0.16715913,"width":0.010174418,"height":0.013959839},"on_screen":true,"value":"u","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"今","depth":2,"bounds":{"left":0.7217539,"top":0.16715913,"width":0.010174419,"height":0.018613119},"on_screen":true,"value":"今","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"E Work","depth":2,"bounds":{"left":0.7798934,"top":0.16685753,"width":0.031976745,"height":0.014304527},"on_screen":true,"value":"E Work","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"■ AIKB","depth":2,"bounds":{"left":0.006637598,"top":0.20438537,"width":0.030523255,"height":0.01164397},"on_screen":true,"value":"■ AIKB","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ChatPlayground Al...","depth":2,"bounds":{"left":0.05896318,"top":0.20438537,"width":0.06831395,"height":0.011643971},"on_screen":true,"value":"ChatPlayground Al...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+ CX Journey SMB...","depth":2,"bounds":{"left":0.66070735,"top":0.20172481,"width":0.075581394,"height":0.016986625},"on_screen":true,"value":"+ CX Journey SMB...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jiminny ~","depth":2,"bounds":{"left":0.018265504,"top":0.2392742,"width":0.030523255,"height":0.011643971},"on_screen":true,"value":"Jiminny ~","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Content Explorer","depth":2,"bounds":{"left":0.019718995,"top":0.27145937,"width":0.049418602,"height":0.012031744},"on_screen":true,"value":"Content Explorer","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Data Explorer","depth":2,"bounds":{"left":0.019718992,"top":0.3160641,"width":0.039244186,"height":0.011719371},"on_screen":true,"value":"Data Explorer","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"\" Notifications","depth":2,"bounds":{"left":0.008091087,"top":0.3393305,"width":0.049418602,"height":0.011697828},"on_screen":true,"value":"\" Notifications","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"* Email Manager\nMore","depth":2,"bounds":{"left":0.008091086,"top":0.36259687,"width":0.05523256,"height":0.03257296},"on_screen":true,"lines":[{"char_start":0,"char_count":16,"bounds":{"left":0.008091086,"top":0.36259687,"width":0.05523256,"height":0.011676285}},{"char_start":16,"char_count":4,"bounds":{"left":0.016812015,"top":0.38353664,"width":0.020348836,"height":0.011633199}}],"value":"* Email Manager\nMore","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Sections -","depth":2,"bounds":{"left":0.0066376,"top":0.41808078,"width":0.029069765,"height":0.007335378},"on_screen":true,"value":"Sections -","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"CS Day-to-day *\nGetting started Guide\n€ Just CS Data","depth":2,"bounds":{"left":0.02262597,"top":0.439376,"width":0.06831395,"height":0.055839356},"on_screen":true,"lines":[{"char_start":0,"char_count":16,"bounds":{"left":0.022625972,"top":0.439376,"width":0.05087209,"height":0.013959839}},{"char_start":16,"char_count":22,"bounds":{"left":0.02262597,"top":0.4626424,"width":0.06831395,"height":0.013959839}},{"char_start":38,"char_count":14,"bounds":{"left":0.024079459,"top":0.48334518,"width":0.04505814,"height":0.011870172}}],"value":"CS Day-to-day *\nGetting started Guide\n€ Just CS Data","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"田\nH","depth":2,"bounds":{"left":0.008091086,"top":0.54640144,"width":0.00872093,"height":0.0348996},"on_screen":true,"lines":[{"char_start":0,"char_count":2,"bounds":{"left":0.008091086,"top":0.54640144,"width":0.00872093,"height":0.013959839}},{"char_start":2,"char_count":1,"bounds":{"left":0.008091086,"top":0.5673412,"width":0.0072674416,"height":0.013959839}}],"value":"田\nH","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"* Daily Operations\n• Weekly prep\n• Renewals and Upsell\nRisk and Churn Analytics","depth":2,"bounds":{"left":0.024079457,"top":0.50659007,"width":0.07848837,"height":0.07509877},"on_screen":true,"lines":[{"char_start":0,"char_count":19,"bounds":{"left":0.02407946,"top":0.50659007,"width":0.055232555,"height":0.011891715}},{"char_start":19,"char_count":14,"bounds":{"left":0.024079457,"top":0.52536476,"width":0.04360465,"height":0.014304527}},{"char_start":33,"char_count":22,"bounds":{"left":0.024079459,"top":0.5486096,"width":0.06540697,"height":0.011751685}},{"char_start":55,"char_count":24,"bounds":{"left":0.024079459,"top":0.5696678,"width":0.07848837,"height":0.012020973}}],"value":"* Daily Operations\n• Weekly prep\n• Renewals and Upsell\nRisk and Churn Analytics","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"目","depth":2,"bounds":{"left":0.008091086,"top":0.6255072,"width":0.00872093,"height":0.013959839},"on_screen":true,"value":"目","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Implementation\nImpl Projects\nTrial Opps (Under Review)\nStoyan's clients","depth":2,"bounds":{"left":0.02262597,"top":0.6045674,"width":0.074127905,"height":0.07677912},"on_screen":true,"lines":[{"char_start":0,"char_count":15,"bounds":{"left":0.02262597,"top":0.6045674,"width":0.05232558,"height":0.011633199}},{"char_start":15,"char_count":14,"bounds":{"left":0.02262597,"top":0.62549645,"width":0.037790697,"height":0.014304527}},{"char_start":29,"char_count":26,"bounds":{"left":0.02262597,"top":0.64605916,"width":0.074127905,"height":0.014347613}},{"char_start":55,"char_count":16,"bounds":{"left":0.02262597,"top":0.669304,"width":0.04505814,"height":0.012042515}}],"value":"Implementation\nImpl Projects\nTrial Opps (Under Review)\nStoyan's clients","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Leadership","depth":2,"bounds":{"left":0.02262597,"top":0.704613,"width":0.040697675,"height":0.011633199},"on_screen":true,"value":"Leadership","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"• System Reports\nLeadership Operations\nPortfolio Overview (Dashbo….\nNPS Report - Greg\nClient Engagement Overview\nRevenue Analytics","depth":2,"bounds":{"left":0.02262597,"top":0.72787935,"width":0.08284883,"height":0.11665514},"on_screen":true,"lines":[{"char_start":0,"char_count":17,"bounds":{"left":0.024079457,"top":0.72787935,"width":0.05232558,"height":0.012053288}},{"char_start":17,"char_count":22,"bounds":{"left":0.022625972,"top":0.7488191,"width":0.06540697,"height":0.011676285}},{"char_start":39,"char_count":29,"bounds":{"left":0.022625973,"top":0.7694357,"width":0.08284883,"height":0.011956344}},{"char_start":68,"char_count":18,"bounds":{"left":0.02262597,"top":0.79069865,"width":0.05232558,"height":0.011816314}},{"char_start":86,"char_count":27,"bounds":{"left":0.022625972,"top":0.81145525,"width":0.08139534,"height":0.011816314}},{"char_start":113,"char_count":17,"bounds":{"left":0.02262597,"top":0.8325781,"width":0.05232558,"height":0.011956344}}],"value":"• System Reports\nLeadership Operations\nPortfolio Overview (Dashbo….\nNPS Report - Greg\nClient Engagement Overview\nRevenue Analytics","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jiminny - Calenda...\nM\nGMail","depth":2,"bounds":{"left":0.14907946,"top":0.20438537,"width":0.111918606,"height":0.011643971},"on_screen":true,"value":"Jiminny - Calenda...\nM\nGMail","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"My Calendly - Eve...","depth":2,"bounds":{"left":0.2813469,"top":0.20438537,"width":0.06686046,"height":0.011643971},"on_screen":true,"value":"My Calendly - Eve...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"8 Metric ~","depth":2,"bounds":{"left":0.13302368,"top":0.26908678,"width":0.03501855,"height":0.014848864},"on_screen":true,"value":"8 Metric ~","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"@ Dataset","depth":2,"bounds":{"left":0.18396318,"top":0.26953128,"width":0.03197674,"height":0.011762457},"on_screen":true,"value":"@ Dataset","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"CUPEAYBACN","depth":2,"bounds":{"left":0.13309108,"top":0.30443087,"width":0.037790697,"height":0.007259978},"on_screen":true,"value":"CUPEAYBACN","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+ Metric","depth":2,"bounds":{"left":0.24789931,"top":0.3019978,"width":0.02765101,"height":0.011846064},"on_screen":true,"value":"+ Metric","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Name","depth":2,"bounds":{"left":0.15053295,"top":0.33235055,"width":0.018895349,"height":0.009306559},"on_screen":true,"value":"Name","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Tyr","depth":2,"bounds":{"left":0.2813469,"top":0.3300239,"width":0.011627907,"height":0.013959839},"on_screen":true,"value":"Tyr","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Company","depth":2,"bounds":{"left":0.15489341,"top":0.36027023,"width":0.037790693,"height":0.006979919},"on_screen":true,"value":"Company","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"• Playback AdoNlyn Avg","depth":2,"bounds":{"left":0.14617248,"top":0.3832135,"width":0.074127905,"height":0.016986625},"on_screen":true,"value":"• Playback AdoNlyn Avg","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Cal","depth":2,"bounds":{"left":0.2813469,"top":0.3881899,"width":0.010174419,"height":0.009306559},"on_screen":true,"value":"Cal","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"• Playback Adoption","depth":2,"bounds":{"left":0.14617248,"top":0.4161096,"width":0.0625,"height":0.011805543},"on_screen":true,"value":"• Playback Adoption","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Cal","depth":2,"bounds":{"left":0.2813469,"top":0.4161096,"width":0.010174419,"height":0.009306559},"on_screen":true,"value":"Cal","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"EndUser 4","depth":2,"bounds":{"left":0.1563469,"top":0.47172275,"width":0.03488372,"height":0.009834362},"on_screen":true,"value":"EndUser 4","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"JUsers Playback Adoption","depth":2,"bounds":{"left":0.15343992,"top":0.49943778,"width":0.07703488,"height":0.012064058},"on_screen":true,"value":"JUsers Playback Adoption","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Cal","depth":2,"bounds":{"left":0.2813469,"top":0.49986863,"width":0.010174418,"height":0.011633199},"on_screen":true,"value":"Cal","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Playback Adoption (Last 7 days)","depth":2,"bounds":{"left":0.15198644,"top":0.52778834,"width":0.093023255,"height":0.011880943},"on_screen":true,"value":"Playback Adoption (Last 7 days)","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Cal","depth":2,"bounds":{"left":0.2813469,"top":0.52778834,"width":0.010174418,"height":0.011633199},"on_screen":true,"value":"Cal","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"• Playback Adoption","depth":2,"bounds":{"left":0.14617248,"top":0.55803466,"width":0.062499996,"height":0.012031744},"on_screen":true,"value":"• Playback Adoption","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Cal","depth":2,"bounds":{"left":0.2813469,"top":0.555708,"width":0.011627907,"height":0.011633199},"on_screen":true,"value":"Cal","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"playbackVisited","depth":2,"bounds":{"left":0.15489341,"top":0.5859543,"width":0.046511628,"height":0.0116332},"on_screen":true,"value":"playbackVisited","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Usi","depth":2,"bounds":{"left":0.2813469,"top":0.5859543,"width":0.010174419,"height":0.009306559},"on_screen":true,"value":"Usi","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"= PH New Ul Login\nGet Starting with J...\n■ Apps","depth":2,"bounds":{"left":0.35983527,"top":0.20438537,"width":0.2005814,"height":0.011643971},"on_screen":true,"value":"= PH New Ul Login\nGet Starting with J...\n■ Apps","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Chloe Onboarding…..","depth":2,"bounds":{"left":0.58367246,"top":0.20438537,"width":0.06976744,"height":0.011643971},"on_screen":true,"value":"Chloe Onboarding…..","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Search Jiminny","depth":2,"bounds":{"left":0.30314922,"top":0.2392742,"width":0.04505814,"height":0.011643971},"on_screen":true,"value":"Search Jiminny","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Playback Adoption","depth":2,"bounds":{"left":0.31187016,"top":0.264878,"width":0.055232555,"height":0.011945572},"on_screen":true,"value":"Playback Adoption","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Reporting & Data models (Featured)","depth":2,"bounds":{"left":0.30024225,"top":0.30443087,"width":0.10029069,"height":0.013959839},"on_screen":true,"value":"Reporting & Data models (Featured)","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"calculated.67489a8c40ddfa5d5bf5aa4","depth":2,"bounds":{"left":0.41361433,"top":0.30443087,"width":0.11337209,"height":0.011633199},"on_screen":true,"value":"calculated.67489a8c40ddfa5d5bf5aa4","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Overview\nFormula\nLogs\nTrace","depth":2,"bounds":{"left":0.29878876,"top":0.33700386,"width":0.10319767,"height":0.011633199},"on_screen":true,"value":"Overview\nFormula\nLogs\nTrace","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"(\"type\": \"metricOverTime\", \"days\": 30, \"op\": \"SUM\", \"prop*: \"activities.playbackVisited*)","depth":2,"bounds":{"left":0.30314922,"top":0.39982313,"width":0.24418604,"height":0.011999429},"on_screen":true,"value":"(\"type\": \"metricOverTime\", \"days\": 30, \"op\": \"SUM\", \"prop*: \"activities.playbackVisited*)","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"• Read about how to construct a formula here","depth":2,"bounds":{"left":0.29878876,"top":0.4484779,"width":0.111918606,"height":0.011837858},"on_screen":true,"value":"• Read about how to construct a formula here","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Handle missing data as no value O","depth":2,"bounds":{"left":0.3191376,"top":0.47172275,"width":0.10319767,"height":0.014304527},"on_screen":true,"value":"Handle missing data as no value O","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Conditions","depth":2,"bounds":{"left":0.29878876,"top":0.5161551,"width":0.031976745,"height":0.011633199},"on_screen":true,"value":"Conditions","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+ Rule","depth":2,"bounds":{"left":0.30314922,"top":0.5486096,"width":0.024709301,"height":0.014304527},"on_screen":true,"value":"+ Rule","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"4 ®","depth":2,"bounds":{"left":0.7624515,"top":0.2392742,"width":0.020348838,"height":0.011643971},"on_screen":true,"value":"4 ®","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Petko","depth":2,"bounds":{"left":0.8191376,"top":0.23928496,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"Petko","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Save","depth":2,"bounds":{"left":0.7813469,"top":0.27185792,"width":0.015988372,"height":0.011633199},"on_screen":true,"value":"Save","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"7= Al Notes: Off","depth":2,"bounds":{"left":0.769719,"top":0.7068534,"width":0.056686044,"height":0.014304527},"on_screen":true,"value":"7= Al Notes: Off","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"•110","depth":2,"bounds":{"left":0.89617246,"top":0.62783384,"width":0.014534883,"height":0.011633199},"on_screen":true,"value":"•110","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Petko ..\nreen ...","depth":2,"bounds":{"left":0.8089632,"top":0.8507927,"width":0.031976745,"height":0.033079218},"on_screen":true,"lines":[{"char_start":0,"char_count":9,"bounds":{"left":0.8089632,"top":0.8507927,"width":0.029069766,"height":0.014358383}},{"char_start":9,"char_count":8,"bounds":{"left":0.8191376,"top":0.872131,"width":0.021802325,"height":0.011740915}}],"value":"Petko ..\nreen ...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"zoom","depth":2,"bounds":{"left":0.10111434,"top":0.89074415,"width":0.021802325,"height":0.009306559},"on_screen":true,"value":"zoom","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"田","depth":2,"bounds":{"left":0.17088178,"top":0.8860909,"width":0.014534883,"height":0.0232664},"on_screen":true,"value":"田","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"A","depth":2,"bounds":{"left":0.2711725,"top":0.8814376,"width":0.01744186,"height":0.027919678},"on_screen":true,"value":"A","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"&+","depth":2,"bounds":{"left":0.005184109,"top":0.95821667,"width":0.015988372,"height":0.023266397},"on_screen":true,"value":"&+","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"必","depth":2,"bounds":{"left":0.37291667,"top":0.95821667,"width":0.015988372,"height":0.020939758},"on_screen":true,"value":"必","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"t","depth":2,"bounds":{"left":0.5458818,"top":0.95821667,"width":0.015988372,"height":0.020939758},"on_screen":true,"value":"t","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"€","depth":2,"bounds":{"left":0.58367246,"top":0.95821667,"width":0.011627907,"height":0.020939758},"on_screen":true,"value":"€","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Leave","depth":2,"bounds":{"left":0.9499515,"top":0.96054333,"width":0.029069766,"height":0.01628648},"on_screen":true,"value":"Leave","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"02:17","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
-5152260836686975187
|
8678168974642649820
|
visual_change
|
accessibility
|
NULL
|
Petko Kashinski
Screen share
+
图
X
Chrome
File
Edi Petko Kashinski
Screen share
+
图
X
Chrome
File
Edit
View
History
Bookmarks
Profiles
Tab
Window
Help
分
⑦
*
8•
Mon 11 May 12:19
Work
Gree
Score
andre
@ wilso
Call A
Jimin
M Inbox
NX
ニ Apps
Build
u User
New
1 User
ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.67489a8c40ddfa05d5bf5aa4
Q
u
今
E Work
■ AIKB
ChatPlayground Al...
+ CX Journey SMB...
Jiminny ~
Content Explorer
Data Explorer
" Notifications
* Email Manager
More
Sections -
CS Day-to-day *
Getting started Guide
€ Just CS Data
田
H
* Daily Operations
• Weekly prep
• Renewals and Upsell
Risk and Churn Analytics
目
Implementation
Impl Projects
Trial Opps (Under Review)
Stoyan's clients
Leadership
• System Reports
Leadership Operations
Portfolio Overview (Dashbo….
NPS Report - Greg
Client Engagement Overview
Revenue Analytics
Jiminny - Calenda...
M
GMail
My Calendly - Eve...
8 Metric ~
@ Dataset
CUPEAYBACN
+ Metric
Name
Tyr
Company
• Playback AdoNlyn Avg
Cal
• Playback Adoption
Cal
EndUser 4
JUsers Playback Adoption
Cal
Playback Adoption (Last 7 days)
Cal
• Playback Adoption
Cal
playbackVisited
Usi
= PH New Ul Login
Get Starting with J...
■ Apps
Chloe Onboarding…..
Search Jiminny
Playback Adoption
Reporting & Data models (Featured)
calculated.67489a8c40ddfa5d5bf5aa4
Overview
Formula
Logs
Trace
("type": "metricOverTime", "days": 30, "op": "SUM", "prop*: "activities.playbackVisited*)
• Read about how to construct a formula here
Handle missing data as no value O
Conditions
+ Rule
4 ®
Petko
Save
7= Al Notes: Off
•110
Petko ..
reen ...
zoom
田
A
&+
必
t
€
Leave
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:17
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22882
|
978
|
4
|
2026-05-12T07:25:07.718975+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570707718_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
QuickTime PlayerFileEditViewWindowHelp(ablPetko Ka QuickTime PlayerFileEditViewWindowHelp(ablPetko KashinskiScreen shareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*GreetScoreandre• wilsoCall AJiminM Inbox=N=AppsCws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.67489a8c40ddfa05d5bf5aa4AIKBChatPlayground Al....AppsJiminny ~Content ExplorerData ExplorerNotificationsEmail ManagerMoreECS Day-to-day•Getting started Guide• Just CS Data* Daily Operations# Weekty prepRenewals and UpsellRisk and Churn AnalyticsImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsLeadershipSystem ReportsLeadership OperationsPortiolio Overview (Dashbo….NPS Report - GregClient Engagement OverviewRevenue AnalyticsJiminny - Calenda…M GMail• My Calendly - Eve....= PH New Ul LoginGet Starting with J...8 MetricB DatasetPlayback AdoptionQ PLAYBACK+ MetricReporting & Data modeis (Featured)calculated.67489a8c40ddfa05dSbf5aa4ТугOverviewFormulaLogsTrace- Company 2Formula• Playback AdonJan Avg("type*: "metricOverTime", "days*: 30, "op*: "SUM", "prop*: "activities.playbackVisited*)• Playback AdoptionCaEndUser© Read about how to conuct a formula beceHandle missing data as no value O• JUsers Playback AdoptionCalConditions• Playback Adoption (Last 7 days)Cal• Playback AdoptionCalplaybackVisitedj Support Daily - in 4h 35 m100% C8•Tue 12 May 10:25:07+ |%8• Mon 11 May 12:19@ Buildu User;§ New: | u User; | +WorkChloe Onboarding…+ CX Journey SMB....40 +E. Petko•1[8|Al Notes: OffPetko .reen ...ГА...Leave...
|
NULL
|
2067987649579549613
|
NULL
|
click
|
ocr
|
NULL
|
QuickTime PlayerFileEditViewWindowHelp(ablPetko Ka QuickTime PlayerFileEditViewWindowHelp(ablPetko KashinskiScreen shareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*GreetScoreandre• wilsoCall AJiminM Inbox=N=AppsCws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.67489a8c40ddfa05d5bf5aa4AIKBChatPlayground Al....AppsJiminny ~Content ExplorerData ExplorerNotificationsEmail ManagerMoreECS Day-to-day•Getting started Guide• Just CS Data* Daily Operations# Weekty prepRenewals and UpsellRisk and Churn AnalyticsImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsLeadershipSystem ReportsLeadership OperationsPortiolio Overview (Dashbo….NPS Report - GregClient Engagement OverviewRevenue AnalyticsJiminny - Calenda…M GMail• My Calendly - Eve....= PH New Ul LoginGet Starting with J...8 MetricB DatasetPlayback AdoptionQ PLAYBACK+ MetricReporting & Data modeis (Featured)calculated.67489a8c40ddfa05dSbf5aa4ТугOverviewFormulaLogsTrace- Company 2Formula• Playback AdonJan Avg("type*: "metricOverTime", "days*: 30, "op*: "SUM", "prop*: "activities.playbackVisited*)• Playback AdoptionCaEndUser© Read about how to conuct a formula beceHandle missing data as no value O• JUsers Playback AdoptionCalConditions• Playback Adoption (Last 7 days)Cal• Playback AdoptionCalplaybackVisitedj Support Daily - in 4h 35 m100% C8•Tue 12 May 10:25:07+ |%8• Mon 11 May 12:19@ Buildu User;§ New: | u User; | +WorkChloe Onboarding…+ CX Journey SMB....40 +E. Petko•1[8|Al Notes: OffPetko .reen ...ГА...Leave...
|
22880
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22883
|
978
|
5
|
2026-05-12T07:25:10.077409+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570710077_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Petko Kashinski
Screen share
+
图
X
Chrome
File
Edi Petko Kashinski
Screen share
+
图
X
Chrome
File
Edit
View
History
Bookmarks
Profiles
Tab
Window
Help
分
⑦
*
8•
Mon 11 May 12:19
Work
Gree
Score
andre
@ wilso
Call A
Jimin
M Inbox
NX
ニ Apps
Build
u User
New
1 User
ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.67489a8c40ddfa05d5bf5aa4
Q
u
今
E Work
■ AIKB
ChatPlayground Al...
+ CX Journey SMB...
Jiminny ~
Content Explorer
Data Explorer
" Notifications
* Email Manager
More
Sections -
CS Day-to-day *
Getting started Guide
€ Just CS Data
田
H
* Daily Operations
• Weekly prep
• Renewals and Upsell
Risk and Churn Analytics...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Petko Kashinski\nScreen share","depth":2,"bounds":{"left":0.0022771326,"top":0.039010823,"width":0.07848837,"height":0.037549384},"on_screen":true,"lines":[{"char_start":0,"char_count":16,"bounds":{"left":0.0022771326,"top":0.039010823,"width":0.07848837,"height":0.016469594}},{"char_start":16,"char_count":12,"bounds":{"left":0.0022771326,"top":0.062255677,"width":0.05377907,"height":0.014304527}}],"value":"Petko Kashinski\nScreen share","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+","depth":2,"bounds":{"left":0.772626,"top":0.048500497,"width":0.013081395,"height":0.020939758},"on_screen":true,"value":"+","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"图","depth":2,"bounds":{"left":0.829312,"top":0.048500497,"width":0.013081395,"height":0.018613119},"on_screen":true,"value":"图","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"X","depth":2,"bounds":{"left":0.8569283,"top":0.048500497,"width":0.011627907,"height":0.018613119},"on_screen":true,"value":"X","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Chrome","depth":2,"bounds":{"left":0.028439922,"top":0.095033295,"width":0.031976745,"height":0.011633199},"on_screen":true,"value":"Chrome","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"File\nEdit","depth":2,"bounds":{"left":0.070591085,"top":0.095033295,"width":0.040697675,"height":0.0116332},"on_screen":true,"value":"File\nEdit","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"View","depth":2,"bounds":{"left":0.12146318,"top":0.095033295,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"View","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"History","depth":2,"bounds":{"left":0.15053295,"top":0.095033295,"width":0.02761628,"height":0.013959839},"on_screen":true,"value":"History","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Bookmarks","depth":2,"bounds":{"left":0.18832365,"top":0.095033295,"width":0.04215116,"height":0.011633199},"on_screen":true,"value":"Bookmarks","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Profiles","depth":2,"bounds":{"left":0.24064922,"top":0.095033295,"width":0.029069766,"height":0.011633199},"on_screen":true,"value":"Profiles","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Tab","depth":2,"bounds":{"left":0.2784399,"top":0.095033295,"width":0.014534883,"height":0.011633199},"on_screen":true,"value":"Tab","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Window","depth":2,"bounds":{"left":0.30314922,"top":0.095033295,"width":0.030523255,"height":0.011633199},"on_screen":true,"value":"Window","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Help","depth":2,"bounds":{"left":0.3438469,"top":0.095033295,"width":0.018895349,"height":0.013959839},"on_screen":true,"value":"Help","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"分","depth":2,"bounds":{"left":0.52407944,"top":0.09270666,"width":0.010174419,"height":0.018613119},"on_screen":true,"value":"分","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"⑦","depth":2,"bounds":{"left":0.5429748,"top":0.09270666,"width":0.010174419,"height":0.018613119},"on_screen":true,"value":"⑦","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"*","depth":2,"bounds":{"left":0.582219,"top":0.09270666,"width":0.0072674416,"height":0.01628648},"on_screen":true,"value":"*","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"8•\nMon 11 May 12:19","depth":2,"bounds":{"left":0.74210274,"top":0.0926528,"width":0.093023255,"height":0.016340336},"on_screen":true,"value":"8•\nMon 11 May 12:19","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Work","depth":2,"bounds":{"left":0.12437016,"top":0.12760626,"width":0.020348838,"height":0.0116332},"on_screen":true,"value":"Work","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Gree","depth":2,"bounds":{"left":0.19849806,"top":0.1299329,"width":0.01744186,"height":0.006979919},"on_screen":true,"value":"Gree","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Score","depth":2,"bounds":{"left":0.24500969,"top":0.12760626,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"Score","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"andre","depth":2,"bounds":{"left":0.29006782,"top":0.12760626,"width":0.020348838,"height":0.011633199},"on_screen":true,"value":"andre","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"@ wilso","depth":2,"bounds":{"left":0.32204458,"top":0.12483798,"width":0.03343023,"height":0.016986625},"on_screen":true,"value":"@ wilso","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Call A","depth":2,"bounds":{"left":0.3816376,"top":0.12752008,"width":0.021802325,"height":0.011719371},"on_screen":true,"value":"Call A","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jimin","depth":2,"bounds":{"left":0.42814922,"top":0.12760626,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"Jimin","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"M Inbox","depth":2,"bounds":{"left":0.46303293,"top":0.12752008,"width":0.030523255,"height":0.011719371},"on_screen":true,"value":"M Inbox","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"NX","depth":2,"bounds":{"left":0.52138036,"top":0.12752008,"width":0.017233986,"height":0.011719371},"on_screen":true,"value":"NX","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ニ Apps","depth":2,"bounds":{"left":0.5531492,"top":0.12752008,"width":0.03197674,"height":0.014304527},"on_screen":true,"value":"ニ Apps","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Build","depth":2,"bounds":{"left":0.6112888,"top":0.12760626,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"Build","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"u User","depth":2,"bounds":{"left":0.644719,"top":0.12752008,"width":0.03343023,"height":0.011719371},"on_screen":true,"value":"u User","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"New","depth":2,"bounds":{"left":0.70140505,"top":0.12760626,"width":0.020348836,"height":0.011633199},"on_screen":true,"value":"New","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"1 User","depth":2,"bounds":{"left":0.7362888,"top":0.1299329,"width":0.030523254,"height":0.0074215503},"on_screen":true,"value":"1 User","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.67489a8c40ddfa05d5bf5aa4","depth":2,"bounds":{"left":0.08948644,"top":0.16715913,"width":0.45639533,"height":0.01628648},"on_screen":true,"value":"ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.67489a8c40ddfa05d5bf5aa4","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Q","depth":2,"bounds":{"left":0.5691376,"top":0.16715913,"width":0.010174418,"height":0.013959839},"on_screen":true,"value":"Q","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"u","depth":2,"bounds":{"left":0.61710274,"top":0.16715913,"width":0.010174418,"height":0.013959839},"on_screen":true,"value":"u","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"今","depth":2,"bounds":{"left":0.7217539,"top":0.16715913,"width":0.010174419,"height":0.018613119},"on_screen":true,"value":"今","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"E Work","depth":2,"bounds":{"left":0.7798934,"top":0.16685753,"width":0.031976745,"height":0.014304527},"on_screen":true,"value":"E Work","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"■ AIKB","depth":2,"bounds":{"left":0.006637598,"top":0.20438537,"width":0.030523255,"height":0.01164397},"on_screen":true,"value":"■ AIKB","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ChatPlayground Al...","depth":2,"bounds":{"left":0.05896318,"top":0.20438537,"width":0.06831395,"height":0.011643971},"on_screen":true,"value":"ChatPlayground Al...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+ CX Journey SMB...","depth":2,"bounds":{"left":0.66070735,"top":0.20172481,"width":0.075581394,"height":0.016986625},"on_screen":true,"value":"+ CX Journey SMB...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jiminny ~","depth":2,"bounds":{"left":0.018265504,"top":0.2392742,"width":0.030523255,"height":0.011643971},"on_screen":true,"value":"Jiminny ~","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Content Explorer","depth":2,"bounds":{"left":0.019718995,"top":0.27145937,"width":0.049418602,"height":0.012031744},"on_screen":true,"value":"Content Explorer","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Data Explorer","depth":2,"bounds":{"left":0.019718992,"top":0.3160641,"width":0.039244186,"height":0.011719371},"on_screen":true,"value":"Data Explorer","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"\" Notifications","depth":2,"bounds":{"left":0.008091087,"top":0.3393305,"width":0.049418602,"height":0.011697828},"on_screen":true,"value":"\" Notifications","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"* Email Manager\nMore","depth":2,"bounds":{"left":0.008091086,"top":0.36259687,"width":0.05523256,"height":0.03257296},"on_screen":true,"lines":[{"char_start":0,"char_count":16,"bounds":{"left":0.008091086,"top":0.36259687,"width":0.05523256,"height":0.011676285}},{"char_start":16,"char_count":4,"bounds":{"left":0.016812015,"top":0.38353664,"width":0.020348836,"height":0.011633199}}],"value":"* Email Manager\nMore","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Sections -","depth":2,"bounds":{"left":0.0066376,"top":0.41808078,"width":0.029069765,"height":0.007335378},"on_screen":true,"value":"Sections -","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"CS Day-to-day *\nGetting started Guide\n€ Just CS Data","depth":2,"bounds":{"left":0.02262597,"top":0.439376,"width":0.06831395,"height":0.055839356},"on_screen":true,"lines":[{"char_start":0,"char_count":16,"bounds":{"left":0.022625972,"top":0.439376,"width":0.05087209,"height":0.013959839}},{"char_start":16,"char_count":22,"bounds":{"left":0.02262597,"top":0.4626424,"width":0.06831395,"height":0.013959839}},{"char_start":38,"char_count":14,"bounds":{"left":0.024079459,"top":0.48334518,"width":0.04505814,"height":0.011870172}}],"value":"CS Day-to-day *\nGetting started Guide\n€ Just CS Data","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"田\nH","depth":2,"bounds":{"left":0.008091086,"top":0.54640144,"width":0.00872093,"height":0.0348996},"on_screen":true,"lines":[{"char_start":0,"char_count":2,"bounds":{"left":0.008091086,"top":0.54640144,"width":0.00872093,"height":0.013959839}},{"char_start":2,"char_count":1,"bounds":{"left":0.008091086,"top":0.5673412,"width":0.0072674416,"height":0.013959839}}],"value":"田\nH","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"* Daily Operations\n• Weekly prep\n• Renewals and Upsell\nRisk and Churn Analytics","depth":2,"bounds":{"left":0.024079457,"top":0.50659007,"width":0.07848837,"height":0.07509877},"on_screen":true,"value":"* Daily Operations\n• Weekly prep\n• Renewals and Upsell\nRisk and Churn Analytics","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
4786133370137491107
|
8460040721300084305
|
click
|
accessibility
|
NULL
|
Petko Kashinski
Screen share
+
图
X
Chrome
File
Edi Petko Kashinski
Screen share
+
图
X
Chrome
File
Edit
View
History
Bookmarks
Profiles
Tab
Window
Help
分
⑦
*
8•
Mon 11 May 12:19
Work
Gree
Score
andre
@ wilso
Call A
Jimin
M Inbox
NX
ニ Apps
Build
u User
New
1 User
ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.67489a8c40ddfa05d5bf5aa4
Q
u
今
E Work
■ AIKB
ChatPlayground Al...
+ CX Journey SMB...
Jiminny ~
Content Explorer
Data Explorer
" Notifications
* Email Manager
More
Sections -
CS Day-to-day *
Getting started Guide
€ Just CS Data
田
H
* Daily Operations
• Weekly prep
• Renewals and Upsell
Risk and Churn Analytics...
|
NULL
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22885
|
978
|
6
|
2026-05-12T07:25:13.515447+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570713515_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:21
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"02:21","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
4476437080646392899
|
5922001327124908662
|
visual_change
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:21
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(ablj Support Daily - in 4h 35 mA100% (8•Tue 12 May 10:25:13• PLanhat Petko interest event 2026-05-11.mp4Screen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*Q8• Mon 11 May 12:19Gree!Scoreandre• wilsoCall AJiminM Inbox=N=AppsBuildu Usery§ New: | u User; | +Cws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.67489a8c40ddfa05d5bf5aa4WorkAIKB• ChatPlayground Al...Apps+ CX Journey SMB....Jiminny ~Content ExplorerData ExplorerNotificationsEmail Manager•** MoreSections +ECS Day-to-day•Getting started GuideJust CS Data* Daily Operations# Weekly prepRenewals and UpsellRisk and Churn AnalyticsImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsLeadershipSystem ReportsLeadership OperationsPortfolio Overview (Dashbo….NPS Report - GregClient Engagement OverviewRevenue AnalyticsJiminny - Calenda…M GMail• My Calendly - Eve....= PH New Ul LoginGet Starting with J...Chloe Onboarding..8 MetricB DatasetPlayback AdoptionQ, PLAYBACK+ MetricReporting & Data modeis (Featured)calculated.67489a8c40ddfa05dSbf5aa4ТугOvervisLogsTrace- Company 2• Playback Adoption Avg• Metric is rebullding• Playback AdoptionFiter by CompanyEndUser• JUsers Playback AdoptionCal• Playback Adoption (Last 7 days)• Playback AdoptionMetric data loadingCalplaybackVisitedUsas aacross companiesNo groups found+ Show full listAdd a comment40 +E. Petko6 Feb 11, 2026 - May 10, 2026$= Al Notes: OffPetko ...reen .702:2104:55ve...
|
22883
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22886
|
978
|
7
|
2026-05-12T07:25:16.543802+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570716543_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:23
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"02:23","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
-5700985346160073605
|
5926506031632616052
|
visual_change
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:23
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(ablj Support Daily - in 4h 35 m100% C8•Tue 12 May 10:25:16Petko KashinskiScreen share+ |%ChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*Q8• Mon 11 May 12:19GreetScoreandre• wilsoCall AJiminM Inbox=N=Apps@ Buildu User6 New: |u User; | +Cws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.67489a8c40ddfa05d5bf5aa4WorkAIKB• ChatPlayground Al...AppsChloe Onboarding…+ CX Journey SMB....Jiminny ~Content ExplorerData ExplorerNotificationsEmail Manager•** MoreECS Day-to-day•Getting started Guide• Just CS Data* Daily Operations# Weekty prepRenewals and UpsellRisk and Churn AnalyticsImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsLeadershipSystem ReportsLeadership OperationsPortiolio Overview (Dashbo….NPS Report - GregClient Engagement OverviewRevenue AnalyticsJiminny - Calenda…M GMail• My Calendly - Eve....= PH New Ul LoginGet Starting with J...E MetricB DatasetPlayback AdoptionQ PLAYBACK+ MetricReporting & Data modeis (Featured)calculated.67489a8c40ddfa05dSbf5aa4ТугOverviewTraceCompany 2• Playback Adoption Avg• Metric is rebullding.• Playback AdoptionCalFiter by CompanyEndUser• JUsers Playback AdoptionCal• Playback Adoption (Last 7 days)Cal• Playback AdoptionCalplaybackVisitedUsw6 2026w7 2024w8 2026w9 2024as aMINacross companiesNo groups found+ Show ful list40 +E. Petko6 Feb 11, 2026 - May 10, 2026Al Notes: OffPetko ...reen ...7ГАLeave...
|
NULL
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22887
|
978
|
8
|
2026-05-12T07:25:19.556159+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570719556_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:27
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"02:27","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
2349366445884867894
|
5922002426636536436
|
visual_change
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:27
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(ablj Support Daily - in 4h 35 m100% C8•Tue 12 May 10:25:19Petko KashinskiScreen share+ |%ChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*Q8• Mon 11 May 12:19GreetScoreandre• wilsoCall AJiminM Inbox=N=Apps@ Buildu User6 New: |u User; | +Cws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.67489a8c40ddfa05d5bf5aa4WorkAIKB• ChatPlayground Al...Jiminny - Calenda….M GMail• My Calendly - Eve....= PH New Ul LoginGet Starting with J...AppsChloe Onboarding…+ CX Journey SMB....Jiminny ~Search JiminnyContent ExplorerE MetricB DatasetQ PLAYBACK+ Metric6 пData ExplorerOverviewFormulaLogsTraceТутNotificationsEmail Manager•** More- Company 2• Playback Adoption Avg• Playback AdoptionECS Day-to-day•Getting started Guide• Just CS Data* Daily Operations# Weekty prepRenewals and UpsellRisk and Churn AnalyticsEndUser• JUsers Playback AdoptionCal• Playback Adoption (Last 7 days)• Playback AdoptionCalplaybackVisitedUsImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsLeadershipSystem ReportsLeadership OperationsPortiolio Overview (Dashbo…NPS Report - GregClient Engagement Overviewhttps://ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=Us.740 +E. PetkoAl Notes: OffPetko ...reen ...ГАLeave...
|
22886
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22888
|
978
|
9
|
2026-05-12T07:25:22.568601+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570722568_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:29
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"02:29","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
-2287282916297808158
|
6502957982491085428
|
visual_change
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:29
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(ablj Support Daily - in 4h 35 mA100% (8•Tue 12 May 10:25:22• PLanhat Petko interest event 2026-05-11.mp4Screen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*Q8• Mon 11 May 12:20Gree!Scoreandre• wilsoCall AJiminM Inbox=N X=AppsBuildu Usery§ New: | u User; | +Cws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5© WorkAIKB• ChatPlayground Al...Jiminny - Calenda….M GMail• My Calendly - Eve....= PH New Ul LoginGet Starting with J...AppsChloe Onboarding..+ CX Journey SMB....Jiminny ~Content Explorer8 MetricB DatasetplaybackVisitedQ, PLAYBACK+ Metric6 nactivities. playbackVisitedData ExplorerТугNotificationsOverviewTraceEmail Manager•** More- Company 2• Playback Adoption AvgSections -• Playback AdoptionplaybackVisitedECS Day-to-day•Getting started GuideJust CS Data* Daily Operations# Weekly prepRenewals and UpsellRisk and Churn AnalyticsEndUser• JUsers Playback AdoptionCal• Playback Adoption (Last 7 days)Cal• Playback AdoptionCalplaybackVisitedUsImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsw1 2026NQ 2026w3 2026LeadershipSystem ReportsLeadership OperationsPortfolio Overview (Dashbo….NPS Report - GregClient Engagement OverviewRevenue AnalyticsAdd a commentFiter by CompanyWS 2026W6 20267 2026WEEKSMINNo groups found+ Show fuh list40 +E. Petko6 Feb 11, 2026 - May 10, 2026w11 2026w13 2026Al Notes: OffPetko ...reen ...02:2904:55ve...
|
NULL
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22889
|
978
|
10
|
2026-05-12T07:25:25.573155+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570725573_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:30
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"02:30","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
-7534584168814084387
|
5920875427218066036
|
visual_change
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:30
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(ablj Support Daily - in 4h 35 m100% C8•Tue 12 May 10:25:25Petko KashinskiScreen share+ |%ChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*Q8• Mon 11 May 12:20GreetScoreandre• wilsoCall AJiminM Inbox=N=Apps@ Buildu User6 New: |u User; | +Cws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5WorkAIKB• ChatPlayground Al...Apps+ CX Journey SMB....Jiminny ~Content ExplorerData ExplorerNotificationsEmail Manager•** MoreECS Day-to-day•Getting started Guide• Just CS Data* Daily Operations# Weekty prepRenewals and UpsellRisk and Churn AnalyticsImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsLeadershipSystem ReportsLeadership OperationsPortiolio Overview (Dashbo…NPS Report - GregClient Engagement OverviewRevenue AnalyticsJiminny - Calenda….M GMail• My Calendly - Eve....= PH New Ul LoginGet Starting with J...Chloe Onboarding….E MetricB DatasetplaybackVisitedQ PLAYBACK+ Metric6 nactivities. playbackVisitedТугOverviewTracel- Company 2Fiter by Company• Playback Adoption Avg• Playback AdoptionplaybackVisitedw3 2026EndUser• JUsers Playback AdoptionCal• Playback Adoption (Last 7 days)Cal• Playback AdoptionCalplaybackVisitedUsw1 2026NQ 2026w3 2026WS 2026W6 2026WEEKSMINNo groups found+ Show fui listAdd a comment40 +E. Petko6 Feb 11, 2026 - May 10, 2026w11 2026Al Notes: OffPetko ...reen ...7Leave...
|
22888
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22891
|
978
|
11
|
2026-05-12T07:25:43.272393+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570743272_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:51
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"02:51","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
-4593062105372211874
|
5921993630442851060
|
click
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:51
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(ablj Support Daily - in 4h 35 mA100% (8•Tue 12 May 10:25:42• PLanhat Petko interest event 2026-05-11.mp4Screen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*8• Mon 11 May 12:20Gree!Scoreandre• wilsoCall AJiminM Inbox=N=AppsBuildu User;§ New: | u User; | +Cws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5© WorkAIKB• ChatPlayground Al...Jiminny - Calenda….M GMail• My Calendly - Eve....= PH New Ul LoginGet Starting with J...AppsChloe Onboarding..+ CX Journey SMB....Jiminny ~Content Explorer8 MetricB DatasetplaybackVisitedQ, PLAYBACK+ Metric6 nactivities. playbackVisitedData ExplorerТугNotificationsOverviewTraceEmail Manager•** MoreCompany 2Playback Adoption AvgSections -Playback AdoptionECS Day-to-day•Getting started Guide• Just CS Data* Daily Operations# Weekly prepRenewals and UpsellRisk and Churn AnalyticsEndUserJUsers Playback AdoptionCalPlayback Adoption (Last 7 days)CalPlayback AdoptionCalplaybackVisitedUsImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsw1.2026w3 2026LeadershipSystem ReportsLeadership OperationsPortfolio Overview (Dashbo….NPS Report - GregClient Engagement OverviewRevenue AnalyticsAdd a commentFiter by CompanyplaybackVisitedw9 202639K#7 2026W8 2026w10 2026WEEKSSUMNo groups foundE. Petko6 Feb 11, 2026 - May 10, 2026w11 2026w13 2026Al Notes: OffPetko ...reen .ГА02:5004:55ve...
|
NULL
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22893
|
978
|
12
|
2026-05-12T07:25:48.411259+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570748411_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Petko Kashinski
Screen share
Chrome
File
Edit
View Petko Kashinski
Screen share
Chrome
File
Edit
View
History
Bookmarks
Profiles
Tab
Window
Help
分
⑦
*
Work
Gree
Score
andre
@ wilso
Call A
Jimin
M Inbox
NX
ニ Apps
ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5
Q
■ AIKB
ChatPlayground Al...
M
GMail
Apps
Jiminny ~
Content Explorer
Data Explorer
' Notifications
* Email Manager
Sections -
CS Day-to-day *
Getting started Guide
€ Just CS Data
田
H
* Daily Operations
• Weekly prep
• Renewals and Upsell
Risk and Churn Analytics
目
Implementation
Impl Projects
Trial Opps (Under Review)
Stoyan's clients
Leadership
E
• System Reports
Leadership Operations
Portfolio Overview (Dashbo….
NPS Report - Greg
Client Engagement Overview
Revenue Analytics
Jiminny - Calenda...
My Calendly - Eve...
= PH New Ul Login
Get Starting with J...
Search Jiminny
8 Metric ~
@ Dataset
playbackVisited
Q PLAYBACK
+ Metric
activities.playbackVisited
Name
Tyr
Overview
Raw Data
Trace
Company 2
• Playback Adoption Avg
Cal
Metrics
• Playback Adoption
EndUser 4
JUsers Playback Adoption
Cal
Playback Adoption (Last 7 days)
• Playback Adoption
Cal
playbackVisited
Usi
Comments
Add a comment
WEEKS
as a
SUM
No groups found
+ Show full list
の
Build
u User
New
u
Chloe Onboarding...
+ CX Journey SMB...
+
8•
Mon 11 May 12:20
User
E Work
4
Petko
X
Filter by Company
Feb 11, 2026 - May 10, 2026
playbackvisted
w9 2026
39K...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Petko Kashinski\nScreen share","depth":2,"bounds":{"left":0.0022771326,"top":0.039010823,"width":0.07848837,"height":0.037549384},"on_screen":true,"lines":[{"char_start":0,"char_count":16,"bounds":{"left":0.0022771326,"top":0.039010823,"width":0.07848837,"height":0.016469594}},{"char_start":16,"char_count":12,"bounds":{"left":0.0022771326,"top":0.062255677,"width":0.05377907,"height":0.014304527}}],"value":"Petko Kashinski\nScreen share","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Chrome","depth":2,"bounds":{"left":0.028439922,"top":0.095033295,"width":0.031976745,"height":0.011633199},"on_screen":true,"value":"Chrome","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"File","depth":2,"bounds":{"left":0.070591085,"top":0.095033295,"width":0.014534883,"height":0.011633199},"on_screen":true,"value":"File","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Edit","depth":2,"bounds":{"left":0.09530039,"top":0.095033295,"width":0.015988372,"height":0.011633199},"on_screen":true,"value":"Edit","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"View","depth":2,"bounds":{"left":0.12146318,"top":0.095033295,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"View","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"History","depth":2,"bounds":{"left":0.15053295,"top":0.095033295,"width":0.02761628,"height":0.013959839},"on_screen":true,"value":"History","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Bookmarks","depth":2,"bounds":{"left":0.18832365,"top":0.095033295,"width":0.04215116,"height":0.011633199},"on_screen":true,"value":"Bookmarks","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Profiles","depth":2,"bounds":{"left":0.24064922,"top":0.095033295,"width":0.029069766,"height":0.011633199},"on_screen":true,"value":"Profiles","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Tab","depth":2,"bounds":{"left":0.2784399,"top":0.095033295,"width":0.014534883,"height":0.011633199},"on_screen":true,"value":"Tab","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Window","depth":2,"bounds":{"left":0.30314922,"top":0.095033295,"width":0.030523255,"height":0.011633199},"on_screen":true,"value":"Window","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Help","depth":2,"bounds":{"left":0.3438469,"top":0.095033295,"width":0.018895349,"height":0.013959839},"on_screen":true,"value":"Help","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"分","depth":2,"bounds":{"left":0.52407944,"top":0.09270666,"width":0.010174419,"height":0.018613119},"on_screen":true,"value":"分","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"⑦","depth":2,"bounds":{"left":0.5429748,"top":0.09270666,"width":0.010174419,"height":0.018613119},"on_screen":true,"value":"⑦","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"*","depth":2,"bounds":{"left":0.582219,"top":0.09270666,"width":0.0072674416,"height":0.01628648},"on_screen":true,"value":"*","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Work","depth":2,"bounds":{"left":0.12437016,"top":0.12760626,"width":0.020348838,"height":0.0116332},"on_screen":true,"value":"Work","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Gree","depth":2,"bounds":{"left":0.19849806,"top":0.1299329,"width":0.01744186,"height":0.006979919},"on_screen":true,"value":"Gree","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Score","depth":2,"bounds":{"left":0.24500969,"top":0.12760626,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"Score","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"andre","depth":2,"bounds":{"left":0.29006782,"top":0.12760626,"width":0.020348838,"height":0.011633199},"on_screen":true,"value":"andre","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"@ wilso","depth":2,"bounds":{"left":0.32204458,"top":0.12483798,"width":0.03343023,"height":0.016986625},"on_screen":true,"value":"@ wilso","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Call A","depth":2,"bounds":{"left":0.3816376,"top":0.12752008,"width":0.021802325,"height":0.011719371},"on_screen":true,"value":"Call A","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jimin","depth":2,"bounds":{"left":0.42814922,"top":0.12760626,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"Jimin","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"M Inbox","depth":2,"bounds":{"left":0.46303296,"top":0.12752008,"width":0.030523255,"height":0.011719371},"on_screen":true,"value":"M Inbox","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"NX","depth":2,"bounds":{"left":0.52138036,"top":0.12752008,"width":0.017233986,"height":0.011719371},"on_screen":true,"value":"NX","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ニ Apps","depth":2,"bounds":{"left":0.5531492,"top":0.12752008,"width":0.03197674,"height":0.014304527},"on_screen":true,"value":"ニ Apps","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5","depth":2,"bounds":{"left":0.08948644,"top":0.16715913,"width":0.4593023,"height":0.01628648},"on_screen":true,"value":"ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Q","depth":2,"bounds":{"left":0.5691376,"top":0.16715913,"width":0.010174418,"height":0.013959839},"on_screen":true,"value":"Q","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"■ AIKB","depth":2,"bounds":{"left":0.006637598,"top":0.20438537,"width":0.030523255,"height":0.01164397},"on_screen":true,"value":"■ AIKB","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ChatPlayground Al...","depth":2,"bounds":{"left":0.05896318,"top":0.20438537,"width":0.06831395,"height":0.011643971},"on_screen":true,"value":"ChatPlayground Al...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"M\nGMail","depth":2,"bounds":{"left":0.22756784,"top":0.20438537,"width":0.033430234,"height":0.0116332},"on_screen":true,"value":"M\nGMail","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Apps","depth":2,"bounds":{"left":0.54006785,"top":0.20438537,"width":0.020348836,"height":0.011633199},"on_screen":true,"value":"Apps","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jiminny ~","depth":2,"bounds":{"left":0.018265504,"top":0.2392742,"width":0.030523255,"height":0.011643971},"on_screen":true,"value":"Jiminny ~","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Content Explorer","depth":2,"bounds":{"left":0.019718995,"top":0.27145937,"width":0.049418602,"height":0.012031744},"on_screen":true,"value":"Content Explorer","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Data Explorer","depth":2,"bounds":{"left":0.019718992,"top":0.3160641,"width":0.039244186,"height":0.011719371},"on_screen":true,"value":"Data Explorer","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"' Notifications","depth":2,"bounds":{"left":0.008091087,"top":0.3393305,"width":0.049418602,"height":0.011697828},"on_screen":true,"value":"' Notifications","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"* Email Manager","depth":2,"bounds":{"left":0.008091086,"top":0.36259687,"width":0.05523256,"height":0.011676285},"on_screen":true,"value":"* Email Manager","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Sections -","depth":2,"bounds":{"left":0.0066376,"top":0.41808078,"width":0.029069765,"height":0.007335378},"on_screen":true,"value":"Sections -","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"CS Day-to-day *\nGetting started Guide\n€ Just CS Data","depth":2,"bounds":{"left":0.02262597,"top":0.439376,"width":0.06976744,"height":0.055839356},"on_screen":true,"lines":[{"char_start":0,"char_count":16,"bounds":{"left":0.022625972,"top":0.439376,"width":0.05087209,"height":0.013959839}},{"char_start":16,"char_count":22,"bounds":{"left":0.02262597,"top":0.4626424,"width":0.06976744,"height":0.013959839}},{"char_start":38,"char_count":14,"bounds":{"left":0.024079459,"top":0.48334518,"width":0.04505814,"height":0.011870172}}],"value":"CS Day-to-day *\nGetting started Guide\n€ Just CS Data","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"田\nH","depth":2,"bounds":{"left":0.008091086,"top":0.54640144,"width":0.00872093,"height":0.0348996},"on_screen":true,"lines":[{"char_start":0,"char_count":2,"bounds":{"left":0.008091086,"top":0.54640144,"width":0.00872093,"height":0.013959839}},{"char_start":2,"char_count":1,"bounds":{"left":0.008091086,"top":0.5673412,"width":0.0072674416,"height":0.013959839}}],"value":"田\nH","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"* Daily Operations\n• Weekly prep\n• Renewals and Upsell\nRisk and Churn Analytics","depth":2,"bounds":{"left":0.024079455,"top":0.50659007,"width":0.07848837,"height":0.07509877},"on_screen":true,"lines":[{"char_start":0,"char_count":19,"bounds":{"left":0.02407946,"top":0.50659007,"width":0.055232555,"height":0.011891715}},{"char_start":19,"char_count":14,"bounds":{"left":0.024079457,"top":0.52536476,"width":0.04360465,"height":0.014304527}},{"char_start":33,"char_count":22,"bounds":{"left":0.024079455,"top":0.5486096,"width":0.06540698,"height":0.011751685}},{"char_start":55,"char_count":24,"bounds":{"left":0.024079459,"top":0.5696678,"width":0.07848837,"height":0.012020973}}],"value":"* Daily Operations\n• Weekly prep\n• Renewals and Upsell\nRisk and Churn Analytics","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"目","depth":2,"bounds":{"left":0.008091086,"top":0.6255072,"width":0.00872093,"height":0.013959839},"on_screen":true,"value":"目","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Implementation\nImpl Projects\nTrial Opps (Under Review)\nStoyan's clients","depth":2,"bounds":{"left":0.02262597,"top":0.6045674,"width":0.074127905,"height":0.07677912},"on_screen":true,"lines":[{"char_start":0,"char_count":15,"bounds":{"left":0.02262597,"top":0.6045674,"width":0.05232558,"height":0.011633199}},{"char_start":15,"char_count":14,"bounds":{"left":0.02262597,"top":0.62549645,"width":0.037790697,"height":0.014304527}},{"char_start":29,"char_count":26,"bounds":{"left":0.02262597,"top":0.64605916,"width":0.074127905,"height":0.014347613}},{"char_start":55,"char_count":16,"bounds":{"left":0.02262597,"top":0.669304,"width":0.04505814,"height":0.012042515}}],"value":"Implementation\nImpl Projects\nTrial Opps (Under Review)\nStoyan's clients","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Leadership","depth":2,"bounds":{"left":0.02262597,"top":0.704613,"width":0.040697675,"height":0.011633199},"on_screen":true,"value":"Leadership","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"E","depth":2,"bounds":{"left":0.008091086,"top":0.74649245,"width":0.0072674416,"height":0.013959839},"on_screen":true,"value":"E","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"• System Reports\nLeadership Operations\nPortfolio Overview (Dashbo….\nNPS Report - Greg\nClient Engagement Overview\nRevenue Analytics","depth":2,"bounds":{"left":0.02262597,"top":0.72787935,"width":0.08284883,"height":0.11665514},"on_screen":true,"lines":[{"char_start":0,"char_count":17,"bounds":{"left":0.024079457,"top":0.72787935,"width":0.05232558,"height":0.012053288}},{"char_start":17,"char_count":22,"bounds":{"left":0.022625972,"top":0.7488191,"width":0.06540697,"height":0.011676285}},{"char_start":39,"char_count":29,"bounds":{"left":0.022625973,"top":0.7694357,"width":0.08284883,"height":0.011956344}},{"char_start":68,"char_count":18,"bounds":{"left":0.02262597,"top":0.79069865,"width":0.05232558,"height":0.011816314}},{"char_start":86,"char_count":27,"bounds":{"left":0.022625972,"top":0.81145525,"width":0.08139534,"height":0.011816314}},{"char_start":113,"char_count":17,"bounds":{"left":0.02262597,"top":0.8325781,"width":0.05232558,"height":0.011956344}}],"value":"• System Reports\nLeadership Operations\nPortfolio Overview (Dashbo….\nNPS Report - Greg\nClient Engagement Overview\nRevenue Analytics","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jiminny - Calenda...","depth":2,"bounds":{"left":0.14907946,"top":0.20438537,"width":0.06686046,"height":0.011643971},"on_screen":true,"value":"Jiminny - Calenda...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"My Calendly - Eve...","depth":2,"bounds":{"left":0.2813469,"top":0.20438537,"width":0.06686046,"height":0.011643971},"on_screen":true,"value":"My Calendly - Eve...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"= PH New Ul Login","depth":2,"bounds":{"left":0.35983527,"top":0.20438537,"width":0.06976744,"height":0.011643971},"on_screen":true,"value":"= PH New Ul Login","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Get Starting with J...","depth":2,"bounds":{"left":0.44849807,"top":0.20438537,"width":0.06976744,"height":0.011643971},"on_screen":true,"value":"Get Starting with J...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Search Jiminny","depth":2,"bounds":{"left":0.30314922,"top":0.2392742,"width":0.04505814,"height":0.011643971},"on_screen":true,"value":"Search Jiminny","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"8 Metric ~","depth":2,"bounds":{"left":0.13302368,"top":0.26908678,"width":0.03501855,"height":0.014848864},"on_screen":true,"value":"8 Metric ~","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"@ Dataset","depth":2,"bounds":{"left":0.18396318,"top":0.26953128,"width":0.03197674,"height":0.011762457},"on_screen":true,"value":"@ Dataset","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"playbackVisited","depth":2,"bounds":{"left":0.31332365,"top":0.26720464,"width":0.046511628,"height":0.009306559},"on_screen":true,"value":"playbackVisited","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Q PLAYBACK","depth":2,"bounds":{"left":0.13309109,"top":0.3018565,"width":0.039244186,"height":0.011880944},"on_screen":true,"value":"Q PLAYBACK","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+ Metric","depth":2,"bounds":{"left":0.24789931,"top":0.3019978,"width":0.02765101,"height":0.011846064},"on_screen":true,"value":"+ Metric","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"activities.playbackVisited","depth":2,"bounds":{"left":0.29733527,"top":0.30443087,"width":0.07122093,"height":0.011633199},"on_screen":true,"value":"activities.playbackVisited","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Name","depth":2,"bounds":{"left":0.15053295,"top":0.33235055,"width":0.018895349,"height":0.009306559},"on_screen":true,"value":"Name","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Tyr","depth":2,"bounds":{"left":0.2813469,"top":0.3300239,"width":0.011627907,"height":0.013959839},"on_screen":true,"value":"Tyr","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Overview","depth":2,"bounds":{"left":0.29878876,"top":0.33700386,"width":0.029069766,"height":0.011633199},"on_screen":true,"value":"Overview","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Raw Data","depth":2,"bounds":{"left":0.332219,"top":0.33672377,"width":0.029069766,"height":0.009834362},"on_screen":true,"value":"Raw Data","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Trace","depth":2,"bounds":{"left":0.3671027,"top":0.33700386,"width":0.01744186,"height":0.009306559},"on_screen":true,"value":"Trace","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Company 2","depth":2,"bounds":{"left":0.15489341,"top":0.3579436,"width":0.039244186,"height":0.013959839},"on_screen":true,"value":"Company 2","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"• Playback Adoption Avg","depth":2,"bounds":{"left":0.14617248,"top":0.3881899,"width":0.074127905,"height":0.012010201},"on_screen":true,"value":"• Playback Adoption Avg","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Cal","depth":2,"bounds":{"left":0.2813469,"top":0.3881899,"width":0.010174419,"height":0.009306559},"on_screen":true,"value":"Cal","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Metrics","depth":2,"bounds":{"left":0.29878876,"top":0.37888336,"width":0.021802325,"height":0.009306559},"on_screen":true,"value":"Metrics","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"• Playback Adoption","depth":2,"bounds":{"left":0.14617248,"top":0.4161096,"width":0.0625,"height":0.011805543},"on_screen":true,"value":"• Playback Adoption","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"EndUser 4","depth":2,"bounds":{"left":0.15489341,"top":0.47172275,"width":0.036337208,"height":0.009834362},"on_screen":true,"value":"EndUser 4","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"JUsers Playback Adoption","depth":2,"bounds":{"left":0.15489341,"top":0.49943778,"width":0.075581394,"height":0.012064058},"on_screen":true,"value":"JUsers Playback Adoption","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Cal","depth":2,"bounds":{"left":0.2813469,"top":0.49986863,"width":0.010174418,"height":0.011633199},"on_screen":true,"value":"Cal","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Playback Adoption (Last 7 days)","depth":2,"bounds":{"left":0.15343992,"top":0.52778834,"width":0.09156977,"height":0.013959839},"on_screen":true,"value":"Playback Adoption (Last 7 days)","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"• Playback Adoption","depth":2,"bounds":{"left":0.14617248,"top":0.55803466,"width":0.0625,"height":0.012031744},"on_screen":true,"value":"• Playback Adoption","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Cal","depth":2,"bounds":{"left":0.2813469,"top":0.555708,"width":0.011627907,"height":0.011633199},"on_screen":true,"value":"Cal","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"playbackVisited","depth":2,"bounds":{"left":0.15489341,"top":0.5859543,"width":0.046511628,"height":0.0116332},"on_screen":true,"value":"playbackVisited","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Usi","depth":2,"bounds":{"left":0.2813469,"top":0.5859543,"width":0.010174419,"height":0.009306559},"on_screen":true,"value":"Usi","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Comments","depth":2,"bounds":{"left":0.29878876,"top":0.77906543,"width":0.030523255,"height":0.011633199},"on_screen":true,"value":"Comments","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Add a comment","depth":2,"bounds":{"left":0.3046027,"top":0.813965,"width":0.04505814,"height":0.011794772},"on_screen":true,"value":"Add a comment","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"WEEKS","depth":2,"bounds":{"left":0.5037306,"top":0.6511002,"width":0.029069766,"height":0.011633199},"on_screen":true,"value":"WEEKS","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"as a","depth":2,"bounds":{"left":0.54006785,"top":0.6511002,"width":0.014534883,"height":0.011945572},"on_screen":true,"value":"as a","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SUM","depth":2,"bounds":{"left":0.5589632,"top":0.6511002,"width":0.023255814,"height":0.011633199},"on_screen":true,"value":"SUM","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"No groups found","depth":2,"bounds":{"left":0.5415213,"top":0.7022863,"width":0.047965117,"height":0.011719371},"on_screen":true,"value":"No groups found","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+ Show full list","depth":2,"bounds":{"left":0.5444283,"top":0.7371859,"width":0.04505814,"height":0.011687057},"on_screen":true,"value":"+ Show full list","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"の","depth":2,"bounds":{"left":0.6999515,"top":0.095033295,"width":0.010174419,"height":0.011633199},"on_screen":true,"value":"の","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Build","depth":2,"bounds":{"left":0.6112888,"top":0.12760626,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"Build","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"u User","depth":2,"bounds":{"left":0.6446729,"top":0.12725712,"width":0.033522442,"height":0.0123314615},"on_screen":true,"value":"u User","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"New","depth":2,"bounds":{"left":0.7028585,"top":0.12760626,"width":0.01744186,"height":0.011633199},"on_screen":true,"value":"New","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"u","depth":2,"bounds":{"left":0.6156492,"top":0.16715913,"width":0.011627907,"height":0.01628648},"on_screen":true,"value":"u","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Chloe Onboarding...","depth":2,"bounds":{"left":0.58367246,"top":0.20438537,"width":0.06976744,"height":0.014326069},"on_screen":true,"value":"Chloe Onboarding...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+ CX Journey SMB...","depth":2,"bounds":{"left":0.66070735,"top":0.20172481,"width":0.075581394,"height":0.016986625},"on_screen":true,"value":"+ CX Journey SMB...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+","depth":2,"bounds":{"left":0.772626,"top":0.048500497,"width":0.013081395,"height":0.020939758},"on_screen":true,"value":"+","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"8•\nMon 11 May 12:20","depth":2,"bounds":{"left":0.74210274,"top":0.0926528,"width":0.093023255,"height":0.016340338},"on_screen":true,"value":"8•\nMon 11 May 12:20","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"User","depth":2,"bounds":{"left":0.7464632,"top":0.12760626,"width":0.021802325,"height":0.011633199},"on_screen":true,"value":"User","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"E Work","depth":2,"bounds":{"left":0.7798934,"top":0.16685753,"width":0.03197674,"height":0.014304527},"on_screen":true,"value":"E Work","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"4","depth":2,"bounds":{"left":0.7624515,"top":0.23928496,"width":0.010174418,"height":0.011633199},"on_screen":true,"value":"4","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Petko","depth":2,"bounds":{"left":0.8191376,"top":0.23928496,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"Petko","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"X","depth":2,"bounds":{"left":0.8569283,"top":0.048500497,"width":0.011627907,"height":0.018613119},"on_screen":true,"value":"X","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Filter by Company","depth":2,"bounds":{"left":0.59093994,"top":0.37874332,"width":0.05232558,"height":0.011773229},"on_screen":true,"value":"Filter by Company","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Feb 11, 2026 - May 10, 2026","depth":2,"bounds":{"left":0.73919576,"top":0.37655672,"width":0.0872093,"height":0.013959839},"on_screen":true,"value":"Feb 11, 2026 - May 10, 2026","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"playbackvisted\nw9 2026\n39K","depth":2,"bounds":{"left":0.6810562,"top":0.5091752,"width":0.04505814,"height":0.034899596},"on_screen":true,"lines":[{"char_start":0,"char_count":15,"bounds":{"left":0.6810562,"top":0.5091752,"width":0.04505814,"height":0.0069799195}},{"char_start":15,"char_count":8,"bounds":{"left":0.68250966,"top":0.5182125,"width":0.023255814,"height":0.011902486}},{"char_start":23,"char_count":3,"bounds":{"left":0.6810562,"top":0.5324416,"width":0.014534883,"height":0.011633199}}],"value":"playbackvisted\nw9 2026\n39K","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-9221382237651786268
|
8749940907319374673
|
click
|
accessibility
|
NULL
|
Petko Kashinski
Screen share
Chrome
File
Edit
View Petko Kashinski
Screen share
Chrome
File
Edit
View
History
Bookmarks
Profiles
Tab
Window
Help
分
⑦
*
Work
Gree
Score
andre
@ wilso
Call A
Jimin
M Inbox
NX
ニ Apps
ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5
Q
■ AIKB
ChatPlayground Al...
M
GMail
Apps
Jiminny ~
Content Explorer
Data Explorer
' Notifications
* Email Manager
Sections -
CS Day-to-day *
Getting started Guide
€ Just CS Data
田
H
* Daily Operations
• Weekly prep
• Renewals and Upsell
Risk and Churn Analytics
目
Implementation
Impl Projects
Trial Opps (Under Review)
Stoyan's clients
Leadership
E
• System Reports
Leadership Operations
Portfolio Overview (Dashbo….
NPS Report - Greg
Client Engagement Overview
Revenue Analytics
Jiminny - Calenda...
My Calendly - Eve...
= PH New Ul Login
Get Starting with J...
Search Jiminny
8 Metric ~
@ Dataset
playbackVisited
Q PLAYBACK
+ Metric
activities.playbackVisited
Name
Tyr
Overview
Raw Data
Trace
Company 2
• Playback Adoption Avg
Cal
Metrics
• Playback Adoption
EndUser 4
JUsers Playback Adoption
Cal
Playback Adoption (Last 7 days)
• Playback Adoption
Cal
playbackVisited
Usi
Comments
Add a comment
WEEKS
as a
SUM
No groups found
+ Show full list
の
Build
u User
New
u
Chloe Onboarding...
+ CX Journey SMB...
+
8•
Mon 11 May 12:20
User
E Work
4
Petko
X
Filter by Company
Feb 11, 2026 - May 10, 2026
playbackvisted
w9 2026
39K...
|
22891
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22895
|
978
|
13
|
2026-05-12T07:25:49.507674+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570749507_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:51
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"02:51","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
-4593062105372211874
|
5921993630442851060
|
click
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:51
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(ablj Support Daily - in 4h 35 mA100% (8•Tue 12 May 10:25:49• PLanhat Petko interest event 2026-05-11.mp4Screen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*8• Mon 11 May 12:20Gree!Scoreandre• wilsoCall AJiminM Inbox=N X=AppsBuildu User;6 New: |u User; | +Cws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5© WorkAIKB• ChatPlayground Al...Apps+ CX Journey SMB....Jiminny ~Content ExplorerData ExplorerNotificationsEmail Manager•** MoreSections -ECS Day-to-day•Getting started Guide• Just CS Data* Daily Operations# Weekly prepRenewals and UpsellRisk and Churn AnalyticsImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsLeadershipSystem ReportsLeadership OperationsPortfolio Overview (Dashbo….NPS Report - GregClient Engagement OverviewRevenue AnalyticsJiminny - Calenda…M GMail• My Calendly - Eve....= PH New Ul LoginGet Starting with J...Chloe Onboarding..E MetricB DatasetplaybackVisitedQ, PLAYBACK+ Metric6 nactivities. playbackVisitedТугOverviewTrace- Company 2Fiter by Company• Playback Adoption Avg• Playback AdoptionEndUser• JUsers Playback AdoptionCal• Playback Adoption (Last 7 days)Cal• Playback AdoptionCalplaybackVisitedUsw1.2026w3 2026WS 2026#7 2026W8 2026WEEKS vSUMNo groups foundAdd a commentw10 202640 +E. Petko6 Feb 11, 2026 - May 10, 2026playbackVisited40Kw11 2026w13 2026Al Notes: OffPetko ...reen .02:5104:55ve...
|
NULL
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22896
|
978
|
14
|
2026-05-12T07:25:50.633277+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570750633_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Petko Kashinski
Screen share
Chrome
File
Edit
View Petko Kashinski
Screen share
Chrome
File
Edit
View
History
Bookmarks
Profiles
Tab
Window
Help
分
⑦
*
Work
Gree
Score
andre
@ wilso
Call A
Jimin
M Inbox
NX
ニ Apps
ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5
Q
■ AIKB
ChatPlayground Al...
M
GMail
Apps
Jiminny
Content Explorer
Data Explorer
' Notifications
* Email Manager
Sections -
CS Day-to-day *
Getting started Guide
€ Just CS Data
田
H
* Daily Operations
• Weekly prep
• Renewals and Upsell
Risk and Churn Analytics
目
Implementation
Impl Projects
Trial Opps (Under Review)
Stoyan's clients
Leadership
E
• System Reports
Leadership Operations
Portfolio Overview (Dashbo….
NPS Report - Greg
Client Engagement Overview
Revenue Analytics
Jiminny - Calenda...
My Calendly - Eve...
= PH New Ul Login
Get Starting with J...
Search Jiminny
8 Metric ~
@ Dataset
playbackVisited
Q PLAYBACK
+ Metric
activities.playbackVisited
Name
Tyr
Overview
Raw Data
Trace
Company 2
Playback Adoption Avg
Cal
Metrics
• Playback Adoption
EndUser 4
JUsers Playback Adoption
Cal
Playback Adoption (Last 7 days)
• Playback Adoption
Cal
playbackVisited
Usi
Comments
Add a comment
WEEKS
as a
SUM
No groups found
+ Show full list
の
Build
u User
New
u
Chloe Onboarding...
+ CX Journey SMB...
+
8•
Mon 11 May 12:20
User
E Work...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Petko Kashinski\nScreen share","depth":2,"bounds":{"left":0.0022771326,"top":0.039010823,"width":0.07848837,"height":0.037549384},"on_screen":true,"lines":[{"char_start":0,"char_count":16,"bounds":{"left":0.0022771328,"top":0.039010823,"width":0.07848837,"height":0.016469594}},{"char_start":16,"char_count":12,"bounds":{"left":0.0022771326,"top":0.062255677,"width":0.05377907,"height":0.014304527}}],"value":"Petko Kashinski\nScreen share","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Chrome","depth":2,"bounds":{"left":0.028439922,"top":0.095033295,"width":0.031976745,"height":0.011633199},"on_screen":true,"value":"Chrome","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"File","depth":2,"bounds":{"left":0.070591085,"top":0.095033295,"width":0.014534883,"height":0.011633199},"on_screen":true,"value":"File","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Edit","depth":2,"bounds":{"left":0.09530039,"top":0.095033295,"width":0.015988372,"height":0.011633199},"on_screen":true,"value":"Edit","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"View","depth":2,"bounds":{"left":0.12146318,"top":0.095033295,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"View","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"History","depth":2,"bounds":{"left":0.15053295,"top":0.095033295,"width":0.02761628,"height":0.013959839},"on_screen":true,"value":"History","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Bookmarks","depth":2,"bounds":{"left":0.18832365,"top":0.095033295,"width":0.04215116,"height":0.011633199},"on_screen":true,"value":"Bookmarks","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Profiles","depth":2,"bounds":{"left":0.24064922,"top":0.095033295,"width":0.029069766,"height":0.011633199},"on_screen":true,"value":"Profiles","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Tab","depth":2,"bounds":{"left":0.2784399,"top":0.095033295,"width":0.014534883,"height":0.011633199},"on_screen":true,"value":"Tab","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Window","depth":2,"bounds":{"left":0.30314922,"top":0.095033295,"width":0.030523255,"height":0.011633199},"on_screen":true,"value":"Window","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Help","depth":2,"bounds":{"left":0.3438469,"top":0.095033295,"width":0.018895349,"height":0.013959839},"on_screen":true,"value":"Help","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"分","depth":2,"bounds":{"left":0.52407944,"top":0.09270666,"width":0.010174419,"height":0.018613119},"on_screen":true,"value":"分","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"⑦","depth":2,"bounds":{"left":0.5429748,"top":0.09270666,"width":0.010174419,"height":0.018613119},"on_screen":true,"value":"⑦","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"*","depth":2,"bounds":{"left":0.582219,"top":0.09270666,"width":0.0072674416,"height":0.01628648},"on_screen":true,"value":"*","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Work","depth":2,"bounds":{"left":0.12437016,"top":0.12760626,"width":0.020348838,"height":0.0116332},"on_screen":true,"value":"Work","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Gree","depth":2,"bounds":{"left":0.19849806,"top":0.1299329,"width":0.01744186,"height":0.006979919},"on_screen":true,"value":"Gree","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Score","depth":2,"bounds":{"left":0.24500969,"top":0.12760626,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"Score","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"andre","depth":2,"bounds":{"left":0.29006782,"top":0.12760626,"width":0.020348838,"height":0.011633199},"on_screen":true,"value":"andre","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"@ wilso","depth":2,"bounds":{"left":0.32204458,"top":0.12483798,"width":0.03343023,"height":0.016986625},"on_screen":true,"value":"@ wilso","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Call A","depth":2,"bounds":{"left":0.3816376,"top":0.12752008,"width":0.021802325,"height":0.011719371},"on_screen":true,"value":"Call A","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jimin","depth":2,"bounds":{"left":0.42814922,"top":0.12760626,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"Jimin","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"M Inbox","depth":2,"bounds":{"left":0.46012598,"top":0.12752008,"width":0.03343023,"height":0.011719371},"on_screen":true,"value":"M Inbox","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"NX","depth":2,"bounds":{"left":0.52138036,"top":0.12752008,"width":0.017233986,"height":0.011719371},"on_screen":true,"value":"NX","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ニ Apps","depth":2,"bounds":{"left":0.5531492,"top":0.12752008,"width":0.03197674,"height":0.014304527},"on_screen":true,"value":"ニ Apps","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5","depth":2,"bounds":{"left":0.08948644,"top":0.16715913,"width":0.4593023,"height":0.01628648},"on_screen":true,"value":"ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Q","depth":2,"bounds":{"left":0.5691376,"top":0.16715913,"width":0.010174418,"height":0.013959839},"on_screen":true,"value":"Q","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"■ AIKB","depth":2,"bounds":{"left":0.006637598,"top":0.20438537,"width":0.030523255,"height":0.01164397},"on_screen":true,"value":"■ AIKB","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ChatPlayground Al...","depth":2,"bounds":{"left":0.05896318,"top":0.20438537,"width":0.06831395,"height":0.011643971},"on_screen":true,"value":"ChatPlayground Al...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"M\nGMail","depth":2,"bounds":{"left":0.22756784,"top":0.20438537,"width":0.033430234,"height":0.0116332},"on_screen":true,"value":"M\nGMail","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Apps","depth":2,"bounds":{"left":0.54006785,"top":0.20438537,"width":0.020348836,"height":0.011633199},"on_screen":true,"value":"Apps","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jiminny","depth":2,"bounds":{"left":0.018265504,"top":0.23928496,"width":0.030523255,"height":0.011633199},"on_screen":true,"value":"Jiminny","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Content Explorer","depth":2,"bounds":{"left":0.019718995,"top":0.27145937,"width":0.049418602,"height":0.012031744},"on_screen":true,"value":"Content Explorer","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Data Explorer","depth":2,"bounds":{"left":0.019718992,"top":0.3160641,"width":0.039244186,"height":0.011719371},"on_screen":true,"value":"Data Explorer","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"' Notifications","depth":2,"bounds":{"left":0.008091087,"top":0.3393305,"width":0.049418602,"height":0.011697828},"on_screen":true,"value":"' Notifications","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"* Email Manager","depth":2,"bounds":{"left":0.008091086,"top":0.36259687,"width":0.05523256,"height":0.011676285},"on_screen":true,"value":"* Email Manager","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Sections -","depth":2,"bounds":{"left":0.0066376,"top":0.41808078,"width":0.029069765,"height":0.007335378},"on_screen":true,"value":"Sections -","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"CS Day-to-day *\nGetting started Guide\n€ Just CS Data","depth":2,"bounds":{"left":0.02262597,"top":0.439376,"width":0.06976744,"height":0.055839356},"on_screen":true,"lines":[{"char_start":0,"char_count":16,"bounds":{"left":0.022625972,"top":0.439376,"width":0.05087209,"height":0.013959839}},{"char_start":16,"char_count":22,"bounds":{"left":0.02262597,"top":0.4626424,"width":0.06976744,"height":0.013959839}},{"char_start":38,"char_count":14,"bounds":{"left":0.024079459,"top":0.48334518,"width":0.04505814,"height":0.011870172}}],"value":"CS Day-to-day *\nGetting started Guide\n€ Just CS Data","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"田\nH","depth":2,"bounds":{"left":0.008091086,"top":0.54640144,"width":0.00872093,"height":0.0348996},"on_screen":true,"lines":[{"char_start":0,"char_count":2,"bounds":{"left":0.008091086,"top":0.54640144,"width":0.00872093,"height":0.013959839}},{"char_start":2,"char_count":1,"bounds":{"left":0.008091086,"top":0.5673412,"width":0.0072674416,"height":0.013959839}}],"value":"田\nH","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"* Daily Operations\n• Weekly prep\n• Renewals and Upsell\nRisk and Churn Analytics","depth":2,"bounds":{"left":0.024079455,"top":0.50659007,"width":0.07848837,"height":0.07509877},"on_screen":true,"lines":[{"char_start":0,"char_count":19,"bounds":{"left":0.02407946,"top":0.50659007,"width":0.055232555,"height":0.011891715}},{"char_start":19,"char_count":14,"bounds":{"left":0.024079457,"top":0.52536476,"width":0.04360465,"height":0.014304527}},{"char_start":33,"char_count":22,"bounds":{"left":0.024079455,"top":0.5486096,"width":0.06540698,"height":0.011751685}},{"char_start":55,"char_count":24,"bounds":{"left":0.024079459,"top":0.5696678,"width":0.07848837,"height":0.012020973}}],"value":"* Daily Operations\n• Weekly prep\n• Renewals and Upsell\nRisk and Churn Analytics","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"目","depth":2,"bounds":{"left":0.008091086,"top":0.6255072,"width":0.00872093,"height":0.013959839},"on_screen":true,"value":"目","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Implementation\nImpl Projects\nTrial Opps (Under Review)\nStoyan's clients","depth":2,"bounds":{"left":0.02262597,"top":0.6045674,"width":0.074127905,"height":0.07677912},"on_screen":true,"lines":[{"char_start":0,"char_count":15,"bounds":{"left":0.02262597,"top":0.6045674,"width":0.05232558,"height":0.011633199}},{"char_start":15,"char_count":14,"bounds":{"left":0.02262597,"top":0.62549645,"width":0.037790697,"height":0.014304527}},{"char_start":29,"char_count":26,"bounds":{"left":0.02262597,"top":0.64605916,"width":0.074127905,"height":0.014347613}},{"char_start":55,"char_count":16,"bounds":{"left":0.02262597,"top":0.669304,"width":0.04505814,"height":0.012042515}}],"value":"Implementation\nImpl Projects\nTrial Opps (Under Review)\nStoyan's clients","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Leadership","depth":2,"bounds":{"left":0.02262597,"top":0.704613,"width":0.040697675,"height":0.011633199},"on_screen":true,"value":"Leadership","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"E","depth":2,"bounds":{"left":0.008091086,"top":0.74649245,"width":0.0072674416,"height":0.013959839},"on_screen":true,"value":"E","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"• System Reports\nLeadership Operations\nPortfolio Overview (Dashbo….\nNPS Report - Greg\nClient Engagement Overview\nRevenue Analytics","depth":2,"bounds":{"left":0.02262597,"top":0.72787935,"width":0.08284883,"height":0.11665514},"on_screen":true,"lines":[{"char_start":0,"char_count":17,"bounds":{"left":0.024079457,"top":0.72787935,"width":0.05232558,"height":0.012053288}},{"char_start":17,"char_count":22,"bounds":{"left":0.022625972,"top":0.7488191,"width":0.06540697,"height":0.011676285}},{"char_start":39,"char_count":29,"bounds":{"left":0.022625973,"top":0.7694357,"width":0.08284883,"height":0.011956344}},{"char_start":68,"char_count":18,"bounds":{"left":0.02262597,"top":0.79069865,"width":0.05232558,"height":0.011816314}},{"char_start":86,"char_count":27,"bounds":{"left":0.022625972,"top":0.81145525,"width":0.08139534,"height":0.011816314}},{"char_start":113,"char_count":17,"bounds":{"left":0.02262597,"top":0.8325781,"width":0.05232558,"height":0.011956344}}],"value":"• System Reports\nLeadership Operations\nPortfolio Overview (Dashbo….\nNPS Report - Greg\nClient Engagement Overview\nRevenue Analytics","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jiminny - Calenda...","depth":2,"bounds":{"left":0.14907946,"top":0.20438537,"width":0.06686046,"height":0.011643971},"on_screen":true,"value":"Jiminny - Calenda...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"My Calendly - Eve...","depth":2,"bounds":{"left":0.2813469,"top":0.20438537,"width":0.06686046,"height":0.011643971},"on_screen":true,"value":"My Calendly - Eve...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"= PH New Ul Login","depth":2,"bounds":{"left":0.35983527,"top":0.20438537,"width":0.06976744,"height":0.011643971},"on_screen":true,"value":"= PH New Ul Login","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Get Starting with J...","depth":2,"bounds":{"left":0.44849807,"top":0.20438537,"width":0.06976744,"height":0.011643971},"on_screen":true,"value":"Get Starting with J...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Search Jiminny","depth":2,"bounds":{"left":0.30314922,"top":0.2392742,"width":0.04505814,"height":0.011643971},"on_screen":true,"value":"Search Jiminny","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"8 Metric ~","depth":2,"bounds":{"left":0.13302368,"top":0.26908678,"width":0.03501855,"height":0.014848864},"on_screen":true,"value":"8 Metric ~","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"@ Dataset","depth":2,"bounds":{"left":0.18396318,"top":0.26953128,"width":0.03197674,"height":0.011762457},"on_screen":true,"value":"@ Dataset","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"playbackVisited","depth":2,"bounds":{"left":0.31332365,"top":0.26720464,"width":0.046511628,"height":0.009306559},"on_screen":true,"value":"playbackVisited","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Q PLAYBACK","depth":2,"bounds":{"left":0.13309109,"top":0.3018565,"width":0.039244186,"height":0.011880944},"on_screen":true,"value":"Q PLAYBACK","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+ Metric","depth":2,"bounds":{"left":0.24789931,"top":0.3019978,"width":0.02765101,"height":0.011846064},"on_screen":true,"value":"+ Metric","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"activities.playbackVisited","depth":2,"bounds":{"left":0.29733527,"top":0.30443087,"width":0.07122093,"height":0.011633199},"on_screen":true,"value":"activities.playbackVisited","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Name","depth":2,"bounds":{"left":0.15053295,"top":0.33235055,"width":0.018895349,"height":0.009306559},"on_screen":true,"value":"Name","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Tyr","depth":2,"bounds":{"left":0.2813469,"top":0.3300239,"width":0.011627907,"height":0.013959839},"on_screen":true,"value":"Tyr","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Overview","depth":2,"bounds":{"left":0.29878876,"top":0.33700386,"width":0.029069766,"height":0.011633199},"on_screen":true,"value":"Overview","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Raw Data","depth":2,"bounds":{"left":0.332219,"top":0.33672377,"width":0.029069766,"height":0.009834362},"on_screen":true,"value":"Raw Data","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Trace","depth":2,"bounds":{"left":0.3671027,"top":0.33700386,"width":0.01744186,"height":0.009306559},"on_screen":true,"value":"Trace","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Company 2","depth":2,"bounds":{"left":0.14762597,"top":0.35996863,"width":0.045058135,"height":0.009834362},"on_screen":true,"value":"Company 2","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Playback Adoption Avg","depth":2,"bounds":{"left":0.15343992,"top":0.3881899,"width":0.06686046,"height":0.012010201},"on_screen":true,"value":"Playback Adoption Avg","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Cal","depth":2,"bounds":{"left":0.2813469,"top":0.3881899,"width":0.010174419,"height":0.009306559},"on_screen":true,"value":"Cal","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Metrics","depth":2,"bounds":{"left":0.29878876,"top":0.37888336,"width":0.021802325,"height":0.009306559},"on_screen":true,"value":"Metrics","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"• Playback Adoption","depth":2,"bounds":{"left":0.14617248,"top":0.4161096,"width":0.0625,"height":0.011805543},"on_screen":true,"value":"• Playback Adoption","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"EndUser 4","depth":2,"bounds":{"left":0.1563469,"top":0.47172275,"width":0.03488372,"height":0.009834362},"on_screen":true,"value":"EndUser 4","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"JUsers Playback Adoption","depth":2,"bounds":{"left":0.15489341,"top":0.49943778,"width":0.075581394,"height":0.012064058},"on_screen":true,"value":"JUsers Playback Adoption","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Cal","depth":2,"bounds":{"left":0.2813469,"top":0.49986863,"width":0.010174418,"height":0.011633199},"on_screen":true,"value":"Cal","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Playback Adoption (Last 7 days)","depth":2,"bounds":{"left":0.15343992,"top":0.52778834,"width":0.09156977,"height":0.011880943},"on_screen":true,"value":"Playback Adoption (Last 7 days)","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"• Playback Adoption","depth":2,"bounds":{"left":0.14617248,"top":0.55803466,"width":0.0625,"height":0.012031744},"on_screen":true,"value":"• Playback Adoption","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Cal","depth":2,"bounds":{"left":0.2813469,"top":0.555708,"width":0.011627907,"height":0.011633199},"on_screen":true,"value":"Cal","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"playbackVisited","depth":2,"bounds":{"left":0.15489341,"top":0.5859543,"width":0.046511628,"height":0.0116332},"on_screen":true,"value":"playbackVisited","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Usi","depth":2,"bounds":{"left":0.2813469,"top":0.5859543,"width":0.010174419,"height":0.009306559},"on_screen":true,"value":"Usi","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Comments","depth":2,"bounds":{"left":0.29878876,"top":0.77906543,"width":0.030523255,"height":0.011633199},"on_screen":true,"value":"Comments","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Add a comment","depth":2,"bounds":{"left":0.3046027,"top":0.813965,"width":0.04505814,"height":0.011794772},"on_screen":true,"value":"Add a comment","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"WEEKS","depth":2,"bounds":{"left":0.5037306,"top":0.6511002,"width":0.029069766,"height":0.011633199},"on_screen":true,"value":"WEEKS","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"as a","depth":2,"bounds":{"left":0.54006785,"top":0.6511002,"width":0.014534883,"height":0.011945572},"on_screen":true,"value":"as a","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SUM","depth":2,"bounds":{"left":0.5589632,"top":0.6511002,"width":0.023255814,"height":0.011633199},"on_screen":true,"value":"SUM","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"No groups found","depth":2,"bounds":{"left":0.5415213,"top":0.7022863,"width":0.049418602,"height":0.011719371},"on_screen":true,"value":"No groups found","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+ Show full list","depth":2,"bounds":{"left":0.5444283,"top":0.7371859,"width":0.04505814,"height":0.011687057},"on_screen":true,"value":"+ Show full list","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"の","depth":2,"bounds":{"left":0.6999515,"top":0.095033295,"width":0.010174419,"height":0.011633199},"on_screen":true,"value":"の","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Build","depth":2,"bounds":{"left":0.6112888,"top":0.12760626,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"Build","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"u User","depth":2,"bounds":{"left":0.6446729,"top":0.12725712,"width":0.033522442,"height":0.0123314615},"on_screen":true,"value":"u User","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"New","depth":2,"bounds":{"left":0.7028585,"top":0.12760626,"width":0.01744186,"height":0.011633199},"on_screen":true,"value":"New","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"u","depth":2,"bounds":{"left":0.6156492,"top":0.16715913,"width":0.011627907,"height":0.01628648},"on_screen":true,"value":"u","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Chloe Onboarding...","depth":2,"bounds":{"left":0.58367246,"top":0.20438537,"width":0.06976744,"height":0.014326069},"on_screen":true,"value":"Chloe Onboarding...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+ CX Journey SMB...","depth":2,"bounds":{"left":0.66070735,"top":0.20172481,"width":0.075581394,"height":0.016986625},"on_screen":true,"value":"+ CX Journey SMB...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+","depth":2,"bounds":{"left":0.772626,"top":0.048500497,"width":0.013081395,"height":0.020939758},"on_screen":true,"value":"+","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"8•\nMon 11 May 12:20","depth":2,"bounds":{"left":0.74210274,"top":0.0926528,"width":0.093023255,"height":0.016340338},"on_screen":true,"value":"8•\nMon 11 May 12:20","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"User","depth":2,"bounds":{"left":0.7464632,"top":0.12760626,"width":0.021802325,"height":0.011633199},"on_screen":true,"value":"User","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"E Work","depth":2,"bounds":{"left":0.7798934,"top":0.16685753,"width":0.03197674,"height":0.014304527},"on_screen":true,"value":"E Work","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
8605581865956946266
|
8749940976038851441
|
click
|
accessibility
|
NULL
|
Petko Kashinski
Screen share
Chrome
File
Edit
View Petko Kashinski
Screen share
Chrome
File
Edit
View
History
Bookmarks
Profiles
Tab
Window
Help
分
⑦
*
Work
Gree
Score
andre
@ wilso
Call A
Jimin
M Inbox
NX
ニ Apps
ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5
Q
■ AIKB
ChatPlayground Al...
M
GMail
Apps
Jiminny
Content Explorer
Data Explorer
' Notifications
* Email Manager
Sections -
CS Day-to-day *
Getting started Guide
€ Just CS Data
田
H
* Daily Operations
• Weekly prep
• Renewals and Upsell
Risk and Churn Analytics
目
Implementation
Impl Projects
Trial Opps (Under Review)
Stoyan's clients
Leadership
E
• System Reports
Leadership Operations
Portfolio Overview (Dashbo….
NPS Report - Greg
Client Engagement Overview
Revenue Analytics
Jiminny - Calenda...
My Calendly - Eve...
= PH New Ul Login
Get Starting with J...
Search Jiminny
8 Metric ~
@ Dataset
playbackVisited
Q PLAYBACK
+ Metric
activities.playbackVisited
Name
Tyr
Overview
Raw Data
Trace
Company 2
Playback Adoption Avg
Cal
Metrics
• Playback Adoption
EndUser 4
JUsers Playback Adoption
Cal
Playback Adoption (Last 7 days)
• Playback Adoption
Cal
playbackVisited
Usi
Comments
Add a comment
WEEKS
as a
SUM
No groups found
+ Show full list
の
Build
u User
New
u
Chloe Onboarding...
+ CX Journey SMB...
+
8•
Mon 11 May 12:20
User
E Work...
|
22895
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22898
|
978
|
15
|
2026-05-12T07:25:53.901800+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570753901_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:55
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"02:55","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
8941343663989620386
|
5922002151758629492
|
click
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:55
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(ablj Support Daily - in 4h 35 mA100% (8•Tue 12 May 10:25:53• PLanhat Petko interest event 2026-05-11.mp4Screen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*Q8• Mon 11 May 12:20Gree!Scoreandre• wilsoCall AJiminM Inbox=N X=AppsBuildu User;§ New: | u User; | +Cws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5© WorkAIKB• ChatPlayground Al...Apps+ CX Journey SMB....Jiminny ~Content ExplorerData ExplorerNotificationsEmail Manager•** MoreSections -ECS Day-to-day•Getting started GuideJust CS Data* Daily Operations# Weekly prepRenewals and UpsellRisk and Churn AnalyticsImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsLeadershipSystem ReportsLeadership OperationsPortfolio Overview (Dashbo….NPS Report - GregClient Engagement OverviewRevenue AnalyticsJiminny - Calenda…M GMail• My Calendly - Eve....= PH New Ul LoginGet Starting with J...Chloe Onboarding..8 MetricB DatasetQ, PLAYBACK+ Metric6 nplaybackVisitedEnd Un]activities. playbackVisitedТугOverviewTrace- Company 2Fiter by Company• Playback Adoption Avg• Playback AdoptionEndUser• JUsers Playback AdoptionCal• Playback Adoption (Last 7 days)Cal• Playback AdoptionCalplaybackVisitedUsw1.2026w3 2026WS 2026#7 2026W8 2026WEEKSSUMNo groups foundAdd a comment40 +E. Petko6 Feb 11, 2026 - May 10, 2026w10 2026w11 2026w13 2026Al Notes: OffPetko ...reen .02:5404:55ve...
|
NULL
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22900
|
978
|
16
|
2026-05-12T07:26:00.535726+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570760535_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Petko Kashinski
Screen share
Chrome
File
Edit
View Petko Kashinski
Screen share
Chrome
File
Edit
View
History
Bookmarks
Profiles
Tab
Window
Help
分
*
Work
Gree
Score
andre
@ wilso
Call A
Jimin
M Inbox
NX
ニ Apps
Build
ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5
★
u
■ AIKB
ChatPlayground Al...
M
GMail
Apps
Jiminny ~
Content Explorer
Data Explorer
" Notifications
* Email Manager
Sections -
CS Day-to-day *
Getting started Guide
€ Just CS Data
E
田
H
* Daily Operations
• Weekly prep
• Renewals and Upsell
Risk and Churn Analytics
目
Implementation
Impl Projects
Trial Opps (Under Review)
Stoyan's clients
Leadership
E
• System Reports
Leadership Operations
Portfolio Overview (Dashbo….
NPS Report - Greg
Client Engagement Overview
Revenue Analytics
Jiminny - Calenda...
My Calendly - Eve...
= PH New Ul Login
Get Starting with J...
Search Jiminny
8 Metric ~
@ Dataset
playbackVisited
ser
Q PLAYBACK
+ Metric
activities.playbackVisited
Name
Tyr
Overview
Raw Data
Trace
Company 2
• Playback Adoption Avg
Cal
Metrics
• Playback Adoption
EndUser 4
JUsers Playback Adoption
Cal
Playback Adoption (Last 7 days)
Playback Adoption
Cal
playbackVisited
Usi
Comments
Add a comment
Chloe Onboarding…..
Filter by Company
WEEKS
as a
SUM
No groups found
+ Show full list
の
u User
New
+ CX Journey SMB...
+
8•
Mon 11 May 12:20
i User
ロ
E Work
X
Petko
Feb 11, 2026 - May 10, 2026
7= Al Notes: Off
zoom
田
A...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Petko Kashinski\nScreen share","depth":2,"bounds":{"left":0.0022771326,"top":0.039010823,"width":0.07848837,"height":0.037549384},"on_screen":true,"lines":[{"char_start":0,"char_count":16,"bounds":{"left":0.0022771326,"top":0.039010823,"width":0.07848837,"height":0.016469594}},{"char_start":16,"char_count":12,"bounds":{"left":0.0022771326,"top":0.062255677,"width":0.05377907,"height":0.014304527}}],"value":"Petko Kashinski\nScreen share","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Chrome","depth":2,"bounds":{"left":0.028439922,"top":0.095033295,"width":0.031976745,"height":0.011633199},"on_screen":true,"value":"Chrome","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"File","depth":2,"bounds":{"left":0.070591085,"top":0.095033295,"width":0.014534883,"height":0.011633199},"on_screen":true,"value":"File","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Edit","depth":2,"bounds":{"left":0.09530039,"top":0.095033295,"width":0.015988372,"height":0.011633199},"on_screen":true,"value":"Edit","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"View","depth":2,"bounds":{"left":0.12146318,"top":0.095033295,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"View","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"History","depth":2,"bounds":{"left":0.15053295,"top":0.095033295,"width":0.02761628,"height":0.013959839},"on_screen":true,"value":"History","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Bookmarks","depth":2,"bounds":{"left":0.18832365,"top":0.095033295,"width":0.04215116,"height":0.011633199},"on_screen":true,"value":"Bookmarks","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Profiles","depth":2,"bounds":{"left":0.24064922,"top":0.095033295,"width":0.029069766,"height":0.011633199},"on_screen":true,"value":"Profiles","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Tab","depth":2,"bounds":{"left":0.2784399,"top":0.095033295,"width":0.014534883,"height":0.011633199},"on_screen":true,"value":"Tab","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Window","depth":2,"bounds":{"left":0.30314922,"top":0.095033295,"width":0.030523255,"height":0.011633199},"on_screen":true,"value":"Window","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Help","depth":2,"bounds":{"left":0.3438469,"top":0.095033295,"width":0.018895349,"height":0.013959839},"on_screen":true,"value":"Help","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"分","depth":2,"bounds":{"left":0.52407944,"top":0.09270666,"width":0.010174419,"height":0.018613119},"on_screen":true,"value":"分","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"*","depth":2,"bounds":{"left":0.582219,"top":0.09270666,"width":0.0072674416,"height":0.01628648},"on_screen":true,"value":"*","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Work","depth":2,"bounds":{"left":0.12437016,"top":0.12760626,"width":0.020348838,"height":0.0116332},"on_screen":true,"value":"Work","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Gree","depth":2,"bounds":{"left":0.19849806,"top":0.1299329,"width":0.01744186,"height":0.006979919},"on_screen":true,"value":"Gree","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Score","depth":2,"bounds":{"left":0.24500969,"top":0.12760626,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"Score","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"andre","depth":2,"bounds":{"left":0.29006782,"top":0.12760626,"width":0.020348838,"height":0.011633199},"on_screen":true,"value":"andre","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"@ wilso","depth":2,"bounds":{"left":0.32204458,"top":0.12483798,"width":0.03343023,"height":0.016986625},"on_screen":true,"value":"@ wilso","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Call A","depth":2,"bounds":{"left":0.3816376,"top":0.12752008,"width":0.021802325,"height":0.011719371},"on_screen":true,"value":"Call A","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jimin","depth":2,"bounds":{"left":0.42814922,"top":0.12760626,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"Jimin","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"M Inbox","depth":2,"bounds":{"left":0.46012598,"top":0.12752008,"width":0.03343023,"height":0.011719371},"on_screen":true,"value":"M Inbox","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"NX","depth":2,"bounds":{"left":0.52138036,"top":0.12752008,"width":0.017233986,"height":0.011719371},"on_screen":true,"value":"NX","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ニ Apps","depth":2,"bounds":{"left":0.5531492,"top":0.12752008,"width":0.03197674,"height":0.014304527},"on_screen":true,"value":"ニ Apps","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Build","depth":2,"bounds":{"left":0.6112888,"top":0.12760626,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"Build","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5","depth":2,"bounds":{"left":0.08948644,"top":0.16715913,"width":0.4593023,"height":0.01628648},"on_screen":true,"value":"ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"★","depth":2,"bounds":{"left":0.58657944,"top":0.16715913,"width":0.010174419,"height":0.01628648},"on_screen":true,"value":"★","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"u","depth":2,"bounds":{"left":0.6156492,"top":0.16715913,"width":0.011627907,"height":0.01628648},"on_screen":true,"value":"u","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"■ AIKB","depth":2,"bounds":{"left":0.006637598,"top":0.20438537,"width":0.030523255,"height":0.01164397},"on_screen":true,"value":"■ AIKB","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ChatPlayground Al...","depth":2,"bounds":{"left":0.05896318,"top":0.20438537,"width":0.06831395,"height":0.011643971},"on_screen":true,"value":"ChatPlayground Al...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"M\nGMail","depth":2,"bounds":{"left":0.22756784,"top":0.20438537,"width":0.033430234,"height":0.0116332},"on_screen":true,"value":"M\nGMail","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Apps","depth":2,"bounds":{"left":0.54006785,"top":0.20438537,"width":0.020348836,"height":0.011633199},"on_screen":true,"value":"Apps","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jiminny ~","depth":2,"bounds":{"left":0.018265504,"top":0.2392742,"width":0.030523255,"height":0.011643971},"on_screen":true,"value":"Jiminny ~","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Content Explorer","depth":2,"bounds":{"left":0.019718995,"top":0.27145937,"width":0.049418602,"height":0.012031744},"on_screen":true,"value":"Content Explorer","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Data Explorer","depth":2,"bounds":{"left":0.019718992,"top":0.3160641,"width":0.039244186,"height":0.011719371},"on_screen":true,"value":"Data Explorer","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"\" Notifications","depth":2,"bounds":{"left":0.008091087,"top":0.3393305,"width":0.049418602,"height":0.011697828},"on_screen":true,"value":"\" Notifications","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"* Email Manager","depth":2,"bounds":{"left":0.008091086,"top":0.36259687,"width":0.05523256,"height":0.011676285},"on_screen":true,"value":"* Email Manager","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Sections -","depth":2,"bounds":{"left":0.0066376,"top":0.41808078,"width":0.029069765,"height":0.007335378},"on_screen":true,"value":"Sections -","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"CS Day-to-day *\nGetting started Guide\n€ Just CS Data","depth":2,"bounds":{"left":0.02262597,"top":0.439376,"width":0.06976744,"height":0.055839356},"on_screen":true,"lines":[{"char_start":0,"char_count":16,"bounds":{"left":0.022625972,"top":0.439376,"width":0.05087209,"height":0.013959839}},{"char_start":16,"char_count":22,"bounds":{"left":0.02262597,"top":0.4626424,"width":0.06976744,"height":0.013959839}},{"char_start":38,"char_count":14,"bounds":{"left":0.024079459,"top":0.48334518,"width":0.04505814,"height":0.011870172}}],"value":"CS Day-to-day *\nGetting started Guide\n€ Just CS Data","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"E\n田\nH","depth":2,"bounds":{"left":0.008091086,"top":0.5254617,"width":0.00872093,"height":0.055839356},"on_screen":true,"lines":[{"char_start":0,"char_count":2,"bounds":{"left":0.008091086,"top":0.5254617,"width":0.00872093,"height":0.013959839}},{"char_start":2,"char_count":2,"bounds":{"left":0.008091086,"top":0.54640144,"width":0.00872093,"height":0.013959839}},{"char_start":4,"char_count":1,"bounds":{"left":0.008091086,"top":0.5673412,"width":0.0072674416,"height":0.013959839}}],"value":"E\n田\nH","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"* Daily Operations\n• Weekly prep\n• Renewals and Upsell\nRisk and Churn Analytics","depth":2,"bounds":{"left":0.024079457,"top":0.50659007,"width":0.07848837,"height":0.07509877},"on_screen":true,"lines":[{"char_start":0,"char_count":19,"bounds":{"left":0.02407946,"top":0.50659007,"width":0.055232555,"height":0.011891715}},{"char_start":19,"char_count":14,"bounds":{"left":0.024079457,"top":0.52536476,"width":0.04360465,"height":0.014304527}},{"char_start":33,"char_count":22,"bounds":{"left":0.024079459,"top":0.5486096,"width":0.06540697,"height":0.011751685}},{"char_start":55,"char_count":24,"bounds":{"left":0.024079459,"top":0.5696678,"width":0.07848837,"height":0.012020973}}],"value":"* Daily Operations\n• Weekly prep\n• Renewals and Upsell\nRisk and Churn Analytics","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"目","depth":2,"bounds":{"left":0.008091086,"top":0.6255072,"width":0.00872093,"height":0.013959839},"on_screen":true,"value":"目","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Implementation\nImpl Projects\nTrial Opps (Under Review)\nStoyan's clients","depth":2,"bounds":{"left":0.02262597,"top":0.6045674,"width":0.074127905,"height":0.07677912},"on_screen":true,"lines":[{"char_start":0,"char_count":15,"bounds":{"left":0.02262597,"top":0.6045674,"width":0.05232558,"height":0.011633199}},{"char_start":15,"char_count":14,"bounds":{"left":0.02262597,"top":0.62549645,"width":0.037790697,"height":0.014304527}},{"char_start":29,"char_count":26,"bounds":{"left":0.02262597,"top":0.64605916,"width":0.074127905,"height":0.014347613}},{"char_start":55,"char_count":16,"bounds":{"left":0.02262597,"top":0.669304,"width":0.04505814,"height":0.012042515}}],"value":"Implementation\nImpl Projects\nTrial Opps (Under Review)\nStoyan's clients","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Leadership","depth":2,"bounds":{"left":0.02262597,"top":0.704613,"width":0.040697675,"height":0.011633199},"on_screen":true,"value":"Leadership","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"E","depth":2,"bounds":{"left":0.008091086,"top":0.74649245,"width":0.0072674416,"height":0.013959839},"on_screen":true,"value":"E","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"• System Reports\nLeadership Operations\nPortfolio Overview (Dashbo….\nNPS Report - Greg\nClient Engagement Overview\nRevenue Analytics","depth":2,"bounds":{"left":0.02262597,"top":0.72787935,"width":0.08284883,"height":0.11665514},"on_screen":true,"lines":[{"char_start":0,"char_count":17,"bounds":{"left":0.024079457,"top":0.72787935,"width":0.05232558,"height":0.012053288}},{"char_start":17,"char_count":22,"bounds":{"left":0.022625972,"top":0.7488191,"width":0.06540697,"height":0.011676285}},{"char_start":39,"char_count":29,"bounds":{"left":0.022625973,"top":0.7694357,"width":0.08284883,"height":0.011956344}},{"char_start":68,"char_count":18,"bounds":{"left":0.02262597,"top":0.79069865,"width":0.05232558,"height":0.011816314}},{"char_start":86,"char_count":27,"bounds":{"left":0.022625972,"top":0.81145525,"width":0.08139534,"height":0.011816314}},{"char_start":113,"char_count":17,"bounds":{"left":0.02262597,"top":0.8325781,"width":0.05232558,"height":0.011956344}}],"value":"• System Reports\nLeadership Operations\nPortfolio Overview (Dashbo….\nNPS Report - Greg\nClient Engagement Overview\nRevenue Analytics","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jiminny - Calenda...","depth":2,"bounds":{"left":0.14907946,"top":0.20438537,"width":0.06686046,"height":0.011643971},"on_screen":true,"value":"Jiminny - Calenda...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"My Calendly - Eve...","depth":2,"bounds":{"left":0.2813469,"top":0.20438537,"width":0.06686046,"height":0.011643971},"on_screen":true,"value":"My Calendly - Eve...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"= PH New Ul Login","depth":2,"bounds":{"left":0.35983527,"top":0.20438537,"width":0.06976744,"height":0.011643971},"on_screen":true,"value":"= PH New Ul Login","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Get Starting with J...","depth":2,"bounds":{"left":0.44849807,"top":0.20438537,"width":0.06976744,"height":0.011643971},"on_screen":true,"value":"Get Starting with J...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Search Jiminny","depth":2,"bounds":{"left":0.30314922,"top":0.2392742,"width":0.04505814,"height":0.011643971},"on_screen":true,"value":"Search Jiminny","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"8 Metric ~","depth":2,"bounds":{"left":0.13302368,"top":0.26908678,"width":0.03501855,"height":0.014848864},"on_screen":true,"value":"8 Metric ~","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"@ Dataset","depth":2,"bounds":{"left":0.18396318,"top":0.26953128,"width":0.03197674,"height":0.011762457},"on_screen":true,"value":"@ Dataset","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"playbackVisited\nser","depth":2,"bounds":{"left":0.31332365,"top":0.26720464,"width":0.04505814,"height":0.0232664},"on_screen":true,"lines":[{"char_start":0,"char_count":16,"bounds":{"left":0.31332365,"top":0.26720464,"width":0.04505814,"height":0.009306559}},{"char_start":16,"char_count":3,"bounds":{"left":0.32495156,"top":0.27883786,"width":0.013081395,"height":0.011633199}}],"value":"playbackVisited\nser","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Q PLAYBACK","depth":2,"bounds":{"left":0.13309109,"top":0.3018565,"width":0.039244186,"height":0.011880944},"on_screen":true,"value":"Q PLAYBACK","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+ Metric","depth":2,"bounds":{"left":0.24789931,"top":0.3019978,"width":0.02765101,"height":0.011846064},"on_screen":true,"value":"+ Metric","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"activities.playbackVisited","depth":2,"bounds":{"left":0.29733527,"top":0.30443087,"width":0.07122093,"height":0.011633199},"on_screen":true,"value":"activities.playbackVisited","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Name","depth":2,"bounds":{"left":0.15053295,"top":0.33235055,"width":0.018895349,"height":0.009306559},"on_screen":true,"value":"Name","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Tyr","depth":2,"bounds":{"left":0.2813469,"top":0.3300239,"width":0.011627907,"height":0.013959839},"on_screen":true,"value":"Tyr","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Overview","depth":2,"bounds":{"left":0.29878876,"top":0.33700386,"width":0.029069766,"height":0.011633199},"on_screen":true,"value":"Overview","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Raw Data","depth":2,"bounds":{"left":0.332219,"top":0.33672377,"width":0.029069766,"height":0.009834362},"on_screen":true,"value":"Raw Data","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Trace","depth":2,"bounds":{"left":0.3671027,"top":0.33700386,"width":0.01744186,"height":0.009306559},"on_screen":true,"value":"Trace","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Company 2","depth":2,"bounds":{"left":0.15489341,"top":0.3579436,"width":0.039244186,"height":0.0118594},"on_screen":true,"value":"Company 2","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"• Playback Adoption Avg","depth":2,"bounds":{"left":0.14617248,"top":0.3881899,"width":0.074127905,"height":0.012010201},"on_screen":true,"value":"• Playback Adoption Avg","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Cal","depth":2,"bounds":{"left":0.2813469,"top":0.3881899,"width":0.010174419,"height":0.009306559},"on_screen":true,"value":"Cal","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Metrics","depth":2,"bounds":{"left":0.29878876,"top":0.37888336,"width":0.021802325,"height":0.009306559},"on_screen":true,"value":"Metrics","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"• Playback Adoption","depth":2,"bounds":{"left":0.14617248,"top":0.4161096,"width":0.0625,"height":0.011805543},"on_screen":true,"value":"• Playback Adoption","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"EndUser 4","depth":2,"bounds":{"left":0.1563469,"top":0.47172275,"width":0.03488372,"height":0.009834362},"on_screen":true,"value":"EndUser 4","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"JUsers Playback Adoption","depth":2,"bounds":{"left":0.15489341,"top":0.49943778,"width":0.075581394,"height":0.012064058},"on_screen":true,"value":"JUsers Playback Adoption","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Cal","depth":2,"bounds":{"left":0.2813469,"top":0.49986863,"width":0.010174418,"height":0.011633199},"on_screen":true,"value":"Cal","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Playback Adoption (Last 7 days)","depth":2,"bounds":{"left":0.15343992,"top":0.52778834,"width":0.09156977,"height":0.013959839},"on_screen":true,"value":"Playback Adoption (Last 7 days)","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Playback Adoption","depth":2,"bounds":{"left":0.15343992,"top":0.55803466,"width":0.055232555,"height":0.012031744},"on_screen":true,"value":"Playback Adoption","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Cal","depth":2,"bounds":{"left":0.2813469,"top":0.555708,"width":0.011627907,"height":0.011633199},"on_screen":true,"value":"Cal","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"playbackVisited","depth":2,"bounds":{"left":0.15489341,"top":0.5859543,"width":0.046511628,"height":0.0116332},"on_screen":true,"value":"playbackVisited","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Usi","depth":2,"bounds":{"left":0.2813469,"top":0.5859543,"width":0.010174419,"height":0.009306559},"on_screen":true,"value":"Usi","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Comments","depth":2,"bounds":{"left":0.29878876,"top":0.77906543,"width":0.030523255,"height":0.011633199},"on_screen":true,"value":"Comments","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Add a comment","depth":2,"bounds":{"left":0.3046027,"top":0.813965,"width":0.04505814,"height":0.011794772},"on_screen":true,"value":"Add a comment","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Chloe Onboarding…..","depth":2,"bounds":{"left":0.58367246,"top":0.20438537,"width":0.06976744,"height":0.011643971},"on_screen":true,"value":"Chloe Onboarding…..","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Filter by Company","depth":2,"bounds":{"left":0.59093994,"top":0.37874332,"width":0.05232558,"height":0.011773229},"on_screen":true,"value":"Filter by Company","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"WEEKS","depth":2,"bounds":{"left":0.5037306,"top":0.6511002,"width":0.029069766,"height":0.011633199},"on_screen":true,"value":"WEEKS","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"as a","depth":2,"bounds":{"left":0.54006785,"top":0.6511002,"width":0.014534883,"height":0.011945572},"on_screen":true,"value":"as a","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SUM","depth":2,"bounds":{"left":0.5589632,"top":0.6511002,"width":0.023255814,"height":0.011633199},"on_screen":true,"value":"SUM","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"No groups found","depth":2,"bounds":{"left":0.5415213,"top":0.7022863,"width":0.049418602,"height":0.011719371},"on_screen":true,"value":"No groups found","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+ Show full list","depth":2,"bounds":{"left":0.5444283,"top":0.7371859,"width":0.04505814,"height":0.011687057},"on_screen":true,"value":"+ Show full list","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"の","depth":2,"bounds":{"left":0.6999515,"top":0.095033295,"width":0.010174419,"height":0.011633199},"on_screen":true,"value":"の","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"u User","depth":2,"bounds":{"left":0.644719,"top":0.12752008,"width":0.03343023,"height":0.011719371},"on_screen":true,"value":"u User","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"New","depth":2,"bounds":{"left":0.70140505,"top":0.12760626,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"New","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+ CX Journey SMB...","depth":2,"bounds":{"left":0.66070735,"top":0.20172481,"width":0.075581394,"height":0.016986625},"on_screen":true,"value":"+ CX Journey SMB...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+","depth":2,"bounds":{"left":0.772626,"top":0.048500497,"width":0.013081395,"height":0.020939758},"on_screen":true,"value":"+","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"8•\nMon 11 May 12:20","depth":2,"bounds":{"left":0.74210274,"top":0.0926528,"width":0.093023255,"height":0.016340336},"on_screen":true,"value":"8•\nMon 11 May 12:20","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"i User","depth":2,"bounds":{"left":0.7362888,"top":0.1299329,"width":0.030523254,"height":0.0074215503},"on_screen":true,"value":"i User","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ロ","depth":2,"bounds":{"left":0.7435562,"top":0.16483249,"width":0.011627907,"height":0.020939758},"on_screen":true,"value":"ロ","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"E Work","depth":2,"bounds":{"left":0.7798934,"top":0.16685753,"width":0.031976745,"height":0.014304527},"on_screen":true,"value":"E Work","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"X","depth":2,"bounds":{"left":0.8569283,"top":0.048500497,"width":0.011627907,"height":0.018613119},"on_screen":true,"value":"X","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Petko","depth":2,"bounds":{"left":0.8191376,"top":0.23928496,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"Petko","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Feb 11, 2026 - May 10, 2026","depth":2,"bounds":{"left":0.73919576,"top":0.37655672,"width":0.0872093,"height":0.013959839},"on_screen":true,"value":"Feb 11, 2026 - May 10, 2026","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"7= Al Notes: Off","depth":2,"bounds":{"left":0.769719,"top":0.7068534,"width":0.056686044,"height":0.014304527},"on_screen":true,"value":"7= Al Notes: Off","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"zoom","depth":2,"bounds":{"left":0.10111434,"top":0.89074415,"width":0.021802325,"height":0.009306559},"on_screen":true,"value":"zoom","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"田","depth":2,"bounds":{"left":0.17088178,"top":0.8860909,"width":0.014534883,"height":0.0232664},"on_screen":true,"value":"田","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"A","depth":2,"bounds":{"left":0.2711725,"top":0.8814376,"width":0.015988372,"height":0.027919678},"on_screen":true,"value":"A","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-7996815017829852588
|
-329316701668764047
|
click
|
accessibility
|
NULL
|
Petko Kashinski
Screen share
Chrome
File
Edit
View Petko Kashinski
Screen share
Chrome
File
Edit
View
History
Bookmarks
Profiles
Tab
Window
Help
分
*
Work
Gree
Score
andre
@ wilso
Call A
Jimin
M Inbox
NX
ニ Apps
Build
ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5
★
u
■ AIKB
ChatPlayground Al...
M
GMail
Apps
Jiminny ~
Content Explorer
Data Explorer
" Notifications
* Email Manager
Sections -
CS Day-to-day *
Getting started Guide
€ Just CS Data
E
田
H
* Daily Operations
• Weekly prep
• Renewals and Upsell
Risk and Churn Analytics
目
Implementation
Impl Projects
Trial Opps (Under Review)
Stoyan's clients
Leadership
E
• System Reports
Leadership Operations
Portfolio Overview (Dashbo….
NPS Report - Greg
Client Engagement Overview
Revenue Analytics
Jiminny - Calenda...
My Calendly - Eve...
= PH New Ul Login
Get Starting with J...
Search Jiminny
8 Metric ~
@ Dataset
playbackVisited
ser
Q PLAYBACK
+ Metric
activities.playbackVisited
Name
Tyr
Overview
Raw Data
Trace
Company 2
• Playback Adoption Avg
Cal
Metrics
• Playback Adoption
EndUser 4
JUsers Playback Adoption
Cal
Playback Adoption (Last 7 days)
Playback Adoption
Cal
playbackVisited
Usi
Comments
Add a comment
Chloe Onboarding…..
Filter by Company
WEEKS
as a
SUM
No groups found
+ Show full list
の
u User
New
+ CX Journey SMB...
+
8•
Mon 11 May 12:20
i User
ロ
E Work
X
Petko
Feb 11, 2026 - May 10, 2026
7= Al Notes: Off
zoom
田
A...
|
22898
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22902
|
978
|
17
|
2026-05-12T07:26:05.496941+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570765496_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:58
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"02:58","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
7234290900282804317
|
5912986371176008308
|
visual_change
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
02:58
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(ablj Support Daily - in 4h 34 m100% (8•Tue 12 May 10:26:05• PLanhat Petko interest event 2026-05-11.mp4Screen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*Q8• Mon 11 May 12:20Gree!Scoreandre• wilsoCall AJiminM Inbox=N=AppsBuildu User;§ New: | u User; | +Cws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5© WorkAIKB• ChatPlayground Al...Apps+ CX Journey SMB....Jiminny ~Content ExplorerData ExplorerNotificationsEmail Manager•** MoreSections -ECS Day-to-day•Getting started GuideJust CS Data* Daily Operations# Weekly prepRenewals and UpsellRisk and Churn AnalyticsImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsLeadershipSystem ReportsLeadership OperationsPortiolio Overview (Dashbo…NPS Report - GregClient Engagement OverviewRevenue AnalyticsJiminny - Calenda…M GMail• My Calendly - Eve....= PH New Ul LoginGet Starting with J...Chloe Onboarding..40 +E. Petko8 MetricB DatasetplaybackVisitedQ, PLAYBACK+ Metric6 nactivities. playbackVisitedТугOverviewPyy DataTrace- Company 2Raw DataFilter by Company• Playback Adoption AvgCal• Playback AdoptionCalCompanyUserEventTimeIngestion AtEndUserLoading Raw Data…JUsers Playback AdoptionCal• Playback Adoption (Last 7 days)• Playback AdoptionCalplaybackVisitedUs4= Al Notes: Off7Petko ...reen .»02:5704:55ve...
|
NULL
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22903
|
978
|
18
|
2026-05-12T07:26:11.531701+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570771531_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:04
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"03:04","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
-807807529056390334
|
5922001327057799796
|
visual_change
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:04
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(ablj Support Daily - in 4h 34 mA100% (8•Tue 12 May 10:26:11• PLanhat Petko interest event 2026-05-11.mp4Screen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*Q8• Mon 11 May 12:20Gree!Scoreandre• wilsoCall AJiminM Inbox=N X=AppsBuildu User;§ New: | u User; | +Cws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5G WorkAIKB• ChatPlayground Al...Apps+ CX Journey SMB....Jiminny ~Content ExplorerData ExplorerNotificationsEmail Manager•** MoreSections -ECS Day-to-day•Getting started GuideJust CS Data* Daily Operations# Weekly prepRenewals and UpsellRisk and Churn AnalyticsImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsLeadershipSystem ReportsLeadership OperationsPortiolio Overview (Dashbo…NPS Report - GregClient Engagement OverviewRevenue AnalyticsJiminny - Calenda….M GMail• My Calendly - Eve....= PH New Ul LoginGet Starting with J...Chloe Onboarding….8 MetricB DatasetplaybackVisitedQ, PLAYBACK+ Metricactivities. playbackVisitedТугOverviewTrace- Company 2Fiter by Company• Playback Adoption Avg• Playback AdoptionEndUser• JUsers Playback AdoptionCal• Playback Adoption (Last 7 days)CalplaybackVisitedw8 202639K• Playback AdoptionCalplaybackVisitedUsw1.2026W3 2026WS 2026N7 2026N8 2026w9 2026WEEKSSUMNo groups found+ Show fur listAdd a commentw10 202640 +E. Petko6 Feb 11, 2026 - May 10, 2026w13 2026Al Notes: OffPetko ...reen .703:0304:55ve...
|
22902
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22904
|
978
|
19
|
2026-05-12T07:26:14.525644+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570774525_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:07
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"03:07","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
7049935462183391278
|
5916364131009301108
|
visual_change
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:07
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(ablj Support Daily - in 4h 34 m100% (C478•Tue 12 May 10:26:14• PLanhat Petko interest event 2026-05-11.mp4Screen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*Q 8• Mon 11 May 12:20GreelScorsandro@ wilso|Call AM Inbox= N x=AppsBuildu User© Newu User+ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5• | (0WorkAIКEChatPlayground Alminny - CalendaM GMall+ CX Journey SMBContent Explorer8 MetricC° SharedQ PLAYBAData ExplorerFavouritesA Applic...Emai ManagerMoreDesktopDocum.EECS Day-to-day •Getting started GuideJust CS Data*- Daily Operations# Weekly prep@ Renewals and Upsell8 Risk and Churn AnalyticsDownl...Locations• iCloud...T testTagsRedImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsOrangeYellow•GreenLeadershipSystem ReportsLeadership OperationsPortiolio Overview (Dashbo.NPS Report - GregCiient Engagement OverviewKevETiUe Aanuss• My Calendly - Eve.= PH New Ul LoginGet Starting withD AppsQ Search JiminnySave As:Nate Reese.htmlTags:88DownloadsTodayJiminny%20auto-renew%...(2).emlPrevious 7 DaysFormat:Web Page, CompleteNew FolderChioe OnboardingQ SearchCancelSaveShow ful list÷0 +Petko6 Feb 11, 2026 - May 10, 2026Al Notes: OffPetko ...een .»03:0704:55ve...
|
NULL
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22905
|
978
|
20
|
2026-05-12T07:26:17.530506+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570777530_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:10
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"03:10","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
6349923254856333065
|
5925380126357064308
|
visual_change
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:10
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(ablj Support Daily - in 4h 34 mA100% (8•Tue 12 May 10:26:17• PLanhat Petko interest event 2026-05-11.mp4Screen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*Q8• Mon 11 May 12:20GreetScoreandre• wilsoCall AJiminM Inbox=N=AppsBuildu User;§ New: | u User; | +ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5WorkAIKB• ChatPlayground Al...Apps+ CX Journey SMB....Jiminny ~Content ExplorerData ExplorerNotificationsEmail ManagerMoreECS Day-to-day•Getting started Guide* Just CS Data+- Daity Operations• Weekty prepRenewals and UpsellRisk and Churn AnalyticsImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsLeadershipSystem ReportsLeadership OperationsPortfolio Overview (Dashbo..NPS Report - GregCllent Engagement OverviewRevenue AnalyticsJiminny - Calenda….M GMail• My Calendly - Eve....= PH New Ul LoginGet Starting with J...Chloe Onboarding..E. PetkoE MetricB DatasetplaybackVisitedQrd+ Metric6 nactivities. playbackVisitedТугOverviewTraceCompany 2Fier by Company6 Feb 11, 2026 - May 10, 2026• Playback Adoption Avg• Playback AdoptionEndUser• JUsers Playback AdoptionCal• Playback Adoption (Last 7 days)Cal• Playback AdoptionCalplaybackVisitedUsw1 2026w3 2026WS 2026N7 2026WS 2026w9 2026w10 2026w11 2026w13 2026WEEKSSUMNo groups foundAl Notes: Off+ Show fus listAdd a commentPetko ...reen .03:0904:55ve...
|
22904
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22906
|
978
|
21
|
2026-05-12T07:26:20.563404+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570780563_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:12
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"03:12","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
-8829991114990958769
|
-3296866012738352396
|
visual_change
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:12
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelpScreen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelpGreelScoreandre• wilsows.planhat.com/jiminny/home/data-explorer/usagemetricdefAIKB• ChatPlayground Al...Jiminny - Calenda…M GMail• My Calendly - Eve....Jiminny ~Search JiminnyContent Explorer8 Metric -B DatasetQ reports+ Metric3 metricsData ExplorerNotificationsTyрeEmail Manager•** More• EndUser 3ExecReportsLastiDayCalcuated wedkeeExecReportsRequestUser ActivitiesECS Day-to-day•Getting started Guide• Just CS Data* Daily Operations• Weekty prepRenewals and Upsell& Risk and Churn Analyticsautomate d-reports-track-interest.User ActivitiesImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsLeadershipSystem ReportsLeadership OperationsPortfolio Overview (Dashbo….NPS Report - GregClient Engagement OverviewRevenue Analytics(ablj Support Daily - in 4h 34 m100% (8•Tue 12 May 10:26:20• PLanhat Petko interest event 2026-05-11.mp4Call AJiminM Inbox=N= PH New Ul LoginGet Starting with J...*Q8• Mon 11 May 12:20=AppsBuildUser:6 New: |u User | +f WorkAppsChloe Onboarding..+ CX Journey SMB...E. PetkoModelEndUserEndUserEndUserDescriobonSave as Jiminny defaultResetd Add chartCreated ByCreated d... Updated d...reakurce: PeckoApr 30, 2026May 11, 2026Q Search fields.Global fiters8 Advanced filterDefautAggregation modeAvailability in PlanhatBuild PeriodCreated ByCreated dateCreated dateDescriptionFeaturedFormulaGroupLast BuiltMantOrderSourcesTypeUpdated ByUpdated datiUpdated dasiSystemInvalid form95 Al Notes: OffPetko ...reen ...7ГA03:1204:55ve...
|
NULL
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22907
|
978
|
22
|
2026-05-12T07:26:23.596117+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570783596_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:16
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"03:16","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
8157718412761432867
|
5921993631634033268
|
visual_change
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:16
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(ablj Support Daily - in 4h 34 mA100% (8•Tue 12 May 10:26:23• PLanhat Petko interest event 2026-05-11.mp4Screen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*Q8• Mon 11 May 12:20GreetScoreandre@ wilsoCall AJiminM Inbox=N X=AppsBuildu User;§ New: | u User | +ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.69f2c6529c9f21b58804f123© WorkAIKBChatPlayground Al....Jiminny - Calenda…M GMail• My Calendly - Eve...= PH New Ul LoginGet Starting with J...AppsChloe Onboarding…+ CX Journey SMB....Jiminny ~Content Explorer8 Metric -B Datasetautomated-reports-track-interestQ reports+ MetricData Exploreractivities.automated-reports-track-interestТугNotificationsOverviewRaw DataTraceEmail ManagerMorev EndUser 3Filter by Company• ExecReportsLast1DaySections +ExecReportsRequestUsiECS Day-to-day•Getting started Guide• Just CS Data* Daily Operations• Weekty prepRenewals and UpsellRisk and Churn Analyticsautomated-reports-track-interestImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsw1 2026NQ 2026W3 2026W4 2026N5 2026wб 2026×7 2026w8 2026N9 2026WEEKSSUMLeadershipSystem ReportsLeadership OperationsPortfolio Overview (Dashbo…NPS Report - GregClient Engagement OverviewRevenue AnalyticsNo groups found+ Show fui listE. Petko6 Feb 11, 2026 - May 10, 2026automated-reports-track-interest4= Al Notes: OffPetko ...een .703:1504:55ve...
|
22906
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22908
|
978
|
23
|
2026-05-12T07:26:26.622622+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570786622_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:18
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"03:18","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
5125661583244310997
|
-3311502979962762636
|
visual_change
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:18
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(abl• PLanhat Petko interest event 2026-05-11.mp4j Support Daily - in 4h 34 m100% (Tue 12 May 10:26:26Screen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*8• Mon 11 May 12:20GreetScoreandre@ wilsoCall AJiminM Inbox=NAppsBuildUser:§ New: | u User | +ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.69f2c6529c9f21b58804f123WorkAIKB• ChatPlayground Al...Jiminny - Calenda…M GMail• My Calendly - Eve...= PH New Ul LoginGet Starting with J...AppsChloe Onboarding..+ CX Journey SMB...Jiminny ~Content Explorer8 Metric -B Datasetautomated-reports-track-interestQ reports+ MetricData ExplorerNotificationsEmail ManagerMoreactivities.automated-reports-track-interestТугOverviewRaw DataTrace• EndUser 3Raw DataExecReportsLast1DaySections +CS Day-to-day•Getting started Guide• Just CS Data+ Daily Operations• Weekty prepERenewals and UpsellRisk and Churn AnalyticsExecReportsRequestautomated-reports-track-interestCalUsiUsiCompanyMeouoooecomUserNate ReeseCitelineCloud GatewayS, GowthamRosie StewartLloyd's List IntelligenceAPLYIDToby NunnToby TaylorBiP SolutionsSean McmahonImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsCloud GatewayRuby KuzemkoSiphesihle JohnsonDaniel AbjörnssonLeadershipSystem ReportsLeadership OperationsPortfolio Overview (Dashbo….NPS Report - GregClient Engagement OverviewRevenue AnalyticsAnyVan.comMoxsoSupersideSensatStreet GroupPranjalya ShukdaHarry AtkinsonAmy DawberRedaptiveJibbleCAninaDerek LamberthAntoine Demaile7Eventсольдонтероль-роск"икстеautomated-reports-track-interestautomated-reports-track-interesttomated-reports-track-interestautomated-reports-track-interestautomated-reports-track-interestautomated-reports-track-interestautomated-reports-track-interestautomated-reports-track-interestautomated-reports-track-interestautomated-reports-track-interestPetkoFilter by CompanyTimeMay 8, 2026 15:55:12Ingestion AtMay 8, 2026 15:55:16May 8, 2026 12:35:02May 8, 2026 12:35:15May 7, 2026 14:54:43May 7, 2026 14:54:50May 6, 2026 21-05:42May 6, 2026 21:05:51May 6, 2026 10:06:46May 6, 2026 10:07:03May 5, 2026 14:34:37May 5, 2026 14:34:53May 5, 2026 13:04:45May 5, 2026 13:04:46May 5, 2026 1117:40May 5, 2026 08-10:30May 4, 2026 22:12:54May 5, 2026 11:11:45May 5,2May 4,4= Al Notes: OffMay 1, 2026 15:54:44May 1, 2026 09-34:40Apr 30, 2026 17.13:54Apr 30, 2026 14:25-35May 1, 2May 1,2Apr 30.Apr 30Petko ...een .03:1804:55ve...
|
NULL
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22909
|
978
|
24
|
2026-05-12T07:26:28.008354+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570788008_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:20
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"03:20","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
8779344353986525696
|
5920867455758764660
|
click
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:20
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(abl• PLanhat Petko interest event 2026-05-11.mp4j Support Daily - in 4h 34 m100% (Tue 12 May 10:26:27Screen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*8• Mon 11 May 12:20GreetScoreandre@ wilsoCall AJiminM Inbox=N=AppsBuildUser:§ New: | u User | +ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.69f2c6529c9f21b58804f123WorkAIKB• ChatPlayground Al...Jiminny - Calenda…M GMail• My Calendly - Eve...= PH New Ul LoginGet Starting with J...AppsChloe Onboarding..+ CX Journey SMB...Jiminny ~Content Explorer8 Metric -B Datasetautomated-reports-track-interestQ reports+ MetricData ExplorerNotificationsEmail ManagerMoreactivities.automated-reports-track-interestТугOverviewRaw DataTrace• EndUser 3Raw DataExecReportsLastiDaySections +CS Day-to-day•Getting started Guide• Just CS Data+ Daily Operations• Weekty prepERenewals and UpsellRisk and Churn AnalyticsExecReportsRequestautomated-reports-track-interestCalUsiUsiCompanyMeoooocomUserNate ReeseCitelineCloud GatewayS, GowthamRosie StewartToby NunnLloyd's List IntelligenceAPLYIDToby TayiorBiP SolutionsSean McmahonImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsCloud GateRuby KuzemkoSiphesihle JohnsonDaniel AbjörnssonLeadershipSystem ReportsLeadership OperationsPortfolio Overview (Dashbo….NPS Report - GregClient Engagement OverviewRevenue AnalyticsAnyVan.comMoxsoSupersideSensatStreet GroupPranjalya ShukdaHarry AtkinsonAmy DawberRedaptiveJibbleCAninaDerek LamberthAntoine DemaileEventслолькоонтероль-роск"икстеautomated-reports-track-interestautomated-reports-track-interestautomated-reports-track-interestautomated-reports-track-interestautomated-reports-track-interestautomated-reports-track-interestautomated-reports-track-interestautomated-reports-track-interestautomated-reports-track-interestautomated-reports-track-interestE PetkoFilter by CompanyTimeMay 8, 2026 15:55:12Ingestion AtMay 8, 2026 15:55:16May 8, 2026 12:35:02May 8, 2026 12:35:15May 7, 2026 14:54:43May 7, 2026 14:54:50May 6, 2026 21-05:42May 6, 2026 21:05:51May 6, 2026 10:06:46May 6, 2026 10:07:03May 5, 2026 14:34:37May 5, 2026 14:34:53May 5, 2026 13:04:45May 5, 2026 13:04:46May 5, 2026 1117:40May 5, 2026 08-10:30May 4, 2026 22:12:54May 5, 2026 11:11:45May 5,2May 4, 34= Al Notes: OffMay 1, 2026 15:54:44May 1, 2026 09-34:40Apr 30, 2026 17.13:54Apr 30, 2026 14:25-35May 1, 2May 1,2Apr 30.Apr 30AN 30 3038 n8-na-naPetko ...een .03:1904:55ve...
|
22908
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22911
|
978
|
25
|
2026-05-12T07:26:33.839058+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570793839_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Petko Kashinski
Screen share
Chrome
+
%
File
Edit
Petko Kashinski
Screen share
Chrome
+
%
File
Edit
View
History
Bookmarks
Profiles
Tab
Window
Help
Work
Greet
Score
andre
• wilso
2.
Call A
Jimin
Inbox
NX
の
Q
8•
Mon 11 May 12:20
ニ Apps
Build
User
New
u User
→
ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.69f2c6529c9f21b58804f123
E Work
■ AIKB
ChatPlayground Al...
Jiminny - Calenda...
M
GMail
My Calendly - Eve...
= PH New Ul Login
Get Starting with J...
■ Apps
Jiminny ~
Search Jiminny
Content Explorer
8 Metric
€ Dataset
automated-reports trackimeres
+ Metric
Data Explorer
" Notifications
* Email Manager
Q reports
Name
3 n
Tyr
activities.automated-reports-track-interest
Raw Data
Trace
EndUser 3
Raw Data
ExecReportsLast1Day
Sections -
CS Day-to-day *
E
Getting started Guide
• Just CS Data
* Daily Operations
E
E
H
• Weekly prep
Renewals and Upsell
Risk and Churn Analytics
ExecReportsRequest
C
automated-reports-track-interest
UsI
Company
rtaoutdoor.com
Cloud Gateway
User
Nate Reese
S, Gowtham
Rosie Stewart...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Petko Kashinski\nScreen share\nChrome","depth":2,"bounds":{"left":0.0022771326,"top":0.039010823,"width":0.07848837,"height":0.067655675},"on_screen":true,"lines":[{"char_start":0,"char_count":16,"bounds":{"left":0.0022771326,"top":0.039010823,"width":0.07848837,"height":0.016469594}},{"char_start":16,"char_count":13,"bounds":{"left":0.0022771326,"top":0.062255677,"width":0.05377907,"height":0.014304527}},{"char_start":29,"char_count":6,"bounds":{"left":0.028439922,"top":0.095033295,"width":0.031976745,"height":0.011633199}}],"value":"Petko Kashinski\nScreen share\nChrome","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+","depth":2,"bounds":{"left":0.772626,"top":0.048500497,"width":0.013081395,"height":0.020939758},"on_screen":true,"value":"+","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"%","depth":2,"bounds":{"left":0.8031492,"top":0.046173856,"width":0.015988372,"height":0.0232664},"on_screen":true,"value":"%","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"File\nEdit\nView\nHistory\nBookmarks\nProfiles\nTab\nWindow","depth":2,"bounds":{"left":0.070591085,"top":0.095033295,"width":0.2630814,"height":0.013959839},"on_screen":true,"value":"File\nEdit\nView\nHistory\nBookmarks\nProfiles\nTab\nWindow","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Help","depth":2,"bounds":{"left":0.3438469,"top":0.095033295,"width":0.018895349,"height":0.013959839},"on_screen":true,"value":"Help","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Work\nGreet\nScore\nandre\n• wilso","depth":2,"bounds":{"left":0.12437016,"top":0.12483798,"width":0.23110466,"height":0.016986625},"on_screen":true,"value":"Work\nGreet\nScore\nandre\n• wilso","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"2.\nCall A\nJimin\nInbox\nNX","depth":2,"bounds":{"left":0.3816376,"top":0.095033295,"width":0.15697674,"height":0.044206157},"on_screen":true,"lines":[{"char_start":0,"char_count":3,"bounds":{"left":0.52407944,"top":0.095033295,"width":0.010174419,"height":0.01628648}},{"char_start":3,"char_count":7,"bounds":{"left":0.3816376,"top":0.12752008,"width":0.021802325,"height":0.011719371}},{"char_start":10,"char_count":6,"bounds":{"left":0.42814922,"top":0.12760626,"width":0.018895349,"height":0.011633199}},{"char_start":16,"char_count":6,"bounds":{"left":0.47320735,"top":0.12760626,"width":0.020348836,"height":0.011633199}},{"char_start":22,"char_count":2,"bounds":{"left":0.52138036,"top":0.12752008,"width":0.017233986,"height":0.011719371}}],"value":"2.\nCall A\nJimin\nInbox\nNX","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"の\nQ\n8•\nMon 11 May 12:20","depth":2,"bounds":{"left":0.6984981,"top":0.0926528,"width":0.13662791,"height":0.016340336},"on_screen":true,"value":"の\nQ\n8•\nMon 11 May 12:20","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ニ Apps","depth":2,"bounds":{"left":0.5531492,"top":0.12752008,"width":0.03197674,"height":0.014304527},"on_screen":true,"value":"ニ Apps","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Build\nUser\nNew\nu User","depth":2,"bounds":{"left":0.6112888,"top":0.12760626,"width":0.15552326,"height":0.0116332},"on_screen":true,"value":"Build\nUser\nNew\nu User","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"→","depth":2,"bounds":{"left":0.028439922,"top":0.16715913,"width":0.00872093,"height":0.013959839},"on_screen":true,"value":"→","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.69f2c6529c9f21b58804f123","depth":2,"bounds":{"left":0.089486435,"top":0.16715913,"width":0.45348835,"height":0.01628648},"on_screen":true,"value":"ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.69f2c6529c9f21b58804f123","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"E Work","depth":2,"bounds":{"left":0.7813469,"top":0.16685753,"width":0.030523255,"height":0.014304527},"on_screen":true,"value":"E Work","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"■ AIKB","depth":2,"bounds":{"left":0.0066375965,"top":0.20438537,"width":0.030523255,"height":0.011643971},"on_screen":true,"value":"■ AIKB","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ChatPlayground Al...","depth":2,"bounds":{"left":0.05896318,"top":0.20438537,"width":0.06831395,"height":0.011643971},"on_screen":true,"value":"ChatPlayground Al...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jiminny - Calenda...\nM\nGMail","depth":2,"bounds":{"left":0.14907946,"top":0.20205873,"width":0.111918606,"height":0.013970611},"on_screen":true,"value":"Jiminny - Calenda...\nM\nGMail","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"My Calendly - Eve...\n= PH New Ul Login\nGet Starting with J...\n■ Apps","depth":2,"bounds":{"left":0.2813469,"top":0.20172481,"width":0.27906975,"height":0.014304527},"on_screen":true,"value":"My Calendly - Eve...\n= PH New Ul Login\nGet Starting with J...\n■ Apps","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jiminny ~","depth":2,"bounds":{"left":0.018265504,"top":0.2392742,"width":0.030523255,"height":0.011643971},"on_screen":true,"value":"Jiminny ~","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Search Jiminny","depth":2,"bounds":{"left":0.30293432,"top":0.23903601,"width":0.045480527,"height":0.0124630835},"on_screen":true,"value":"Search Jiminny","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Content Explorer","depth":2,"bounds":{"left":0.019718995,"top":0.27145937,"width":0.049418602,"height":0.012031744},"on_screen":true,"value":"Content Explorer","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"8 Metric","depth":2,"bounds":{"left":0.1330233,"top":0.26916102,"width":0.029205333,"height":0.014700397},"on_screen":true,"value":"8 Metric","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"€ Dataset","depth":2,"bounds":{"left":0.18396318,"top":0.26953128,"width":0.03197674,"height":0.011762457},"on_screen":true,"value":"€ Dataset","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"automated-reports trackimeres","depth":2,"bounds":{"left":0.31332365,"top":0.26953128,"width":0.09156977,"height":0.007292292},"on_screen":true,"value":"automated-reports trackimeres","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+ Metric","depth":2,"bounds":{"left":0.24789931,"top":0.3019978,"width":0.02765101,"height":0.011846064},"on_screen":true,"value":"+ Metric","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Data Explorer\n\" Notifications\n* Email Manager","depth":2,"bounds":{"left":0.008091086,"top":0.3160641,"width":0.05523256,"height":0.058209084},"on_screen":true,"lines":[{"char_start":0,"char_count":14,"bounds":{"left":0.019718995,"top":0.3160641,"width":0.04069767,"height":0.011719371}},{"char_start":14,"char_count":16,"bounds":{"left":0.008091087,"top":0.3393305,"width":0.049418602,"height":0.011697828}},{"char_start":30,"char_count":15,"bounds":{"left":0.008091086,"top":0.36259687,"width":0.05523256,"height":0.011676285}}],"value":"Data Explorer\n\" Notifications\n* Email Manager","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Q reports\nName","depth":2,"bounds":{"left":0.13309109,"top":0.3018565,"width":0.036337208,"height":0.03980062},"on_screen":true,"lines":[{"char_start":0,"char_count":10,"bounds":{"left":0.13309109,"top":0.3018565,"width":0.029069766,"height":0.011880943}},{"char_start":10,"char_count":4,"bounds":{"left":0.15053295,"top":0.33235055,"width":0.018895349,"height":0.009306559}}],"value":"Q reports\nName","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"3 n\nTyr","depth":2,"bounds":{"left":0.2813469,"top":0.3018565,"width":0.011627907,"height":0.042127263},"on_screen":true,"lines":[{"char_start":0,"char_count":4,"bounds":{"left":0.2813469,"top":0.3018565,"width":0.011627907,"height":0.011880943}},{"char_start":4,"char_count":3,"bounds":{"left":0.2813469,"top":0.33235055,"width":0.011627907,"height":0.011633199}}],"value":"3 n\nTyr","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"activities.automated-reports-track-interest","depth":2,"bounds":{"left":0.29733527,"top":0.30443087,"width":0.117732555,"height":0.011633199},"on_screen":true,"value":"activities.automated-reports-track-interest","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Raw Data\nTrace","depth":2,"bounds":{"left":0.332219,"top":0.33672377,"width":0.05232558,"height":0.009834362},"on_screen":true,"value":"Raw Data\nTrace","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"EndUser 3","depth":2,"bounds":{"left":0.15489341,"top":0.3579436,"width":0.036337208,"height":0.011859401},"on_screen":true,"value":"EndUser 3","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Raw Data","depth":2,"bounds":{"left":0.29878876,"top":0.37655672,"width":0.02616279,"height":0.012020973},"on_screen":true,"value":"Raw Data","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ExecReportsLast1Day","depth":2,"bounds":{"left":0.15489341,"top":0.3881899,"width":0.062499996,"height":0.011633199},"on_screen":true,"value":"ExecReportsLast1Day","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Sections -\nCS Day-to-day *\nE\nGetting started Guide\n• Just CS Data\n* Daily Operations\nE\nE\nH\n• Weekly prep\nRenewals and Upsell\nRisk and Churn Analytics","depth":2,"bounds":{"left":0.0066376,"top":0.41808078,"width":0.09593023,"height":0.16360803},"on_screen":true,"lines":[{"char_start":0,"char_count":11,"bounds":{"left":0.0066376,"top":0.41808078,"width":0.029069765,"height":0.007335378}},{"char_start":11,"char_count":16,"bounds":{"left":0.022625968,"top":0.439376,"width":0.05087209,"height":0.013959839}},{"char_start":27,"char_count":2,"bounds":{"left":0.008091086,"top":0.4626424,"width":0.00872093,"height":0.011633199}},{"char_start":29,"char_count":22,"bounds":{"left":0.02262597,"top":0.4626424,"width":0.06831395,"height":0.013959839}},{"char_start":51,"char_count":15,"bounds":{"left":0.024079459,"top":0.48334518,"width":0.04360465,"height":0.011870172}},{"char_start":66,"char_count":19,"bounds":{"left":0.02407946,"top":0.50659007,"width":0.055232555,"height":0.011891715}},{"char_start":85,"char_count":2,"bounds":{"left":0.008091086,"top":0.5254617,"width":0.0072674416,"height":0.013959839}},{"char_start":87,"char_count":2,"bounds":{"left":0.008091086,"top":0.54640144,"width":0.0072674416,"height":0.013959839}},{"char_start":89,"char_count":2,"bounds":{"left":0.008091086,"top":0.5673412,"width":0.00872093,"height":0.013959839}},{"char_start":91,"char_count":14,"bounds":{"left":0.024079457,"top":0.52536476,"width":0.04360465,"height":0.014304527}},{"char_start":105,"char_count":20,"bounds":{"left":0.024079459,"top":0.5486096,"width":0.06540697,"height":0.011751685}},{"char_start":125,"char_count":24,"bounds":{"left":0.024079459,"top":0.5696678,"width":0.07848837,"height":0.012020973}}],"value":"Sections -\nCS Day-to-day *\nE\nGetting started Guide\n• Just CS Data\n* Daily Operations\nE\nE\nH\n• Weekly prep\nRenewals and Upsell\nRisk and Churn Analytics","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ExecReportsRequest","depth":2,"bounds":{"left":0.15489341,"top":0.4161096,"width":0.059593022,"height":0.011633199},"on_screen":true,"value":"ExecReportsRequest","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"C","depth":2,"bounds":{"left":0.10402132,"top":0.439376,"width":0.00872093,"height":0.013959839},"on_screen":true,"value":"C","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"automated-reports-track-interest","depth":2,"bounds":{"left":0.15489341,"top":0.44402927,"width":0.094476745,"height":0.011633199},"on_screen":true,"value":"automated-reports-track-interest","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"UsI","depth":2,"bounds":{"left":0.2813469,"top":0.44402927,"width":0.011627907,"height":0.011633199},"on_screen":true,"value":"UsI","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Company\nrtaoutdoor.com","depth":2,"bounds":{"left":0.30169573,"top":0.41378295,"width":0.046511628,"height":0.03955288},"on_screen":true,"lines":[{"char_start":0,"char_count":8,"bounds":{"left":0.30169573,"top":0.41378295,"width":0.029069766,"height":0.011633199}},{"char_start":8,"char_count":14,"bounds":{"left":0.30169573,"top":0.44170263,"width":0.046511628,"height":0.011633199}}],"value":"Company\nrtaoutdoor.com","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Cloud Gateway","depth":2,"bounds":{"left":0.30169573,"top":0.49943778,"width":0.046511628,"height":0.012064058},"on_screen":true,"value":"Cloud Gateway","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"User\nNate Reese\nS, Gowtham\nRosie Stewart","depth":2,"bounds":{"left":0.40776598,"top":0.41378295,"width":0.040732082,"height":0.09771887},"on_screen":true,"lines":[{"char_start":0,"char_count":5,"bounds":{"left":0.40780038,"top":0.41378295,"width":0.015988372,"height":0.011633199}},{"char_start":5,"char_count":11,"bounds":{"left":0.40776598,"top":0.44143254,"width":0.03495254,"height":0.012173436}},{"char_start":16,"char_count":11,"bounds":{"left":0.40923065,"top":0.46947232,"width":0.034930147,"height":0.014259824}},{"char_start":27,"char_count":13,"bounds":{"left":0.40780038,"top":0.49943778,"width":0.040697675,"height":0.012064058}}],"value":"User\nNate Reese\nS, Gowtham\nRosie Stewart","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
3958349043302372281
|
-8229623488189884715
|
click
|
accessibility
|
NULL
|
Petko Kashinski
Screen share
Chrome
+
%
File
Edit
Petko Kashinski
Screen share
Chrome
+
%
File
Edit
View
History
Bookmarks
Profiles
Tab
Window
Help
Work
Greet
Score
andre
• wilso
2.
Call A
Jimin
Inbox
NX
の
Q
8•
Mon 11 May 12:20
ニ Apps
Build
User
New
u User
→
ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.69f2c6529c9f21b58804f123
E Work
■ AIKB
ChatPlayground Al...
Jiminny - Calenda...
M
GMail
My Calendly - Eve...
= PH New Ul Login
Get Starting with J...
■ Apps
Jiminny ~
Search Jiminny
Content Explorer
8 Metric
€ Dataset
automated-reports trackimeres
+ Metric
Data Explorer
" Notifications
* Email Manager
Q reports
Name
3 n
Tyr
activities.automated-reports-track-interest
Raw Data
Trace
EndUser 3
Raw Data
ExecReportsLast1Day
Sections -
CS Day-to-day *
E
Getting started Guide
• Just CS Data
* Daily Operations
E
E
H
• Weekly prep
Renewals and Upsell
Risk and Churn Analytics
ExecReportsRequest
C
automated-reports-track-interest
UsI
Company
rtaoutdoor.com
Cloud Gateway
User
Nate Reese
S, Gowtham
Rosie Stewart...
|
NULL
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22913
|
978
|
26
|
2026-05-12T07:26:35.723085+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570795723_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:22
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"03:22","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
-7120763378241335132
|
5925370166319517300
|
visual_change
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:22
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(ablj Support Daily - in 4h 34 mA100% (8•Tue 12 May 10:26:35• PLanhat Petko interest event 2026-05-11.mp4Screen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*8• Mon 11 May 12:20GreetScoreandre@ wilsoCall AJiminM Inbox=N=AppsBuildu User;§ New: | u User; | +ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.69f2c6529c9f21b58804f123@ WorkAIKBChatPlayground Al....Jiminny - Calenda…M GMail• My Calendly - Eve....= PH New Ul LoginGet Starting with J...Apps+ CX Journey SMB....Jiminny ~Content Explorer8 MetricB Datasetautomated-reports-track-interestQ reports+ MetricData Exploreractivities.automated-reports-track-interestТугNotificationsOverviewRaw DataTraceEmail ManagerMoreEndUser 3MetricsExecReportsLast1DayExecReportsRequestUsiECS Day-to-day•Getting started Guide• Just CS Data* Daily Operations• Weekty prepRenewals and UpsellRisk and Churn Analyticsautomated-reports-track-interestImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsw1 20261Q 2028#3 2026N4 2026LeadershipSystem ReportsLeadership OperationsPortfolio Overview (Dashbo…NPS Report - GregClient Engagement OverviewRevenue AnalyticsAdd a commentChloe Onboarding…Fiter by CompanyNS 2026WS 2026w7 2026W8 2026WEEKSSUMNo groups found+ Show fui listw10 2026E. Petko6 Feb 11, 2026 - May 10, 2026w12 2026Al Notes: OffPetko ...een .703:2204:55ve...
|
22911
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22914
|
978
|
27
|
2026-05-12T07:26:40.307647+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570800307_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:26
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"03:26","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
7291650253379792690
|
5922002426636537460
|
click
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:26
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(ablj Support Daily - in 4h 34 mA100% (8•Tue 12 May 10:26:40• PLanhat Petko interest event 2026-05-11.mp4Screen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*Q8• Mon 11 May 12:20GreetScoreandre@ wilsoCall AJiminM Inbox=N x=AppsBuildu User;§ New: | u User | +ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.69f2c6529c9f21b58804f123© WorkAIKBChatPlayground Al...Jiminny - Calenda…M GMail• My Calendly - Eve..= PH New Ul LoginGet Starting with J...AppsChloe Onboarding.+ CX Journey SMB....Jiminny ~Content Explorer8 Metric -B Datasetautomated-reports-track-interestQ reports+ MetricData Exploreractivities.automated-reports-track-interestТугNotificationsOverviewRaw DataTraceEmail ManagerMorev EndUser 3Metrics• ExecReportsLast1DaySections +ExecReportsRequestUsiECS Day-to-day•Getting started Guide• Just CS Data* Daily Operations• Weekty prepRenewals and UpsellRisk and Churn Analyticsautomated-reports-track-interestImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsDec 2025LeadershipSystem ReportsLeadership OperationsPortiolio Overview (Dashbo.NPS Report - GregClient Engagement OverviewRevenue AnalyticsAdd a commentE. PetkoFiter by Company6 Feb 11, 2026 - May 10, 2026automated-reports-track-ipterestFeo 2026MONTHSSUM ~No groups foundAl Notes: Off+ Show fui listPetko ...een .703:2604:55ve...
|
NULL
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22916
|
978
|
28
|
2026-05-12T07:26:41.390539+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570801390_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:27
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"03:27","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
6925900259381019963
|
5926497165712820852
|
click
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:27
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(ablj Support Daily - in 4h 34 mA100% (8•Tue 12 May 10:26:41• PLanhat Petko interest event 2026-05-11.mp4Screen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*Q8• Mon 11 May 12:20GreetScoreandre@ wilsoCall AJiminM Inbox=N x=AppsBuildu User:§ New: | u User; | +ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.69f2c6529c9f21b58804f123© WorkAIKBChatPlayground Al....Jiminny - Calenda….M GMail• My Calendly - Eve....= PH New Ul LoginGet Starting with J...AppsChloe Onboarding.+ CX Journey SMB....Jiminny ~Content Explorer8 Metric -B Datasetautomated-reports-track-interestQ reports+ MetricData Exploreractivities.automated-reports-track-interestТугNotificationsOverviewRaw DataTraceEmail ManagerMore• EndUser 3Metrics• ExecReportsLast1DayExecReportsRequestUsiECS Day-to-day•Getting started Guide• Just CS Data* Daily Operations• Weekty prepRenewals and UpsellRisk and Churn Analyticsautomated-reports-track-interestImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsDec 2025LeadershipSystem ReportsLeadership OperationsPortiolio Overview (Dashbo.NPS Report - GregClient Engagement OverviewRevenue AnalyticsAdd a commentFiter by CompanyMONTHSSUMNo groups found+ Show fuh listE. Petko6 Feb 11, 2026 - May 10, 2026automated-reports-track-interestFeb 2026Mar 2026Al Notes: OffPetko ...reen ...703:2704:55ve...
|
22914
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22917
|
978
|
29
|
2026-05-12T07:26:51.139766+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570811139_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:37
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":true},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"03:37","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
2403429705623014897
|
5944519325261762166
|
visual_change
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:37
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(abl• PLanhat Petko interest event 2026-05-11.mp4j Support Daily - in 4h 34 m100% (8• Tue 12 May 10:26:50Screen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*8• Mon 11 May 12:21GreetScoreandre@ wilsoCall AJiminM Inbox=N=AppsBuildUser:6 New: |u User | +ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5WorkAIKB• ChatPlayground Al...Jiminny - Calenda….M GMail• My Calendly - Eve....= PH New Ul LoginGet Starting with J...AppsChloe Onboarding….+ CX Journey SMB....Jiminny ~Content Explorer8 Metric -ontasetplaybackVisitedQ playback+ Metricactivities. playbackVisitedData ExplorerNotificationsEmail ManagerMoreSections +CS Day-to-day•Getting started GuideJust CS Data+ Daily Operations• Weekty prepERenewals and UpsellRisk and Churn AnalyticsТугOverviewTrach- Company 2Raw Data• Playback Adoption AvgCal• Playback AdoptionComparyAnyVan.comEndUser• JUsers Playback Adoption• Playback Adoption (Last 7 days)• Playback AdoptionplaybackVisitedCalCalCalUsBrowzwearMoxsoBT Local Business Oxford & BucksTHRIVEImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsTHRIVEBT Local Business SevernsideSafe and Secure Home InsuranceBT Local Business SevernsideLeadershipSystem ReportsLeadership OperationsPortfolio Overview (Dashbo….NPS Report - GregClient Engagement OverviewRevenue AnalyticsStreet GroupSafe and Secure Home InsuranceConnectdTHRIVEUserMarcus PJonatht MacaulayKatarzyna NowakowskaBen CopelinLouise CameronLouise CameronCharlie DoddJess SykesCharlie DoddAndy FisherJess SykesTom ZiniBen CopelinLouise Cameron7EventplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitednisharWMiitalPetkoFilter by CompanyTimeMay 11, 2026 09-20:47Ingestion AtMay 11, 2026 09:20:51May 11, 2026 09:20:45May 11, 2026 09:20:51May 11, 2026 09:20:32May 11, 2026 09:20:39May 11, 2026 09-20:14May 11, 2026 09:20:24May 11, 2026 09:20:13May 11, 2026 09:20:24May 11, 2026 09:19:53May 11, 2026 09:20:07May 11, 2026 09:19:52May 11, 2026 09:19:41May 11, 2026 09:19:54May 11, 2026 09:19:39May 11, 2026 09:19-34May 11, 2026 09-19:34May 11, 2026 09:19:54May 11May 11*= Al Notes: OffMay 11, 2026 09-19-26May 11, 2026 09:19:16May 11, 2026 09:19:11May 11,May 11May 11May T1Petko ...een .ГА03:3604:55ve...
|
NULL
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22918
|
978
|
30
|
2026-05-12T07:26:58.104090+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570818104_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:44
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":true},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"03:44","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
-6914568849628132377
|
5926497231244626550
|
click
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:44
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(abl• PLanhat Petko interest event 2026-05-11.mp4j Support Daily - in 4h 34 mA100% (8• Tue 12 May 10:26:57Screen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*GreetScoreandre@ wilsoCall AJiminM Inbox=N=AppsBuildQ8• Mon 11 May 12:21User§ New: | u User | +ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5WorkAIKB• ChatPlayground Al...Chloe Onboarding….+ CX Journey SMB...Jiminny ~Content ExplorerData ExplorerNotificationsEmail ManagerMoreSections +CS Day-to-day•Getting started Guide• Just CS Data+ Daily Operations# Weekty prepERenewals and UpsellRisk and Churn AnalyticsImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsLeadershipSystem ReportsLeadership OperationsPortfolio Overview (Dashbo….NPS Report - GregClient Engagement OverviewRevenue AnalyticsJiminny - Calenda….M GMail• My Calendly - Eve..= PH New Ul LoginGet Starting with J...Apps8 Metric -B DatasetplaybackVisitedQ playback+ Metricactivities. playbackVisitedТугOverviewTracel- Company 2Raw Data•Playback Adoption AvgCal• Playback AdoptionComparyAnyVan.comEndUserJUsers Playback AdoptionPlayback Adoption (Last 7 days)• Playback AdoptionplaybackVisitedCalCalCaUsBrowzwearMoxsoBT Local Business Oxford & BucksTHRIVETHRIVEBT Local Business SevernsideSafe and Secure Home InsuranceBT Local Business SevernsideStreet GroupSafe and Secure Home InsuranceConnectdTHRIVEUserMarcus PJonatht MacaulayKatarzyna NowakowskaBen CopelinLouise CameronLouise CameronCharlie DoddJess SykesCharlie DoddAndy FisherJess SykesTom ZiniBen CopelinLouise CameronEventplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitednishsrMielalPetkoFilter by CompanyTimeMay 11, 2026 09-20:47Ingestion AtMay 11, 2026 09:20:51May 11, 2026 09:20:45May 11, 2026 09:20:51May 11, 2026 09-20:32May 11, 2026 09:20:39May 11, 2026 09-20:14May 11, 2026 09:20:13May 11, 2026 09:20:24May 11, 2026 09:20:24May 11, 2026 09:19:53May 11, 2026 09:20:07May 11, 2026 09:19:52May 11, 2026 09:19:41May 11, 2026 09:19:39May 11, 2026 09:19-34May 11, 2026 09-19:34May 11, 2026 09:19:54May 11, 2026 09:19:54May 11May 114= Al Notes: OffMay 11, 2026 09-19-26May 11, 2026 09:19:16May 11, 2026 09:19:11May 11,May 11,May 11May T1Petko ...een .ГА03:4304:55ve...
|
22917
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22920
|
978
|
31
|
2026-05-12T07:27:01.116634+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570821116_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:47
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":true},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"03:47","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
-6475079576352869478
|
6498454380699454068
|
click
|
hybrid
|
NULL
|
rewind
play/pause
fast forward
mute
More Controls
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:47
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4
QuickTime PlayerFileEditViewWindowHelp(abl• PLanhat Petko interest event 2026-05-11.mp4j Support Daily - in 4h 34 m100% (Tue 12 May 10:27:00Screen snareChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*GreetScoreandre@ wilsoCall AJiminM Inbox=N=AppsBuildQ8• Mon 11 May 12:21User:§ New: | u User; | +ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5f WorkAIKBJiminny ~• ChatPlayground Al...Jiminny - Calenda….M GMail• My Calendly - Eve....= PH New Ul LoginGet Starting with J...AppsChloe Onboarding….+ CX Journey SMB...Content Explorer8 Metric -ontasetplaybackVisitedQ playback+ Metricactivities. playbackVisitedData ExplorerNotificationsEmail ManagerMoreSections +CS Day-to-day•Getting started GuideJust CS Data+ Daily Operations• Weekty prepERenewals and UpsellRisk and Churn AnalyticsТугOverviewTracel~ Company 2Raw Data• Playback Adoption AvgCal• Playback AdoptionComparyAnyVan.comEndUser• JUsers Playback Adoption• Playback Adoption (Last 7 days)• Playback AdoptionplaybackVisitedCalCalCalUsBrowzwearMoxsoBT Local Business Oxford & BucksTHRIVEImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsTHRIVEBT Local Business SevernsideSafe and Secure Home InsuranceBT Local Business SevernsideLeadershipSystem ReportsLeadership OperationsPortfolio Overview (Dashbo….NPS Report - GregClient Engagement OverviewRevenue AnalyticsStreet GroupSafe and Secure Home InsuranceConnectdTHRIVEUserMarcus PJonathhd MacewtryKatarzyna NowakowskaBen CopelinLouise CameronLouise CameronCharlie DoddJess SykesCharlie DoddAndy FisherJess SykesTom ZiniBen CopelinLouise Cameron7EventplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitednishsrMietalPetkoFilter by CompanyTimeMay 11, 2026 09-20:47Ingestion AtMay 11, 2026 09:20:51May 11, 2026 09:20:45May 11, 2026 09:20:51May 11, 2026 09-20:32May 11, 2026 09:20:39May 11, 2026 09-20:14May 11, 2026 09:20:24May 11, 2026 09:20:13May 11, 2026 09:20:24May 11, 2026 09:19:53May 11, 2026 09:20:07May 11, 2026 09:19:52May 11, 2026 09:19:41May 11, 2026 09:19:39May 11, 2026 09:19-34May 11, 2026 09-19:34May 11, 2026 09:19:54May 11, 2026 09:19:54May 11May 114= Al Notes: OffMay 11, 2026 09-19-26May 11, 2026 09:19:16May 11, 2026 09:19:11May 11,May 11,May 11May T1Petko ...een .•B10ГА03:4604:55ve...
|
NULL
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22922
|
978
|
32
|
2026-05-12T07:27:03.215908+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570823215_m1.jpg...
|
QuickTime Player
|
PLanhat Petko interest event 2026-05-11.mp4
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Petko Kashinski
Screen share
Chrome
File
Edit
View Petko Kashinski
Screen share
Chrome
File
Edit
View
History
Bookmarks
Profiles
Tab
Window
Help
Work
Greet
Score
andre
@ wilso
2.
Call A
Jimin
Inbox
INX
⑦
口
Q
+
%
8•
Mon 11 May 12:21
= Apps
Build
User
New
u User
→
ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5
★
E Work
■ AIKB
ChatPlayground Al...
Jiminny - Calenda...
M
GMail
My Calendly - Eve...
= PH New Ul Login
Get Starting with J...
Apps
Chloe Onboarding...
+ CX Journey SMB...
Jiminny
Search Jiminny
Content Explorer
8 Metric ~
€ Dataset
playbackVisited
Data Explorer
* Notifications
* Email Manager
Q playback
Name
Company 2
+ Metric
6 п
Tyr
activities.playbackVisited
Overview
Raw Data
Trace
Raw Data
Playback Adoption Avg
Cal
Sections -
CS Day-to-day *
Getting started Guide
• Just CS Data
* Daily Operations
• Weekly prep
Renewals and Upsell
Risk and Churn Analytics
• Playback Adoption
Company
AnyVan.com
EndUser
Browzwear
JUsers Playback Adoption
Cal
Moxso
Playback Adoption (Last 7 days)
• Playback Adoption
playbackVisited
Cal
Cal
UsI
BT Local Business Oxford & Bucks
THRIVE
THRIVE
Implementation
目
BT Local Business Severnside
Impl Projects
Trial Opps (Under Review)
Safe and Secure Home Insurance
Stoyan's clients
Leadership -
System Reports
Leadership Operations
Portfolio Overview (Dashbo...
NPS Report - Greg
Client Engagement Overview
Revenue Analytics
BT Local Business Severnside
Street Group
Safe and Secure Home Insurance
Connectd
BT Local Business Oxford & Bucks
THRIVE
RT I ocal Rucinace Covercide
zoom
&+
必
User
Marcus P
Jonathal Macaulay
Katarzyna Nowakowska
Ben Copelin
Louise Cameron
Louise Cameron
Charlie Dodd
Jess Sykes
Charlie Dodd
Andy Fisher
Jess Sykes
Tom Zini
Ben Copelin
Louise Cameron
Event
playbackVisited
playbackVisited
playbackVisited
playbackVisited
playbackVisited
playbackVisited
playbackVisited
playbackVisited
playbackVisited
playbackVisited
playbackVisited
playbackVisited
playbackVisited
nlouhockV/icitoa
4 ®
Petko
Filter by Company
Time
May 11, 2026 09:20:47
Ingestion At
May 11, 2026 09:20:51
May 11, 2026 09:20:45
May 11, 2026 09:20:51
May 11, 2026 09:20:32
May 11, 2026 09:20:39
May 11, 2026 09:20:14
May 11, 2026 09:20:13
May 11, 2026 09:20:24
May 11, 2026 09:19:53
May 11, 2026 09:19:52
May 11, 2026 09:20:24
May 11, 14:26 09:20:07
May 11, 2026 09:19:54
May 11, 2026 09:19:41
May 11, 2026 09:19:39
May 11, 2026 09:19:34
May 11, 2026 09:19:34
May 11, 2026 09:19:26
May 11, 2026 09:19:16
May 11, 2026 09:19:11
May 11, 2026 09:19:54
May 11,
May 11,
May 11,
May 11,
May 11,
May 11,
7= Al Notes: Off
Mou 11 วกวด กด-10:02
Petko ...
reen ...
X
080•
Leave
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:47
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Petko Kashinski\nScreen share\nChrome","depth":2,"bounds":{"left":0.0022771326,"top":0.039010823,"width":0.07848837,"height":0.067655675},"on_screen":true,"lines":[{"char_start":0,"char_count":16,"bounds":{"left":0.0022771326,"top":0.039010823,"width":0.07848837,"height":0.016469594}},{"char_start":16,"char_count":13,"bounds":{"left":0.0022771326,"top":0.062255677,"width":0.05377907,"height":0.014304527}},{"char_start":29,"char_count":6,"bounds":{"left":0.028439922,"top":0.095033295,"width":0.031976745,"height":0.011633199}}],"value":"Petko Kashinski\nScreen share\nChrome","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"File\nEdit\nView\nHistory\nBookmarks\nProfiles\nTab\nWindow\nHelp\nWork\nGreet\nScore\nandre\n@ wilso","depth":2,"bounds":{"left":0.070591085,"top":0.095033295,"width":0.29215115,"height":0.046791315},"on_screen":true,"lines":[{"char_start":0,"char_count":5,"bounds":{"left":0.070591085,"top":0.095033295,"width":0.014534883,"height":0.011633199}},{"char_start":5,"char_count":5,"bounds":{"left":0.09530039,"top":0.095033295,"width":0.015988372,"height":0.011633199}},{"char_start":10,"char_count":5,"bounds":{"left":0.12146318,"top":0.095033295,"width":0.018895349,"height":0.011633199}},{"char_start":15,"char_count":8,"bounds":{"left":0.15053295,"top":0.095033295,"width":0.02761628,"height":0.013959839}},{"char_start":23,"char_count":10,"bounds":{"left":0.18832365,"top":0.095033295,"width":0.04215116,"height":0.011633199}},{"char_start":33,"char_count":9,"bounds":{"left":0.24064922,"top":0.095033295,"width":0.029069766,"height":0.011633199}},{"char_start":42,"char_count":4,"bounds":{"left":0.2784399,"top":0.095033295,"width":0.014534883,"height":0.011633199}},{"char_start":46,"char_count":7,"bounds":{"left":0.30314922,"top":0.095033295,"width":0.030523255,"height":0.011633199}},{"char_start":53,"char_count":5,"bounds":{"left":0.3438469,"top":0.095033295,"width":0.018895349,"height":0.013959839}},{"char_start":58,"char_count":5,"bounds":{"left":0.12437016,"top":0.12760626,"width":0.020348838,"height":0.0116332}},{"char_start":63,"char_count":6,"bounds":{"left":0.19849807,"top":0.1299329,"width":0.018895347,"height":0.006979919}},{"char_start":69,"char_count":6,"bounds":{"left":0.24500969,"top":0.12760626,"width":0.018895349,"height":0.011633199}},{"char_start":75,"char_count":6,"bounds":{"left":0.29006782,"top":0.12760626,"width":0.020348838,"height":0.011633199}},{"char_start":81,"char_count":7,"bounds":{"left":0.32204458,"top":0.12483798,"width":0.03343023,"height":0.016986625}}],"value":"File\nEdit\nView\nHistory\nBookmarks\nProfiles\nTab\nWindow\nHelp\nWork\nGreet\nScore\nandre\n@ wilso","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"2.\nCall A\nJimin\nInbox\nINX","depth":2,"bounds":{"left":0.3816376,"top":0.095033295,"width":0.15697674,"height":0.044206157},"on_screen":true,"lines":[{"char_start":0,"char_count":3,"bounds":{"left":0.52407944,"top":0.095033295,"width":0.010174419,"height":0.01628648}},{"char_start":3,"char_count":7,"bounds":{"left":0.3816376,"top":0.12752008,"width":0.021802325,"height":0.011719371}},{"char_start":10,"char_count":6,"bounds":{"left":0.42814922,"top":0.12760626,"width":0.018895349,"height":0.011633199}},{"char_start":16,"char_count":6,"bounds":{"left":0.47175387,"top":0.12760626,"width":0.021802325,"height":0.011633199}},{"char_start":22,"char_count":3,"bounds":{"left":0.5066376,"top":0.12752008,"width":0.031976745,"height":0.011719371}}],"value":"2.\nCall A\nJimin\nInbox\nINX","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"⑦","depth":2,"bounds":{"left":0.5429748,"top":0.09270666,"width":0.010174419,"height":0.018613119},"on_screen":true,"value":"⑦","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"口","depth":2,"bounds":{"left":0.6040213,"top":0.095033295,"width":0.010174419,"height":0.013959839},"on_screen":true,"value":"口","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Q","depth":2,"bounds":{"left":0.7203004,"top":0.09270666,"width":0.00872093,"height":0.013959839},"on_screen":true,"value":"Q","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+\n%\n8•\nMon 11 May 12:21","depth":2,"bounds":{"left":0.74210274,"top":0.046173856,"width":0.09156977,"height":0.06281928},"on_screen":true,"lines":[{"char_start":0,"char_count":2,"bounds":{"left":0.772626,"top":0.048500497,"width":0.013081395,"height":0.020939758}},{"char_start":2,"char_count":2,"bounds":{"left":0.8031492,"top":0.046173856,"width":0.015988372,"height":0.0232664}},{"char_start":4,"char_count":3,"bounds":{"left":0.74210274,"top":0.0926528,"width":0.01598837,"height":0.016340336}},{"char_start":7,"char_count":16,"bounds":{"left":0.76390505,"top":0.0926528,"width":0.06976744,"height":0.016340336}}],"value":"+\n%\n8•\nMon 11 May 12:21","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"= Apps","depth":2,"bounds":{"left":0.5531492,"top":0.12752008,"width":0.03197674,"height":0.014304527},"on_screen":true,"value":"= Apps","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Build\nUser\nNew","depth":2,"bounds":{"left":0.6112888,"top":0.12760626,"width":0.10901163,"height":0.0116332},"on_screen":true,"value":"Build\nUser\nNew","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"u User","depth":2,"bounds":{"left":0.7362888,"top":0.1299329,"width":0.030523254,"height":0.009306558},"on_screen":true,"value":"u User","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"→","depth":2,"bounds":{"left":0.028439922,"top":0.16715913,"width":0.00872093,"height":0.013959839},"on_screen":true,"value":"→","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5\n★","depth":2,"bounds":{"left":0.08948644,"top":0.16715913,"width":0.5072674,"height":0.01628648},"on_screen":true,"value":"ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5\n★","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"E Work","depth":2,"bounds":{"left":0.7813469,"top":0.16685753,"width":0.030523255,"height":0.014304527},"on_screen":true,"value":"E Work","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"■ AIKB","depth":2,"bounds":{"left":0.0066375965,"top":0.20438537,"width":0.030523255,"height":0.011643971},"on_screen":true,"value":"■ AIKB","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"ChatPlayground Al...","depth":2,"bounds":{"left":0.05896318,"top":0.20438537,"width":0.06831395,"height":0.011643971},"on_screen":true,"value":"ChatPlayground Al...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jiminny - Calenda...\nM\nGMail\nMy Calendly - Eve...","depth":2,"bounds":{"left":0.14907946,"top":0.20205873,"width":0.1991279,"height":0.016652709},"on_screen":true,"value":"Jiminny - Calenda...\nM\nGMail\nMy Calendly - Eve...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"= PH New Ul Login\nGet Starting with J...\nApps\nChloe Onboarding...\n+ CX Journey SMB...","depth":2,"bounds":{"left":0.35983527,"top":0.20172481,"width":0.3764535,"height":0.014304527},"on_screen":true,"value":"= PH New Ul Login\nGet Starting with J...\nApps\nChloe Onboarding...\n+ CX Journey SMB...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jiminny","depth":2,"bounds":{"left":0.018265504,"top":0.23928496,"width":0.030523255,"height":0.011633199},"on_screen":true,"value":"Jiminny","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Search Jiminny","depth":2,"bounds":{"left":0.30314922,"top":0.2392742,"width":0.04505814,"height":0.011643971},"on_screen":true,"value":"Search Jiminny","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Content Explorer","depth":2,"bounds":{"left":0.019718995,"top":0.27145937,"width":0.049418602,"height":0.012031744},"on_screen":true,"value":"Content Explorer","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"8 Metric ~","depth":2,"bounds":{"left":0.13302368,"top":0.26908678,"width":0.03501855,"height":0.014848864},"on_screen":true,"value":"8 Metric ~","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"€ Dataset","depth":2,"bounds":{"left":0.18396318,"top":0.26953128,"width":0.03197674,"height":0.011762457},"on_screen":true,"value":"€ Dataset","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"playbackVisited","depth":2,"bounds":{"left":0.31332365,"top":0.26720464,"width":0.046511628,"height":0.009306559},"on_screen":true,"value":"playbackVisited","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Data Explorer\n* Notifications\n* Email Manager","depth":2,"bounds":{"left":0.008091086,"top":0.3160641,"width":0.05523256,"height":0.058209084},"on_screen":true,"lines":[{"char_start":0,"char_count":14,"bounds":{"left":0.019718995,"top":0.3160641,"width":0.04069767,"height":0.011719371}},{"char_start":14,"char_count":16,"bounds":{"left":0.008091087,"top":0.3393305,"width":0.049418602,"height":0.011697828}},{"char_start":30,"char_count":15,"bounds":{"left":0.008091086,"top":0.36259687,"width":0.05523256,"height":0.011676285}}],"value":"Data Explorer\n* Notifications\n* Email Manager","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Q playback\nName\nCompany 2","depth":2,"bounds":{"left":0.13305205,"top":0.30181006,"width":0.061085537,"height":0.06799294},"on_screen":true,"lines":[{"char_start":0,"char_count":11,"bounds":{"left":0.13305205,"top":0.30181006,"width":0.03350829,"height":0.012221564}},{"char_start":11,"char_count":5,"bounds":{"left":0.15053295,"top":0.33235055,"width":0.018895349,"height":0.009306559}},{"char_start":16,"char_count":9,"bounds":{"left":0.15489341,"top":0.3579436,"width":0.039244186,"height":0.0118594}}],"value":"Q playback\nName\nCompany 2","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"+ Metric\n6 п\nTyr","depth":2,"bounds":{"left":0.24789931,"top":0.3019978,"width":0.045075506,"height":0.04198595},"on_screen":true,"lines":[{"char_start":0,"char_count":9,"bounds":{"left":0.24789931,"top":0.3019978,"width":0.02765101,"height":0.011846064}},{"char_start":9,"char_count":4,"bounds":{"left":0.2813469,"top":0.30443087,"width":0.010174418,"height":0.007259978}},{"char_start":13,"char_count":3,"bounds":{"left":0.2813469,"top":0.3300239,"width":0.011627907,"height":0.013959839}}],"value":"+ Metric\n6 п\nTyr","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"activities.playbackVisited","depth":2,"bounds":{"left":0.29733527,"top":0.30443087,"width":0.07122093,"height":0.011633199},"on_screen":true,"value":"activities.playbackVisited","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Overview","depth":2,"bounds":{"left":0.29878876,"top":0.33700386,"width":0.02761628,"height":0.009306559},"on_screen":true,"value":"Overview","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Raw Data\nTrace","depth":2,"bounds":{"left":0.332219,"top":0.33672377,"width":0.05232558,"height":0.009834362},"on_screen":true,"value":"Raw Data\nTrace","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Raw Data","depth":2,"bounds":{"left":0.29878876,"top":0.37655672,"width":0.02616279,"height":0.012020973},"on_screen":true,"value":"Raw Data","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Playback Adoption Avg","depth":2,"bounds":{"left":0.15343992,"top":0.3881899,"width":0.06686046,"height":0.012010201},"on_screen":true,"value":"Playback Adoption Avg","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Cal","depth":2,"bounds":{"left":0.2813469,"top":0.3881899,"width":0.010174419,"height":0.009306559},"on_screen":true,"value":"Cal","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Sections -\nCS Day-to-day *\nGetting started Guide\n• Just CS Data\n* Daily Operations\n• Weekly prep\nRenewals and Upsell\nRisk and Churn Analytics\n• Playback Adoption\nCompany\nAnyVan.com\nEndUser\nBrowzwear\nJUsers Playback Adoption\nCal\nMoxso\nPlayback Adoption (Last 7 days)\n• Playback Adoption\nplaybackVisited\nCal\nCal\nUsI\nBT Local Business Oxford & Bucks\nTHRIVE\nTHRIVE\nImplementation\n目\nBT Local Business Severnside\nImpl Projects\nTrial Opps (Under Review)\nSafe and Secure Home Insurance\nStoyan's clients","depth":2,"bounds":{"left":0.0066376,"top":0.41321263,"width":0.39098838,"height":0.26813394},"on_screen":true,"value":"Sections -\nCS Day-to-day *\nGetting started Guide\n• Just CS Data\n* Daily Operations\n• Weekly prep\nRenewals and Upsell\nRisk and Churn Analytics\n• Playback Adoption\nCompany\nAnyVan.com\nEndUser\nBrowzwear\nJUsers Playback Adoption\nCal\nMoxso\nPlayback Adoption (Last 7 days)\n• Playback Adoption\nplaybackVisited\nCal\nCal\nUsI\nBT Local Business Oxford & Bucks\nTHRIVE\nTHRIVE\nImplementation\n目\nBT Local Business Severnside\nImpl Projects\nTrial Opps (Under Review)\nSafe and Secure Home Insurance\nStoyan's clients","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Leadership -\nSystem Reports\nLeadership Operations\nPortfolio Overview (Dashbo...\nNPS Report - Greg\nClient Engagement Overview\nRevenue Analytics","depth":2,"bounds":{"left":0.022625968,"top":0.7041713,"width":0.08284884,"height":0.14036317},"on_screen":true,"value":"Leadership -\nSystem Reports\nLeadership Operations\nPortfolio Overview (Dashbo...\nNPS Report - Greg\nClient Engagement Overview\nRevenue Analytics","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"BT Local Business Severnside\nStreet Group\nSafe and Secure Home Insurance\nConnectd\nBT Local Business Oxford & Bucks\nTHRIVE\nRT I ocal Rucinace Covercide","depth":2,"bounds":{"left":0.30142263,"top":0.6719861,"width":0.09620335,"height":0.18153177},"on_screen":true,"value":"BT Local Business Severnside\nStreet Group\nSafe and Secure Home Insurance\nConnectd\nBT Local Business Oxford & Bucks\nTHRIVE\nRT I ocal Rucinace Covercide","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"zoom","depth":2,"bounds":{"left":0.10111434,"top":0.89074415,"width":0.021802325,"height":0.009306559},"on_screen":true,"value":"zoom","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"&+","depth":2,"bounds":{"left":0.005184109,"top":0.95821667,"width":0.015988372,"height":0.023266397},"on_screen":true,"value":"&+","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"必","depth":2,"bounds":{"left":0.37291667,"top":0.95589006,"width":0.01744186,"height":0.0232664},"on_screen":true,"value":"必","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"User\nMarcus P\nJonathal Macaulay","depth":2,"bounds":{"left":0.40780038,"top":0.41378295,"width":0.056686044,"height":0.06979919},"on_screen":true,"value":"User\nMarcus P\nJonathal Macaulay","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Katarzyna Nowakowska\nBen Copelin","depth":2,"bounds":{"left":0.4077715,"top":0.49943778,"width":0.06834285,"height":0.04021938},"on_screen":true,"value":"Katarzyna Nowakowska\nBen Copelin","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Louise Cameron","depth":2,"bounds":{"left":0.40780038,"top":0.55803466,"width":0.047965113,"height":0.009349645},"on_screen":true,"value":"Louise Cameron","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Louise Cameron\nCharlie Dodd","depth":2,"bounds":{"left":0.40780038,"top":0.5859543,"width":0.046511628,"height":0.03955288},"on_screen":true,"value":"Louise Cameron\nCharlie Dodd","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jess Sykes","depth":2,"bounds":{"left":0.40776893,"top":0.64387375,"width":0.034946658,"height":0.012126275},"on_screen":true,"value":"Jess Sykes","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Charlie Dodd\nAndy Fisher","depth":2,"bounds":{"left":0.40925387,"top":0.6719861,"width":0.037790697,"height":0.039606735},"on_screen":true,"value":"Charlie Dodd\nAndy Fisher","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Jess Sykes\nTom Zini\nBen Copelin","depth":2,"bounds":{"left":0.40778393,"top":0.7300837,"width":0.03635367,"height":0.0679611},"on_screen":true,"value":"Jess Sykes\nTom Zini\nBen Copelin","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Louise Cameron","depth":2,"bounds":{"left":0.40780038,"top":0.8159254,"width":0.047965113,"height":0.009834362},"on_screen":true,"value":"Louise Cameron","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Event\nplaybackVisited\nplaybackVisited","depth":2,"bounds":{"left":0.51388514,"top":0.41378295,"width":0.04655145,"height":0.0697992},"on_screen":true,"value":"Event\nplaybackVisited\nplaybackVisited","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"playbackVisited\nplaybackVisited\nplaybackVisited\nplaybackVisited","depth":2,"bounds":{"left":0.5138567,"top":0.49986863,"width":0.0466083,"height":0.09771887},"on_screen":true,"value":"playbackVisited\nplaybackVisited\nplaybackVisited\nplaybackVisited","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"playbackVisited\nplaybackVisited\nplaybackVisited","depth":2,"bounds":{"left":0.51390505,"top":0.6162006,"width":0.046511628,"height":0.067472555},"on_screen":true,"value":"playbackVisited\nplaybackVisited\nplaybackVisited","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"playbackVisited\nplaybackVisited","depth":2,"bounds":{"left":0.51390505,"top":0.7022863,"width":0.046511628,"height":0.03955288},"on_screen":true,"value":"playbackVisited\nplaybackVisited","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"playbackVisited","depth":2,"bounds":{"left":0.51390505,"top":0.788372,"width":0.046511628,"height":0.011633199},"on_screen":true,"value":"playbackVisited","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"playbackVisited\nnlouhockV/icitoa","depth":2,"bounds":{"left":0.5153585,"top":0.8162917,"width":0.04505814,"height":0.037226237},"on_screen":true,"value":"playbackVisited\nnlouhockV/icitoa","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"4 ®","depth":2,"bounds":{"left":0.7624515,"top":0.2392742,"width":0.020348838,"height":0.011643971},"on_screen":true,"value":"4 ®","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Petko","depth":2,"bounds":{"left":0.8191376,"top":0.23928496,"width":0.018895349,"height":0.011633199},"on_screen":true,"value":"Petko","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Filter by Company","depth":2,"bounds":{"left":0.6912306,"top":0.37655672,"width":0.05232558,"height":0.012020973},"on_screen":true,"value":"Filter by Company","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Time\nMay 11, 2026 09:20:47","depth":2,"bounds":{"left":0.6214632,"top":0.41378295,"width":0.06395349,"height":0.041879516},"on_screen":true,"value":"Time\nMay 11, 2026 09:20:47","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Ingestion At\nMay 11, 2026 09:20:51","depth":2,"bounds":{"left":0.72756785,"top":0.4136106,"width":0.06395349,"height":0.042051863},"on_screen":true,"value":"Ingestion At\nMay 11, 2026 09:20:51","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"May 11, 2026 09:20:45","depth":2,"bounds":{"left":0.6214632,"top":0.47172275,"width":0.06395348,"height":0.011859401},"on_screen":true,"value":"May 11, 2026 09:20:45","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"May 11, 2026 09:20:51","depth":2,"bounds":{"left":0.72756785,"top":0.47172275,"width":0.0625,"height":0.011859401},"on_screen":true,"value":"May 11, 2026 09:20:51","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"May 11, 2026 09:20:32","depth":2,"bounds":{"left":0.6214632,"top":0.49943778,"width":0.06395348,"height":0.012064058},"on_screen":true,"value":"May 11, 2026 09:20:32","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"May 11, 2026 09:20:39","depth":2,"bounds":{"left":0.72756785,"top":0.49943778,"width":0.06540697,"height":0.012064058},"on_screen":true,"value":"May 11, 2026 09:20:39","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"May 11, 2026 09:20:14\nMay 11, 2026 09:20:13","depth":2,"bounds":{"left":0.6214632,"top":0.52778834,"width":0.0625,"height":0.042278063},"on_screen":true,"value":"May 11, 2026 09:20:14\nMay 11, 2026 09:20:13","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"May 11, 2026 09:20:24","depth":2,"bounds":{"left":0.727426,"top":0.52756286,"width":0.06569579,"height":0.014751065},"on_screen":true,"value":"May 11, 2026 09:20:24","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"May 11, 2026 09:19:53","depth":2,"bounds":{"left":0.6214632,"top":0.5859543,"width":0.062499996,"height":0.011827086},"on_screen":true,"value":"May 11, 2026 09:19:53","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"May 11, 2026 09:19:52","depth":2,"bounds":{"left":0.6214632,"top":0.613874,"width":0.062499996,"height":0.014304527},"on_screen":true,"value":"May 11, 2026 09:19:52","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"May 11, 2026 09:20:24\nMay 11, 14:26 09:20:07\nMay 11, 2026 09:19:54","depth":2,"bounds":{"left":0.72611433,"top":0.55803466,"width":0.06540697,"height":0.07040944},"on_screen":true,"value":"May 11, 2026 09:20:24\nMay 11, 14:26 09:20:07\nMay 11, 2026 09:19:54","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"May 11, 2026 09:19:41","depth":2,"bounds":{"left":0.6214632,"top":0.64412034,"width":0.0625,"height":0.011773229},"on_screen":true,"value":"May 11, 2026 09:19:41","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"May 11, 2026 09:19:39","depth":2,"bounds":{"left":0.6214632,"top":0.6719861,"width":0.06395348,"height":0.011687056},"on_screen":true,"value":"May 11, 2026 09:19:39","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"May 11, 2026 09:19:34","depth":2,"bounds":{"left":0.6214632,"top":0.69970113,"width":0.06395348,"height":0.014304527},"on_screen":true,"value":"May 11, 2026 09:19:34","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"May 11, 2026 09:19:34","depth":2,"bounds":{"left":0.6214632,"top":0.73009825,"width":0.06395348,"height":0.011740915},"on_screen":true,"value":"May 11, 2026 09:19:34","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"May 11, 2026 09:19:26","depth":2,"bounds":{"left":0.6214632,"top":0.7578133,"width":0.06395348,"height":0.011945572},"on_screen":true,"value":"May 11, 2026 09:19:26","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"May 11, 2026 09:19:16","depth":2,"bounds":{"left":0.6214632,"top":0.7882104,"width":0.06104651,"height":0.011794772},"on_screen":true,"value":"May 11, 2026 09:19:16","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"May 11, 2026 09:19:11","depth":2,"bounds":{"left":0.6214632,"top":0.8159254,"width":0.059593022,"height":0.01199943},"on_screen":true,"value":"May 11, 2026 09:19:11","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"May 11, 2026 09:19:54\nMay 11,\nMay 11,\nMay 11,\nMay 11,\nMay 11,\nMay 11,","depth":2,"bounds":{"left":0.72756785,"top":0.64412034,"width":0.06395349,"height":0.18380456},"on_screen":true,"value":"May 11, 2026 09:19:54\nMay 11,\nMay 11,\nMay 11,\nMay 11,\nMay 11,\nMay 11,","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"7= Al Notes: Off","depth":2,"bounds":{"left":0.769719,"top":0.7068534,"width":0.056686044,"height":0.014304527},"on_screen":true,"value":"7= Al Notes: Off","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Mou 11 วกวด กด-10:02","depth":2,"bounds":{"left":0.6214632,"top":0.84421134,"width":0.06395348,"height":0.009306559},"on_screen":true,"value":"Mou 11 วกวด กด-10:02","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Petko ...\nreen ...","depth":2,"bounds":{"left":0.8089632,"top":0.8507927,"width":0.031976745,"height":0.033079218},"on_screen":true,"value":"Petko ...\nreen ...","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"X","depth":2,"bounds":{"left":0.8569283,"top":0.048500497,"width":0.011627907,"height":0.018613119},"on_screen":true,"value":"X","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"080•","depth":2,"bounds":{"left":0.89617246,"top":0.44868255,"width":0.014534883,"height":0.009306559},"on_screen":true,"value":"080•","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Leave","depth":2,"bounds":{"left":0.9499515,"top":0.96054333,"width":0.029069766,"height":0.01628648},"on_screen":true,"value":"Leave","role_description":"text entry area","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"rewind","depth":1,"bounds":{"left":0.77569443,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"play/pause","depth":1,"bounds":{"left":0.8003472,"top":0.9172222,"width":0.02013889,"height":0.037777778},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":true},{"role":"AXButton","text":"fast forward","depth":1,"bounds":{"left":0.828125,"top":0.9266667,"width":0.017361112,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"mute","depth":1,"bounds":{"left":0.65868056,"top":0.9266667,"width":0.015625,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"More Controls","depth":1,"bounds":{"left":0.9496528,"top":0.9261111,"width":0.0125,"height":0.017777778},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"toggle full screen","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":1,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_focused":false},{"role":"AXButton","text":"show external playback menu","depth":2,"bounds":{"left":0.89340276,"top":0.9261111,"width":0.013888889,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show media selection menu","depth":1,"bounds":{"left":0.89340276,"top":0.93222225,"width":0.015277778,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"toggle picture-in-picture playback","depth":1,"bounds":{"left":0.89340276,"top":0.92444444,"width":0.017361112,"height":0.022222223},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show action menu","depth":1,"bounds":{"left":0.89340276,"top":0.9316667,"width":0.014583333,"height":0.023333333},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"share","depth":1,"bounds":{"left":0.9232639,"top":0.9211111,"width":0.013541667,"height":0.025555555},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"show chapter menu","depth":1,"bounds":{"left":0.89340276,"top":0.935,"width":0.014583333,"height":0.016666668},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93,"width":0.013888889,"height":0.026666667},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXCheckBox","text":"zoom","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.017361112,"height":0.02111111},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"playback speed","depth":1,"bounds":{"left":0.89340276,"top":0.93277776,"width":0.013194445,"height":0.02111111},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"03:47","depth":1,"bounds":{"left":0.65868056,"top":0.9633333,"width":0.02638889,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle elapsed time, timecode and framecount","depth":1,"bounds":{"left":0.66006947,"top":0.9633333,"width":0.023611112,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"04:55","depth":1,"bounds":{"left":0.9305556,"top":0.9633333,"width":0.031597223,"height":0.016666668},"on_screen":true,"role_description":"text"},{"role":"AXCheckBox","text":"toggle duration and remaining time","depth":1,"bounds":{"left":0.93194443,"top":0.9633333,"width":0.028819444,"height":0.016666668},"on_screen":true,"role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXMenuButton","text":"document actions","depth":1,"bounds":{"left":0.6097222,"top":0.04,"width":0.0069444445,"height":0.017777778},"on_screen":true,"role_description":"menu button","is_enabled":false,"is_focused":false},{"role":"AXStaticText","text":"PLanhat Petko interest event 2026-05-11.mp4","depth":1,"bounds":{"left":0.3986111,"top":0.04,"width":0.21111111,"height":0.017777778},"on_screen":true,"role_description":"text"}]...
|
-2383200439975061285
|
3485517746941071199
|
visual_change
|
accessibility
|
NULL
|
Petko Kashinski
Screen share
Chrome
File
Edit
View Petko Kashinski
Screen share
Chrome
File
Edit
View
History
Bookmarks
Profiles
Tab
Window
Help
Work
Greet
Score
andre
@ wilso
2.
Call A
Jimin
Inbox
INX
⑦
口
Q
+
%
8•
Mon 11 May 12:21
= Apps
Build
User
New
u User
→
ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5
★
E Work
■ AIKB
ChatPlayground Al...
Jiminny - Calenda...
M
GMail
My Calendly - Eve...
= PH New Ul Login
Get Starting with J...
Apps
Chloe Onboarding...
+ CX Journey SMB...
Jiminny
Search Jiminny
Content Explorer
8 Metric ~
€ Dataset
playbackVisited
Data Explorer
* Notifications
* Email Manager
Q playback
Name
Company 2
+ Metric
6 п
Tyr
activities.playbackVisited
Overview
Raw Data
Trace
Raw Data
Playback Adoption Avg
Cal
Sections -
CS Day-to-day *
Getting started Guide
• Just CS Data
* Daily Operations
• Weekly prep
Renewals and Upsell
Risk and Churn Analytics
• Playback Adoption
Company
AnyVan.com
EndUser
Browzwear
JUsers Playback Adoption
Cal
Moxso
Playback Adoption (Last 7 days)
• Playback Adoption
playbackVisited
Cal
Cal
UsI
BT Local Business Oxford & Bucks
THRIVE
THRIVE
Implementation
目
BT Local Business Severnside
Impl Projects
Trial Opps (Under Review)
Safe and Secure Home Insurance
Stoyan's clients
Leadership -
System Reports
Leadership Operations
Portfolio Overview (Dashbo...
NPS Report - Greg
Client Engagement Overview
Revenue Analytics
BT Local Business Severnside
Street Group
Safe and Secure Home Insurance
Connectd
BT Local Business Oxford & Bucks
THRIVE
RT I ocal Rucinace Covercide
zoom
&+
必
User
Marcus P
Jonathal Macaulay
Katarzyna Nowakowska
Ben Copelin
Louise Cameron
Louise Cameron
Charlie Dodd
Jess Sykes
Charlie Dodd
Andy Fisher
Jess Sykes
Tom Zini
Ben Copelin
Louise Cameron
Event
playbackVisited
playbackVisited
playbackVisited
playbackVisited
playbackVisited
playbackVisited
playbackVisited
playbackVisited
playbackVisited
playbackVisited
playbackVisited
playbackVisited
playbackVisited
nlouhockV/icitoa
4 ®
Petko
Filter by Company
Time
May 11, 2026 09:20:47
Ingestion At
May 11, 2026 09:20:51
May 11, 2026 09:20:45
May 11, 2026 09:20:51
May 11, 2026 09:20:32
May 11, 2026 09:20:39
May 11, 2026 09:20:14
May 11, 2026 09:20:13
May 11, 2026 09:20:24
May 11, 2026 09:19:53
May 11, 2026 09:19:52
May 11, 2026 09:20:24
May 11, 14:26 09:20:07
May 11, 2026 09:19:54
May 11, 2026 09:19:41
May 11, 2026 09:19:39
May 11, 2026 09:19:34
May 11, 2026 09:19:34
May 11, 2026 09:19:26
May 11, 2026 09:19:16
May 11, 2026 09:19:11
May 11, 2026 09:19:54
May 11,
May 11,
May 11,
May 11,
May 11,
May 11,
7= Al Notes: Off
Mou 11 วกวด กด-10:02
Petko ...
reen ...
X
080•
Leave
rewind
play/pause
fast forward
mute
More Controls
toggle full screen
show external playback menu
show external playback menu
show media selection menu
toggle picture-in-picture playback
show action menu
share
show chapter menu
zoom
zoom
playback speed
03:47
toggle elapsed time, timecode and framecount
04:55
toggle duration and remaining time
document actions
PLanhat Petko interest event 2026-05-11.mp4...
|
22920
|
/Volumes/Work/2026/PLanhat Petko interest event 20 /Volumes/Work/2026/PLanhat Petko interest event 2026-05-11.mp4...
|
NULL
|
NULL
|
|
22923
|
978
|
33
|
2026-05-12T07:27:04.760240+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570824760_m1.jpg...
|
PhpStorm
|
faVsco.js – PlanhatService.php
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
HandleHubspotRateLimitTest
Run 'HandleHubspotRateLimitTest'
Debug 'HandleHubspotRateLimitTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
12
19
Previous Highlighted Error
Next Highlighted Error
<?php
namespace Jiminny\Services;
use Carbon\Carbon;
use Exception;
use GuzzleHttp\Exception\GuzzleException;
use Illuminate\Contracts\Container\BindingResolutionException;
use Illuminate\Http\Client\Response;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\BillingManagement\Repositories\RoleStatsRepository;
use Jiminny\Models\Partner;
use Jiminny\Models\Team;
use Jiminny\Models\User;
readonly class PlanhatService
{
public function __construct(
private RoleStatsRepository $roleStatsRepository,
) {
}
/** @throws GuzzleException */
public function track(User $user, string $event, array $payload = []): void
{
if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {
return;
}
$user->load('team');
$data = [
'name' => $user->getName(),
'email' => $user->getEmailAddress(),
'externalId' => $user->getUuid(),
'companyExternalId' => $user->getTeam()->getUuid(),
'action' => $event,
'info' => $payload,
];
$planhatResponse = Http::planhatAnalyticsApi()
->post('analytics/' . config('services.planhat.tenantUuid'), $data);
$this->logFailedResponses($planhatResponse, __METHOD__, [
'body' => $planhatResponse->json(),
'status' => $planhatResponse->status(),
'data' => $data,
]);
}
/** @throws GuzzleException */
public function meter(User $user, string $dimension, string $value): void
{
if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {
return;
}
$user->load('team');
$data = [
'dimensionId' => $dimension,
'value' => $value,
'companyExternalId' => $user->getTeam()->getUuid(),
];
$planhatResponse = Http::planhatAnalyticsApi()
->post('dimensiondata/' . config('services.planhat.tenantUuid'), $data);
$this->logFailedResponses($planhatResponse, __METHOD__, $data);
}
/** @throws GuzzleException */
public function upsertCompany(Team $team): void
{
if (! $this->serviceIsAvailable($team->getPartnerId())) {
return;
}
$integrations = $team->activityProviders()
->where('is_enabled', true)
->pluck('provider')
->toArray();
$usersRolesLookUp = $this->roleStatsRepository->getPaidRolesLookup($team->getId());
$teamDomains = $team->domains()->pluck('domain')->toArray();
$data = [
'externalId' => $team->getUuid(),
'sourceId' => $team->account?->crm_provider_id,
'name' => $team->getName(),
'slug' => $team->getSlug(),
'domains' => $teamDomains,
'custom' => [
'Conference decoupled?' => true,
'Email Provider' => $team->calendar_provider,
'CRM' => $team->crm?->provider,
'Customer Api' => $team->getApiToken() === null ? 'no' : 'yes',
'Jiminny Voice' => $usersRolesLookUp[User::ROLE_RECORDER_AND_VOICE] > 0 ? 'Inbound + SMS' : 'Outbound Only',
'Integrations' => $integrations,
'Collaboration' => $team->hasSlackBot() ? 'slack' : null,
'Jiminny Voice Compliance mode' => $team->compliance_mode,
'Active users' => $usersRolesLookUp['active'],
'Recording users' => $usersRolesLookUp[User::ROLE_RECORDER],
'Voice users' => $usersRolesLookUp[User::ROLE_RECORDER_AND_VOICE],
'Listener users' => $usersRolesLookUp[User::ROLE_LISTENER],
'Data Center' => config('jiminny.deploy_region'),
'Active Jiminny Instance' => $team->status === Team::STATUS_ACTIVE,
'CRM Installed App Version' => $team->getCrmConfiguration()->getInstalledAppVersion(),
],
];
$planhatResponse = Http::planhatApi()->put('companies', $data);
$this->logFailedResponses($planhatResponse, __METHOD__, $data);
}
/**
* @throws GuzzleException
* @throws BindingResolutionException
*/
public function upsertUser(User $user): void
{
if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {
return;
}
$intercomService = app()->make(IntercomService::class);
$integrations = $user->socialAccounts()->pluck('provider')->toArray();
$lastSeen = null;
try {
$intercomUser = $intercomService->getUsers([
'user_id' => $user->getUuid(),
]);
if ($intercomUser) {
$lastSeen = Carbon::parse($intercomUser->last_request_at)->toIso8601String();
}
} catch (Exception $e) {
Log::error(__METHOD__ . ' Intercom failed to fetch user data', ['error' => $e->getMessage()]);
}
$roleNames = $user->roles()->pluck('name');
$data = [
'externalId' => $user->getUuid(),
'companyExternalId' => $user->team->getUuid(),
'name' => $user->getName(),
'position' => $user->job?->name,
'email' => $user->getEmailAddress(),
'createDate' => $user->created_at->toIso8601String(),
'custom' => [
'Role' => $roleNames->implode(', '),
'Group' => $user->group?->name,
'User Integrations' => $integrations,
'Licence Type' => $this->getLicenseType($roleNames),
'Jiminny Create Date' => $user->created_at->toIso8601String(),
'CRM Access' => $user->crm_required,
'Last seen' => $lastSeen,
'Email Synced' => $user->isSyncEmailEnabled(),
'User Job Title' => $user->job?->name ?? 'N/A',
],
];
$planhatResponse = Http::planhatApi()->put('endusers', $data);
$this->logFailedResponses($planhatResponse, __METHOD__, $data);
}
/** @throws GuzzleException */
public function deleteUser(User $user): void
{
if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {
return;
}
$planhatUserId = Http::planhatApi()
->get('endusers', ['email' => $user->email,])
->json('0._id');
if ($planhatUserId) {
Http::planhatApi()->delete("endusers/$planhatUserId");
Log::info(__METHOD__, ['result' => 'User deleted from Planhat']);
} else {
Log::error(__METHOD__, ['result' => 'User not found in Planhat']);
}
}
private function logFailedResponses(Response $planhatResponse, string $message, array $logData): void
{
if (
$planhatResponse->failed()
|| (
isset($planhatResponse->json()['errors'])
&& ! empty($planhatResponse->json()['errors'])
)
) {
Log::error($message, [
'response' => $planhatResponse->json(),
'status' => $planhatResponse->status(),
'data' => $logData,
]);
}
}
/**
* Disable Planhat service on development and staging environments to prevent
* failures and error noise in the logs.
* It should run only for Jiminny partners
*/
private function serviceIsAvailable(int $partnerId): bool
{
return config('services.planhat.enabled')
&& $partnerId === Partner::PARTNER_DEFAULT;
}
private function getLicenseType(Collection $roleNames): string
{
if ($roleNames->contains(User::ROLE_RECORDER_AND_VOICE)) {
return User::ROLE_RECORDER_AND_VOICE;
}
if ($roleNames->contains(User::ROLE_RECORDER)) {
return User::ROLE_RECORDER;
}
return User::ROLE_ANALYST;
}
}
Sync Changes
Hide This Notification...
|
[{"role":"AXButton","text" [{"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":"JY-20725-handle-HS-search-rate-limit, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20725-handle-HS-search-rate-limit","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":"HandleHubspotRateLimitTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'HandleHubspotRateLimitTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'HandleHubspotRateLimitTest'","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":"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":"12","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"19","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":"<?php\n\nnamespace Jiminny\\Services;\n\nuse Carbon\\Carbon;\nuse Exception;\nuse GuzzleHttp\\Exception\\GuzzleException;\nuse Illuminate\\Contracts\\Container\\BindingResolutionException;\nuse Illuminate\\Http\\Client\\Response;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Http;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\BillingManagement\\Repositories\\RoleStatsRepository;\nuse Jiminny\\Models\\Partner;\nuse Jiminny\\Models\\Team;\nuse Jiminny\\Models\\User;\n\nreadonly class PlanhatService\n{\n public function __construct(\n private RoleStatsRepository $roleStatsRepository,\n ) {\n }\n\n /** @throws GuzzleException */\n public function track(User $user, string $event, array $payload = []): void\n {\n if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {\n return;\n }\n\n $user->load('team');\n\n $data = [\n 'name' => $user->getName(),\n 'email' => $user->getEmailAddress(),\n 'externalId' => $user->getUuid(),\n 'companyExternalId' => $user->getTeam()->getUuid(),\n 'action' => $event,\n 'info' => $payload,\n ];\n\n $planhatResponse = Http::planhatAnalyticsApi()\n ->post('analytics/' . config('services.planhat.tenantUuid'), $data);\n\n $this->logFailedResponses($planhatResponse, __METHOD__, [\n 'body' => $planhatResponse->json(),\n 'status' => $planhatResponse->status(),\n 'data' => $data,\n ]);\n }\n\n /** @throws GuzzleException */\n public function meter(User $user, string $dimension, string $value): void\n {\n if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {\n return;\n }\n\n $user->load('team');\n\n $data = [\n 'dimensionId' => $dimension,\n 'value' => $value,\n 'companyExternalId' => $user->getTeam()->getUuid(),\n ];\n\n $planhatResponse = Http::planhatAnalyticsApi()\n ->post('dimensiondata/' . config('services.planhat.tenantUuid'), $data);\n\n $this->logFailedResponses($planhatResponse, __METHOD__, $data);\n }\n\n /** @throws GuzzleException */\n public function upsertCompany(Team $team): void\n {\n if (! $this->serviceIsAvailable($team->getPartnerId())) {\n return;\n }\n\n $integrations = $team->activityProviders()\n ->where('is_enabled', true)\n ->pluck('provider')\n ->toArray();\n\n $usersRolesLookUp = $this->roleStatsRepository->getPaidRolesLookup($team->getId());\n $teamDomains = $team->domains()->pluck('domain')->toArray();\n\n $data = [\n 'externalId' => $team->getUuid(),\n 'sourceId' => $team->account?->crm_provider_id,\n 'name' => $team->getName(),\n 'slug' => $team->getSlug(),\n 'domains' => $teamDomains,\n 'custom' => [\n 'Conference decoupled?' => true,\n 'Email Provider' => $team->calendar_provider,\n 'CRM' => $team->crm?->provider,\n 'Customer Api' => $team->getApiToken() === null ? 'no' : 'yes',\n 'Jiminny Voice' => $usersRolesLookUp[User::ROLE_RECORDER_AND_VOICE] > 0 ? 'Inbound + SMS' : 'Outbound Only',\n 'Integrations' => $integrations,\n 'Collaboration' => $team->hasSlackBot() ? 'slack' : null,\n 'Jiminny Voice Compliance mode' => $team->compliance_mode,\n 'Active users' => $usersRolesLookUp['active'],\n 'Recording users' => $usersRolesLookUp[User::ROLE_RECORDER],\n 'Voice users' => $usersRolesLookUp[User::ROLE_RECORDER_AND_VOICE],\n 'Listener users' => $usersRolesLookUp[User::ROLE_LISTENER],\n 'Data Center' => config('jiminny.deploy_region'),\n 'Active Jiminny Instance' => $team->status === Team::STATUS_ACTIVE,\n 'CRM Installed App Version' => $team->getCrmConfiguration()->getInstalledAppVersion(),\n ],\n ];\n\n $planhatResponse = Http::planhatApi()->put('companies', $data);\n\n $this->logFailedResponses($planhatResponse, __METHOD__, $data);\n }\n\n /**\n * @throws GuzzleException\n * @throws BindingResolutionException\n */\n public function upsertUser(User $user): void\n {\n if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {\n return;\n }\n\n $intercomService = app()->make(IntercomService::class);\n\n $integrations = $user->socialAccounts()->pluck('provider')->toArray();\n $lastSeen = null;\n\n try {\n $intercomUser = $intercomService->getUsers([\n 'user_id' => $user->getUuid(),\n ]);\n\n if ($intercomUser) {\n $lastSeen = Carbon::parse($intercomUser->last_request_at)->toIso8601String();\n }\n } catch (Exception $e) {\n Log::error(__METHOD__ . ' Intercom failed to fetch user data', ['error' => $e->getMessage()]);\n }\n\n $roleNames = $user->roles()->pluck('name');\n\n $data = [\n 'externalId' => $user->getUuid(),\n 'companyExternalId' => $user->team->getUuid(),\n 'name' => $user->getName(),\n 'position' => $user->job?->name,\n 'email' => $user->getEmailAddress(),\n 'createDate' => $user->created_at->toIso8601String(),\n 'custom' => [\n 'Role' => $roleNames->implode(', '),\n 'Group' => $user->group?->name,\n 'User Integrations' => $integrations,\n 'Licence Type' => $this->getLicenseType($roleNames),\n 'Jiminny Create Date' => $user->created_at->toIso8601String(),\n 'CRM Access' => $user->crm_required,\n 'Last seen' => $lastSeen,\n 'Email Synced' => $user->isSyncEmailEnabled(),\n 'User Job Title' => $user->job?->name ?? 'N/A',\n ],\n ];\n\n $planhatResponse = Http::planhatApi()->put('endusers', $data);\n\n $this->logFailedResponses($planhatResponse, __METHOD__, $data);\n }\n\n /** @throws GuzzleException */\n public function deleteUser(User $user): void\n {\n if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {\n return;\n }\n\n $planhatUserId = Http::planhatApi()\n ->get('endusers', ['email' => $user->email,])\n ->json('0._id');\n\n if ($planhatUserId) {\n Http::planhatApi()->delete(\"endusers/$planhatUserId\");\n\n Log::info(__METHOD__, ['result' => 'User deleted from Planhat']);\n } else {\n Log::error(__METHOD__, ['result' => 'User not found in Planhat']);\n }\n }\n\n private function logFailedResponses(Response $planhatResponse, string $message, array $logData): void\n {\n if (\n $planhatResponse->failed()\n || (\n isset($planhatResponse->json()['errors'])\n && ! empty($planhatResponse->json()['errors'])\n )\n ) {\n Log::error($message, [\n 'response' => $planhatResponse->json(),\n 'status' => $planhatResponse->status(),\n 'data' => $logData,\n ]);\n }\n }\n\n /**\n * Disable Planhat service on development and staging environments to prevent\n * failures and error noise in the logs.\n * It should run only for Jiminny partners\n */\n private function serviceIsAvailable(int $partnerId): bool\n {\n return config('services.planhat.enabled')\n && $partnerId === Partner::PARTNER_DEFAULT;\n }\n\n private function getLicenseType(Collection $roleNames): string\n {\n if ($roleNames->contains(User::ROLE_RECORDER_AND_VOICE)) {\n return User::ROLE_RECORDER_AND_VOICE;\n }\n\n if ($roleNames->contains(User::ROLE_RECORDER)) {\n return User::ROLE_RECORDER;\n }\n\n return User::ROLE_ANALYST;\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\nnamespace Jiminny\\Services;\n\nuse Carbon\\Carbon;\nuse Exception;\nuse GuzzleHttp\\Exception\\GuzzleException;\nuse Illuminate\\Contracts\\Container\\BindingResolutionException;\nuse Illuminate\\Http\\Client\\Response;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Http;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\BillingManagement\\Repositories\\RoleStatsRepository;\nuse Jiminny\\Models\\Partner;\nuse Jiminny\\Models\\Team;\nuse Jiminny\\Models\\User;\n\nreadonly class PlanhatService\n{\n public function __construct(\n private RoleStatsRepository $roleStatsRepository,\n ) {\n }\n\n /** @throws GuzzleException */\n public function track(User $user, string $event, array $payload = []): void\n {\n if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {\n return;\n }\n\n $user->load('team');\n\n $data = [\n 'name' => $user->getName(),\n 'email' => $user->getEmailAddress(),\n 'externalId' => $user->getUuid(),\n 'companyExternalId' => $user->getTeam()->getUuid(),\n 'action' => $event,\n 'info' => $payload,\n ];\n\n $planhatResponse = Http::planhatAnalyticsApi()\n ->post('analytics/' . config('services.planhat.tenantUuid'), $data);\n\n $this->logFailedResponses($planhatResponse, __METHOD__, [\n 'body' => $planhatResponse->json(),\n 'status' => $planhatResponse->status(),\n 'data' => $data,\n ]);\n }\n\n /** @throws GuzzleException */\n public function meter(User $user, string $dimension, string $value): void\n {\n if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {\n return;\n }\n\n $user->load('team');\n\n $data = [\n 'dimensionId' => $dimension,\n 'value' => $value,\n 'companyExternalId' => $user->getTeam()->getUuid(),\n ];\n\n $planhatResponse = Http::planhatAnalyticsApi()\n ->post('dimensiondata/' . config('services.planhat.tenantUuid'), $data);\n\n $this->logFailedResponses($planhatResponse, __METHOD__, $data);\n }\n\n /** @throws GuzzleException */\n public function upsertCompany(Team $team): void\n {\n if (! $this->serviceIsAvailable($team->getPartnerId())) {\n return;\n }\n\n $integrations = $team->activityProviders()\n ->where('is_enabled', true)\n ->pluck('provider')\n ->toArray();\n\n $usersRolesLookUp = $this->roleStatsRepository->getPaidRolesLookup($team->getId());\n $teamDomains = $team->domains()->pluck('domain')->toArray();\n\n $data = [\n 'externalId' => $team->getUuid(),\n 'sourceId' => $team->account?->crm_provider_id,\n 'name' => $team->getName(),\n 'slug' => $team->getSlug(),\n 'domains' => $teamDomains,\n 'custom' => [\n 'Conference decoupled?' => true,\n 'Email Provider' => $team->calendar_provider,\n 'CRM' => $team->crm?->provider,\n 'Customer Api' => $team->getApiToken() === null ? 'no' : 'yes',\n 'Jiminny Voice' => $usersRolesLookUp[User::ROLE_RECORDER_AND_VOICE] > 0 ? 'Inbound + SMS' : 'Outbound Only',\n 'Integrations' => $integrations,\n 'Collaboration' => $team->hasSlackBot() ? 'slack' : null,\n 'Jiminny Voice Compliance mode' => $team->compliance_mode,\n 'Active users' => $usersRolesLookUp['active'],\n 'Recording users' => $usersRolesLookUp[User::ROLE_RECORDER],\n 'Voice users' => $usersRolesLookUp[User::ROLE_RECORDER_AND_VOICE],\n 'Listener users' => $usersRolesLookUp[User::ROLE_LISTENER],\n 'Data Center' => config('jiminny.deploy_region'),\n 'Active Jiminny Instance' => $team->status === Team::STATUS_ACTIVE,\n 'CRM Installed App Version' => $team->getCrmConfiguration()->getInstalledAppVersion(),\n ],\n ];\n\n $planhatResponse = Http::planhatApi()->put('companies', $data);\n\n $this->logFailedResponses($planhatResponse, __METHOD__, $data);\n }\n\n /**\n * @throws GuzzleException\n * @throws BindingResolutionException\n */\n public function upsertUser(User $user): void\n {\n if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {\n return;\n }\n\n $intercomService = app()->make(IntercomService::class);\n\n $integrations = $user->socialAccounts()->pluck('provider')->toArray();\n $lastSeen = null;\n\n try {\n $intercomUser = $intercomService->getUsers([\n 'user_id' => $user->getUuid(),\n ]);\n\n if ($intercomUser) {\n $lastSeen = Carbon::parse($intercomUser->last_request_at)->toIso8601String();\n }\n } catch (Exception $e) {\n Log::error(__METHOD__ . ' Intercom failed to fetch user data', ['error' => $e->getMessage()]);\n }\n\n $roleNames = $user->roles()->pluck('name');\n\n $data = [\n 'externalId' => $user->getUuid(),\n 'companyExternalId' => $user->team->getUuid(),\n 'name' => $user->getName(),\n 'position' => $user->job?->name,\n 'email' => $user->getEmailAddress(),\n 'createDate' => $user->created_at->toIso8601String(),\n 'custom' => [\n 'Role' => $roleNames->implode(', '),\n 'Group' => $user->group?->name,\n 'User Integrations' => $integrations,\n 'Licence Type' => $this->getLicenseType($roleNames),\n 'Jiminny Create Date' => $user->created_at->toIso8601String(),\n 'CRM Access' => $user->crm_required,\n 'Last seen' => $lastSeen,\n 'Email Synced' => $user->isSyncEmailEnabled(),\n 'User Job Title' => $user->job?->name ?? 'N/A',\n ],\n ];\n\n $planhatResponse = Http::planhatApi()->put('endusers', $data);\n\n $this->logFailedResponses($planhatResponse, __METHOD__, $data);\n }\n\n /** @throws GuzzleException */\n public function deleteUser(User $user): void\n {\n if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {\n return;\n }\n\n $planhatUserId = Http::planhatApi()\n ->get('endusers', ['email' => $user->email,])\n ->json('0._id');\n\n if ($planhatUserId) {\n Http::planhatApi()->delete(\"endusers/$planhatUserId\");\n\n Log::info(__METHOD__, ['result' => 'User deleted from Planhat']);\n } else {\n Log::error(__METHOD__, ['result' => 'User not found in Planhat']);\n }\n }\n\n private function logFailedResponses(Response $planhatResponse, string $message, array $logData): void\n {\n if (\n $planhatResponse->failed()\n || (\n isset($planhatResponse->json()['errors'])\n && ! empty($planhatResponse->json()['errors'])\n )\n ) {\n Log::error($message, [\n 'response' => $planhatResponse->json(),\n 'status' => $planhatResponse->status(),\n 'data' => $logData,\n ]);\n }\n }\n\n /**\n * Disable Planhat service on development and staging environments to prevent\n * failures and error noise in the logs.\n * It should run only for Jiminny partners\n */\n private function serviceIsAvailable(int $partnerId): bool\n {\n return config('services.planhat.enabled')\n && $partnerId === Partner::PARTNER_DEFAULT;\n }\n\n private function getLicenseType(Collection $roleNames): string\n {\n if ($roleNames->contains(User::ROLE_RECORDER_AND_VOICE)) {\n return User::ROLE_RECORDER_AND_VOICE;\n }\n\n if ($roleNames->contains(User::ROLE_RECORDER)) {\n return User::ROLE_RECORDER;\n }\n\n return User::ROLE_ANALYST;\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"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}]...
|
-6488225921241527851
|
-7759464961006224404
|
app_switch
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20725-handle-HS-search Project: faVsco.js, menu
JY-20725-handle-HS-search-rate-limit, menu
Start Listening for PHP Debug Connections
HandleHubspotRateLimitTest
Run 'HandleHubspotRateLimitTest'
Debug 'HandleHubspotRateLimitTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
12
19
Previous Highlighted Error
Next Highlighted Error
<?php
namespace Jiminny\Services;
use Carbon\Carbon;
use Exception;
use GuzzleHttp\Exception\GuzzleException;
use Illuminate\Contracts\Container\BindingResolutionException;
use Illuminate\Http\Client\Response;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\BillingManagement\Repositories\RoleStatsRepository;
use Jiminny\Models\Partner;
use Jiminny\Models\Team;
use Jiminny\Models\User;
readonly class PlanhatService
{
public function __construct(
private RoleStatsRepository $roleStatsRepository,
) {
}
/** @throws GuzzleException */
public function track(User $user, string $event, array $payload = []): void
{
if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {
return;
}
$user->load('team');
$data = [
'name' => $user->getName(),
'email' => $user->getEmailAddress(),
'externalId' => $user->getUuid(),
'companyExternalId' => $user->getTeam()->getUuid(),
'action' => $event,
'info' => $payload,
];
$planhatResponse = Http::planhatAnalyticsApi()
->post('analytics/' . config('services.planhat.tenantUuid'), $data);
$this->logFailedResponses($planhatResponse, __METHOD__, [
'body' => $planhatResponse->json(),
'status' => $planhatResponse->status(),
'data' => $data,
]);
}
/** @throws GuzzleException */
public function meter(User $user, string $dimension, string $value): void
{
if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {
return;
}
$user->load('team');
$data = [
'dimensionId' => $dimension,
'value' => $value,
'companyExternalId' => $user->getTeam()->getUuid(),
];
$planhatResponse = Http::planhatAnalyticsApi()
->post('dimensiondata/' . config('services.planhat.tenantUuid'), $data);
$this->logFailedResponses($planhatResponse, __METHOD__, $data);
}
/** @throws GuzzleException */
public function upsertCompany(Team $team): void
{
if (! $this->serviceIsAvailable($team->getPartnerId())) {
return;
}
$integrations = $team->activityProviders()
->where('is_enabled', true)
->pluck('provider')
->toArray();
$usersRolesLookUp = $this->roleStatsRepository->getPaidRolesLookup($team->getId());
$teamDomains = $team->domains()->pluck('domain')->toArray();
$data = [
'externalId' => $team->getUuid(),
'sourceId' => $team->account?->crm_provider_id,
'name' => $team->getName(),
'slug' => $team->getSlug(),
'domains' => $teamDomains,
'custom' => [
'Conference decoupled?' => true,
'Email Provider' => $team->calendar_provider,
'CRM' => $team->crm?->provider,
'Customer Api' => $team->getApiToken() === null ? 'no' : 'yes',
'Jiminny Voice' => $usersRolesLookUp[User::ROLE_RECORDER_AND_VOICE] > 0 ? 'Inbound + SMS' : 'Outbound Only',
'Integrations' => $integrations,
'Collaboration' => $team->hasSlackBot() ? 'slack' : null,
'Jiminny Voice Compliance mode' => $team->compliance_mode,
'Active users' => $usersRolesLookUp['active'],
'Recording users' => $usersRolesLookUp[User::ROLE_RECORDER],
'Voice users' => $usersRolesLookUp[User::ROLE_RECORDER_AND_VOICE],
'Listener users' => $usersRolesLookUp[User::ROLE_LISTENER],
'Data Center' => config('jiminny.deploy_region'),
'Active Jiminny Instance' => $team->status === Team::STATUS_ACTIVE,
'CRM Installed App Version' => $team->getCrmConfiguration()->getInstalledAppVersion(),
],
];
$planhatResponse = Http::planhatApi()->put('companies', $data);
$this->logFailedResponses($planhatResponse, __METHOD__, $data);
}
/**
* @throws GuzzleException
* @throws BindingResolutionException
*/
public function upsertUser(User $user): void
{
if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {
return;
}
$intercomService = app()->make(IntercomService::class);
$integrations = $user->socialAccounts()->pluck('provider')->toArray();
$lastSeen = null;
try {
$intercomUser = $intercomService->getUsers([
'user_id' => $user->getUuid(),
]);
if ($intercomUser) {
$lastSeen = Carbon::parse($intercomUser->last_request_at)->toIso8601String();
}
} catch (Exception $e) {
Log::error(__METHOD__ . ' Intercom failed to fetch user data', ['error' => $e->getMessage()]);
}
$roleNames = $user->roles()->pluck('name');
$data = [
'externalId' => $user->getUuid(),
'companyExternalId' => $user->team->getUuid(),
'name' => $user->getName(),
'position' => $user->job?->name,
'email' => $user->getEmailAddress(),
'createDate' => $user->created_at->toIso8601String(),
'custom' => [
'Role' => $roleNames->implode(', '),
'Group' => $user->group?->name,
'User Integrations' => $integrations,
'Licence Type' => $this->getLicenseType($roleNames),
'Jiminny Create Date' => $user->created_at->toIso8601String(),
'CRM Access' => $user->crm_required,
'Last seen' => $lastSeen,
'Email Synced' => $user->isSyncEmailEnabled(),
'User Job Title' => $user->job?->name ?? 'N/A',
],
];
$planhatResponse = Http::planhatApi()->put('endusers', $data);
$this->logFailedResponses($planhatResponse, __METHOD__, $data);
}
/** @throws GuzzleException */
public function deleteUser(User $user): void
{
if (! $this->serviceIsAvailable($user->getTeam()->getPartnerId())) {
return;
}
$planhatUserId = Http::planhatApi()
->get('endusers', ['email' => $user->email,])
->json('0._id');
if ($planhatUserId) {
Http::planhatApi()->delete("endusers/$planhatUserId");
Log::info(__METHOD__, ['result' => 'User deleted from Planhat']);
} else {
Log::error(__METHOD__, ['result' => 'User not found in Planhat']);
}
}
private function logFailedResponses(Response $planhatResponse, string $message, array $logData): void
{
if (
$planhatResponse->failed()
|| (
isset($planhatResponse->json()['errors'])
&& ! empty($planhatResponse->json()['errors'])
)
) {
Log::error($message, [
'response' => $planhatResponse->json(),
'status' => $planhatResponse->status(),
'data' => $logData,
]);
}
}
/**
* Disable Planhat service on development and staging environments to prevent
* failures and error noise in the logs.
* It should run only for Jiminny partners
*/
private function serviceIsAvailable(int $partnerId): bool
{
return config('services.planhat.enabled')
&& $partnerId === Partner::PARTNER_DEFAULT;
}
private function getLicenseType(Collection $roleNames): string
{
if ($roleNames->contains(User::ROLE_RECORDER_AND_VOICE)) {
return User::ROLE_RECORDER_AND_VOICE;
}
if ($roleNames->contains(User::ROLE_RECORDER)) {
return User::ROLE_RECORDER;
}
return User::ROLE_ANALYST;
}
}
Sync Changes
Hide This Notification...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
22925
|
978
|
34
|
2026-05-12T07:27:05.471919+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570825471_m1.jpg...
|
Firefox
|
Content Explorer — Work
|
True
|
ws.planhat.com/jiminny/home/content-explorer
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
New Tab
New Tab
Jy 20820 es reindex stream model h New Tab
New Tab
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20773] User Pilot not receiving events on report generated - Jira
[JY-20773] User Pilot not receiving events on report generated - Jira
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
[JY-20776] Automated report - sentry - Jira
[JY-20776] Automated report - sentry - Jira
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
LLM pricing overview with the most actual prices - Google Search
LLM pricing overview with the most actual prices - Google Search
Planhat
Planhat
Content Explorer
Content Explorer
Close tab
Login
Login
New Tab
Customize sidebar
Close Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
AI Chat settings
Close
WORK, Google Account: [EMAIL]...
|
[{"role":"AXRadioButton","text [{"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 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · 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 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - 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-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · 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-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app","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":"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-20773] User Pilot not receiving events on report generated - 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-20773] User Pilot not receiving events on report generated - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · 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-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20776] Automated report - sentry - 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-20776] Automated report - sentry - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — 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":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — 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":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Platform Sprint 3 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":false},{"role":"AXStaticText","text":"Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · 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-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"LLM pricing overview with the most actual prices - Google Search","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"LLM pricing overview with the most actual prices - Google Search","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Planhat","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Planhat","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Content Explorer","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Content Explorer","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":"Login","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Login","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.0,"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":"Close Google Gemini (⌃X)","depth":6,"bounds":{"left":0.0,"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":"Tabs from other devices","depth":6,"bounds":{"left":0.0,"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.019097222,"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.04236111,"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":"AXButton","text":"AI Chat settings","depth":7,"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":"Close","depth":7,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"WORK, Google Account: lukas.kovalik@jiminny.com","depth":12,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
7893880706861676593
|
-2732256210735646074
|
app_switch
|
accessibility
|
NULL
|
New Tab
New Tab
Jy 20820 es reindex stream model h New Tab
New Tab
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20773] User Pilot not receiving events on report generated - Jira
[JY-20773] User Pilot not receiving events on report generated - Jira
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
[JY-20776] Automated report - sentry - Jira
[JY-20776] Automated report - sentry - Jira
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
LLM pricing overview with the most actual prices - Google Search
LLM pricing overview with the most actual prices - Google Search
Planhat
Planhat
Content Explorer
Content Explorer
Close tab
Login
Login
New Tab
Customize sidebar
Close Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
AI Chat settings
Close
WORK, Google Account: [EMAIL]...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
22927
|
978
|
35
|
2026-05-12T07:27:07.356203+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570827356_m1.jpg...
|
Firefox
|
Login — Work
|
True
|
ws.planhat.com/login
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
QuickTime PlayerFileEditViewWindowHelp(ahol• Suppo QuickTime PlayerFileEditViewWindowHelp(ahol• Support Daily - in 4 h 33 m100% <78• Tue 12 May 10:27:06Petko KashinskiScreen share+ |%ChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*8• Mon 11 May 12:21GreetScoreandre@ wilsoCall AJiminM Inbox=N=AppsBuildUser:Newu User | +ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5WorkAIKB• ChatPlayground Al...Jiminny - Calenda…M GMail• My Calendly - Eve...= PH New Ul LoginGet Starting with J...AppsChloe Onboarding…+ CX Journey SMB...Jiminny ~Content Explorer8 Metric -B DatasetplaybackVisitedQ playback+ Metricactivities. playbackVisitedData ExplorerNotificationsEmail ManagerMoreSections +CS Day-to-day•Getting started Guide• Just CS Data+ Daily Operations• Weekty prepERenewals and UpsellRisk and Churn AnalyticsТугOverviewRaw DataTrach~ Company 2• Playback Adoption AvgRaw DataCal• Playback AdoptionComparyAnyVan.comEndUser• JUsers Playback Adoption• Playback Adoption (Last 7 days)• Playback AdoptionplaybackVisitedCalCalCalUsBrowzwearMoxsoBT Local Business Oxford & BucksTHRIVEImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsTHRIVEBT Local Business SevernsideSafe and Secure Home InsuranceBT Local Business SevernsideLeadershipSystem ReportsLeadership OperationsPortfolio Overview (Dashbo….NPS Report - GregClient Engagement OverviewRevenue AnalyticsStreet GroupSafe and Secure Home InsuranceConnectdTHRIVEUserMarcus PJonathhd MacewtryKatarzyna NowakowskaBen CopelinLouise CameronLouise CameronCharlie DoddJess SykesCharlie DoddAndy FisherJess SykesTom ZiniBen CopelinLouise Cameron7EventplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitednishsrWMielalPetkoFilter by CompanyTimeMay 11, 2026 09-20:47Ingestion AtMay 11, 2026 09:20:51May 11, 2026 09-20:45May 11, 2026 09:20:51May 11, 2026 09-20:32May 11, 2026 09:20:39May 11, 2026 09-20:14May 11, 2026 09:20:24May 11, 2026 09-20:13May 11, 2026 09:20:24May 11, 2026 09:19:53May 11, 2026 09:19:52May 11, 4j26 09-20:07May 11, 2026 09:19:54May 11, 2026 09:19:41May 11, 2026 09:19:39May 11, 2026 09:19-34May 11, 2026 09-19:34May 11, 2026 09-19-26May 11, 2026 09-19:16May 11, 2026 09:19:11May 11, 2026 09:19:54May 11,May 11,95 Al Notes: OffMay 11,May 11,May 11,May 11,Mau 15Petko .een .ГАLeave...
|
NULL
|
2064161423966739783
|
NULL
|
click
|
ocr
|
NULL
|
QuickTime PlayerFileEditViewWindowHelp(ahol• Suppo QuickTime PlayerFileEditViewWindowHelp(ahol• Support Daily - in 4 h 33 m100% <78• Tue 12 May 10:27:06Petko KashinskiScreen share+ |%ChromeFileEditViewHistoryBookmarksProfilesTabWindowHelp*8• Mon 11 May 12:21GreetScoreandre@ wilsoCall AJiminM Inbox=N=AppsBuildUser:Newu User | +ws.planhat.com/jiminny/home/data-explorer/usagemetricdef?preview=UsageMetricDef.674543e45a4792694fe994e5WorkAIKB• ChatPlayground Al...Jiminny - Calenda…M GMail• My Calendly - Eve...= PH New Ul LoginGet Starting with J...AppsChloe Onboarding…+ CX Journey SMB...Jiminny ~Content Explorer8 Metric -B DatasetplaybackVisitedQ playback+ Metricactivities. playbackVisitedData ExplorerNotificationsEmail ManagerMoreSections +CS Day-to-day•Getting started Guide• Just CS Data+ Daily Operations• Weekty prepERenewals and UpsellRisk and Churn AnalyticsТугOverviewRaw DataTrach~ Company 2• Playback Adoption AvgRaw DataCal• Playback AdoptionComparyAnyVan.comEndUser• JUsers Playback Adoption• Playback Adoption (Last 7 days)• Playback AdoptionplaybackVisitedCalCalCalUsBrowzwearMoxsoBT Local Business Oxford & BucksTHRIVEImplementation -Impl ProjectsTrial Opps (Under Review)Stoyan's clientsTHRIVEBT Local Business SevernsideSafe and Secure Home InsuranceBT Local Business SevernsideLeadershipSystem ReportsLeadership OperationsPortfolio Overview (Dashbo….NPS Report - GregClient Engagement OverviewRevenue AnalyticsStreet GroupSafe and Secure Home InsuranceConnectdTHRIVEUserMarcus PJonathhd MacewtryKatarzyna NowakowskaBen CopelinLouise CameronLouise CameronCharlie DoddJess SykesCharlie DoddAndy FisherJess SykesTom ZiniBen CopelinLouise Cameron7EventplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitedplaybackVisitednishsrWMielalPetkoFilter by CompanyTimeMay 11, 2026 09-20:47Ingestion AtMay 11, 2026 09:20:51May 11, 2026 09-20:45May 11, 2026 09:20:51May 11, 2026 09-20:32May 11, 2026 09:20:39May 11, 2026 09-20:14May 11, 2026 09:20:24May 11, 2026 09-20:13May 11, 2026 09:20:24May 11, 2026 09:19:53May 11, 2026 09:19:52May 11, 4j26 09-20:07May 11, 2026 09:19:54May 11, 2026 09:19:41May 11, 2026 09:19:39May 11, 2026 09:19-34May 11, 2026 09-19:34May 11, 2026 09-19-26May 11, 2026 09-19:16May 11, 2026 09:19:11May 11, 2026 09:19:54May 11,May 11,95 Al Notes: OffMay 11,May 11,May 11,May 11,Mau 15Petko .een .ГАLeave...
|
22925
|
NULL
|
NULL
|
NULL
|
|
22928
|
978
|
36
|
2026-05-12T07:27:08.513811+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570828513_m1.jpg...
|
Firefox
|
Content Explorer — Work
|
True
|
ws.planhat.com/jiminny/home/content-explorer
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
New Tab
New Tab
Jy 20820 es reindex stream model h New Tab
New Tab
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20773] User Pilot not receiving events on report generated - Jira
[JY-20773] User Pilot not receiving events on report generated - Jira
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
[JY-20776] Automated report - sentry - Jira
[JY-20776] Automated report - sentry - Jira
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
LLM pricing overview with the most actual prices - Google Search
LLM pricing overview with the most actual prices - Google Search
Planhat
Planhat
Content Explorer
Content Explorer
Close tab
Login
Login
New Tab
Customize sidebar
Close Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
AI Chat settings
Close
WORK, Google Account: [EMAIL]
Main menu
New Chat
Open menu for conversation actions.
Conversation with Gemini
Conversation with Gemini
Copy prompt
Edit
You said I am on https://app-eu3.planhat.com/ how to get to ws.planhat.com
You said
I am on https://app-eu3.planhat.com/ how to get to ws.planhat.com
Listen
Gemini said
Gemini said
To get to
ws.planhat.com
(which is the address for the "Upgraded Planhat" or "Next Generation" interface) while you are currently on the EU regional server (
app-eu3.planhat.com
), you have two primary options:
1. The Manual URL Change
1. The Manual URL Change
Because Planhat uses specific subdomains for different versions and regions, you can try navigating directly. However, note that
ws.planhat.com
is a global entry point for the upgraded platform.
Try navigating to:
https://ws.planhat.com
https://ws.planhat.com
If your account has been migrated to the upgraded version, it should recognize your session or prompt you to log in.
Note:
If your data is specifically hosted on the
eu3
cluster, the system may automatically redirect you to a regional version of the upgraded UI (e.g.,
ws-eu3.planhat.com
).
2. The In-App "Switch" (If Available)
2. The In-App "Switch" (If Available)
If your tenant is eligible for the upgrade but you are still in the classic "app" view, look for these UI elements:
The Top Gray Bar:
Click on your
Tenant Name/Logo
in the top-left corner. This often opens the "Global Tools" menu.
Upgrade Prompts:
In some instances, Planhat places a "Try the new Planhat" or "Upgraded Planhat" toggle in the Help menu (the
"?" icon
in the top right) or as a banner at the top of the screen.
Why use ws.planhat.com?
Why use ws.planhat.com?
You likely need this URL to access newer "Global Tools" and features that are only available in the upgraded version, such as:
Data Model Manager:
For advanced field and object configuration.
Portal Manager:
To manage customer-facing portals.
Workflows:
The newer engine for automating projects and sequences.
Federated Search:
Located in the middle of the top gray bar in the
ws
version.
Important Troubleshooting:
Permissions:
If you try to access
ws.planhat.com
and get an error or a blank screen, your user
Role
may lack the "Admin Access" or "Upgraded Access" permissions. You will need a current Admin to enable these for you in the
Settings > Users & Roles
section of the current app.
NPS Campaigns:
Note that as of recent updates, some features like NPS configuration might still require you to briefly switch back to the classic
app.planhat.com
view while they are being finalized for the
ws
environment.
Good response
Bad response
Redo
Share & export...
|
[{"role":"AXRadioButton","text [{"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 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · 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 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - 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-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · 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-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app","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":"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-20773] User Pilot not receiving events on report generated - 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-20773] User Pilot not receiving events on report generated - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · 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-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20776] Automated report - sentry - 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-20776] Automated report - sentry - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — 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":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — 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":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Platform Sprint 3 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":false},{"role":"AXStaticText","text":"Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · 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-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"LLM pricing overview with the most actual prices - Google Search","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"LLM pricing overview with the most actual prices - Google Search","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Planhat","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Planhat","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Content Explorer","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Content Explorer","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":"Login","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Login","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.0,"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":"Close Google Gemini (⌃X)","depth":6,"bounds":{"left":0.0,"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":"Tabs from other devices","depth":6,"bounds":{"left":0.0,"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.019097222,"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.04236111,"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":"AXButton","text":"AI Chat settings","depth":7,"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":"Close","depth":7,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"WORK, Google Account: lukas.kovalik@jiminny.com","depth":12,"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":"Main menu","depth":12,"on_screen":true,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"New Chat","depth":12,"on_screen":true,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Open menu for conversation actions.","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":"AXHeading","text":"Conversation with Gemini","depth":15,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Conversation with Gemini","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy prompt","depth":21,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit","depth":21,"on_screen":false,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"You said I am on https://app-eu3.planhat.com/ how to get to ws.planhat.com","depth":21,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"You said","depth":23,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"I am on https://app-eu3.planhat.com/ how to get to ws.planhat.com","depth":23,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Listen","depth":22,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Gemini said","depth":20,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Gemini said","depth":21,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"To get to","depth":24,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ws.planhat.com","depth":24,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(which is the address for the \"Upgraded Planhat\" or \"Next Generation\" interface) while you are currently on the EU regional server (","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"app-eu3.planhat.com","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"), you have two primary options:","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"1. The Manual URL Change","depth":23,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1. The Manual URL Change","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Because Planhat uses specific subdomains for different versions and regions, you can try navigating directly. However, note that","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ws.planhat.com","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"is a global entry point for the upgraded platform.","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Try navigating to:","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"https://ws.planhat.com","depth":26,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"https://ws.planhat.com","depth":27,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"If your account has been migrated to the upgraded version, it should recognize your session or prompt you to log in.","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Note:","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"If your data is specifically hosted on the","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"eu3","depth":27,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"cluster, the system may automatically redirect you to a regional version of the upgraded UI (e.g.,","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ws-eu3.planhat.com","depth":27,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":").","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"2. The In-App \"Switch\" (If Available)","depth":23,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2. The In-App \"Switch\" (If Available)","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"If your tenant is eligible for the upgrade but you are still in the classic \"app\" view, look for these UI elements:","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"The Top Gray Bar:","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Click on your","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Tenant Name/Logo","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"in the top-left corner. This often opens the \"Global Tools\" menu.","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Upgrade Prompts:","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"In some instances, Planhat places a \"Try the new Planhat\" or \"Upgraded Planhat\" toggle in the Help menu (the","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\"?\" icon","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"in the top right) or as a banner at the top of the screen.","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Why use ws.planhat.com?","depth":23,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Why use ws.planhat.com?","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"You likely need this URL to access newer \"Global Tools\" and features that are only available in the upgraded version, such as:","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Data Model Manager:","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"For advanced field and object configuration.","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Portal Manager:","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"To manage customer-facing portals.","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Workflows:","depth":26,"bounds":{"left":0.153125,"top":0.0,"width":0.060069446,"height":0.022777777},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"The newer engine for automating projects and sequences.","depth":26,"bounds":{"left":0.153125,"top":0.0,"width":0.18402778,"height":0.051666666},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Federated Search:","depth":26,"bounds":{"left":0.153125,"top":0.008888889,"width":0.098958336,"height":0.022777777},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Located in the middle of the top gray bar in the","depth":26,"bounds":{"left":0.153125,"top":0.008888889,"width":0.21388888,"height":0.051666666},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ws","depth":27,"bounds":{"left":0.28611112,"top":0.039444443,"width":0.011805556,"height":0.020555556},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"version.","depth":26,"bounds":{"left":0.30208334,"top":0.037777778,"width":0.041666668,"height":0.022777777},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Important Troubleshooting:","depth":24,"bounds":{"left":0.1267361,"top":0.08444444,"width":0.14826389,"height":0.022777777},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Permissions:","depth":26,"bounds":{"left":0.153125,"top":0.12555556,"width":0.068402775,"height":0.022777777},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"If you try to access","depth":26,"bounds":{"left":0.22152779,"top":0.12555556,"width":0.10173611,"height":0.022777777},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ws.planhat.com","depth":27,"bounds":{"left":0.15729167,"top":0.1561111,"width":0.081597224,"height":0.020555556},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"and get an error or a blank screen, your user","depth":26,"bounds":{"left":0.153125,"top":0.15444444,"width":0.19965278,"height":0.051666666},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Role","depth":26,"bounds":{"left":0.2732639,"top":0.18333334,"width":0.023611112,"height":0.022777777},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"may lack the \"Admin Access\" or \"Upgraded Access\" permissions. You will need a current Admin to enable these for you in the","depth":26,"bounds":{"left":0.153125,"top":0.18333334,"width":0.21666667,"height":0.10944445},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Settings > Users & Roles","depth":26,"bounds":{"left":0.153125,"top":0.27,"width":0.20729166,"height":0.051666666},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"section of the current app.","depth":26,"bounds":{"left":0.22743055,"top":0.2988889,"width":0.1375,"height":0.022777777},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"NPS Campaigns:","depth":26,"bounds":{"left":0.153125,"top":0.34,"width":0.08923611,"height":0.022777777},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Note that as of recent updates, some features like NPS configuration might still require you to briefly switch back to the classic","depth":26,"bounds":{"left":0.153125,"top":0.34,"width":0.20520833,"height":0.10944445},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"app.planhat.com","depth":27,"bounds":{"left":0.15729167,"top":0.45722222,"width":0.0875,"height":0.020555556},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"view while they are being finalized for the","depth":26,"bounds":{"left":0.153125,"top":0.45555556,"width":0.196875,"height":0.051666666},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ws","depth":27,"bounds":{"left":0.2701389,"top":0.4861111,"width":0.011458334,"height":0.020555556},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"environment.","depth":26,"bounds":{"left":0.2857639,"top":0.48444444,"width":0.068402775,"height":0.022777777},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Good response","depth":21,"bounds":{"left":0.123958334,"top":0.5366667,"width":0.022222223,"height":0.035555556},"on_screen":false,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bad response","depth":21,"bounds":{"left":0.14618056,"top":0.5366667,"width":0.022222223,"height":0.035555556},"on_screen":false,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Redo","depth":21,"bounds":{"left":0.16840278,"top":0.5366667,"width":0.022222223,"height":0.035555556},"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Share & export","depth":20,"bounds":{"left":0.190625,"top":0.5366667,"width":0.022222223,"height":0.035555556},"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false}]...
|
-4516421460326984866
|
-2733313116287829306
|
click
|
accessibility
|
NULL
|
New Tab
New Tab
Jy 20820 es reindex stream model h New Tab
New Tab
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20773] User Pilot not receiving events on report generated - Jira
[JY-20773] User Pilot not receiving events on report generated - Jira
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
[JY-20776] Automated report - sentry - Jira
[JY-20776] Automated report - sentry - Jira
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
LLM pricing overview with the most actual prices - Google Search
LLM pricing overview with the most actual prices - Google Search
Planhat
Planhat
Content Explorer
Content Explorer
Close tab
Login
Login
New Tab
Customize sidebar
Close Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
AI Chat settings
Close
WORK, Google Account: [EMAIL]
Main menu
New Chat
Open menu for conversation actions.
Conversation with Gemini
Conversation with Gemini
Copy prompt
Edit
You said I am on https://app-eu3.planhat.com/ how to get to ws.planhat.com
You said
I am on https://app-eu3.planhat.com/ how to get to ws.planhat.com
Listen
Gemini said
Gemini said
To get to
ws.planhat.com
(which is the address for the "Upgraded Planhat" or "Next Generation" interface) while you are currently on the EU regional server (
app-eu3.planhat.com
), you have two primary options:
1. The Manual URL Change
1. The Manual URL Change
Because Planhat uses specific subdomains for different versions and regions, you can try navigating directly. However, note that
ws.planhat.com
is a global entry point for the upgraded platform.
Try navigating to:
https://ws.planhat.com
https://ws.planhat.com
If your account has been migrated to the upgraded version, it should recognize your session or prompt you to log in.
Note:
If your data is specifically hosted on the
eu3
cluster, the system may automatically redirect you to a regional version of the upgraded UI (e.g.,
ws-eu3.planhat.com
).
2. The In-App "Switch" (If Available)
2. The In-App "Switch" (If Available)
If your tenant is eligible for the upgrade but you are still in the classic "app" view, look for these UI elements:
The Top Gray Bar:
Click on your
Tenant Name/Logo
in the top-left corner. This often opens the "Global Tools" menu.
Upgrade Prompts:
In some instances, Planhat places a "Try the new Planhat" or "Upgraded Planhat" toggle in the Help menu (the
"?" icon
in the top right) or as a banner at the top of the screen.
Why use ws.planhat.com?
Why use ws.planhat.com?
You likely need this URL to access newer "Global Tools" and features that are only available in the upgraded version, such as:
Data Model Manager:
For advanced field and object configuration.
Portal Manager:
To manage customer-facing portals.
Workflows:
The newer engine for automating projects and sequences.
Federated Search:
Located in the middle of the top gray bar in the
ws
version.
Important Troubleshooting:
Permissions:
If you try to access
ws.planhat.com
and get an error or a blank screen, your user
Role
may lack the "Admin Access" or "Upgraded Access" permissions. You will need a current Admin to enable these for you in the
Settings > Users & Roles
section of the current app.
NPS Campaigns:
Note that as of recent updates, some features like NPS configuration might still require you to briefly switch back to the classic
app.planhat.com
view while they are being finalized for the
ws
environment.
Good response
Bad response
Redo
Share & export...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
22930
|
978
|
37
|
2026-05-12T07:27:11.572940+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570831572_m1.jpg...
|
Firefox
|
Content Explorer — Work
|
True
|
ws.planhat.com/jiminny/home/content-explorer
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
New Tab
New Tab
Jy 20820 es reindex stream model h New Tab
New Tab
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20773] User Pilot not receiving events on report generated - Jira
[JY-20773] User Pilot not receiving events on report generated - Jira
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
[JY-20776] Automated report - sentry - Jira
[JY-20776] Automated report - sentry - Jira
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
LLM pricing overview with the most actual prices - Google Search
LLM pricing overview with the most actual prices - Google Search
Planhat
Planhat
Content Explorer
Content Explorer
Close tab
Login
Login
New Tab
Customize sidebar
Close Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
AI Chat settings
Close
WORK, Google Account: [EMAIL]
Main menu
New Chat
Open menu for conversation actions.
Conversation with Gemini
Conversation with Gemini
Copy prompt
Edit
You said I am on https://app-eu3.planhat.com/ how to get to ws.planhat.com
You said
I am on https://app-eu3.planhat.com/ how to get to ws.planhat.com
Listen
Gemini said
Gemini said
To get to
ws.planhat.com
(which is the address for the "Upgraded Planhat" or "Next Generation" interface) while you are currently on the EU regional server (
app-eu3.planhat.com
), you have two primary options:
1. The Manual URL Change
1. The Manual URL Change
Because Planhat uses specific subdomains for different versions and regions, you can try navigating directly. However, note that
ws.planhat.com
is a global entry point for the upgraded platform.
Try navigating to:
https://ws.planhat.com
https://ws.planhat.com
If your account has been migrated to the upgraded version, it should recognize your session or prompt you to log in.
Note:
If your data is specifically hosted on the
eu3
cluster, the system may automatically redirect you to a regional version of the upgraded UI (e.g.,
ws-eu3.planhat.com
).
2. The In-App "Switch" (If Available)
2. The In-App "Switch" (If Available)
If your tenant is eligible for the upgrade but you are still in the classic "app" view, look for these UI elements:
The Top Gray Bar:
Click on your
Tenant Name/Logo
in the top-left corner. This often opens the "Global Tools" menu.
Upgrade Prompts:
In some instances, Planhat places a "Try the new Planhat" or "Upgraded Planhat" toggle in the Help menu (the
"?" icon
in the top right) or as a banner at the top of the screen.
Why use ws.planhat.com?
Why use ws.planhat.com?...
|
[{"role":"AXRadioButton","text [{"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 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · 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 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - 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-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · 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-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app","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":"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-20773] User Pilot not receiving events on report generated - 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-20773] User Pilot not receiving events on report generated - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · 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-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20776] Automated report - sentry - 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-20776] Automated report - sentry - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — 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":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — 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":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Platform Sprint 3 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":false},{"role":"AXStaticText","text":"Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · 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-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"LLM pricing overview with the most actual prices - Google Search","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"LLM pricing overview with the most actual prices - Google Search","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Planhat","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Planhat","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Content Explorer","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Content Explorer","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":"Login","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Login","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.0,"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":"Close Google Gemini (⌃X)","depth":6,"bounds":{"left":0.0,"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":"Tabs from other devices","depth":6,"bounds":{"left":0.0,"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.019097222,"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.04236111,"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":"AXButton","text":"AI Chat settings","depth":7,"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":"Close","depth":7,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"WORK, Google Account: lukas.kovalik@jiminny.com","depth":12,"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":"Main menu","depth":12,"on_screen":true,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"New Chat","depth":12,"on_screen":true,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Open menu for conversation actions.","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":"AXHeading","text":"Conversation with Gemini","depth":15,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Conversation with Gemini","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy prompt","depth":21,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit","depth":21,"on_screen":false,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"You said I am on https://app-eu3.planhat.com/ how to get to ws.planhat.com","depth":21,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"You said","depth":23,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"I am on https://app-eu3.planhat.com/ how to get to ws.planhat.com","depth":23,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Listen","depth":22,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Gemini said","depth":20,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Gemini said","depth":21,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"To get to","depth":24,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ws.planhat.com","depth":24,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(which is the address for the \"Upgraded Planhat\" or \"Next Generation\" interface) while you are currently on the EU regional server (","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"app-eu3.planhat.com","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"), you have two primary options:","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"1. The Manual URL Change","depth":23,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1. The Manual URL Change","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Because Planhat uses specific subdomains for different versions and regions, you can try navigating directly. However, note that","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ws.planhat.com","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"is a global entry point for the upgraded platform.","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Try navigating to:","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"https://ws.planhat.com","depth":26,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"https://ws.planhat.com","depth":27,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"If your account has been migrated to the upgraded version, it should recognize your session or prompt you to log in.","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Note:","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"If your data is specifically hosted on the","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"eu3","depth":27,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"cluster, the system may automatically redirect you to a regional version of the upgraded UI (e.g.,","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ws-eu3.planhat.com","depth":27,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":").","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"2. The In-App \"Switch\" (If Available)","depth":23,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2. The In-App \"Switch\" (If Available)","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"If your tenant is eligible for the upgrade but you are still in the classic \"app\" view, look for these UI elements:","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"The Top Gray Bar:","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Click on your","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Tenant Name/Logo","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"in the top-left corner. This often opens the \"Global Tools\" menu.","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Upgrade Prompts:","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"In some instances, Planhat places a \"Try the new Planhat\" or \"Upgraded Planhat\" toggle in the Help menu (the","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\"?\" icon","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"in the top right) or as a banner at the top of the screen.","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Why use ws.planhat.com?","depth":23,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Why use ws.planhat.com?","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
-6593915642755447768
|
-2733383493621941554
|
click
|
accessibility
|
NULL
|
New Tab
New Tab
Jy 20820 es reindex stream model h New Tab
New Tab
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20773] User Pilot not receiving events on report generated - Jira
[JY-20773] User Pilot not receiving events on report generated - Jira
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
[JY-20776] Automated report - sentry - Jira
[JY-20776] Automated report - sentry - Jira
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
LLM pricing overview with the most actual prices - Google Search
LLM pricing overview with the most actual prices - Google Search
Planhat
Planhat
Content Explorer
Content Explorer
Close tab
Login
Login
New Tab
Customize sidebar
Close Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
AI Chat settings
Close
WORK, Google Account: [EMAIL]
Main menu
New Chat
Open menu for conversation actions.
Conversation with Gemini
Conversation with Gemini
Copy prompt
Edit
You said I am on https://app-eu3.planhat.com/ how to get to ws.planhat.com
You said
I am on https://app-eu3.planhat.com/ how to get to ws.planhat.com
Listen
Gemini said
Gemini said
To get to
ws.planhat.com
(which is the address for the "Upgraded Planhat" or "Next Generation" interface) while you are currently on the EU regional server (
app-eu3.planhat.com
), you have two primary options:
1. The Manual URL Change
1. The Manual URL Change
Because Planhat uses specific subdomains for different versions and regions, you can try navigating directly. However, note that
ws.planhat.com
is a global entry point for the upgraded platform.
Try navigating to:
https://ws.planhat.com
https://ws.planhat.com
If your account has been migrated to the upgraded version, it should recognize your session or prompt you to log in.
Note:
If your data is specifically hosted on the
eu3
cluster, the system may automatically redirect you to a regional version of the upgraded UI (e.g.,
ws-eu3.planhat.com
).
2. The In-App "Switch" (If Available)
2. The In-App "Switch" (If Available)
If your tenant is eligible for the upgrade but you are still in the classic "app" view, look for these UI elements:
The Top Gray Bar:
Click on your
Tenant Name/Logo
in the top-left corner. This often opens the "Global Tools" menu.
Upgrade Prompts:
In some instances, Planhat places a "Try the new Planhat" or "Upgraded Planhat" toggle in the Help menu (the
"?" icon
in the top right) or as a banner at the top of the screen.
Why use ws.planhat.com?
Why use ws.planhat.com?...
|
22928
|
NULL
|
NULL
|
NULL
|
|
22934
|
978
|
38
|
2026-05-12T07:27:19.770704+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570839770_m1.jpg...
|
Firefox
|
Data Explorer — Work
|
True
|
ws.planhat.com/jiminny/home/data-explorer/company
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
New Tab
New Tab
Jy 20820 es reindex stream model h New Tab
New Tab
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20773] User Pilot not receiving events on report generated - Jira
[JY-20773] User Pilot not receiving events on report generated - Jira
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
[JY-20776] Automated report - sentry - Jira
[JY-20776] Automated report - sentry - Jira
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
LLM pricing overview with the most actual prices - Google Search
LLM pricing overview with the most actual prices - Google Search
Planhat
Planhat
Data Explorer
Data Explorer
Close tab
Login
Login
New Tab
Customize sidebar
Close Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
AI Chat settings
Close
WORK, Google Account: [EMAIL]
Main menu
New Chat
Open menu for conversation actions.
Conversation with Gemini
Conversation with Gemini
Copy prompt
Edit
You said I am on https://app-eu3.planhat.com/ how to get to ws.planhat.com
You said
I am on https://app-eu3.planhat.com/ how to get to ws.planhat.com
Listen
Gemini said
Gemini said
To get to
ws.planhat.com
(which is the address for the "Upgraded Planhat" or "Next Generation" interface) while you are currently on the EU regional server (
app-eu3.planhat.com
), you have two primary options:
1. The Manual URL Change
1. The Manual URL Change
Because Planhat uses specific subdomains for different versions and regions, you can try navigating directly. However, note that
ws.planhat.com
is a global entry point for the upgraded platform.
Try navigating to:
https://ws.planhat.com
https://ws.planhat.com
If your account has been migrated to the upgraded version, it should recognize your session or prompt you to log in....
|
[{"role":"AXRadioButton","text [{"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 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · 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 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - 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-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · 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-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app","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":"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-20773] User Pilot not receiving events on report generated - 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-20773] User Pilot not receiving events on report generated - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · 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-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20776] Automated report - sentry - 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-20776] Automated report - sentry - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — 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":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — 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":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Platform Sprint 3 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":false},{"role":"AXStaticText","text":"Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · 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-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"LLM pricing overview with the most actual prices - Google Search","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"LLM pricing overview with the most actual prices - Google Search","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Planhat","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Planhat","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Data Explorer","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Data Explorer","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":"Login","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Login","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.0,"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":"Close Google Gemini (⌃X)","depth":6,"bounds":{"left":0.0,"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":"Tabs from other devices","depth":6,"bounds":{"left":0.0,"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.019097222,"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.04236111,"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":"AXButton","text":"AI Chat settings","depth":7,"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":"Close","depth":7,"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"WORK, Google Account: lukas.kovalik@jiminny.com","depth":12,"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":"Main menu","depth":12,"on_screen":true,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"New Chat","depth":12,"on_screen":true,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Open menu for conversation actions.","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":"AXHeading","text":"Conversation with Gemini","depth":15,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Conversation with Gemini","depth":16,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy prompt","depth":21,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit","depth":21,"on_screen":false,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"You said I am on https://app-eu3.planhat.com/ how to get to ws.planhat.com","depth":21,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"You said","depth":23,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"I am on https://app-eu3.planhat.com/ how to get to ws.planhat.com","depth":23,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Listen","depth":22,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Gemini said","depth":20,"on_screen":false,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Gemini said","depth":21,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"To get to","depth":24,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ws.planhat.com","depth":24,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(which is the address for the \"Upgraded Planhat\" or \"Next Generation\" interface) while you are currently on the EU regional server (","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"app-eu3.planhat.com","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"), you have two primary options:","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"1. The Manual URL Change","depth":23,"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1. The Manual URL Change","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Because Planhat uses specific subdomains for different versions and regions, you can try navigating directly. However, note that","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ws.planhat.com","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"is a global entry point for the upgraded platform.","depth":24,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Try navigating to:","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"https://ws.planhat.com","depth":26,"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"https://ws.planhat.com","depth":27,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"If your account has been migrated to the upgraded version, it should recognize your session or prompt you to log in.","depth":26,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
2907058263095602667
|
-2732186391747659122
|
click
|
accessibility
|
NULL
|
New Tab
New Tab
Jy 20820 es reindex stream model h New Tab
New Tab
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20773] User Pilot not receiving events on report generated - Jira
[JY-20773] User Pilot not receiving events on report generated - Jira
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
[JY-20776] Automated report - sentry - Jira
[JY-20776] Automated report - sentry - Jira
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
LLM pricing overview with the most actual prices - Google Search
LLM pricing overview with the most actual prices - Google Search
Planhat
Planhat
Data Explorer
Data Explorer
Close tab
Login
Login
New Tab
Customize sidebar
Close Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
AI Chat settings
Close
WORK, Google Account: [EMAIL]
Main menu
New Chat
Open menu for conversation actions.
Conversation with Gemini
Conversation with Gemini
Copy prompt
Edit
You said I am on https://app-eu3.planhat.com/ how to get to ws.planhat.com
You said
I am on https://app-eu3.planhat.com/ how to get to ws.planhat.com
Listen
Gemini said
Gemini said
To get to
ws.planhat.com
(which is the address for the "Upgraded Planhat" or "Next Generation" interface) while you are currently on the EU regional server (
app-eu3.planhat.com
), you have two primary options:
1. The Manual URL Change
1. The Manual URL Change
Because Planhat uses specific subdomains for different versions and regions, you can try navigating directly. However, note that
ws.planhat.com
is a global entry point for the upgraded platform.
Try navigating to:
https://ws.planhat.com
https://ws.planhat.com
If your account has been migrated to the upgraded version, it should recognize your session or prompt you to log in....
|
NULL
|
NULL
|
NULL
|
NULL
|
|
22936
|
978
|
39
|
2026-05-12T07:27:22.004605+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-12/1778 /Users/lukas/.screenpipe/data/data/2026-05-12/1778570842004_m1.jpg...
|
Firefox
|
Data Explorer — Work
|
True
|
ws.planhat.com/jiminny/home/data-explorer/company
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
New Tab
New Tab
Jy 20820 es reindex stream model h New Tab
New Tab
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20773] User Pilot not receiving events on report generated - Jira
[JY-20773] User Pilot not receiving events on report generated - Jira
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
[JY-20776] Automated report - sentry - Jira
[JY-20776] Automated report - sentry - Jira
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
LLM pricing overview with the most actual prices - Google Search
LLM pricing overview with the most actual prices - Google Search
Planhat
Planhat
Data Explorer
Data Explorer
Close tab
Login
Login
New Tab
Customize sidebar
Close Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)...
|
[{"role":"AXRadioButton","text [{"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 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · 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 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - 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-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · 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-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app","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":"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-20773] User Pilot not receiving events on report generated - 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-20773] User Pilot not receiving events on report generated - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · 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-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20776] Automated report - sentry - 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-20776] Automated report - sentry - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — 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":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — 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":"TypeError: League\\Flysystem\\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Platform Sprint 3 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":false},{"role":"AXStaticText","text":"Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · 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-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"LLM pricing overview with the most actual prices - Google Search","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"LLM pricing overview with the most actual prices - Google Search","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Planhat","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Planhat","depth":5,"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Data Explorer","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Data Explorer","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":"Login","depth":4,"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Login","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.0,"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":"Close Google Gemini (⌃X)","depth":6,"bounds":{"left":0.0,"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":"Tabs from other devices","depth":6,"bounds":{"left":0.0,"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.019097222,"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}]...
|
-8332804481915692511
|
-2444025834583934321
|
click
|
accessibility
|
NULL
|
New Tab
New Tab
Jy 20820 es reindex stream model h New Tab
New Tab
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
Jy 20820 es reindex stream model hydration by Vasil-Jiminny · Pull Request #12059 · jiminny/app
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
[JY-20725] [HubSpot] Optimise CRM rematching on delete hubspot accounts/contacts - Jira
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
JY-20725 add HS rate limit handling on activities rematching by LakyLak · Pull Request #12066 · jiminny/app
Pipelines - jiminny/app
Pipelines - jiminny/app
Pull requests · jiminny/app
Pull requests · jiminny/app
[JY-20773] User Pilot not receiving events on report generated - Jira
[JY-20773] User Pilot not receiving events on report generated - Jira
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
JY-20773 fix user pilot tracking ofr automated report generated by LakyLak · Pull Request #12024 · jiminny/app
[JY-20776] Automated report - sentry - Jira
[JY-20776] Automated report - sentry - Jira
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
TypeError: League\Flysystem\Filesystem::has(): Argument #1 ($location) must be of type string, null given, called in /home/jiminny/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 218 — jiminny — app
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
Platform Sprint 3 Q2 - Platform Team - Scrum Board - Jira
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
JY-20625 | JY-20742 | MCP POC by yalokin-jiminny · Pull Request #12036 · jiminny/app
LLM pricing overview with the most actual prices - Google Search
LLM pricing overview with the most actual prices - Google Search
Planhat
Planhat
Data Explorer
Data Explorer
Close tab
Login
Login
New Tab
Customize sidebar
Close Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)...
|
22934
|
NULL
|
NULL
|
NULL
|